1 ;;; gud.el --- Grand Unified Debugger mode for running GDB and other debuggers
3 ;; Copyright (C) 1992-1996, 1998, 2000-2013 Free Software Foundation,
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
8 ;; Keywords: unix, tools
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; The ancestral gdb.el was by W. Schelter <wfs@rascal.ics.utexas.edu>.
28 ;; It was later rewritten by rms. Some ideas were due to Masanobu. Grand
29 ;; Unification (sdb/dbx support) by Eric S. Raymond <esr@thyrsus.com> Barry
30 ;; Warsaw <bwarsaw@cen.com> hacked the mode to use comint.el. Shane Hartman
31 ;; <shane@spr.com> added support for xdb (HPUX debugger). Rick Sladkey
32 ;; <jrs@world.std.com> wrote the GDB command completion code. Dave Love
33 ;; <d.love@dl.ac.uk> added the IRIX kluge, re-implemented the Mips-ish variant
34 ;; and added a menu. Brian D. Carlstrom <bdc@ai.mit.edu> combined the IRIX
35 ;; kluge with the gud-xdb-directories hack producing gud-dbx-directories.
36 ;; Derek L. Davies <ddavies@world.std.com> added support for jdb (Java
43 (defvar gdb-active-process
)
44 (defvar gdb-define-alist
)
45 (defvar gdb-macro-info
)
46 (defvar gdb-show-changed-values
)
47 (defvar gdb-source-window
)
49 (defvar gdb-speedbar-auto-raise
)
50 (defvar gud-tooltip-mode
)
52 (defvar hl-line-sticky-flag
)
56 ;; ======================================================================
57 ;; GUD commands must be visible in C buffers visited by GUD
60 "The \"Grand Unified Debugger\" interface.
61 Supported debuggers include gdb, sdb, dbx, xdb, perldb,
62 pdb (Python), and jdb."
67 (defcustom gud-key-prefix
"\C-x\C-a"
68 "Prefix of all GUD commands valid in C buffers."
72 (global-set-key (vconcat gud-key-prefix
"\C-l") 'gud-refresh
)
73 (define-key ctl-x-map
" " 'gud-break
) ;; backward compatibility hack
75 (defvar gud-marker-filter nil
)
76 (put 'gud-marker-filter
'permanent-local t
)
77 (defvar gud-find-file nil
)
78 (put 'gud-find-file
'permanent-local t
)
80 (defun gud-marker-filter (&rest args
)
81 (apply gud-marker-filter args
))
83 (defvar gud-minor-mode nil
)
84 (put 'gud-minor-mode
'permanent-local t
)
86 (defvar gud-comint-buffer nil
)
88 (defvar gud-keep-buffer nil
)
90 (defun gud-symbol (sym &optional soft minor-mode
)
91 "Return the symbol used for SYM in MINOR-MODE.
92 MINOR-MODE defaults to `gud-minor-mode'.
93 The symbol returned is `gud-<MINOR-MODE>-<SYM>'.
94 If SOFT is non-nil, returns nil if the symbol doesn't already exist."
95 (unless (or minor-mode gud-minor-mode
) (error "Gud internal error"))
96 (funcall (if soft
'intern-soft
'intern
)
97 (format "gud-%s-%s" (or minor-mode gud-minor-mode
) sym
)))
99 (defun gud-val (sym &optional minor-mode
)
100 "Return the value of `gud-symbol' SYM. Default to nil."
101 (let ((sym (gud-symbol sym t minor-mode
)))
102 (if (boundp sym
) (symbol-value sym
))))
104 (defvar gud-running nil
105 "Non-nil if debugged program is running.
106 Used to gray out relevant toolbar icons.")
108 (defvar gud-target-name
"--unknown--"
109 "The apparent name of the program being debugged in a gud buffer.")
111 ;; Use existing Info buffer, if possible.
112 (defun gud-goto-info ()
113 "Go to relevant Emacs info node."
115 (if (eq gud-minor-mode
'gdbmi
)
116 (info-other-window "(emacs)GDB Graphical Interface")
117 (info-other-window "(emacs)Debuggers")))
119 (defun gud-tool-bar-item-visible-no-fringe ()
120 (not (or (eq (buffer-local-value 'major-mode
(window-buffer)) 'speedbar-mode
)
121 (eq (buffer-local-value 'major-mode
(window-buffer)) 'gdb-memory-mode
)
122 (and (eq gud-minor-mode
'gdbmi
)
123 (> (car (window-fringes)) 0)))))
125 (declare-function gdb-gud-context-command
"gdb-mi.el")
127 (defun gud-stop-subjob ()
129 (with-current-buffer gud-comint-buffer
130 (cond ((string-equal gud-target-name
"emacs")
131 (comint-stop-subjob))
132 ((eq gud-minor-mode
'jdb
)
133 (gud-call "suspend"))
134 ((eq gud-minor-mode
'gdbmi
)
135 (gud-call (gdb-gud-context-command "-exec-interrupt")))
137 (comint-interrupt-subjob)))))
139 (easy-mmode-defmap gud-menu-map
140 '(([help] "Info (debugger)" . gud-goto-info)
141 ([tooltips] menu-item "Show GUD tooltips" gud-tooltip-mode
142 :enable (and (not emacs-basic-display)
144 (fboundp 'x-show-tip))
145 :visible (memq gud-minor-mode
146 '(gdbmi dbx sdb xdb pdb))
147 :button (:toggle . gud-tooltip-mode))
148 ([refresh] "Refresh" . gud-refresh)
149 ([run] menu-item "Run" gud-run
150 :enable (not gud-running)
151 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb)))
152 ([go] menu-item (if (bound-and-true-p gdb-active-process)
153 "Continue" "Run") gud-go
154 :visible (and (eq gud-minor-mode 'gdbmi)
156 ([stop] menu-item "Stop" gud-stop-subjob
157 :visible (or (not (memq gud-minor-mode '(gdbmi pdb)))
159 ([until] menu-item "Continue to selection" gud-until
160 :enable (not gud-running)
161 :visible (and (memq gud-minor-mode '(gdbmi gdb perldb))
162 (gud-tool-bar-item-visible-no-fringe)))
163 ([remove] menu-item "Remove Breakpoint" gud-remove
164 :enable (not gud-running)
165 :visible (gud-tool-bar-item-visible-no-fringe))
166 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak
167 :enable (not gud-running)
168 :visible (memq gud-minor-mode
169 '(gdbmi gdb sdb xdb)))
170 ([break] menu-item "Set Breakpoint" gud-break
171 :enable (not gud-running)
172 :visible (gud-tool-bar-item-visible-no-fringe))
173 ([up] menu-item "Up Stack" gud-up
174 :enable (not gud-running)
175 :visible (memq gud-minor-mode
176 '(gdbmi gdb dbx xdb jdb pdb)))
177 ([down] menu-item "Down Stack" gud-down
178 :enable (not gud-running)
179 :visible (memq gud-minor-mode
180 '(gdbmi gdb dbx xdb jdb pdb)))
181 ([pp] menu-item "Print S-expression" gud-pp
182 :enable (and (not gud-running)
183 (bound-and-true-p gdb-active-process))
184 :visible (and (string-equal
186 'gud-target-name gud-comint-buffer) "emacs")
187 (eq gud-minor-mode 'gdbmi)))
188 ([print*] menu-item (if (eq gud-minor-mode 'jdb)
190 "Print Dereference") gud-pstar
191 :enable (not gud-running)
192 :visible (memq gud-minor-mode '(gdbmi gdb jdb)))
193 ([print] menu-item "Print Expression" gud-print
194 :enable (not gud-running))
195 ([watch] menu-item "Watch Expression" gud-watch
196 :enable (not gud-running)
197 :visible (eq gud-minor-mode 'gdbmi))
198 ([finish] menu-item "Finish Function" gud-finish
199 :enable (not gud-running)
200 :visible (memq gud-minor-mode
201 '(gdbmi gdb xdb jdb pdb)))
202 ([stepi] menu-item "Step Instruction" gud-stepi
203 :enable (not gud-running)
204 :visible (memq gud-minor-mode '(gdbmi gdb dbx)))
205 ([nexti] menu-item "Next Instruction" gud-nexti
206 :enable (not gud-running)
207 :visible (memq gud-minor-mode '(gdbmi gdb dbx)))
208 ([step] menu-item "Step Line" gud-step
209 :enable (not gud-running))
210 ([next] menu-item "Next Line" gud-next
211 :enable (not gud-running))
212 ([cont] menu-item "Continue" gud-cont
213 :enable (not gud-running)
214 :visible (not (eq gud-minor-mode 'gdbmi))))
215 "Menu for `gud-mode'."
218 (easy-mmode-defmap gud-minor-mode-map
220 `(([menu-bar debug] . ("Gud" . ,gud-menu-map)))
221 ;; Get tool bar like functionality from the menu bar on a text only
223 (unless window-system
225 . (,(propertize "down" 'face 'font-lock-doc-face) . gud-down))
227 . (,(propertize "up" 'face 'font-lock-doc-face) . gud-up))
229 . (,(propertize "finish" 'face 'font-lock-doc-face) . gud-finish))
231 . (,(propertize "step" 'face 'font-lock-doc-face) . gud-step))
233 . (,(propertize "next" 'face 'font-lock-doc-face) . gud-next))
234 ([menu-bar until] menu-item
235 ,(propertize "until" 'face 'font-lock-doc-face) gud-until
236 :visible (memq gud-minor-mode '(gdbmi gdb perldb)))
237 ([menu-bar cont] menu-item
238 ,(propertize "cont" 'face 'font-lock-doc-face) gud-cont
239 :visible (not (eq gud-minor-mode 'gdbmi)))
240 ([menu-bar run] menu-item
241 ,(propertize "run" 'face 'font-lock-doc-face) gud-run
242 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb)))
243 ([menu-bar go] menu-item
244 ,(propertize " go " 'face 'font-lock-doc-face) gud-go
245 :visible (and (eq gud-minor-mode 'gdbmi)
247 ([menu-bar stop] menu-item
248 ,(propertize "stop" 'face 'font-lock-doc-face) gud-stop-subjob
249 :visible (or (and (eq gud-minor-mode 'gdbmi)
251 (not (eq gud-minor-mode 'gdbmi))))
253 . (,(propertize "print" 'face 'font-lock-doc-face) . gud-print))
254 ([menu-bar tools] . undefined)
255 ([menu-bar buffer] . undefined)
256 ([menu-bar options] . undefined)
257 ([menu-bar edit] . undefined)
258 ([menu-bar file] . undefined))))
259 "Map used in visited files.")
261 (let ((m (assq 'gud-minor-mode minor-mode-map-alist)))
262 (if m (setcdr m gud-minor-mode-map)
263 (push (cons 'gud-minor-mode gud-minor-mode-map) minor-mode-map-alist)))
266 ;; Will inherit from comint-mode via define-derived-mode.
268 "`gud-mode' keymap.")
270 (defvar gud-tool-bar-map
271 (let ((map (make-sparse-keymap)))
272 (dolist (x '((gud-break . "gud/break")
273 (gud-remove . "gud/remove")
274 (gud-print . "gud/print")
275 (gud-pstar . "gud/pstar")
277 (gud-watch . "gud/watch")
278 (gud-run . "gud/run")
280 (gud-stop-subjob . "gud/stop")
281 (gud-cont . "gud/cont")
282 (gud-until . "gud/until")
283 (gud-next . "gud/next")
284 (gud-step . "gud/step")
285 (gud-finish . "gud/finish")
286 (gud-nexti . "gud/nexti")
287 (gud-stepi . "gud/stepi")
289 (gud-down . "gud/down")
290 (gud-goto-info . "info"))
292 (tool-bar-local-item-from-menu
293 (car x) (cdr x) map gud-minor-mode-map))))
295 (defun gud-file-name (f)
296 "Transform a relative file name to an absolute file name.
297 Uses `gud-<MINOR-MODE>-directories' to find the source files."
298 ;; When `default-directory' is a remote file name, prepend its
299 ;; remote part to f, which is the local file name. Fortunately,
300 ;; `file-remote-p' returns exactly this remote file name part (or
302 (setq f (concat (or (file-remote-p default-directory) "") f))
303 (if (file-exists-p f) (expand-file-name f)
304 (let ((directories (gud-val 'directories))
307 (let ((path (expand-file-name f (car directories))))
308 (if (file-exists-p path)
311 (setq directories (cdr directories)))
314 (declare-function gdb-create-define-alist "gdb-mi" ())
316 (defun gud-find-file (file)
317 ;; Don't get confused by double slashes in the name that comes from GDB.
318 (while (string-match "//+" file)
319 (setq file (replace-match "/" t t file)))
320 (let ((minor-mode gud-minor-mode)
321 (buf (funcall (or gud-find-file 'gud-file-name) file)))
323 (setq buf (and (file-readable-p buf) (find-file-noselect buf 'nowarn))))
325 ;; Copy `gud-minor-mode' to the found buffer to turn on the menu.
326 (with-current-buffer buf
327 (set (make-local-variable 'gud-minor-mode) minor-mode)
328 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map)
329 (when (and gud-tooltip-mode
330 (eq gud-minor-mode 'gdbmi))
331 (make-local-variable 'gdb-define-alist)
332 (unless gdb-define-alist (gdb-create-define-alist))
333 (add-hook 'after-save-hook 'gdb-create-define-alist nil t))
334 (make-local-variable 'gud-keep-buffer))
337 ;; ======================================================================
338 ;; command definition
340 ;; This macro is used below to define some basic debugger interface commands.
341 ;; Of course you may use `gud-def' with any other debugger command, including
342 ;; user defined ones.
344 ;; A macro call like (gud-def FUNC CMD KEY DOC) expands to a form
345 ;; which defines FUNC to send the command CMD to the debugger, gives
346 ;; it the docstring DOC, and binds that function to KEY in the GUD
347 ;; major mode. The function is also bound in the global keymap with the
350 (defmacro gud-def (func cmd key &optional doc)
351 "Define FUNC to be a command sending CMD and bound to KEY, with
352 optional doc string DOC. Certain %-escapes in the string arguments
353 are interpreted specially if present. These are:
355 %f -- Name (without directory) of current source file.
356 %F -- Name (without directory or extension) of current source file.
357 %d -- Directory of current source file.
358 %l -- Number of current source line.
359 %e -- Text of the C lvalue or function-call expression surrounding point.
360 %a -- Text of the hexadecimal address surrounding point.
361 %p -- Prefix argument to the command (if any) as a number.
362 %c -- Fully qualified class name derived from the expression
363 surrounding point (jdb only).
365 The `current' source file is the file of the current buffer (if
366 we're in a C file) or the source file current at the last break or
367 step (if we're in the GUD buffer).
368 The `current' line is that of the current buffer (if we're in a
369 source file) or the source line number at the last break or step (if
370 we're in the GUD buffer)."
372 (defalias ',func (lambda (arg)
373 ,@(if doc (list doc))
375 (if (not gud-running)
379 ,(if key `(local-set-key ,(concat "\C-c" key) ',func))
380 ,(if key `(global-set-key (vconcat gud-key-prefix ,key) ',func))))
382 ;; Where gud-display-frame should put the debugging arrow; a cons of
383 ;; (filename . line-number). This is set by the marker-filter, which scans
384 ;; the debugger's output for indications of the current program counter.
385 (defvar gud-last-frame nil)
387 ;; Used by gud-refresh, which should cause gud-display-frame to redisplay
388 ;; the last frame, even if it's been called before and gud-last-frame has
390 (defvar gud-last-last-frame nil)
392 ;; All debugger-specific information is collected here.
393 ;; Here's how it works, in case you ever need to add a debugger to the mode.
395 ;; Each entry must define the following at startup:
398 ;; comint-prompt-regexp
399 ;; gud-<name>-massage-args
400 ;; gud-<name>-marker-filter
401 ;; gud-<name>-find-file
403 ;; The job of the massage-args method is to modify the given list of
404 ;; debugger arguments before running the debugger.
406 ;; The job of the marker-filter method is to detect file/line markers in
407 ;; strings and set the global gud-last-frame to indicate what display
408 ;; action (if any) should be triggered by the marker. Note that only
409 ;; whatever the method *returns* is displayed in the buffer; thus, you
410 ;; can filter the debugger's output, interpreting some and passing on
413 ;; The job of the find-file method is to visit and return the buffer indicated
414 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or
417 ;; ======================================================================
418 ;; speedbar support functions and variables.
419 (eval-when-compile (require 'speedbar)) ;For speedbar-with-attached-buffer.
421 (defvar gud-last-speedbar-stackframe nil
422 "Description of the currently displayed GUD stack.
423 The value t means that there is no stack, and we are in display-file mode.")
425 (defvar gud-speedbar-key-map nil
426 "Keymap used when in the buffers display mode.")
428 (defun gud-speedbar-item-info ()
429 "Display the data type of the watch expression element."
430 (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list)))
432 (speedbar-message "%s: %s" (nth 7 var) (nth 3 var))
433 (speedbar-message "%s" (nth 3 var)))))
435 (defun gud-install-speedbar-variables ()
436 "Install those variables used by speedbar to enhance gud/gdb."
437 (if gud-speedbar-key-map
439 (setq gud-speedbar-key-map (speedbar-make-specialized-keymap))
441 (define-key gud-speedbar-key-map "j" 'speedbar-edit-line)
442 (define-key gud-speedbar-key-map "e" 'speedbar-edit-line)
443 (define-key gud-speedbar-key-map "\C-m" 'speedbar-edit-line)
444 (define-key gud-speedbar-key-map " " 'speedbar-toggle-line-expansion)
445 (define-key gud-speedbar-key-map "D" 'gdb-var-delete)
446 (define-key gud-speedbar-key-map "p" 'gud-pp))
448 (speedbar-add-expansion-list '("GUD" gud-speedbar-menu-items
450 gud-expansion-speedbar-buttons))
453 'speedbar-mode-functions-list
454 '("GUD" (speedbar-item-info . gud-speedbar-item-info)
455 (speedbar-line-directory . ignore))))
457 (defvar gud-speedbar-menu-items
458 '(["Jump to stack frame" speedbar-edit-line
459 :visible (not (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
461 ["Edit value" speedbar-edit-line
462 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
464 ["Delete expression" gdb-var-delete
465 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
467 ["Auto raise frame" gdb-speedbar-auto-raise
468 :style toggle :selected gdb-speedbar-auto-raise
469 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
472 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
474 ["Binary" (gdb-var-set-format "binary") t]
475 ["Natural" (gdb-var-set-format "natural") t]
476 ["Hexadecimal" (gdb-var-set-format "hexadecimal") t]))
477 "Additional menu items to add to the speedbar frame.")
479 ;; Make sure our special speedbar mode is loaded
480 (if (featurep 'speedbar)
481 (gud-install-speedbar-variables)
482 (add-hook 'speedbar-load-hook 'gud-install-speedbar-variables))
484 (defun gud-expansion-speedbar-buttons (_directory _zero)
485 "Wrapper for call to `speedbar-add-expansion-list'.
486 DIRECTORY and ZERO are not used, but are required by the caller."
487 (gud-speedbar-buttons gud-comint-buffer))
489 (defun gud-speedbar-buttons (buffer)
490 "Create a speedbar display based on the current state of GUD.
491 If the GUD BUFFER is not running a supported debugger, then turn
492 off the specialized speedbar mode. BUFFER is not used, but is
493 required by the caller."
494 (when (and gud-comint-buffer
495 ;; gud-comint-buffer might be killed
496 (buffer-name gud-comint-buffer))
497 (let* ((minor-mode (with-current-buffer buffer gud-minor-mode))
498 (window (get-buffer-window (current-buffer) 0))
499 (start (window-start window))
500 (p (window-point window)))
502 ((eq minor-mode 'gdbmi)
504 (insert "Watch Expressions:\n")
505 (let ((var-list gdb-var-list) parent)
507 (let* (char (depth 0) (start 0) (var (car var-list))
508 (varnum (car var)) (expr (nth 1 var))
509 (type (if (nth 3 var) (nth 3 var) " "))
510 (value (nth 4 var)) (status (nth 5 var))
511 (has-more (nth 6 var)))
513 0 (length expr) 'face font-lock-variable-name-face expr)
515 0 (length type) 'face font-lock-type-face type)
516 (while (string-match "\\." varnum start)
517 (setq depth (1+ depth)
518 start (1+ (match-beginning 0))))
519 (if (eq depth 0) (setq parent nil))
520 (if (and (or (not has-more) (string-equal has-more "0"))
521 (or (equal (nth 2 var) "0")
522 (and (equal (nth 2 var) "1")
523 (string-match "char \\*$" type)) ))
524 (speedbar-make-tag-line
526 (concat expr "\t" value)
527 (if (or parent (eq status 'out-of-scope))
530 (if gdb-show-changed-values
531 (or parent (pcase status
532 (`changed 'font-lock-warning-face)
533 (`out-of-scope 'shadow)
537 (if (eq status 'out-of-scope) (setq parent 'shadow))
538 (if (and (nth 1 var-list)
539 (string-match (concat varnum "\\.")
540 (car (nth 1 var-list))))
543 (if (string-match "\\*$\\|\\*&$" type)
544 (speedbar-make-tag-line
546 'gdb-speedbar-expand-node varnum
547 (concat expr "\t" type "\t" value)
548 (if (or parent (eq status 'out-of-scope))
551 (if gdb-show-changed-values
552 (or parent (pcase status
553 (`changed 'font-lock-warning-face)
554 (`out-of-scope 'shadow)
558 (speedbar-make-tag-line
560 'gdb-speedbar-expand-node varnum
561 (concat expr "\t" type)
563 (if (and (or parent status) gdb-show-changed-values)
566 (setq var-list (cdr var-list)))))
567 (t (unless (and (save-excursion
568 (goto-char (point-min))
569 (looking-at "Current Stack:"))
570 (equal gud-last-last-frame gud-last-speedbar-stackframe))
571 (let ((gud-frame-list
572 (cond ((eq minor-mode 'gdb)
573 (gud-gdb-get-stackframe buffer))
574 ;; Add more debuggers here!
575 (t (speedbar-remove-localized-speedbar-support buffer)
578 (if (not gud-frame-list)
579 (insert "No Stack frames\n")
580 (insert "Current Stack:\n"))
581 (dolist (frame gud-frame-list)
582 (insert (nth 1 frame) ":\n")
583 (if (= (length frame) 2)
585 (speedbar-insert-button (car frame)
586 'speedbar-directory-face
588 (speedbar-insert-button
591 'speedbar-highlight-face
592 (cond ((memq minor-mode '(gdbmi gdb))
593 'gud-gdb-goto-stackframe)
594 (t (error "Should never be here")))
596 (setq gud-last-speedbar-stackframe gud-last-last-frame))))
597 (set-window-start window start)
598 (set-window-point window p))))
601 ;; ======================================================================
604 ;; History of argument lists passed to gdb.
605 (defvar gud-gdb-history nil)
607 (defcustom gud-gud-gdb-command-name "gdb --fullname"
608 "Default command to run an executable under GDB in text command mode.
609 The option \"--fullname\" must be included in this value."
613 (defvar gud-gdb-marker-regexp
614 ;; This used to use path-separator instead of ":";
615 ;; however, we found that on both Windows 32 and MSDOS
616 ;; a colon is correct here.
617 (concat "\032\032\\(.:?[^" ":" "\n]*\\)" ":"
618 "\\([0-9]*\\)" ":" ".*\n"))
620 ;; There's no guarantee that Emacs will hand the filter the entire
621 ;; marker at once; it could be broken up across several strings. We
622 ;; might even receive a big chunk with several markers in it. If we
623 ;; receive a chunk of text which looks like it might contain the
624 ;; beginning of a marker, we save it here between calls to the
626 (defvar gud-marker-acc "")
627 (make-variable-buffer-local 'gud-marker-acc)
629 (defun gud-gdb-marker-filter (string)
630 (setq gud-marker-acc (concat gud-marker-acc string))
633 ;; Process all the complete markers in this chunk.
634 (while (string-match gud-gdb-marker-regexp gud-marker-acc)
637 ;; Extract the frame position from the marker.
638 gud-last-frame (cons (match-string 1 gud-marker-acc)
639 (string-to-number (match-string 2 gud-marker-acc)))
641 ;; Append any text before the marker to the output we're going
642 ;; to return - we don't include the marker in this text.
643 output (concat output
644 (substring gud-marker-acc 0 (match-beginning 0)))
646 ;; Set the accumulator to the remaining text.
647 gud-marker-acc (substring gud-marker-acc (match-end 0))))
649 (while (string-match "\n\032\032\\(.*\\)\n" gud-marker-acc)
651 ;; Append any text before the marker to the output we're going
652 ;; to return - we don't include the marker in this text.
653 output (concat output
654 (substring gud-marker-acc 0 (match-beginning 0)))
656 ;; Set the accumulator to the remaining text.
658 gud-marker-acc (substring gud-marker-acc (match-end 0))))
660 ;; Does the remaining text look like it might end with the
661 ;; beginning of another marker? If it does, then keep it in
662 ;; gud-marker-acc until we receive the rest of it. Since we
663 ;; know the full marker regexp above failed, it's pretty simple to
664 ;; test for marker starts.
665 (if (string-match "\n\\(\032.*\\)?\\'" gud-marker-acc)
667 ;; Everything before the potential marker start can be output.
668 (setq output (concat output (substring gud-marker-acc
669 0 (match-beginning 0))))
671 ;; Everything after, we save, to combine with later input.
673 (substring gud-marker-acc (match-beginning 0))))
675 (setq output (concat output gud-marker-acc)
680 (easy-mmode-defmap gud-minibuffer-local-map
681 '(("\C-i" . comint-dynamic-complete-filename))
682 "Keymap for minibuffer prompting of gud startup command."
683 :inherit minibuffer-local-map)
685 (defun gud-query-cmdline (minor-mode &optional init)
686 (let* ((hist-sym (gud-symbol 'history nil minor-mode))
687 (cmd-name (gud-val 'command-name minor-mode)))
688 (unless (boundp hist-sym) (set hist-sym nil))
689 (read-from-minibuffer
690 (format "Run %s (like this): " minor-mode)
691 (or (car-safe (symbol-value hist-sym))
692 (concat (or cmd-name (symbol-name minor-mode))
696 (dolist (f (directory-files default-directory) file)
697 (if (and (file-executable-p f)
698 (not (file-directory-p f))
700 (file-newer-than-file-p f file)))
702 gud-minibuffer-local-map nil
705 (defvar gdb-first-prompt t)
707 (defvar gud-filter-pending-text nil
708 "Non-nil means this is text that has been saved for later in `gud-filter'.")
710 ;; If in gdb mode, gdb-mi is loaded.
711 (declare-function gdb-restore-windows "gdb-mi" ())
713 ;; The old gdb command (text command mode). The new one is in gdb-mi.el.
715 (defun gud-gdb (command-line)
716 "Run gdb on program FILE in buffer *gud-FILE*.
717 The directory containing FILE becomes the initial working
718 directory and source-file directory for your debugger."
719 (interactive (list (gud-query-cmdline 'gud-gdb)))
721 (when (and gud-comint-buffer
722 (buffer-name gud-comint-buffer)
723 (get-buffer-process gud-comint-buffer)
724 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdbmi)))
725 (gdb-restore-windows)
727 "Multiple debugging requires restarting in text command mode"))
729 (gud-common-init command-line nil 'gud-gdb-marker-filter)
730 (set (make-local-variable 'gud-minor-mode) 'gdb)
732 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.")
733 (gud-def gud-tbreak "tbreak %f:%l" "\C-t"
734 "Set temporary breakpoint at current line.")
735 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line")
736 (gud-def gud-step "step %p" "\C-s" "Step one source line with display.")
737 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
738 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
739 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
740 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
741 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
743 (progn (gud-call "tbreak %f:%l") (gud-call "jump %f:%l"))
744 "\C-j" "Set execution address to current line.")
746 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
747 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
748 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
749 (gud-def gud-pstar "print* %e" nil
750 "Evaluate C dereferenced pointer expression at point.")
752 ;; For debugging Emacs only.
753 (gud-def gud-pv "pv %e" "\C-v" "Print the value of the lisp variable.")
755 (gud-def gud-until "until %l" "\C-u" "Continue to current line.")
756 (gud-def gud-run "run" nil "Run the program.")
758 (add-hook 'completion-at-point-functions #'gud-gdb-completion-at-point
760 (set (make-local-variable 'gud-gdb-completion-function) 'gud-gdb-completions)
762 (local-set-key "\C-i" 'completion-at-point)
763 (setq comint-prompt-regexp "^(.*gdb[+]?) *")
764 (setq paragraph-start comint-prompt-regexp)
765 (setq gdb-first-prompt t)
766 (setq gud-running nil)
767 (setq gud-filter-pending-text nil)
768 (run-hooks 'gud-gdb-mode-hook))
770 ;; One of the nice features of GDB is its impressive support for
771 ;; context-sensitive command completion. We preserve that feature
772 ;; in the GUD buffer by using a GDB command designed just for Emacs.
774 (defvar gud-gdb-completion-function nil
775 "Completion function for GDB commands.
776 It receives two arguments: COMMAND, the prefix for which we seek
777 completion; and CONTEXT, the text before COMMAND on the line.
778 It should return a list of completion strings.")
780 ;; The completion process filter indicates when it is finished.
781 (defvar gud-gdb-fetch-lines-in-progress)
783 ;; Since output may arrive in fragments we accumulate partials strings here.
784 (defvar gud-gdb-fetch-lines-string)
786 ;; We need to know how much of the completion to chop off.
787 (defvar gud-gdb-fetch-lines-break)
789 ;; The completion list is constructed by the process filter.
790 (defvar gud-gdb-fetched-lines)
792 (defun gud-gdb-completions (context command)
793 "Completion table for GDB commands.
794 COMMAND is the prefix for which we seek completion.
795 CONTEXT is the text before COMMAND on the line."
796 (let* ((start (- (point) (field-beginning)))
798 (gud-gdb-run-command-fetch-lines (concat "complete " context command)
800 ;; From string-match above.
802 ;; `gud-gdb-run-command-fetch-lines' has some nasty side-effects on the
803 ;; buffer (via `gud-delete-prompt-marker'): it removes the prompt and then
804 ;; re-adds it later, thus messing up markers and overlays along the way.
805 ;; This is a problem for completion-in-region which uses an overlay to
807 ;; So we restore completion-in-region's field if needed.
808 ;; FIXME: change gud-gdb-run-command-fetch-lines so it doesn't modify the
810 (when (/= start (- (point) (field-beginning)))
811 (dolist (ol (overlays-at (1- (point))))
812 (when (eq (overlay-get ol 'field) 'completion)
813 (move-overlay ol (- (point) start) (overlay-end ol)))))
814 ;; Protect against old versions of GDB.
816 (string-match "^Undefined command: \"complete\"" (car complete-list))
817 (error "This version of GDB doesn't support the `complete' command"))
818 (gud-gdb-completions-1 complete-list)))
820 ;; This function is also used by `gud-gdbmi-completions'.
821 (defun gud-gdb-completions-1 (complete-list)
822 ;; Sort the list like readline.
823 (setq complete-list (sort complete-list (function string-lessp)))
824 ;; Remove duplicates.
825 (let ((first complete-list)
826 (second (cdr complete-list)))
828 (if (string-equal (car first) (car second))
829 (setcdr first (setq second (cdr second)))
831 second (cdr second)))))
832 ;; Add a trailing single quote if there is a unique completion
833 ;; and it contains an odd number of unquoted single quotes.
834 (and (= (length complete-list) 1)
835 (let ((str (car complete-list))
838 (while (string-match "\\([^'\\]\\|\\\\'\\)*'" str pos)
839 (setq count (1+ count)
841 (and (= (mod count 2) 1)
842 (setq complete-list (list (concat str "'"))))))
845 (defun gud-gdb-completion-at-point ()
846 "Return the data to complete the GDB command before point."
850 (skip-chars-backward "^ " (comint-line-beginning-position))
853 (completion-table-dynamic
854 (apply-partially gud-gdb-completion-function
855 (buffer-substring (comint-line-beginning-position)
858 ;; (defun gud-gdb-complete-command ()
859 ;; "Perform completion on the GDB command preceding point.
860 ;; This is implemented using the GDB `complete' command which isn't
861 ;; available with older versions of GDB."
863 ;; (apply #'completion-in-region (gud-gdb-completion-at-point)))
865 ;; The completion process filter is installed temporarily to slurp the
866 ;; output of GDB up to the next prompt and build the completion list.
867 (defun gud-gdb-fetch-lines-filter (string)
868 "Filter used to read the list of lines output by a command.
869 STRING is the output to filter.
870 It is passed through `gud-gdb-marker-filter' before we look at it."
871 (setq string (gud-gdb-marker-filter string))
872 (setq string (concat gud-gdb-fetch-lines-string string))
873 (while (string-match "\n" string)
874 (push (substring string gud-gdb-fetch-lines-break (match-beginning 0))
875 gud-gdb-fetched-lines)
876 (setq string (substring string (match-end 0))))
877 (if (string-match comint-prompt-regexp string)
879 (setq gud-gdb-fetch-lines-in-progress nil)
882 (setq gud-gdb-fetch-lines-string string)
885 ;; gdb speedbar functions
887 (defun gud-gdb-goto-stackframe (_text token _indent)
888 "Goto the stackframe described by TEXT, TOKEN, and INDENT."
889 (speedbar-with-attached-buffer
890 (gud-basic-call (concat "server frame " (nth 1 token)))
893 (defvar gud-gdb-fetched-stack-frame nil
894 "Stack frames we are fetching from GDB.")
896 (defun gud-gdb-get-stackframe (buffer)
897 "Extract the current stack frame out of the GUD GDB BUFFER."
899 (fetched-stack-frame-list
900 (gud-gdb-run-command-fetch-lines "server backtrace" buffer)))
901 (if (and (car fetched-stack-frame-list)
902 (string-match "No stack" (car fetched-stack-frame-list)))
903 ;; Go into some other mode???
905 (dolist (e fetched-stack-frame-list)
906 (let ((name nil) (num nil))
908 (string-match "^#\\([0-9]+\\) +[0-9a-fx]+ in \\([:0-9a-zA-Z_]+\\) (" e)
909 (string-match "^#\\([0-9]+\\) +\\([:0-9a-zA-Z_]+\\) (" e)))
910 (if (not (string-match
911 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e))
914 (list (nth 0 (car newlst))
917 (match-string 2 e))))
918 (setq num (match-string 1 e)
919 name (match-string 2 e))
923 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e)
924 (list name num (match-string 1 e)
930 ;(defun gud-gdb-selected-frame-info (buffer)
931 ; "Learn GDB information for the currently selected stack frame in BUFFER."
934 (defun gud-gdb-run-command-fetch-lines (command buffer &optional skip)
935 "Run COMMAND, and return the list of lines it outputs.
936 BUFFER is the current buffer which may be the GUD buffer in which to run.
937 SKIP is the number of chars to skip on each line, it defaults to 0."
938 (with-current-buffer gud-comint-buffer
939 (unless (and (eq gud-comint-buffer buffer)
941 (goto-char (point-max))
943 (not (looking-at comint-prompt-regexp))))
944 (let ((gud-gdb-fetch-lines-in-progress t)
945 (gud-gdb-fetched-lines nil)
946 (gud-gdb-fetch-lines-string nil)
947 (gud-gdb-fetch-lines-break (or skip 0))
948 (gud-marker-filter #'gud-gdb-fetch-lines-filter))
949 ;; Issue the command to GDB.
950 (gud-basic-call command)
952 (while gud-gdb-fetch-lines-in-progress
953 (accept-process-output (get-buffer-process gud-comint-buffer)))
954 (nreverse gud-gdb-fetched-lines)))))
957 ;; ======================================================================
960 ;; History of argument lists passed to sdb.
961 (defvar gud-sdb-history nil)
963 (defvar gud-sdb-needs-tags (not (file-exists-p "/var"))
964 "If nil, we're on a System V Release 4 and don't need the tags hack.")
966 (defvar gud-sdb-lastfile nil)
968 (defun gud-sdb-marker-filter (string)
970 (if gud-marker-acc (concat gud-marker-acc string) string))
972 ;; Process all complete markers in this chunk
975 ;; System V Release 3.2 uses this format
976 ((string-match "\\(^\\|\n\\)\\*?\\(0x\\w* in \\)?\\([^:\n]*\\):\\([0-9]*\\):.*\n"
977 gud-marker-acc start)
979 (cons (match-string 3 gud-marker-acc)
980 (string-to-number (match-string 4 gud-marker-acc)))))
981 ;; System V Release 4.0 quite often clumps two lines together
982 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n\\([0-9]+\\):"
983 gud-marker-acc start)
984 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc))
986 (cons gud-sdb-lastfile
987 (string-to-number (match-string 3 gud-marker-acc)))))
988 ;; System V Release 4.0
989 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n"
990 gud-marker-acc start)
991 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc)))
992 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):"
993 gud-marker-acc start))
995 (cons gud-sdb-lastfile
996 (string-to-number (match-string 1 gud-marker-acc)))))
998 (setq gud-sdb-lastfile nil)))
999 (setq start (match-end 0)))
1001 ;; Search for the last incomplete line in this chunk
1002 (while (string-match "\n" gud-marker-acc start)
1003 (setq start (match-end 0)))
1005 ;; If we have an incomplete line, store it in gud-marker-acc.
1006 (setq gud-marker-acc (substring gud-marker-acc (or start 0))))
1009 (defun gud-sdb-find-file (f)
1010 (if gud-sdb-needs-tags (find-tag-noselect f) (find-file-noselect f)))
1013 (defun sdb (command-line)
1014 "Run sdb on program FILE in buffer *gud-FILE*.
1015 The directory containing FILE becomes the initial working directory
1016 and source-file directory for your debugger."
1017 (interactive (list (gud-query-cmdline 'sdb)))
1019 (if gud-sdb-needs-tags (require 'etags))
1020 (if (and gud-sdb-needs-tags
1021 (not (and (boundp 'tags-file-name)
1022 (stringp tags-file-name)
1023 (file-exists-p tags-file-name))))
1024 (error "The sdb support requires a valid tags table to work"))
1026 (gud-common-init command-line nil 'gud-sdb-marker-filter 'gud-sdb-find-file)
1027 (set (make-local-variable 'gud-minor-mode) 'sdb)
1029 (gud-def gud-break "%l b" "\C-b" "Set breakpoint at current line.")
1030 (gud-def gud-tbreak "%l c" "\C-t" "Set temporary breakpoint at current line.")
1031 (gud-def gud-remove "%l d" "\C-d" "Remove breakpoint at current line")
1032 (gud-def gud-step "s %p" "\C-s" "Step one source line with display.")
1033 (gud-def gud-stepi "i %p" "\C-i" "Step one instruction with display.")
1034 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1035 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1036 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.")
1038 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*")
1039 (setq paragraph-start comint-prompt-regexp)
1040 (run-hooks 'sdb-mode-hook)
1043 ;; ======================================================================
1046 ;; History of argument lists passed to dbx.
1047 (defvar gud-dbx-history nil)
1049 (defcustom gud-dbx-directories nil
1050 "A list of directories that dbx should search for source code.
1051 If nil, only source files in the program directory
1052 will be known to dbx.
1054 The file names should be absolute, or relative to the directory
1055 containing the executable being debugged."
1056 :type '(choice (const :tag "Current Directory" nil)
1061 (defun gud-dbx-massage-args (_file args)
1062 (nconc (let ((directories gud-dbx-directories)
1065 (setq result (cons (car directories) (cons "-I" result)))
1066 (setq directories (cdr directories)))
1070 (defun gud-dbx-marker-filter (string)
1071 (setq gud-marker-acc (if gud-marker-acc (concat gud-marker-acc string) string))
1074 ;; Process all complete markers in this chunk.
1075 (while (or (string-match
1076 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1077 gud-marker-acc start)
1079 "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1080 gud-marker-acc start))
1081 (setq gud-last-frame
1082 (cons (match-string 2 gud-marker-acc)
1083 (string-to-number (match-string 1 gud-marker-acc)))
1084 start (match-end 0)))
1086 ;; Search for the last incomplete line in this chunk
1087 (while (string-match "\n" gud-marker-acc start)
1088 (setq start (match-end 0)))
1090 ;; If the incomplete line APPEARS to begin with another marker, keep it
1091 ;; in the accumulator. Otherwise, clear the accumulator to avoid an
1092 ;; unnecessary concat during the next call.
1093 (setq gud-marker-acc
1094 (if (string-match "\\(stopped\\|signal\\)" gud-marker-acc start)
1095 (substring gud-marker-acc (match-beginning 0))
1099 ;; Functions for Mips-style dbx. Given the option `-emacs', documented in
1100 ;; OSF1, not necessarily elsewhere, it produces markers similar to gdb's.
1102 (or (string-match "^mips-[^-]*-ultrix" system-configuration)
1103 ;; We haven't tested gud on this system:
1104 (string-match "^mips-[^-]*-riscos" system-configuration)
1105 ;; It's documented on OSF/1.3
1106 (string-match "^mips-[^-]*-osf1" system-configuration)
1107 (string-match "^alpha[^-]*-[^-]*-osf" system-configuration))
1108 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').")
1110 (defvar gud-dbx-command-name
1111 (concat "dbx" (if gud-mips-p " -emacs")))
1113 ;; This is just like the gdb one except for the regexps since we need to cope
1114 ;; with an optional breakpoint number in [] before the ^Z^Z
1115 (defun gud-mipsdbx-marker-filter (string)
1116 (setq gud-marker-acc (concat gud-marker-acc string))
1119 ;; Process all the complete markers in this chunk.
1120 (while (string-match
1121 ;; This is like th gdb marker but with an optional
1122 ;; leading break point number like `[1] '
1123 "[][ 0-9]*\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n"
1127 ;; Extract the frame position from the marker.
1129 (cons (match-string 1 gud-marker-acc)
1130 (string-to-number (match-string 2 gud-marker-acc)))
1132 ;; Append any text before the marker to the output we're going
1133 ;; to return - we don't include the marker in this text.
1134 output (concat output
1135 (substring gud-marker-acc 0 (match-beginning 0)))
1137 ;; Set the accumulator to the remaining text.
1138 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1140 ;; Does the remaining text look like it might end with the
1141 ;; beginning of another marker? If it does, then keep it in
1142 ;; gud-marker-acc until we receive the rest of it. Since we
1143 ;; know the full marker regexp above failed, it's pretty simple to
1144 ;; test for marker starts.
1145 (if (string-match "[][ 0-9]*\032.*\\'" gud-marker-acc)
1147 ;; Everything before the potential marker start can be output.
1148 (setq output (concat output (substring gud-marker-acc
1149 0 (match-beginning 0))))
1151 ;; Everything after, we save, to combine with later input.
1152 (setq gud-marker-acc
1153 (substring gud-marker-acc (match-beginning 0))))
1155 (setq output (concat output gud-marker-acc)
1160 ;; The dbx in IRIX is a pain. It doesn't print the file name when
1161 ;; stopping at a breakpoint (but you do get it from the `up' and
1162 ;; `down' commands...). The only way to extract the information seems
1163 ;; to be with a `file' command, although the current line number is
1164 ;; available in $curline. Thus we have to look for output which
1165 ;; appears to indicate a breakpoint. Then we prod the dbx sub-process
1166 ;; to output the information we want with a combination of the
1167 ;; `printf' and `file' commands as a pseudo marker which we can
1168 ;; recognize next time through the marker-filter. This would be like
1169 ;; the gdb marker but you can't get the file name without a newline...
1170 ;; Note that gud-remove won't work since Irix dbx expects a breakpoint
1171 ;; number rather than a line number etc. Maybe this could be made to
1172 ;; work by listing all the breakpoints and picking the one(s) with the
1173 ;; correct line number, but life's too short.
1174 ;; d.love@dl.ac.uk (Dave Love) can be blamed for this
1177 (and (string-match "^mips-[^-]*-irix" system-configuration)
1178 (not (string-match "irix[6-9]\\.[1-9]" system-configuration)))
1179 "Non-nil to assume the interface appropriate for IRIX dbx.
1180 This works in IRIX 4, 5 and 6, but `gud-dbx-use-stopformat-p' provides
1181 a better solution in 6.1 upwards.")
1182 (defvar gud-dbx-use-stopformat-p
1183 (string-match "irix[6-9]\\.[1-9]" system-configuration)
1184 "Non-nil to use the dbx feature present at least from Irix 6.1
1185 whereby $stopformat=1 produces an output format compatible with
1186 `gud-dbx-marker-filter'.")
1187 ;; [Irix dbx seems to be a moving target. The dbx output changed
1188 ;; subtly sometime between OS v4.0.5 and v5.2 so that, for instance,
1189 ;; the output from `up' is no longer spotted by gud (and it's probably
1190 ;; not distinctive enough to try to match it -- use C-<, C->
1191 ;; exclusively) . For 5.3 and 6.0, the $curline variable changed to
1192 ;; `long long'(why?!), so the printf stuff needed changing. The line
1193 ;; number was cast to `long' as a compromise between the new `long
1194 ;; long' and the original `int'. This is reported not to work in 6.2,
1195 ;; so it's changed back to int -- don't make your sources too long.
1196 ;; From Irix6.1 (but not 6.0?) dbx supports an undocumented feature
1197 ;; whereby `set $stopformat=1' reportedly produces output compatible
1198 ;; with `gud-dbx-marker-filter', which we prefer.
1200 ;; The process filter is also somewhat
1201 ;; unreliable, sometimes not spotting the markers; I don't know
1202 ;; whether there's anything that can be done about that. It would be
1203 ;; much better if SGI could be persuaded to (re?)instate the MIPS
1204 ;; -emacs flag for gdb-like output (which ought to be possible as most
1205 ;; of the communication I've had over it has been from sgi.com).]
1207 ;; this filter is influenced by the xdb one rather than the gdb one
1208 (defun gud-irixdbx-marker-filter (string)
1209 (let (result (case-fold-search nil))
1210 (if (or (string-match comint-prompt-regexp string)
1211 (string-match ".*\012" string))
1212 (setq result (concat gud-marker-acc string)
1214 (setq gud-marker-acc (concat gud-marker-acc string)))
1217 ;; look for breakpoint or signal indication e.g.:
1218 ;; [2] Process 1267 (pplot) stopped at [params:338 ,0x400ec0]
1219 ;; Process 1281 (pplot) stopped at [params:339 ,0x400ec8]
1220 ;; Process 1270 (pplot) Floating point exception [._read._read:16 ,0x452188]
1222 "^\\(\\[[0-9]+] \\)?Process +[0-9]+ ([^)]*) [^[]+\\[[^]\n]*]\n"
1224 ;; prod dbx into printing out the line number and file
1225 ;; name in a form we can grok as below
1226 (process-send-string (get-buffer-process gud-comint-buffer)
1227 "printf \"\032\032%1d:\",(int)$curline;file\n"))
1228 ;; look for result of, say, "up" e.g.:
1229 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c]
1230 ;; (this will also catch one of the lines printed by "where")
1232 "^[^ ][^[]*\\[\"\\([^\"]+\\)\":\\([0-9]+\\), [^]]+]\n"
1234 (let ((file (match-string 1 result)))
1235 (if (file-exists-p file)
1236 (setq gud-last-frame
1237 (cons (match-string 1 result)
1238 (string-to-number (match-string 2 result))))))
1240 ((string-match ; kluged-up marker as above
1241 "\032\032\\([0-9]*\\):\\(.*\\)\n" result)
1242 (let ((file (gud-file-name (match-string 2 result))))
1243 (if (and file (file-exists-p file))
1244 (setq gud-last-frame
1246 (string-to-number (match-string 1 result))))))
1247 (setq result (substring result 0 (match-beginning 0))))))
1250 ;; There are a couple of differences between DG's dbx output and normal
1251 ;; dbx output which make it nontrivial to integrate this into the
1252 ;; standard dbx-marker-filter (mainly, there are a different number of
1253 ;; backreferences). The markers look like:
1255 ;; (0) Stopped at line 10, routine main(argc=1, argv=0xeffff0e0), file t.c
1257 ;; from breakpoints (the `(0)' there isn't constant, it's the breakpoint
1260 ;; Stopped at line 13, routine main(argc=1, argv=0xeffff0e0), file t.c
1264 ;; Frame 21, line 974, routine command_loop(), file keyboard.c
1266 ;; from up/down/where.
1268 (defun gud-dguxdbx-marker-filter (string)
1269 (setq gud-marker-acc (if gud-marker-acc
1270 (concat gud-marker-acc string)
1272 (let ((re (concat "^\\(\\(([0-9]+) \\)?Stopped at\\|Frame [0-9]+,\\)"
1273 " line \\([0-9]+\\), routine .*, file \\([^ \t\n]+\\)"))
1275 ;; Process all complete markers in this chunk.
1276 (while (string-match re gud-marker-acc start)
1277 (setq gud-last-frame
1278 (cons (match-string 4 gud-marker-acc)
1279 (string-to-number (match-string 3 gud-marker-acc)))
1280 start (match-end 0)))
1282 ;; Search for the last incomplete line in this chunk
1283 (while (string-match "\n" gud-marker-acc start)
1284 (setq start (match-end 0)))
1286 ;; If the incomplete line APPEARS to begin with another marker, keep it
1287 ;; in the accumulator. Otherwise, clear the accumulator to avoid an
1288 ;; unnecessary concat during the next call.
1289 (setq gud-marker-acc
1290 (if (string-match "Stopped\\|Frame" gud-marker-acc start)
1291 (substring gud-marker-acc (match-beginning 0))
1296 (defun dbx (command-line)
1297 "Run dbx on program FILE in buffer *gud-FILE*.
1298 The directory containing FILE becomes the initial working directory
1299 and source-file directory for your debugger."
1300 (interactive (list (gud-query-cmdline 'dbx)))
1304 (gud-common-init command-line nil 'gud-mipsdbx-marker-filter))
1306 (gud-common-init command-line 'gud-dbx-massage-args
1307 'gud-irixdbx-marker-filter))
1309 (gud-common-init command-line 'gud-dbx-massage-args
1310 'gud-dbx-marker-filter)))
1312 (set (make-local-variable 'gud-minor-mode) 'dbx)
1316 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1317 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1318 (gud-def gud-break "stop at \"%f\":%l"
1319 "\C-b" "Set breakpoint at current line.")
1320 (gud-def gud-finish "return" "\C-f" "Finish executing current function."))
1322 (gud-def gud-break "stop at \"%d%f\":%l"
1323 "\C-b" "Set breakpoint at current line.")
1324 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")
1325 (gud-def gud-up "up %p; printf \"\032\032%1d:\",(int)$curline;file\n"
1326 "<" "Up (numeric arg) stack frames.")
1327 (gud-def gud-down "down %p; printf \"\032\032%1d:\",(int)$curline;file\n"
1328 ">" "Down (numeric arg) stack frames.")
1329 ;; Make dbx give out the source location info that we need.
1330 (process-send-string (get-buffer-process gud-comint-buffer)
1331 "printf \"\032\032%1d:\",(int)$curline;file\n"))
1333 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1334 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1335 (gud-def gud-break "file \"%d%f\"\nstop at %l"
1336 "\C-b" "Set breakpoint at current line.")
1337 (if gud-dbx-use-stopformat-p
1338 (process-send-string (get-buffer-process gud-comint-buffer)
1339 "set $stopformat=1\n"))))
1341 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
1342 (gud-def gud-step "step %p" "\C-s" "Step one line with display.")
1343 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
1344 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
1345 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
1346 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
1347 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
1348 (gud-def gud-run "run" nil "Run the program.")
1350 (setq comint-prompt-regexp "^[^)\n]*dbx) *")
1351 (setq paragraph-start comint-prompt-regexp)
1352 (run-hooks 'dbx-mode-hook)
1355 ;; ======================================================================
1356 ;; xdb (HP PARISC debugger) functions
1358 ;; History of argument lists passed to xdb.
1359 (defvar gud-xdb-history nil)
1361 (defcustom gud-xdb-directories nil
1362 "A list of directories that xdb should search for source code.
1363 If nil, only source files in the program directory
1364 will be known to xdb.
1366 The file names should be absolute, or relative to the directory
1367 containing the executable being debugged."
1368 :type '(choice (const :tag "Current Directory" nil)
1373 (defun gud-xdb-massage-args (_file args)
1374 (nconc (let ((directories gud-xdb-directories)
1377 (setq result (cons (car directories) (cons "-d" result)))
1378 (setq directories (cdr directories)))
1382 ;; xdb does not print the lines all at once, so we have to accumulate them
1383 (defun gud-xdb-marker-filter (string)
1385 (if (or (string-match comint-prompt-regexp string)
1386 (string-match ".*\012" string))
1387 (setq result (concat gud-marker-acc string)
1389 (setq gud-marker-acc (concat gud-marker-acc string)))
1391 (if (or (string-match "\\([^\n \t:]+\\): [^:]+: \\([0-9]+\\)[: ]"
1393 (string-match "[^: \t]+:[ \t]+\\([^:]+\\): [^:]+: \\([0-9]+\\):"
1395 (let ((line (string-to-number (match-string 2 result)))
1396 (file (gud-file-name (match-string 1 result))))
1398 (setq gud-last-frame (cons file line))))))
1402 (defun xdb (command-line)
1403 "Run xdb on program FILE in buffer *gud-FILE*.
1404 The directory containing FILE becomes the initial working directory
1405 and source-file directory for your debugger.
1407 You can set the variable `gud-xdb-directories' to a list of program source
1408 directories if your program contains sources from more than one directory."
1409 (interactive (list (gud-query-cmdline 'xdb)))
1411 (gud-common-init command-line 'gud-xdb-massage-args
1412 'gud-xdb-marker-filter)
1413 (set (make-local-variable 'gud-minor-mode) 'xdb)
1415 (gud-def gud-break "b %f:%l" "\C-b" "Set breakpoint at current line.")
1416 (gud-def gud-tbreak "b %f:%l\\t" "\C-t"
1417 "Set temporary breakpoint at current line.")
1418 (gud-def gud-remove "db" "\C-d" "Remove breakpoint at current line")
1419 (gud-def gud-step "s %p" "\C-s" "Step one line with display.")
1420 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1421 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1422 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1423 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1424 (gud-def gud-finish "bu\\t" "\C-f" "Finish executing current function.")
1425 (gud-def gud-print "p %e" "\C-p" "Evaluate C expression at point.")
1427 (setq comint-prompt-regexp "^>")
1428 (setq paragraph-start comint-prompt-regexp)
1429 (run-hooks 'xdb-mode-hook))
1431 ;; ======================================================================
1434 ;; History of argument lists passed to perldb.
1435 (defvar gud-perldb-history nil)
1437 (defun gud-perldb-massage-args (_file args)
1438 "Convert a command line as would be typed normally to run perldb
1439 into one that invokes an Emacs-enabled debugging session.
1440 \"-emacs\" is inserted where it will be $ARGV[0] (see perl5db.pl)."
1441 ;; FIXME: what if the command is `make perldb' and doesn't accept those extra
1443 (let* ((new-args nil)
1445 (shift (lambda () (push (pop args) new-args))))
1447 ;; Pass all switches and -e scripts through.
1449 (string-match "^-" (car args))
1450 (not (equal "-" (car args)))
1451 (not (equal "--" (car args))))
1452 (when (equal "-e" (car args))
1453 ;; -e goes with the next arg, so shift one extra.
1455 ;; -e as the last arg is an error in Perl.
1456 (error "No code specified for -e"))
1462 (string-match "^-" (car args)))
1463 (error "Can't use stdin as the script to debug"))
1464 ;; This is the program name.
1467 ;; If -e specified, make sure there is a -- so -emacs is not taken
1469 (if (and args (equal "--" (car args)))
1471 (and seen-e (push "--" new-args)))
1473 (push "-emacs" new-args)
1477 (nreverse new-args)))
1479 ;; There's no guarantee that Emacs will hand the filter the entire
1480 ;; marker at once; it could be broken up across several strings. We
1481 ;; might even receive a big chunk with several markers in it. If we
1482 ;; receive a chunk of text which looks like it might contain the
1483 ;; beginning of a marker, we save it here between calls to the
1485 (defun gud-perldb-marker-filter (string)
1486 (setq gud-marker-acc (concat gud-marker-acc string))
1489 ;; Process all the complete markers in this chunk.
1490 (while (string-match "\032\032\\(\\([a-zA-Z]:\\)?[^:\n]*\\):\\([0-9]*\\):.*\n"
1494 ;; Extract the frame position from the marker.
1496 (cons (match-string 1 gud-marker-acc)
1497 (string-to-number (match-string 3 gud-marker-acc)))
1499 ;; Append any text before the marker to the output we're going
1500 ;; to return - we don't include the marker in this text.
1501 output (concat output
1502 (substring gud-marker-acc 0 (match-beginning 0)))
1504 ;; Set the accumulator to the remaining text.
1505 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1507 ;; Does the remaining text look like it might end with the
1508 ;; beginning of another marker? If it does, then keep it in
1509 ;; gud-marker-acc until we receive the rest of it. Since we
1510 ;; know the full marker regexp above failed, it's pretty simple to
1511 ;; test for marker starts.
1512 (if (string-match "\032.*\\'" gud-marker-acc)
1514 ;; Everything before the potential marker start can be output.
1515 (setq output (concat output (substring gud-marker-acc
1516 0 (match-beginning 0))))
1518 ;; Everything after, we save, to combine with later input.
1519 (setq gud-marker-acc
1520 (substring gud-marker-acc (match-beginning 0))))
1522 (setq output (concat output gud-marker-acc)
1527 (defcustom gud-perldb-command-name "perl -d"
1528 "Default command to execute a Perl script under debugger."
1533 (defun perldb (command-line)
1534 "Run perldb on program FILE in buffer *gud-FILE*.
1535 The directory containing FILE becomes the initial working directory
1536 and source-file directory for your debugger."
1538 (list (gud-query-cmdline 'perldb
1539 (concat (or (buffer-file-name) "-e 0") " "))))
1541 (gud-common-init command-line 'gud-perldb-massage-args
1542 'gud-perldb-marker-filter)
1543 (set (make-local-variable 'gud-minor-mode) 'perldb)
1545 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.")
1546 (gud-def gud-remove "B %l" "\C-d" "Remove breakpoint at current line")
1547 (gud-def gud-step "s" "\C-s" "Step one source line with display.")
1548 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).")
1549 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1550 ; (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
1551 ; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
1552 ; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
1553 (gud-def gud-print "p %e" "\C-p" "Evaluate perl expression at point.")
1554 (gud-def gud-until "c %l" "\C-u" "Continue to current line.")
1557 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ")
1558 (setq paragraph-start comint-prompt-regexp)
1559 (run-hooks 'perldb-mode-hook))
1561 ;; ======================================================================
1562 ;; pdb (Python debugger) functions
1564 ;; History of argument lists passed to pdb.
1565 (defvar gud-pdb-history nil)
1567 ;; Last group is for return value, e.g. "> test.py(2)foo()->None"
1568 ;; Either file or function name may be omitted: "> <string>(0)?()"
1569 (defvar gud-pdb-marker-regexp
1570 "^> \\([-a-zA-Z0-9_/.:\\]*\\|<string>\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|<module>\\)()\\(->[^\n\r]*\\)?[\n\r]")
1572 (defvar gud-pdb-marker-regexp-file-group 1)
1573 (defvar gud-pdb-marker-regexp-line-group 2)
1574 (defvar gud-pdb-marker-regexp-fnname-group 3)
1576 (defvar gud-pdb-marker-regexp-start "^> ")
1578 ;; There's no guarantee that Emacs will hand the filter the entire
1579 ;; marker at once; it could be broken up across several strings. We
1580 ;; might even receive a big chunk with several markers in it. If we
1581 ;; receive a chunk of text which looks like it might contain the
1582 ;; beginning of a marker, we save it here between calls to the
1584 (defun gud-pdb-marker-filter (string)
1585 (setq gud-marker-acc (concat gud-marker-acc string))
1588 ;; Process all the complete markers in this chunk.
1589 (while (string-match gud-pdb-marker-regexp gud-marker-acc)
1592 ;; Extract the frame position from the marker.
1594 (let ((file (match-string gud-pdb-marker-regexp-file-group
1596 (line (string-to-number
1597 (match-string gud-pdb-marker-regexp-line-group
1599 (if (string-equal file "<string>")
1603 ;; Output everything instead of the below
1604 output (concat output (substring gud-marker-acc 0 (match-end 0)))
1605 ;; ;; Append any text before the marker to the output we're going
1606 ;; ;; to return - we don't include the marker in this text.
1607 ;; output (concat output
1608 ;; (substring gud-marker-acc 0 (match-beginning 0)))
1610 ;; Set the accumulator to the remaining text.
1611 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1613 ;; Does the remaining text look like it might end with the
1614 ;; beginning of another marker? If it does, then keep it in
1615 ;; gud-marker-acc until we receive the rest of it. Since we
1616 ;; know the full marker regexp above failed, it's pretty simple to
1617 ;; test for marker starts.
1618 (if (string-match gud-pdb-marker-regexp-start gud-marker-acc)
1620 ;; Everything before the potential marker start can be output.
1621 (setq output (concat output (substring gud-marker-acc
1622 0 (match-beginning 0))))
1624 ;; Everything after, we save, to combine with later input.
1625 (setq gud-marker-acc
1626 (substring gud-marker-acc (match-beginning 0))))
1628 (setq output (concat output gud-marker-acc)
1633 (defcustom gud-pdb-command-name "pdb"
1634 "File name for executing the Python debugger.
1635 This should be an executable on your path, or an absolute file name."
1640 (defun pdb (command-line)
1641 "Run pdb on program FILE in buffer `*gud-FILE*'.
1642 The directory containing FILE becomes the initial working directory
1643 and source-file directory for your debugger."
1645 (list (gud-query-cmdline 'pdb)))
1647 (gud-common-init command-line nil 'gud-pdb-marker-filter)
1648 (set (make-local-variable 'gud-minor-mode) 'pdb)
1650 (gud-def gud-break "break %d%f:%l" "\C-b" "Set breakpoint at current line.")
1651 (gud-def gud-remove "clear %d%f:%l" "\C-d" "Remove breakpoint at current line")
1652 (gud-def gud-step "step" "\C-s" "Step one source line with display.")
1653 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
1654 (gud-def gud-cont "continue" "\C-r" "Continue with display.")
1655 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")
1656 (gud-def gud-up "up" "<" "Up one stack frame.")
1657 (gud-def gud-down "down" ">" "Down one stack frame.")
1658 (gud-def gud-print "p %e" "\C-p" "Evaluate Python expression at point.")
1660 (gud-def gud-statement "! %e" "\C-e" "Execute Python statement at point.")
1662 ;; (setq comint-prompt-regexp "^(.*pdb[+]?) *")
1663 (setq comint-prompt-regexp "^(Pdb) *")
1664 (setq paragraph-start comint-prompt-regexp)
1665 (run-hooks 'pdb-mode-hook))
1667 ;; ======================================================================
1671 ;; AUTHOR: Derek Davies <ddavies@world.std.com>
1672 ;; Zoltan Kemenczy <zoltan@ieee.org;zkemenczy@rim.net>
1674 ;; CREATED: Sun Feb 22 10:46:38 1998 Derek Davies.
1675 ;; UPDATED: Nov 11, 2001 Zoltan Kemenczy
1676 ;; Dec 10, 2002 Zoltan Kemenczy - added nested class support
1678 ;; INVOCATION NOTES:
1680 ;; You invoke jdb-mode with:
1684 ;; It responds with:
1686 ;; Run jdb (like this): jdb
1688 ;; type any jdb switches followed by the name of the class you'd like to debug.
1689 ;; Supply a fully qualified classname (these don't have the ".class" extension)
1690 ;; for the name of the class to debug (e.g. "COM.the-kind.ddavies.CoolClass").
1691 ;; See the known problems section below for restrictions when specifying jdb
1692 ;; command line switches (search forward for '-classpath').
1694 ;; You should see something like the following:
1696 ;; Current directory is ~/src/java/hello/
1697 ;; Initializing jdb...
1698 ;; 0xed2f6628:class(hello)
1701 ;; To set an initial breakpoint try:
1703 ;; > stop in hello.main
1704 ;; Breakpoint set in hello.main
1707 ;; To execute the program type:
1712 ;; Breakpoint hit: running ...
1713 ;; hello.main (hello:12)
1715 ;; Type M-n to step over the current line and M-s to step into it. That,
1716 ;; along with the JDB 'help' command should get you started. The 'quit'
1717 ;; JDB command will get out out of the debugger. There is some truly
1718 ;; pathetic JDB documentation available at:
1720 ;; http://java.sun.com/products/jdk/1.1/debugging/
1722 ;; KNOWN PROBLEMS AND FIXME's:
1724 ;; Not sure what happens with inner classes ... haven't tried them.
1726 ;; Does not grok UNICODE id's. Only ASCII id's are supported.
1728 ;; You must not put whitespace between "-classpath" and the path to
1729 ;; search for java classes even though it is required when invoking jdb
1730 ;; from the command line. See gud-jdb-massage-args for details.
1731 ;; The same applies for "-sourcepath".
1733 ;; Note: The following applies only if `gud-jdb-use-classpath' is nil;
1734 ;; refer to the documentation of `gud-jdb-use-classpath' and
1735 ;; `gud-jdb-classpath',`gud-jdb-sourcepath' variables for information
1736 ;; on using the classpath for locating java source files.
1738 ;; If any of the source files in the directories listed in
1739 ;; gud-jdb-directories won't parse you'll have problems. Make sure
1740 ;; every file ending in ".java" in these directories parses without error.
1742 ;; All the .java files in the directories in gud-jdb-directories are
1743 ;; syntactically analyzed each time gud jdb is invoked. It would be
1744 ;; nice to keep as much information as possible between runs. It would
1745 ;; be really nice to analyze the files only as necessary (when the
1746 ;; source needs to be displayed.) I'm not sure to what extent the former
1747 ;; can be accomplished and I'm not sure the latter can be done at all
1748 ;; since I don't know of any general way to tell which .class files are
1749 ;; defined by which .java file without analyzing all the .java files.
1750 ;; If anyone knows why JavaSoft didn't put the source file names in
1751 ;; debuggable .class files please clue me in so I find something else
1752 ;; to be spiteful and bitter about.
1754 ;; ======================================================================
1755 ;; gud jdb variables and functions
1757 (defcustom gud-jdb-command-name "jdb"
1758 "Command that executes the Java debugger."
1762 (defcustom gud-jdb-use-classpath t
1763 "If non-nil, search for Java source files in classpath directories.
1764 The list of directories to search is the value of `gud-jdb-classpath'.
1765 The file pathname is obtained by converting the fully qualified
1766 class information output by jdb to a relative pathname and appending
1767 it to `gud-jdb-classpath' element by element until a match is found.
1769 This method has a significant jdb startup time reduction advantage
1770 since it does not require the scanning of all `gud-jdb-directories'
1771 and parsing all Java files for class information.
1773 Set to nil to use `gud-jdb-directories' to scan java sources for
1774 class information on jdb startup (original method)."
1778 (defvar gud-jdb-classpath nil
1779 "Java/jdb classpath directories list.
1780 If `gud-jdb-use-classpath' is non-nil, gud-jdb derives the `gud-jdb-classpath'
1781 list automatically using the following methods in sequence
1782 \(with subsequent successful steps overriding the results of previous
1785 1) Read the CLASSPATH environment variable,
1786 2) Read any \"-classpath\" argument used to run jdb,
1787 or detected in jdb output (e.g. if jdb is run by a script
1788 that echoes the actual jdb command before starting jdb),
1789 3) Send a \"classpath\" command to jdb and scan jdb output for
1790 classpath information if jdb is invoked with an \"-attach\" (to
1791 an already running VM) argument (This case typically does not
1792 have a \"-classpath\" command line argument - that is provided
1793 to the VM when it is started).
1795 Note that method 3 cannot be used with oldjdb (or Java 1 jdb) since
1796 those debuggers do not support the classpath command. Use 1) or 2).")
1798 (defvar gud-jdb-sourcepath nil
1799 "Directory list provided by an (optional) \"-sourcepath\" option to jdb.
1800 This list is prepended to `gud-jdb-classpath' to form the complete
1801 list of directories searched for source files.")
1803 (defvar gud-marker-acc-max-length 4000
1804 "Maximum number of debugger output characters to keep.
1805 This variable limits the size of `gud-marker-acc' which holds
1806 the most recent debugger output history while searching for
1807 source file information.")
1809 (defvar gud-jdb-history nil
1810 "History of argument lists passed to jdb.")
1813 ;; List of Java source file directories.
1814 (defvar gud-jdb-directories (list ".")
1815 "A list of directories that gud jdb should search for source code.
1816 The file names should be absolute, or relative to the current
1819 The set of .java files residing in the directories listed are
1820 syntactically analyzed to determine the classes they define and the
1821 packages in which these classes belong. In this way gud jdb maps the
1822 package-qualified class names output by the jdb debugger to the source
1823 file from which the class originated. This allows gud mode to keep
1824 the source code display in sync with the debugging session.")
1826 (defvar gud-jdb-source-files nil
1827 "List of the java source files for this debugging session.")
1829 ;; Association list of fully qualified class names (package + class name)
1830 ;; and their source files.
1831 (defvar gud-jdb-class-source-alist nil
1832 "Association list of fully qualified class names and source files.")
1834 ;; This is used to hold a source file during analysis.
1835 (defvar gud-jdb-analysis-buffer nil)
1837 (defvar gud-jdb-classpath-string nil
1838 "Holds temporary classpath values.")
1840 (defun gud-jdb-build-source-files-list (path extn)
1841 "Return a list of java source files (absolute paths).
1842 PATH gives the directories in which to search for files with
1843 extension EXTN. Normally EXTN is given as the regular expression
1845 (apply 'nconc (mapcar (lambda (d)
1846 (when (file-directory-p d)
1847 (directory-files d t extn nil)))
1850 ;; Move point past whitespace.
1851 (defun gud-jdb-skip-whitespace ()
1852 (skip-chars-forward " \n\r\t\014"))
1854 ;; Move point past a "// <eol>" type of comment.
1855 (defun gud-jdb-skip-single-line-comment ()
1858 ;; Move point past a "/* */" or "/** */" type of comment.
1859 (defun gud-jdb-skip-traditional-or-documentation-comment ()
1863 (if (eq (following-char) ?*)
1867 (if (eq (following-char) ?/)
1870 (throw 'break nil)))))
1873 ;; Move point past any number of consecutive whitespace chars and/or comments.
1874 (defun gud-jdb-skip-whitespace-and-comments ()
1875 (gud-jdb-skip-whitespace)
1880 (gud-jdb-skip-single-line-comment)
1881 (gud-jdb-skip-whitespace))
1882 ((looking-at "/\\*")
1883 (gud-jdb-skip-traditional-or-documentation-comment)
1884 (gud-jdb-skip-whitespace))
1885 (t (throw 'done nil))))))
1887 ;; Move point past things that are id-like. The intent is to skip regular
1888 ;; id's, such as class or interface names as well as package and interface
1890 (defun gud-jdb-skip-id-ish-thing ()
1891 (skip-chars-forward "^ /\n\r\t\014,;{"))
1893 ;; Move point past a string literal.
1894 (defun gud-jdb-skip-string-literal ()
1897 ((eq (following-char) ?\\)
1899 ((eq (following-char) ?\042))))
1903 ;; Move point past a character literal.
1904 (defun gud-jdb-skip-character-literal ()
1908 (if (eq (following-char) ?\\)
1910 (not (eq (following-char) ?\')))
1914 ;; Move point past the following block. There may be (legal) cruft before
1915 ;; the block's opening brace. There must be a block or it's the end of life
1916 ;; in petticoat junction.
1917 (defun gud-jdb-skip-block ()
1919 ;; Find the beginning of the block.
1921 (not (eq (following-char) ?{))
1923 ;; Skip any constructs that can harbor literal block delimiter
1924 ;; characters and/or the delimiters for the constructs themselves.
1927 (gud-jdb-skip-single-line-comment))
1928 ((looking-at "/\\*")
1929 (gud-jdb-skip-traditional-or-documentation-comment))
1930 ((eq (following-char) ?\042)
1931 (gud-jdb-skip-string-literal))
1932 ((eq (following-char) ?\')
1933 (gud-jdb-skip-character-literal))
1934 (t (forward-char))))
1936 ;; Now at the beginning of the block.
1939 ;; Skip over the body of the block as well as the final brace.
1940 (let ((open-level 1))
1941 (while (not (eq open-level 0))
1944 (gud-jdb-skip-single-line-comment))
1945 ((looking-at "/\\*")
1946 (gud-jdb-skip-traditional-or-documentation-comment))
1947 ((eq (following-char) ?\042)
1948 (gud-jdb-skip-string-literal))
1949 ((eq (following-char) ?\')
1950 (gud-jdb-skip-character-literal))
1951 ((eq (following-char) ?{)
1952 (setq open-level (+ open-level 1))
1954 ((eq (following-char) ?})
1955 (setq open-level (- open-level 1))
1957 (t (forward-char))))))
1959 ;; Find the package and class definitions in Java source file FILE. Assumes
1960 ;; that FILE contains a legal Java program. BUF is a scratch buffer used
1961 ;; to hold the source during analysis.
1962 (defun gud-jdb-analyze-source (buf file)
1965 (insert-file-contents file nil nil nil t)
1970 (gud-jdb-skip-whitespace)
1974 ;; Any number of semi's following a block is legal. Move point
1975 ;; past them. Note that comments and whitespace may be
1976 ;; interspersed as well.
1977 ((eq (following-char) ?\073)
1980 ;; Move point past a single line comment.
1982 (gud-jdb-skip-single-line-comment))
1984 ;; Move point past a traditional or documentation comment.
1985 ((looking-at "/\\*")
1986 (gud-jdb-skip-traditional-or-documentation-comment))
1988 ;; Move point past a package statement, but save the PackageName.
1989 ((looking-at "package")
1991 (gud-jdb-skip-whitespace-and-comments)
1993 (gud-jdb-skip-id-ish-thing)
1994 (setq p (concat (buffer-substring s (point)) "."))
1995 (gud-jdb-skip-whitespace-and-comments)
1996 (if (eq (following-char) ?\073)
1999 ;; Move point past an import statement.
2000 ((looking-at "import")
2002 (gud-jdb-skip-whitespace-and-comments)
2003 (gud-jdb-skip-id-ish-thing)
2004 (gud-jdb-skip-whitespace-and-comments)
2005 (if (eq (following-char) ?\073)
2008 ;; Move point past the various kinds of ClassModifiers.
2009 ((looking-at "public")
2011 ((looking-at "abstract")
2013 ((looking-at "final")
2016 ;; Move point past a ClassDeclaration, but save the class
2018 ((looking-at "class")
2020 (gud-jdb-skip-whitespace-and-comments)
2022 (gud-jdb-skip-id-ish-thing)
2024 l (nconc l (list (concat p (buffer-substring s (point)))))))
2025 (gud-jdb-skip-block))
2027 ;; Move point past an interface statement.
2028 ((looking-at "interface")
2030 (gud-jdb-skip-block))
2032 ;; Anything else means the input is invalid.
2034 (message "Error parsing file %s." file)
2035 (throw 'abort nil))))))
2038 (defun gud-jdb-build-class-source-alist-for-file (file)
2042 (gud-jdb-analyze-source gud-jdb-analysis-buffer file)))
2044 ;; Return an alist of fully qualified classes and the source files
2045 ;; holding their definitions. SOURCES holds a list of all the source
2046 ;; files to examine.
2047 (defun gud-jdb-build-class-source-alist (sources)
2048 (setq gud-jdb-analysis-buffer (get-buffer-create " *gud-jdb-scratch*"))
2053 'gud-jdb-build-class-source-alist-for-file
2055 (kill-buffer gud-jdb-analysis-buffer)
2056 (setq gud-jdb-analysis-buffer nil)))
2058 ;; Change what was given in the minibuffer to something that can be used to
2059 ;; invoke the debugger.
2060 (defun gud-jdb-massage-args (_file args)
2061 ;; The jdb executable must have whitespace between "-classpath" and
2062 ;; its value while gud-common-init expects all switch values to
2063 ;; follow the switch keyword without intervening whitespace. We
2064 ;; require that when the user enters the "-classpath" switch in the
2065 ;; EMACS minibuffer that they do so without the intervening
2066 ;; whitespace. This function adds it back (it's called after
2067 ;; gud-common-init). There are more switches like this (for
2068 ;; instance "-host" and "-password") but I don't care about them
2071 (let (massaged-args user-error)
2073 (while (and args (not user-error))
2075 ((setq user-error (string-match "-classpath$" (car args))))
2076 ((setq user-error (string-match "-sourcepath$" (car args))))
2077 ((string-match "-classpath\\(.+\\)" (car args))
2079 (append massaged-args
2081 (setq gud-jdb-classpath-string
2082 (match-string 1 (car args)))))))
2083 ((string-match "-sourcepath\\(.+\\)" (car args))
2085 (append massaged-args
2087 (setq gud-jdb-sourcepath
2088 (match-string 1 (car args)))))))
2089 (t (setq massaged-args (append massaged-args (list (car args))))))
2090 (setq args (cdr args)))
2092 ;; By this point the current directory is all screwed up. Maybe we
2093 ;; could fix things and re-invoke gud-common-init, but for now I think
2094 ;; issuing the error is good enough.
2097 (kill-buffer (current-buffer))
2098 (error "Error: Omit whitespace between '-classpath or -sourcepath' and its value")))
2101 ;; Search for an association with P, a fully qualified class name, in
2102 ;; gud-jdb-class-source-alist. The association gives the fully
2103 ;; qualified file name of the source file which produced the class.
2104 (defun gud-jdb-find-source-file (p)
2105 (cdr (assoc p gud-jdb-class-source-alist)))
2107 ;; Note: Reset to this value every time a prompt is seen
2108 (defvar gud-jdb-lowest-stack-level 999)
2110 (defun gud-jdb-find-source-using-classpath (p)
2111 "Find source file corresponding to fully qualified class P.
2112 Convert P from jdb's output, converted to a pathname
2113 relative to a classpath directory."
2116 (;; Replace dots with slashes and append ".java" to generate file
2117 ;; name relative to classpath
2120 (mapconcat 'identity
2122 ;; Eliminate any subclass references in the class
2123 ;; name string. These start with a "$"
2125 (if (string-match "$.*" x)
2126 (replace-match "" t t x) p))
2130 (cplist (append gud-jdb-sourcepath gud-jdb-classpath))
2133 (not (setq found-file
2135 (concat (car cplist) "/" filename)))))
2136 (setq cplist (cdr cplist)))
2137 (if found-file (concat (car cplist) "/" filename)))))
2139 (defun gud-jdb-find-source (_string)
2140 "Alias for function used to locate source files.
2141 Set to `gud-jdb-find-source-using-classpath' or `gud-jdb-find-source-file'
2142 during jdb initialization depending on the value of
2143 `gud-jdb-use-classpath'."
2146 (defun gud-jdb-parse-classpath-string (string)
2147 "Parse the classpath list and convert each item to an absolute pathname."
2148 (mapcar (lambda (s) (if (string-match "[/\\]$" s)
2149 (replace-match "" nil nil s) s))
2150 (mapcar 'file-truename
2153 (concat "[ \t\n\r,\"" path-separator "]+")))))
2155 ;; See commentary for other debugger's marker filters - there you will find
2156 ;; important notes about STRING.
2157 (defun gud-jdb-marker-filter (string)
2159 ;; Build up the accumulator.
2160 (setq gud-marker-acc
2162 (concat gud-marker-acc string)
2165 ;; Look for classpath information until gud-jdb-classpath-string is found
2166 ;; (interactive, multiple settings of classpath from jdb
2167 ;; not supported/followed)
2168 (if (and gud-jdb-use-classpath
2169 (not gud-jdb-classpath-string)
2170 (or (string-match "classpath:[ \t[]+\\([^]]+\\)" gud-marker-acc)
2171 (string-match "-classpath[ \t\"]+\\([^ \"]+\\)" gud-marker-acc)))
2172 (setq gud-jdb-classpath
2173 (gud-jdb-parse-classpath-string
2174 (setq gud-jdb-classpath-string
2175 (match-string 1 gud-marker-acc)))))
2177 ;; We process STRING from left to right. Each time through the
2178 ;; following loop we process at most one marker. After we've found a
2179 ;; marker, delete gud-marker-acc up to and including the match
2181 ;; Process each complete marker in the input.
2184 ;; Do we see a marker?
2186 ;; jdb puts out a string of the following form when it
2187 ;; hits a breakpoint:
2189 ;; <fully-qualified-class><method> (<class>:<line-number>)
2191 ;; <fully-qualified-class>'s are composed of Java ID's
2192 ;; separated by periods. <method> and <class> are
2193 ;; also Java ID's. <method> begins with a period and
2194 ;; may contain less-than and greater-than (constructors,
2195 ;; for instance, are called <init> in the symbol table.)
2196 ;; Java ID's begin with a letter followed by letters
2197 ;; and/or digits. The set of letters includes underscore
2200 ;; The first group matches <fully-qualified-class>,
2201 ;; the second group matches <class> and the third group
2202 ;; matches <line-number>. We don't care about using
2203 ;; <method> so we don't "group" it.
2205 ;; FIXME: Java ID's are UNICODE strings, this matches ASCII
2208 ;; The ".," in the last square-bracket are necessary because
2209 ;; of Sun's total disrespect for backwards compatibility in
2210 ;; reported line numbers from jdb - starting in 1.4.0 they
2211 ;; print line numbers using LOCALE, inserting a comma or a
2212 ;; period at the thousands positions (how ingenious!).
2214 "\\(\\[[0-9]+] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \
2215 \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)"
2218 ;; A good marker is one that:
2219 ;; 1) does not have a "[n] " prefix (not part of a stack backtrace)
2220 ;; 2) does have an "[n] " prefix and n is the lowest prefix seen
2221 ;; since the last prompt
2222 ;; Figure out the line on which to position the debugging arrow.
2223 ;; Return the info as a cons of the form:
2225 ;; (<file-name> . <line-number>) .
2226 (if (if (match-beginning 1)
2228 (setq n (string-to-number (substring
2230 (1+ (match-beginning 1))
2231 (- (match-end 1) 2))))
2232 (if (< n gud-jdb-lowest-stack-level)
2233 (progn (setq gud-jdb-lowest-stack-level n) t)))
2235 (if (setq file-found
2236 (gud-jdb-find-source (match-string 2 gud-marker-acc)))
2237 (setq gud-last-frame
2241 ((numstr (match-string 4 gud-marker-acc)))
2242 (if (string-match "[.,]" numstr)
2243 (replace-match "" nil nil numstr)
2245 (message "Could not find source file.")))
2247 ;; Set the accumulator to the remaining text.
2248 (setq gud-marker-acc (substring gud-marker-acc (match-end 0))))
2250 (if (string-match comint-prompt-regexp gud-marker-acc)
2251 (setq gud-jdb-lowest-stack-level 999)))
2253 ;; Do not allow gud-marker-acc to grow without bound. If the source
2254 ;; file information is not within the last 3/4
2255 ;; gud-marker-acc-max-length characters, well,...
2256 (if (> (length gud-marker-acc) gud-marker-acc-max-length)
2257 (setq gud-marker-acc
2258 (substring gud-marker-acc
2259 (- (/ (* gud-marker-acc-max-length 3) 4)))))
2261 ;; We don't filter any debugger output so just return what we were given.
2264 (defvar gud-jdb-command-name "jdb" "Command that executes the Java debugger.")
2267 (defun jdb (command-line)
2268 "Run jdb with command line COMMAND-LINE in a buffer.
2269 The buffer is named \"*gud*\" if no initial class is given or
2270 \"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\"
2271 switch is given, omit all whitespace between it and its value.
2273 See `gud-jdb-use-classpath' and `gud-jdb-classpath' documentation for
2274 information on how jdb accesses source files. Alternatively (if
2275 `gud-jdb-use-classpath' is nil), see `gud-jdb-directories' for the
2276 original source file access method.
2278 For general information about commands available to control jdb from
2279 gud, see `gud-mode'."
2281 (list (gud-query-cmdline 'jdb)))
2282 (setq gud-jdb-classpath nil)
2283 (setq gud-jdb-sourcepath nil)
2285 ;; Set gud-jdb-classpath from the CLASSPATH environment variable,
2286 ;; if CLASSPATH is set.
2287 (setq gud-jdb-classpath-string (or (getenv "CLASSPATH") "."))
2288 (if gud-jdb-classpath-string
2289 (setq gud-jdb-classpath
2290 (gud-jdb-parse-classpath-string gud-jdb-classpath-string)))
2291 (setq gud-jdb-classpath-string nil) ; prepare for next
2293 (gud-common-init command-line 'gud-jdb-massage-args
2294 'gud-jdb-marker-filter)
2295 (set (make-local-variable 'gud-minor-mode) 'jdb)
2297 ;; If a -classpath option was provided, set gud-jdb-classpath
2298 (if gud-jdb-classpath-string
2299 (setq gud-jdb-classpath
2300 (gud-jdb-parse-classpath-string gud-jdb-classpath-string)))
2301 (setq gud-jdb-classpath-string nil) ; prepare for next
2302 ;; If a -sourcepath option was provided, parse it
2303 (if gud-jdb-sourcepath
2304 (setq gud-jdb-sourcepath
2305 (gud-jdb-parse-classpath-string gud-jdb-sourcepath)))
2307 (gud-def gud-break "stop at %c:%l" "\C-b" "Set breakpoint at current line.")
2308 (gud-def gud-remove "clear %c:%l" "\C-d" "Remove breakpoint at current line")
2309 (gud-def gud-step "step" "\C-s" "Step one source line with display.")
2310 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
2311 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
2312 (gud-def gud-finish "step up" "\C-f" "Continue until current method returns.")
2313 (gud-def gud-up "up\C-Mwhere" "<" "Up one stack frame.")
2314 (gud-def gud-down "down\C-Mwhere" ">" "Up one stack frame.")
2315 (gud-def gud-run "run" nil "Run the program.") ;if VM start using jdb
2316 (gud-def gud-print "print %e" "\C-p" "Print value of expression at point.")
2317 (gud-def gud-pstar "dump %e" nil "Print all object information at point.")
2319 (setq comint-prompt-regexp "^> \\|^[^ ]+\\[[0-9]+\\] ")
2320 (setq paragraph-start comint-prompt-regexp)
2321 (run-hooks 'jdb-mode-hook)
2323 (if gud-jdb-use-classpath
2324 ;; Get the classpath information from the debugger
2326 (if (string-match "-attach" command-line)
2327 (gud-call "classpath"))
2328 (fset 'gud-jdb-find-source
2329 'gud-jdb-find-source-using-classpath))
2331 ;; Else create and bind the class/source association list as well
2332 ;; as the source file list.
2333 (setq gud-jdb-class-source-alist
2334 (gud-jdb-build-class-source-alist
2335 (setq gud-jdb-source-files
2336 (gud-jdb-build-source-files-list gud-jdb-directories
2338 (fset 'gud-jdb-find-source 'gud-jdb-find-source-file)))
2341 ;; End of debugger-specific information
2345 ;; When we send a command to the debugger via gud-call, it's annoying
2346 ;; to see the command and the new prompt inserted into the debugger's
2347 ;; buffer; we have other ways of knowing the command has completed.
2349 ;; If the buffer looks like this:
2350 ;; --------------------
2351 ;; (gdb) set args foo bar
2353 ;; --------------------
2354 ;; (the -!- marks the location of point), and we type `C-x SPC' in a
2355 ;; source file to set a breakpoint, we want the buffer to end up like
2357 ;; --------------------
2358 ;; (gdb) set args foo bar
2359 ;; Breakpoint 1 at 0x92: file make-docfile.c, line 49.
2361 ;; --------------------
2362 ;; Essentially, the old prompt is deleted, and the command's output
2363 ;; and the new prompt take its place.
2365 ;; Not echoing the command is easy enough; you send it directly using
2366 ;; process-send-string, and it never enters the buffer. However,
2367 ;; getting rid of the old prompt is trickier; you don't want to do it
2368 ;; when you send the command, since that will result in an annoying
2369 ;; flicker as the prompt is deleted, redisplay occurs while Emacs
2370 ;; waits for a response from the debugger, and the new prompt is
2371 ;; inserted. Instead, we'll wait until we actually get some output
2372 ;; from the subprocess before we delete the prompt. If the command
2373 ;; produced no output other than a new prompt, that prompt will most
2374 ;; likely be in the first chunk of output received, so we will delete
2375 ;; the prompt and then replace it with an identical one. If the
2376 ;; command produces output, the prompt is moving anyway, so the
2377 ;; flicker won't be annoying.
2379 ;; So - when we want to delete the prompt upon receipt of the next
2380 ;; chunk of debugger output, we position gud-delete-prompt-marker at
2381 ;; the start of the prompt; the process filter will notice this, and
2382 ;; delete all text between it and the process output marker. If
2383 ;; gud-delete-prompt-marker points nowhere, we leave the current
2385 (defvar gud-delete-prompt-marker nil)
2388 (put 'gud-mode 'mode-class 'special)
2390 (define-derived-mode gud-mode comint-mode "Debugger"
2391 "Major mode for interacting with an inferior debugger process.
2393 You start it up with one of the commands M-x gdb, M-x sdb, M-x dbx,
2394 M-x perldb, M-x xdb, or M-x jdb. Each entry point finishes by executing a
2395 hook; `gdb-mode-hook', `sdb-mode-hook', `dbx-mode-hook',
2396 `perldb-mode-hook', `xdb-mode-hook', or `jdb-mode-hook' respectively.
2398 After startup, the following commands are available in both the GUD
2399 interaction buffer and any source buffer GUD visits due to a breakpoint stop
2402 \\[gud-break] sets a breakpoint at the current file and line. In the
2403 GUD buffer, the current file and line are those of the last breakpoint or
2404 step. In a source buffer, they are the buffer's file and current line.
2406 \\[gud-remove] removes breakpoints on the current file and line.
2408 \\[gud-refresh] displays in the source window the last line referred to
2411 \\[gud-step], \\[gud-next], and \\[gud-stepi] do a step-one-line,
2412 step-one-line (not entering function calls), and step-one-instruction
2413 and then update the source window with the current file and position.
2414 \\[gud-cont] continues execution.
2416 \\[gud-print] tries to find the largest C lvalue or function-call expression
2417 around point, and sends it to the debugger for value display.
2419 The above commands are common to all supported debuggers except xdb which
2420 does not support stepping instructions.
2422 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break],
2423 except that the breakpoint is temporary; that is, it is removed when
2424 execution stops on it.
2426 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack
2427 frame. \\[gud-down] drops back down through one.
2429 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from
2430 the current function and stops.
2432 All the keystrokes above are accessible in the GUD buffer
2433 with the prefix C-c, and in all buffers through the prefix C-x C-a.
2435 All pre-defined functions for which the concept make sense repeat
2436 themselves the appropriate number of times if you give a prefix
2439 You may use the `gud-def' macro in the initialization hook to define other
2442 Other commands for interacting with the debugger process are inherited from
2443 comint mode, which see."
2444 (setq mode-line-process '(":%s"))
2445 (define-key (current-local-map) "\C-c\C-l" 'gud-refresh)
2446 (set (make-local-variable 'gud-last-frame) nil)
2447 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map)
2448 (make-local-variable 'comint-prompt-regexp)
2449 ;; Don't put repeated commands in command history many times.
2450 (set (make-local-variable 'comint-input-ignoredups) t)
2451 (make-local-variable 'paragraph-start)
2452 (set (make-local-variable 'gud-delete-prompt-marker) (make-marker))
2453 (add-hook 'kill-buffer-hook 'gud-kill-buffer-hook nil t))
2455 (defcustom gud-chdir-before-run t
2456 "Non-nil if GUD should `cd' to the debugged executable."
2460 (declare-function tramp-file-name-localname "tramp" (vec))
2461 (declare-function tramp-dissect-file-name "tramp" (name &optional nodefault))
2463 ;; Perform initializations common to all debuggers.
2464 ;; The first arg is the specified command line,
2465 ;; which starts with the program to debug.
2466 ;; The other three args specify the values to use
2467 ;; for local variables in the debugger buffer.
2468 (defun gud-common-init (command-line massage-args marker-filter
2469 &optional find-file)
2470 (let* ((words (split-string-and-unquote command-line))
2471 (program (car words))
2472 (dir default-directory)
2473 ;; Extract the file name from WORDS
2474 ;; and put t in its place.
2475 ;; Later on we will put the modified file name arg back there.
2476 (file-word (let ((w (cdr words)))
2477 (while (and w (= ?- (aref (car w) 0)))
2483 (and file-word (substitute-in-file-name file-word)))
2485 ;; If a directory was specified, expand the file name.
2486 ;; Otherwise, don't expand it, so GDB can use the PATH.
2487 ;; A file name without directory is literally valid
2488 ;; only if the file exists in ., and in that case,
2489 ;; omitting the expansion here has no visible effect.
2490 (file (and file-word
2491 (if (file-name-directory file-subst)
2492 (expand-file-name file-subst)
2494 (filepart (and file-word (concat "-" (file-name-nondirectory file))))
2495 (existing-buffer (get-buffer (concat "*gud" filepart "*"))))
2496 (switch-to-buffer (concat "*gud" filepart "*"))
2497 (when (and existing-buffer (get-buffer-process existing-buffer))
2498 (error "This program is already being debugged"))
2499 ;; Set the dir, in case the buffer already existed with a different dir.
2500 (setq default-directory dir)
2501 ;; Set default-directory to the file's directory.
2503 gud-chdir-before-run
2504 ;; Don't set default-directory if no directory was specified.
2505 ;; In that case, either the file is found in the current directory,
2506 ;; in which case this setq is a no-op,
2507 ;; or it is found by searching PATH,
2508 ;; in which case we don't know what directory it was found in.
2509 (file-name-directory file)
2510 (setq default-directory (file-name-directory file)))
2511 (or (bolp) (newline))
2512 (insert "Current directory is " default-directory "\n")
2513 ;; Put the substituted and expanded file name back in its place.
2515 (while (and w (not (eq (car w) t)))
2519 (if (file-remote-p file)
2520 ;; Tramp has already been loaded if we are here.
2521 (setq file (tramp-file-name-localname
2522 (tramp-dissect-file-name file)))
2524 (apply 'make-comint (concat "gud" filepart) program nil
2525 (if massage-args (funcall massage-args file args) args))
2526 ;; Since comint clobbered the mode, we don't set it until now.
2528 (set (make-local-variable 'gud-target-name)
2529 (and file-word (file-name-nondirectory file))))
2530 (set (make-local-variable 'gud-marker-filter) marker-filter)
2531 (if find-file (set (make-local-variable 'gud-find-file) find-file))
2532 (setq gud-last-last-frame nil)
2534 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter)
2535 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel)
2538 (defun gud-set-buffer ()
2539 (when (derived-mode-p 'gud-mode)
2540 (setq gud-comint-buffer (current-buffer))))
2542 (defvar gud-filter-defer-flag nil
2543 "Non-nil means don't process anything from the debugger right now.
2544 It is saved for when this flag is not set.")
2546 ;; These functions are responsible for inserting output from your debugger
2547 ;; into the buffer. The hard work is done by the method that is
2548 ;; the value of gud-marker-filter.
2550 (defun gud-filter (proc string)
2551 ;; Here's where the actual buffer insertion is done
2552 (let (output process-window)
2553 (if (buffer-name (process-buffer proc))
2554 (if gud-filter-defer-flag
2555 ;; If we can't process any text now,
2556 ;; save it for later.
2557 (setq gud-filter-pending-text
2558 (concat (or gud-filter-pending-text "") string))
2560 ;; If we have to ask a question during the processing,
2561 ;; defer any additional text that comes from the debugger
2562 ;; during that time.
2563 (let ((gud-filter-defer-flag t))
2564 ;; Process now any text we previously saved up.
2565 (if gud-filter-pending-text
2566 (setq string (concat gud-filter-pending-text string)
2567 gud-filter-pending-text nil))
2569 (with-current-buffer (process-buffer proc)
2570 ;; If we have been so requested, delete the debugger prompt.
2573 (if (marker-buffer gud-delete-prompt-marker)
2574 (let ((inhibit-read-only t))
2575 (delete-region (process-mark proc)
2576 gud-delete-prompt-marker)
2577 (comint-update-fence)
2578 (set-marker gud-delete-prompt-marker nil)))
2579 ;; Save the process output, checking for source file markers.
2580 (setq output (gud-marker-filter string))
2581 ;; Check for a filename-and-line number.
2582 ;; Don't display the specified file
2583 ;; unless (1) point is at or after the position where output appears
2584 ;; and (2) this buffer is on the screen.
2585 (setq process-window
2587 (>= (point) (process-mark proc))
2588 (get-buffer-window (current-buffer)))))
2590 ;; Let the comint filter do the actual insertion.
2591 ;; That lets us inherit various comint features.
2592 (comint-output-filter proc output))
2594 ;; Put the arrow on the source line.
2595 ;; This must be outside of the save-excursion
2596 ;; in case the source file is our current buffer.
2598 (with-selected-window process-window
2599 (gud-display-frame))
2600 ;; We have to be in the proper buffer, (process-buffer proc),
2601 ;; but not in a save-excursion, because that would restore point.
2602 (with-current-buffer (process-buffer proc)
2603 (gud-display-frame))))
2605 ;; If we deferred text that arrived during this processing,
2607 (if gud-filter-pending-text
2608 (gud-filter proc ""))))))
2610 (defvar gud-minor-mode-type nil)
2611 (defvar gud-overlay-arrow-position nil)
2612 (add-to-list 'overlay-arrow-variable-list 'gud-overlay-arrow-position)
2614 (declare-function gdb-reset "gdb-mi" ())
2616 (defun gud-sentinel (proc msg)
2617 (cond ((null (buffer-name (process-buffer proc)))
2619 ;; Stop displaying an arrow in a source file.
2620 (setq gud-overlay-arrow-position nil)
2621 (set-process-buffer proc nil)
2622 (if (and (boundp 'speedbar-frame)
2623 (string-equal speedbar-initial-expansion-list-name "GUD"))
2624 (speedbar-change-initial-expansion-list
2625 speedbar-previously-used-expansion-list-name))
2626 (if (eq gud-minor-mode-type 'gdbmi)
2629 ((memq (process-status proc) '(signal exit))
2630 ;; Stop displaying an arrow in a source file.
2631 (setq gud-overlay-arrow-position nil)
2632 (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2636 (let* ((obuf (current-buffer)))
2637 ;; save-excursion isn't the right thing if
2638 ;; process-buffer is current-buffer
2641 ;; Write something in the GUD buffer and hack its mode line,
2642 (set-buffer (process-buffer proc))
2643 ;; Fix the mode line.
2644 (setq mode-line-process
2646 (symbol-name (process-status proc))))
2647 (force-mode-line-update)
2649 (insert ?\n mode-name " " msg)
2651 (goto-char (point-max))
2652 (insert ?\n mode-name " " msg)))
2653 ;; If buffer and mode line will show that the process
2654 ;; is dead, we can delete it now. Otherwise it
2655 ;; will stay around until M-x list-processes.
2656 (delete-process proc))
2657 ;; Restore old buffer, but don't restore old point
2658 ;; if obuf is the gud buffer.
2659 (set-buffer obuf))))))
2661 (defun gud-kill-buffer-hook ()
2662 (setq gud-minor-mode-type gud-minor-mode)
2665 (kill-process (get-buffer-process (current-buffer)))
2666 (delete-process (get-process "gdb-inferior")))
2670 (dolist (buffer (buffer-list))
2671 (unless (eq buffer gud-comint-buffer)
2672 (with-current-buffer buffer
2673 (when gud-minor-mode
2674 (setq gud-minor-mode nil)
2675 (kill-local-variable 'tool-bar-map))))))
2677 (defun gud-display-frame ()
2678 "Find and obey the last filename-and-line marker from the debugger.
2679 Obeying it means displaying in another window the specified file and line."
2681 (when gud-last-frame
2683 (gud-display-line (car gud-last-frame) (cdr gud-last-frame))
2684 (setq gud-last-last-frame gud-last-frame
2685 gud-last-frame nil)))
2687 (declare-function global-hl-line-highlight "hl-line" ())
2688 (declare-function hl-line-highlight "hl-line" ())
2689 (declare-function gdb-display-source-buffer "gdb-mi" (buffer))
2691 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
2692 ;; and that its line LINE is visible.
2693 ;; Put the overlay-arrow on the line LINE in that buffer.
2694 ;; Most of the trickiness in here comes from wanting to preserve the current
2695 ;; region-restriction if that's possible. We use an explicit display-buffer
2696 ;; to get around the fact that this is called inside a save-excursion.
2698 (defun gud-display-line (true-file line)
2699 (let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions.
2701 (with-current-buffer gud-comint-buffer
2702 (gud-find-file true-file)))
2704 (or (get-buffer-window buffer)
2705 (display-buffer buffer))))
2708 (with-current-buffer buffer
2709 (unless (or (verify-visited-file-modtime buffer) gud-keep-buffer)
2711 (format "File %s changed on disk. Reread from disk? "
2714 (setq gud-keep-buffer t)))
2717 (goto-char (point-min))
2718 (forward-line (1- line))
2720 (or gud-overlay-arrow-position
2721 (setq gud-overlay-arrow-position (make-marker)))
2722 (set-marker gud-overlay-arrow-position (point) (current-buffer))
2723 ;; If they turned on hl-line, move the hl-line highlight to
2724 ;; the arrow's line.
2725 (when (featurep 'hl-line)
2727 (global-hl-line-mode
2728 (global-hl-line-highlight))
2729 ((and hl-line-mode hl-line-sticky-flag)
2730 (hl-line-highlight)))))
2731 (cond ((or (< pos (point-min)) (> pos (point-max)))
2735 (set-window-point window gud-overlay-arrow-position)
2736 (if (eq gud-minor-mode 'gdbmi)
2737 (setq gdb-source-window window))))))
2739 ;; The gud-call function must do the right thing whether its invoking
2740 ;; keystroke is from the GUD buffer itself (via major-mode binding)
2741 ;; or a C buffer. In the former case, we want to supply data from
2742 ;; gud-last-frame. Here's how we do it:
2744 (defun gud-format-command (str arg)
2745 (let ((insource (not (eq (current-buffer) gud-comint-buffer)))
2746 (frame (or gud-last-frame gud-last-last-frame))
2749 (let ((case-fold-search nil))
2750 (string-match "\\([^%]*\\)%\\([adefFlpc]\\)" str)))
2751 (let ((key (string-to-char (match-string 2 str)))
2755 (setq subst (file-name-nondirectory (if insource
2759 (setq subst (file-name-base (if insource
2763 (setq subst (file-name-directory (if insource
2767 (setq subst (int-to-string
2771 (+ (count-lines (point-min) (point))
2775 (setq subst (gud-find-expr)))
2777 (setq subst (gud-read-address)))
2787 (+ (count-lines (point-min) (point))
2791 (setq subst (if arg (int-to-string arg)))))
2792 (setq result (concat result (match-string 1 str) subst)))
2793 (setq str (substring str (match-end 2))))
2794 ;; There might be text left in STR when the loop ends.
2795 (concat result str)))
2797 (defun gud-read-address ()
2798 "Return a string containing the core-address found in the buffer at point."
2801 (let ((pt (point)) found begin)
2802 (setq found (if (search-backward "0x" (- pt 7) t) (point)))
2804 (found (forward-char 2)
2805 (buffer-substring found
2806 (progn (re-search-forward "[^0-9a-f]")
2809 (t (setq begin (progn (re-search-backward "[^0-9]")
2813 (re-search-forward "[^0-9]")
2815 (buffer-substring begin (point))))))))
2817 (defun gud-call (fmt &optional arg)
2818 (let ((msg (gud-format-command fmt arg)))
2819 (message "Command: %s" msg)
2821 (gud-basic-call msg)))
2823 (defun gud-basic-call (command)
2824 "Invoke the debugger COMMAND displaying source in other window."
2827 (let ((proc (get-buffer-process gud-comint-buffer)))
2828 (or proc (error "Current buffer has no process"))
2829 ;; Arrange for the current prompt to get deleted.
2830 (with-current-buffer gud-comint-buffer
2834 (if (marker-position gud-delete-prompt-marker)
2835 ;; We get here when printing an expression.
2836 (goto-char gud-delete-prompt-marker)
2837 (goto-char (process-mark proc))
2839 (if (looking-at comint-prompt-regexp)
2840 (set-marker gud-delete-prompt-marker (point)))
2841 (if (eq gud-minor-mode 'gdbmi)
2842 (apply comint-input-sender (list proc command))
2843 (process-send-string proc (concat command "\n"))))))))
2845 (defun gud-refresh (&optional arg)
2846 "Fix up a possibly garbled display, and redraw the arrow."
2848 (or gud-last-frame (setq gud-last-frame gud-last-last-frame))
2852 ;; Code for parsing expressions out of C or Fortran code. The single entry
2853 ;; point is gud-find-expr, which tries to return an lvalue expression from
2856 (defvar gud-find-expr-function 'gud-find-c-expr)
2858 (defun gud-find-expr (&rest args)
2859 (let ((expr (if (and transient-mark-mode mark-active)
2860 (buffer-substring (region-beginning) (region-end))
2861 (apply gud-find-expr-function args))))
2863 (if (string-match "\n" expr)
2864 (error "Expression must not include a newline"))
2865 (with-current-buffer gud-comint-buffer
2867 (goto-char (process-mark (get-buffer-process gud-comint-buffer)))
2869 (when (looking-at comint-prompt-regexp)
2870 (set-marker gud-delete-prompt-marker (point))
2871 (set-marker-insertion-type gud-delete-prompt-marker t))
2872 (unless (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2874 (insert (concat expr " = "))))))
2877 ;; The next eight functions are hacked from gdbsrc.el by
2878 ;; Debby Ayers <ayers@asc.slb.com>,
2879 ;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx.
2881 (defun gud-find-c-expr ()
2882 "Returns the expr that surrounds point."
2886 (expr (gud-innermost-expr))
2887 (test-expr (gud-prev-expr)))
2888 (while (and test-expr (gud-expr-compound test-expr expr))
2889 (let ((prev-expr expr))
2890 (setq expr (cons (car test-expr) (cdr expr)))
2891 (goto-char (car expr))
2892 (setq test-expr (gud-prev-expr))
2893 ;; If we just pasted on the condition of an if or while,
2894 ;; throw it away again.
2895 (if (member (buffer-substring (car test-expr) (cdr test-expr))
2896 '("if" "while" "for"))
2900 (setq test-expr (gud-next-expr))
2901 (while (gud-expr-compound expr test-expr)
2902 (setq expr (cons (car expr) (cdr test-expr)))
2903 (setq test-expr (gud-next-expr)))
2904 (buffer-substring (car expr) (cdr expr)))))
2906 (defun gud-innermost-expr ()
2907 "Returns the smallest expr that point is in; move point to beginning of it.
2908 The expr is represented as a cons cell, where the car specifies the point in
2909 the current buffer that marks the beginning of the expr and the cdr specifies
2910 the character after the end of the expr."
2911 (let ((p (point)) begin end)
2913 (setq begin (point))
2926 (defun gud-backward-sexp ()
2927 "Version of `backward-sexp' that catches errors."
2932 (defun gud-forward-sexp ()
2933 "Version of `forward-sexp' that catches errors."
2938 (defun gud-prev-expr ()
2939 "Returns the previous expr, point is set to beginning of that expr.
2940 The expr is represented as a cons cell, where the car specifies the point in
2941 the current buffer that marks the beginning of the expr and the cdr specifies
2942 the character after the end of the expr"
2943 (let ((begin) (end))
2945 (setq begin (point))
2951 (defun gud-next-expr ()
2952 "Returns the following expr, point is set to beginning of that expr.
2953 The expr is represented as a cons cell, where the car specifies the point in
2954 the current buffer that marks the beginning of the expr and the cdr specifies
2955 the character after the end of the expr."
2956 (let ((begin) (end))
2961 (setq begin (point))
2964 (defun gud-expr-compound-sep (span-start span-end)
2965 "Scan from SPAN-START to SPAN-END for punctuation characters.
2966 If `->' is found, return `?.'. If `.' is found, return `?.'.
2967 If any other punctuation is found, return `??'.
2968 If no punctuation is found, return `? '."
2971 (while (< span-start span-end)
2972 (setq syntax (char-syntax (char-after span-start)))
2975 ((= syntax ?.) (setq syntax (char-after span-start))
2977 ((= syntax ?.) (setq result ?.))
2978 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>))
2980 (setq span-start (+ span-start 1)))
2981 (t (setq span-start span-end)
2982 (setq result ??)))))
2983 (setq span-start (+ span-start 1)))
2986 (defun gud-expr-compound (first second)
2987 "Non-nil if concatenating FIRST and SECOND makes a single C expression.
2988 The two exprs are represented as a cons cells, where the car
2989 specifies the point in the current buffer that marks the beginning of the
2990 expr and the cdr specifies the character after the end of the expr.
2991 Link exprs of the form:
2998 (let ((span-start (cdr first))
2999 (span-end (car second))
3001 (setq syntax (gud-expr-compound-sep span-start span-end))
3003 ((= (car first) (car second)) nil)
3004 ((= (cdr first) (cdr second)) nil)
3007 (setq span-start (char-after (- span-start 1)))
3008 (setq span-end (char-after span-end))
3010 ((= span-start ?)) t)
3011 ((= span-start ?]) t)
3018 (declare-function c-langelem-sym "cc-defs" (langelem))
3019 (declare-function c-langelem-pos "cc-defs" (langelem))
3021 (defun gud-find-class (f _line)
3022 "Find fully qualified class in file F at line LINE.
3023 This function uses the `gud-jdb-classpath' (and optional
3024 `gud-jdb-sourcepath') list(s) to derive a file
3025 pathname relative to its classpath directory. The values in
3026 `gud-jdb-classpath' are assumed to have been converted to absolute
3027 pathname standards using file-truename.
3028 If F is visited by a buffer and its mode is CC-mode(Java),
3029 syntactic information of LINE is used to find the enclosing (nested)
3030 class string which is appended to the top level
3031 class of the file (using s to separate nested class ids)."
3032 ;; Convert f to a standard representation and remove suffix
3033 (if (and gud-jdb-use-classpath (or gud-jdb-classpath gud-jdb-sourcepath))
3035 (let ((cplist (append gud-jdb-sourcepath gud-jdb-classpath))
3036 (fbuffer (get-file-buffer f))
3038 ;; Syntax-symbol returns the symbol of the *first* element
3039 ;; in the syntactical analysis result list, syntax-point
3040 ;; returns the buffer position of same
3041 (syntax-symbol (lambda (x) (c-langelem-sym (car x))))
3042 (syntax-point (lambda (x) (c-langelem-pos (car x)))))
3043 (setq f (file-name-sans-extension (file-truename f)))
3044 ;; Search through classpath list for an entry that is
3046 (while (and cplist (not class-found))
3047 (if (string-match (car cplist) f)
3049 (mapconcat 'identity
3051 (substring f (+ (match-end 0) 1))
3053 (setq cplist (cdr cplist)))
3054 ;; if f is visited by a java(cc-mode) buffer, walk up the
3055 ;; syntactic information chain and collect any 'inclass
3056 ;; symbols until 'topmost-intro is reached to find out if
3057 ;; point is within a nested class
3058 ;; FIXME: Yuck!!! cc-mode should provide a function instead.
3059 (if (and fbuffer (equal (symbol-file 'java-mode) "cc-mode"))
3060 (with-current-buffer fbuffer
3061 (let ((nclass) (syntax))
3062 ;; While the c-syntactic information does not start
3063 ;; with the 'topmost-intro symbol, there may be
3064 ;; nested classes...
3065 (while (not (eq 'topmost-intro
3066 (funcall syntax-symbol (c-guess-basic-syntax))))
3067 ;; Check if the current position c-syntactic
3068 ;; analysis has 'inclass
3069 (setq syntax (c-guess-basic-syntax))
3071 (and (not (eq 'inclass (funcall syntax-symbol syntax)))
3073 (setq syntax (cdr syntax)))
3074 (if (eq 'inclass (funcall syntax-symbol syntax))
3076 (goto-char (funcall syntax-point syntax))
3077 ;; Now we're at the beginning of a class
3078 ;; definition. Find class name
3080 "[A-Za-z0-9 \t\n]*?class[ \t\n]+\\([^ \t\n]+\\)")
3082 (append (list (match-string-no-properties 1))
3084 (setq syntax (c-guess-basic-syntax))
3085 (while (and (not (funcall syntax-point syntax)) (cdr syntax))
3086 (setq syntax (cdr syntax)))
3087 (goto-char (funcall syntax-point syntax))
3089 (string-match (concat (car nclass) "$") class-found)
3091 (replace-match (mapconcat 'identity nclass "$")
3092 t t class-found)))))
3093 (if (not class-found)
3094 (message "gud-find-class: class for file %s not found!" f))
3096 ;; Not using classpath - try class/source association list
3097 (let ((class-found (rassoc f gud-jdb-class-source-alist)))
3100 (message "gud-find-class: class for file %s not found in gud-jdb-class-source-alist!" f)
3104 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3105 ;;; GDB script mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3106 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3108 (defvar gdb-script-mode-syntax-table
3109 (let ((st (make-syntax-table)))
3110 (modify-syntax-entry ?' "\"" st)
3111 (modify-syntax-entry ?# "<" st)
3112 (modify-syntax-entry ?\n ">" st)
3115 (defvar gdb-script-font-lock-keywords
3116 '(("^define\\s-+\\(\\(\\w\\|\\s_\\)+\\)" (1 font-lock-function-name-face))
3117 ("\\$\\(\\w+\\)" (1 font-lock-variable-name-face))
3118 ("^\\s-*\\(\\w\\(\\w\\|\\s_\\)*\\)" (1 font-lock-keyword-face))))
3120 (defconst gdb-script-syntax-propertize-function
3121 (syntax-propertize-rules
3122 ("^document\\s-.*\\(\n\\)" (1 "< b"))
3125 (when (and (> (match-beginning 0) (point-min))
3126 (eq 1 (nth 7 (save-excursion
3127 (syntax-ppss (1- (match-beginning 0)))))))
3128 ;; We change the \n in front, which is more difficult, but results
3129 ;; in better highlighting. If the doc is empty, the single \n is
3130 ;; both the beginning and the end of the docstring, which can't be
3131 ;; expressed in syntax-tables. Instead, we place the "> b" after
3132 ;; placing the "< b", so the start marker is overwritten by the
3133 ;; termination marker and in the end Emacs simply considers that
3134 ;; there's no docstring at all, which is fine.
3135 (put-text-property (1- (match-beginning 0)) (match-beginning 0)
3136 'syntax-table (eval-when-compile
3137 (string-to-syntax "> b")))
3138 ;; Make sure that rehighlighting the previous line won't erase our
3139 ;; syntax-table property and that modifying `end' will.
3140 (put-text-property (1- (match-beginning 0)) (match-end 0)
3141 'syntax-multiline t)))))))
3143 (defun gdb-script-font-lock-syntactic-face (state)
3145 ((nth 3 state) font-lock-string-face)
3146 ((nth 7 state) font-lock-doc-face)
3147 (t font-lock-comment-face)))
3149 (defvar gdb-script-basic-indent 2)
3151 (defun gdb-script-skip-to-head ()
3152 "We're just in front of an `end' and we need to go to its head."
3153 (while (and (re-search-backward "^\\s-*\\(\\(end\\)\\|define\\|document\\|if\\|while\\|commands\\)\\>" nil 'move)
3155 (gdb-script-skip-to-head)))
3157 (defun gdb-script-calculate-indentation ()
3159 ((looking-at "end\\>")
3160 (gdb-script-skip-to-head)
3161 (current-indentation))
3162 ((looking-at "else\\>")
3163 (while (and (re-search-backward "^\\s-*\\(if\\|\\(end\\)\\)\\>" nil 'move)
3165 (gdb-script-skip-to-head))
3166 (current-indentation))
3168 (forward-comment (- (point-max)))
3170 (skip-chars-forward " \t")
3171 (+ (current-indentation)
3172 (if (looking-at "\\(if\\|while\\|define\\|else\\|commands\\)\\>")
3173 gdb-script-basic-indent 0)))))
3175 (defun gdb-script-indent-line ()
3176 "Indent current line of GDB script."
3178 (if (and (eq (get-text-property (point) 'face) font-lock-doc-face)
3181 (skip-chars-forward " \t")
3182 (not (looking-at "end\\>"))))
3184 (let* ((savep (point))
3185 (indent (condition-case nil
3188 (skip-chars-forward " \t")
3189 (if (>= (point) savep) (setq savep nil))
3190 (max (gdb-script-calculate-indentation) 0))
3193 (save-excursion (indent-line-to indent))
3194 (indent-line-to indent)))))
3196 ;; Derived from cfengine.el.
3197 (defun gdb-script-beginning-of-defun ()
3198 "`beginning-of-defun' function for Gdb script mode.
3199 Treats actions as defuns."
3200 (unless (<= (current-column) (current-indentation))
3202 (if (re-search-backward "^define \\|^document " nil t)
3204 (goto-char (point-min)))
3207 ;; Derived from cfengine.el.
3208 (defun gdb-script-end-of-defun ()
3209 "`end-of-defun' function for Gdb script mode.
3210 Treats actions as defuns."
3212 (if (re-search-forward "^end" nil t)
3214 (goto-char (point-max)))
3218 (define-derived-mode gdb-script-mode prog-mode "GDB-Script"
3219 "Major mode for editing GDB scripts."
3220 (set (make-local-variable 'comment-start) "#")
3221 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
3222 (set (make-local-variable 'outline-regexp) "[ \t]")
3223 (set (make-local-variable 'imenu-generic-expression)
3224 '((nil "^define[ \t]+\\(\\w+\\)" 1)))
3225 (set (make-local-variable 'indent-line-function) 'gdb-script-indent-line)
3226 (set (make-local-variable 'beginning-of-defun-function)
3227 #'gdb-script-beginning-of-defun)
3228 (set (make-local-variable 'end-of-defun-function)
3229 #'gdb-script-end-of-defun)
3230 (set (make-local-variable 'font-lock-defaults)
3231 '(gdb-script-font-lock-keywords nil nil ((?_ . "w")) nil
3232 (font-lock-syntactic-face-function
3233 . gdb-script-font-lock-syntactic-face)))
3234 ;; Recognize docstrings.
3235 (set (make-local-variable 'syntax-propertize-function)
3236 gdb-script-syntax-propertize-function)
3237 (add-hook 'syntax-propertize-extend-region-functions
3238 #'syntax-propertize-multiline 'append 'local))
3241 ;;; tooltips for GUD
3243 ;;; Customizable settings
3246 (define-minor-mode gud-tooltip-mode
3247 "Toggle the display of GUD tooltips.
3248 With a prefix argument ARG, enable the feature if ARG is
3249 positive, and disable it otherwise. If called from Lisp, enable
3250 it if ARG is omitted or nil."
3255 (if gud-tooltip-mode
3257 (add-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3258 (add-hook 'pre-command-hook 'tooltip-hide)
3259 (add-hook 'tooltip-functions 'gud-tooltip-tips)
3260 (define-key global-map [mouse-movement] 'gud-tooltip-mouse-motion))
3261 (unless tooltip-mode (remove-hook 'pre-command-hook 'tooltip-hide)
3262 (remove-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3263 (remove-hook 'tooltip-functions 'gud-tooltip-tips)
3264 (define-key global-map [mouse-movement] 'ignore)))
3265 (gud-tooltip-activate-mouse-motions-if-enabled)
3266 (if (and gud-comint-buffer
3267 (buffer-name gud-comint-buffer); gud-comint-buffer might be killed
3268 (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
3270 (if gud-tooltip-mode
3272 (dolist (buffer (buffer-list))
3273 (unless (eq buffer gud-comint-buffer)
3274 (with-current-buffer buffer
3275 (when (and (eq gud-minor-mode 'gdbmi)
3276 (not (string-match "\\`\\*.+\\*\\'"
3278 (make-local-variable 'gdb-define-alist)
3279 (gdb-create-define-alist)
3280 (add-hook 'after-save-hook
3281 'gdb-create-define-alist nil t))))))
3282 (kill-local-variable 'gdb-define-alist)
3283 (remove-hook 'after-save-hook 'gdb-create-define-alist t))))
3285 (define-obsolete-variable-alias 'tooltip-gud-modes
3286 'gud-tooltip-modes "22.1")
3288 (defcustom gud-tooltip-modes '(gud-mode c-mode c++-mode fortran-mode
3290 "List of modes for which to enable GUD tooltips."
3295 (define-obsolete-variable-alias 'tooltip-gud-display
3296 'gud-tooltip-display "22.1")
3298 (defcustom gud-tooltip-display
3299 '((eq (tooltip-event-buffer gud-tooltip-event)
3300 (marker-buffer gud-overlay-arrow-position)))
3301 "List of forms determining where GUD tooltips are displayed.
3303 Forms in the list are combined with AND. The default is to display
3304 only tooltips in the buffer containing the overlay arrow."
3309 (defcustom gud-tooltip-echo-area nil
3310 "Use the echo area instead of frames for GUD tooltips."
3315 ;;; Reacting on mouse movements
3317 (defun gud-tooltip-change-major-mode ()
3318 "Function added to `change-major-mode-hook' when tooltip mode is on."
3319 (add-hook 'post-command-hook 'gud-tooltip-activate-mouse-motions-if-enabled))
3321 (defun gud-tooltip-activate-mouse-motions-if-enabled ()
3322 "Reconsider for all buffers whether mouse motion events are desired."
3323 (remove-hook 'post-command-hook
3324 'gud-tooltip-activate-mouse-motions-if-enabled)
3325 (dolist (buffer (buffer-list))
3326 (with-current-buffer buffer
3327 (if (and gud-tooltip-mode
3328 (memq major-mode gud-tooltip-modes))
3329 (gud-tooltip-activate-mouse-motions t)
3330 (gud-tooltip-activate-mouse-motions nil)))))
3332 (defvar gud-tooltip-mouse-motions-active nil
3333 "Locally t in a buffer if tooltip processing of mouse motion is enabled.")
3335 ;; We don't set track-mouse globally because this is a big redisplay
3336 ;; problem in buffers having a pre-command-hook or such installed,
3337 ;; which does a set-buffer, like the summary buffer of Gnus. Calling
3338 ;; set-buffer prevents redisplay optimizations, so every mouse motion
3339 ;; would be accompanied by a full redisplay.
3341 (defun gud-tooltip-activate-mouse-motions (activatep)
3342 "Activate/deactivate mouse motion events for the current buffer.
3343 ACTIVATEP non-nil means activate mouse motion events."
3346 (set (make-local-variable 'gud-tooltip-mouse-motions-active) t)
3347 (set (make-local-variable 'track-mouse) t))
3348 (when gud-tooltip-mouse-motions-active
3349 (kill-local-variable 'gud-tooltip-mouse-motions-active)
3350 (kill-local-variable 'track-mouse))))
3352 (defvar tooltip-last-mouse-motion-event)
3353 (declare-function tooltip-hide "tooltip" (&optional ignored-arg))
3354 (declare-function tooltip-start-delayed-tip "tooltip" ())
3356 (defun gud-tooltip-mouse-motion (event)
3357 "Command handler for mouse movement events in `global-map'."
3360 (when (car (mouse-pixel-position))
3361 (setq tooltip-last-mouse-motion-event (copy-sequence event))
3362 (tooltip-start-delayed-tip)))
3366 (defvar gud-tooltip-original-filter nil
3367 "Process filter to restore after GUD output has been received.")
3369 (defvar gud-tooltip-dereference nil
3370 "Non-nil means print expressions with a `*' in front of them.
3371 For C this would dereference a pointer expression.")
3373 (defvar gud-tooltip-event nil
3374 "The mouse movement event that led to a tooltip display.
3375 This event can be examined by forms in `gud-tooltip-display'.")
3377 (defun gud-tooltip-dereference (&optional arg)
3378 "Toggle whether tooltips should show `* expr' or `expr'.
3379 With arg, dereference expr if ARG is positive, otherwise do not dereference."
3381 (setq gud-tooltip-dereference
3383 (not gud-tooltip-dereference)
3384 (> (prefix-numeric-value arg) 0)))
3385 (message "Dereferencing is now %s."
3386 (if gud-tooltip-dereference "on" "off")))
3388 (define-obsolete-function-alias 'tooltip-gud-toggle-dereference
3389 'gud-tooltip-dereference "22.1")
3390 (defvar tooltip-use-echo-area)
3391 (declare-function tooltip-show "tooltip" (text &optional use-echo-area))
3392 (declare-function tooltip-strip-prompt "tooltip" (process output))
3394 ; This will only display data that comes in one chunk.
3395 ; Larger arrays (say 400 elements) are displayed in
3396 ; the tooltip incompletely and spill over into the gud buffer.
3397 ; Switching the process-filter creates timing problems and
3398 ; it may be difficult to do better. Using GDB/MI as in
3399 ; gdb-mi.el gets round this problem.
3400 (defun gud-tooltip-process-output (process output)
3401 "Process debugger output and show it in a tooltip window."
3402 (set-process-filter process gud-tooltip-original-filter)
3403 (tooltip-show (tooltip-strip-prompt process output)
3404 (or gud-tooltip-echo-area tooltip-use-echo-area)))
3406 (defun gud-tooltip-print-command (expr)
3407 "Return a suitable command to print the expression EXPR."
3408 (pcase gud-minor-mode
3409 (`gdbmi (concat "-data-evaluate-expression \"" expr "\""))
3410 (`dbx (concat "print " expr))
3411 ((or `xdb `pdb) (concat "p " expr))
3412 (`sdb (concat expr "/"))))
3414 (declare-function gdb-input "gdb-mi" (command handler))
3415 (declare-function tooltip-expr-to-print "tooltip" (event))
3416 (declare-function tooltip-event-buffer "tooltip" (event))
3418 (defun gud-tooltip-tips (event)
3419 "Show tip for identifier or selection under the mouse.
3420 The mouse must either point at an identifier or inside a selected
3421 region for the tip window to be shown. If `gud-tooltip-dereference' is t,
3422 add a `*' in front of the printed expression. In the case of a C program
3423 controlled by GDB, show the associated #define directives when program is
3426 This function must return nil if it doesn't handle EVENT."
3428 (when (and (eventp event)
3431 (buffer-name gud-comint-buffer); might be killed
3432 (setq process (get-buffer-process gud-comint-buffer))
3433 (posn-point (event-end event))
3434 (or (and (eq gud-minor-mode 'gdbmi) (not gdb-active-process))
3435 (progn (setq gud-tooltip-event event)
3436 (eval (cons 'and gud-tooltip-display)))))
3437 (let ((expr (tooltip-expr-to-print event)))
3439 (if (and (eq gud-minor-mode 'gdbmi)
3440 (not gdb-active-process))
3442 (with-current-buffer (tooltip-event-buffer event)
3443 (let ((define-elt (assoc expr gdb-define-alist)))
3444 (unless (null define-elt)
3447 (or gud-tooltip-echo-area tooltip-use-echo-area))
3449 (when gud-tooltip-dereference
3450 (setq expr (concat "*" expr)))
3451 (let ((cmd (gud-tooltip-print-command expr)))
3452 (when (and gud-tooltip-mode (eq gud-minor-mode 'gdb))
3453 (gud-tooltip-mode -1)
3454 ;; The blank before the newline is for MS-Windows,
3455 ;; whose emulation of message box removes newlines and
3456 ;; displays a single long line.
3457 (message-box "Using GUD tooltips in this mode is unsafe \n\
3458 so they have been disabled."))
3459 (unless (null cmd) ; CMD can be nil if unknown debugger
3460 (if (eq gud-minor-mode 'gdbmi)
3464 "server macro expand " expr "\n")
3465 `(lambda () (gdb-tooltip-print-1 ,expr)))
3468 `(lambda () (gdb-tooltip-print ,expr))))
3469 (setq gud-tooltip-original-filter (process-filter process))
3470 (set-process-filter process 'gud-tooltip-process-output)
3471 (gud-basic-call cmd))
3476 ;;; gud.el ends here