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