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