Merge branch 'master' into comment-cache
[emacs.git] / lisp / progmodes / gud.el
blob1301758ea12de82e7596e13c3b68455552d6b8dd
1 ;;; gud.el --- Grand Unified Debugger mode for running GDB and other debuggers -*- lexical-binding:t -*-
3 ;; Copyright (C) 1992-1996, 1998, 2000-2017 Free Software Foundation,
4 ;; Inc.
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
7 ;; Maintainer: emacs-devel@gnu.org
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/>.
25 ;;; Commentary:
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
37 ;; debugger.) Jan Nieuwenhuizen added support for the Guile REPL (Guile
38 ;; debugger).
40 ;;; Code:
42 (require 'comint)
44 (defvar gdb-active-process)
45 (defvar gdb-define-alist)
46 (defvar gdb-macro-info)
47 (defvar gdb-show-changed-values)
48 (defvar gdb-source-window)
49 (defvar gdb-var-list)
50 (defvar hl-line-mode)
51 (defvar hl-line-sticky-flag)
54 ;; ======================================================================
55 ;; GUD commands must be visible in C buffers visited by GUD
57 (defgroup gud nil
58 "The \"Grand Unified Debugger\" interface.
59 Supported debuggers include gdb, sdb, dbx, xdb, perldb,
60 pdb (Python), and jdb."
61 :group 'processes
62 :group 'tools)
65 (defcustom gud-key-prefix "\C-x\C-a"
66 "Prefix of all GUD commands valid in C buffers."
67 :type 'key-sequence
68 :group 'gud)
70 (global-set-key (vconcat gud-key-prefix "\C-l") 'gud-refresh)
71 ;; (define-key ctl-x-map " " 'gud-break); backward compatibility hack
73 (defvar gud-marker-filter nil)
74 (put 'gud-marker-filter 'permanent-local t)
75 (defvar gud-find-file nil)
76 (put 'gud-find-file 'permanent-local t)
78 (defun gud-marker-filter (&rest args)
79 (apply gud-marker-filter args))
81 (defvar gud-minor-mode nil)
82 (put 'gud-minor-mode 'permanent-local t)
84 (defvar gud-comint-buffer nil)
86 (defvar gud-keep-buffer nil)
88 (defun gud-symbol (sym &optional soft minor-mode)
89 "Return the symbol used for SYM in MINOR-MODE.
90 MINOR-MODE defaults to `gud-minor-mode'.
91 The symbol returned is `gud-<MINOR-MODE>-<SYM>'.
92 If SOFT is non-nil, returns nil if the symbol doesn't already exist."
93 (unless (or minor-mode gud-minor-mode) (error "Gud internal error"))
94 (funcall (if soft 'intern-soft 'intern)
95 (format "gud-%s-%s" (or minor-mode gud-minor-mode) sym)))
97 (defun gud-val (sym &optional minor-mode)
98 "Return the value of `gud-symbol' SYM. Default to nil."
99 (let ((sym (gud-symbol sym t minor-mode)))
100 (if (boundp sym) (symbol-value sym))))
102 (defvar gud-running nil
103 "Non-nil if debugged program is running.
104 Used to gray out relevant toolbar icons.")
106 (defvar gud-target-name "--unknown--"
107 "The apparent name of the program being debugged in a gud buffer.")
109 ;; Use existing Info buffer, if possible.
110 (defun gud-goto-info ()
111 "Go to relevant Emacs info node."
112 (interactive)
113 (if (eq gud-minor-mode 'gdbmi)
114 (info-other-window "(emacs)GDB Graphical Interface")
115 (info-other-window "(emacs)Debuggers")))
117 (defun gud-tool-bar-item-visible-no-fringe ()
118 (not (or (eq (buffer-local-value 'major-mode (window-buffer)) 'speedbar-mode)
119 (eq (buffer-local-value 'major-mode (window-buffer)) 'gdb-memory-mode)
120 (and (eq gud-minor-mode 'gdbmi)
121 (> (car (window-fringes)) 0)))))
123 (declare-function gdb-gud-context-command "gdb-mi.el")
125 (defun gud-stop-subjob ()
126 (interactive)
127 (with-current-buffer gud-comint-buffer
128 (cond ((string-equal gud-target-name "emacs")
129 (comint-stop-subjob))
130 ((eq gud-minor-mode 'jdb)
131 (gud-call "suspend"))
132 ((eq gud-minor-mode 'gdbmi)
133 (gud-call (gdb-gud-context-command "-exec-interrupt")))
135 (comint-interrupt-subjob)))))
137 (easy-mmode-defmap gud-menu-map
138 '(([help] "Info (debugger)" . gud-goto-info)
139 ([tooltips] menu-item "Show GUD tooltips" gud-tooltip-mode
140 :enable (and (not emacs-basic-display)
141 (display-graphic-p)
142 (fboundp 'x-show-tip))
143 :visible (memq gud-minor-mode
144 '(gdbmi guiler dbx sdb xdb pdb))
145 :button (:toggle . gud-tooltip-mode))
146 ([refresh] "Refresh" . gud-refresh)
147 ([run] menu-item "Run" gud-run
148 :enable (not gud-running)
149 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb)))
150 ([go] menu-item (if (bound-and-true-p gdb-active-process)
151 "Continue" "Run") gud-go
152 :visible (and (eq gud-minor-mode 'gdbmi)
153 (gdb-show-run-p)))
154 ([stop] menu-item "Stop" gud-stop-subjob
155 :visible (or (not (memq gud-minor-mode '(gdbmi pdb)))
156 (gdb-show-stop-p)))
157 ([until] menu-item "Continue to selection" gud-until
158 :enable (not gud-running)
159 :visible (and (memq gud-minor-mode '(gdbmi gdb perldb))
160 (gud-tool-bar-item-visible-no-fringe)))
161 ([remove] menu-item "Remove Breakpoint" gud-remove
162 :enable (not gud-running)
163 :visible (gud-tool-bar-item-visible-no-fringe))
164 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak
165 :enable (not gud-running)
166 :visible (memq gud-minor-mode
167 '(gdbmi gdb sdb xdb)))
168 ([break] menu-item "Set Breakpoint" gud-break
169 :enable (not gud-running)
170 :visible (gud-tool-bar-item-visible-no-fringe))
171 ([up] menu-item "Up Stack" gud-up
172 :enable (not gud-running)
173 :visible (memq gud-minor-mode
174 '(gdbmi gdb guiler dbx xdb jdb pdb)))
175 ([down] menu-item "Down Stack" gud-down
176 :enable (not gud-running)
177 :visible (memq gud-minor-mode
178 '(gdbmi gdb guiler dbx xdb jdb pdb)))
179 ([pp] menu-item "Print S-expression" gud-pp
180 :enable (and (not gud-running)
181 (bound-and-true-p gdb-active-process))
182 :visible (and (string-equal
183 (buffer-local-value
184 'gud-target-name gud-comint-buffer) "emacs")
185 (eq gud-minor-mode 'gdbmi)))
186 ([print*] menu-item (if (eq gud-minor-mode 'jdb)
187 "Dump object"
188 "Print Dereference") gud-pstar
189 :enable (not gud-running)
190 :visible (memq gud-minor-mode '(gdbmi gdb jdb)))
191 ([print] menu-item "Print Expression" gud-print
192 :enable (not gud-running))
193 ([watch] menu-item "Watch Expression" gud-watch
194 :enable (not gud-running)
195 :visible (eq gud-minor-mode 'gdbmi))
196 ([finish] menu-item "Finish Function" gud-finish
197 :enable (not gud-running)
198 :visible (memq gud-minor-mode
199 '(gdbmi gdb guiler xdb jdb pdb)))
200 ([stepi] menu-item "Step Instruction" gud-stepi
201 :enable (not gud-running)
202 :visible (memq gud-minor-mode '(gdbmi gdb dbx)))
203 ([nexti] menu-item "Next Instruction" gud-nexti
204 :enable (not gud-running)
205 :visible (memq gud-minor-mode '(gdbmi gdb dbx)))
206 ([step] menu-item "Step Line" gud-step
207 :enable (not gud-running))
208 ([next] menu-item "Next Line" gud-next
209 :enable (not gud-running))
210 ([cont] menu-item "Continue" gud-cont
211 :enable (not gud-running)
212 :visible (not (eq gud-minor-mode 'gdbmi))))
213 "Menu for `gud-mode'."
214 :name "Gud")
216 (easy-mmode-defmap gud-minor-mode-map
217 (append
218 `(([menu-bar debug] . ("Gud" . ,gud-menu-map)))
219 ;; Get tool bar like functionality from the menu bar on a text only
220 ;; terminal.
221 (unless window-system
222 `(([menu-bar down]
223 . (,(propertize "down" 'face 'font-lock-doc-face) . gud-down))
224 ([menu-bar up]
225 . (,(propertize "up" 'face 'font-lock-doc-face) . gud-up))
226 ([menu-bar finish]
227 . (,(propertize "finish" 'face 'font-lock-doc-face) . gud-finish))
228 ([menu-bar step]
229 . (,(propertize "step" 'face 'font-lock-doc-face) . gud-step))
230 ([menu-bar next]
231 . (,(propertize "next" 'face 'font-lock-doc-face) . gud-next))
232 ([menu-bar until] menu-item
233 ,(propertize "until" 'face 'font-lock-doc-face) gud-until
234 :visible (memq gud-minor-mode '(gdbmi gdb perldb)))
235 ([menu-bar cont] menu-item
236 ,(propertize "cont" 'face 'font-lock-doc-face) gud-cont
237 :visible (not (eq gud-minor-mode 'gdbmi)))
238 ([menu-bar run] menu-item
239 ,(propertize "run" 'face 'font-lock-doc-face) gud-run
240 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb)))
241 ([menu-bar go] menu-item
242 ,(propertize " go " 'face 'font-lock-doc-face) gud-go
243 :visible (and (eq gud-minor-mode 'gdbmi)
244 (gdb-show-run-p)))
245 ([menu-bar stop] menu-item
246 ,(propertize "stop" 'face 'font-lock-doc-face) gud-stop-subjob
247 :visible (or (and (eq gud-minor-mode 'gdbmi)
248 (gdb-show-stop-p))
249 (not (eq gud-minor-mode 'gdbmi))))
250 ([menu-bar print]
251 . (,(propertize "print" 'face 'font-lock-doc-face) . gud-print))
252 ([menu-bar tools] . undefined)
253 ([menu-bar buffer] . undefined)
254 ([menu-bar options] . undefined)
255 ([menu-bar edit] . undefined)
256 ([menu-bar file] . undefined))))
257 "Map used in visited files.")
259 (setf (alist-get 'gud-minor-mode minor-mode-map-alist)
260 gud-minor-mode-map)
262 (defvar gud-mode-map
263 ;; Will inherit from comint-mode via define-derived-mode.
264 (make-sparse-keymap)
265 "`gud-mode' keymap.")
267 (defvar gud-tool-bar-map
268 (let ((map (make-sparse-keymap)))
269 (dolist (x '((gud-break . "gud/break")
270 (gud-remove . "gud/remove")
271 (gud-print . "gud/print")
272 (gud-pstar . "gud/pstar")
273 (gud-pp . "gud/pp")
274 (gud-watch . "gud/watch")
275 (gud-run . "gud/run")
276 (gud-go . "gud/go")
277 (gud-stop-subjob . "gud/stop")
278 (gud-cont . "gud/cont")
279 (gud-until . "gud/until")
280 (gud-next . "gud/next")
281 (gud-step . "gud/step")
282 (gud-finish . "gud/finish")
283 (gud-nexti . "gud/nexti")
284 (gud-stepi . "gud/stepi")
285 (gud-up . "gud/up")
286 (gud-down . "gud/down")
287 (gud-goto-info . "info"))
288 map)
289 (tool-bar-local-item-from-menu
290 (car x) (cdr x) map gud-minor-mode-map))))
292 (defun gud-file-name (f)
293 "Transform a relative file name to an absolute file name.
294 Uses `gud-<MINOR-MODE>-directories' to find the source files."
295 ;; When `default-directory' is a remote file name, prepend its
296 ;; remote part to f, which is the local file name. Fortunately,
297 ;; `file-remote-p' returns exactly this remote file name part (or
298 ;; nil otherwise).
299 (setq f (concat (or (file-remote-p default-directory) "") f))
300 (if (file-exists-p f) (expand-file-name f)
301 (let ((directories (gud-val 'directories))
302 (result nil))
303 (while directories
304 (let ((path (expand-file-name f (car directories))))
305 (if (file-exists-p path)
306 (setq result path
307 directories nil)))
308 (setq directories (cdr directories)))
309 result)))
311 (declare-function gdb-create-define-alist "gdb-mi" ())
313 (defun gud-find-file (file)
314 ;; Don't get confused by double slashes in the name that comes from GDB.
315 (while (string-match "//+" file)
316 (setq file (replace-match "/" t t file)))
317 (let ((minor-mode gud-minor-mode)
318 (buf (funcall (or gud-find-file 'gud-file-name) file)))
319 (when (stringp buf)
320 (setq buf (and (file-readable-p buf) (find-file-noselect buf 'nowarn))))
321 (when buf
322 ;; Copy `gud-minor-mode' to the found buffer to turn on the menu.
323 (with-current-buffer buf
324 (setq-local gud-minor-mode minor-mode)
325 (if (boundp 'tool-bar-map) ; not --without-x
326 (setq-local tool-bar-map gud-tool-bar-map))
327 (when (and gud-tooltip-mode
328 (eq gud-minor-mode 'gdbmi))
329 (make-local-variable 'gdb-define-alist)
330 (unless gdb-define-alist (gdb-create-define-alist))
331 (add-hook 'after-save-hook 'gdb-create-define-alist nil t))
332 (make-local-variable 'gud-keep-buffer))
333 buf)))
335 ;; ======================================================================
336 ;; command definition
338 ;; This macro is used below to define some basic debugger interface commands.
339 ;; Of course you may use `gud-def' with any other debugger command, including
340 ;; user defined ones.
342 ;; A macro call like (gud-def FUNC CMD KEY DOC) expands to a form
343 ;; which defines FUNC to send the command CMD to the debugger, gives
344 ;; it the docstring DOC, and binds that function to KEY in the GUD
345 ;; major mode. The function is also bound in the global keymap with the
346 ;; GUD prefix.
348 (defmacro gud-def (func cmd key &optional doc)
349 "Define FUNC to be a command sending CMD and bound to KEY, with
350 optional doc string DOC. Certain %-escapes in the string arguments
351 are interpreted specially if present. These are:
353 %f -- Name (without directory) of current source file.
354 %F -- Name (without directory or extension) of current source file.
355 %d -- Directory of current source file.
356 %l -- Number of current source line.
357 %e -- Text of the C lvalue or function-call expression surrounding point.
358 %a -- Text of the hexadecimal address surrounding point.
359 %p -- Prefix argument to the command (if any) as a number.
360 %c -- Fully qualified class name derived from the expression
361 surrounding point (jdb only).
363 The `current' source file is the file of the current buffer (if
364 we're in a C file) or the source file current at the last break or
365 step (if we're in the GUD buffer).
366 The `current' line is that of the current buffer (if we're in a
367 source file) or the source line number at the last break or step (if
368 we're in the GUD buffer)."
369 `(progn
370 (defalias ',func (lambda (arg)
371 ,@(if doc (list doc))
372 (interactive "p")
373 (if (not gud-running)
374 ,(if (stringp cmd)
375 `(gud-call ,cmd arg)
376 cmd))))
377 ,(if key `(local-set-key ,(concat "\C-c" key) ',func))
378 ,(if key `(global-set-key (vconcat gud-key-prefix ,key) ',func))))
380 ;; Where gud-display-frame should put the debugging arrow; a cons of
381 ;; (filename . line-number). This is set by the marker-filter, which scans
382 ;; the debugger's output for indications of the current program counter.
383 (defvar gud-last-frame nil)
385 ;; Used by gud-refresh, which should cause gud-display-frame to redisplay
386 ;; the last frame, even if it's been called before and gud-last-frame has
387 ;; been set to nil.
388 (defvar gud-last-last-frame nil)
390 ;; All debugger-specific information is collected here.
391 ;; Here's how it works, in case you ever need to add a debugger to the mode.
393 ;; Each entry must define the following at startup:
395 ;;<name>
396 ;; comint-prompt-regexp
397 ;; gud-<name>-massage-args
398 ;; gud-<name>-marker-filter
399 ;; gud-<name>-find-file
401 ;; The job of the massage-args method is to modify the given list of
402 ;; debugger arguments before running the debugger.
404 ;; The job of the marker-filter method is to detect file/line markers in
405 ;; strings and set the global gud-last-frame to indicate what display
406 ;; action (if any) should be triggered by the marker. Note that only
407 ;; whatever the method *returns* is displayed in the buffer; thus, you
408 ;; can filter the debugger's output, interpreting some and passing on
409 ;; the rest.
411 ;; The job of the find-file method is to visit and return the buffer indicated
412 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or
413 ;; something else.
415 ;; ======================================================================
416 ;; speedbar support functions and variables.
417 (eval-when-compile (require 'dframe)) ; for dframe-with-attached-buffer
419 (defvar gud-last-speedbar-stackframe nil
420 "Description of the currently displayed GUD stack.
421 The value t means that there is no stack, and we are in display-file mode.")
423 (defvar gud-speedbar-key-map nil
424 "Keymap used when in the buffers display mode.")
426 ;; At runtime, will be pulled in as a require of speedbar.
427 (declare-function dframe-message "dframe" (fmt &rest args))
429 (defun gud-speedbar-item-info ()
430 "Display the data type of the watch expression element."
431 (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list)))
432 (if (nth 7 var)
433 (dframe-message "%s: %s" (nth 7 var) (nth 3 var))
434 (dframe-message "%s" (nth 3 var)))))
436 (declare-function speedbar-make-specialized-keymap "speedbar" ())
437 (declare-function speedbar-add-expansion-list "speedbar" (new-list))
438 (defvar speedbar-mode-functions-list)
440 (defun gud-install-speedbar-variables ()
441 "Install those variables used by speedbar to enhance gud/gdb."
442 (unless gud-speedbar-key-map
443 (setq gud-speedbar-key-map (speedbar-make-specialized-keymap))
444 (define-key gud-speedbar-key-map "j" 'speedbar-edit-line)
445 (define-key gud-speedbar-key-map "e" 'speedbar-edit-line)
446 (define-key gud-speedbar-key-map "\C-m" 'speedbar-edit-line)
447 (define-key gud-speedbar-key-map " " 'speedbar-toggle-line-expansion)
448 (define-key gud-speedbar-key-map "D" 'gdb-var-delete)
449 (define-key gud-speedbar-key-map "p" 'gud-pp))
451 (speedbar-add-expansion-list '("GUD" gud-speedbar-menu-items
452 gud-speedbar-key-map
453 gud-expansion-speedbar-buttons))
455 (add-to-list
456 'speedbar-mode-functions-list
457 '("GUD" (speedbar-item-info . gud-speedbar-item-info)
458 (speedbar-line-directory . ignore))))
460 (defvar gud-speedbar-menu-items
461 '(["Jump to stack frame" speedbar-edit-line
462 :visible (not (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
463 'gdbmi))]
464 ["Edit value" speedbar-edit-line
465 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
466 'gdbmi)]
467 ["Delete expression" gdb-var-delete
468 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
469 'gdbmi)]
470 ["Auto raise frame" gdb-speedbar-auto-raise
471 :style toggle :selected gdb-speedbar-auto-raise
472 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
473 'gdbmi)]
474 ("Output Format"
475 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
476 'gdbmi)
477 ["Binary" (gdb-var-set-format "binary") t]
478 ["Natural" (gdb-var-set-format "natural") t]
479 ["Hexadecimal" (gdb-var-set-format "hexadecimal") t]))
480 "Additional menu items to add to the speedbar frame.")
482 ;; Make sure our special speedbar mode is loaded
483 (if (featurep 'speedbar)
484 (gud-install-speedbar-variables)
485 (add-hook 'speedbar-load-hook 'gud-install-speedbar-variables))
487 (defun gud-expansion-speedbar-buttons (_directory _zero)
488 "Wrapper for call to `speedbar-add-expansion-list'.
489 DIRECTORY and ZERO are not used, but are required by the caller."
490 (gud-speedbar-buttons gud-comint-buffer))
492 (declare-function speedbar-make-tag-line "speedbar"
493 (type char func data tag tfunc tdata tface depth))
494 (declare-function speedbar-remove-localized-speedbar-support "speedbar"
495 (buffer))
496 (declare-function speedbar-insert-button "speedbar"
497 (text face mouse function &optional token prevline))
499 (defun gud-speedbar-buttons (buffer)
500 "Create a speedbar display based on the current state of GUD.
501 If the GUD BUFFER is not running a supported debugger, then turn
502 off the specialized speedbar mode. BUFFER is not used, but is
503 required by the caller."
504 (when (and gud-comint-buffer
505 ;; gud-comint-buffer might be killed
506 (buffer-name gud-comint-buffer))
507 (let* ((minor-mode (with-current-buffer buffer gud-minor-mode))
508 (window (get-buffer-window (current-buffer) 0))
509 (start (window-start window))
510 (p (window-point window)))
511 (cond
512 ((eq minor-mode 'gdbmi)
513 (erase-buffer)
514 (insert "Watch Expressions:\n")
515 (let ((var-list gdb-var-list) parent)
516 (while var-list
517 (let* (char (depth 0) (start 0) (var (car var-list))
518 (varnum (car var)) (expr (nth 1 var))
519 (type (if (nth 3 var) (nth 3 var) " "))
520 (value (nth 4 var)) (status (nth 5 var))
521 (has-more (nth 6 var)))
522 (put-text-property
523 0 (length expr) 'face font-lock-variable-name-face expr)
524 (put-text-property
525 0 (length type) 'face font-lock-type-face type)
526 (while (string-match "\\." varnum start)
527 (setq depth (1+ depth)
528 start (1+ (match-beginning 0))))
529 (if (eq depth 0) (setq parent nil))
530 (if (and (or (not has-more) (string-equal has-more "0"))
531 (or (equal (nth 2 var) "0")
532 (and (equal (nth 2 var) "1")
533 (string-match "char \\*$" type)) ))
534 (speedbar-make-tag-line
535 'bracket ?? nil nil
536 (concat expr "\t" value)
537 (if (or parent (eq status 'out-of-scope))
538 nil 'gdb-edit-value)
540 (if gdb-show-changed-values
541 (or parent (pcase status
542 (`changed 'font-lock-warning-face)
543 (`out-of-scope 'shadow)
544 (_ t)))
546 depth)
547 (if (eq status 'out-of-scope) (setq parent 'shadow))
548 (if (and (nth 1 var-list)
549 (string-match (concat varnum "\\.")
550 (car (nth 1 var-list))))
551 (setq char ?-)
552 (setq char ?+))
553 (if (string-match "\\*$\\|\\*&$" type)
554 (speedbar-make-tag-line
555 'bracket char
556 'gdb-speedbar-expand-node varnum
557 (concat expr "\t" type "\t" value)
558 (if (or parent (eq status 'out-of-scope))
559 nil 'gdb-edit-value)
561 (if gdb-show-changed-values
562 (or parent (pcase status
563 (`changed 'font-lock-warning-face)
564 (`out-of-scope 'shadow)
565 (_ t)))
567 depth)
568 (speedbar-make-tag-line
569 'bracket char
570 'gdb-speedbar-expand-node varnum
571 (concat expr "\t" type)
572 nil nil
573 (if (and (or parent status) gdb-show-changed-values)
574 'shadow t)
575 depth))))
576 (setq var-list (cdr var-list)))))
577 (t (unless (and (save-excursion
578 (goto-char (point-min))
579 (looking-at "Current Stack:"))
580 (equal gud-last-last-frame gud-last-speedbar-stackframe))
581 (let ((gud-frame-list
582 (cond ((eq minor-mode 'gdb)
583 (gud-gdb-get-stackframe buffer))
584 ;; Add more debuggers here!
585 (t (speedbar-remove-localized-speedbar-support buffer)
586 nil))))
587 (erase-buffer)
588 (if (not gud-frame-list)
589 (insert "No Stack frames\n")
590 (insert "Current Stack:\n"))
591 (dolist (frame gud-frame-list)
592 (insert (nth 1 frame) ":\n")
593 (if (= (length frame) 2)
594 (progn
595 (speedbar-insert-button (car frame)
596 'speedbar-directory-face
597 nil nil nil t))
598 (speedbar-insert-button
599 (car frame)
600 'speedbar-file-face
601 'speedbar-highlight-face
602 (cond ((memq minor-mode '(gdbmi gdb))
603 'gud-gdb-goto-stackframe)
604 (t (error "Should never be here")))
605 frame t))))
606 (setq gud-last-speedbar-stackframe gud-last-last-frame))))
607 (set-window-start window start)
608 (set-window-point window p))))
611 ;; ======================================================================
612 ;; gdb functions
614 ;; History of argument lists passed to gdb.
615 (defvar gud-gdb-history nil)
617 (defcustom gud-gud-gdb-command-name "gdb --fullname"
618 "Default command to run an executable under GDB in text command mode.
619 The option \"--fullname\" must be included in this value."
620 :type 'string
621 :group 'gud)
623 (defvar gud-gdb-marker-regexp
624 ;; This used to use path-separator instead of ":";
625 ;; however, we found that on both Windows 32 and MSDOS
626 ;; a colon is correct here.
627 (concat "\032\032\\(.:?[^" ":" "\n]*\\)" ":"
628 "\\([0-9]*\\)" ":" ".*\n"))
630 ;; There's no guarantee that Emacs will hand the filter the entire
631 ;; marker at once; it could be broken up across several strings. We
632 ;; might even receive a big chunk with several markers in it. If we
633 ;; receive a chunk of text which looks like it might contain the
634 ;; beginning of a marker, we save it here between calls to the
635 ;; filter.
636 (defvar gud-marker-acc "")
637 (make-variable-buffer-local 'gud-marker-acc)
639 (defun gud-gdb-marker-filter (string)
640 (setq gud-marker-acc (concat gud-marker-acc string))
641 (let ((output ""))
643 ;; Process all the complete markers in this chunk.
644 (while (string-match gud-gdb-marker-regexp gud-marker-acc)
645 (setq
647 ;; Extract the frame position from the marker.
648 gud-last-frame (cons (match-string 1 gud-marker-acc)
649 (string-to-number (match-string 2 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.
657 gud-marker-acc (substring gud-marker-acc (match-end 0))))
659 (while (string-match "\n\032\032\\(.*\\)\n" gud-marker-acc)
660 (setq
661 ;; Append any text before the marker to the output we're going
662 ;; to return - we don't include the marker in this text.
663 output (concat output
664 (substring gud-marker-acc 0 (match-beginning 0)))
666 ;; Set the accumulator to the remaining text.
668 gud-marker-acc (substring gud-marker-acc (match-end 0))))
670 ;; Does the remaining text look like it might end with the
671 ;; beginning of another marker? If it does, then keep it in
672 ;; gud-marker-acc until we receive the rest of it. Since we
673 ;; know the full marker regexp above failed, it's pretty simple to
674 ;; test for marker starts.
675 (if (string-match "\n\\(\032.*\\)?\\'" gud-marker-acc)
676 (progn
677 ;; Everything before the potential marker start can be output.
678 (setq output (concat output (substring gud-marker-acc
679 0 (match-beginning 0))))
681 ;; Everything after, we save, to combine with later input.
682 (setq gud-marker-acc
683 (substring gud-marker-acc (match-beginning 0))))
685 (setq output (concat output gud-marker-acc)
686 gud-marker-acc ""))
688 output))
690 (easy-mmode-defmap gud-minibuffer-local-map
691 '(("\C-i" . comint-dynamic-complete-filename))
692 "Keymap for minibuffer prompting of gud startup command."
693 :inherit minibuffer-local-map)
695 (defun gud-query-cmdline (minor-mode &optional init)
696 (let* ((hist-sym (gud-symbol 'history nil minor-mode))
697 (cmd-name (gud-val 'command-name minor-mode)))
698 (unless (boundp hist-sym) (set hist-sym nil))
699 (read-from-minibuffer
700 (format "Run %s (like this): " minor-mode)
701 (or (car-safe (symbol-value hist-sym))
702 (concat (or cmd-name (symbol-name minor-mode))
704 (or init
705 (let ((file nil))
706 (dolist (f (directory-files default-directory) file)
707 (if (and (file-executable-p f)
708 (not (file-directory-p f))
709 (or (not file)
710 (file-newer-than-file-p f file)))
711 (setq file f)))))))
712 gud-minibuffer-local-map nil
713 hist-sym)))
715 (defvar gdb-first-prompt t)
717 (defvar gud-filter-pending-text nil
718 "Non-nil means this is text that has been saved for later in `gud-filter'.")
720 ;; One of the nice features of GDB is its impressive support for
721 ;; context-sensitive command completion. We preserve that feature
722 ;; in the GUD buffer by using a GDB command designed just for Emacs.
724 (defvar gud-gdb-completion-function nil
725 "Completion function for GDB commands.
726 It receives two arguments: COMMAND, the prefix for which we seek
727 completion; and CONTEXT, the text before COMMAND on the line.
728 It should return a list of completion strings.")
730 ;; If in gdb mode, gdb-mi is loaded.
731 (declare-function gdb-restore-windows "gdb-mi" ())
733 ;; The old gdb command (text command mode). The new one is in gdb-mi.el.
734 ;;;###autoload
735 (defun gud-gdb (command-line)
736 "Run gdb passing it COMMAND-LINE as arguments.
737 If COMMAND-LINE names a program FILE to debug, gdb will run in
738 a buffer named *gud-FILE*, and the directory containing FILE
739 becomes the initial working directory and source-file directory
740 for your debugger.
741 If COMMAND-LINE requests that gdb attaches to a process PID, gdb
742 will run in *gud-PID*, otherwise it will run in *gud*; in these
743 cases the initial working directory is the default-directory of
744 the buffer in which this command was invoked."
745 (interactive (list (gud-query-cmdline 'gud-gdb)))
747 (when (and gud-comint-buffer
748 (buffer-name gud-comint-buffer)
749 (get-buffer-process gud-comint-buffer)
750 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdbmi)))
751 (gdb-restore-windows)
752 (error
753 "Multiple debugging requires restarting in text command mode"))
755 (gud-common-init command-line nil 'gud-gdb-marker-filter)
756 (set (make-local-variable 'gud-minor-mode) 'gdb)
758 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.")
759 (gud-def gud-tbreak "tbreak %f:%l" "\C-t"
760 "Set temporary breakpoint at current line.")
761 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line")
762 (gud-def gud-step "step %p" "\C-s" "Step one source line with display.")
763 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
764 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
765 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
766 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
767 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
768 (gud-def gud-jump
769 (progn (gud-call "tbreak %f:%l") (gud-call "jump %f:%l"))
770 "\C-j" "Set execution address to current line.")
772 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
773 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
774 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
775 (gud-def gud-pstar "print* %e" nil
776 "Evaluate C dereferenced pointer expression at point.")
778 ;; For debugging Emacs only.
779 (gud-def gud-pv "pv %e" "\C-v" "Print the value of the lisp variable.")
781 (gud-def gud-until "until %l" "\C-u" "Continue to current line.")
782 (gud-def gud-run "run" nil "Run the program.")
784 (add-hook 'completion-at-point-functions #'gud-gdb-completion-at-point
785 nil 'local)
786 (set (make-local-variable 'gud-gdb-completion-function) 'gud-gdb-completions)
788 (local-set-key "\C-i" 'completion-at-point)
789 (setq comint-prompt-regexp "^(.*gdb[+]?) *")
790 (setq paragraph-start comint-prompt-regexp)
791 (setq gdb-first-prompt t)
792 (setq gud-running nil)
793 (setq gud-filter-pending-text nil)
794 (run-hooks 'gud-gdb-mode-hook))
796 ;; The completion process filter indicates when it is finished.
797 (defvar gud-gdb-fetch-lines-in-progress)
799 ;; Since output may arrive in fragments we accumulate partials strings here.
800 (defvar gud-gdb-fetch-lines-string)
802 ;; We need to know how much of the completion to chop off.
803 (defvar gud-gdb-fetch-lines-break)
805 ;; The completion list is constructed by the process filter.
806 (defvar gud-gdb-fetched-lines)
808 (defun gud-gdb-completions (context command)
809 "Completion table for GDB commands.
810 COMMAND is the prefix for which we seek completion.
811 CONTEXT is the text before COMMAND on the line."
812 (let* ((complete-list
813 (gud-gdb-run-command-fetch-lines (concat "complete " context command)
814 (current-buffer)
815 ;; From string-match above.
816 (length context))))
817 ;; Protect against old versions of GDB.
818 (and complete-list
819 (string-match "^Undefined command: \"complete\"" (car complete-list))
820 (error "This version of GDB doesn't support the `complete' command"))
821 (gud-gdb-completions-1 complete-list)))
823 ;; This function is also used by `gud-gdbmi-completions'.
824 (defun gud-gdb-completions-1 (complete-list)
825 ;; Sort the list like readline.
826 (setq complete-list (sort complete-list (function string-lessp)))
827 ;; Remove duplicates.
828 (let ((first complete-list)
829 (second (cdr complete-list)))
830 (while second
831 (if (string-equal (car first) (car second))
832 (setcdr first (setq second (cdr second)))
833 (setq first second
834 second (cdr second)))))
835 ;; Add a trailing single quote if there is a unique completion
836 ;; and it contains an odd number of unquoted single quotes.
837 (and (= (length complete-list) 1)
838 (let ((str (car complete-list))
839 (pos 0)
840 (count 0))
841 (while (string-match "\\([^'\\]\\|\\\\'\\)*'" str pos)
842 (setq count (1+ count)
843 pos (match-end 0)))
844 (and (= (mod count 2) 1)
845 (setq complete-list (list (concat str "'"))))))
846 complete-list)
848 (defun gud-gdb-completion-at-point ()
849 "Return the data to complete the GDB command before point."
850 (let ((end (point))
851 (start
852 (save-excursion
853 (skip-chars-backward "^ " (comint-line-beginning-position))
854 (point))))
855 ;; FIXME: `gud-gdb-run-command-fetch-lines' has some nasty side-effects on
856 ;; the buffer (via `gud-delete-prompt-marker'): it removes the prompt and
857 ;; then re-adds it later, thus messing up markers and overlays along the
858 ;; way (bug#18282).
859 ;; We use an "insert-before" marker for `start', since it's typically right
860 ;; after the prompt, which works around the problem, but is a hack (and
861 ;; comes with other downsides, e.g. if completion adds text at `start').
862 (list (copy-marker start t) end
863 (completion-table-dynamic
864 (apply-partially gud-gdb-completion-function
865 (buffer-substring (comint-line-beginning-position)
866 start))))))
868 ;; (defun gud-gdb-complete-command ()
869 ;; "Perform completion on the GDB command preceding point.
870 ;; This is implemented using the GDB `complete' command which isn't
871 ;; available with older versions of GDB."
872 ;; (interactive)
873 ;; (apply #'completion-in-region (gud-gdb-completion-at-point)))
875 ;; The completion process filter is installed temporarily to slurp the
876 ;; output of GDB up to the next prompt and build the completion list.
877 (defun gud-gdb-fetch-lines-filter (string)
878 "Filter used to read the list of lines output by a command.
879 STRING is the output to filter.
880 It is passed through `gud-gdb-marker-filter' before we look at it."
881 (setq string (gud-gdb-marker-filter string))
882 (setq string (concat gud-gdb-fetch-lines-string string))
883 (while (string-match "\n" string)
884 (push (substring string gud-gdb-fetch-lines-break (match-beginning 0))
885 gud-gdb-fetched-lines)
886 (setq string (substring string (match-end 0))))
887 (if (string-match comint-prompt-regexp string)
888 (progn
889 (setq gud-gdb-fetch-lines-in-progress nil)
890 string)
891 (progn
892 (setq gud-gdb-fetch-lines-string string)
893 "")))
895 ;; gdb speedbar functions
897 ;; Part of the macro expansion of dframe-with-attached-buffer.
898 ;; At runtime, will be pulled in as a require of speedbar.
899 (declare-function dframe-select-attached-frame "dframe" (&optional frame))
900 (declare-function dframe-maybee-jump-to-attached-frame "dframe" ())
902 (defun gud-gdb-goto-stackframe (_text token _indent)
903 "Goto the stackframe described by TEXT, TOKEN, and INDENT."
904 (dframe-with-attached-buffer
905 (gud-basic-call (concat "server frame " (nth 1 token)))
906 (sit-for 1)))
908 (defvar gud-gdb-fetched-stack-frame nil
909 "Stack frames we are fetching from GDB.")
911 (defun gud-gdb-get-stackframe (buffer)
912 "Extract the current stack frame out of the GUD GDB BUFFER."
913 (let ((newlst nil)
914 (fetched-stack-frame-list
915 (gud-gdb-run-command-fetch-lines "server backtrace" buffer)))
916 (if (and (car fetched-stack-frame-list)
917 (string-match "No stack" (car fetched-stack-frame-list)))
918 ;; Go into some other mode???
920 (dolist (e fetched-stack-frame-list)
921 (let ((name nil) (num nil))
922 (if (not (or
923 (string-match "^#\\([0-9]+\\) +[0-9a-fx]+ in \\([:0-9a-zA-Z_]+\\) (" e)
924 (string-match "^#\\([0-9]+\\) +\\([:0-9a-zA-Z_]+\\) (" e)))
925 (if (not (string-match
926 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e))
928 (setcar newlst
929 (list (nth 0 (car newlst))
930 (nth 1 (car newlst))
931 (match-string 1 e)
932 (match-string 2 e))))
933 (setq num (match-string 1 e)
934 name (match-string 2 e))
935 (setq newlst
936 (cons
937 (if (string-match
938 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e)
939 (list name num (match-string 1 e)
940 (match-string 2 e))
941 (list name num))
942 newlst)))))
943 (nreverse newlst))))
945 ;(defun gud-gdb-selected-frame-info (buffer)
946 ; "Learn GDB information for the currently selected stack frame in BUFFER."
949 (defun gud-gdb-run-command-fetch-lines (command buffer &optional skip)
950 "Run COMMAND, and return the list of lines it outputs.
951 BUFFER is the current buffer which may be the GUD buffer in which to run.
952 SKIP is the number of chars to skip on each line, it defaults to 0."
953 (with-current-buffer gud-comint-buffer
954 (unless (and (eq gud-comint-buffer buffer)
955 (save-excursion
956 (goto-char (point-max))
957 (forward-line 0)
958 (not (looking-at comint-prompt-regexp))))
959 (let ((gud-gdb-fetch-lines-in-progress t)
960 (gud-gdb-fetched-lines nil)
961 (gud-gdb-fetch-lines-string nil)
962 (gud-gdb-fetch-lines-break (or skip 0))
963 (gud-marker-filter #'gud-gdb-fetch-lines-filter))
964 ;; Issue the command to GDB.
965 (gud-basic-call command)
966 ;; Slurp the output.
967 (while gud-gdb-fetch-lines-in-progress
968 (accept-process-output (get-buffer-process gud-comint-buffer)))
969 (nreverse gud-gdb-fetched-lines)))))
972 ;; ======================================================================
973 ;; sdb functions
975 ;; History of argument lists passed to sdb.
976 (defvar gud-sdb-history nil)
978 (defvar gud-sdb-needs-tags (not (file-exists-p "/var"))
979 "If nil, we're on a System V Release 4 and don't need the tags hack.")
981 (defvar gud-sdb-lastfile nil)
983 (defun gud-sdb-marker-filter (string)
984 (setq gud-marker-acc
985 (if gud-marker-acc (concat gud-marker-acc string) string))
986 (let (start)
987 ;; Process all complete markers in this chunk
988 (while
989 (cond
990 ;; System V Release 3.2 uses this format
991 ((string-match "\\(^\\|\n\\)\\*?\\(0x\\w* in \\)?\\([^:\n]*\\):\\([0-9]*\\):.*\n"
992 gud-marker-acc start)
993 (setq gud-last-frame
994 (cons (match-string 3 gud-marker-acc)
995 (string-to-number (match-string 4 gud-marker-acc)))))
996 ;; System V Release 4.0 quite often clumps two lines together
997 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n\\([0-9]+\\):"
998 gud-marker-acc start)
999 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc))
1000 (setq gud-last-frame
1001 (cons gud-sdb-lastfile
1002 (string-to-number (match-string 3 gud-marker-acc)))))
1003 ;; System V Release 4.0
1004 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n"
1005 gud-marker-acc start)
1006 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc)))
1007 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):"
1008 gud-marker-acc start))
1009 (setq gud-last-frame
1010 (cons gud-sdb-lastfile
1011 (string-to-number (match-string 1 gud-marker-acc)))))
1013 (setq gud-sdb-lastfile nil)))
1014 (setq start (match-end 0)))
1016 ;; Search for the last incomplete line in this chunk
1017 (while (string-match "\n" gud-marker-acc start)
1018 (setq start (match-end 0)))
1020 ;; If we have an incomplete line, store it in gud-marker-acc.
1021 (setq gud-marker-acc (substring gud-marker-acc (or start 0))))
1022 string)
1024 (defun gud-sdb-find-file (f)
1025 (if gud-sdb-needs-tags (find-tag-noselect f) (find-file-noselect f)))
1027 ;;;###autoload
1028 (defun sdb (command-line)
1029 "Run sdb on program FILE in buffer *gud-FILE*.
1030 The directory containing FILE becomes the initial working directory
1031 and source-file directory for your debugger."
1032 (interactive (list (gud-query-cmdline 'sdb)))
1034 (if gud-sdb-needs-tags (require 'etags))
1035 (if (and gud-sdb-needs-tags
1036 (not (and (boundp 'tags-file-name)
1037 (stringp tags-file-name)
1038 (file-exists-p tags-file-name))))
1039 (error "The sdb support requires a valid tags table to work"))
1041 (gud-common-init command-line nil 'gud-sdb-marker-filter 'gud-sdb-find-file)
1042 (set (make-local-variable 'gud-minor-mode) 'sdb)
1044 (gud-def gud-break "%l b" "\C-b" "Set breakpoint at current line.")
1045 (gud-def gud-tbreak "%l c" "\C-t" "Set temporary breakpoint at current line.")
1046 (gud-def gud-remove "%l d" "\C-d" "Remove breakpoint at current line")
1047 (gud-def gud-step "s %p" "\C-s" "Step one source line with display.")
1048 (gud-def gud-stepi "i %p" "\C-i" "Step one instruction with display.")
1049 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1050 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1051 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.")
1053 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*")
1054 (setq paragraph-start comint-prompt-regexp)
1055 (run-hooks 'sdb-mode-hook)
1058 ;; ======================================================================
1059 ;; dbx functions
1061 ;; History of argument lists passed to dbx.
1062 (defvar gud-dbx-history nil)
1064 (defcustom gud-dbx-directories nil
1065 "A list of directories that dbx should search for source code.
1066 If nil, only source files in the program directory
1067 will be known to dbx.
1069 The file names should be absolute, or relative to the directory
1070 containing the executable being debugged."
1071 :type '(choice (const :tag "Current Directory" nil)
1072 (repeat :value ("")
1073 directory))
1074 :group 'gud)
1076 (defun gud-dbx-massage-args (_file args)
1077 (nconc (let ((directories gud-dbx-directories)
1078 (result nil))
1079 (while directories
1080 (setq result (cons (car directories) (cons "-I" result)))
1081 (setq directories (cdr directories)))
1082 (nreverse result))
1083 args))
1085 (defun gud-dbx-marker-filter (string)
1086 (setq gud-marker-acc (if gud-marker-acc (concat gud-marker-acc string) string))
1088 (let (start)
1089 ;; Process all complete markers in this chunk.
1090 (while (or (string-match
1091 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1092 gud-marker-acc start)
1093 (string-match
1094 "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1095 gud-marker-acc start))
1096 (setq gud-last-frame
1097 (cons (match-string 2 gud-marker-acc)
1098 (string-to-number (match-string 1 gud-marker-acc)))
1099 start (match-end 0)))
1101 ;; Search for the last incomplete line in this chunk
1102 (while (string-match "\n" gud-marker-acc start)
1103 (setq start (match-end 0)))
1105 ;; If the incomplete line APPEARS to begin with another marker, keep it
1106 ;; in the accumulator. Otherwise, clear the accumulator to avoid an
1107 ;; unnecessary concat during the next call.
1108 (setq gud-marker-acc
1109 (if (string-match "\\(stopped\\|signal\\)" gud-marker-acc start)
1110 (substring gud-marker-acc (match-beginning 0))
1111 nil)))
1112 string)
1114 ;; Functions for Mips-style dbx. Given the option `-emacs', documented in
1115 ;; OSF1, not necessarily elsewhere, it produces markers similar to gdb's.
1116 (defvar gud-mips-p
1117 (or (string-match "^mips-[^-]*-ultrix" system-configuration)
1118 ;; We haven't tested gud on this system:
1119 (string-match "^mips-[^-]*-riscos" system-configuration)
1120 ;; It's documented on OSF/1.3
1121 (string-match "^mips-[^-]*-osf1" system-configuration)
1122 (string-match "^alpha[^-]*-[^-]*-osf" system-configuration))
1123 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').")
1125 (defvar gud-dbx-command-name
1126 (concat "dbx" (if gud-mips-p " -emacs")))
1128 ;; This is just like the gdb one except for the regexps since we need to cope
1129 ;; with an optional breakpoint number in [] before the ^Z^Z
1130 (defun gud-mipsdbx-marker-filter (string)
1131 (setq gud-marker-acc (concat gud-marker-acc string))
1132 (let ((output ""))
1134 ;; Process all the complete markers in this chunk.
1135 (while (string-match
1136 ;; This is like th gdb marker but with an optional
1137 ;; leading break point number like `[1] '
1138 "[][ 0-9]*\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n"
1139 gud-marker-acc)
1140 (setq
1142 ;; Extract the frame position from the marker.
1143 gud-last-frame
1144 (cons (match-string 1 gud-marker-acc)
1145 (string-to-number (match-string 2 gud-marker-acc)))
1147 ;; Append any text before the marker to the output we're going
1148 ;; to return - we don't include the marker in this text.
1149 output (concat output
1150 (substring gud-marker-acc 0 (match-beginning 0)))
1152 ;; Set the accumulator to the remaining text.
1153 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1155 ;; Does the remaining text look like it might end with the
1156 ;; beginning of another marker? If it does, then keep it in
1157 ;; gud-marker-acc until we receive the rest of it. Since we
1158 ;; know the full marker regexp above failed, it's pretty simple to
1159 ;; test for marker starts.
1160 (if (string-match "[][ 0-9]*\032.*\\'" gud-marker-acc)
1161 (progn
1162 ;; Everything before the potential marker start can be output.
1163 (setq output (concat output (substring gud-marker-acc
1164 0 (match-beginning 0))))
1166 ;; Everything after, we save, to combine with later input.
1167 (setq gud-marker-acc
1168 (substring gud-marker-acc (match-beginning 0))))
1170 (setq output (concat output gud-marker-acc)
1171 gud-marker-acc ""))
1173 output))
1175 ;; The dbx in IRIX is a pain. It doesn't print the file name when
1176 ;; stopping at a breakpoint (but you do get it from the `up' and
1177 ;; `down' commands...). The only way to extract the information seems
1178 ;; to be with a `file' command, although the current line number is
1179 ;; available in $curline. Thus we have to look for output which
1180 ;; appears to indicate a breakpoint. Then we prod the dbx sub-process
1181 ;; to output the information we want with a combination of the
1182 ;; `printf' and `file' commands as a pseudo marker which we can
1183 ;; recognize next time through the marker-filter. This would be like
1184 ;; the gdb marker but you can't get the file name without a newline...
1185 ;; Note that gud-remove won't work since Irix dbx expects a breakpoint
1186 ;; number rather than a line number etc. Maybe this could be made to
1187 ;; work by listing all the breakpoints and picking the one(s) with the
1188 ;; correct line number, but life's too short.
1189 ;; d.love@dl.ac.uk (Dave Love) can be blamed for this
1191 (defvar gud-irix-p nil
1192 "Non-nil to assume the interface appropriate for IRIX dbx.
1193 This works in IRIX 4, 5 and 6, but `gud-dbx-use-stopformat-p' provides
1194 a better solution in 6.1 upwards.")
1195 (defvar gud-dbx-use-stopformat-p nil
1196 "Non-nil to use the dbx feature present at least from Irix 6.1
1197 whereby $stopformat=1 produces an output format compatible with
1198 `gud-dbx-marker-filter'.")
1199 ;; [Irix dbx seemed to be a moving target. The dbx output changed
1200 ;; subtly sometime between OS v4.0.5 and v5.2 so that, for instance,
1201 ;; the output from `up' is no longer spotted by gud (and it's probably
1202 ;; not distinctive enough to try to match it -- use C-<, C->
1203 ;; exclusively) . For 5.3 and 6.0, the $curline variable changed to
1204 ;; `long long'(why?!), so the printf stuff needed changing. The line
1205 ;; number was cast to `long' as a compromise between the new `long
1206 ;; long' and the original `int'. This was reported not to work in 6.2,
1207 ;; so it's changed back to int -- don't make your sources too long.
1208 ;; From Irix6.1 (but not 6.0?) dbx supported an undocumented feature
1209 ;; whereby `set $stopformat=1' reportedly produces output compatible
1210 ;; with `gud-dbx-marker-filter', which we prefer.
1212 ;; The process filter is also somewhat
1213 ;; unreliable, sometimes not spotting the markers; I don't know
1214 ;; whether there's anything that can be done about that.]
1216 ;; this filter is influenced by the xdb one rather than the gdb one
1217 (defun gud-irixdbx-marker-filter (string)
1218 (let (result (case-fold-search nil))
1219 (if (or (string-match comint-prompt-regexp string)
1220 (string-match ".*\012" string))
1221 (setq result (concat gud-marker-acc string)
1222 gud-marker-acc "")
1223 (setq gud-marker-acc (concat gud-marker-acc string)))
1224 (if result
1225 (cond
1226 ;; look for breakpoint or signal indication e.g.:
1227 ;; [2] Process 1267 (pplot) stopped at [params:338 ,0x400ec0]
1228 ;; Process 1281 (pplot) stopped at [params:339 ,0x400ec8]
1229 ;; Process 1270 (pplot) Floating point exception [._read._read:16 ,0x452188]
1230 ((string-match
1231 "^\\(\\[[0-9]+] \\)?Process +[0-9]+ ([^)]*) [^[]+\\[[^]\n]*]\n"
1232 result)
1233 ;; prod dbx into printing out the line number and file
1234 ;; name in a form we can grok as below
1235 (process-send-string (get-buffer-process gud-comint-buffer)
1236 "printf \"\032\032%1d:\",(int)$curline;file\n"))
1237 ;; look for result of, say, "up" e.g.:
1238 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c]
1239 ;; (this will also catch one of the lines printed by "where")
1240 ((string-match
1241 "^[^ ][^[]*\\[\"\\([^\"]+\\)\":\\([0-9]+\\), [^]]+]\n"
1242 result)
1243 (let ((file (match-string 1 result)))
1244 (if (file-exists-p file)
1245 (setq gud-last-frame
1246 (cons (match-string 1 result)
1247 (string-to-number (match-string 2 result))))))
1248 result)
1249 ((string-match ; kluged-up marker as above
1250 "\032\032\\([0-9]*\\):\\(.*\\)\n" result)
1251 (let ((file (gud-file-name (match-string 2 result))))
1252 (if (and file (file-exists-p file))
1253 (setq gud-last-frame
1254 (cons file
1255 (string-to-number (match-string 1 result))))))
1256 (setq result (substring result 0 (match-beginning 0))))))
1257 (or result "")))
1259 ;; There are a couple of differences between DG's dbx output and normal
1260 ;; dbx output which make it nontrivial to integrate this into the
1261 ;; standard dbx-marker-filter (mainly, there are a different number of
1262 ;; backreferences). The markers look like:
1264 ;; (0) Stopped at line 10, routine main(argc=1, argv=0xeffff0e0), file t.c
1266 ;; from breakpoints (the `(0)' there isn't constant, it's the breakpoint
1267 ;; number), and
1269 ;; Stopped at line 13, routine main(argc=1, argv=0xeffff0e0), file t.c
1271 ;; from signals and
1273 ;; Frame 21, line 974, routine command_loop(), file keyboard.c
1275 ;; from up/down/where.
1277 (defun gud-dguxdbx-marker-filter (string)
1278 (setq gud-marker-acc (if gud-marker-acc
1279 (concat gud-marker-acc string)
1280 string))
1281 (let ((re (concat "^\\(\\(([0-9]+) \\)?Stopped at\\|Frame [0-9]+,\\)"
1282 " line \\([0-9]+\\), routine .*, file \\([^ \t\n]+\\)"))
1283 start)
1284 ;; Process all complete markers in this chunk.
1285 (while (string-match re gud-marker-acc start)
1286 (setq gud-last-frame
1287 (cons (match-string 4 gud-marker-acc)
1288 (string-to-number (match-string 3 gud-marker-acc)))
1289 start (match-end 0)))
1291 ;; Search for the last incomplete line in this chunk
1292 (while (string-match "\n" gud-marker-acc start)
1293 (setq start (match-end 0)))
1295 ;; If the incomplete line APPEARS to begin with another marker, keep it
1296 ;; in the accumulator. Otherwise, clear the accumulator to avoid an
1297 ;; unnecessary concat during the next call.
1298 (setq gud-marker-acc
1299 (if (string-match "Stopped\\|Frame" gud-marker-acc start)
1300 (substring gud-marker-acc (match-beginning 0))
1301 nil)))
1302 string)
1304 ;;;###autoload
1305 (defun dbx (command-line)
1306 "Run dbx on program FILE in buffer *gud-FILE*.
1307 The directory containing FILE becomes the initial working directory
1308 and source-file directory for your debugger."
1309 (interactive (list (gud-query-cmdline 'dbx)))
1311 (cond
1312 (gud-mips-p
1313 (gud-common-init command-line nil 'gud-mipsdbx-marker-filter))
1314 (gud-irix-p
1315 (gud-common-init command-line 'gud-dbx-massage-args
1316 'gud-irixdbx-marker-filter))
1318 (gud-common-init command-line 'gud-dbx-massage-args
1319 'gud-dbx-marker-filter)))
1321 (set (make-local-variable 'gud-minor-mode) 'dbx)
1323 (cond
1324 (gud-mips-p
1325 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1326 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1327 (gud-def gud-break "stop at \"%f\":%l"
1328 "\C-b" "Set breakpoint at current line.")
1329 (gud-def gud-finish "return" "\C-f" "Finish executing current function."))
1330 (gud-irix-p
1331 (gud-def gud-break "stop at \"%d%f\":%l"
1332 "\C-b" "Set breakpoint at current line.")
1333 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")
1334 (gud-def gud-up "up %p; printf \"\032\032%1d:\",(int)$curline;file\n"
1335 "<" "Up (numeric arg) stack frames.")
1336 (gud-def gud-down "down %p; printf \"\032\032%1d:\",(int)$curline;file\n"
1337 ">" "Down (numeric arg) stack frames.")
1338 ;; Make dbx give out the source location info that we need.
1339 (process-send-string (get-buffer-process gud-comint-buffer)
1340 "printf \"\032\032%1d:\",(int)$curline;file\n"))
1342 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1343 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1344 (gud-def gud-break "file \"%d%f\"\nstop at %l"
1345 "\C-b" "Set breakpoint at current line.")
1346 (if gud-dbx-use-stopformat-p
1347 (process-send-string (get-buffer-process gud-comint-buffer)
1348 "set $stopformat=1\n"))))
1350 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
1351 (gud-def gud-step "step %p" "\C-s" "Step one line with display.")
1352 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
1353 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
1354 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
1355 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
1356 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
1357 (gud-def gud-run "run" nil "Run the program.")
1359 (setq comint-prompt-regexp "^[^)\n]*dbx) *")
1360 (setq paragraph-start comint-prompt-regexp)
1361 (run-hooks 'dbx-mode-hook)
1364 ;; ======================================================================
1365 ;; xdb (HP PA-RISC debugger) functions
1367 ;; History of argument lists passed to xdb.
1368 (defvar gud-xdb-history nil)
1370 (defcustom gud-xdb-directories nil
1371 "A list of directories that xdb should search for source code.
1372 If nil, only source files in the program directory
1373 will be known to xdb.
1375 The file names should be absolute, or relative to the directory
1376 containing the executable being debugged."
1377 :type '(choice (const :tag "Current Directory" nil)
1378 (repeat :value ("")
1379 directory))
1380 :group 'gud)
1382 (defun gud-xdb-massage-args (_file args)
1383 (nconc (let ((directories gud-xdb-directories)
1384 (result nil))
1385 (while directories
1386 (setq result (cons (car directories) (cons "-d" result)))
1387 (setq directories (cdr directories)))
1388 (nreverse result))
1389 args))
1391 ;; xdb does not print the lines all at once, so we have to accumulate them
1392 (defun gud-xdb-marker-filter (string)
1393 (let (result)
1394 (if (or (string-match comint-prompt-regexp string)
1395 (string-match ".*\012" string))
1396 (setq result (concat gud-marker-acc string)
1397 gud-marker-acc "")
1398 (setq gud-marker-acc (concat gud-marker-acc string)))
1399 (if result
1400 (if (or (string-match "\\([^\n \t:]+\\): [^:]+: \\([0-9]+\\)[: ]"
1401 result)
1402 (string-match "[^: \t]+:[ \t]+\\([^:]+\\): [^:]+: \\([0-9]+\\):"
1403 result))
1404 (let ((line (string-to-number (match-string 2 result)))
1405 (file (gud-file-name (match-string 1 result))))
1406 (if file
1407 (setq gud-last-frame (cons file line))))))
1408 (or result "")))
1410 ;;;###autoload
1411 (defun xdb (command-line)
1412 "Run xdb on program FILE in buffer *gud-FILE*.
1413 The directory containing FILE becomes the initial working directory
1414 and source-file directory for your debugger.
1416 You can set the variable `gud-xdb-directories' to a list of program source
1417 directories if your program contains sources from more than one directory."
1418 (interactive (list (gud-query-cmdline 'xdb)))
1420 (gud-common-init command-line 'gud-xdb-massage-args
1421 'gud-xdb-marker-filter)
1422 (set (make-local-variable 'gud-minor-mode) 'xdb)
1424 (gud-def gud-break "b %f:%l" "\C-b" "Set breakpoint at current line.")
1425 (gud-def gud-tbreak "b %f:%l\\t" "\C-t"
1426 "Set temporary breakpoint at current line.")
1427 (gud-def gud-remove "db" "\C-d" "Remove breakpoint at current line")
1428 (gud-def gud-step "s %p" "\C-s" "Step one line with display.")
1429 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1430 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1431 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1432 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1433 (gud-def gud-finish "bu\\t" "\C-f" "Finish executing current function.")
1434 (gud-def gud-print "p %e" "\C-p" "Evaluate C expression at point.")
1436 (setq comint-prompt-regexp "^>")
1437 (setq paragraph-start comint-prompt-regexp)
1438 (run-hooks 'xdb-mode-hook))
1440 ;; ======================================================================
1441 ;; perldb functions
1443 ;; History of argument lists passed to perldb.
1444 (defvar gud-perldb-history nil)
1446 (defun gud-perldb-massage-args (_file args)
1447 "Convert a command line as would be typed normally to run perldb
1448 into one that invokes an Emacs-enabled debugging session.
1449 \"-emacs\" is inserted where it will be $ARGV[0] (see perl5db.pl)."
1450 ;; FIXME: what if the command is `make perldb' and doesn't accept those extra
1451 ;; arguments ?
1452 (let* ((new-args nil)
1453 (seen-e nil)
1454 (shift (lambda () (push (pop args) new-args))))
1456 ;; Pass all switches and -e scripts through.
1457 (while (and args
1458 (string-match "^-" (car args))
1459 (not (equal "-" (car args)))
1460 (not (equal "--" (car args))))
1461 (when (equal "-e" (car args))
1462 ;; -e goes with the next arg, so shift one extra.
1463 (or (funcall shift)
1464 ;; -e as the last arg is an error in Perl.
1465 (error "No code specified for -e"))
1466 (setq seen-e t))
1467 (funcall shift))
1469 (unless seen-e
1470 (if (or (not args)
1471 (string-match "^-" (car args)))
1472 (error "Can't use stdin as the script to debug"))
1473 ;; This is the program name.
1474 (funcall shift))
1476 ;; If -e specified, make sure there is a -- so -emacs is not taken
1477 ;; as -e macs.
1478 (if (and args (equal "--" (car args)))
1479 (funcall shift)
1480 (and seen-e (push "--" new-args)))
1482 (push "-emacs" new-args)
1483 (while args
1484 (funcall shift))
1486 (nreverse new-args)))
1488 ;; There's no guarantee that Emacs will hand the filter the entire
1489 ;; marker at once; it could be broken up across several strings. We
1490 ;; might even receive a big chunk with several markers in it. If we
1491 ;; receive a chunk of text which looks like it might contain the
1492 ;; beginning of a marker, we save it here between calls to the
1493 ;; filter.
1494 (defun gud-perldb-marker-filter (string)
1495 (setq gud-marker-acc (concat gud-marker-acc string))
1496 (let ((output ""))
1498 ;; Process all the complete markers in this chunk.
1500 ;; Here I match the string coming out of perldb.
1501 ;; The strings can look like any of
1503 ;; "\032\032/tmp/tst.pl:6:0\n"
1504 ;; "\032\032(eval 5)[/tmp/tst.pl:6]:3:0\n"
1505 ;; "\032\032(eval 17)[Basic/Core/Core.pm.PL (i.e. PDL::Core.pm):2931]:1:0\n"
1507 ;; From those I want the filename and the line number. First I look for
1508 ;; the eval case. If that doesn't match, I look for the "normal" case.
1509 (while
1510 (string-match
1511 (eval-when-compile
1512 (let ((file-re "\\(?:[a-zA-Z]:\\)?[^:\n]*"))
1513 (concat "\032\032\\(?:"
1514 (concat
1515 "(eval [0-9]+)\\["
1516 "\\(" file-re "\\)" ; Filename.
1517 "\\(?: (i\\.e\\. [^)]*)\\)?"
1518 ":\\([0-9]*\\)\\]") ; Line number.
1519 "\\|"
1520 (concat
1521 "\\(?1:" file-re "\\)" ; Filename.
1522 ":\\(?2:[0-9]*\\)") ; Line number.
1523 "\\):.*\n")))
1524 gud-marker-acc)
1525 (setq
1527 ;; Extract the frame position from the marker.
1528 gud-last-frame
1529 (cons (match-string 1 gud-marker-acc)
1530 (string-to-number (match-string 2 gud-marker-acc)))
1532 ;; Append any text before the marker to the output we're going
1533 ;; to return - we don't include the marker in this text.
1534 output (concat output
1535 (substring gud-marker-acc 0 (match-beginning 0)))
1537 ;; Set the accumulator to the remaining text.
1538 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1540 ;; Does the remaining text look like it might end with the
1541 ;; beginning of another marker? If it does, then keep it in
1542 ;; gud-marker-acc until we receive the rest of it. Since we
1543 ;; know the full marker regexp above failed, it's pretty simple to
1544 ;; test for marker starts.
1545 (if (string-match "\032.*\\'" gud-marker-acc)
1546 (progn
1547 ;; Everything before the potential marker start can be output.
1548 (setq output (concat output (substring gud-marker-acc
1549 0 (match-beginning 0))))
1551 ;; Everything after, we save, to combine with later input.
1552 (setq gud-marker-acc
1553 (substring gud-marker-acc (match-beginning 0))))
1555 (setq output (concat output gud-marker-acc)
1556 gud-marker-acc ""))
1558 output))
1560 (defcustom gud-perldb-command-name "perl -d"
1561 "Default command to execute a Perl script under debugger."
1562 :type 'string
1563 :group 'gud)
1565 ;;;###autoload
1566 (defun perldb (command-line)
1567 "Run perldb on program FILE in buffer *gud-FILE*.
1568 The directory containing FILE becomes the initial working directory
1569 and source-file directory for your debugger."
1570 (interactive
1571 (list (gud-query-cmdline 'perldb
1572 (concat (or (buffer-file-name) "-e 0") " "))))
1574 (gud-common-init command-line 'gud-perldb-massage-args
1575 'gud-perldb-marker-filter)
1576 (set (make-local-variable 'gud-minor-mode) 'perldb)
1578 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.")
1579 (gud-def gud-remove "B %l" "\C-d" "Remove breakpoint at current line")
1580 (gud-def gud-step "s" "\C-s" "Step one source line with display.")
1581 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).")
1582 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1583 ; (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
1584 ; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
1585 ; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
1586 (gud-def gud-print "p %e" "\C-p" "Evaluate perl expression at point.")
1587 (gud-def gud-until "c %l" "\C-u" "Continue to current line.")
1590 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ")
1591 (setq paragraph-start comint-prompt-regexp)
1592 (run-hooks 'perldb-mode-hook))
1594 ;; ======================================================================
1595 ;; pdb (Python debugger) functions
1597 ;; History of argument lists passed to pdb.
1598 (defvar gud-pdb-history nil)
1600 ;; Last group is for return value, e.g. "> test.py(2)foo()->None"
1601 ;; Either file or function name may be omitted: "> <string>(0)?()"
1602 (defvar gud-pdb-marker-regexp
1603 "^> \\([-a-zA-Z0-9_/.:\\]*\\|<string>\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|<module>\\)()\\(->[^\n\r]*\\)?[\n\r]")
1605 (defvar gud-pdb-marker-regexp-file-group 1)
1606 (defvar gud-pdb-marker-regexp-line-group 2)
1607 (defvar gud-pdb-marker-regexp-fnname-group 3)
1609 (defvar gud-pdb-marker-regexp-start "^> ")
1611 ;; There's no guarantee that Emacs will hand the filter the entire
1612 ;; marker at once; it could be broken up across several strings. We
1613 ;; might even receive a big chunk with several markers in it. If we
1614 ;; receive a chunk of text which looks like it might contain the
1615 ;; beginning of a marker, we save it here between calls to the
1616 ;; filter.
1617 (defun gud-pdb-marker-filter (string)
1618 (setq gud-marker-acc (concat gud-marker-acc string))
1619 (let ((output ""))
1621 ;; Process all the complete markers in this chunk.
1622 (while (string-match gud-pdb-marker-regexp gud-marker-acc)
1623 (setq
1625 ;; Extract the frame position from the marker.
1626 gud-last-frame
1627 (let ((file (match-string gud-pdb-marker-regexp-file-group
1628 gud-marker-acc))
1629 (line (string-to-number
1630 (match-string gud-pdb-marker-regexp-line-group
1631 gud-marker-acc))))
1632 (if (string-equal file "<string>")
1633 gud-last-frame
1634 (cons file line)))
1636 ;; Output everything instead of the below
1637 output (concat output (substring gud-marker-acc 0 (match-end 0)))
1638 ;; ;; Append any text before the marker to the output we're going
1639 ;; ;; to return - we don't include the marker in this text.
1640 ;; output (concat output
1641 ;; (substring gud-marker-acc 0 (match-beginning 0)))
1643 ;; Set the accumulator to the remaining text.
1644 gud-marker-acc (substring gud-marker-acc (match-end 0))))
1646 ;; Does the remaining text look like it might end with the
1647 ;; beginning of another marker? If it does, then keep it in
1648 ;; gud-marker-acc until we receive the rest of it. Since we
1649 ;; know the full marker regexp above failed, it's pretty simple to
1650 ;; test for marker starts.
1651 (if (string-match gud-pdb-marker-regexp-start gud-marker-acc)
1652 (progn
1653 ;; Everything before the potential marker start can be output.
1654 (setq output (concat output (substring gud-marker-acc
1655 0 (match-beginning 0))))
1657 ;; Everything after, we save, to combine with later input.
1658 (setq gud-marker-acc
1659 (substring gud-marker-acc (match-beginning 0))))
1661 (setq output (concat output gud-marker-acc)
1662 gud-marker-acc ""))
1664 output))
1666 (defcustom gud-pdb-command-name "pdb"
1667 "File name for executing the Python debugger.
1668 This should be an executable on your path, or an absolute file name."
1669 :type 'string
1670 :group 'gud)
1672 ;;;###autoload
1673 (defun pdb (command-line)
1674 "Run pdb on program FILE in buffer `*gud-FILE*'.
1675 The directory containing FILE becomes the initial working directory
1676 and source-file directory for your debugger."
1677 (interactive
1678 (list (gud-query-cmdline 'pdb)))
1680 (gud-common-init command-line nil 'gud-pdb-marker-filter)
1681 (set (make-local-variable 'gud-minor-mode) 'pdb)
1683 (gud-def gud-break "break %d%f:%l" "\C-b" "Set breakpoint at current line.")
1684 (gud-def gud-remove "clear %d%f:%l" "\C-d" "Remove breakpoint at current line")
1685 (gud-def gud-step "step" "\C-s" "Step one source line with display.")
1686 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
1687 (gud-def gud-cont "continue" "\C-r" "Continue with display.")
1688 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")
1689 (gud-def gud-up "up" "<" "Up one stack frame.")
1690 (gud-def gud-down "down" ">" "Down one stack frame.")
1691 (gud-def gud-print "p %e" "\C-p" "Evaluate Python expression at point.")
1692 ;; Is this right?
1693 (gud-def gud-statement "! %e" "\C-e" "Execute Python statement at point.")
1695 ;; (setq comint-prompt-regexp "^(.*pdb[+]?) *")
1696 (setq comint-prompt-regexp "^(Pdb) *")
1697 (setq paragraph-start comint-prompt-regexp)
1698 (run-hooks 'pdb-mode-hook))
1700 ;; ======================================================================
1701 ;; Guile REPL (guiler) functions
1703 ;; History of argument lists passed to guiler.
1704 (defvar gud-guiler-history nil)
1706 (defvar gud-guiler-lastfile nil)
1708 (defun gud-guiler-marker-filter (string)
1709 (setq gud-marker-acc (if gud-marker-acc (concat gud-marker-acc string) string))
1711 (let ((start 0))
1712 (while
1713 (cond
1714 ((string-match "^In \\(.*\\):" gud-marker-acc start)
1715 (setq gud-guiler-lastfile (match-string 1 gud-marker-acc)))
1716 ((string-match "^\\([^:\n]+\\):\\([0-9]+\\):\\([0-9]+\\):[^\n]*"
1717 gud-marker-acc start)
1718 (setq gud-guiler-lastfile (match-string 1 gud-marker-acc))
1719 (setq gud-last-frame
1720 (cons gud-guiler-lastfile
1721 (string-to-number (match-string 2 gud-marker-acc)))))
1722 ((string-match "^[ ]*\\([0-9]+\\):\\([0-9]+\\) [^\n]*"
1723 gud-marker-acc start)
1724 (if gud-guiler-lastfile
1725 (setq gud-last-frame
1726 (cons gud-guiler-lastfile
1727 (string-to-number (match-string 1 gud-marker-acc))))))
1728 ((string-match comint-prompt-regexp gud-marker-acc start) t)
1729 ((string= (substring gud-marker-acc start) "") nil)
1730 (t nil))
1731 (setq start (match-end 0)))
1733 ;; Search for the last incomplete line in this chunk
1734 (while (string-match "\n" gud-marker-acc start)
1735 (setq start (match-end 0)))
1737 ;; If we have an incomplete line, store it in gud-marker-acc.
1738 (setq gud-marker-acc (substring gud-marker-acc (or start 0))))
1739 string)
1742 (defcustom gud-guiler-command-name "guile"
1743 "File name for executing the Guile debugger.
1744 This should be an executable on your path, or an absolute file name."
1745 :version "25.1"
1746 :type 'string
1747 :group 'gud)
1749 ;;;###autoload
1750 (defun guiler (command-line)
1751 "Run guiler on program FILE in buffer `*gud-FILE*'.
1752 The directory containing FILE becomes the initial working directory
1753 and source-file directory for your debugger."
1754 (interactive
1755 (list (gud-query-cmdline 'guiler)))
1757 (gud-common-init command-line nil 'gud-guiler-marker-filter)
1758 (setq-local gud-minor-mode 'guiler)
1760 ;; FIXME: absolute file-names are not grokked yet by Guile's ,break-at-source
1761 ;; and relative file names only when relative to %load-path.
1762 ;; (gud-def gud-break ",break-at-source %d%f %l" "\C-b" "Set breakpoint at current line.")
1763 (gud-def gud-break ",break-at-source %f %l" "\C-b" "Set breakpoint at current line.")
1764 ;; FIXME: remove breakpoint with file-line not yet supported by Guile
1765 ;; (gud-def gud-remove ",delete ---> %d%f:%l" "\C-d" "Remove breakpoint at current line")
1766 (gud-def gud-step ",step" "\C-s" "Step one source line with display.")
1767 (gud-def gud-next ",next" "\C-n" "Step one line (skip functions).")
1768 ;; (gud-def gud-cont "continue" "\C-r" "Continue with display.")
1769 (gud-def gud-finish ",finish" "\C-f" "Finish executing current function.")
1770 (gud-def gud-up ",up" "<" "Up one stack frame.")
1771 (gud-def gud-down ",down" ">" "Down one stack frame.")
1772 (gud-def gud-print "%e" "\C-p" "Evaluate Guile expression at point.")
1774 (setq comint-prompt-regexp "^scheme@([^>]+> ")
1775 (setq paragraph-start comint-prompt-regexp)
1776 (run-hooks 'guiler-mode-hook))
1778 ;; ======================================================================
1780 ;; JDB support.
1782 ;; AUTHOR: Derek Davies <ddavies@world.std.com>
1783 ;; Zoltan Kemenczy <zoltan@ieee.org;zkemenczy@rim.net>
1785 ;; CREATED: Sun Feb 22 10:46:38 1998 Derek Davies.
1786 ;; UPDATED: Nov 11, 2001 Zoltan Kemenczy
1787 ;; Dec 10, 2002 Zoltan Kemenczy - added nested class support
1789 ;; INVOCATION NOTES:
1791 ;; You invoke jdb-mode with:
1793 ;; M-x jdb <enter>
1795 ;; It responds with:
1797 ;; Run jdb (like this): jdb
1799 ;; type any jdb switches followed by the name of the class you'd like to debug.
1800 ;; Supply a fully qualified classname (these don't have the ".class" extension)
1801 ;; for the name of the class to debug (e.g. "COM.the-kind.ddavies.CoolClass").
1802 ;; See the known problems section below for restrictions when specifying jdb
1803 ;; command line switches (search forward for '-classpath').
1805 ;; You should see something like the following:
1807 ;; Current directory is ~/src/java/hello/
1808 ;; Initializing jdb...
1809 ;; 0xed2f6628:class(hello)
1810 ;; >
1812 ;; To set an initial breakpoint try:
1814 ;; > stop in hello.main
1815 ;; Breakpoint set in hello.main
1816 ;; >
1818 ;; To execute the program type:
1820 ;; > run
1821 ;; run hello
1823 ;; Breakpoint hit: running ...
1824 ;; hello.main (hello:12)
1826 ;; Type M-n to step over the current line and M-s to step into it. That,
1827 ;; along with the JDB 'help' command should get you started. The 'quit'
1828 ;; JDB command will get out out of the debugger. There is some truly
1829 ;; pathetic JDB documentation available at:
1831 ;; http://java.sun.com/products/jdk/1.1/debugging/
1833 ;; KNOWN PROBLEMS AND FIXME's:
1835 ;; Not sure what happens with inner classes ... haven't tried them.
1837 ;; Does not grok UNICODE id's. Only ASCII id's are supported.
1839 ;; You must not put whitespace between "-classpath" and the path to
1840 ;; search for java classes even though it is required when invoking jdb
1841 ;; from the command line. See gud-jdb-massage-args for details.
1842 ;; The same applies for "-sourcepath".
1844 ;; Note: The following applies only if `gud-jdb-use-classpath' is nil;
1845 ;; refer to the documentation of `gud-jdb-use-classpath' and
1846 ;; `gud-jdb-classpath',`gud-jdb-sourcepath' variables for information
1847 ;; on using the classpath for locating java source files.
1849 ;; If any of the source files in the directories listed in
1850 ;; gud-jdb-directories won't parse you'll have problems. Make sure
1851 ;; every file ending in ".java" in these directories parses without error.
1853 ;; All the .java files in the directories in gud-jdb-directories are
1854 ;; syntactically analyzed each time gud jdb is invoked. It would be
1855 ;; nice to keep as much information as possible between runs. It would
1856 ;; be really nice to analyze the files only as necessary (when the
1857 ;; source needs to be displayed.) I'm not sure to what extent the former
1858 ;; can be accomplished and I'm not sure the latter can be done at all
1859 ;; since I don't know of any general way to tell which .class files are
1860 ;; defined by which .java file without analyzing all the .java files.
1861 ;; If anyone knows why JavaSoft didn't put the source file names in
1862 ;; debuggable .class files please clue me in so I find something else
1863 ;; to be spiteful and bitter about.
1865 ;; ======================================================================
1866 ;; gud jdb variables and functions
1868 (defcustom gud-jdb-command-name "jdb"
1869 "Command that executes the Java debugger."
1870 :type 'string
1871 :group 'gud)
1873 (defcustom gud-jdb-use-classpath t
1874 "If non-nil, search for Java source files in classpath directories.
1875 The list of directories to search is the value of `gud-jdb-classpath'.
1876 The file pathname is obtained by converting the fully qualified
1877 class information output by jdb to a relative pathname and appending
1878 it to `gud-jdb-classpath' element by element until a match is found.
1880 This method has a significant jdb startup time reduction advantage
1881 since it does not require the scanning of all `gud-jdb-directories'
1882 and parsing all Java files for class information.
1884 Set to nil to use `gud-jdb-directories' to scan java sources for
1885 class information on jdb startup (original method)."
1886 :type 'boolean
1887 :group 'gud)
1889 (defvar gud-jdb-classpath nil
1890 "Java/jdb classpath directories list.
1891 If `gud-jdb-use-classpath' is non-nil, gud-jdb derives the `gud-jdb-classpath'
1892 list automatically using the following methods in sequence
1893 \(with subsequent successful steps overriding the results of previous
1894 steps):
1896 1) Read the CLASSPATH environment variable,
1897 2) Read any \"-classpath\" argument used to run jdb,
1898 or detected in jdb output (e.g. if jdb is run by a script
1899 that echoes the actual jdb command before starting jdb),
1900 3) Send a \"classpath\" command to jdb and scan jdb output for
1901 classpath information if jdb is invoked with an \"-attach\" (to
1902 an already running VM) argument (This case typically does not
1903 have a \"-classpath\" command line argument - that is provided
1904 to the VM when it is started).
1906 Note that method 3 cannot be used with oldjdb (or Java 1 jdb) since
1907 those debuggers do not support the classpath command. Use 1) or 2).")
1909 (defvar gud-jdb-sourcepath nil
1910 "Directory list provided by an (optional) \"-sourcepath\" option to jdb.
1911 This list is prepended to `gud-jdb-classpath' to form the complete
1912 list of directories searched for source files.")
1914 (defvar gud-marker-acc-max-length 4000
1915 "Maximum number of debugger output characters to keep.
1916 This variable limits the size of `gud-marker-acc' which holds
1917 the most recent debugger output history while searching for
1918 source file information.")
1920 (defvar gud-jdb-history nil
1921 "History of argument lists passed to jdb.")
1924 ;; List of Java source file directories.
1925 (defvar gud-jdb-directories (list ".")
1926 "A list of directories that gud jdb should search for source code.
1927 The file names should be absolute, or relative to the current
1928 directory.
1930 The set of .java files residing in the directories listed are
1931 syntactically analyzed to determine the classes they define and the
1932 packages in which these classes belong. In this way gud jdb maps the
1933 package-qualified class names output by the jdb debugger to the source
1934 file from which the class originated. This allows gud mode to keep
1935 the source code display in sync with the debugging session.")
1937 (defvar gud-jdb-source-files nil
1938 "List of the java source files for this debugging session.")
1940 ;; Association list of fully qualified class names (package + class name)
1941 ;; and their source files.
1942 (defvar gud-jdb-class-source-alist nil
1943 "Association list of fully qualified class names and source files.")
1945 ;; This is used to hold a source file during analysis.
1946 (defvar gud-jdb-analysis-buffer nil)
1948 (defvar gud-jdb-classpath-string nil
1949 "Holds temporary classpath values.")
1951 (defun gud-jdb-build-source-files-list (path extn)
1952 "Return a list of java source files (absolute paths).
1953 PATH gives the directories in which to search for files with
1954 extension EXTN. Normally EXTN is given as the regular expression
1955 \"\\.java$\" ."
1956 (mapcan (lambda (d)
1957 (when (file-directory-p d)
1958 (directory-files d t extn nil)))
1959 path))
1961 ;; Move point past whitespace.
1962 (defun gud-jdb-skip-whitespace ()
1963 (skip-chars-forward " \n\r\t\014"))
1965 ;; Move point past a "// <eol>" type of comment.
1966 (defun gud-jdb-skip-single-line-comment ()
1967 (end-of-line))
1969 ;; Move point past a "/* */" or "/** */" type of comment.
1970 (defun gud-jdb-skip-traditional-or-documentation-comment ()
1971 (forward-char 2)
1972 (catch 'break
1973 (while (not (eobp))
1974 (if (eq (following-char) ?*)
1975 (progn
1976 (forward-char)
1977 (if (not (eobp))
1978 (if (eq (following-char) ?/)
1979 (progn
1980 (forward-char)
1981 (throw 'break nil)))))
1982 (forward-char)))))
1984 ;; Move point past any number of consecutive whitespace chars and/or comments.
1985 (defun gud-jdb-skip-whitespace-and-comments ()
1986 (gud-jdb-skip-whitespace)
1987 (catch 'done
1988 (while t
1989 (cond
1990 ((looking-at "//")
1991 (gud-jdb-skip-single-line-comment)
1992 (gud-jdb-skip-whitespace))
1993 ((looking-at "/\\*")
1994 (gud-jdb-skip-traditional-or-documentation-comment)
1995 (gud-jdb-skip-whitespace))
1996 (t (throw 'done nil))))))
1998 ;; Move point past things that are id-like. The intent is to skip regular
1999 ;; id's, such as class or interface names as well as package and interface
2000 ;; names.
2001 (defun gud-jdb-skip-id-ish-thing ()
2002 (skip-chars-forward "^ /\n\r\t\014,;{"))
2004 ;; Move point past a string literal.
2005 (defun gud-jdb-skip-string-literal ()
2006 (forward-char)
2007 (while (not (cond
2008 ((eq (following-char) ?\\)
2009 (forward-char))
2010 ((eq (following-char) ?\042))))
2011 (forward-char))
2012 (forward-char))
2014 ;; Move point past a character literal.
2015 (defun gud-jdb-skip-character-literal ()
2016 (forward-char)
2017 (while
2018 (progn
2019 (if (eq (following-char) ?\\)
2020 (forward-char 2))
2021 (not (eq (following-char) ?\')))
2022 (forward-char))
2023 (forward-char))
2025 ;; Move point past the following block. There may be (legal) cruft before
2026 ;; the block's opening brace. There must be a block or it's the end of life
2027 ;; in petticoat junction.
2028 (defun gud-jdb-skip-block ()
2030 ;; Find the beginning of the block.
2031 (while
2032 (not (eq (following-char) ?{))
2034 ;; Skip any constructs that can harbor literal block delimiter
2035 ;; characters and/or the delimiters for the constructs themselves.
2036 (cond
2037 ((looking-at "//")
2038 (gud-jdb-skip-single-line-comment))
2039 ((looking-at "/\\*")
2040 (gud-jdb-skip-traditional-or-documentation-comment))
2041 ((eq (following-char) ?\042)
2042 (gud-jdb-skip-string-literal))
2043 ((eq (following-char) ?\')
2044 (gud-jdb-skip-character-literal))
2045 (t (forward-char))))
2047 ;; Now at the beginning of the block.
2048 (forward-char)
2050 ;; Skip over the body of the block as well as the final brace.
2051 (let ((open-level 1))
2052 (while (not (eq open-level 0))
2053 (cond
2054 ((looking-at "//")
2055 (gud-jdb-skip-single-line-comment))
2056 ((looking-at "/\\*")
2057 (gud-jdb-skip-traditional-or-documentation-comment))
2058 ((eq (following-char) ?\042)
2059 (gud-jdb-skip-string-literal))
2060 ((eq (following-char) ?\')
2061 (gud-jdb-skip-character-literal))
2062 ((eq (following-char) ?{)
2063 (setq open-level (+ open-level 1))
2064 (forward-char))
2065 ((eq (following-char) ?})
2066 (setq open-level (- open-level 1))
2067 (forward-char))
2068 (t (forward-char))))))
2070 ;; Find the package and class definitions in Java source file FILE. Assumes
2071 ;; that FILE contains a legal Java program. BUF is a scratch buffer used
2072 ;; to hold the source during analysis.
2073 (defun gud-jdb-analyze-source (buf file)
2074 (let ((l nil))
2075 (set-buffer buf)
2076 (insert-file-contents file nil nil nil t)
2077 (goto-char 0)
2078 (catch 'abort
2079 (let ((p ""))
2080 (while (progn
2081 (gud-jdb-skip-whitespace)
2082 (not (eobp)))
2083 (cond
2085 ;; Any number of semi's following a block is legal. Move point
2086 ;; past them. Note that comments and whitespace may be
2087 ;; interspersed as well.
2088 ((eq (following-char) ?\073)
2089 (forward-char))
2091 ;; Move point past a single line comment.
2092 ((looking-at "//")
2093 (gud-jdb-skip-single-line-comment))
2095 ;; Move point past a traditional or documentation comment.
2096 ((looking-at "/\\*")
2097 (gud-jdb-skip-traditional-or-documentation-comment))
2099 ;; Move point past a package statement, but save the PackageName.
2100 ((looking-at "package")
2101 (forward-char 7)
2102 (gud-jdb-skip-whitespace-and-comments)
2103 (let ((s (point)))
2104 (gud-jdb-skip-id-ish-thing)
2105 (setq p (concat (buffer-substring s (point)) "."))
2106 (gud-jdb-skip-whitespace-and-comments)
2107 (if (eq (following-char) ?\073)
2108 (forward-char))))
2110 ;; Move point past an import statement.
2111 ((looking-at "import")
2112 (forward-char 6)
2113 (gud-jdb-skip-whitespace-and-comments)
2114 (gud-jdb-skip-id-ish-thing)
2115 (gud-jdb-skip-whitespace-and-comments)
2116 (if (eq (following-char) ?\073)
2117 (forward-char)))
2119 ;; Move point past the various kinds of ClassModifiers.
2120 ((looking-at "public")
2121 (forward-char 6))
2122 ((looking-at "abstract")
2123 (forward-char 8))
2124 ((looking-at "final")
2125 (forward-char 5))
2127 ;; Move point past a ClassDeclaration, but save the class
2128 ;; Identifier.
2129 ((looking-at "class")
2130 (forward-char 5)
2131 (gud-jdb-skip-whitespace-and-comments)
2132 (let ((s (point)))
2133 (gud-jdb-skip-id-ish-thing)
2134 (setq
2135 l (nconc l (list (concat p (buffer-substring s (point)))))))
2136 (gud-jdb-skip-block))
2138 ;; Move point past an interface statement.
2139 ((looking-at "interface")
2140 (forward-char 9)
2141 (gud-jdb-skip-block))
2143 ;; Anything else means the input is invalid.
2145 (message "Error parsing file %s." file)
2146 (throw 'abort nil))))))
2149 (defun gud-jdb-build-class-source-alist-for-file (file)
2150 (mapcar
2151 (lambda (c)
2152 (cons c file))
2153 (gud-jdb-analyze-source gud-jdb-analysis-buffer file)))
2155 ;; Return an alist of fully qualified classes and the source files
2156 ;; holding their definitions. SOURCES holds a list of all the source
2157 ;; files to examine.
2158 (defun gud-jdb-build-class-source-alist (sources)
2159 (setq gud-jdb-analysis-buffer (get-buffer-create " *gud-jdb-scratch*"))
2160 (prog1
2161 (apply
2162 'nconc
2163 (mapcar
2164 'gud-jdb-build-class-source-alist-for-file
2165 sources))
2166 (kill-buffer gud-jdb-analysis-buffer)
2167 (setq gud-jdb-analysis-buffer nil)))
2169 ;; Change what was given in the minibuffer to something that can be used to
2170 ;; invoke the debugger.
2171 (defun gud-jdb-massage-args (_file args)
2172 ;; The jdb executable must have whitespace between "-classpath" and
2173 ;; its value while gud-common-init expects all switch values to
2174 ;; follow the switch keyword without intervening whitespace. We
2175 ;; require that when the user enters the "-classpath" switch in the
2176 ;; EMACS minibuffer that they do so without the intervening
2177 ;; whitespace. This function adds it back (it's called after
2178 ;; gud-common-init). There are more switches like this (for
2179 ;; instance "-host" and "-password") but I don't care about them
2180 ;; yet.
2181 (if args
2182 (let (massaged-args user-error)
2184 (while (and args (not user-error))
2185 (cond
2186 ((setq user-error (string-match "-classpath$" (car args))))
2187 ((setq user-error (string-match "-sourcepath$" (car args))))
2188 ((string-match "-classpath\\(.+\\)" (car args))
2189 (setq massaged-args
2190 (append massaged-args
2191 (list "-classpath"
2192 (setq gud-jdb-classpath-string
2193 (match-string 1 (car args)))))))
2194 ((string-match "-sourcepath\\(.+\\)" (car args))
2195 (setq massaged-args
2196 (append massaged-args
2197 (list "-sourcepath"
2198 (setq gud-jdb-sourcepath
2199 (match-string 1 (car args)))))))
2200 (t (setq massaged-args (append massaged-args (list (car args))))))
2201 (setq args (cdr args)))
2203 ;; By this point the current directory is all screwed up. Maybe we
2204 ;; could fix things and re-invoke gud-common-init, but for now I think
2205 ;; issuing the error is good enough.
2206 (if user-error
2207 (progn
2208 (kill-buffer (current-buffer))
2209 (error "Error: Omit whitespace between '-classpath or -sourcepath' and its value")))
2210 massaged-args)))
2212 ;; Search for an association with P, a fully qualified class name, in
2213 ;; gud-jdb-class-source-alist. The association gives the fully
2214 ;; qualified file name of the source file which produced the class.
2215 (defun gud-jdb-find-source-file (p)
2216 (cdr (assoc p gud-jdb-class-source-alist)))
2218 ;; Note: Reset to this value every time a prompt is seen
2219 (defvar gud-jdb-lowest-stack-level 999)
2221 (defun gud-jdb-find-source-using-classpath (p)
2222 "Find source file corresponding to fully qualified class P.
2223 Convert P from jdb's output, converted to a pathname
2224 relative to a classpath directory."
2225 (save-match-data
2226 (let
2227 (;; Replace dots with slashes and append ".java" to generate file
2228 ;; name relative to classpath
2229 (filename
2230 (concat
2231 (mapconcat 'identity
2232 (split-string
2233 ;; Eliminate any subclass references in the class
2234 ;; name string. These start with a "$"
2235 (if (string-match "$.*" p)
2236 (replace-match "" t t p) p)
2237 "\\.") "/")
2238 ".java"))
2239 (cplist (append gud-jdb-sourcepath gud-jdb-classpath))
2240 found-file)
2241 (while (and cplist
2242 (not (setq found-file
2243 (file-readable-p
2244 (concat (car cplist) "/" filename)))))
2245 (setq cplist (cdr cplist)))
2246 (if found-file (concat (car cplist) "/" filename)))))
2248 (defun gud-jdb-find-source (_string)
2249 "Alias for function used to locate source files.
2250 Set to `gud-jdb-find-source-using-classpath' or `gud-jdb-find-source-file'
2251 during jdb initialization depending on the value of
2252 `gud-jdb-use-classpath'."
2253 nil)
2255 (defun gud-jdb-parse-classpath-string (string)
2256 "Parse the classpath list and convert each item to an absolute pathname."
2257 (mapcar (lambda (s) (if (string-match "[/\\]$" s)
2258 (replace-match "" nil nil s) s))
2259 (mapcar 'file-truename
2260 (split-string
2261 string
2262 (concat "[ \t\n\r,\"" path-separator "]+")))))
2264 ;; See commentary for other debugger's marker filters - there you will find
2265 ;; important notes about STRING.
2266 (defun gud-jdb-marker-filter (string)
2268 ;; Build up the accumulator.
2269 (setq gud-marker-acc
2270 (if gud-marker-acc
2271 (concat gud-marker-acc string)
2272 string))
2274 ;; Look for classpath information until gud-jdb-classpath-string is found
2275 ;; (interactive, multiple settings of classpath from jdb
2276 ;; not supported/followed)
2277 (if (and gud-jdb-use-classpath
2278 (not gud-jdb-classpath-string)
2279 (or (string-match "classpath:[ \t[]+\\([^]]+\\)" gud-marker-acc)
2280 (string-match "-classpath[ \t\"]+\\([^ \"]+\\)" gud-marker-acc)))
2281 (setq gud-jdb-classpath
2282 (gud-jdb-parse-classpath-string
2283 (setq gud-jdb-classpath-string
2284 (match-string 1 gud-marker-acc)))))
2286 ;; We process STRING from left to right. Each time through the
2287 ;; following loop we process at most one marker. After we've found a
2288 ;; marker, delete gud-marker-acc up to and including the match
2289 (let (file-found)
2290 ;; Process each complete marker in the input.
2291 (while
2293 ;; Do we see a marker?
2294 (string-match
2295 ;; jdb puts out a string of the following form when it
2296 ;; hits a breakpoint:
2298 ;; <fully-qualified-class><method> (<class>:<line-number>)
2300 ;; <fully-qualified-class>'s are composed of Java ID's
2301 ;; separated by periods. <method> and <class> are
2302 ;; also Java ID's. <method> begins with a period and
2303 ;; may contain less-than and greater-than (constructors,
2304 ;; for instance, are called <init> in the symbol table.)
2305 ;; Java ID's begin with a letter followed by letters
2306 ;; and/or digits. The set of letters includes underscore
2307 ;; and dollar sign.
2309 ;; The first group matches <fully-qualified-class>,
2310 ;; the second group matches <class> and the third group
2311 ;; matches <line-number>. We don't care about using
2312 ;; <method> so we don't "group" it.
2314 ;; FIXME: Java ID's are UNICODE strings, this matches ASCII
2315 ;; ID's only.
2317 ;; The ".," in the last square-bracket are necessary because
2318 ;; of Sun's total disrespect for backwards compatibility in
2319 ;; reported line numbers from jdb - starting in 1.4.0 they
2320 ;; print line numbers using LOCALE, inserting a comma or a
2321 ;; period at the thousands positions (how ingenious!).
2323 "\\(\\[[0-9]+] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \
2324 \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)"
2325 gud-marker-acc)
2327 ;; A good marker is one that:
2328 ;; 1) does not have a "[n] " prefix (not part of a stack backtrace)
2329 ;; 2) does have an "[n] " prefix and n is the lowest prefix seen
2330 ;; since the last prompt
2331 ;; Figure out the line on which to position the debugging arrow.
2332 ;; Return the info as a cons of the form:
2334 ;; (<file-name> . <line-number>) .
2335 (if (if (match-beginning 1)
2336 (let (n)
2337 (setq n (string-to-number (substring
2338 gud-marker-acc
2339 (1+ (match-beginning 1))
2340 (- (match-end 1) 2))))
2341 (if (< n gud-jdb-lowest-stack-level)
2342 (progn (setq gud-jdb-lowest-stack-level n) t)))
2344 (if (setq file-found
2345 (gud-jdb-find-source (match-string 2 gud-marker-acc)))
2346 (setq gud-last-frame
2347 (cons file-found
2348 (string-to-number
2349 (let
2350 ((numstr (match-string 4 gud-marker-acc)))
2351 (if (string-match "[.,]" numstr)
2352 (replace-match "" nil nil numstr)
2353 numstr)))))
2354 (message "Could not find source file.")))
2356 ;; Set the accumulator to the remaining text.
2357 (setq gud-marker-acc (substring gud-marker-acc (match-end 0))))
2359 (if (string-match comint-prompt-regexp gud-marker-acc)
2360 (setq gud-jdb-lowest-stack-level 999)))
2362 ;; Do not allow gud-marker-acc to grow without bound. If the source
2363 ;; file information is not within the last 3/4
2364 ;; gud-marker-acc-max-length characters, well,...
2365 (if (> (length gud-marker-acc) gud-marker-acc-max-length)
2366 (setq gud-marker-acc
2367 (substring gud-marker-acc
2368 (- (/ (* gud-marker-acc-max-length 3) 4)))))
2370 ;; We don't filter any debugger output so just return what we were given.
2371 string)
2373 (defvar gud-jdb-command-name "jdb" "Command that executes the Java debugger.")
2375 ;;;###autoload
2376 (defun jdb (command-line)
2377 "Run jdb with command line COMMAND-LINE in a buffer.
2378 The buffer is named \"*gud*\" if no initial class is given or
2379 \"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\"
2380 switch is given, omit all whitespace between it and its value.
2382 See `gud-jdb-use-classpath' and `gud-jdb-classpath' documentation for
2383 information on how jdb accesses source files. Alternatively (if
2384 `gud-jdb-use-classpath' is nil), see `gud-jdb-directories' for the
2385 original source file access method.
2387 For general information about commands available to control jdb from
2388 gud, see `gud-mode'."
2389 (interactive
2390 (list (gud-query-cmdline 'jdb)))
2391 (setq gud-jdb-classpath nil)
2392 (setq gud-jdb-sourcepath nil)
2394 ;; Set gud-jdb-classpath from the CLASSPATH environment variable,
2395 ;; if CLASSPATH is set.
2396 (setq gud-jdb-classpath-string (or (getenv "CLASSPATH") "."))
2397 (if gud-jdb-classpath-string
2398 (setq gud-jdb-classpath
2399 (gud-jdb-parse-classpath-string gud-jdb-classpath-string)))
2400 (setq gud-jdb-classpath-string nil) ; prepare for next
2402 (gud-common-init command-line 'gud-jdb-massage-args
2403 'gud-jdb-marker-filter)
2404 (set (make-local-variable 'gud-minor-mode) 'jdb)
2406 ;; If a -classpath option was provided, set gud-jdb-classpath
2407 (if gud-jdb-classpath-string
2408 (setq gud-jdb-classpath
2409 (gud-jdb-parse-classpath-string gud-jdb-classpath-string)))
2410 (setq gud-jdb-classpath-string nil) ; prepare for next
2411 ;; If a -sourcepath option was provided, parse it
2412 (if gud-jdb-sourcepath
2413 (setq gud-jdb-sourcepath
2414 (gud-jdb-parse-classpath-string gud-jdb-sourcepath)))
2416 (gud-def gud-break "stop at %c:%l" "\C-b" "Set breakpoint at current line.")
2417 (gud-def gud-remove "clear %c:%l" "\C-d" "Remove breakpoint at current line")
2418 (gud-def gud-step "step" "\C-s" "Step one source line with display.")
2419 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
2420 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
2421 (gud-def gud-finish "step up" "\C-f" "Continue until current method returns.")
2422 (gud-def gud-up "up\C-Mwhere" "<" "Up one stack frame.")
2423 (gud-def gud-down "down\C-Mwhere" ">" "Up one stack frame.")
2424 (gud-def gud-run "run" nil "Run the program.") ;if VM start using jdb
2425 (gud-def gud-print "print %e" "\C-p" "Print value of expression at point.")
2426 (gud-def gud-pstar "dump %e" nil "Print all object information at point.")
2428 (setq comint-prompt-regexp "^> \\|^[^ ]+\\[[0-9]+\\] ")
2429 (setq paragraph-start comint-prompt-regexp)
2430 (run-hooks 'jdb-mode-hook)
2432 (if gud-jdb-use-classpath
2433 ;; Get the classpath information from the debugger
2434 (progn
2435 (if (string-match "-attach" command-line)
2436 (gud-call "classpath"))
2437 (fset 'gud-jdb-find-source
2438 'gud-jdb-find-source-using-classpath))
2440 ;; Else create and bind the class/source association list as well
2441 ;; as the source file list.
2442 (setq gud-jdb-class-source-alist
2443 (gud-jdb-build-class-source-alist
2444 (setq gud-jdb-source-files
2445 (gud-jdb-build-source-files-list gud-jdb-directories
2446 "\\.java$"))))
2447 (fset 'gud-jdb-find-source 'gud-jdb-find-source-file)))
2450 ;; End of debugger-specific information
2454 ;; When we send a command to the debugger via gud-call, it's annoying
2455 ;; to see the command and the new prompt inserted into the debugger's
2456 ;; buffer; we have other ways of knowing the command has completed.
2458 ;; If the buffer looks like this:
2459 ;; --------------------
2460 ;; (gdb) set args foo bar
2461 ;; (gdb) -!-
2462 ;; --------------------
2463 ;; (the -!- marks the location of point), and we type `C-x SPC' in a
2464 ;; source file to set a breakpoint, we want the buffer to end up like
2465 ;; this:
2466 ;; --------------------
2467 ;; (gdb) set args foo bar
2468 ;; Breakpoint 1 at 0x92: file make-docfile.c, line 49.
2469 ;; (gdb) -!-
2470 ;; --------------------
2471 ;; Essentially, the old prompt is deleted, and the command's output
2472 ;; and the new prompt take its place.
2474 ;; Not echoing the command is easy enough; you send it directly using
2475 ;; process-send-string, and it never enters the buffer. However,
2476 ;; getting rid of the old prompt is trickier; you don't want to do it
2477 ;; when you send the command, since that will result in an annoying
2478 ;; flicker as the prompt is deleted, redisplay occurs while Emacs
2479 ;; waits for a response from the debugger, and the new prompt is
2480 ;; inserted. Instead, we'll wait until we actually get some output
2481 ;; from the subprocess before we delete the prompt. If the command
2482 ;; produced no output other than a new prompt, that prompt will most
2483 ;; likely be in the first chunk of output received, so we will delete
2484 ;; the prompt and then replace it with an identical one. If the
2485 ;; command produces output, the prompt is moving anyway, so the
2486 ;; flicker won't be annoying.
2488 ;; So - when we want to delete the prompt upon receipt of the next
2489 ;; chunk of debugger output, we position gud-delete-prompt-marker at
2490 ;; the start of the prompt; the process filter will notice this, and
2491 ;; delete all text between it and the process output marker. If
2492 ;; gud-delete-prompt-marker points nowhere, we leave the current
2493 ;; prompt alone.
2494 (defvar gud-delete-prompt-marker nil)
2497 (put 'gud-mode 'mode-class 'special)
2499 (define-derived-mode gud-mode comint-mode "Debugger"
2500 "Major mode for interacting with an inferior debugger process.
2502 You start it up with one of the commands M-x gdb, M-x sdb, M-x dbx,
2503 M-x perldb, M-x xdb, or M-x jdb. Each entry point finishes by executing a
2504 hook; `gdb-mode-hook', `sdb-mode-hook', `dbx-mode-hook',
2505 `perldb-mode-hook', `xdb-mode-hook', or `jdb-mode-hook' respectively.
2507 After startup, the following commands are available in both the GUD
2508 interaction buffer and any source buffer GUD visits due to a breakpoint stop
2509 or step operation:
2511 \\[gud-break] sets a breakpoint at the current file and line. In the
2512 GUD buffer, the current file and line are those of the last breakpoint or
2513 step. In a source buffer, they are the buffer's file and current line.
2515 \\[gud-remove] removes breakpoints on the current file and line.
2517 \\[gud-refresh] displays in the source window the last line referred to
2518 in the gud buffer.
2520 \\[gud-step], \\[gud-next], and \\[gud-stepi] do a step-one-line,
2521 step-one-line (not entering function calls), and step-one-instruction
2522 and then update the source window with the current file and position.
2523 \\[gud-cont] continues execution.
2525 \\[gud-print] tries to find the largest C lvalue or function-call expression
2526 around point, and sends it to the debugger for value display.
2528 The above commands are common to all supported debuggers except xdb which
2529 does not support stepping instructions.
2531 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break],
2532 except that the breakpoint is temporary; that is, it is removed when
2533 execution stops on it.
2535 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack
2536 frame. \\[gud-down] drops back down through one.
2538 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from
2539 the current function and stops.
2541 All the keystrokes above are accessible in the GUD buffer
2542 with the prefix C-c, and in all buffers through the prefix C-x C-a.
2544 All pre-defined functions for which the concept make sense repeat
2545 themselves the appropriate number of times if you give a prefix
2546 argument.
2548 You may use the `gud-def' macro in the initialization hook to define other
2549 commands.
2551 Other commands for interacting with the debugger process are inherited from
2552 comint mode, which see."
2553 (setq mode-line-process '(":%s"))
2554 (define-key (current-local-map) "\C-c\C-l" 'gud-refresh)
2555 (set (make-local-variable 'gud-last-frame) nil)
2556 (if (boundp 'tool-bar-map) ; not --without-x
2557 (setq-local tool-bar-map gud-tool-bar-map))
2558 (make-local-variable 'comint-prompt-regexp)
2559 ;; Don't put repeated commands in command history many times.
2560 (set (make-local-variable 'comint-input-ignoredups) t)
2561 (make-local-variable 'paragraph-start)
2562 (set (make-local-variable 'gud-delete-prompt-marker) (make-marker))
2563 (add-hook 'kill-buffer-hook 'gud-kill-buffer-hook nil t))
2565 (defcustom gud-chdir-before-run t
2566 "Non-nil if GUD should `cd' to the debugged executable."
2567 :group 'gud
2568 :type 'boolean)
2570 ;; Perform initializations common to all debuggers.
2571 ;; The first arg is the specified command line,
2572 ;; which starts with the program to debug.
2573 ;; The other three args specify the values to use
2574 ;; for local variables in the debugger buffer.
2575 (defun gud-common-init (command-line massage-args marker-filter
2576 &optional find-file)
2577 (let* ((words (split-string-and-unquote command-line))
2578 (program (car words))
2579 (dir default-directory)
2580 ;; Extract the file name from WORDS
2581 ;; and put t in its place.
2582 ;; Later on we will put the modified file name arg back there.
2583 (file-word (let ((w (cdr words)))
2584 (while (and w (= ?- (aref (car w) 0)))
2585 (setq w (cdr w)))
2586 (and w
2587 (prog1 (car w)
2588 (setcar w t)))))
2589 (file-subst
2590 (and file-word (substitute-in-file-name file-word)))
2591 (args (cdr words))
2592 ;; If a directory was specified, expand the file name.
2593 ;; Otherwise, don't expand it, so GDB can use the PATH.
2594 ;; A file name without directory is literally valid
2595 ;; only if the file exists in ., and in that case,
2596 ;; omitting the expansion here has no visible effect.
2597 (file (and file-word
2598 (if (file-name-directory file-subst)
2599 (expand-file-name file-subst)
2600 file-subst)))
2601 (filepart (and file-word (concat "-" (file-name-nondirectory file))))
2602 (existing-buffer (get-buffer (concat "*gud" filepart "*"))))
2603 (switch-to-buffer (concat "*gud" filepart "*"))
2604 (when (and existing-buffer (get-buffer-process existing-buffer))
2605 (error "This program is already being debugged"))
2606 ;; Set the dir, in case the buffer already existed with a different dir.
2607 (setq default-directory dir)
2608 ;; Set default-directory to the file's directory.
2609 (and file-word
2610 gud-chdir-before-run
2611 ;; Don't set default-directory if no directory was specified.
2612 ;; In that case, either the file is found in the current directory,
2613 ;; in which case this setq is a no-op,
2614 ;; or it is found by searching PATH,
2615 ;; in which case we don't know what directory it was found in.
2616 (file-name-directory file)
2617 (setq default-directory (file-name-directory file)))
2618 (or (bolp) (newline))
2619 (insert "Current directory is " default-directory "\n")
2620 ;; Put the substituted and expanded file name back in its place.
2621 (let ((w args))
2622 (while (and w (not (eq (car w) t)))
2623 (setq w (cdr w)))
2624 ;; Tramp has already been loaded if we are here.
2625 (if w (setcar w (setq file (file-local-name file)))))
2626 (apply 'make-comint (concat "gud" filepart) program nil
2627 (if massage-args (funcall massage-args file args) args))
2628 ;; Since comint clobbered the mode, we don't set it until now.
2629 (gud-mode)
2630 (set (make-local-variable 'gud-target-name)
2631 (and file-word (file-name-nondirectory file))))
2632 (set (make-local-variable 'gud-marker-filter) marker-filter)
2633 (if find-file (set (make-local-variable 'gud-find-file) find-file))
2634 (setq gud-last-last-frame nil)
2636 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter)
2637 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel)
2638 (gud-set-buffer))
2640 (defun gud-set-buffer ()
2641 (when (derived-mode-p 'gud-mode)
2642 (setq gud-comint-buffer (current-buffer))))
2644 (defvar gud-filter-defer-flag nil
2645 "Non-nil means don't process anything from the debugger right now.
2646 It is saved for when this flag is not set.")
2648 ;; These functions are responsible for inserting output from your debugger
2649 ;; into the buffer. The hard work is done by the method that is
2650 ;; the value of gud-marker-filter.
2652 (defun gud-filter (proc string)
2653 ;; Here's where the actual buffer insertion is done
2654 (let (output process-window)
2655 (if (buffer-name (process-buffer proc))
2656 (if gud-filter-defer-flag
2657 ;; If we can't process any text now,
2658 ;; save it for later.
2659 (setq gud-filter-pending-text
2660 (concat (or gud-filter-pending-text "") string))
2662 ;; If we have to ask a question during the processing,
2663 ;; defer any additional text that comes from the debugger
2664 ;; during that time.
2665 (let ((gud-filter-defer-flag t))
2666 ;; Process now any text we previously saved up.
2667 (if gud-filter-pending-text
2668 (setq string (concat gud-filter-pending-text string)
2669 gud-filter-pending-text nil))
2671 (with-current-buffer (process-buffer proc)
2672 ;; If we have been so requested, delete the debugger prompt.
2673 (save-restriction
2674 (widen)
2675 (if (marker-buffer gud-delete-prompt-marker)
2676 (let ((inhibit-read-only t))
2677 (delete-region (process-mark proc)
2678 gud-delete-prompt-marker)
2679 (comint-update-fence)
2680 (set-marker gud-delete-prompt-marker nil)))
2681 ;; Save the process output, checking for source file markers.
2682 (setq output (gud-marker-filter string))
2683 ;; Check for a filename-and-line number.
2684 ;; Don't display the specified file
2685 ;; unless (1) point is at or after the position where output appears
2686 ;; and (2) this buffer is on the screen.
2687 (setq process-window
2688 (and gud-last-frame
2689 (>= (point) (process-mark proc))
2690 (get-buffer-window (current-buffer)))))
2692 ;; Let the comint filter do the actual insertion.
2693 ;; That lets us inherit various comint features.
2694 (comint-output-filter proc output))
2696 ;; Put the arrow on the source line.
2697 ;; This must be outside of the save-excursion
2698 ;; in case the source file is our current buffer.
2699 (if process-window
2700 (with-selected-window process-window
2701 (gud-display-frame))
2702 ;; We have to be in the proper buffer, (process-buffer proc),
2703 ;; but not in a save-excursion, because that would restore point.
2704 (with-current-buffer (process-buffer proc)
2705 (gud-display-frame))))
2707 ;; If we deferred text that arrived during this processing,
2708 ;; handle it now.
2709 (if gud-filter-pending-text
2710 (gud-filter proc ""))))))
2712 (defvar gud-minor-mode-type nil)
2713 (defvar gud-overlay-arrow-position nil)
2714 (add-to-list 'overlay-arrow-variable-list 'gud-overlay-arrow-position)
2716 (declare-function gdb-reset "gdb-mi" ())
2717 (declare-function speedbar-change-initial-expansion-list "speedbar" (new))
2718 (defvar speedbar-previously-used-expansion-list-name)
2720 (defun gud-sentinel (proc msg)
2721 (cond ((null (buffer-name (process-buffer proc)))
2722 ;; buffer killed
2723 ;; Stop displaying an arrow in a source file.
2724 (setq gud-overlay-arrow-position nil)
2725 (set-process-buffer proc nil)
2726 (if (and (boundp 'speedbar-initial-expansion-list-name)
2727 (string-equal speedbar-initial-expansion-list-name "GUD"))
2728 (speedbar-change-initial-expansion-list
2729 speedbar-previously-used-expansion-list-name))
2730 (if (eq gud-minor-mode-type 'gdbmi)
2731 (gdb-reset)
2732 (gud-reset)))
2733 ((memq (process-status proc) '(signal exit))
2734 ;; Stop displaying an arrow in a source file.
2735 (setq gud-overlay-arrow-position nil)
2736 (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2737 'gdbmi)
2738 (gdb-reset)
2739 (gud-reset))
2740 (let* ((obuf (current-buffer)))
2741 ;; save-excursion isn't the right thing if
2742 ;; process-buffer is current-buffer
2743 (unwind-protect
2744 (progn
2745 ;; Write something in the GUD buffer and hack its mode line,
2746 (set-buffer (process-buffer proc))
2747 ;; Fix the mode line.
2748 (setq mode-line-process
2749 (concat ":"
2750 (symbol-name (process-status proc))))
2751 (force-mode-line-update)
2752 (if (eobp)
2753 (insert ?\n mode-name " " msg)
2754 (save-excursion
2755 (goto-char (point-max))
2756 (insert ?\n mode-name " " msg)))
2757 ;; If buffer and mode line will show that the process
2758 ;; is dead, we can delete it now. Otherwise it
2759 ;; will stay around until M-x list-processes.
2760 (delete-process proc))
2761 ;; Restore old buffer, but don't restore old point
2762 ;; if obuf is the gud buffer.
2763 (set-buffer obuf))))))
2765 (defun gud-kill-buffer-hook ()
2766 (setq gud-minor-mode-type gud-minor-mode)
2767 (condition-case nil
2768 (progn
2769 (kill-process (get-buffer-process (current-buffer)))
2770 (delete-process (get-process "gdb-inferior")))
2771 (error nil)))
2773 (defun gud-reset ()
2774 (dolist (buffer (buffer-list))
2775 (unless (eq buffer gud-comint-buffer)
2776 (with-current-buffer buffer
2777 (when gud-minor-mode
2778 (setq gud-minor-mode nil)
2779 (kill-local-variable 'tool-bar-map))))))
2781 (defun gud-display-frame ()
2782 "Find and obey the last filename-and-line marker from the debugger.
2783 Obeying it means displaying in another window the specified file and line."
2784 (interactive)
2785 (when gud-last-frame
2786 (gud-set-buffer)
2787 (gud-display-line (car gud-last-frame) (cdr gud-last-frame))
2788 (setq gud-last-last-frame gud-last-frame
2789 gud-last-frame nil)))
2791 (declare-function global-hl-line-highlight "hl-line" ())
2792 (declare-function hl-line-highlight "hl-line" ())
2793 (declare-function gdb-display-source-buffer "gdb-mi" (buffer))
2795 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
2796 ;; and that its line LINE is visible.
2797 ;; Put the overlay-arrow on the line LINE in that buffer.
2798 ;; Most of the trickiness in here comes from wanting to preserve the current
2799 ;; region-restriction if that's possible. We use an explicit display-buffer
2800 ;; to get around the fact that this is called inside a save-excursion.
2802 (defun gud-display-line (true-file line)
2803 (let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions.
2804 (buffer
2805 (with-current-buffer gud-comint-buffer
2806 (gud-find-file true-file)))
2807 (window (and buffer
2808 (or (get-buffer-window buffer)
2809 (display-buffer buffer '(nil (inhibit-same-window . t))))))
2810 (pos))
2811 (when buffer
2812 (with-current-buffer buffer
2813 (unless (or (verify-visited-file-modtime buffer) gud-keep-buffer)
2814 (if (yes-or-no-p
2815 (format "File %s changed on disk. Reread from disk? "
2816 (buffer-name)))
2817 (revert-buffer t t)
2818 (setq gud-keep-buffer t)))
2819 (save-restriction
2820 (widen)
2821 (goto-char (point-min))
2822 (forward-line (1- line))
2823 (setq pos (point))
2824 (or gud-overlay-arrow-position
2825 (setq gud-overlay-arrow-position (make-marker)))
2826 (set-marker gud-overlay-arrow-position (point) (current-buffer))
2827 ;; If they turned on hl-line, move the hl-line highlight to
2828 ;; the arrow's line.
2829 (when (featurep 'hl-line)
2830 (cond
2831 (global-hl-line-mode
2832 (global-hl-line-highlight))
2833 ((and hl-line-mode hl-line-sticky-flag)
2834 (hl-line-highlight)))))
2835 (cond ((or (< pos (point-min)) (> pos (point-max)))
2836 (widen)
2837 (goto-char pos))))
2838 (when window
2839 (set-window-point window gud-overlay-arrow-position)
2840 (if (eq gud-minor-mode 'gdbmi)
2841 (setq gdb-source-window window))))))
2843 ;; The gud-call function must do the right thing whether its invoking
2844 ;; keystroke is from the GUD buffer itself (via major-mode binding)
2845 ;; or a C buffer. In the former case, we want to supply data from
2846 ;; gud-last-frame. Here's how we do it:
2848 (defun gud-format-command (str arg)
2849 (let ((insource (not (eq (current-buffer) gud-comint-buffer)))
2850 (frame (or gud-last-frame gud-last-last-frame))
2851 (buffer-file-name-localized
2852 (and (buffer-file-name)
2853 (file-local-name (buffer-file-name))))
2854 result)
2855 (while (and str
2856 (let ((case-fold-search nil))
2857 (string-match "\\([^%]*\\)%\\([adefFlpc]\\)" str)))
2858 (let ((key (string-to-char (match-string 2 str)))
2859 subst)
2860 (cond
2861 ((eq key ?f)
2862 (setq subst (file-name-nondirectory (if insource
2863 buffer-file-name-localized
2864 (car frame)))))
2865 ((eq key ?F)
2866 (setq subst (file-name-base (if insource
2867 buffer-file-name-localized
2868 (car frame)))))
2869 ((eq key ?d)
2870 (setq subst (file-name-directory (if insource
2871 buffer-file-name-localized
2872 (car frame)))))
2873 ((eq key ?l)
2874 (setq subst (int-to-string
2875 (if insource
2876 (save-restriction
2877 (widen)
2878 (+ (count-lines (point-min) (point))
2879 (if (bolp) 1 0)))
2880 (cdr frame)))))
2881 ((eq key ?e)
2882 (setq subst (gud-find-expr)))
2883 ((eq key ?a)
2884 (setq subst (gud-read-address)))
2885 ((eq key ?c)
2886 (setq subst
2887 (gud-find-class
2888 (if insource
2889 (buffer-file-name)
2890 (car frame))
2891 (if insource
2892 (save-restriction
2893 (widen)
2894 (+ (count-lines (point-min) (point))
2895 (if (bolp) 1 0)))
2896 (cdr frame)))))
2897 ((eq key ?p)
2898 (setq subst (if arg (int-to-string arg)))))
2899 (setq result (concat result (match-string 1 str) subst)))
2900 (setq str (substring str (match-end 2))))
2901 ;; There might be text left in STR when the loop ends.
2902 (concat result str)))
2904 (defun gud-read-address ()
2905 "Return a string containing the core-address found in the buffer at point."
2906 (save-match-data
2907 (save-excursion
2908 (let ((pt (point)) found begin)
2909 (setq found (if (search-backward "0x" (- pt 7) t) (point)))
2910 (cond
2911 (found (forward-char 2)
2912 (buffer-substring found
2913 (progn (re-search-forward "[^0-9a-f]")
2914 (forward-char -1)
2915 (point))))
2916 (t (setq begin (progn (re-search-backward "[^0-9]")
2917 (forward-char 1)
2918 (point)))
2919 (forward-char 1)
2920 (re-search-forward "[^0-9]")
2921 (forward-char -1)
2922 (buffer-substring begin (point))))))))
2924 (defun gud-call (fmt &optional arg)
2925 (let ((msg (gud-format-command fmt arg)))
2926 (message "Command: %s" msg)
2927 (sit-for 0)
2928 (gud-basic-call msg)))
2930 (defun gud-basic-call (command)
2931 "Invoke the debugger COMMAND displaying source in other window."
2932 (interactive)
2933 (gud-set-buffer)
2934 (let ((proc (get-buffer-process gud-comint-buffer)))
2935 (or proc (error "Current buffer has no process"))
2936 ;; Arrange for the current prompt to get deleted.
2937 (with-current-buffer gud-comint-buffer
2938 (save-excursion
2939 (save-restriction
2940 (widen)
2941 (if (marker-position gud-delete-prompt-marker)
2942 ;; We get here when printing an expression.
2943 (goto-char gud-delete-prompt-marker)
2944 (goto-char (process-mark proc))
2945 (forward-line 0))
2946 (if (looking-at comint-prompt-regexp)
2947 (set-marker gud-delete-prompt-marker (point)))
2948 (if (eq gud-minor-mode 'gdbmi)
2949 (apply comint-input-sender (list proc command))
2950 (process-send-string proc (concat command "\n"))))))))
2952 (defun gud-refresh (&optional arg)
2953 "Fix up a possibly garbled display, and redraw the arrow."
2954 (interactive "P")
2955 (or gud-last-frame (setq gud-last-frame gud-last-last-frame))
2956 (gud-display-frame)
2957 (recenter arg))
2959 ;; Code for parsing expressions out of C or Fortran code. The single entry
2960 ;; point is gud-find-expr, which tries to return an lvalue expression from
2961 ;; around point.
2963 (defvar gud-find-expr-function 'gud-find-c-expr)
2965 (defun gud-find-expr (&rest args)
2966 (let ((expr (if (and transient-mark-mode mark-active)
2967 (buffer-substring (region-beginning) (region-end))
2968 (apply gud-find-expr-function args))))
2969 (save-match-data
2970 (if (string-match "\n" expr)
2971 (error "Expression must not include a newline"))
2972 (with-current-buffer gud-comint-buffer
2973 (save-excursion
2974 (goto-char (process-mark (get-buffer-process gud-comint-buffer)))
2975 (forward-line 0)
2976 (when (looking-at comint-prompt-regexp)
2977 (set-marker gud-delete-prompt-marker (point))
2978 (set-marker-insertion-type gud-delete-prompt-marker t))
2979 (unless (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2980 'jdb)
2981 (insert (concat expr " = "))))))
2982 expr))
2984 ;; The next eight functions are hacked from gdbsrc.el by
2985 ;; Debby Ayers <ayers@asc.slb.com>,
2986 ;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx.
2988 (defun gud-find-c-expr ()
2989 "Returns the expr that surrounds point."
2990 (interactive)
2991 (save-excursion
2992 (let ((p (point))
2993 (expr (gud-innermost-expr))
2994 (test-expr (gud-prev-expr)))
2995 (while (and test-expr (gud-expr-compound test-expr expr))
2996 (let ((prev-expr expr))
2997 (setq expr (cons (car test-expr) (cdr expr)))
2998 (goto-char (car expr))
2999 (setq test-expr (gud-prev-expr))
3000 ;; If we just pasted on the condition of an if or while,
3001 ;; throw it away again.
3002 (if (member (buffer-substring (car test-expr) (cdr test-expr))
3003 '("if" "while" "for"))
3004 (setq test-expr nil
3005 expr prev-expr))))
3006 (goto-char p)
3007 (setq test-expr (gud-next-expr))
3008 (while (gud-expr-compound expr test-expr)
3009 (setq expr (cons (car expr) (cdr test-expr)))
3010 (setq test-expr (gud-next-expr)))
3011 (buffer-substring (car expr) (cdr expr)))))
3013 (defun gud-innermost-expr ()
3014 "Returns the smallest expr that point is in; move point to beginning of it.
3015 The expr is represented as a cons cell, where the car specifies the point in
3016 the current buffer that marks the beginning of the expr and the cdr specifies
3017 the character after the end of the expr."
3018 (let ((p (point)) begin end)
3019 (gud-backward-sexp)
3020 (setq begin (point))
3021 (gud-forward-sexp)
3022 (setq end (point))
3023 (if (>= p end)
3024 (progn
3025 (setq begin p)
3026 (goto-char p)
3027 (gud-forward-sexp)
3028 (setq end (point)))
3030 (goto-char begin)
3031 (cons begin end)))
3033 (defun gud-backward-sexp ()
3034 "Version of `backward-sexp' that catches errors."
3035 (condition-case nil
3036 (backward-sexp)
3037 (error t)))
3039 (defun gud-forward-sexp ()
3040 "Version of `forward-sexp' that catches errors."
3041 (condition-case nil
3042 (forward-sexp)
3043 (error t)))
3045 (defun gud-prev-expr ()
3046 "Returns the previous expr, point is set to beginning of that expr.
3047 The expr is represented as a cons cell, where the car specifies the point in
3048 the current buffer that marks the beginning of the expr and the cdr specifies
3049 the character after the end of the expr"
3050 (let ((begin) (end))
3051 (gud-backward-sexp)
3052 (setq begin (point))
3053 (gud-forward-sexp)
3054 (setq end (point))
3055 (goto-char begin)
3056 (cons begin end)))
3058 (defun gud-next-expr ()
3059 "Returns the following expr, point is set to beginning of that expr.
3060 The expr is represented as a cons cell, where the car specifies the point in
3061 the current buffer that marks the beginning of the expr and the cdr specifies
3062 the character after the end of the expr."
3063 (let ((begin) (end))
3064 (gud-forward-sexp)
3065 (gud-forward-sexp)
3066 (setq end (point))
3067 (gud-backward-sexp)
3068 (setq begin (point))
3069 (cons begin end)))
3071 (defun gud-expr-compound-sep (span-start span-end)
3072 "Scan from SPAN-START to SPAN-END for punctuation characters.
3073 If `->' is found, return `?.'. If `.' is found, return `?.'.
3074 If any other punctuation is found, return `??'.
3075 If no punctuation is found, return `?\\s'."
3076 (let ((result ?\s)
3077 (syntax))
3078 (while (< span-start span-end)
3079 (setq syntax (char-syntax (char-after span-start)))
3080 (cond
3081 ((= syntax ?\s) t)
3082 ((= syntax ?.) (setq syntax (char-after span-start))
3083 (cond
3084 ((= syntax ?.) (setq result ?.))
3085 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>))
3086 (setq result ?.)
3087 (setq span-start (+ span-start 1)))
3088 (t (setq span-start span-end)
3089 (setq result ??)))))
3090 (setq span-start (+ span-start 1)))
3091 result))
3093 (defun gud-expr-compound (first second)
3094 "Non-nil if concatenating FIRST and SECOND makes a single C expression.
3095 The two exprs are represented as a cons cells, where the car
3096 specifies the point in the current buffer that marks the beginning of the
3097 expr and the cdr specifies the character after the end of the expr.
3098 Link exprs of the form:
3099 Expr -> Expr
3100 Expr . Expr
3101 Expr (Expr)
3102 Expr [Expr]
3103 (Expr) Expr
3104 [Expr] Expr"
3105 (let ((span-start (cdr first))
3106 (span-end (car second))
3107 (syntax))
3108 (setq syntax (gud-expr-compound-sep span-start span-end))
3109 (cond
3110 ((= (car first) (car second)) nil)
3111 ((= (cdr first) (cdr second)) nil)
3112 ((= syntax ?.) t)
3113 ((= syntax ?\s)
3114 (setq span-start (char-after (- span-start 1)))
3115 (setq span-end (char-after span-end))
3116 (cond
3117 ((= span-start ?)) t)
3118 ((= span-start ?]) t)
3119 ((= span-end ?() t)
3120 ((= span-end ?[) t)
3121 (t nil)))
3122 (t nil))))
3125 (declare-function c-langelem-sym "cc-defs" (langelem))
3126 (declare-function c-langelem-pos "cc-defs" (langelem))
3128 (defun gud-find-class (f _line)
3129 "Find fully qualified class in file F at line LINE.
3130 This function uses the `gud-jdb-classpath' (and optional
3131 `gud-jdb-sourcepath') list(s) to derive a file
3132 pathname relative to its classpath directory. The values in
3133 `gud-jdb-classpath' are assumed to have been converted to absolute
3134 pathname standards using file-truename.
3135 If F is visited by a buffer and its mode is CC-mode(Java),
3136 syntactic information of LINE is used to find the enclosing (nested)
3137 class string which is appended to the top level
3138 class of the file (using s to separate nested class ids)."
3139 ;; Convert f to a standard representation and remove suffix
3140 (if (and gud-jdb-use-classpath (or gud-jdb-classpath gud-jdb-sourcepath))
3141 (save-match-data
3142 (let ((cplist (append gud-jdb-sourcepath gud-jdb-classpath))
3143 (fbuffer (get-file-buffer f))
3144 class-found
3145 ;; Syntax-symbol returns the symbol of the *first* element
3146 ;; in the syntactical analysis result list, syntax-point
3147 ;; returns the buffer position of same
3148 (syntax-symbol (lambda (x) (c-langelem-sym (car x))))
3149 (syntax-point (lambda (x) (c-langelem-pos (car x)))))
3150 (setq f (file-name-sans-extension (file-truename f)))
3151 ;; Search through classpath list for an entry that is
3152 ;; contained in f
3153 (while (and cplist (not class-found))
3154 (if (string-match (car cplist) f)
3155 (setq class-found
3156 (mapconcat 'identity
3157 (split-string
3158 (substring f (+ (match-end 0) 1))
3159 "/") ".")))
3160 (setq cplist (cdr cplist)))
3161 ;; if f is visited by a java(cc-mode) buffer, walk up the
3162 ;; syntactic information chain and collect any 'inclass
3163 ;; symbols until 'topmost-intro is reached to find out if
3164 ;; point is within a nested class
3165 ;; FIXME: Yuck!!! cc-mode should provide a function instead.
3166 (if (and fbuffer (equal (symbol-file 'java-mode) "cc-mode"))
3167 (with-current-buffer fbuffer
3168 (let ((nclass) (syntax))
3169 ;; While the c-syntactic information does not start
3170 ;; with the 'topmost-intro symbol, there may be
3171 ;; nested classes...
3172 (while (not (eq 'topmost-intro
3173 (funcall syntax-symbol (c-guess-basic-syntax))))
3174 ;; Check if the current position c-syntactic
3175 ;; analysis has 'inclass
3176 (setq syntax (c-guess-basic-syntax))
3177 (while
3178 (and (not (eq 'inclass (funcall syntax-symbol syntax)))
3179 (cdr syntax))
3180 (setq syntax (cdr syntax)))
3181 (if (eq 'inclass (funcall syntax-symbol syntax))
3182 (progn
3183 (goto-char (funcall syntax-point syntax))
3184 ;; Now we're at the beginning of a class
3185 ;; definition. Find class name
3186 (looking-at
3187 "[A-Za-z0-9 \t\n]*?class[ \t\n]+\\([^ \t\n]+\\)")
3188 (setq nclass
3189 (append (list (match-string-no-properties 1))
3190 nclass)))
3191 (setq syntax (c-guess-basic-syntax))
3192 (while (and (not (funcall syntax-point syntax)) (cdr syntax))
3193 (setq syntax (cdr syntax)))
3194 (goto-char (funcall syntax-point syntax))
3196 (string-match (concat (car nclass) "$") class-found)
3197 (setq class-found
3198 (replace-match (mapconcat 'identity nclass "$")
3199 t t class-found)))))
3200 (if (not class-found)
3201 (message "gud-find-class: class for file %s not found!" f))
3202 class-found))
3203 ;; Not using classpath - try class/source association list
3204 (let ((class-found (rassoc f gud-jdb-class-source-alist)))
3205 (if class-found
3206 (car class-found)
3207 (message "gud-find-class: class for file %s not found in gud-jdb-class-source-alist!" f)
3208 nil))))
3211 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3212 ;;; GDB script mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3213 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3215 (defvar gdb-script-mode-syntax-table
3216 (let ((st (make-syntax-table)))
3217 (modify-syntax-entry ?' "\"" st)
3218 (modify-syntax-entry ?# "<" st)
3219 (modify-syntax-entry ?\n ">" st)
3220 st))
3222 (defvar gdb-script-font-lock-keywords
3223 '(("^define\\s-+\\(\\(\\w\\|\\s_\\)+\\)" (1 font-lock-function-name-face))
3224 ("\\$\\(\\w+\\)" (1 font-lock-variable-name-face))
3225 ("^\\s-*\\(\\w\\(\\w\\|\\s_\\)*\\)" (1 font-lock-keyword-face))))
3227 (defconst gdb-script-syntax-propertize-function
3228 (syntax-propertize-rules
3229 ("^document\\s-.*\\(\n\\)" (1 "< b"))
3230 ("^end\\(\\>\\)"
3231 (1 (ignore
3232 (when (and (> (match-beginning 0) (point-min))
3233 (eq 1 (nth 7 (save-excursion
3234 (syntax-ppss (1- (match-beginning 0)))))))
3235 ;; We change the \n in front, which is more difficult, but results
3236 ;; in better highlighting. If the doc is empty, the single \n is
3237 ;; both the beginning and the end of the docstring, which can't be
3238 ;; expressed in syntax-tables. Instead, we place the "> b" after
3239 ;; placing the "< b", so the start marker is overwritten by the
3240 ;; termination marker and in the end Emacs simply considers that
3241 ;; there's no docstring at all, which is fine.
3242 (put-text-property (1- (match-beginning 0)) (match-beginning 0)
3243 'syntax-table (eval-when-compile
3244 (string-to-syntax "> b")))
3245 ;; Make sure that rehighlighting the previous line won't erase our
3246 ;; syntax-table property and that modifying `end' will.
3247 (put-text-property (1- (match-beginning 0)) (match-end 0)
3248 'syntax-multiline t)))))))
3250 (defun gdb-script-font-lock-syntactic-face (state)
3251 (cond
3252 ((nth 3 state) font-lock-string-face)
3253 ((nth 7 state) font-lock-doc-face)
3254 (t font-lock-comment-face)))
3256 (defvar gdb-script-basic-indent 2)
3258 (defun gdb-script-skip-to-head ()
3259 "We're just in front of an `end' and we need to go to its head."
3260 (while (and (re-search-backward "^\\s-*\\(\\(end\\)\\|define\\|document\\|if\\|while\\|commands\\)\\>" nil 'move)
3261 (match-end 2))
3262 (gdb-script-skip-to-head)))
3264 (defun gdb-script-calculate-indentation ()
3265 (cond
3266 ((looking-at "end\\>")
3267 (gdb-script-skip-to-head)
3268 (current-indentation))
3269 ((looking-at "else\\>")
3270 (while (and (re-search-backward "^\\s-*\\(if\\|\\(end\\)\\)\\>" nil 'move)
3271 (match-end 2))
3272 (gdb-script-skip-to-head))
3273 (current-indentation))
3275 (forward-comment (- (point-max)))
3276 (forward-line 0)
3277 (skip-chars-forward " \t")
3278 (+ (current-indentation)
3279 (if (looking-at "\\(if\\|while\\|define\\|else\\|commands\\)\\>")
3280 gdb-script-basic-indent 0)))))
3282 (defun gdb-script-indent-line ()
3283 "Indent current line of GDB script."
3284 (interactive)
3285 (if (and (eq (get-text-property (point) 'face) font-lock-doc-face)
3286 (save-excursion
3287 (forward-line 0)
3288 (skip-chars-forward " \t")
3289 (not (looking-at "end\\>"))))
3290 'noindent
3291 (let* ((savep (point))
3292 (indent (condition-case nil
3293 (save-excursion
3294 (forward-line 0)
3295 (skip-chars-forward " \t")
3296 (if (>= (point) savep) (setq savep nil))
3297 (max (gdb-script-calculate-indentation) 0))
3298 (error 0))))
3299 (if savep
3300 (save-excursion (indent-line-to indent))
3301 (indent-line-to indent)))))
3303 ;; Derived from cfengine.el.
3304 (defun gdb-script-beginning-of-defun ()
3305 "`beginning-of-defun' function for Gdb script mode.
3306 Treats actions as defuns."
3307 (unless (<= (current-column) (current-indentation))
3308 (end-of-line))
3309 (if (re-search-backward "^define \\|^document " nil t)
3310 (beginning-of-line)
3311 (goto-char (point-min)))
3314 ;; Derived from cfengine.el.
3315 (defun gdb-script-end-of-defun ()
3316 "`end-of-defun' function for Gdb script mode.
3317 Treats actions as defuns."
3318 (end-of-line)
3319 (if (re-search-forward "^end" nil t)
3320 (beginning-of-line)
3321 (goto-char (point-max)))
3324 ;;;###autoload
3325 (define-derived-mode gdb-script-mode prog-mode "GDB-Script"
3326 "Major mode for editing GDB scripts."
3327 (set (make-local-variable 'comment-start) "#")
3328 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
3329 (set (make-local-variable 'outline-regexp) "[ \t]")
3330 (set (make-local-variable 'imenu-generic-expression)
3331 '((nil "^define[ \t]+\\(\\w+\\)" 1)))
3332 (set (make-local-variable 'indent-line-function) 'gdb-script-indent-line)
3333 (set (make-local-variable 'beginning-of-defun-function)
3334 #'gdb-script-beginning-of-defun)
3335 (set (make-local-variable 'end-of-defun-function)
3336 #'gdb-script-end-of-defun)
3337 (set (make-local-variable 'font-lock-defaults)
3338 '(gdb-script-font-lock-keywords nil nil ((?_ . "w")) nil
3339 (font-lock-syntactic-face-function
3340 . gdb-script-font-lock-syntactic-face)))
3341 ;; Recognize docstrings.
3342 (set (make-local-variable 'syntax-propertize-function)
3343 gdb-script-syntax-propertize-function)
3344 (add-hook 'syntax-propertize-extend-region-functions
3345 #'syntax-propertize-multiline 'append 'local))
3348 ;;; tooltips for GUD
3350 ;;; Customizable settings
3352 (defvar tooltip-mode)
3354 ;;;###autoload
3355 (define-minor-mode gud-tooltip-mode
3356 "Toggle the display of GUD tooltips.
3357 With a prefix argument ARG, enable the feature if ARG is
3358 positive, and disable it otherwise. If called from Lisp, enable
3359 it if ARG is omitted or nil."
3360 :global t
3361 :group 'gud
3362 :group 'tooltip
3363 (require 'tooltip)
3364 (if gud-tooltip-mode
3365 (progn
3366 (add-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3367 (add-hook 'pre-command-hook 'tooltip-hide)
3368 (add-hook 'tooltip-functions 'gud-tooltip-tips)
3369 (define-key global-map [mouse-movement] 'gud-tooltip-mouse-motion))
3370 (unless tooltip-mode (remove-hook 'pre-command-hook 'tooltip-hide)
3371 (remove-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3372 (remove-hook 'tooltip-functions 'gud-tooltip-tips)
3373 (define-key global-map [mouse-movement] 'ignore)))
3374 (gud-tooltip-activate-mouse-motions-if-enabled)
3375 (if (and gud-comint-buffer
3376 (buffer-name gud-comint-buffer); gud-comint-buffer might be killed
3377 (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
3378 'gdbmi))
3379 (if gud-tooltip-mode
3380 (progn
3381 (dolist (buffer (buffer-list))
3382 (unless (eq buffer gud-comint-buffer)
3383 (with-current-buffer buffer
3384 (when (and (eq gud-minor-mode 'gdbmi)
3385 (not (string-match "\\`\\*.+\\*\\'"
3386 (buffer-name))))
3387 (make-local-variable 'gdb-define-alist)
3388 (gdb-create-define-alist)
3389 (add-hook 'after-save-hook
3390 'gdb-create-define-alist nil t))))))
3391 (kill-local-variable 'gdb-define-alist)
3392 (remove-hook 'after-save-hook 'gdb-create-define-alist t))))
3394 (define-obsolete-variable-alias 'tooltip-gud-modes
3395 'gud-tooltip-modes "22.1")
3397 (defcustom gud-tooltip-modes '(gud-mode c-mode c++-mode fortran-mode
3398 python-mode)
3399 "List of modes for which to enable GUD tooltips."
3400 :type '(repeat (symbol :tag "Major mode"))
3401 :group 'gud
3402 :group 'tooltip)
3404 (define-obsolete-variable-alias 'tooltip-gud-display
3405 'gud-tooltip-display "22.1")
3407 (defcustom gud-tooltip-display
3408 '((eq (tooltip-event-buffer gud-tooltip-event)
3409 (marker-buffer gud-overlay-arrow-position)))
3410 "List of forms determining where GUD tooltips are displayed.
3412 Forms in the list are combined with AND. The default is to display
3413 only tooltips in the buffer containing the overlay arrow."
3414 :type 'sexp
3415 :risky t
3416 :group 'gud
3417 :group 'tooltip)
3419 (defcustom gud-tooltip-echo-area nil
3420 "Use the echo area instead of frames for GUD tooltips."
3421 :type 'boolean
3422 :group 'gud
3423 :group 'tooltip)
3425 (make-obsolete-variable 'gud-tooltip-echo-area
3426 "disable Tooltip mode instead" "24.4" 'set)
3428 ;;; Reacting on mouse movements
3430 (defun gud-tooltip-change-major-mode ()
3431 "Function added to `change-major-mode-hook' when tooltip mode is on."
3432 (add-hook 'post-command-hook 'gud-tooltip-activate-mouse-motions-if-enabled))
3434 (defun gud-tooltip-activate-mouse-motions-if-enabled ()
3435 "Reconsider for all buffers whether mouse motion events are desired."
3436 (remove-hook 'post-command-hook
3437 'gud-tooltip-activate-mouse-motions-if-enabled)
3438 (dolist (buffer (buffer-list))
3439 (with-current-buffer buffer
3440 (if (and gud-tooltip-mode
3441 (memq major-mode gud-tooltip-modes))
3442 (gud-tooltip-activate-mouse-motions t)
3443 (gud-tooltip-activate-mouse-motions nil)))))
3445 (defvar gud-tooltip-mouse-motions-active nil
3446 "Locally t in a buffer if tooltip processing of mouse motion is enabled.")
3448 ;; We don't set track-mouse globally because this is a big redisplay
3449 ;; problem in buffers having a pre-command-hook or such installed,
3450 ;; which does a set-buffer, like the summary buffer of Gnus. Calling
3451 ;; set-buffer prevents redisplay optimizations, so every mouse motion
3452 ;; would be accompanied by a full redisplay.
3454 (defun gud-tooltip-activate-mouse-motions (activatep)
3455 "Activate/deactivate mouse motion events for the current buffer.
3456 ACTIVATEP non-nil means activate mouse motion events."
3457 (if activatep
3458 (progn
3459 (set (make-local-variable 'gud-tooltip-mouse-motions-active) t)
3460 (set (make-local-variable 'track-mouse) t))
3461 (when gud-tooltip-mouse-motions-active
3462 (kill-local-variable 'gud-tooltip-mouse-motions-active)
3463 (kill-local-variable 'track-mouse))))
3465 (defvar tooltip-last-mouse-motion-event)
3466 (declare-function tooltip-hide "tooltip" (&optional ignored-arg))
3467 (declare-function tooltip-start-delayed-tip "tooltip" ())
3469 (defun gud-tooltip-mouse-motion (event)
3470 "Command handler for mouse movement events in `global-map'."
3471 (interactive "e")
3472 (tooltip-hide)
3473 (when (car (mouse-pixel-position))
3474 (setq tooltip-last-mouse-motion-event (copy-sequence event))
3475 (tooltip-start-delayed-tip)))
3477 ;;; Tips for `gud'
3479 (defvar gud-tooltip-dereference nil
3480 "Non-nil means print expressions with a `*' in front of them.
3481 For C this would dereference a pointer expression.")
3483 (defvar gud-tooltip-event nil
3484 "The mouse movement event that led to a tooltip display.
3485 This event can be examined by forms in `gud-tooltip-display'.")
3487 (defun gud-tooltip-dereference (&optional arg)
3488 "Toggle whether tooltips should show `* expr' or `expr'.
3489 With arg, dereference expr if ARG is positive, otherwise do not dereference."
3490 (interactive "P")
3491 (setq gud-tooltip-dereference
3492 (if (null arg)
3493 (not gud-tooltip-dereference)
3494 (> (prefix-numeric-value arg) 0)))
3495 (message "Dereferencing is now %s."
3496 (if gud-tooltip-dereference "on" "off")))
3498 (define-obsolete-function-alias 'tooltip-gud-toggle-dereference
3499 'gud-tooltip-dereference "22.1")
3500 (defvar tooltip-use-echo-area)
3501 (declare-function tooltip-show "tooltip" (text &optional use-echo-area))
3502 (declare-function tooltip-strip-prompt "tooltip" (process output))
3504 ; This will only display data that comes in one chunk.
3505 ; Larger arrays (say 400 elements) are displayed in
3506 ; the tooltip incompletely and spill over into the gud buffer.
3507 ; Switching the process-filter creates timing problems and
3508 ; it may be difficult to do better. Using GDB/MI as in
3509 ; gdb-mi.el gets around this problem.
3510 (defun gud-tooltip-process-output (process output)
3511 "Process debugger output and show it in a tooltip window."
3512 (remove-function (process-filter process) #'gud-tooltip-process-output)
3513 (tooltip-show (tooltip-strip-prompt process output)
3514 (or gud-tooltip-echo-area tooltip-use-echo-area
3515 (not tooltip-mode))))
3517 (defun gud-tooltip-print-command (expr)
3518 "Return a suitable command to print the expression EXPR."
3519 (pcase gud-minor-mode
3520 (`gdbmi (concat "-data-evaluate-expression \"" expr "\""))
3521 (`guiler expr)
3522 (`dbx (concat "print " expr))
3523 ((or `xdb `pdb) (concat "p " expr))
3524 (`sdb (concat expr "/"))))
3526 (declare-function gdb-input "gdb-mi" (command handler &optional trigger))
3527 (declare-function tooltip-expr-to-print "tooltip" (event))
3528 (declare-function tooltip-event-buffer "tooltip" (event))
3530 (defun gud-tooltip-tips (event)
3531 "Show tip for identifier or selection under the mouse.
3532 The mouse must either point at an identifier or inside a selected
3533 region for the tip window to be shown. If `gud-tooltip-dereference' is t,
3534 add a `*' in front of the printed expression. In the case of a C program
3535 controlled by GDB, show the associated #define directives when program is
3536 not executing.
3538 This function must return nil if it doesn't handle EVENT."
3539 (let (process)
3540 (when (and (eventp event)
3541 gud-tooltip-mode
3542 gud-comint-buffer
3543 (buffer-name gud-comint-buffer); might be killed
3544 (setq process (get-buffer-process gud-comint-buffer))
3545 (posn-point (event-end event))
3546 (or (and (eq gud-minor-mode 'gdbmi) (not gdb-active-process))
3547 (progn (setq gud-tooltip-event event)
3548 (eval (cons 'and gud-tooltip-display)))))
3549 (let ((expr (tooltip-expr-to-print event)))
3550 (when expr
3551 (if (and (eq gud-minor-mode 'gdbmi)
3552 (not gdb-active-process))
3553 (progn
3554 (with-current-buffer (tooltip-event-buffer event)
3555 (let ((define-elt (assoc expr gdb-define-alist)))
3556 (unless (null define-elt)
3557 (tooltip-show
3558 (cdr define-elt)
3559 (or gud-tooltip-echo-area tooltip-use-echo-area
3560 (not tooltip-mode)))
3561 expr))))
3562 (when gud-tooltip-dereference
3563 (setq expr (concat "*" expr)))
3564 (let ((cmd (gud-tooltip-print-command expr)))
3565 (when (and gud-tooltip-mode (eq gud-minor-mode 'gdb))
3566 (gud-tooltip-mode -1)
3567 ;; The blank before the newline is for MS-Windows,
3568 ;; whose emulation of message box removes newlines and
3569 ;; displays a single long line.
3570 (message-box "Using GUD tooltips in this mode is unsafe \n\
3571 so they have been disabled."))
3572 (unless (null cmd) ; CMD can be nil if unknown debugger
3573 (if (eq gud-minor-mode 'gdbmi)
3574 (if gdb-macro-info
3575 (gdb-input
3576 (concat
3577 "server macro expand " expr "\n")
3578 `(lambda () (gdb-tooltip-print-1 ,expr)))
3579 (gdb-input
3580 (concat cmd "\n")
3581 `(lambda () (gdb-tooltip-print ,expr))))
3582 (add-function :override (process-filter process)
3583 #'gud-tooltip-process-output)
3584 (gud-basic-call cmd))
3585 expr))))))))
3587 (provide 'gud)
3589 ;;; gud.el ends here