Mercurial > emacs
annotate lisp/gud.el @ 11228:a78e341e8061
(install-arch-indep): Undo Sep 23 change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 06 Apr 1995 21:53:21 +0000 |
parents | 892c03bfe161 |
children | e6bdaaa6ce1b |
rev | line source |
---|---|
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1 ;;; gud.el --- Grand Unified Debugger mode for gdb, sdb, dbx, or xdb |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
2 ;;; under Emacs |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
3 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
4 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> |
4818 | 5 ;; Maintainer: FSF |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
6 ;; Keywords: unix, tools |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
7 |
7298 | 8 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
460 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
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 | |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
460 | 15 ;; any later version. |
16 | |
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. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
25 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
26 ;;; Commentary: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
27 |
460 | 28 ;; The ancestral gdb.el was by W. Schelter <wfs@rascal.ics.utexas.edu> |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
29 ;; It was later rewritten by rms. Some ideas were due to Masanobu. |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
30 ;; Grand Unification (sdb/dbx support) by Eric S. Raymond <esr@thyrsus.com> |
460 | 31 ;; The overloading code was then rewritten by Barry Warsaw <bwarsaw@cen.com>, |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
32 ;; who also hacked the mode to use comint.el. Shane Hartman <shane@spr.com> |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
33 ;; added support for xdb (HPUX debugger). Rick Sladkey <jrs@world.std.com> |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
34 ;; wrote the GDB command completion code. Dave Love <d.love@dl.ac.uk> |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
35 ;; added the IRIX kluge, re-implemented the Mips-ish variant and added |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
36 ;; a menu. |
460 | 37 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
38 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
39 |
460 | 40 (require 'comint) |
923 | 41 (require 'etags) |
460 | 42 |
43 ;; ====================================================================== | |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
44 ;; GUD commands must be visible in C buffers visited by GUD |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
45 |
2532
17a6b6d079cf
(gud-mode): Created C-c synonym bindings in the GUD buffer's local map.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2519
diff
changeset
|
46 (defvar gud-key-prefix "\C-x\C-a" |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
47 "Prefix of all GUD commands valid in C buffers.") |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
48 |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
49 (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh) |
7741
347191d7ca7d
Use ctl-x-map to bind C-x SPC.
Richard M. Stallman <rms@gnu.org>
parents:
7461
diff
changeset
|
50 (define-key ctl-x-map " " 'gud-break) ;; backward compatibility hack |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
51 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
52 (defvar gud-marker-filter nil) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
53 (put 'gud-marker-filter 'permanent-local t) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
54 (defvar gud-find-file nil) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
55 (put 'gud-find-file 'permanent-local t) |
460 | 56 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
57 (defun gud-marker-filter (&rest args) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
58 (apply gud-marker-filter args)) |
460 | 59 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
60 (defun gud-find-file (file) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
61 ;; Don't get confused by double slashes in the name that comes from GDB. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
62 (while (string-match "//+" file) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
63 (setq file (replace-match "/" t t file))) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
64 (funcall gud-find-file file)) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
65 |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
66 ;; Keymap definitions for menu bar entries common to all debuggers and |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
67 ;; slots for debugger-dependent ones in sensible places. (Defined here |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
68 ;; before use.) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
69 (defvar gud-menu-map (make-sparse-keymap "Gud") nil) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
70 (define-key gud-menu-map [refresh] '("Refresh" . gud-refresh)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
71 (define-key gud-menu-map [remove] '("Remove breakpoint" . gud-remove)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
72 (define-key gud-menu-map [tbreak] nil) ; gdb, sdb and xdb |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
73 (define-key gud-menu-map [break] '("Set breakpoint" . gud-break)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
74 (define-key gud-menu-map [up] nil) ; gdb, dbx, and xdb |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
75 (define-key gud-menu-map [down] nil) ; gdb, dbx, and xdb |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
76 (define-key gud-menu-map [print] '("Print expression" . gud-print)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
77 (define-key gud-menu-map [finish] nil) ; gdb or xdb |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
78 (define-key gud-menu-map [stepi] '("Step instruction" . gud-stepi)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
79 (define-key gud-menu-map [step] '("Step line" . gud-step)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
80 (define-key gud-menu-map [next] '("Next line" . gud-next)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
81 (define-key gud-menu-map [cont] '("Continue" . gud-cont)) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
82 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
83 ;; ====================================================================== |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
84 ;; command definition |
460 | 85 |
86 ;; This macro is used below to define some basic debugger interface commands. | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
87 ;; Of course you may use `gud-def' with any other debugger command, including |
1255 | 88 ;; user defined ones. |
89 | |
90 ;; A macro call like (gud-def FUNC NAME KEY DOC) expands to a form | |
91 ;; which defines FUNC to send the command NAME to the debugger, gives | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
92 ;; it the docstring DOC, and binds that function to KEY in the GUD |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
93 ;; major mode. The function is also bound in the global keymap with the |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
94 ;; GUD prefix. |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
95 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
96 (defmacro gud-def (func cmd key &optional doc) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
97 "Define FUNC to be a command sending STR and bound to KEY, with |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
98 optional doc string DOC. Certain %-escapes in the string arguments |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
99 are interpreted specially if present. These are: |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
100 |
4344
be116c77da2f
(dbx): Use %d in gud-break.
Richard M. Stallman <rms@gnu.org>
parents:
4335
diff
changeset
|
101 %f name (without directory) of current source file. |
be116c77da2f
(dbx): Use %d in gud-break.
Richard M. Stallman <rms@gnu.org>
parents:
4335
diff
changeset
|
102 %d directory of current source file. |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
103 %l number of current source line |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
104 %e text of the C lvalue or function-call expression surrounding point. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
105 %a text of the hexadecimal address surrounding point |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
106 %p prefix argument to the command (if any) as a number |
460 | 107 |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
108 The `current' source file is the file of the current buffer (if |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
109 we're in a C file) or the source file current at the last break or |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
110 step (if we're in the GUD buffer). |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
111 The `current' line is that of the current buffer (if we're in a |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
112 source file) or the source line number at the last break or step (if |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
113 we're in the GUD buffer)." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
114 (list 'progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
115 (list 'defun func '(arg) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
116 (or doc "") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
117 '(interactive "p") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
118 (list 'gud-call cmd 'arg)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
119 (if key |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
120 (list 'define-key |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
121 '(current-local-map) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
122 (concat "\C-c" key) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
123 (list 'quote func))) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
124 (if key |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
125 (list 'global-set-key |
3343
d5fde107dbe3
(gud-def): Don't use gud-key-prefix at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
2960
diff
changeset
|
126 (list 'concat 'gud-key-prefix key) |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
127 (list 'quote func))))) |
460 | 128 |
1275
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
129 ;; Where gud-display-frame should put the debugging arrow. This is |
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
130 ;; set by the marker-filter, which scans the debugger's output for |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
131 ;; indications of the current program counter. |
1275
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
132 (defvar gud-last-frame nil) |
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
133 |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
134 ;; Used by gud-refresh, which should cause gud-display-frame to redisplay |
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
135 ;; the last frame, even if it's been called before and gud-last-frame has |
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
136 ;; been set to nil. |
4335
907bf380e92e
* gud.el (gud-last-last-frame): Specify initial value. `dbx'
Jim Blandy <jimb@redhat.com>
parents:
4298
diff
changeset
|
137 (defvar gud-last-last-frame nil) |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
138 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
139 ;; All debugger-specific information is collected here. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
140 ;; Here's how it works, in case you ever need to add a debugger to the mode. |
460 | 141 ;; |
142 ;; Each entry must define the following at startup: | |
143 ;; | |
144 ;;<name> | |
145 ;; comint-prompt-regexp | |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
146 ;; gud-<name>-massage-args |
460 | 147 ;; gud-<name>-marker-filter |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
148 ;; gud-<name>-find-file |
460 | 149 ;; |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
150 ;; The job of the massage-args method is to modify the given list of |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
151 ;; debugger arguments before running the debugger. |
477 | 152 ;; |
153 ;; The job of the marker-filter method is to detect file/line markers in | |
154 ;; strings and set the global gud-last-frame to indicate what display | |
155 ;; action (if any) should be triggered by the marker. Note that only | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3551
diff
changeset
|
156 ;; whatever the method *returns* is displayed in the buffer; thus, you |
477 | 157 ;; can filter the debugger's output, interpreting some and passing on |
158 ;; the rest. | |
159 ;; | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
160 ;; The job of the find-file method is to visit and return the buffer indicated |
477 | 161 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
162 ;; something else. It would be good if it also copied the Gud menubar entry. |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
163 |
460 | 164 ;; ====================================================================== |
165 ;; gdb functions | |
166 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
167 ;;; History of argument lists passed to gdb. |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
168 (defvar gud-gdb-history nil) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
169 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
170 (defun gud-gdb-massage-args (file args) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
171 (cons "-fullname" args)) |
460 | 172 |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
173 ;; There's no guarantee that Emacs will hand the filter the entire |
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
174 ;; marker at once; it could be broken up across several strings. We |
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
175 ;; might even receive a big chunk with several markers in it. If we |
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
176 ;; receive a chunk of text which looks like it might contain the |
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
177 ;; beginning of a marker, we save it here between calls to the |
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
178 ;; filter. |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
179 (defvar gud-marker-acc "") |
7317
ce56b572b5c8
(gud-marker-acc): Use make-variable-buffer-local.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
180 (make-variable-buffer-local 'gud-marker-acc) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
181 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
182 (defun gud-gdb-marker-filter (string) |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
183 (setq gud-marker-acc (concat gud-marker-acc string)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
184 (let ((output "")) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
185 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
186 ;; Process all the complete markers in this chunk. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
187 (while (string-match "\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n" |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
188 gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
189 (setq |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
190 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
191 ;; Extract the frame position from the marker. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
192 gud-last-frame |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
193 (cons (substring gud-marker-acc (match-beginning 1) (match-end 1)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
194 (string-to-int (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
195 (match-beginning 2) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
196 (match-end 2)))) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
197 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
198 ;; Append any text before the marker to the output we're going |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
199 ;; to return - we don't include the marker in this text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
200 output (concat output |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
201 (substring gud-marker-acc 0 (match-beginning 0))) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
202 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
203 ;; Set the accumulator to the remaining text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
204 gud-marker-acc (substring gud-marker-acc (match-end 0)))) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
205 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
206 ;; Does the remaining text look like it might end with the |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
207 ;; beginning of another marker? If it does, then keep it in |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
208 ;; gud-marker-acc until we receive the rest of it. Since we |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
209 ;; know the full marker regexp above failed, it's pretty simple to |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
210 ;; test for marker starts. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
211 (if (string-match "\032.*\\'" gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
212 (progn |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
213 ;; Everything before the potential marker start can be output. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
214 (setq output (concat output (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
215 0 (match-beginning 0)))) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
216 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
217 ;; Everything after, we save, to combine with later input. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
218 (setq gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
219 (substring gud-marker-acc (match-beginning 0)))) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
220 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
221 (setq output (concat output gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
222 gud-marker-acc "")) |
4346
3011390123ed
* gud.el (gud-gdb-marker-filter): Do not assume that the position
Jim Blandy <jimb@redhat.com>
parents:
4344
diff
changeset
|
223 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
224 output)) |
460 | 225 |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
226 (defun gud-new-keymap (map) |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
227 "Return a new keymap which inherits from MAP and has name `Gud'." |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
228 (nconc (make-sparse-keymap "Gud") map)) |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
229 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
230 (defun gud-gdb-find-file (f) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
231 (save-excursion |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
232 (let ((buf (find-file-noselect f))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
233 (set-buffer buf) |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
234 (use-local-map (gud-new-keymap (current-local-map))) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
235 (define-key (current-local-map) [menu-bar debug] |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
236 (cons "Gud" (gud-new-keymap gud-menu-map))) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
237 (local-set-key [menu-bar debug tbreak] |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
238 '("Temporary breakpoint" . gud-tbreak)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
239 (local-set-key [menu-bar debug finish] '("Finish function" . gud-finish)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
240 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
241 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
242 buf))) |
460 | 243 |
6238
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
244 (defvar gdb-minibuffer-local-map nil |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
245 "Keymap for minibuffer prompting of gdb startup command.") |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
246 (if gdb-minibuffer-local-map |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
247 () |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
248 (setq gdb-minibuffer-local-map (copy-keymap minibuffer-local-map)) |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
249 (define-key |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
250 gdb-minibuffer-local-map "\C-i" 'comint-dynamic-complete-filename)) |
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
251 |
477 | 252 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
253 (defun gdb (command-line) |
460 | 254 "Run gdb on program FILE in buffer *gud-FILE*. |
255 The directory containing FILE becomes the initial working directory | |
256 and source-file directory for your debugger." | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
257 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
258 (list (read-from-minibuffer "Run gdb (like this): " |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
259 (if (consp gud-gdb-history) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
260 (car gud-gdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
261 "gdb ") |
6238
fab2ffdf64d5
(gdb): Use a minibuffer map with TAB to complete a filename.
Karl Heuer <kwzh@gnu.org>
parents:
5997
diff
changeset
|
262 gdb-minibuffer-local-map nil |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
263 '(gud-gdb-history . 1)))) |
460 | 264 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
265 (gud-common-init command-line 'gud-gdb-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
266 'gud-gdb-marker-filter 'gud-gdb-find-file) |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
267 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
268 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.") |
10203
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
269 (gud-def gud-tbreak "tbreak %f:%l" "\C-t" "Set temporary breakpoint at current line.") |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
270 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line") |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
271 (gud-def gud-step "step %p" "\C-s" "Step one source line with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
272 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
273 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
274 (gud-def gud-cont "cont" "\C-r" "Continue with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
275 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.") |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
276 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
277 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
278 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") |
460 | 279 |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
280 (local-set-key "\C-i" 'gud-gdb-complete-command) |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
281 (local-set-key [menu-bar debug tbreak] '("Temporary breakpoint" . gud-tbreak)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
282 (local-set-key [menu-bar debug finish] '("Finish function" . gud-finish)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
283 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
284 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
460 | 285 (setq comint-prompt-regexp "^(.*gdb[+]?) *") |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
286 (setq paragraph-start comint-prompt-regexp) |
460 | 287 (run-hooks 'gdb-mode-hook) |
288 ) | |
289 | |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
290 ;; One of the nice features of GDB is its impressive support for |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
291 ;; context-sensitive command completion. We preserve that feature |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
292 ;; in the GUD buffer by using a GDB command designed just for Emacs. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
293 |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
294 ;; The completion process filter indicates when it is finished. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
295 (defvar gud-gdb-complete-in-progress) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
296 |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
297 ;; Since output may arrive in fragments we accumulate partials strings here. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
298 (defvar gud-gdb-complete-string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
299 |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
300 ;; We need to know how much of the completion to chop off. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
301 (defvar gud-gdb-complete-break) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
302 |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
303 ;; The completion list is constructed by the process filter. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
304 (defvar gud-gdb-complete-list) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
305 |
6535
01db0be5fec8
(gud-comint-buffer): Move defvar up.
Richard M. Stallman <rms@gnu.org>
parents:
6531
diff
changeset
|
306 (defvar gud-comint-buffer nil) |
01db0be5fec8
(gud-comint-buffer): Move defvar up.
Richard M. Stallman <rms@gnu.org>
parents:
6531
diff
changeset
|
307 |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
308 (defun gud-gdb-complete-command () |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
309 "Perform completion on the GDB command preceding point. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
310 This is implemented using the GDB `complete' command which isn't |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
311 available with older versions of GDB." |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
312 (interactive) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
313 (let* ((end (point)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
314 (command (save-excursion |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
315 (beginning-of-line) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
316 (and (looking-at comint-prompt-regexp) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
317 (goto-char (match-end 0))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
318 (buffer-substring (point) end))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
319 command-word) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
320 ;; Find the word break. This match will always succeed. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
321 (string-match "\\(\\`\\| \\)\\([^ ]*\\)\\'" command) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
322 (setq gud-gdb-complete-break (match-beginning 2) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
323 command-word (substring command gud-gdb-complete-break)) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
324 ;; Temporarily install our filter function. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
325 (let ((gud-marker-filter 'gud-gdb-complete-filter)) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
326 ;; Issue the command to GDB. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
327 (gud-basic-call (concat "complete " command)) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
328 (setq gud-gdb-complete-in-progress t |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
329 gud-gdb-complete-string nil |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
330 gud-gdb-complete-list nil) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
331 ;; Slurp the output. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
332 (while gud-gdb-complete-in-progress |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
333 (accept-process-output (get-buffer-process gud-comint-buffer)))) |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
334 ;; Protect against old versions of GDB. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
335 (and gud-gdb-complete-list |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
336 (string-match "^Undefined command: \"complete\"" |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
337 (car gud-gdb-complete-list)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
338 (error "This version of GDB doesn't support the `complete' command.")) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
339 ;; Sort the list like readline. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
340 (setq gud-gdb-complete-list |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
341 (sort gud-gdb-complete-list (function string-lessp))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
342 ;; Remove duplicates. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
343 (let ((first gud-gdb-complete-list) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
344 (second (cdr gud-gdb-complete-list))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
345 (while second |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
346 (if (string-equal (car first) (car second)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
347 (setcdr first (setq second (cdr second))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
348 (setq first second |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
349 second (cdr second))))) |
9816
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
350 ;; Add a trailing single quote if there is a unique completion |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
351 ;; and it contains an odd number of unquoted single quotes. |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
352 (and (= (length gud-gdb-complete-list) 1) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
353 (let ((str (car gud-gdb-complete-list)) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
354 (pos 0) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
355 (count 0)) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
356 (while (string-match "\\([^'\\]\\|\\\\'\\)*'" str pos) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
357 (setq count (1+ count) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
358 pos (match-end 0))) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
359 (and (= (mod count 2) 1) |
433b0117220b
(gud-gdb-complete-command): Add a trailing single quote to partially quoted
Karl Heuer <kwzh@gnu.org>
parents:
9743
diff
changeset
|
360 (setq gud-gdb-complete-list (list (concat str "'")))))) |
6531
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
361 ;; Let comint handle the rest. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
362 (comint-dynamic-simple-complete command-word gud-gdb-complete-list))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
363 |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
364 ;; The completion process filter is installed temporarily to slurp the |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
365 ;; output of GDB up to the next prompt and build the completion list. |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
366 (defun gud-gdb-complete-filter (string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
367 (setq string (concat gud-gdb-complete-string string)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
368 (while (string-match "\n" string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
369 (setq gud-gdb-complete-list |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
370 (cons (substring string gud-gdb-complete-break (match-beginning 0)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
371 gud-gdb-complete-list)) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
372 (setq string (substring string (match-end 0)))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
373 (if (string-match comint-prompt-regexp string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
374 (progn |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
375 (setq gud-gdb-complete-in-progress nil) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
376 string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
377 (progn |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
378 (setq gud-gdb-complete-string string) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
379 ""))) |
bd13d17fb770
(gud-gdb-complete-command): New defun to support true
Richard M. Stallman <rms@gnu.org>
parents:
6361
diff
changeset
|
380 |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
381 |
460 | 382 ;; ====================================================================== |
383 ;; sdb functions | |
384 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
385 ;;; History of argument lists passed to sdb. |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
386 (defvar gud-sdb-history nil) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
387 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
388 (defvar gud-sdb-needs-tags (not (file-exists-p "/var")) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
389 "If nil, we're on a System V Release 4 and don't need the tags hack.") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
390 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
391 (defvar gud-sdb-lastfile nil) |
460 | 392 |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
393 (defun gud-sdb-massage-args (file args) args) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
394 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
395 (defun gud-sdb-marker-filter (string) |
10319
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
396 (setq gud-marker-acc |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
397 (if gud-marker-acc (concat gud-marker-acc string) string)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
398 (let (start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
399 ;; Process all complete markers in this chunk |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
400 (while |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
401 (cond |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
402 ;; System V Release 3.2 uses this format |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
403 ((string-match "\\(^0x\\w* in \\|^\\|\n\\)\\([^:\n]*\\):\\([0-9]*\\):.*\n" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
404 gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
405 (setq gud-last-frame |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
406 (cons |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
407 (substring gud-marker-acc (match-beginning 2) (match-end 2)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
408 (string-to-int |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
409 (substring gud-marker-acc (match-beginning 3) (match-end 3)))))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
410 ;; System V Release 4.0 quite often clumps two lines together |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
411 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n\\([0-9]+\\):" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
412 gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
413 (setq gud-sdb-lastfile |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
414 (substring gud-marker-acc (match-beginning 2) (match-end 2))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
415 (setq gud-last-frame |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
416 (cons |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
417 gud-sdb-lastfile |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
418 (string-to-int |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
419 (substring gud-marker-acc (match-beginning 3) (match-end 3)))))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
420 ;; System V Release 4.0 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
421 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
422 gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
423 (setq gud-sdb-lastfile |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
424 (substring gud-marker-acc (match-beginning 2) (match-end 2)))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
425 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
426 gud-marker-acc start)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
427 (setq gud-last-frame |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
428 (cons |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
429 gud-sdb-lastfile |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
430 (string-to-int |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
431 (substring gud-marker-acc (match-beginning 1) (match-end 1)))))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
432 (t |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
433 (setq gud-sdb-lastfile nil))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
434 (setq start (match-end 0))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
435 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
436 ;; Search for the last incomplete line in this chunk |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
437 (while (string-match "\n" gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
438 (setq start (match-end 0))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
439 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
440 ;; If we have an incomplete line, store it in gud-marker-acc. |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
441 ;; Otherwise clear gud-marker-acc. to avoid an |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
442 ;; unnecessary concat when this function runs next. |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
443 (setq gud-marker-acc |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
444 (if (= start (length gud-marker-acc)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
445 (substring gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
446 nil))) |
460 | 447 string) |
448 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
449 (defun gud-sdb-find-file (f) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
450 (save-excursion |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
451 (let ((buf (if gud-sdb-needs-tags |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
452 (find-tag-noselect f) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
453 (find-file-noselect f)))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
454 (set-buffer buf) |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
455 (use-local-map (gud-new-keymap (current-local-map))) |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
456 (define-key (current-local-map) [menu-bar debug] |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
457 (cons "Gud" (gud-new-keymap gud-menu-map))) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
458 (local-set-key [menu-bar debug tbreak] '("Temporary breakpoint" . gud-tbreak)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
459 buf))) |
460 | 460 |
477 | 461 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
462 (defun sdb (command-line) |
460 | 463 "Run sdb on program FILE in buffer *gud-FILE*. |
464 The directory containing FILE becomes the initial working directory | |
465 and source-file directory for your debugger." | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
466 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
467 (list (read-from-minibuffer "Run sdb (like this): " |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
468 (if (consp gud-sdb-history) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
469 (car gud-sdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
470 "sdb ") |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
471 nil nil |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
472 '(gud-sdb-history . 1)))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
473 (if (and gud-sdb-needs-tags |
7461
1ce5d720b347
(sdb): Handle tags-file-name as nil.
Richard M. Stallman <rms@gnu.org>
parents:
7429
diff
changeset
|
474 (not (and (boundp 'tags-file-name) |
1ce5d720b347
(sdb): Handle tags-file-name as nil.
Richard M. Stallman <rms@gnu.org>
parents:
7429
diff
changeset
|
475 (stringp tags-file-name) |
1ce5d720b347
(sdb): Handle tags-file-name as nil.
Richard M. Stallman <rms@gnu.org>
parents:
7429
diff
changeset
|
476 (file-exists-p tags-file-name)))) |
460 | 477 (error "The sdb support requires a valid tags table to work.")) |
478 | |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
479 (gud-common-init command-line 'gud-sdb-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
480 'gud-sdb-marker-filter 'gud-sdb-find-file) |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
481 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
482 (gud-def gud-break "%l b" "\C-b" "Set breakpoint at current line.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
483 (gud-def gud-tbreak "%l c" "\C-t" "Set temporary breakpoint at current line.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
484 (gud-def gud-remove "%l d" "\C-d" "Remove breakpoint at current line") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
485 (gud-def gud-step "s %p" "\C-s" "Step one source line with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
486 (gud-def gud-stepi "i %p" "\C-i" "Step one instruction with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
487 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
488 (gud-def gud-cont "c" "\C-r" "Continue with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
489 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.") |
460 | 490 |
1255 | 491 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*") |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
492 (setq paragraph-start comint-prompt-regexp) |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
493 (local-set-key [menu-bar debug tbreak] |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
494 '("Temporary breakpoint" . gud-tbreak)) |
460 | 495 (run-hooks 'sdb-mode-hook) |
496 ) | |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
497 |
460 | 498 ;; ====================================================================== |
499 ;; dbx functions | |
500 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
501 ;;; History of argument lists passed to dbx. |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
502 (defvar gud-dbx-history nil) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
503 |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
504 (defun gud-dbx-massage-args (file args) args) |
460 | 505 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
506 (defun gud-dbx-marker-filter (string) |
10319
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
507 (setq gud-marker-acc (if gud-marker-acc (concat gud-marker-acc string) string)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
508 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
509 (let (start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
510 ;; Process all complete markers in this chunk. |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
511 (while (or (string-match |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
512 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
513 gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
514 (string-match |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
515 "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
516 gud-marker-acc start)) |
460 | 517 (setq gud-last-frame |
518 (cons | |
10319
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
519 (substring gud-marker-acc (match-beginning 2) (match-end 2)) |
460 | 520 (string-to-int |
10319
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
521 (substring gud-marker-acc (match-beginning 1) (match-end 1)))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
522 start (match-end 0))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
523 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
524 ;; Search for the last incomplete line in this chunk |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
525 (while (string-match "\n" gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
526 (setq start (match-end 0))) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
527 |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
528 ;; If the incomplete line APPEARS to begin with another marker, keep it |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
529 ;; in the accumulator. Otherwise, clear the accumulator to avoid an |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
530 ;; unnecessary concat during the next call. |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
531 (setq gud-marker-acc |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
532 (if (string-match "\\(stopped\\|signal\\)" gud-marker-acc start) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
533 (substring gud-marker-acc (match-beginning 0)) |
bf67e2fdd393
(gud-dbx-marker-filter): Use gud-marker-acc like gud-gdb-marker-filter.
Richard M. Stallman <rms@gnu.org>
parents:
10217
diff
changeset
|
534 nil))) |
460 | 535 string) |
536 | |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
537 ;; Functions for Mips-style dbx. Given the option `-emacs', documented in |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
538 ;; OSF1, not necessarily elsewhere, it produces markers similar to gdb's. |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
539 (defvar gud-mips-p |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
540 (or (string-match "^mips-[^-]*-ultrix" system-configuration) |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
541 ;; We haven't tested gud on this system: |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
542 (string-match "^mips-[^-]*-riscos" system-configuration) |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
543 ;; It's documented on OSF/1.3 |
8172
1eb5638ab4b5
(gud-mips-p): Check for OSF system on Alpha also.
Richard M. Stallman <rms@gnu.org>
parents:
7910
diff
changeset
|
544 (string-match "^mips-[^-]*-osf1" system-configuration) |
1eb5638ab4b5
(gud-mips-p): Check for OSF system on Alpha also.
Richard M. Stallman <rms@gnu.org>
parents:
7910
diff
changeset
|
545 (string-match "^alpha-[^-]*-osf" system-configuration)) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
546 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').") |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
547 |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
548 (defun gud-mipsdbx-massage-args (file args) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
549 (cons "-emacs" args)) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
550 |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
551 ;; This is just like the gdb one except for the regexps since we need to cope |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
552 ;; with an optional breakpoint number in [] before the ^Z^Z |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
553 (defun gud-mipsdbx-marker-filter (string) |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
554 (setq gud-marker-acc (concat gud-marker-acc string)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
555 (let ((output "")) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
556 |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
557 ;; Process all the complete markers in this chunk. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
558 (while (string-match |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
559 ;; This is like th gdb marker but with an optional |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
560 ;; leading break point number like `[1] ' |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
561 "[][ 0-9]*\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n" |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
562 gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
563 (setq |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
564 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
565 ;; Extract the frame position from the marker. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
566 gud-last-frame |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
567 (cons (substring gud-marker-acc (match-beginning 1) (match-end 1)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
568 (string-to-int (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
569 (match-beginning 2) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
570 (match-end 2)))) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
571 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
572 ;; Append any text before the marker to the output we're going |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
573 ;; to return - we don't include the marker in this text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
574 output (concat output |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
575 (substring gud-marker-acc 0 (match-beginning 0))) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
576 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
577 ;; Set the accumulator to the remaining text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
578 gud-marker-acc (substring gud-marker-acc (match-end 0)))) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
579 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
580 ;; Does the remaining text look like it might end with the |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
581 ;; beginning of another marker? If it does, then keep it in |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
582 ;; gud-marker-acc until we receive the rest of it. Since we |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
583 ;; know the full marker regexp above failed, it's pretty simple to |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
584 ;; test for marker starts. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
585 (if (string-match "[][ 0-9]*\032.*\\'" gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
586 (progn |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
587 ;; Everything before the potential marker start can be output. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
588 (setq output (concat output (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
589 0 (match-beginning 0)))) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
590 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
591 ;; Everything after, we save, to combine with later input. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
592 (setq gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
593 (substring gud-marker-acc (match-beginning 0)))) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
594 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
595 (setq output (concat output gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
596 gud-marker-acc "")) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
597 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
598 output)) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
599 |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
600 ;; The dbx in IRIX is a pain. It doesn't print the file name when |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
601 ;; stopping at a breakpoint (but you do get it from the `up' and |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
602 ;; `down' commands...). The only way to extract the information seems |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
603 ;; to be with a `file' command, although the current line number is |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
604 ;; available in $curline. Thus we have to look for output which |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
605 ;; appears to indicate a breakpoint. Then we prod the dbx sub-process |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
606 ;; to output the information we want with a combination of the |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
607 ;; `printf' and `file' commands as a pseudo marker which we can |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
608 ;; recognise next time through the marker-filter. This would be like |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
609 ;; the gdb marker but you can't get the file name without a newline... |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
610 ;; Note that gud-remove won't work since Irix dbx expects a breakpoint |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
611 ;; number rather than a line number etc. Maybe this could be made to |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
612 ;; work by listing all the breakpoints and picking the one(s) with the |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
613 ;; correct line number, but life's too short. |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
614 ;; d.love@dl.ac.uk (Dave Love) can be blamed for this |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
615 |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
616 (defvar gud-irix-p (string-match "^mips-[^-]*-irix" system-configuration) |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
617 "Non-nil to assume the interface appropriate for IRIX dbx. |
10203
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
618 This works in IRIX 4, 5 and 6.") |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
619 ;; [Irix dbx seems to be a moving target. The dbx output changed |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
620 ;; subtly sometime between OS v4.0.5 and v5.2 so that, for instance, |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
621 ;; the output from `up' is no longer spotted by gud (and it's probably |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
622 ;; not distinctive enough to try to match it -- use C-<, C-> |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
623 ;; exclusively) . For 5.3 and 6.0, the $curline variable changed to |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
624 ;; `long long'(why?!), so the printf stuff needed changing. The line |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
625 ;; number is cast to `long' as a compromise between the new `long |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
626 ;; long' and the original `int'. The process filter is also somewhat |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
627 ;; unreliable, sometimes not spotting the markers; I don't know |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
628 ;; whether there's anything that can be done about that. It would be |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
629 ;; much better if SGI could be persuaded to (re?)instate the MIPS |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
630 ;; -emacs flag for gdb-like output (which ought to be possible as most |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
631 ;; of the communication I've had over it has been from sgi.com).] |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
632 |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
633 ;; this filter is influenced by the xdb one rather than the gdb one |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
634 (defun gud-irixdbx-marker-filter (string) |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
635 (let (result (case-fold-search nil)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
636 (if (or (string-match comint-prompt-regexp string) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
637 (string-match ".*\012" string)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
638 (setq result (concat gud-marker-acc string) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
639 gud-marker-acc "") |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
640 (setq gud-marker-acc (concat gud-marker-acc string))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
641 (if result |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
642 (cond |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
643 ;; look for breakpoint or signal indication e.g.: |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
644 ;; [2] Process 1267 (pplot) stopped at [params:338 ,0x400ec0] |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
645 ;; Process 1281 (pplot) stopped at [params:339 ,0x400ec8] |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
646 ;; Process 1270 (pplot) Floating point exception [._read._read:16 ,0x452188] |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
647 ((string-match |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
648 "^\\(\\[[0-9]+] \\)?Process +[0-9]+ ([^)]*) [^[]+\\[[^]\n]*]\n" |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
649 result) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
650 ;; prod dbx into printing out the line number and file |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
651 ;; name in a form we can grok as below |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
652 (process-send-string (get-buffer-process gud-comint-buffer) |
10447
55bc74681031
(dbx): Fix missing cast of $curline for Irix.
Richard M. Stallman <rms@gnu.org>
parents:
10319
diff
changeset
|
653 "printf \"\032\032%1d:\",(long)$curline;file\n")) |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
654 ;; look for result of, say, "up" e.g.: |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
655 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c] |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
656 ;; (this will also catch one of the lines printed by "where") |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
657 ((string-match |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
658 "^[^ ][^[]*\\[\"\\([^\"]+\\)\":\\([0-9]+\\), [^]]+]\n" |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
659 result) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
660 (let ((file (substring result (match-beginning 1) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
661 (match-end 1)))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
662 (if (file-exists-p file) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
663 (setq gud-last-frame |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
664 (cons |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
665 (substring |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
666 result (match-beginning 1) (match-end 1)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
667 (string-to-int |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
668 (substring |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
669 result (match-beginning 2) (match-end 2))))))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
670 result) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
671 ((string-match ; kluged-up marker as above |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
672 "\032\032\\([0-9]*\\):\\(.*\\)\n" result) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
673 (let ((file (substring result (match-beginning 2) (match-end 2)))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
674 (if (file-exists-p file) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
675 (setq gud-last-frame |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
676 (cons |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
677 file |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
678 (string-to-int |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
679 (substring |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
680 result (match-beginning 1) (match-end 1))))))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
681 (setq result (substring result 0 (match-beginning 0)))))) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
682 (or result ""))) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
683 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
684 (defun gud-dbx-find-file (f) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
685 (save-excursion |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
686 (let ((buf (find-file-noselect f))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
687 (set-buffer buf) |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
688 (use-local-map (gud-new-keymap (current-local-map))) |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
689 (define-key (current-local-map) [menu-bar debug] |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
690 (cons "Gud" (gud-new-keymap gud-menu-map))) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
691 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
692 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
693 buf))) |
460 | 694 |
477 | 695 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
696 (defun dbx (command-line) |
460 | 697 "Run dbx on program FILE in buffer *gud-FILE*. |
698 The directory containing FILE becomes the initial working directory | |
699 and source-file directory for your debugger." | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
700 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
701 (list (read-from-minibuffer "Run dbx (like this): " |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
702 (if (consp gud-dbx-history) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
703 (car gud-dbx-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
704 "dbx ") |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
705 nil nil |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
706 '(gud-dbx-history . 1)))) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
707 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
708 (cond |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
709 (gud-mips-p |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
710 (gud-common-init command-line 'gud-mipsdbx-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
711 'gud-mipsdbx-marker-filter 'gud-dbx-find-file)) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
712 (gud-irix-p |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
713 (gud-common-init command-line 'gud-dbx-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
714 'gud-irixdbx-marker-filter 'gud-dbx-find-file)) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
715 (t |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
716 (gud-common-init command-line 'gud-dbx-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
717 'gud-dbx-marker-filter 'gud-dbx-find-file))) |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
718 |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
719 (cond |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
720 (gud-mips-p |
10203
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
721 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
722 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
723 (gud-def gud-break "stop at \"%f\":%l" |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
724 "\C-b" "Set breakpoint at current line.") |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
725 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
726 (gud-irix-p |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
727 (gud-def gud-break "stop at \"%d%f\":%l" |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
728 "\C-b" "Set breakpoint at current line.") |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
729 (gud-def gud-finish "return" "\C-f" "Finish executing current function.") |
10203
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
730 (gud-def gud-up "up %p; printf \"\032\032%1ld:\",(long)$curline;file\n" |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
731 "<" "Up (numeric arg) stack frames.") |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
732 (gud-def gud-down "down %p; printf \"\032\032%1ld:\",(long)$curline;file\n" |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
733 ">" "Down (numeric arg) stack frames.") |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
734 ;; Make dbx give out the source location info that we need. |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
735 (process-send-string (get-buffer-process gud-comint-buffer) |
10447
55bc74681031
(dbx): Fix missing cast of $curline for Irix.
Richard M. Stallman <rms@gnu.org>
parents:
10319
diff
changeset
|
736 "printf \"\032\032%1d:\",(long)$curline;file\n")) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
737 (t |
10203
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
738 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") |
c1f7894118f9
(gud-irixdbx-marker-filter): Changes for Irix dbx.
Richard M. Stallman <rms@gnu.org>
parents:
10095
diff
changeset
|
739 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
740 (gud-def gud-break "file \"%d%f\"\nstop at %l" |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
741 "\C-b" "Set breakpoint at current line."))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
742 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
743 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
744 (gud-def gud-step "step %p" "\C-s" "Step one line with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
745 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
746 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
747 (gud-def gud-cont "cont" "\C-r" "Continue with display.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
748 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
749 |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
750 (setq comint-prompt-regexp "^[^)\n]*dbx) *") |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
751 (setq paragraph-start comint-prompt-regexp) |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
752 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
753 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
460 | 754 (run-hooks 'dbx-mode-hook) |
755 ) | |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
756 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
757 ;; ====================================================================== |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
758 ;; xdb (HP PARISC debugger) functions |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
759 |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
760 ;;; History of argument lists passed to xdb. |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
761 (defvar gud-xdb-history nil) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
762 |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
763 (defvar gud-xdb-directories nil |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
764 "*A list of directories that xdb should search for source code. |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
765 If nil, only source files in the program directory |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
766 will be known to xdb. |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
767 |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
768 The file names should be absolute, or relative to the directory |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
769 containing the executable being debugged.") |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
770 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
771 (defun gud-xdb-massage-args (file args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
772 (nconc (let ((directories gud-xdb-directories) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
773 (result nil)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
774 (while directories |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
775 (setq result (cons (car directories) (cons "-d" result))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
776 (setq directories (cdr directories))) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
777 (nreverse result)) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
778 args)) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
779 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
780 (defun gud-xdb-file-name (f) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
781 "Transform a relative pathname to a full pathname in xdb mode" |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
782 (let ((result nil)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
783 (if (file-exists-p f) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
784 (setq result (expand-file-name f)) |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
785 (let ((directories gud-xdb-directories)) |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
786 (while directories |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
787 (let ((path (concat (car directories) "/" f))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
788 (if (file-exists-p path) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
789 (setq result (expand-file-name path) |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
790 directories nil))) |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
791 (setq directories (cdr directories))))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
792 result)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
793 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
794 ;; xdb does not print the lines all at once, so we have to accumulate them |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
795 (defun gud-xdb-marker-filter (string) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
796 (let (result) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
797 (if (or (string-match comint-prompt-regexp string) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
798 (string-match ".*\012" string)) |
7165
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
799 (setq result (concat gud-marker-acc string) |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
800 gud-marker-acc "") |
d53c76129763
(gud-mips-p, gud-irix-p): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
7074
diff
changeset
|
801 (setq gud-marker-acc (concat gud-marker-acc string))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
802 (if result |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
803 (if (or (string-match "\\([^\n \t:]+\\): [^:]+: \\([0-9]+\\):" result) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
804 (string-match "[^: \t]+:[ \t]+\\([^:]+\\): [^:]+: \\([0-9]+\\):" |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
805 result)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
806 (let ((line (string-to-int |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
807 (substring result (match-beginning 2) (match-end 2)))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
808 (file (gud-xdb-file-name |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
809 (substring result (match-beginning 1) (match-end 1))))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
810 (if file |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
811 (setq gud-last-frame (cons file line)))))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
812 (or result ""))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
813 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
814 (defun gud-xdb-find-file (f) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
815 (save-excursion |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
816 (let ((realf (gud-xdb-file-name f))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
817 (if realf |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
818 (let ((buf (find-file-noselect realf))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
819 (set-buffer buf) |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
820 (use-local-map (gud-new-keymap (current-local-map))) |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
821 (define-key (current-local-map) [menu-bar debug] |
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
822 (cons "Gud" (gud-new-keymap gud-menu-map))) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
823 (local-set-key [menu-bar debug tbreak] |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
824 '("Temporary breakpoint" . gud-tbreak)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
825 (local-set-key [menu-bar debug finish] |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
826 '("Finish function" . gud-finish)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
827 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
828 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
829 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
830 buf) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
831 nil)))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
832 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
833 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
834 (defun xdb (command-line) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
835 "Run xdb on program FILE in buffer *gud-FILE*. |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
836 The directory containing FILE becomes the initial working directory |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
837 and source-file directory for your debugger. |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
838 |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
839 You can set the variable 'gud-xdb-directories' to a list of program source |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
840 directories if your program contains sources from more than one directory." |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
841 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
842 (list (read-from-minibuffer "Run xdb (like this): " |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
843 (if (consp gud-xdb-history) |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
844 (car gud-xdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
845 "xdb ") |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
846 nil nil |
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
847 '(gud-xdb-history . 1)))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
848 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
849 (gud-common-init command-line 'gud-xdb-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
850 'gud-xdb-marker-filter 'gud-xdb-find-file) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
851 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
852 (gud-def gud-break "b %f:%l" "\C-b" "Set breakpoint at current line.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
853 (gud-def gud-tbreak "b %f:%l\\t" "\C-t" |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
854 "Set temporary breakpoint at current line.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
855 (gud-def gud-remove "db" "\C-d" "Remove breakpoint at current line") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
856 (gud-def gud-step "s %p" "\C-s" "Step one line with display.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
857 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
858 (gud-def gud-cont "c" "\C-r" "Continue with display.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
859 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
860 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
861 (gud-def gud-finish "bu\\t" "\C-f" "Finish executing current function.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
862 (gud-def gud-print "p %e" "\C-p" "Evaluate C expression at point.") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
863 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
864 (setq comint-prompt-regexp "^>") |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
865 (setq paragraph-start comint-prompt-regexp) |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
866 (local-set-key [menu-bar debug tbreak] '("Temporary breakpoint" . gud-tbreak)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
867 (local-set-key [menu-bar debug finish] '("Finish function" . gud-finish)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
868 (local-set-key [menu-bar debug up] '("Up stack" . gud-up)) |
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
869 (local-set-key [menu-bar debug down] '("Down stack" . gud-down)) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
870 (run-hooks 'xdb-mode-hook)) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
871 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
872 ;; ====================================================================== |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
873 ;; perldb functions |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
874 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
875 ;;; History of argument lists passed to perldb. |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
876 (defvar gud-perldb-history nil) |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
877 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
878 (defun gud-perldb-massage-args (file args) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
879 (cons "-d" (cons "-emacs" args))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
880 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
881 ;; There's no guarantee that Emacs will hand the filter the entire |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
882 ;; marker at once; it could be broken up across several strings. We |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
883 ;; might even receive a big chunk with several markers in it. If we |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
884 ;; receive a chunk of text which looks like it might contain the |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
885 ;; beginning of a marker, we save it here between calls to the |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
886 ;; filter. |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
887 (defvar gud-perldb-marker-acc "") |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
888 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
889 (defun gud-perldb-marker-filter (string) |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
890 (setq gud-marker-acc (concat gud-marker-acc string)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
891 (let ((output "")) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
892 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
893 ;; Process all the complete markers in this chunk. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
894 (while (string-match "\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n" |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
895 gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
896 (setq |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
897 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
898 ;; Extract the frame position from the marker. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
899 gud-last-frame |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
900 (cons (substring gud-marker-acc (match-beginning 1) (match-end 1)) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
901 (string-to-int (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
902 (match-beginning 2) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
903 (match-end 2)))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
904 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
905 ;; Append any text before the marker to the output we're going |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
906 ;; to return - we don't include the marker in this text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
907 output (concat output |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
908 (substring gud-marker-acc 0 (match-beginning 0))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
909 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
910 ;; Set the accumulator to the remaining text. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
911 gud-marker-acc (substring gud-marker-acc (match-end 0)))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
912 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
913 ;; Does the remaining text look like it might end with the |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
914 ;; beginning of another marker? If it does, then keep it in |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
915 ;; gud-marker-acc until we receive the rest of it. Since we |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
916 ;; know the full marker regexp above failed, it's pretty simple to |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
917 ;; test for marker starts. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
918 (if (string-match "\032.*\\'" gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
919 (progn |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
920 ;; Everything before the potential marker start can be output. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
921 (setq output (concat output (substring gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
922 0 (match-beginning 0)))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
923 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
924 ;; Everything after, we save, to combine with later input. |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
925 (setq gud-marker-acc |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
926 (substring gud-marker-acc (match-beginning 0)))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
927 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
928 (setq output (concat output gud-marker-acc) |
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
929 gud-marker-acc "")) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
930 |
10042
d062993c96a0
(gud-gdb-marker-filter, gud-irixdbx-marker-filter)
Richard M. Stallman <rms@gnu.org>
parents:
9816
diff
changeset
|
931 output)) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
932 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
933 (defun gud-perldb-find-file (f) |
10448
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
934 (save-excursion |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
935 (let ((buf (find-file-noselect f))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
936 (set-buffer buf) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
937 (define-key (current-local-map) [menu-bar debug] (cons "Gud" (copy-keymap gud-menu-map))) |
ec596f12f13f
(gud-gdb-find-file): Propagate debug menu to found buffers.
Richard M. Stallman <rms@gnu.org>
parents:
10447
diff
changeset
|
938 buf))) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
939 |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
940 ;;;###autoload |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
941 (defun perldb (command-line) |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
942 "Run perldb on program FILE in buffer *gud-FILE*. |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
943 The directory containing FILE becomes the initial working directory |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
944 and source-file directory for your debugger." |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
945 (interactive |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
946 (list (read-from-minibuffer "Run perldb (like this): " |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
947 (if (consp gud-perldb-history) |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
948 (car gud-perldb-history) |
4732 | 949 "perl ") |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
950 nil nil |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
951 '(gud-perldb-history . 1)))) |
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
952 |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
953 (gud-common-init command-line 'gud-perldb-massage-args |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
954 'gud-perldb-marker-filter 'gud-perldb-find-file) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
955 |
4732 | 956 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.") |
957 (gud-def gud-remove "d %l" "\C-d" "Remove breakpoint at current line") | |
958 (gud-def gud-step "s" "\C-s" "Step one source line with display.") | |
959 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).") | |
960 (gud-def gud-cont "c" "\C-r" "Continue with display.") | |
961 ; (gud-def gud-finish "finish" "\C-f" "Finish executing current function.") | |
962 ; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") | |
963 ; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") | |
964 (gud-def gud-print "%e" "\C-p" "Evaluate perl expression at point.") | |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
965 |
4732 | 966 (setq comint-prompt-regexp "^ DB<[0-9]+> ") |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
967 (setq paragraph-start comint-prompt-regexp) |
4732 | 968 (run-hooks 'perldb-mode-hook) |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
969 ) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
970 |
460 | 971 ;; |
972 ;; End of debugger-specific information | |
477 | 973 ;; |
460 | 974 |
4729
fdbcbaea7296
(perldb): New function, plus subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
4497
diff
changeset
|
975 |
1256
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
976 ;;; When we send a command to the debugger via gud-call, it's annoying |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
977 ;;; to see the command and the new prompt inserted into the debugger's |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
978 ;;; buffer; we have other ways of knowing the command has completed. |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
979 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
980 ;;; If the buffer looks like this: |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
981 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
982 ;;; (gdb) set args foo bar |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
983 ;;; (gdb) -!- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
984 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
985 ;;; (the -!- marks the location of point), and we type `C-x SPC' in a |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
986 ;;; source file to set a breakpoint, we want the buffer to end up like |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
987 ;;; this: |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
988 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
989 ;;; (gdb) set args foo bar |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
990 ;;; Breakpoint 1 at 0x92: file make-docfile.c, line 49. |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
991 ;;; (gdb) -!- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
992 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
993 ;;; Essentially, the old prompt is deleted, and the command's output |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
994 ;;; and the new prompt take its place. |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
995 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
996 ;;; Not echoing the command is easy enough; you send it directly using |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
997 ;;; process-send-string, and it never enters the buffer. However, |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
998 ;;; getting rid of the old prompt is trickier; you don't want to do it |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
999 ;;; when you send the command, since that will result in an annoying |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1000 ;;; flicker as the prompt is deleted, redisplay occurs while Emacs |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1001 ;;; waits for a response from the debugger, and the new prompt is |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1002 ;;; inserted. Instead, we'll wait until we actually get some output |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1003 ;;; from the subprocess before we delete the prompt. If the command |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1004 ;;; produced no output other than a new prompt, that prompt will most |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1005 ;;; likely be in the first chunk of output received, so we will delete |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1006 ;;; the prompt and then replace it with an identical one. If the |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1007 ;;; command produces output, the prompt is moving anyway, so the |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1008 ;;; flicker won't be annoying. |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1009 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1010 ;;; So - when we want to delete the prompt upon receipt of the next |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1011 ;;; chunk of debugger output, we position gud-delete-prompt-marker at |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1012 ;;; the start of the prompt; the process filter will notice this, and |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1013 ;;; delete all text between it and the process output marker. If |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1014 ;;; gud-delete-prompt-marker points nowhere, we leave the current |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1015 ;;; prompt alone. |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1016 (defvar gud-delete-prompt-marker nil) |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1017 |
460 | 1018 |
1019 (defun gud-mode () | |
1020 "Major mode for interacting with an inferior debugger process. | |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1021 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1022 You start it up with one of the commands M-x gdb, M-x sdb, M-x dbx, |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1023 or M-x xdb. Each entry point finishes by executing a hook; `gdb-mode-hook', |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1024 `sdb-mode-hook', `dbx-mode-hook' or `xdb-mode-hook' respectively. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1025 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1026 After startup, the following commands are available in both the GUD |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1027 interaction buffer and any source buffer GUD visits due to a breakpoint stop |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1028 or step operation: |
460 | 1029 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1030 \\[gud-break] sets a breakpoint at the current file and line. In the |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1031 GUD buffer, the current file and line are those of the last breakpoint or |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1032 step. In a source buffer, they are the buffer's file and current line. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1033 |
2532
17a6b6d079cf
(gud-mode): Created C-c synonym bindings in the GUD buffer's local map.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2519
diff
changeset
|
1034 \\[gud-remove] removes breakpoints on the current file and line. |
17a6b6d079cf
(gud-mode): Created C-c synonym bindings in the GUD buffer's local map.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2519
diff
changeset
|
1035 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1036 \\[gud-refresh] displays in the source window the last line referred to |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1037 in the gud buffer. |
460 | 1038 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1039 \\[gud-step], \\[gud-next], and \\[gud-stepi] do a step-one-line, |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1040 step-one-line (not entering function calls), and step-one-instruction |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1041 and then update the source window with the current file and position. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1042 \\[gud-cont] continues execution. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1043 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1044 \\[gud-print] tries to find the largest C lvalue or function-call expression |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1045 around point, and sends it to the debugger for value display. |
460 | 1046 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1047 The above commands are common to all supported debuggers except xdb which |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1048 does not support stepping instructions. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1049 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1050 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break], |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1051 except that the breakpoint is temporary; that is, it is removed when |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1052 execution stops on it. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1053 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1054 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1055 frame. \\[gud-down] drops back down through one. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1056 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
1057 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1058 the current function and stops. |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1059 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1060 All the keystrokes above are accessible in the GUD buffer |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1061 with the prefix C-c, and in all buffers through the prefix C-x C-a. |
2532
17a6b6d079cf
(gud-mode): Created C-c synonym bindings in the GUD buffer's local map.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2519
diff
changeset
|
1062 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1063 All pre-defined functions for which the concept make sense repeat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1064 themselves the appropriate number of times if you give a prefix |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1065 argument. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1066 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1067 You may use the `gud-def' macro in the initialization hook to define other |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1068 commands. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1069 |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1070 Other commands for interacting with the debugger process are inherited from |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
1071 comint mode, which see." |
460 | 1072 (interactive) |
1073 (comint-mode) | |
1074 (setq major-mode 'gud-mode) | |
1075 (setq mode-name "Debugger") | |
7074
b9d86b8e3ca1
(gud-mode, gud-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
7009
diff
changeset
|
1076 (setq mode-line-process '(":%s")) |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
1077 (use-local-map (gud-new-keymap comint-mode-map)) |
5997
6187a2560211
(gud-mode): Define C-c C-l in gud buffer.
Richard M. Stallman <rms@gnu.org>
parents:
5508
diff
changeset
|
1078 (define-key (current-local-map) "\C-c\C-l" 'gud-refresh) |
10217
d112e49af18b
(gdb): Correct tbreak doc string.
Richard M. Stallman <rms@gnu.org>
parents:
10203
diff
changeset
|
1079 (define-key (current-local-map) [menu-bar debug] |
10518
d291152ebe20
(gdb): In gud-remove, specify the source file.
Richard M. Stallman <rms@gnu.org>
parents:
10448
diff
changeset
|
1080 (cons "Gud" (gud-new-keymap gud-menu-map))) |
460 | 1081 (make-local-variable 'gud-last-frame) |
1082 (setq gud-last-frame nil) | |
1083 (make-local-variable 'comint-prompt-regexp) | |
6997
efca30974157
(gdb, sdb, dbx, xdb, perldb): Set paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
6821
diff
changeset
|
1084 (make-local-variable 'paragraph-start) |
1256
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1085 (make-local-variable 'gud-delete-prompt-marker) |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1086 (setq gud-delete-prompt-marker (make-marker)) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1087 (run-hooks 'gud-mode-hook)) |
460 | 1088 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1089 ;; Chop STRING into words separated by SPC or TAB and return a list of them. |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1090 (defun gud-chop-words (string) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1091 (let ((i 0) (beg 0) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1092 (len (length string)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1093 (words nil)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1094 (while (< i len) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1095 (if (memq (aref string i) '(?\t ? )) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1096 (progn |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1097 (setq words (cons (substring string beg i) words) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1098 beg (1+ i)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1099 (while (and (< beg len) (memq (aref string beg) '(?\t ? ))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1100 (setq beg (1+ beg))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1101 (setq i (1+ beg))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1102 (setq i (1+ i)))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1103 (if (< beg len) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1104 (setq words (cons (substring string beg) words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1105 (nreverse words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1106 |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1107 ;; Perform initializations common to all debuggers. |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1108 ;; The first arg is the specified command line, |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1109 ;; which starts with the program to debug. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1110 ;; The other three args specify the values to use |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1111 ;; for local variables in the debugger buffer. |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1112 (defun gud-common-init (command-line massage-args marker-filter find-file) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1113 (let* ((words (gud-chop-words command-line)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1114 (program (car words)) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1115 ;; Extract the file name from WORDS |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1116 ;; and put t in its place. |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1117 ;; Later on we will put the modified file name arg back there. |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1118 (file-word (let ((w (cdr words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1119 (while (and w (= ?- (aref (car w) 0))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
1120 (setq w (cdr w))) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1121 (prog1 (car w) |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1122 (setcar w t)))) |
9743
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1123 (file-subst |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1124 (and file-word (substitute-in-file-name file-word))) |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1125 (args (cdr words)) |
9743
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1126 ;; If a directory was specified, expand the file name. |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1127 ;; Otherwise, don't expand it, so GDB can use the PATH. |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1128 ;; A file name without directory is literally valid |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1129 ;; only if the file exists in ., and in that case, |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1130 ;; omitting the expansion here has no visible effect. |
5508
67db1f804162
(gud-common-init): Don't crash if no file specified.
Richard M. Stallman <rms@gnu.org>
parents:
5264
diff
changeset
|
1131 (file (and file-word |
9743
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1132 (if (file-name-directory file-subst) |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1133 (expand-file-name file-subst) |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1134 file-subst))) |
5508
67db1f804162
(gud-common-init): Don't crash if no file specified.
Richard M. Stallman <rms@gnu.org>
parents:
5264
diff
changeset
|
1135 (filepart (and file-word (file-name-nondirectory file)))) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1136 (switch-to-buffer (concat "*gud-" filepart "*")) |
9743
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1137 ;; Set default-directory to the file's directory. |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1138 (and file-word |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1139 ;; Don't set default-directory if no directory was specified. |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1140 ;; In that case, either the file is found in the current directory, |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1141 ;; in which case this setq is a no-op, |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1142 ;; or it is found by searching PATH, |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1143 ;; in which case we don't know what directory it was found in. |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1144 (file-name-directory file) |
6a97ed1cc733
(gud-common-init): If file arg has no directory,
Richard M. Stallman <rms@gnu.org>
parents:
9695
diff
changeset
|
1145 (setq default-directory (file-name-directory file))) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1146 (or (bolp) (newline)) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1147 (insert "Current directory is " default-directory "\n") |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1148 ;; Put the substituted and expanded file name back in its place. |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1149 (let ((w args)) |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1150 (while (and w (not (eq (car w) t))) |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1151 (setq w (cdr w))) |
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1152 (setcar w file)) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1153 (apply 'make-comint (concat "gud-" filepart) program nil |
10876
715419786d7f
(gud-common-init): Put substed file name back in original
Richard M. Stallman <rms@gnu.org>
parents:
10518
diff
changeset
|
1154 (if file-word (funcall massage-args file args) args))) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1155 ;; Since comint clobbered the mode, we don't set it until now. |
460 | 1156 (gud-mode) |
9190
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1157 (make-local-variable 'gud-marker-filter) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1158 (setq gud-marker-filter marker-filter) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1159 (make-local-variable 'gud-find-file) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1160 (setq gud-find-file find-file) |
4e66c15e2d6c
(gud-overload-functions): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8645
diff
changeset
|
1161 |
460 | 1162 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter) |
1163 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel) | |
1164 (gud-set-buffer) | |
1165 ) | |
1166 | |
1167 (defun gud-set-buffer () | |
1168 (cond ((eq major-mode 'gud-mode) | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1169 (setq gud-comint-buffer (current-buffer))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1170 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1171 ;; These functions are responsible for inserting output from your debugger |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1172 ;; into the buffer. The hard work is done by the method that is |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1173 ;; the value of gud-marker-filter. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1174 |
460 | 1175 (defun gud-filter (proc string) |
1176 ;; Here's where the actual buffer insertion is done | |
9519
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1177 (let (output) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1178 (if (buffer-name (process-buffer proc)) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1179 (save-excursion |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1180 (set-buffer (process-buffer proc)) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1181 ;; If we have been so requested, delete the debugger prompt. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1182 (if (marker-buffer gud-delete-prompt-marker) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1183 (progn |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1184 (delete-region (process-mark proc) gud-delete-prompt-marker) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1185 (set-marker gud-delete-prompt-marker nil))) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1186 ;; Save the process output, checking for source file markers. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1187 (setq output (gud-marker-filter string)) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1188 ;; Check for a filename-and-line number. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1189 ;; Don't display the specified file |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1190 ;; unless (1) point is at or after the position where output appears |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1191 ;; and (2) this buffer is on the screen. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1192 (if (and gud-last-frame |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1193 (>= (point) (process-mark proc)) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1194 (get-buffer-window (current-buffer))) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1195 (gud-display-frame)) |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1196 ;; Let the comint filter do the actual insertion. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1197 ;; That lets us inherit various comint features. |
c7925093b270
(gud-filter): Don't bind inhibit-quit.
Richard M. Stallman <rms@gnu.org>
parents:
9191
diff
changeset
|
1198 (comint-output-filter proc output))))) |
460 | 1199 |
1200 (defun gud-sentinel (proc msg) | |
1201 (cond ((null (buffer-name (process-buffer proc))) | |
1202 ;; buffer killed | |
1203 ;; Stop displaying an arrow in a source file. | |
1204 (setq overlay-arrow-position nil) | |
1205 (set-process-buffer proc nil)) | |
1206 ((memq (process-status proc) '(signal exit)) | |
1207 ;; Stop displaying an arrow in a source file. | |
1208 (setq overlay-arrow-position nil) | |
1209 ;; Fix the mode line. | |
1210 (setq mode-line-process | |
7074
b9d86b8e3ca1
(gud-mode, gud-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
7009
diff
changeset
|
1211 (concat ":" |
460 | 1212 (symbol-name (process-status proc)))) |
1213 (let* ((obuf (current-buffer))) | |
1214 ;; save-excursion isn't the right thing if | |
1215 ;; process-buffer is current-buffer | |
1216 (unwind-protect | |
1217 (progn | |
1218 ;; Write something in *compilation* and hack its mode line, | |
1219 (set-buffer (process-buffer proc)) | |
1220 ;; Force mode line redisplay soon | |
1221 (set-buffer-modified-p (buffer-modified-p)) | |
1222 (if (eobp) | |
1223 (insert ?\n mode-name " " msg) | |
1224 (save-excursion | |
1225 (goto-char (point-max)) | |
1226 (insert ?\n mode-name " " msg))) | |
1227 ;; If buffer and mode line will show that the process | |
1228 ;; is dead, we can delete it now. Otherwise it | |
1229 ;; will stay around until M-x list-processes. | |
1230 (delete-process proc)) | |
1231 ;; Restore old buffer, but don't restore old point | |
1232 ;; if obuf is the gud buffer. | |
1233 (set-buffer obuf)))))) | |
1234 | |
1235 (defun gud-display-frame () | |
1236 "Find and obey the last filename-and-line marker from the debugger. | |
1237 Obeying it means displaying in another window the specified file and line." | |
1238 (interactive) | |
1239 (if gud-last-frame | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1240 (progn |
460 | 1241 (gud-set-buffer) |
1242 (gud-display-line (car gud-last-frame) (cdr gud-last-frame)) | |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1243 (setq gud-last-last-frame gud-last-frame |
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1244 gud-last-frame nil)))) |
460 | 1245 |
1246 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen | |
1247 ;; and that its line LINE is visible. | |
1248 ;; Put the overlay-arrow on the line LINE in that buffer. | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1249 ;; Most of the trickiness in here comes from wanting to preserve the current |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1250 ;; region-restriction if that's possible. We use an explicit display-buffer |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1251 ;; to get around the fact that this is called inside a save-excursion. |
460 | 1252 |
1253 (defun gud-display-line (true-file line) | |
7910
842db6d87566
(gud-massage-args): Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
7741
diff
changeset
|
1254 (let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions. |
842db6d87566
(gud-massage-args): Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
7741
diff
changeset
|
1255 (buffer (gud-find-file true-file)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1256 (window (display-buffer buffer)) |
460 | 1257 (pos)) |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
1258 ;;; (if (equal buffer (current-buffer)) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
1259 ;;; nil |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
1260 ;;; (setq buffer-read-only nil)) |
460 | 1261 (save-excursion |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
1262 ;;; (setq buffer-read-only t) |
460 | 1263 (set-buffer buffer) |
1264 (save-restriction | |
1265 (widen) | |
1266 (goto-line line) | |
1267 (setq pos (point)) | |
1268 (setq overlay-arrow-string "=>") | |
1269 (or overlay-arrow-position | |
1270 (setq overlay-arrow-position (make-marker))) | |
1271 (set-marker overlay-arrow-position (point) (current-buffer))) | |
1272 (cond ((or (< pos (point-min)) (> pos (point-max))) | |
1273 (widen) | |
1274 (goto-char pos)))) | |
1275 (set-window-point window overlay-arrow-position))) | |
1256
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
1276 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1277 ;;; The gud-call function must do the right thing whether its invoking |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1278 ;;; keystroke is from the GUD buffer itself (via major-mode binding) |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
1279 ;;; or a C buffer. In the former case, we want to supply data from |
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
1280 ;;; gud-last-frame. Here's how we do it: |
460 | 1281 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1282 (defun gud-format-command (str arg) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1283 (let ((insource (not (eq (current-buffer) gud-comint-buffer))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1284 (frame (or gud-last-frame gud-last-last-frame)) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1285 result) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1286 (while (and str (string-match "\\([^%]*\\)%\\([adeflp]\\)" str)) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1287 (let ((key (string-to-char (substring str (match-beginning 2)))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1288 subst) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1289 (cond |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1290 ((eq key ?f) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1291 (setq subst (file-name-nondirectory (if insource |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1292 (buffer-file-name) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1293 (car frame))))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1294 ((eq key ?d) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1295 (setq subst (file-name-directory (if insource |
4344
be116c77da2f
(dbx): Use %d in gud-break.
Richard M. Stallman <rms@gnu.org>
parents:
4335
diff
changeset
|
1296 (buffer-file-name) |
5264
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1297 (car frame))))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1298 ((eq key ?l) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1299 (setq subst (if insource |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1300 (save-excursion |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1301 (beginning-of-line) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1302 (save-restriction (widen) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1303 (1+ (count-lines 1 (point))))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1304 (cdr frame)))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1305 ((eq key ?e) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1306 (setq subst (find-c-expr))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1307 ((eq key ?a) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1308 (setq subst (gud-read-address))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1309 ((eq key ?p) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1310 (setq subst (if arg (int-to-string arg) "")))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1311 (setq result (concat result |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1312 (substring str (match-beginning 1) (match-end 1)) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1313 subst))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1314 (setq str (substring str (match-end 2)))) |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1315 ;; There might be text left in STR when the loop ends. |
a60a8979d34b
(gud-format-command): Rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
4818
diff
changeset
|
1316 (concat result str))) |
460 | 1317 |
1255 | 1318 (defun gud-read-address () |
460 | 1319 "Return a string containing the core-address found in the buffer at point." |
1320 (save-excursion | |
1255 | 1321 (let ((pt (point)) found begin) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1322 (setq found (if (search-backward "0x" (- pt 7) t) (point))) |
1255 | 1323 (cond |
1324 (found (forward-char 2) | |
1325 (buffer-substring found | |
1326 (progn (re-search-forward "[^0-9a-f]") | |
1327 (forward-char -1) | |
1328 (point)))) | |
1329 (t (setq begin (progn (re-search-backward "[^0-9]") | |
1330 (forward-char 1) | |
1331 (point))) | |
1332 (forward-char 1) | |
1333 (re-search-forward "[^0-9]") | |
1334 (forward-char -1) | |
1335 (buffer-substring begin (point))))))) | |
460 | 1336 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1337 (defun gud-call (fmt &optional arg) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1338 (let ((msg (gud-format-command fmt arg))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1339 (message "Command: %s" msg) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1340 (sit-for 0) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1341 (gud-basic-call msg))) |
460 | 1342 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1343 (defun gud-basic-call (command) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1344 "Invoke the debugger COMMAND displaying source in other window." |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1345 (interactive) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1346 (gud-set-buffer) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1347 (let ((command (concat command "\n")) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1348 (proc (get-buffer-process gud-comint-buffer))) |
10095
ace8ae9f015f
(gud-basic-call): Detect error earlier.
Karl Heuer <kwzh@gnu.org>
parents:
10042
diff
changeset
|
1349 (or proc (error "Current buffer has no process")) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1350 ;; Arrange for the current prompt to get deleted. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1351 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1352 (set-buffer gud-comint-buffer) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1353 (goto-char (process-mark proc)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1354 (beginning-of-line) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1355 (if (looking-at comint-prompt-regexp) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1356 (set-marker gud-delete-prompt-marker (point)))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1357 (process-send-string proc command))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1358 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1359 (defun gud-refresh (&optional arg) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1360 "Fix up a possibly garbled display, and redraw the arrow." |
460 | 1361 (interactive "P") |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1362 (recenter arg) |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1363 (or gud-last-frame (setq gud-last-frame gud-last-last-frame)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1364 (gud-display-frame)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1365 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1366 ;;; Code for parsing expressions out of C code. The single entry point is |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1367 ;;; find-c-expr, which tries to return an lvalue expression from around point. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1368 ;;; |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1369 ;;; The rest of this file is a hacked version of gdbsrc.el by |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1370 ;;; Debby Ayers <ayers@asc.slb.com>, |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1371 ;;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1372 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1373 (defun find-c-expr () |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1374 "Returns the C expr that surrounds point." |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1375 (interactive) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1376 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1377 (let ((p) (expr) (test-expr)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1378 (setq p (point)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1379 (setq expr (expr-cur)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1380 (setq test-expr (expr-prev)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1381 (while (expr-compound test-expr expr) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1382 (setq expr (cons (car test-expr) (cdr expr))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1383 (goto-char (car expr)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1384 (setq test-expr (expr-prev))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1385 (goto-char p) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1386 (setq test-expr (expr-next)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1387 (while (expr-compound expr test-expr) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1388 (setq expr (cons (car expr) (cdr test-expr))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1389 (setq test-expr (expr-next)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1390 ) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1391 (buffer-substring (car expr) (cdr expr))))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1392 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1393 (defun expr-cur () |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1394 "Returns the expr that point is in; point is set to beginning of expr. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1395 The expr is represented as a cons cell, where the car specifies the point in |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1396 the current buffer that marks the beginning of the expr and the cdr specifies |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1397 the character after the end of the expr." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1398 (let ((p (point)) (begin) (end)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1399 (expr-backward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1400 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1401 (expr-forward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1402 (setq end (point)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1403 (if (>= p end) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1404 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1405 (setq begin p) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1406 (goto-char p) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1407 (expr-forward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1408 (setq end (point)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1409 ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1410 ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1411 (goto-char begin) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1412 (cons begin end))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1413 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1414 (defun expr-backward-sexp () |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1415 "Version of `backward-sexp' that catches errors." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1416 (condition-case nil |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1417 (backward-sexp) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1418 (error t))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1419 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1420 (defun expr-forward-sexp () |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1421 "Version of `forward-sexp' that catches errors." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1422 (condition-case nil |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1423 (forward-sexp) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1424 (error t))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1425 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1426 (defun expr-prev () |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1427 "Returns the previous expr, point is set to beginning of that expr. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1428 The expr is represented as a cons cell, where the car specifies the point in |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1429 the current buffer that marks the beginning of the expr and the cdr specifies |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1430 the character after the end of the expr" |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1431 (let ((begin) (end)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1432 (expr-backward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1433 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1434 (expr-forward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1435 (setq end (point)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1436 (goto-char begin) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1437 (cons begin end))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1438 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1439 (defun expr-next () |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1440 "Returns the following expr, point is set to beginning of that expr. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1441 The expr is represented as a cons cell, where the car specifies the point in |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1442 the current buffer that marks the beginning of the expr and the cdr specifies |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1443 the character after the end of the expr." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1444 (let ((begin) (end)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1445 (expr-forward-sexp) |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1446 (expr-forward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1447 (setq end (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1448 (expr-backward-sexp) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1449 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1450 (cons begin end))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1451 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1452 (defun expr-compound-sep (span-start span-end) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1453 "Returns '.' for '->' & '.', returns ' ' for white space, |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3551
diff
changeset
|
1454 returns '?' for other punctuation." |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1455 (let ((result ? ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1456 (syntax)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1457 (while (< span-start span-end) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1458 (setq syntax (char-syntax (char-after span-start))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1459 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1460 ((= syntax ? ) t) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1461 ((= syntax ?.) (setq syntax (char-after span-start)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1462 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1463 ((= syntax ?.) (setq result ?.)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1464 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1465 (setq result ?.) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1466 (setq span-start (+ span-start 1))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1467 (t (setq span-start span-end) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1468 (setq result ??))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1469 (setq span-start (+ span-start 1))) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1470 result)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1471 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1472 (defun expr-compound (first second) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1473 "Non-nil if concatenating FIRST and SECOND makes a single C token. |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1474 The two exprs are represented as a cons cells, where the car |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1475 specifies the point in the current buffer that marks the beginning of the |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1476 expr and the cdr specifies the character after the end of the expr. |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1477 Link exprs of the form: |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1478 Expr -> Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1479 Expr . Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1480 Expr (Expr) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1481 Expr [Expr] |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1482 (Expr) Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1483 [Expr] Expr" |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1484 (let ((span-start (cdr first)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1485 (span-end (car second)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1486 (syntax)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1487 (setq syntax (expr-compound-sep span-start span-end)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1488 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1489 ((= (car first) (car second)) nil) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1490 ((= (cdr first) (cdr second)) nil) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1491 ((= syntax ?.) t) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1492 ((= syntax ? ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1493 (setq span-start (char-after (- span-start 1))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1494 (setq span-end (char-after span-end)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1495 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1496 ((= span-start ?) ) t ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1497 ((= span-start ?] ) t ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1498 ((= span-end ?( ) t ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1499 ((= span-end ?[ ) t ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1500 (t nil)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
1501 ) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
1502 (t nil)))) |
2581
839d67a1dc58
Set no-byte-compile local variable t to work around a byte-compiler bug.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2532
diff
changeset
|
1503 |
4016 | 1504 (provide 'gud) |
1505 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
1506 ;;; gud.el ends here |