Mercurial > emacs
annotate lisp/gud.el @ 4181:d7cb993a93b1
(normal-top-level): Call abbreviate-file-name again after calling command-line.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 20 Jul 1993 05:46:10 +0000 |
parents | e72012acb5fb |
children | 2455c90e1371 |
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> |
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
|
5 ;; Version: 1.3 |
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 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
8 ;; Copyright (C) 1992, 1993 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> |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
33 ;; added support for xdb (HPUX debugger). |
460 | 34 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
35 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
36 |
460 | 37 (require 'comint) |
923 | 38 (require 'etags) |
460 | 39 |
40 ;; ====================================================================== | |
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
|
41 ;; 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
|
42 |
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
|
43 (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
|
44 "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
|
45 |
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
|
46 (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh) |
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 (global-set-key "\C-x " '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
|
48 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
49 ;; ====================================================================== |
460 | 50 ;; the overloading mechanism |
51 | |
52 (defun gud-overload-functions (gud-overload-alist) | |
53 "Overload functions defined in GUD-OVERLOAD-ALIST. | |
54 This association list has elements of the form | |
55 (ORIGINAL-FUNCTION-NAME OVERLOAD-FUNCTION)" | |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
56 (mapcar |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
57 (function (lambda (p) (fset (car p) (symbol-function (cdr p))))) |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
58 gud-overload-alist)) |
460 | 59 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
60 (defun gud-massage-args (file args) |
460 | 61 (error "GUD not properly entered.")) |
62 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
63 (defun gud-marker-filter (str) |
460 | 64 (error "GUD not properly entered.")) |
65 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
66 (defun gud-find-file (f) |
460 | 67 (error "GUD not properly entered.")) |
68 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
69 ;; ====================================================================== |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
70 ;; command definition |
460 | 71 |
72 ;; 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
|
73 ;; Of course you may use `gud-def' with any other debugger command, including |
1255 | 74 ;; user defined ones. |
75 | |
76 ;; A macro call like (gud-def FUNC NAME KEY DOC) expands to a form | |
77 ;; 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
|
78 ;; 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
|
79 ;; 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
|
80 ;; 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
|
81 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
82 (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
|
83 "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
|
84 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
|
85 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
|
86 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
87 %f name of current source file. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
88 %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
|
89 %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
|
90 %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
|
91 %p prefix argument to the command (if any) as a number |
460 | 92 |
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 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
|
94 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
|
95 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
|
96 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
|
97 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
|
98 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
|
99 (list 'progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
100 (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
|
101 (or doc "") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
102 '(interactive "p") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
103 (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
|
104 (if key |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
105 (list 'define-key |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
106 '(current-local-map) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
107 (concat "\C-c" key) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
108 (list 'quote func))) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
109 (if key |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
110 (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
|
111 (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
|
112 (list 'quote func))))) |
460 | 113 |
1275
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
114 ;; 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
|
115 ;; 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
|
116 ;; 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
|
117 (defvar gud-last-frame nil) |
68f025a5fdaa
* gud.el (gud-last-frame): Added defvar for this.
Jim Blandy <jimb@redhat.com>
parents:
1274
diff
changeset
|
118 |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
119 ;; 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
|
120 ;; 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
|
121 ;; been set to nil. |
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
122 (defvar gud-last-last-frame) |
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
123 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
124 ;; 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
|
125 ;; Here's how it works, in case you ever need to add a debugger to the mode. |
460 | 126 ;; |
127 ;; Each entry must define the following at startup: | |
128 ;; | |
129 ;;<name> | |
130 ;; comint-prompt-regexp | |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
131 ;; gud-<name>-massage-args |
460 | 132 ;; 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
|
133 ;; gud-<name>-find-file |
460 | 134 ;; |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
135 ;; 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
|
136 ;; debugger arguments before running the debugger. |
477 | 137 ;; |
138 ;; The job of the marker-filter method is to detect file/line markers in | |
139 ;; strings and set the global gud-last-frame to indicate what display | |
140 ;; 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
|
141 ;; whatever the method *returns* is displayed in the buffer; thus, you |
477 | 142 ;; can filter the debugger's output, interpreting some and passing on |
143 ;; the rest. | |
144 ;; | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
145 ;; The job of the find-file method is to visit and return the buffer indicated |
477 | 146 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or |
147 ;; something else. | |
460 | 148 |
149 ;; ====================================================================== | |
150 ;; gdb functions | |
151 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
152 ;;; 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
|
153 (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
|
154 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
155 (defun gud-gdb-massage-args (file args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
156 (cons "-fullname" (cons file args))) |
460 | 157 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
158 (defun gud-gdb-marker-filter (string) |
1255 | 159 (if (string-match "\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n" string) |
460 | 160 (progn |
161 (setq gud-last-frame | |
162 (cons | |
163 (substring string (match-beginning 1) (match-end 1)) | |
164 (string-to-int | |
165 (substring string (match-beginning 2) (match-end 2))))) | |
166 ;; this computation means the ^Z^Z-initiated marker in the | |
167 ;; input string is never emitted. | |
168 (concat | |
169 (substring string 0 (match-beginning 0)) | |
170 (substring string (match-end 0)) | |
171 )) | |
172 string)) | |
173 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
174 (defun gud-gdb-find-file (f) |
460 | 175 (find-file-noselect f)) |
176 | |
477 | 177 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
178 (defun gdb (command-line) |
460 | 179 "Run gdb on program FILE in buffer *gud-FILE*. |
180 The directory containing FILE becomes the initial working directory | |
181 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
|
182 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
183 (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
|
184 (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
|
185 (car gud-gdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
186 "gdb ") |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
187 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
|
188 '(gud-gdb-history . 1)))) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
189 (gud-overload-functions '((gud-massage-args . gud-gdb-massage-args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
190 (gud-marker-filter . gud-gdb-marker-filter) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
191 (gud-find-file . gud-gdb-find-file) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
192 )) |
460 | 193 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
194 (gud-common-init command-line) |
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
|
195 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
196 (gud-def gud-break "break %f:%l" "\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
|
197 (gud-def gud-tbreak "tbreak %f:%l" "\C-t" "Set breakpoint at current line.") |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
198 (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
|
199 (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
|
200 (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
|
201 (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
|
202 (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
|
203 (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
|
204 (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
|
205 (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
|
206 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") |
460 | 207 |
208 (setq comint-prompt-regexp "^(.*gdb[+]?) *") | |
209 (run-hooks 'gdb-mode-hook) | |
210 ) | |
211 | |
212 | |
213 ;; ====================================================================== | |
214 ;; sdb functions | |
215 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
216 ;;; 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
|
217 (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
|
218 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
219 (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
|
220 "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
|
221 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
222 (defvar gud-sdb-lastfile nil) |
460 | 223 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
224 (defun gud-sdb-massage-args (file args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
225 (cons file args)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
226 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
227 (defun gud-sdb-marker-filter (string) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
228 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
229 ;; System V Release 3.2 uses this format |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
230 ((string-match "\\(^0x\\w* in \\|^\\|\n\\)\\([^:\n]*\\):\\([0-9]*\\):.*\n" |
1255 | 231 string) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
232 (setq gud-last-frame |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
233 (cons |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
234 (substring string (match-beginning 2) (match-end 2)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
235 (string-to-int |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
236 (substring string (match-beginning 3) (match-end 3)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
237 ;; System V Release 4.0 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
238 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n" |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
239 string) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
240 (setq gud-sdb-lastfile |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
241 (substring string (match-beginning 2) (match-end 2)))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
242 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):" string)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
243 (setq gud-last-frame |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
244 (cons |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
245 gud-sdb-lastfile |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
246 (string-to-int |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
247 (substring string (match-beginning 1) (match-end 1)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
248 (t |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
249 (setq gud-sdb-lastfile nil))) |
460 | 250 string) |
251 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
252 (defun gud-sdb-find-file (f) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
253 (if gud-sdb-needs-tags |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
254 (find-tag-noselect f) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
255 (find-file-noselect f))) |
460 | 256 |
477 | 257 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
258 (defun sdb (command-line) |
460 | 259 "Run sdb on program FILE in buffer *gud-FILE*. |
260 The directory containing FILE becomes the initial working directory | |
261 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
|
262 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
263 (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
|
264 (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
|
265 (car gud-sdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
266 "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
|
267 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
|
268 '(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
|
269 (if (and gud-sdb-needs-tags |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
270 (not (and (boundp 'tags-file-name) (file-exists-p tags-file-name)))) |
460 | 271 (error "The sdb support requires a valid tags table to work.")) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
272 (gud-overload-functions '((gud-massage-args . gud-sdb-massage-args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
273 (gud-marker-filter . gud-sdb-marker-filter) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
274 (gud-find-file . gud-sdb-find-file) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
275 )) |
460 | 276 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
277 (gud-common-init command-line) |
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
|
278 |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
279 (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
|
280 (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
|
281 (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
|
282 (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
|
283 (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
|
284 (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
|
285 (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
|
286 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.") |
460 | 287 |
1255 | 288 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*") |
460 | 289 (run-hooks 'sdb-mode-hook) |
290 ) | |
291 | |
292 ;; ====================================================================== | |
293 ;; dbx functions | |
294 | |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
295 ;;; 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
|
296 (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
|
297 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
298 (defun gud-dbx-massage-args (file args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
299 (cons file args)) |
460 | 300 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
301 (defun gud-dbx-marker-filter (string) |
460 | 302 (if (string-match |
1255 | 303 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" string) |
460 | 304 (setq gud-last-frame |
305 (cons | |
306 (substring string (match-beginning 2) (match-end 2)) | |
307 (string-to-int | |
308 (substring string (match-beginning 1) (match-end 1)))))) | |
309 string) | |
310 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
311 (defun gud-dbx-find-file (f) |
460 | 312 (find-file-noselect f)) |
313 | |
477 | 314 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
315 (defun dbx (command-line) |
460 | 316 "Run dbx on program FILE in buffer *gud-FILE*. |
317 The directory containing FILE becomes the initial working directory | |
318 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
|
319 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
320 (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
|
321 (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
|
322 (car gud-dbx-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
323 "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
|
324 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
|
325 '(gud-dbx-history . 1)))) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
326 (gud-overload-functions '((gud-massage-args . gud-dbx-massage-args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
327 (gud-marker-filter . gud-dbx-marker-filter) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
328 (gud-find-file . gud-dbx-find-file) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
329 )) |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
330 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
331 (gud-common-init command-line) |
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
|
332 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
333 (gud-def gud-break "stop at \"%f\":%l" |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
334 "\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
|
335 (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
|
336 (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
|
337 (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
|
338 (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
|
339 (gud-def gud-cont "cont" "\C-r" "Continue with display.") |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
340 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
341 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
342 (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
|
343 |
460 | 344 (setq comint-prompt-regexp "^[^)]*dbx) *") |
345 (run-hooks 'dbx-mode-hook) | |
346 ) | |
347 | |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
348 ;; ====================================================================== |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
349 ;; xdb (HP PARISC debugger) functions |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
350 |
3930
ac686479ca51
* gud.el: Add history lists to the debugging commands, so we don't
Jim Blandy <jimb@redhat.com>
parents:
3745
diff
changeset
|
351 ;;; 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
|
352 (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
|
353 |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
354 (defvar gud-xdb-directories nil |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
355 "*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
|
356 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
|
357 will be known to xdb. |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
358 |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
359 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
|
360 containing the executable being debugged.") |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
361 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
362 (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
|
363 (nconc (let ((directories gud-xdb-directories) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
364 (result nil)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
365 (while directories |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
366 (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
|
367 (setq directories (cdr directories))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
368 (nreverse (cons file result))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
369 args)) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
370 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
371 (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
|
372 "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
|
373 (let ((result nil)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
374 (if (file-exists-p f) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
375 (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
|
376 (let ((directories gud-xdb-directories)) |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
377 (while directories |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
378 (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
|
379 (if (file-exists-p path) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
380 (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
|
381 directories nil))) |
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
382 (setq directories (cdr directories))))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
383 result)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
384 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
385 ;; 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
|
386 (defvar gud-xdb-accumulation "") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
387 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
388 (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
|
389 (let (result) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
390 (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
|
391 (string-match ".*\012" string)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
392 (setq result (concat gud-xdb-accumulation string) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
393 gud-xdb-accumulation "") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
394 (setq gud-xdb-accumulation (concat gud-xdb-accumulation string))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
395 (if result |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
396 (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
|
397 (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
|
398 result)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
399 (let ((line (string-to-int |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
400 (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
|
401 (file (gud-xdb-file-name |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
402 (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
|
403 (if file |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
404 (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
|
405 (or result ""))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
406 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
407 (defun gud-xdb-find-file (f) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
408 (let ((realf (gud-xdb-file-name f))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
409 (if realf (find-file-noselect realf)))) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
410 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
411 ;;;###autoload |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
412 (defun xdb (command-line) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
413 "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
|
414 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
|
415 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
|
416 |
3745
3c4f7e74e3f0
(gud-xdb-directories): Renamed from gud-xdb-paths.
Richard M. Stallman <rms@gnu.org>
parents:
3738
diff
changeset
|
417 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
|
418 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
|
419 (interactive |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
420 (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
|
421 (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
|
422 (car gud-xdb-history) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
423 "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
|
424 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
|
425 '(gud-xdb-history . 1)))) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
426 (gud-overload-functions '((gud-massage-args . gud-xdb-massage-args) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
427 (gud-marker-filter . gud-xdb-marker-filter) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
428 (gud-find-file . gud-xdb-find-file))) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
429 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
430 (gud-common-init command-line) |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
431 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
432 (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
|
433 (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
|
434 "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
|
435 (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
|
436 (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
|
437 (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
|
438 (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
|
439 (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
|
440 (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
|
441 (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
|
442 (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
|
443 |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
444 (setq comint-prompt-regexp "^>") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
445 (make-local-variable 'gud-xdb-accumulation) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
446 (setq gud-xdb-accumulation "") |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
447 (run-hooks 'xdb-mode-hook)) |
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
448 |
460 | 449 ;; |
450 ;; End of debugger-specific information | |
477 | 451 ;; |
460 | 452 |
1256
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
453 ;;; 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
|
454 ;;; 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
|
455 ;;; 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
|
456 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
457 ;;; 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
|
458 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
459 ;;; (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
|
460 ;;; (gdb) -!- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
461 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
462 ;;; (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
|
463 ;;; 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
|
464 ;;; this: |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
465 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
466 ;;; (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
|
467 ;;; 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
|
468 ;;; (gdb) -!- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
469 ;;; -------------------- |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
470 ;;; 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
|
471 ;;; 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
|
472 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
473 ;;; 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
|
474 ;;; 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
|
475 ;;; 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
|
476 ;;; 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
|
477 ;;; 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
|
478 ;;; 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
|
479 ;;; 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
|
480 ;;; 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
|
481 ;;; 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
|
482 ;;; 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
|
483 ;;; 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
|
484 ;;; 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
|
485 ;;; 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
|
486 ;;; |
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
487 ;;; 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
|
488 ;;; 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
|
489 ;;; 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
|
490 ;;; 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
|
491 ;;; 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
|
492 ;;; 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
|
493 (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
|
494 |
460 | 495 |
496 (defun gud-mode () | |
497 "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
|
498 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
499 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
|
500 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
|
501 `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
|
502 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
503 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
|
504 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
|
505 or step operation: |
460 | 506 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
507 \\[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
|
508 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
|
509 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
|
510 |
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
|
511 \\[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
|
512 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
513 \\[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
|
514 in the gud buffer. |
460 | 515 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
516 \\[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
|
517 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
|
518 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
|
519 \\[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
|
520 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
521 \\[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
|
522 around point, and sends it to the debugger for value display. |
460 | 523 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
524 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
|
525 does not support stepping instructions. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
526 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
527 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
|
528 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
|
529 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
|
530 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
531 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
|
532 frame. \\[gud-down] drops back down through one. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
533 |
3738
c5ebd279e007
(xdb): New debugger supported (xdb under HPUX-PARISC).
Richard M. Stallman <rms@gnu.org>
parents:
3646
diff
changeset
|
534 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
|
535 the current function and stops. |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
536 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
537 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
|
538 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
|
539 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
540 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
|
541 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
|
542 argument. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
543 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
544 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
|
545 commands. |
868
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
546 |
0cda1f7b154e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
810
diff
changeset
|
547 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
|
548 comint mode, which see." |
460 | 549 (interactive) |
550 (comint-mode) | |
551 (setq major-mode 'gud-mode) | |
552 (setq mode-name "Debugger") | |
553 (setq mode-line-process '(": %s")) | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
554 (use-local-map (copy-keymap comint-mode-map)) |
460 | 555 (make-local-variable 'gud-last-frame) |
556 (setq gud-last-frame nil) | |
557 (make-local-variable 'comint-prompt-regexp) | |
1256
ff24725192d3
* gud.el: When we send a command to the debugger via gud-call,
Jim Blandy <jimb@redhat.com>
parents:
1255
diff
changeset
|
558 (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
|
559 (setq gud-delete-prompt-marker (make-marker)) |
460 | 560 (run-hooks 'gud-mode-hook) |
561 ) | |
562 | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
563 (defvar gud-comint-buffer nil) |
460 | 564 |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
565 ;; 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
|
566 (defun gud-chop-words (string) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
567 (let ((i 0) (beg 0) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
568 (len (length string)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
569 (words nil)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
570 (while (< i len) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
571 (if (memq (aref string i) '(?\t ? )) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
572 (progn |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
573 (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
|
574 beg (1+ i)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
575 (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
|
576 (setq beg (1+ beg))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
577 (setq i (1+ beg))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
578 (setq i (1+ i)))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
579 (if (< beg len) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
580 (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
|
581 (nreverse words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
582 |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
583 ;; Perform initializations common to all debuggers. |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
584 (defun gud-common-init (command-line) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
585 (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
|
586 (program (car words)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
587 (file-word (let ((w (cdr words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
588 (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
|
589 (setq w (cdr w))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
590 (car w))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
591 (args (delq file-word (cdr words))) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
592 (file (expand-file-name file-word)) |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
593 (filepart (file-name-nondirectory file))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
594 (switch-to-buffer (concat "*gud-" filepart "*")) |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
595 (setq default-directory (file-name-directory file)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
596 (or (bolp) (newline)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
597 (insert "Current directory is " default-directory "\n") |
4092
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
598 (apply 'make-comint (concat "gud-" filepart) program nil |
e72012acb5fb
(gud-debugger-startup): Replaced with gud-massage-args.
Roland McGrath <roland@gnu.org>
parents:
4016
diff
changeset
|
599 (gud-massage-args file args))) |
460 | 600 (gud-mode) |
601 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter) | |
602 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel) | |
603 (gud-set-buffer) | |
604 ) | |
605 | |
606 (defun gud-set-buffer () | |
607 (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
|
608 (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
|
609 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
610 ;; 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
|
611 ;; 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
|
612 ;; 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
|
613 |
460 | 614 (defun gud-filter (proc string) |
615 ;; Here's where the actual buffer insertion is done | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
616 (let ((inhibit-quit t)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
617 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
618 (set-buffer (process-buffer proc)) |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
619 (let (moving output-after-point) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
620 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
621 (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
|
622 ;; If we have been so requested, delete the debugger prompt. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
623 (if (marker-buffer gud-delete-prompt-marker) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
624 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
625 (delete-region (point) gud-delete-prompt-marker) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
626 (set-marker gud-delete-prompt-marker nil))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
627 (insert-before-markers (gud-marker-filter string)) |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
628 (setq moving (= (point) (process-mark proc))) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
629 (setq output-after-point (< (point) (process-mark proc))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
630 ;; Check for a filename-and-line number. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
631 ;; Don't display the specified file |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
632 ;; unless (1) point is at or after the position where output appears |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
633 ;; and (2) this buffer is on the screen. |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
634 (if (and gud-last-frame |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
635 (not output-after-point) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
636 (get-buffer-window (current-buffer))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
637 (gud-display-frame))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
638 (if moving (goto-char (process-mark proc))))))) |
460 | 639 |
640 (defun gud-sentinel (proc msg) | |
641 (cond ((null (buffer-name (process-buffer proc))) | |
642 ;; buffer killed | |
643 ;; Stop displaying an arrow in a source file. | |
644 (setq overlay-arrow-position nil) | |
645 (set-process-buffer proc nil)) | |
646 ((memq (process-status proc) '(signal exit)) | |
647 ;; Stop displaying an arrow in a source file. | |
648 (setq overlay-arrow-position nil) | |
649 ;; Fix the mode line. | |
650 (setq mode-line-process | |
651 (concat ": " | |
652 (symbol-name (process-status proc)))) | |
653 (let* ((obuf (current-buffer))) | |
654 ;; save-excursion isn't the right thing if | |
655 ;; process-buffer is current-buffer | |
656 (unwind-protect | |
657 (progn | |
658 ;; Write something in *compilation* and hack its mode line, | |
659 (set-buffer (process-buffer proc)) | |
660 ;; Force mode line redisplay soon | |
661 (set-buffer-modified-p (buffer-modified-p)) | |
662 (if (eobp) | |
663 (insert ?\n mode-name " " msg) | |
664 (save-excursion | |
665 (goto-char (point-max)) | |
666 (insert ?\n mode-name " " msg))) | |
667 ;; If buffer and mode line will show that the process | |
668 ;; is dead, we can delete it now. Otherwise it | |
669 ;; will stay around until M-x list-processes. | |
670 (delete-process proc)) | |
671 ;; Restore old buffer, but don't restore old point | |
672 ;; if obuf is the gud buffer. | |
673 (set-buffer obuf)))))) | |
674 | |
675 (defun gud-display-frame () | |
676 "Find and obey the last filename-and-line marker from the debugger. | |
677 Obeying it means displaying in another window the specified file and line." | |
678 (interactive) | |
679 (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
|
680 (progn |
460 | 681 (gud-set-buffer) |
682 (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
|
683 (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
|
684 gud-last-frame nil)))) |
460 | 685 |
686 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen | |
687 ;; and that its line LINE is visible. | |
688 ;; 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
|
689 ;; 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
|
690 ;; 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
|
691 ;; to get around the fact that this is called inside a save-excursion. |
460 | 692 |
693 (defun gud-display-line (true-file line) | |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
694 (let* ((buffer (gud-find-file true-file)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
695 (window (display-buffer buffer)) |
460 | 696 (pos)) |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
697 ;;; (if (equal buffer (current-buffer)) |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
698 ;;; nil |
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
699 ;;; (setq buffer-read-only nil)) |
460 | 700 (save-excursion |
2960
372386917f03
(gud-def): Fix inclusion of the define-key.
Richard M. Stallman <rms@gnu.org>
parents:
2594
diff
changeset
|
701 ;;; (setq buffer-read-only t) |
460 | 702 (set-buffer buffer) |
703 (save-restriction | |
704 (widen) | |
705 (goto-line line) | |
706 (setq pos (point)) | |
707 (setq overlay-arrow-string "=>") | |
708 (or overlay-arrow-position | |
709 (setq overlay-arrow-position (make-marker))) | |
710 (set-marker overlay-arrow-position (point) (current-buffer))) | |
711 (cond ((or (< pos (point-min)) (> pos (point-max))) | |
712 (widen) | |
713 (goto-char pos)))) | |
714 (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
|
715 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
716 ;;; 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
|
717 ;;; 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
|
718 ;;; 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
|
719 ;;; gud-last-frame. Here's how we do it: |
460 | 720 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
721 (defun gud-format-command (str arg) |
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
|
722 (let ((insource (not (eq (current-buffer) gud-comint-buffer)))) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
723 (if (string-match "\\(.*\\)%f\\(.*\\)" str) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
724 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
725 (setq str (concat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
726 (substring str (match-beginning 1) (match-end 1)) |
2594
e1277aec1738
(gud-format-command): Fix %f expansuuin to send ondly the basename of
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2581
diff
changeset
|
727 (file-name-nondirectory (if insource |
e1277aec1738
(gud-format-command): Fix %f expansuuin to send ondly the basename of
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2581
diff
changeset
|
728 (buffer-file-name) |
e1277aec1738
(gud-format-command): Fix %f expansuuin to send ondly the basename of
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2581
diff
changeset
|
729 (car 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
|
730 (substring str (match-beginning 2) (match-end 2)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
731 (if (string-match "\\(.*\\)%l\\(.*\\)" str) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
732 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
733 (setq str (concat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
734 (substring str (match-beginning 1) (match-end 1)) |
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
|
735 (if insource |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
736 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
737 (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
|
738 (save-restriction (widen) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
739 (1+ (count-lines 1 (point))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
740 (cdr gud-last-frame)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
741 (substring str (match-beginning 2) (match-end 2)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
742 (if (string-match "\\(.*\\)%e\\(.*\\)" str) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
743 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
744 (setq str (concat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
745 (substring str (match-beginning 1) (match-end 1)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
746 (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
|
747 (substring str (match-beginning 2) (match-end 2)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
748 (if (string-match "\\(.*\\)%a\\(.*\\)" str) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
749 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
750 (setq str (concat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
751 (substring str (match-beginning 1) (match-end 1)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
752 (gud-read-address) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
753 (substring str (match-beginning 2) (match-end 2)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
754 (if (string-match "\\(.*\\)%p\\(.*\\)" str) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
755 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
756 (setq str (concat |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
757 (substring str (match-beginning 1) (match-end 1)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
758 (if arg (int-to-string arg) "") |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
759 (substring str (match-beginning 2) (match-end 2)))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
760 ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
761 str |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
762 ) |
460 | 763 |
1255 | 764 (defun gud-read-address () |
460 | 765 "Return a string containing the core-address found in the buffer at point." |
766 (save-excursion | |
1255 | 767 (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
|
768 (setq found (if (search-backward "0x" (- pt 7) t) (point))) |
1255 | 769 (cond |
770 (found (forward-char 2) | |
771 (buffer-substring found | |
772 (progn (re-search-forward "[^0-9a-f]") | |
773 (forward-char -1) | |
774 (point)))) | |
775 (t (setq begin (progn (re-search-backward "[^0-9]") | |
776 (forward-char 1) | |
777 (point))) | |
778 (forward-char 1) | |
779 (re-search-forward "[^0-9]") | |
780 (forward-char -1) | |
781 (buffer-substring begin (point))))))) | |
460 | 782 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
783 (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
|
784 (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
|
785 (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
|
786 (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
|
787 (gud-basic-call msg))) |
460 | 788 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
789 (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
|
790 "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
|
791 (interactive) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
792 (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
|
793 (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
|
794 (proc (get-buffer-process 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
|
795 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
796 ;; 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
|
797 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
798 (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
|
799 (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
|
800 (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
|
801 (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
|
802 (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
|
803 (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
|
804 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
805 (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
|
806 "Fix up a possibly garbled display, and redraw the arrow." |
460 | 807 (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
|
808 (recenter arg) |
3646
4b34cbec2058
* gud.el (gud-last-last-frame): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
809 (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
|
810 (gud-display-frame)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
811 |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
812 ;;; 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
|
813 ;;; 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
|
814 ;;; |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
815 ;;; 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
|
816 ;;; 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
|
817 ;;; 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
|
818 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
819 (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
|
820 "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
|
821 (interactive) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
822 (save-excursion |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
823 (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
|
824 (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
|
825 (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
|
826 (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
|
827 (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
|
828 (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
|
829 (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
|
830 (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
|
831 (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
|
832 (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
|
833 (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
|
834 (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
|
835 (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
|
836 ) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
837 (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
|
838 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
839 (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
|
840 "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
|
841 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
|
842 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
|
843 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
|
844 (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
|
845 (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
|
846 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
847 (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
|
848 (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
|
849 (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
|
850 (progn |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
851 (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
|
852 (goto-char p) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
853 (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
|
854 (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
|
855 ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
856 ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
857 (goto-char begin) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
858 (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
|
859 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
860 (defun expr-backward-sexp () |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
861 "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
|
862 (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
|
863 (backward-sexp) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
864 (error t))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
865 |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
866 (defun expr-forward-sexp () |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
867 "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
|
868 (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
|
869 (forward-sexp) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
870 (error t))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
871 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
872 (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
|
873 "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
|
874 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
|
875 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
|
876 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
|
877 (let ((begin) (end)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
878 (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
|
879 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
880 (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
|
881 (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
|
882 (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
|
883 (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
|
884 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
885 (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
|
886 "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
|
887 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
|
888 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
|
889 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
|
890 (let ((begin) (end)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
891 (expr-forward-sexp) |
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
892 (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
|
893 (setq end (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
894 (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
|
895 (setq begin (point)) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
896 (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
|
897 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
898 (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
|
899 "Returns '.' for '->' & '.', returns ' ' for white space, |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3551
diff
changeset
|
900 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
|
901 (let ((result ? ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
902 (syntax)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
903 (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
|
904 (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
|
905 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
906 ((= syntax ? ) t) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
907 ((= 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
|
908 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
909 ((= 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
|
910 ((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
|
911 (setq result ?.) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
912 (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
|
913 (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
|
914 (setq result ??))))) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
915 (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
|
916 result)) |
2489
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
917 |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
918 (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
|
919 "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
|
920 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
|
921 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
|
922 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
|
923 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
|
924 Expr -> Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
925 Expr . Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
926 Expr (Expr) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
927 Expr [Expr] |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
928 (Expr) Expr |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
929 [Expr] Expr" |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
930 (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
|
931 (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
|
932 (syntax)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
933 (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
|
934 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
935 ((= (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
|
936 ((= (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
|
937 ((= syntax ?.) t) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
938 ((= syntax ? ) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
939 (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
|
940 (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
|
941 (cond |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
942 ((= 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
|
943 ((= 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
|
944 ((= 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
|
945 ((= 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
|
946 (t nil)) |
b626f5b9a0df
Massive changes, amounting nearly to a rewrite. The new features
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1902
diff
changeset
|
947 ) |
3551
8b5fa2d1755f
Doc fixes. Delete local variable list at the end.
Richard M. Stallman <rms@gnu.org>
parents:
3343
diff
changeset
|
948 (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
|
949 |
4016 | 950 (provide 'gud) |
951 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
952 ;;; gud.el ends here |