Mercurial > emacs
annotate lisp/progmodes/gdb-ui.el @ 57822:7cda0787d8cd
(idlwave-shell-send-char): Don't use interactive-p.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 01 Nov 2004 07:41:08 +0000 |
parents | d1b93fc4ce47 |
children | 67b88e92a24d |
rev | line source |
---|---|
54538 | 1 ;;; gdb-ui.el --- User Interface for running GDB |
2 | |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
3 ;; Author: Nick Roberts <nickrob@gnu.org> |
54538 | 4 ;; Maintainer: FSF |
5 ;; Keywords: unix, tools | |
6 | |
7 ;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
28 ;; This mode acts as a graphical user interface to GDB. You can interact with |
54538 | 29 ;; GDB through the GUD buffer in the usual way, but there are also further |
30 ;; buffers which control the execution and describe the state of your program. | |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
31 ;; It separates the input/output of your program from that of GDB, if |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
32 ;; required, and watches expressions in the speedbar. It also uses features of |
56258
3b1880995ace
(gdb-toggle-breakpoint)
Nick Roberts <nickrob@snap.net.nz>
parents:
55850
diff
changeset
|
33 ;; Emacs 21 such as the fringe/display margin for breakpoints, and the toolbar |
3b1880995ace
(gdb-toggle-breakpoint)
Nick Roberts <nickrob@snap.net.nz>
parents:
55850
diff
changeset
|
34 ;; (see the GDB Graphical Interface section in the Emacs info manual). |
54538 | 35 |
36 ;; Start the debugger with M-x gdba. | |
37 | |
38 ;; This file has evolved from gdba.el from GDB 5.0 written by Tom Lord and Jim | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
39 ;; Kingdon and uses GDB's annotation interface. You don't need to know about |
54538 | 40 ;; annotations to use this mode as a debugger, but if you are interested |
41 ;; developing the mode itself, then see the Annotations section in the GDB | |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
42 ;; info manual. |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
43 ;; |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
44 ;; GDB developers plan to make the annotation interface obsolete. A new |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
45 ;; interface called GDB/MI (machine interface) has been designed to replace |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
46 ;; it. Some GDB/MI commands are used in this file through the CLI command |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
47 ;; 'interpreter mi <mi-command>'. A file called gdb-mi.el is included in the |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
48 ;; GDB repository for future releases (6.2 onwards) that uses GDB/MI as the |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
49 ;; primary interface to GDB. It is still under development and is part of a |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
50 ;; process to migrate Emacs from annotations to GDB/MI. |
54538 | 51 ;; |
52 ;; Known Bugs: | |
53 ;; | |
54 | |
55 ;;; Code: | |
56 | |
57 (require 'gud) | |
58 | |
59 (defvar gdb-current-address "main" "Initialisation for Assembler buffer.") | |
60 (defvar gdb-previous-address nil) | |
61 (defvar gdb-previous-frame nil) | |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
62 (defvar gdb-current-frame nil) |
54538 | 63 (defvar gdb-current-language nil) |
64 (defvar gdb-view-source t "Non-nil means that source code can be viewed.") | |
65 (defvar gdb-selected-view 'source "Code type that user wishes to view.") | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
66 (defvar gdb-var-list nil "List of variables in watch window.") |
54538 | 67 (defvar gdb-var-changed nil "Non-nil means that gdb-var-list has changed.") |
68 (defvar gdb-buffer-type nil) | |
69 (defvar gdb-overlay-arrow-position nil) | |
70 (defvar gdb-variables '() | |
71 "A list of variables that are local to the GUD buffer.") | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
72 (defvar gdb-server-prefix nil) |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
73 |
54538 | 74 ;;;###autoload |
75 (defun gdba (command-line) | |
76 "Run gdb on program FILE in buffer *gud-FILE*. | |
77 The directory containing FILE becomes the initial working directory | |
78 and source-file directory for your debugger. | |
79 | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
80 If `gdb-many-windows' is nil (the default value) then gdb just |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
81 pops up the GUD buffer unless `gdb-show-main' is t. In this case |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
82 it starts with two windows: one displaying the GUD buffer and the |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
83 other with the source file with the main routine of the inferior. |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
84 |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
85 If `gdb-many-windows' is t, regardless of the value of |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
86 `gdb-show-main', the layout below will appear unless |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
87 `gdb-use-inferior-io-buffer' is nil when the source buffer |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
88 occupies the full width of the frame. Keybindings are given in |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
89 relevant buffer. |
54538 | 90 |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
91 Watch expressions appear in the speedbar/slowbar. |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
92 |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
93 The following commands help control operation : |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
94 |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
95 `gdb-many-windows' - Toggle the number of windows gdb uses. |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
96 `gdb-restore-windows' - To restore the window layout. |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
97 |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
98 See Info node `(emacs)GDB Graphical Interface' for a more |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
99 detailed description of this mode. |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
100 |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
101 |
54538 | 102 --------------------------------------------------------------------- |
103 GDB Toolbar | |
104 --------------------------------------------------------------------- | |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
105 GUD buffer (I/O of GDB) | Locals buffer |
54538 | 106 | |
107 | | |
108 | | |
109 --------------------------------------------------------------------- | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
110 Source buffer | Input/Output (of inferior) buffer |
54538 | 111 | (comint-mode) |
112 | | |
113 | | |
114 | | |
115 | | |
116 | | |
117 | | |
118 --------------------------------------------------------------------- | |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
119 Stack buffer | Breakpoints buffer |
54538 | 120 RET gdb-frames-select | SPC gdb-toggle-breakpoint |
121 | RET gdb-goto-breakpoint | |
122 | d gdb-delete-breakpoint | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
123 ---------------------------------------------------------------------" |
54538 | 124 ;; |
125 (interactive (list (gud-query-cmdline 'gdba))) | |
126 ;; | |
127 ;; Let's start with a basic gud-gdb buffer and then modify it a bit. | |
128 (gdb command-line) | |
129 (gdb-ann3)) | |
130 | |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
131 (defvar gdb-debug-log nil) |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
132 |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
133 (defcustom gdb-enable-debug-log nil |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
134 "Non-nil means record the process input and output in `gdb-debug-log'." |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
135 :type 'boolean |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
136 :group 'gud) |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
137 |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
138 (defcustom gdb-use-inferior-io-buffer nil |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
139 "Non-nil means display output from the inferior in a separate buffer." |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
140 :type 'boolean |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
141 :group 'gud) |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
142 |
54538 | 143 (defun gdb-ann3 () |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
144 (setq gdb-debug-log nil) |
54538 | 145 (set (make-local-variable 'gud-minor-mode) 'gdba) |
146 (set (make-local-variable 'gud-marker-filter) 'gud-gdba-marker-filter) | |
147 ;; | |
148 (gud-def gud-break (if (not (string-equal mode-name "Machine")) | |
149 (gud-call "break %f:%l" arg) | |
150 (save-excursion | |
151 (beginning-of-line) | |
152 (forward-char 2) | |
153 (gud-call "break *%a" arg))) | |
154 "\C-b" "Set breakpoint at current line or address.") | |
155 ;; | |
156 (gud-def gud-remove (if (not (string-equal mode-name "Machine")) | |
157 (gud-call "clear %f:%l" arg) | |
158 (save-excursion | |
159 (beginning-of-line) | |
160 (forward-char 2) | |
161 (gud-call "clear *%a" arg))) | |
162 "\C-d" "Remove breakpoint at current line or address.") | |
163 ;; | |
164 (gud-def gud-until (if (not (string-equal mode-name "Machine")) | |
165 (gud-call "until %f:%l" arg) | |
166 (save-excursion | |
167 (beginning-of-line) | |
168 (forward-char 2) | |
169 (gud-call "until *%a" arg))) | |
170 "\C-u" "Continue to current line or address.") | |
171 | |
172 (define-key gud-minor-mode-map [left-margin mouse-1] | |
173 'gdb-mouse-toggle-breakpoint) | |
174 (define-key gud-minor-mode-map [left-fringe mouse-1] | |
175 'gdb-mouse-toggle-breakpoint) | |
176 | |
177 (setq comint-input-sender 'gdb-send) | |
178 ;; | |
57664
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
179 ;; (re-)initialize |
54538 | 180 (setq gdb-current-address "main") |
181 (setq gdb-previous-address nil) | |
182 (setq gdb-previous-frame nil) | |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
183 (setq gdb-current-frame nil) |
54538 | 184 (setq gdb-view-source t) |
185 (setq gdb-selected-view 'source) | |
186 (setq gdb-var-list nil) | |
187 (setq gdb-var-changed nil) | |
188 (setq gdb-first-prompt nil) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
189 (setq gdb-prompting nil) |
57350
11b8de2051f3
(gdb-ann3): (Re-)initialise gdb-input-queue.
Nick Roberts <nickrob@snap.net.nz>
parents:
57262
diff
changeset
|
190 (setq gdb-input-queue nil) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
191 (setq gdb-current-item nil) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
192 (setq gdb-pending-triggers nil) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
193 (setq gdb-output-sink 'user) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
194 (setq gdb-server-prefix "server ") |
54538 | 195 ;; |
196 (mapc 'make-local-variable gdb-variables) | |
197 (setq gdb-buffer-type 'gdba) | |
198 ;; | |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
199 (if gdb-use-inferior-io-buffer (gdb-clear-inferior-io)) |
54538 | 200 ;; |
201 (if (eq window-system 'w32) | |
202 (gdb-enqueue-input (list "set new-console off\n" 'ignore))) | |
203 (gdb-enqueue-input (list "set height 0\n" 'ignore)) | |
204 ;; find source file and compilation directory here | |
205 (gdb-enqueue-input (list "server list main\n" 'ignore)) ; C program | |
206 (gdb-enqueue-input (list "server list MAIN__\n" 'ignore)) ; Fortran program | |
207 (gdb-enqueue-input (list "server info source\n" 'gdb-source-info)) | |
208 ;; | |
209 (run-hooks 'gdba-mode-hook)) | |
210 | |
211 (defcustom gdb-use-colon-colon-notation nil | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
212 "If non-nil use FUN::VAR format to display variables in the speedbar." ; |
54538 | 213 :type 'boolean |
214 :group 'gud) | |
215 | |
216 (defun gud-watch () | |
217 "Watch expression at point." | |
218 (interactive) | |
219 (require 'tooltip) | |
220 (let ((expr (tooltip-identifier-from-point (point)))) | |
221 (if (and (string-equal gdb-current-language "c") | |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
222 gdb-use-colon-colon-notation gdb-current-frame) |
54538 | 223 (setq expr (concat gdb-current-frame "::" expr))) |
224 (catch 'already-watched | |
225 (dolist (var gdb-var-list) | |
226 (if (string-equal expr (car var)) (throw 'already-watched nil))) | |
227 (set-text-properties 0 (length expr) nil expr) | |
228 (gdb-enqueue-input | |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
229 (list |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
230 (if (eq gud-minor-mode 'gdba) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
231 (concat "server interpreter mi \"-var-create - * " expr "\"\n") |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
232 (concat"-var-create - * " expr "\n")) |
54538 | 233 `(lambda () (gdb-var-create-handler ,expr)))))) |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
234 (select-window (get-buffer-window gud-comint-buffer 'visible))) |
54538 | 235 |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
236 (defun gdb-goto-info () |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
237 "Go to Emacs info node: GDB Graphical Interface." |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
238 (interactive) |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
239 (select-frame (make-frame)) |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
240 (require 'info) |
54901
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
241 (Info-goto-node "(emacs)GDB Graphical Interface")) |
fa4feb8b3c34
(gdb-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
54760
diff
changeset
|
242 |
54538 | 243 (defconst gdb-var-create-regexp |
244 "name=\"\\(.*?\\)\",numchild=\"\\(.*?\\)\",type=\"\\(.*?\\)\"") | |
245 | |
246 (defun gdb-var-create-handler (expr) | |
247 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
248 (goto-char (point-min)) | |
249 (if (re-search-forward gdb-var-create-regexp nil t) | |
250 (let ((var (list expr | |
251 (match-string 1) | |
252 (match-string 2) | |
253 (match-string 3) | |
254 nil nil))) | |
255 (push var gdb-var-list) | |
256 (setq speedbar-update-flag t) | |
257 (speedbar 1) | |
258 (if (equal (nth 2 var) "0") | |
259 (gdb-enqueue-input | |
260 (list (concat "server interpreter mi \"-var-evaluate-expression " | |
261 (nth 1 var) "\"\n") | |
262 `(lambda () (gdb-var-evaluate-expression-handler | |
263 ,(nth 1 var) nil)))) | |
264 (setq gdb-var-changed t))) | |
265 (if (re-search-forward "Undefined command" nil t) | |
266 (message "Watching expressions requires gdb 6.0 onwards") | |
267 (message "No symbol %s in current context." expr))))) | |
268 | |
269 (defun gdb-var-evaluate-expression-handler (varnum changed) | |
270 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
271 (goto-char (point-min)) | |
272 (re-search-forward ".*value=\"\\(.*?\\)\"" nil t) | |
273 (catch 'var-found | |
274 (let ((var-list nil) (num 0)) | |
275 (dolist (var gdb-var-list) | |
276 (if (string-equal varnum (cadr var)) | |
277 (progn | |
278 (if changed (setcar (nthcdr 5 var) t)) | |
279 (setcar (nthcdr 4 var) (match-string 1)) | |
280 (setcar (nthcdr num gdb-var-list) var) | |
281 (throw 'var-found nil))) | |
282 (setq num (+ num 1)))))) | |
283 (setq gdb-var-changed t)) | |
284 | |
285 (defun gdb-var-list-children (varnum) | |
286 (gdb-enqueue-input | |
287 (list (concat "server interpreter mi \"-var-list-children " varnum "\"\n") | |
288 `(lambda () (gdb-var-list-children-handler ,varnum))))) | |
289 | |
290 (defconst gdb-var-list-children-regexp | |
291 "name=\"\\(.*?\\)\",exp=\"\\(.*?\\)\",numchild=\"\\(.*?\\)\"") | |
292 | |
293 (defun gdb-var-list-children-handler (varnum) | |
294 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
295 (goto-char (point-min)) | |
296 (let ((var-list nil)) | |
297 (catch 'child-already-watched | |
298 (dolist (var gdb-var-list) | |
299 (if (string-equal varnum (cadr var)) | |
300 (progn | |
301 (push var var-list) | |
302 (while (re-search-forward gdb-var-list-children-regexp nil t) | |
303 (let ((varchild (list (match-string 2) | |
304 (match-string 1) | |
305 (match-string 3) | |
306 nil nil nil))) | |
307 (if (looking-at ",type=\"\\(.*?\\)\"") | |
308 (setcar (nthcdr 3 varchild) (match-string 1))) | |
309 (dolist (var1 gdb-var-list) | |
310 (if (string-equal (cadr var1) (cadr varchild)) | |
311 (throw 'child-already-watched nil))) | |
312 (push varchild var-list) | |
313 (if (equal (nth 2 varchild) "0") | |
314 (gdb-enqueue-input | |
315 (list | |
316 (concat | |
317 "server interpreter mi \"-var-evaluate-expression " | |
318 (nth 1 varchild) "\"\n") | |
319 `(lambda () (gdb-var-evaluate-expression-handler | |
320 ,(nth 1 varchild) nil)))))))) | |
321 (push var var-list))) | |
322 (setq gdb-var-list (nreverse var-list)))))) | |
323 | |
324 (defun gdb-var-update () | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
325 (if (not (member 'gdb-var-update gdb-pending-triggers)) |
54538 | 326 (progn |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
327 (gdb-enqueue-input |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
328 (list |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
329 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
330 "server interpreter mi \"-var-update *\"\n" |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
331 "-var-update *\n") |
54538 | 332 'gdb-var-update-handler)) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
333 (push 'gdb-var-update gdb-pending-triggers)))) |
54538 | 334 |
335 (defconst gdb-var-update-regexp "name=\"\\(.*?\\)\"") | |
336 | |
337 (defun gdb-var-update-handler () | |
338 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
339 (goto-char (point-min)) | |
340 (while (re-search-forward gdb-var-update-regexp nil t) | |
341 (let ((varnum (match-string 1))) | |
342 (gdb-enqueue-input | |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
343 (list |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
344 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
345 (concat "server interpreter mi \"-var-evaluate-expression " |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
346 varnum "\"\n") |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
347 (concat "-var-evaluate-expression " varnum "\n")) |
54538 | 348 `(lambda () (gdb-var-evaluate-expression-handler |
349 ,varnum t))))))) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
350 (setq gdb-pending-triggers |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
351 (delq 'gdb-var-update gdb-pending-triggers))) |
54538 | 352 |
353 (defun gdb-var-delete () | |
354 "Delete watched expression from the speedbar." | |
355 (interactive) | |
356 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) | |
357 (let ((text (speedbar-line-text))) | |
358 (string-match "\\(\\S-+\\)" text) | |
359 (let* ((expr (match-string 1 text)) | |
360 (var (assoc expr gdb-var-list)) | |
361 (varnum (cadr var))) | |
362 (unless (string-match "\\." varnum) | |
363 (gdb-enqueue-input | |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
364 (list |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
365 (if (with-current-buffer gud-comint-buffer |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
366 (eq gud-minor-mode 'gdba)) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
367 (concat "server interpreter mi \"-var-delete " varnum "\"\n") |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
368 (concat "-var-delete " varnum "\n")) |
54538 | 369 'ignore)) |
370 (setq gdb-var-list (delq var gdb-var-list)) | |
371 (dolist (varchild gdb-var-list) | |
372 (if (string-match (concat (nth 1 var) "\\.") (nth 1 varchild)) | |
373 (setq gdb-var-list (delq varchild gdb-var-list)))) | |
374 (setq gdb-var-changed t)))))) | |
375 | |
376 (defun gdb-edit-value (text token indent) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
377 "Assign a value to a variable displayed in the speedbar." |
54538 | 378 (let* ((var (nth (- (count-lines (point-min) (point)) 2) gdb-var-list)) |
379 (varnum (cadr var)) (value)) | |
380 (setq value (read-string "New value: ")) | |
381 (gdb-enqueue-input | |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
382 (list |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
383 (if (with-current-buffer gud-comint-buffer |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
384 (eq gud-minor-mode 'gdba)) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
385 (concat "server interpreter mi \"-var-assign " varnum " " value "\"\n") |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
386 (concat "-var-assign " varnum " " value "\n")) |
54538 | 387 'ignore)))) |
388 | |
389 (defcustom gdb-show-changed-values t | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
390 "If non-nil highlight values that have recently changed in the speedbar. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
391 The highlighting is done with `font-lock-warning-face'." |
54538 | 392 :type 'boolean |
393 :group 'gud) | |
394 | |
395 (defun gdb-speedbar-expand-node (text token indent) | |
396 "Expand the node the user clicked on. | |
397 TEXT is the text of the button we clicked on, a + or - item. | |
398 TOKEN is data related to this node. | |
399 INDENT is the current indentation depth." | |
400 (cond ((string-match "+" text) ;expand this node | |
55764
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
401 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
402 (gdb-var-list-children token) |
25f133a490aa
(gdb-var-update, gdb-var-update-handler, gdb-var-delete)
Nick Roberts <nickrob@snap.net.nz>
parents:
55762
diff
changeset
|
403 (gdbmi-var-list-children token))) |
54538 | 404 ((string-match "-" text) ;contract this node |
405 (dolist (var gdb-var-list) | |
406 (if (string-match (concat token "\\.") (nth 1 var)) | |
407 (setq gdb-var-list (delq var gdb-var-list)))) | |
408 (setq gdb-var-changed t)))) | |
409 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
410 (defvar gdb-buffer-type nil |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
411 "One of the symbols bound in `gdb-buffer-rules'.") |
54538 | 412 |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
413 (defvar gdb-input-queue () |
54538 | 414 "A list of gdb command objects.") |
415 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
416 (defvar gdb-prompting nil |
54538 | 417 "True when gdb is idle with no pending input.") |
418 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
419 (defvar gdb-output-sink 'user |
54538 | 420 "The disposition of the output of the current gdb command. |
421 Possible values are these symbols: | |
422 | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
423 `user' -- gdb output should be copied to the GUD buffer |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
424 for the user to see. |
54538 | 425 |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
426 `inferior' -- gdb output should be copied to the inferior-io buffer |
54538 | 427 |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
428 `pre-emacs' -- output should be ignored util the post-prompt |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
429 annotation is received. Then the output-sink |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
430 becomes:... |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
431 `emacs' -- output should be collected in the partial-output-buffer |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
432 for subsequent processing by a command. This is the |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
433 disposition of output generated by commands that |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
434 gdb mode sends to gdb on its own behalf. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
435 `post-emacs' -- ignore output until the prompt annotation is |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
436 received, then go to USER disposition. |
54538 | 437 |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
438 gdba (gdb-ui.el) uses all five values, gdbmi (gdb-mi.el) only two |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
439 \(`user' and `emacs').") |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
440 |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
441 (defvar gdb-current-item nil |
54538 | 442 "The most recent command item sent to gdb.") |
443 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
444 (defvar gdb-pending-triggers '() |
54538 | 445 "A list of trigger functions that have run later than their output |
446 handlers.") | |
447 | |
448 ;; end of gdb variables | |
449 | |
450 (defun gdb-get-target-string () | |
451 (with-current-buffer gud-comint-buffer | |
452 gud-target-name)) | |
453 | |
454 | |
455 ;; | |
456 ;; gdb buffers. | |
457 ;; | |
458 ;; Each buffer has a TYPE -- a symbol that identifies the function | |
459 ;; of that particular buffer. | |
460 ;; | |
461 ;; The usual gdb interaction buffer is given the type `gdba' and | |
462 ;; is constructed specially. | |
463 ;; | |
464 ;; Others are constructed by gdb-get-create-buffer and | |
465 ;; named according to the rules set forth in the gdb-buffer-rules-assoc | |
466 | |
467 (defvar gdb-buffer-rules-assoc '()) | |
468 | |
469 (defun gdb-get-buffer (key) | |
470 "Return the gdb buffer tagged with type KEY. | |
471 The key should be one of the cars in `gdb-buffer-rules-assoc'." | |
472 (save-excursion | |
473 (gdb-look-for-tagged-buffer key (buffer-list)))) | |
474 | |
475 (defun gdb-get-create-buffer (key) | |
476 "Create a new gdb buffer of the type specified by KEY. | |
477 The key should be one of the cars in `gdb-buffer-rules-assoc'." | |
478 (or (gdb-get-buffer key) | |
479 (let* ((rules (assoc key gdb-buffer-rules-assoc)) | |
480 (name (funcall (gdb-rules-name-maker rules))) | |
481 (new (get-buffer-create name))) | |
482 (with-current-buffer new | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
483 (let ((trigger)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
484 (if (cdr (cdr rules)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
485 (setq trigger (funcall (car (cdr (cdr rules)))))) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
486 (set (make-local-variable 'gdb-buffer-type) key) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
487 (set (make-local-variable 'gud-minor-mode) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
488 (with-current-buffer gud-comint-buffer gud-minor-mode)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
489 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
490 (if trigger (funcall trigger))) |
54538 | 491 new)))) |
492 | |
493 (defun gdb-rules-name-maker (rules) (car (cdr rules))) | |
494 | |
495 (defun gdb-look-for-tagged-buffer (key bufs) | |
496 (let ((retval nil)) | |
497 (while (and (not retval) bufs) | |
498 (set-buffer (car bufs)) | |
499 (if (eq gdb-buffer-type key) | |
500 (setq retval (car bufs))) | |
501 (setq bufs (cdr bufs))) | |
502 retval)) | |
503 | |
504 ;; | |
505 ;; This assoc maps buffer type symbols to rules. Each rule is a list of | |
506 ;; at least one and possible more functions. The functions have these | |
507 ;; roles in defining a buffer type: | |
508 ;; | |
509 ;; NAME - Return a name for this buffer type. | |
510 ;; | |
511 ;; The remaining function(s) are optional: | |
512 ;; | |
513 ;; MODE - called in a new buffer with no arguments, should establish | |
514 ;; the proper mode for the buffer. | |
515 ;; | |
516 | |
517 (defun gdb-set-buffer-rules (buffer-type &rest rules) | |
518 (let ((binding (assoc buffer-type gdb-buffer-rules-assoc))) | |
519 (if binding | |
520 (setcdr binding rules) | |
521 (push (cons buffer-type rules) | |
522 gdb-buffer-rules-assoc)))) | |
523 | |
524 ;; GUD buffers are an exception to the rules | |
525 (gdb-set-buffer-rules 'gdba 'error) | |
526 | |
527 ;; | |
528 ;; Partial-output buffer : This accumulates output from a command executed on | |
529 ;; behalf of emacs (rather than the user). | |
530 ;; | |
531 (gdb-set-buffer-rules 'gdb-partial-output-buffer | |
532 'gdb-partial-output-name) | |
533 | |
534 (defun gdb-partial-output-name () | |
535 (concat "*partial-output-" | |
536 (gdb-get-target-string) | |
537 "*")) | |
538 | |
539 | |
540 (gdb-set-buffer-rules 'gdb-inferior-io | |
541 'gdb-inferior-io-name | |
542 'gdb-inferior-io-mode) | |
543 | |
544 (defun gdb-inferior-io-name () | |
545 (concat "*input/output of " | |
546 (gdb-get-target-string) | |
547 "*")) | |
548 | |
549 (defvar gdb-inferior-io-mode-map | |
550 (let ((map (make-sparse-keymap))) | |
551 (define-key map "\C-c\C-c" 'gdb-inferior-io-interrupt) | |
552 (define-key map "\C-c\C-z" 'gdb-inferior-io-stop) | |
553 (define-key map "\C-c\C-\\" 'gdb-inferior-io-quit) | |
554 (define-key map "\C-c\C-d" 'gdb-inferior-io-eof) | |
555 map)) | |
556 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
557 (define-derived-mode gdb-inferior-io-mode comint-mode "Inferior I/O" |
54538 | 558 "Major mode for gdb inferior-io." |
559 :syntax-table nil :abbrev-table nil | |
560 ;; We want to use comint because it has various nifty and familiar | |
561 ;; features. We don't need a process, but comint wants one, so create | |
562 ;; a dummy one. | |
563 (make-comint-in-buffer | |
564 (substring (buffer-name) 1 (- (length (buffer-name)) 1)) | |
565 (current-buffer) "hexl") | |
566 (setq comint-input-sender 'gdb-inferior-io-sender)) | |
567 | |
568 (defun gdb-inferior-io-sender (proc string) | |
569 ;; PROC is the pseudo-process created to satisfy comint. | |
570 (with-current-buffer (process-buffer proc) | |
571 (setq proc (get-buffer-process gud-comint-buffer)) | |
572 (process-send-string proc string) | |
573 (process-send-string proc "\n"))) | |
574 | |
575 (defun gdb-inferior-io-interrupt () | |
576 "Interrupt the program being debugged." | |
577 (interactive) | |
578 (interrupt-process | |
579 (get-buffer-process gud-comint-buffer) comint-ptyp)) | |
580 | |
581 (defun gdb-inferior-io-quit () | |
582 "Send quit signal to the program being debugged." | |
583 (interactive) | |
584 (quit-process | |
585 (get-buffer-process gud-comint-buffer) comint-ptyp)) | |
586 | |
587 (defun gdb-inferior-io-stop () | |
588 "Stop the program being debugged." | |
589 (interactive) | |
590 (stop-process | |
591 (get-buffer-process gud-comint-buffer) comint-ptyp)) | |
592 | |
593 (defun gdb-inferior-io-eof () | |
594 "Send end-of-file to the program being debugged." | |
595 (interactive) | |
596 (process-send-eof | |
597 (get-buffer-process gud-comint-buffer))) | |
598 | |
599 | |
600 ;; | |
601 ;; gdb communications | |
602 ;; | |
603 | |
604 ;; INPUT: things sent to gdb | |
605 ;; | |
606 ;; The queues are lists. Each element is either a string (indicating user or | |
607 ;; user-like input) or a list of the form: | |
608 ;; | |
609 ;; (INPUT-STRING HANDLER-FN) | |
610 ;; | |
611 ;; The handler function will be called from the partial-output buffer when the | |
612 ;; command completes. This is the way to write commands which invoke gdb | |
613 ;; commands autonomously. | |
614 ;; | |
615 ;; These lists are consumed tail first. | |
616 ;; | |
617 | |
618 (defun gdb-send (proc string) | |
619 "A comint send filter for gdb. | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
620 This filter may simply queue input for a later time." |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
621 (if gud-running |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
622 (process-send-string proc (concat string "\n")) |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
623 (gdb-enqueue-input (concat string "\n")))) |
54538 | 624 |
625 ;; Note: Stuff enqueued here will be sent to the next prompt, even if it | |
626 ;; is a query, or other non-top-level prompt. | |
627 | |
628 (defun gdb-enqueue-input (item) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
629 (if gdb-prompting |
54538 | 630 (progn |
631 (gdb-send-item item) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
632 (setq gdb-prompting nil)) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
633 (push item gdb-input-queue))) |
54538 | 634 |
635 (defun gdb-dequeue-input () | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
636 (let ((queue gdb-input-queue)) |
54538 | 637 (and queue |
638 (let ((last (car (last queue)))) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
639 (unless (nbutlast queue) (setq gdb-input-queue '())) |
54538 | 640 last)))) |
641 | |
642 ;; | |
643 ;; output -- things gdb prints to emacs | |
644 ;; | |
645 ;; GDB output is a stream interrupted by annotations. | |
646 ;; Annotations can be recognized by their beginning | |
647 ;; with \C-j\C-z\C-z<tag><opt>\C-j | |
648 ;; | |
649 ;; The tag is a string obeying symbol syntax. | |
650 ;; | |
651 ;; The optional part `<opt>' can be either the empty string | |
652 ;; or a space followed by more data relating to the annotation. | |
653 ;; For example, the SOURCE annotation is followed by a filename, | |
654 ;; line number and various useless goo. This data must not include | |
655 ;; any newlines. | |
656 ;; | |
657 | |
658 (defcustom gud-gdba-command-name "gdb -annotate=3" | |
659 "Default command to execute an executable under the GDB-UI debugger." | |
660 :type 'string | |
661 :group 'gud) | |
662 | |
663 (defvar gdb-annotation-rules | |
664 '(("pre-prompt" gdb-pre-prompt) | |
665 ("prompt" gdb-prompt) | |
666 ("commands" gdb-subprompt) | |
667 ("overload-choice" gdb-subprompt) | |
668 ("query" gdb-subprompt) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
669 ;; Need this prompt for GDB 6.1 |
55507
e266c6d6bd7a
(gdb-annotation-rules): Add nquery annotation
Nick Roberts <nickrob@snap.net.nz>
parents:
55400
diff
changeset
|
670 ("nquery" gdb-subprompt) |
54538 | 671 ("prompt-for-continue" gdb-subprompt) |
672 ("post-prompt" gdb-post-prompt) | |
673 ("source" gdb-source) | |
674 ("starting" gdb-starting) | |
675 ("exited" gdb-stopping) | |
676 ("signalled" gdb-stopping) | |
677 ("signal" gdb-stopping) | |
678 ("breakpoint" gdb-stopping) | |
679 ("watchpoint" gdb-stopping) | |
680 ("frame-begin" gdb-frame-begin) | |
681 ("stopped" gdb-stopped) | |
682 ) "An assoc mapping annotation tags to functions which process them.") | |
683 | |
684 (defconst gdb-source-spec-regexp | |
685 "\\(.*\\):\\([0-9]*\\):[0-9]*:[a-z]*:\\(0x[a-f0-9]*\\)") | |
686 | |
687 ;; Do not use this except as an annotation handler. | |
688 (defun gdb-source (args) | |
689 (string-match gdb-source-spec-regexp args) | |
690 ;; Extract the frame position from the marker. | |
691 (setq gud-last-frame | |
692 (cons | |
693 (match-string 1 args) | |
694 (string-to-int (match-string 2 args)))) | |
695 (setq gdb-current-address (match-string 3 args)) | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
696 (setq gdb-view-source t) |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
697 ;; cover for auto-display output which comes *before* |
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
698 ;; stopped annotation |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
699 (if (eq gdb-output-sink 'inferior) (setq gdb-output-sink 'user))) |
54538 | 700 |
701 (defun gdb-send-item (item) | |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
702 (if gdb-enable-debug-log (push (cons 'send item) gdb-debug-log)) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
703 (setq gdb-current-item item) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
704 (with-current-buffer gud-comint-buffer |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
705 (if (eq gud-minor-mode 'gdba) |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
706 (if (stringp item) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
707 (progn |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
708 (setq gdb-output-sink 'user) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
709 (process-send-string (get-buffer-process gud-comint-buffer) item)) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
710 (progn |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
711 (gdb-clear-partial-output) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
712 (setq gdb-output-sink 'pre-emacs) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
713 (process-send-string (get-buffer-process gud-comint-buffer) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
714 (car item)))) |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
715 ;; case: eq gud-minor-mode 'gdbmi |
54538 | 716 (gdb-clear-partial-output) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
717 (setq gdb-output-sink 'emacs) |
54538 | 718 (process-send-string (get-buffer-process gud-comint-buffer) |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
719 (car item))))) |
54538 | 720 |
721 (defun gdb-pre-prompt (ignored) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
722 "An annotation handler for `pre-prompt'. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
723 This terminates the collection of output from a previous command if that |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
724 happens to be in effect." |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
725 (let ((sink gdb-output-sink)) |
54538 | 726 (cond |
727 ((eq sink 'user) t) | |
728 ((eq sink 'emacs) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
729 (setq gdb-output-sink 'post-emacs)) |
54538 | 730 (t |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
731 (setq gdb-output-sink 'user) |
54538 | 732 (error "Phase error in gdb-pre-prompt (got %s)" sink))))) |
733 | |
734 (defun gdb-prompt (ignored) | |
735 "An annotation handler for `prompt'. | |
736 This sends the next command (if any) to gdb." | |
737 (when gdb-first-prompt (gdb-ann3)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
738 (let ((sink gdb-output-sink)) |
54538 | 739 (cond |
740 ((eq sink 'user) t) | |
741 ((eq sink 'post-emacs) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
742 (setq gdb-output-sink 'user) |
54538 | 743 (let ((handler |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
744 (car (cdr gdb-current-item)))) |
54538 | 745 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) |
746 (funcall handler)))) | |
747 (t | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
748 (setq gdb-output-sink 'user) |
54538 | 749 (error "Phase error in gdb-prompt (got %s)" sink)))) |
750 (let ((input (gdb-dequeue-input))) | |
751 (if input | |
752 (gdb-send-item input) | |
753 (progn | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
754 (setq gdb-prompting t) |
54538 | 755 (gud-display-frame))))) |
756 | |
757 (defun gdb-subprompt (ignored) | |
758 "An annotation handler for non-top-level prompts." | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
759 (setq gdb-prompting t)) |
54538 | 760 |
761 (defun gdb-starting (ignored) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
762 "An annotation handler for `starting'. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
763 This says that I/O for the subprocess is now the program being debugged, |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
764 not GDB." |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
765 (let ((sink gdb-output-sink)) |
54538 | 766 (cond |
767 ((eq sink 'user) | |
768 (progn | |
769 (setq gud-running t) | |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
770 (if gdb-use-inferior-io-buffer |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
771 (setq gdb-output-sink 'inferior)))) |
54538 | 772 (t (error "Unexpected `starting' annotation"))))) |
773 | |
774 (defun gdb-stopping (ignored) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
775 "An annotation handler for `exited' and other annotations. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
776 They say that I/O for the subprocess is now GDB, not the program |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
777 being debugged." |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
778 (if gdb-use-inferior-io-buffer |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
779 (let ((sink gdb-output-sink)) |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
780 (cond |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
781 ((eq sink 'inferior) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
782 (setq gdb-output-sink 'user)) |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
783 (t (error "Unexpected stopping annotation")))))) |
54538 | 784 |
785 (defun gdb-frame-begin (ignored) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
786 (let ((sink gdb-output-sink)) |
54538 | 787 (cond |
788 ((eq sink 'inferior) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
789 (setq gdb-output-sink 'user)) |
54538 | 790 ((eq sink 'user) t) |
791 ((eq sink 'emacs) t) | |
792 (t (error "Unexpected frame-begin annotation (%S)" sink))))) | |
793 | |
794 (defun gdb-stopped (ignored) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
795 "An annotation handler for `stopped'. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
796 It is just like `gdb-stopping', except that if we already set the output |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
797 sink to `user' in `gdb-stopping', that is fine." |
54538 | 798 (setq gud-running nil) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
799 (let ((sink gdb-output-sink)) |
54538 | 800 (cond |
801 ((eq sink 'inferior) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
802 (setq gdb-output-sink 'user)) |
54538 | 803 ((eq sink 'user) t) |
804 (t (error "Unexpected stopped annotation"))))) | |
805 | |
806 (defun gdb-post-prompt (ignored) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
807 "An annotation handler for `post-prompt'. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
808 This begins the collection of output from the current command if that |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
809 happens to be appropriate." |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
810 (if (not gdb-pending-triggers) |
54538 | 811 (progn |
812 (gdb-get-current-frame) | |
813 (gdb-invalidate-frames) | |
814 (gdb-invalidate-breakpoints) | |
815 (gdb-invalidate-assembler) | |
816 (gdb-invalidate-registers) | |
817 (gdb-invalidate-locals) | |
818 (gdb-invalidate-threads) | |
54617
9049edac1117
(gdb-post-prompt): Fix test.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54616
diff
changeset
|
819 (unless (eq system-type 'darwin) ;Breaks on Darwin's GDB-5.3. |
9049edac1117
(gdb-post-prompt): Fix test.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54616
diff
changeset
|
820 ;; FIXME: with GDB-6 on Darwin, this might very well work. |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
821 (dolist (frame (frame-list)) |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
822 (when (string-equal (frame-parameter frame 'name) "Speedbar") |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
823 (setq gdb-var-changed t) ; force update |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
824 (dolist (var gdb-var-list) |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
825 (setcar (nthcdr 5 var) nil)))) |
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
826 (gdb-var-update)))) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
827 (let ((sink gdb-output-sink)) |
54538 | 828 (cond |
829 ((eq sink 'user) t) | |
830 ((eq sink 'pre-emacs) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
831 (setq gdb-output-sink 'emacs)) |
54538 | 832 (t |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
833 (setq gdb-output-sink 'user) |
54538 | 834 (error "Phase error in gdb-post-prompt (got %s)" sink))))) |
835 | |
836 (defun gud-gdba-marker-filter (string) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
837 "A gud marker filter for gdb. Handle a burst of output from GDB." |
54616
47c4cb867a84
(gdb-ann3, gdb-send-item)
Nick Roberts <nickrob@snap.net.nz>
parents:
54538
diff
changeset
|
838 (if gdb-enable-debug-log (push (cons 'recv string) gdb-debug-log)) |
54538 | 839 ;; Recall the left over gud-marker-acc from last time |
840 (setq gud-marker-acc (concat gud-marker-acc string)) | |
841 ;; Start accumulating output for the GUD buffer | |
842 (let ((output "")) | |
843 ;; | |
844 ;; Process all the complete markers in this chunk. | |
845 (while (string-match "\n\032\032\\(.*\\)\n" gud-marker-acc) | |
846 (let ((annotation (match-string 1 gud-marker-acc))) | |
847 ;; | |
848 ;; Stuff prior to the match is just ordinary output. | |
849 ;; It is either concatenated to OUTPUT or directed | |
850 ;; elsewhere. | |
851 (setq output | |
852 (gdb-concat-output | |
853 output | |
854 (substring gud-marker-acc 0 (match-beginning 0)))) | |
855 ;; | |
856 ;; Take that stuff off the gud-marker-acc. | |
857 (setq gud-marker-acc (substring gud-marker-acc (match-end 0))) | |
858 ;; | |
859 ;; Parse the tag from the annotation, and maybe its arguments. | |
860 (string-match "\\(\\S-*\\) ?\\(.*\\)" annotation) | |
861 (let* ((annotation-type (match-string 1 annotation)) | |
862 (annotation-arguments (match-string 2 annotation)) | |
863 (annotation-rule (assoc annotation-type | |
864 gdb-annotation-rules))) | |
865 ;; Call the handler for this annotation. | |
866 (if annotation-rule | |
867 (funcall (car (cdr annotation-rule)) | |
868 annotation-arguments) | |
869 ;; Else the annotation is not recognized. Ignore it silently, | |
870 ;; so that GDB can add new annotations without causing | |
871 ;; us to blow up. | |
872 )))) | |
873 ;; | |
874 ;; Does the remaining text end in a partial line? | |
875 ;; If it does, then keep part of the gud-marker-acc until we get more. | |
876 (if (string-match "\n\\'\\|\n\032\\'\\|\n\032\032.*\\'" | |
877 gud-marker-acc) | |
878 (progn | |
879 ;; Everything before the potential marker start can be output. | |
880 (setq output | |
881 (gdb-concat-output output | |
882 (substring gud-marker-acc 0 | |
883 (match-beginning 0)))) | |
884 ;; | |
885 ;; Everything after, we save, to combine with later input. | |
886 (setq gud-marker-acc (substring gud-marker-acc (match-beginning 0)))) | |
887 ;; | |
888 ;; In case we know the gud-marker-acc contains no partial annotations: | |
889 (progn | |
890 (setq output (gdb-concat-output output gud-marker-acc)) | |
891 (setq gud-marker-acc ""))) | |
892 output)) | |
893 | |
894 (defun gdb-concat-output (so-far new) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
895 (let ((sink gdb-output-sink)) |
54538 | 896 (cond |
897 ((eq sink 'user) (concat so-far new)) | |
898 ((or (eq sink 'pre-emacs) (eq sink 'post-emacs)) so-far) | |
899 ((eq sink 'emacs) | |
900 (gdb-append-to-partial-output new) | |
901 so-far) | |
902 ((eq sink 'inferior) | |
903 (gdb-append-to-inferior-io new) | |
904 so-far) | |
905 (t (error "Bogon output sink %S" sink))))) | |
906 | |
907 (defun gdb-append-to-partial-output (string) | |
908 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
909 (goto-char (point-max)) | |
910 (insert string))) | |
911 | |
912 (defun gdb-clear-partial-output () | |
913 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) | |
914 (erase-buffer))) | |
915 | |
916 (defun gdb-append-to-inferior-io (string) | |
917 (with-current-buffer (gdb-get-create-buffer 'gdb-inferior-io) | |
918 (goto-char (point-max)) | |
919 (insert-before-markers string)) | |
920 (if (not (string-equal string "")) | |
921 (gdb-display-buffer (gdb-get-create-buffer 'gdb-inferior-io)))) | |
922 | |
923 (defun gdb-clear-inferior-io () | |
924 (with-current-buffer (gdb-get-create-buffer 'gdb-inferior-io) | |
925 (erase-buffer))) | |
926 | |
927 | |
928 ;; One trick is to have a command who's output is always available in a buffer | |
929 ;; of it's own, and is always up to date. We build several buffers of this | |
930 ;; type. | |
931 ;; | |
932 ;; There are two aspects to this: gdb has to tell us when the output for that | |
933 ;; command might have changed, and we have to be able to run the command | |
934 ;; behind the user's back. | |
935 ;; | |
936 ;; The output phasing associated with the variable gdb-output-sink | |
937 ;; help us to run commands behind the user's back. | |
938 ;; | |
939 ;; Below is the code for specificly managing buffers of output from one | |
940 ;; command. | |
941 ;; | |
942 | |
943 ;; The trigger function is suitable for use in the assoc GDB-ANNOTATION-RULES | |
944 ;; It adds an input for the command we are tracking. It should be the | |
945 ;; annotation rule binding of whatever gdb sends to tell us this command | |
946 ;; might have changed it's output. | |
947 ;; | |
948 ;; NAME is the function name. DEMAND-PREDICATE tests if output is really needed. | |
949 ;; GDB-COMMAND is a string of such. OUTPUT-HANDLER is the function bound to the | |
950 ;; input in the input queue (see comment about ``gdb communications'' above). | |
951 | |
952 (defmacro def-gdb-auto-update-trigger (name demand-predicate gdb-command | |
953 output-handler) | |
954 `(defun ,name (&optional ignored) | |
955 (if (and (,demand-predicate) | |
956 (not (member ',name | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
957 gdb-pending-triggers))) |
54538 | 958 (progn |
959 (gdb-enqueue-input | |
960 (list ,gdb-command ',output-handler)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
961 (push ',name gdb-pending-triggers))))) |
54538 | 962 |
963 (defmacro def-gdb-auto-update-handler (name trigger buf-key custom-defun) | |
964 `(defun ,name () | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
965 (setq gdb-pending-triggers |
54538 | 966 (delq ',trigger |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
967 gdb-pending-triggers)) |
54538 | 968 (let ((buf (gdb-get-buffer ',buf-key))) |
969 (and buf | |
970 (with-current-buffer buf | |
971 (let ((p (point)) | |
972 (buffer-read-only nil)) | |
973 (erase-buffer) | |
974 (insert-buffer-substring (gdb-get-create-buffer | |
975 'gdb-partial-output-buffer)) | |
976 (goto-char p))))) | |
977 ;; put customisation here | |
978 (,custom-defun))) | |
979 | |
980 (defmacro def-gdb-auto-updated-buffer (buffer-key trigger-name gdb-command | |
981 output-handler-name custom-defun) | |
982 `(progn | |
983 (def-gdb-auto-update-trigger ,trigger-name | |
984 ;; The demand predicate: | |
985 (lambda () (gdb-get-buffer ',buffer-key)) | |
986 ,gdb-command | |
987 ,output-handler-name) | |
988 (def-gdb-auto-update-handler ,output-handler-name | |
989 ,trigger-name ,buffer-key ,custom-defun))) | |
990 | |
991 | |
992 ;; | |
993 ;; Breakpoint buffer : This displays the output of `info breakpoints'. | |
994 ;; | |
995 (gdb-set-buffer-rules 'gdb-breakpoints-buffer | |
996 'gdb-breakpoints-buffer-name | |
997 'gdb-breakpoints-mode) | |
998 | |
999 (def-gdb-auto-updated-buffer gdb-breakpoints-buffer | |
1000 ;; This defines the auto update rule for buffers of type | |
1001 ;; `gdb-breakpoints-buffer'. | |
1002 ;; | |
1003 ;; It defines a function to serve as the annotation handler that | |
1004 ;; handles the `foo-invalidated' message. That function is called: | |
1005 gdb-invalidate-breakpoints | |
1006 ;; | |
1007 ;; To update the buffer, this command is sent to gdb. | |
1008 "server info breakpoints\n" | |
1009 ;; | |
1010 ;; This also defines a function to be the handler for the output | |
1011 ;; from the command above. That function will copy the output into | |
1012 ;; the appropriately typed buffer. That function will be called: | |
1013 gdb-info-breakpoints-handler | |
1014 ;; buffer specific functions | |
1015 gdb-info-breakpoints-custom) | |
1016 | |
1017 (defvar gdb-cdir nil "Compilation directory.") | |
1018 | |
1019 (defconst breakpoint-xpm-data "/* XPM */ | |
1020 static char *magick[] = { | |
1021 /* columns rows colors chars-per-pixel */ | |
1022 \"10 10 2 1\", | |
1023 \" c red\", | |
1024 \"+ c None\", | |
1025 /* pixels */ | |
1026 \"+++ +++\", | |
1027 \"++ ++\", | |
1028 \"+ +\", | |
1029 \" \", | |
1030 \" \", | |
1031 \" \", | |
1032 \" \", | |
1033 \"+ +\", | |
1034 \"++ ++\", | |
1035 \"+++ +++\", | |
1036 };" | |
1037 "XPM data used for breakpoint icon.") | |
1038 | |
1039 (defconst breakpoint-enabled-pbm-data | |
1040 "P1 | |
1041 10 10\", | |
1042 0 0 0 0 1 1 1 1 0 0 0 0 | |
1043 0 0 0 1 1 1 1 1 1 0 0 0 | |
1044 0 0 1 1 1 1 1 1 1 1 0 0 | |
1045 0 1 1 1 1 1 1 1 1 1 1 0 | |
1046 0 1 1 1 1 1 1 1 1 1 1 0 | |
1047 0 1 1 1 1 1 1 1 1 1 1 0 | |
1048 0 1 1 1 1 1 1 1 1 1 1 0 | |
1049 0 0 1 1 1 1 1 1 1 1 0 0 | |
1050 0 0 0 1 1 1 1 1 1 0 0 0 | |
1051 0 0 0 0 1 1 1 1 0 0 0 0" | |
1052 "PBM data used for enabled breakpoint icon.") | |
1053 | |
1054 (defconst breakpoint-disabled-pbm-data | |
1055 "P1 | |
1056 10 10\", | |
1057 0 0 1 0 1 0 1 0 0 0 | |
1058 0 1 0 1 0 1 0 1 0 0 | |
1059 1 0 1 0 1 0 1 0 1 0 | |
1060 0 1 0 1 0 1 0 1 0 1 | |
1061 1 0 1 0 1 0 1 0 1 0 | |
1062 0 1 0 1 0 1 0 1 0 1 | |
1063 1 0 1 0 1 0 1 0 1 0 | |
1064 0 1 0 1 0 1 0 1 0 1 | |
1065 0 0 1 0 1 0 1 0 1 0 | |
1066 0 0 0 1 0 1 0 1 0 0" | |
1067 "PBM data used for disabled breakpoint icon.") | |
1068 | |
1069 (defvar breakpoint-enabled-icon nil | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1070 "Icon for enabled breakpoint in display margin.") |
54538 | 1071 |
1072 (defvar breakpoint-disabled-icon nil | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1073 "Icon for disabled breakpoint in display margin.") |
54538 | 1074 |
57262
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1075 ;; Bitmap for breakpoint in fringe |
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1076 (define-fringe-bitmap 'breakpoint |
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1077 "\x3c\x7e\xff\xff\xff\xff\x7e\x3c") |
54538 | 1078 |
1079 (defface breakpoint-enabled-bitmap-face | |
1080 '((t | |
1081 :inherit fringe | |
1082 :foreground "red")) | |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1083 "Face for enabled breakpoint icon in fringe." |
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1084 :group 'gud) |
54538 | 1085 |
1086 (defface breakpoint-disabled-bitmap-face | |
1087 '((t | |
1088 :inherit fringe | |
1089 :foreground "grey60")) | |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1090 "Face for disabled breakpoint icon in fringe." |
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1091 :group 'gud) |
54538 | 1092 |
1093 | |
1094 ;;-put breakpoint icons in relevant margins (even those set in the GUD buffer) | |
1095 (defun gdb-info-breakpoints-custom () | |
1096 (let ((flag)(address)) | |
1097 ;; | |
1098 ;; remove all breakpoint-icons in source buffers but not assembler buffer | |
1099 (dolist (buffer (buffer-list)) | |
1100 (with-current-buffer buffer | |
1101 (if (and (eq gud-minor-mode 'gdba) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1102 (not (string-match "\\`\\*.+\\*\\'" (buffer-name)))) |
54538 | 1103 (gdb-remove-breakpoint-icons (point-min) (point-max))))) |
1104 (with-current-buffer (gdb-get-buffer 'gdb-breakpoints-buffer) | |
1105 (save-excursion | |
1106 (goto-char (point-min)) | |
1107 (while (< (point) (- (point-max) 1)) | |
1108 (forward-line 1) | |
1109 (if (looking-at "[^\t].*breakpoint") | |
1110 (progn | |
1111 (looking-at "[0-9]*\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)") | |
1112 (setq flag (char-after (match-beginning 1))) | |
1113 (beginning-of-line) | |
1114 (if (re-search-forward "in\\s-+\\S-+\\s-+at\\s-+" nil t) | |
1115 (progn | |
1116 (looking-at "\\(\\S-*\\):\\([0-9]+\\)") | |
1117 (let ((line (match-string 2)) (buffer-read-only nil) | |
1118 (file (match-string 1))) | |
1119 (add-text-properties (point-at-bol) (point-at-eol) | |
1120 '(mouse-face highlight | |
1121 help-echo "mouse-2, RET: visit breakpoint")) | |
1122 (with-current-buffer | |
1123 (find-file-noselect | |
1124 (if (file-exists-p file) file | |
1125 (expand-file-name file gdb-cdir))) | |
1126 (save-current-buffer | |
1127 (set (make-local-variable 'gud-minor-mode) 'gdba) | |
1128 (set (make-local-variable 'tool-bar-map) | |
1129 gud-tool-bar-map)) | |
1130 ;; only want one breakpoint icon at each location | |
1131 (save-excursion | |
1132 (goto-line (string-to-number line)) | |
1133 (gdb-put-breakpoint-icon (eq flag ?y))))))))) | |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
1134 (end-of-line))))) |
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
1135 (if (gdb-get-buffer 'gdb-assembler-buffer) (gdb-assembler-custom))) |
54538 | 1136 |
1137 (defun gdb-mouse-toggle-breakpoint (event) | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1138 "Toggle breakpoint in left fringe/margin with mouse click." |
54538 | 1139 (interactive "e") |
1140 (mouse-minibuffer-check event) | |
1141 (let ((posn (event-end event))) | |
1142 (if (numberp (posn-point posn)) | |
1143 (with-selected-window (posn-window posn) | |
1144 (save-excursion | |
1145 (goto-char (posn-point posn)) | |
1146 (if (or (posn-object posn) | |
57262
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1147 (eq (car (fringe-bitmaps-at-pos (posn-point posn))) |
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1148 'breakpoint)) |
54538 | 1149 (gud-remove nil) |
1150 (gud-break nil))))))) | |
1151 | |
1152 (defun gdb-breakpoints-buffer-name () | |
1153 (with-current-buffer gud-comint-buffer | |
1154 (concat "*breakpoints of " (gdb-get-target-string) "*"))) | |
1155 | |
1156 (defun gdb-display-breakpoints-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1157 "Display status of user-settable breakpoints." |
54538 | 1158 (interactive) |
1159 (gdb-display-buffer | |
1160 (gdb-get-create-buffer 'gdb-breakpoints-buffer))) | |
1161 | |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1162 (defconst gdb-frame-parameters |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1163 '((height . 12) (width . 60) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1164 (unsplittable . t) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1165 (tool-bar-lines . nil) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1166 (menu-bar-lines . nil) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1167 (minibuffer . nil))) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1168 |
54538 | 1169 (defun gdb-frame-breakpoints-buffer () |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1170 "Display status of user-settable breakpoints in a new frame." |
54538 | 1171 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1172 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1173 (switch-to-buffer (gdb-get-create-buffer 'gdb-breakpoints-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1174 (set-window-dedicated-p (selected-window) t)) |
54538 | 1175 |
1176 (defvar gdb-breakpoints-mode-map | |
1177 (let ((map (make-sparse-keymap)) | |
1178 (menu (make-sparse-keymap "Breakpoints"))) | |
1179 (define-key menu [toggle] '("Toggle" . gdb-toggle-breakpoint)) | |
1180 (define-key menu [delete] '("Delete" . gdb-delete-breakpoint)) | |
1181 (define-key menu [goto] '("Goto" . gdb-goto-breakpoint)) | |
1182 | |
1183 (suppress-keymap map) | |
1184 (define-key map [menu-bar breakpoints] (cons "Breakpoints" menu)) | |
1185 (define-key map " " 'gdb-toggle-breakpoint) | |
1186 (define-key map "d" 'gdb-delete-breakpoint) | |
1187 (define-key map "\r" 'gdb-goto-breakpoint) | |
1188 (define-key map [mouse-2] 'gdb-mouse-goto-breakpoint) | |
1189 map)) | |
1190 | |
1191 (defun gdb-breakpoints-mode () | |
1192 "Major mode for gdb breakpoints. | |
1193 | |
1194 \\{gdb-breakpoints-mode-map}" | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1195 (kill-all-local-variables) |
54538 | 1196 (setq major-mode 'gdb-breakpoints-mode) |
1197 (setq mode-name "Breakpoints") | |
1198 (use-local-map gdb-breakpoints-mode-map) | |
1199 (setq buffer-read-only t) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1200 (run-mode-hooks 'gdb-breakpoints-mode-hook) |
55762
e31413b06034
(gdb-breakpoints-mode, gdb-frames-mode)
Nick Roberts <nickrob@snap.net.nz>
parents:
55749
diff
changeset
|
1201 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1202 'gdb-invalidate-breakpoints |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1203 'gdbmi-invalidate-breakpoints)) |
54538 | 1204 |
1205 (defun gdb-toggle-breakpoint () | |
1206 "Enable/disable the breakpoint at current line." | |
1207 (interactive) | |
1208 (save-excursion | |
1209 (beginning-of-line 1) | |
56330
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1210 (if (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1211 (looking-at "\\([0-9]+\\).*point\\s-*\\S-*\\s-*\\(.\\)") |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1212 (looking-at |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1213 "\\([0-9]+\\)\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)\\s-*\\S-*\\s-*\\S-*:[0-9]+")) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1214 (gdb-enqueue-input |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1215 (list |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1216 (concat gdb-server-prefix |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1217 (if (eq ?y (char-after (match-beginning 2))) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1218 "disable " |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1219 "enable ") |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1220 (match-string 1) "\n") 'ignore)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1221 (error "Not recognized as break/watchpoint line")))) |
54538 | 1222 |
1223 (defun gdb-delete-breakpoint () | |
1224 "Delete the breakpoint at current line." | |
1225 (interactive) | |
1226 (beginning-of-line 1) | |
56330
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1227 (if (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1228 (looking-at "\\([0-9]+\\).*point\\s-*\\S-*\\s-*\\(.\\)") |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1229 (looking-at |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1230 "\\([0-9]+\\)\\s-*\\S-*\\s-*\\S-*\\s-*.\\s-*\\S-*\\s-*\\S-*:[0-9]+")) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1231 (gdb-enqueue-input |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1232 (list |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1233 (concat gdb-server-prefix "delete " (match-string 1) "\n") 'ignore)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1234 (error "Not recognized as break/watchpoint line"))) |
54538 | 1235 |
1236 (defun gdb-goto-breakpoint () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1237 "Display the breakpoint location specified at current line." |
54538 | 1238 (interactive) |
1239 (save-excursion | |
1240 (beginning-of-line 1) | |
56330
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1241 (if (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1242 (looking-at ".*in\\s-+\\S-+\\s-+at\\s-+\\(\\S-*\\):\\([0-9]+\\)") |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1243 (looking-at |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1244 "[0-9]+\\s-*\\S-*\\s-*\\S-*\\s-*.\\s-*\\S-*\\s-*\\(\\S-*\\):\\([0-9]+\\)")) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1245 (let ((line (match-string 2)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1246 (file (match-string 1))) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1247 (save-selected-window |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1248 (let* ((buf (find-file-noselect (if (file-exists-p file) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1249 file |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1250 (expand-file-name file gdb-cdir)))) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1251 (window (gdb-display-buffer buf))) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1252 (with-current-buffer buf |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1253 (goto-line (string-to-number line)) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1254 (set-window-point window (point)))))) |
a76e88488fd7
(gdb-goto-breakpoint): String match more
Nick Roberts <nickrob@snap.net.nz>
parents:
56285
diff
changeset
|
1255 (error "Not recognized as break/watchpoint line")))) |
54538 | 1256 |
1257 (defun gdb-mouse-goto-breakpoint (event) | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1258 "Display the breakpoint location that you click on." |
54538 | 1259 (interactive "e") |
1260 (mouse-set-point event) | |
1261 (gdb-goto-breakpoint)) | |
1262 | |
1263 ;; | |
1264 ;; Frames buffer. This displays a perpetually correct bactracktrace | |
1265 ;; (from the command `where'). | |
1266 ;; | |
1267 ;; Alas, if your stack is deep, it is costly. | |
1268 ;; | |
1269 (gdb-set-buffer-rules 'gdb-stack-buffer | |
1270 'gdb-stack-buffer-name | |
1271 'gdb-frames-mode) | |
1272 | |
1273 (def-gdb-auto-updated-buffer gdb-stack-buffer | |
1274 gdb-invalidate-frames | |
1275 "server where\n" | |
1276 gdb-info-frames-handler | |
1277 gdb-info-frames-custom) | |
1278 | |
1279 (defun gdb-info-frames-custom () | |
1280 (with-current-buffer (gdb-get-buffer 'gdb-stack-buffer) | |
1281 (save-excursion | |
1282 (let ((buffer-read-only nil)) | |
1283 (goto-char (point-min)) | |
1284 (while (< (point) (point-max)) | |
1285 (add-text-properties (point-at-bol) (point-at-eol) | |
1286 '(mouse-face highlight | |
1287 help-echo "mouse-2, RET: Select frame")) | |
1288 (beginning-of-line) | |
1289 (when (and (or (looking-at "^#[0-9]*\\s-*\\S-* in \\(\\S-*\\)") | |
1290 (looking-at "^#[0-9]*\\s-*\\(\\S-*\\)")) | |
1291 (equal (match-string 1) gdb-current-frame)) | |
1292 (put-text-property (point-at-bol) (point-at-eol) | |
1293 'face '(:inverse-video t))) | |
1294 (forward-line 1)))))) | |
1295 | |
1296 (defun gdb-stack-buffer-name () | |
1297 (with-current-buffer gud-comint-buffer | |
1298 (concat "*stack frames of " (gdb-get-target-string) "*"))) | |
1299 | |
1300 (defun gdb-display-stack-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1301 "Display backtrace of current stack." |
54538 | 1302 (interactive) |
1303 (gdb-display-buffer | |
1304 (gdb-get-create-buffer 'gdb-stack-buffer))) | |
1305 | |
1306 (defun gdb-frame-stack-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1307 "Display backtrace of current stack in a new frame." |
54538 | 1308 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1309 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1310 (switch-to-buffer (gdb-get-create-buffer 'gdb-stack-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1311 (set-window-dedicated-p (selected-window) t)) |
54538 | 1312 |
1313 (defvar gdb-frames-mode-map | |
1314 (let ((map (make-sparse-keymap))) | |
1315 (suppress-keymap map) | |
1316 (define-key map "\r" 'gdb-frames-select) | |
1317 (define-key map [mouse-2] 'gdb-frames-mouse-select) | |
1318 map)) | |
1319 | |
1320 (defun gdb-frames-mode () | |
1321 "Major mode for gdb frames. | |
1322 | |
1323 \\{gdb-frames-mode-map}" | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1324 (kill-all-local-variables) |
54538 | 1325 (setq major-mode 'gdb-frames-mode) |
1326 (setq mode-name "Frames") | |
1327 (setq buffer-read-only t) | |
1328 (use-local-map gdb-frames-mode-map) | |
1329 (font-lock-mode -1) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1330 (run-mode-hooks 'gdb-frames-mode-hook) |
55762
e31413b06034
(gdb-breakpoints-mode, gdb-frames-mode)
Nick Roberts <nickrob@snap.net.nz>
parents:
55749
diff
changeset
|
1331 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1332 'gdb-invalidate-frames |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1333 'gdbmi-invalidate-frames)) |
54538 | 1334 |
1335 (defun gdb-get-frame-number () | |
1336 (save-excursion | |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
1337 (let* ((pos (re-search-backward "^#*\\([0-9]*\\)" nil t)) |
54538 | 1338 (n (or (and pos (match-string-no-properties 1)) "0"))) |
1339 n))) | |
1340 | |
1341 (defun gdb-frames-select () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1342 "Select the frame and display the relevant source." |
54538 | 1343 (interactive) |
1344 (gdb-enqueue-input | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1345 (list (concat gdb-server-prefix "frame " (gdb-get-frame-number) "\n") 'ignore)) |
54538 | 1346 (gud-display-frame)) |
1347 | |
1348 (defun gdb-frames-mouse-select (event) | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1349 "Select the frame you click on and display the relevant source." |
54538 | 1350 (interactive "e") |
1351 (mouse-set-point event) | |
1352 (gdb-frames-select)) | |
1353 | |
1354 ;; | |
1355 ;; Threads buffer. This displays a selectable thread list. | |
1356 ;; | |
1357 (gdb-set-buffer-rules 'gdb-threads-buffer | |
1358 'gdb-threads-buffer-name | |
1359 'gdb-threads-mode) | |
1360 | |
1361 (def-gdb-auto-updated-buffer gdb-threads-buffer | |
1362 gdb-invalidate-threads | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1363 (concat gdb-server-prefix "info threads\n") |
54538 | 1364 gdb-info-threads-handler |
1365 gdb-info-threads-custom) | |
1366 | |
1367 (defun gdb-info-threads-custom () | |
1368 (with-current-buffer (gdb-get-buffer 'gdb-threads-buffer) | |
1369 (let ((buffer-read-only nil)) | |
1370 (goto-char (point-min)) | |
1371 (while (< (point) (point-max)) | |
1372 (add-text-properties (point-at-bol) (point-at-eol) | |
1373 '(mouse-face highlight | |
1374 help-echo "mouse-2, RET: select thread")) | |
1375 (forward-line 1))))) | |
1376 | |
1377 (defun gdb-threads-buffer-name () | |
1378 (with-current-buffer gud-comint-buffer | |
1379 (concat "*threads of " (gdb-get-target-string) "*"))) | |
1380 | |
1381 (defun gdb-display-threads-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1382 "Display IDs of currently known threads." |
54538 | 1383 (interactive) |
1384 (gdb-display-buffer | |
1385 (gdb-get-create-buffer 'gdb-threads-buffer))) | |
1386 | |
1387 (defun gdb-frame-threads-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1388 "Display IDs of currently known threads in a new frame." |
54538 | 1389 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1390 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1391 (switch-to-buffer (gdb-get-create-buffer 'gdb-threads-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1392 (set-window-dedicated-p (selected-window) t)) |
54538 | 1393 |
1394 (defvar gdb-threads-mode-map | |
1395 (let ((map (make-sparse-keymap))) | |
1396 (suppress-keymap map) | |
1397 (define-key map "\r" 'gdb-threads-select) | |
1398 (define-key map [mouse-2] 'gdb-threads-mouse-select) | |
1399 map)) | |
1400 | |
1401 (defun gdb-threads-mode () | |
1402 "Major mode for gdb frames. | |
1403 | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1404 \\{gdb-threads-mode-map}" |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1405 (kill-all-local-variables) |
54538 | 1406 (setq major-mode 'gdb-threads-mode) |
1407 (setq mode-name "Threads") | |
1408 (setq buffer-read-only t) | |
1409 (use-local-map gdb-threads-mode-map) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1410 (run-mode-hooks 'gdb-threads-mode-hook) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1411 'gdb-invalidate-threads) |
54538 | 1412 |
1413 (defun gdb-get-thread-number () | |
1414 (save-excursion | |
1415 (re-search-backward "^\\s-*\\([0-9]*\\)" nil t) | |
1416 (match-string-no-properties 1))) | |
1417 | |
1418 (defun gdb-threads-select () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1419 "Select the thread and display the relevant source." |
54538 | 1420 (interactive) |
1421 (gdb-enqueue-input | |
1422 (list (concat "thread " (gdb-get-thread-number) "\n") 'ignore)) | |
1423 (gud-display-frame)) | |
1424 | |
1425 (defun gdb-threads-mouse-select (event) | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1426 "Select the thread you click on and display the relevant source." |
54538 | 1427 (interactive "e") |
1428 (mouse-set-point event) | |
1429 (gdb-threads-select)) | |
1430 | |
1431 ;; | |
1432 ;; Registers buffer. | |
1433 ;; | |
1434 (gdb-set-buffer-rules 'gdb-registers-buffer | |
1435 'gdb-registers-buffer-name | |
1436 'gdb-registers-mode) | |
1437 | |
1438 (def-gdb-auto-updated-buffer gdb-registers-buffer | |
1439 gdb-invalidate-registers | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1440 (concat gdb-server-prefix "info registers\n") |
54538 | 1441 gdb-info-registers-handler |
1442 gdb-info-registers-custom) | |
1443 | |
1444 (defun gdb-info-registers-custom ()) | |
1445 | |
1446 (defvar gdb-registers-mode-map | |
1447 (let ((map (make-sparse-keymap))) | |
1448 (suppress-keymap map) | |
1449 map)) | |
1450 | |
1451 (defun gdb-registers-mode () | |
1452 "Major mode for gdb registers. | |
1453 | |
1454 \\{gdb-registers-mode-map}" | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1455 (kill-all-local-variables) |
54538 | 1456 (setq major-mode 'gdb-registers-mode) |
1457 (setq mode-name "Registers") | |
1458 (setq buffer-read-only t) | |
1459 (use-local-map gdb-registers-mode-map) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1460 (run-mode-hooks 'gdb-registers-mode-hook) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1461 'gdb-invalidate-registers) |
54538 | 1462 |
1463 (defun gdb-registers-buffer-name () | |
1464 (with-current-buffer gud-comint-buffer | |
1465 (concat "*registers of " (gdb-get-target-string) "*"))) | |
1466 | |
1467 (defun gdb-display-registers-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1468 "Display integer register contents." |
54538 | 1469 (interactive) |
1470 (gdb-display-buffer | |
1471 (gdb-get-create-buffer 'gdb-registers-buffer))) | |
1472 | |
1473 (defun gdb-frame-registers-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1474 "Display integer register contents in a new frame." |
54538 | 1475 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1476 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1477 (switch-to-buffer (gdb-get-create-buffer 'gdb-registers-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1478 (set-window-dedicated-p (selected-window) t)) |
54538 | 1479 |
1480 ;; | |
1481 ;; Locals buffer. | |
1482 ;; | |
1483 (gdb-set-buffer-rules 'gdb-locals-buffer | |
1484 'gdb-locals-buffer-name | |
1485 'gdb-locals-mode) | |
1486 | |
1487 (def-gdb-auto-updated-buffer gdb-locals-buffer | |
1488 gdb-invalidate-locals | |
1489 "server info locals\n" | |
1490 gdb-info-locals-handler | |
1491 gdb-info-locals-custom) | |
1492 | |
1493 ;; Abbreviate for arrays and structures. | |
1494 ;; These can be expanded using gud-display. | |
1495 (defun gdb-info-locals-handler nil | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1496 (setq gdb-pending-triggers (delq 'gdb-invalidate-locals |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1497 gdb-pending-triggers)) |
54538 | 1498 (let ((buf (gdb-get-buffer 'gdb-partial-output-buffer))) |
1499 (with-current-buffer buf | |
1500 (goto-char (point-min)) | |
1501 (while (re-search-forward "^ .*\n" nil t) | |
1502 (replace-match "" nil nil)) | |
1503 (goto-char (point-min)) | |
1504 (while (re-search-forward "{[-0-9, {}\]*\n" nil t) | |
1505 (replace-match "(array);\n" nil nil)) | |
1506 (goto-char (point-min)) | |
1507 (while (re-search-forward "{.*=.*\n" nil t) | |
1508 (replace-match "(structure);\n" nil nil)))) | |
1509 (let ((buf (gdb-get-buffer 'gdb-locals-buffer))) | |
1510 (and buf (with-current-buffer buf | |
1511 (let ((p (point)) | |
1512 (buffer-read-only nil)) | |
1513 (delete-region (point-min) (point-max)) | |
1514 (insert-buffer-substring (gdb-get-create-buffer | |
1515 'gdb-partial-output-buffer)) | |
1516 (goto-char p))))) | |
1517 (run-hooks 'gdb-info-locals-hook)) | |
1518 | |
1519 (defun gdb-info-locals-custom () | |
1520 nil) | |
1521 | |
1522 (defvar gdb-locals-mode-map | |
1523 (let ((map (make-sparse-keymap))) | |
1524 (suppress-keymap map) | |
1525 map)) | |
1526 | |
1527 (defun gdb-locals-mode () | |
1528 "Major mode for gdb locals. | |
1529 | |
1530 \\{gdb-locals-mode-map}" | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1531 (kill-all-local-variables) |
54538 | 1532 (setq major-mode 'gdb-locals-mode) |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
1533 (setq mode-name (concat "Locals:" gdb-current-frame)) |
54538 | 1534 (setq buffer-read-only t) |
1535 (use-local-map gdb-locals-mode-map) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1536 (run-mode-hooks 'gdb-locals-mode-hook) |
55762
e31413b06034
(gdb-breakpoints-mode, gdb-frames-mode)
Nick Roberts <nickrob@snap.net.nz>
parents:
55749
diff
changeset
|
1537 (if (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)) |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1538 'gdb-invalidate-locals |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1539 'gdbmi-invalidate-locals)) |
54538 | 1540 |
1541 (defun gdb-locals-buffer-name () | |
1542 (with-current-buffer gud-comint-buffer | |
1543 (concat "*locals of " (gdb-get-target-string) "*"))) | |
1544 | |
1545 (defun gdb-display-locals-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1546 "Display local variables of current stack and their values." |
54538 | 1547 (interactive) |
1548 (gdb-display-buffer | |
1549 (gdb-get-create-buffer 'gdb-locals-buffer))) | |
1550 | |
1551 (defun gdb-frame-locals-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1552 "Display local variables of current stack and their values in a new frame." |
54538 | 1553 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1554 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1555 (switch-to-buffer (gdb-get-create-buffer 'gdb-locals-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1556 (set-window-dedicated-p (selected-window) t)) |
54538 | 1557 |
1558 | |
1559 ;;;; Window management | |
1560 | |
1561 ;;; The way we abuse the dedicated-p flag is pretty gross, but seems | |
1562 ;;; to do the right thing. Seeing as there is no way for Lisp code to | |
1563 ;;; get at the use_time field of a window, I'm not sure there exists a | |
1564 ;;; more elegant solution without writing C code. | |
1565 | |
1566 (defun gdb-display-buffer (buf &optional size) | |
1567 (let ((must-split nil) | |
1568 (answer nil)) | |
1569 (unwind-protect | |
1570 (progn | |
1571 (walk-windows | |
1572 #'(lambda (win) | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1573 (if (eq gud-comint-buffer (window-buffer win)) |
54538 | 1574 (set-window-dedicated-p win t)))) |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1575 (setq answer (get-buffer-window buf 'visible)) |
54538 | 1576 (if (not answer) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1577 (let ((window (get-lru-window 'visible))) |
54538 | 1578 (if window |
1579 (progn | |
1580 (set-window-buffer window buf) | |
1581 (setq answer window)) | |
1582 (setq must-split t))))) | |
1583 (walk-windows | |
1584 #'(lambda (win) | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1585 (if (eq gud-comint-buffer (window-buffer win)) |
54538 | 1586 (set-window-dedicated-p win nil))))) |
1587 (if must-split | |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1588 (let* ((largest (get-largest-window 'visible)) |
54538 | 1589 (cur-size (window-height largest)) |
1590 (new-size (and size (< size cur-size) (- cur-size size)))) | |
1591 (setq answer (split-window largest new-size)) | |
1592 (set-window-buffer answer buf))) | |
1593 answer)) | |
1594 | |
1595 (defun gdb-display-source-buffer (buffer) | |
1596 (if (eq gdb-selected-view 'source) | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1597 (gdb-display-buffer buffer) |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
1598 (gdb-display-buffer (gdb-get-buffer 'gdb-assembler-buffer))) |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1599 (get-buffer-window buffer 'visible)) |
54538 | 1600 |
1601 | |
1602 ;;; Shared keymap initialization: | |
1603 | |
1604 (let ((menu (make-sparse-keymap "GDB-Frames"))) | |
1605 (define-key gud-menu-map [frames] | |
1606 `(menu-item "GDB-Frames" ,menu :visible (eq gud-minor-mode 'gdba))) | |
1607 (define-key menu [gdb] '("Gdb" . gdb-frame-gdb-buffer)) | |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1608 (define-key menu [threads] '("Threads" . gdb-frame-threads-buffer)) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1609 (define-key menu [assembler] '("Machine" . gdb-frame-assembler-buffer)) |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1610 (define-key menu [registers] '("Registers" . gdb-frame-registers-buffer)) |
54538 | 1611 (define-key menu [locals] '("Locals" . gdb-frame-locals-buffer)) |
1612 (define-key menu [frames] '("Stack" . gdb-frame-stack-buffer)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1613 (define-key menu [breakpoints] '("Breakpoints" . gdb-frame-breakpoints-buffer))) |
54538 | 1614 |
1615 (let ((menu (make-sparse-keymap "GDB-Windows"))) | |
1616 (define-key gud-menu-map [displays] | |
1617 `(menu-item "GDB-Windows" ,menu :visible (eq gud-minor-mode 'gdba))) | |
1618 (define-key menu [gdb] '("Gdb" . gdb-display-gdb-buffer)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1619 (define-key menu [assembler] '("Machine" . gdb-display-assembler-buffer)) |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1620 (define-key menu [threads] '("Threads" . gdb-display-threads-buffer)) |
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1621 (define-key menu [registers] '("Registers" . gdb-display-registers-buffer)) |
54538 | 1622 (define-key menu [locals] '("Locals" . gdb-display-locals-buffer)) |
1623 (define-key menu [frames] '("Stack" . gdb-display-stack-buffer)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1624 (define-key menu [breakpoints] '("Breakpoints" . gdb-display-breakpoints-buffer))) |
54538 | 1625 |
1626 (let ((menu (make-sparse-keymap "View"))) | |
1627 (define-key gud-menu-map [view] | |
1628 `(menu-item "View" ,menu :visible (eq gud-minor-mode 'gdba))) | |
1629 ; (define-key menu [both] '(menu-item "Both" gdb-view-both | |
1630 ; :help "Display both source and assembler" | |
1631 ; :button (:radio . (eq gdb-selected-view 'both)))) | |
1632 (define-key menu [assembler] '(menu-item "Machine" gdb-view-assembler | |
1633 :help "Display assembler only" | |
1634 :button (:radio . (eq gdb-selected-view 'assembler)))) | |
1635 (define-key menu [source] '(menu-item "Source" gdb-view-source-function | |
1636 :help "Display source only" | |
1637 :button (:radio . (eq gdb-selected-view 'source))))) | |
1638 | |
1639 (let ((menu (make-sparse-keymap "GDB-UI"))) | |
1640 (define-key gud-menu-map [ui] | |
1641 `(menu-item "GDB-UI" ,menu :visible (eq gud-minor-mode 'gdba))) | |
1642 (define-key menu [gdb-restore-windows] | |
1643 '("Restore window layout" . gdb-restore-windows)) | |
1644 (define-key menu [gdb-many-windows] | |
1645 (menu-bar-make-toggle gdb-many-windows gdb-many-windows | |
1646 "Display other windows" "Many Windows %s" | |
1647 "Display locals, stack and breakpoint information"))) | |
1648 | |
1649 (defun gdb-frame-gdb-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1650 "Display GUD buffer in a new frame." |
54538 | 1651 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1652 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
1653 (switch-to-buffer (gdb-get-create-buffer 'gdba)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
1654 (set-window-dedicated-p (selected-window) t)) |
54538 | 1655 |
1656 (defun gdb-display-gdb-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1657 "Display GUD buffer." |
54538 | 1658 (interactive) |
1659 (gdb-display-buffer | |
1660 (gdb-get-create-buffer 'gdba))) | |
1661 | |
1662 (defvar gdb-main-file nil "Source file from which program execution begins.") | |
1663 | |
1664 (defun gdb-view-source-function () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1665 "Select source view." |
54538 | 1666 (interactive) |
1667 (if gdb-view-source | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1668 (gdb-display-buffer |
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1669 (if gud-last-last-frame |
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1670 (gud-find-file (car gud-last-last-frame)) |
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1671 (gud-find-file gdb-main-file)))) |
54538 | 1672 (setq gdb-selected-view 'source)) |
1673 | |
1674 (defun gdb-view-assembler() | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1675 "Select disassembly view." |
54538 | 1676 (interactive) |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1677 (gdb-display-buffer (gdb-get-create-buffer 'gdb-assembler-buffer)) |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
1678 (gdb-invalidate-assembler) |
54538 | 1679 (setq gdb-selected-view 'assembler)) |
1680 | |
1681 ;(defun gdb-view-both() | |
1682 ;(interactive) | |
1683 ;(setq gdb-selected-view 'both)) | |
1684 | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1685 (defcustom gdb-show-main nil |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1686 "Nil means don't display source file containing the main routine." |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1687 :type 'boolean |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1688 :group 'gud) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1689 |
54538 | 1690 (defun gdb-setup-windows () |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1691 "Layout the window pattern for gdb-many-windows." |
54538 | 1692 (gdb-display-locals-buffer) |
1693 (gdb-display-stack-buffer) | |
1694 (delete-other-windows) | |
1695 (gdb-display-breakpoints-buffer) | |
1696 (delete-other-windows) | |
1697 (switch-to-buffer gud-comint-buffer) | |
1698 (split-window nil ( / ( * (window-height) 3) 4)) | |
1699 (split-window nil ( / (window-height) 3)) | |
1700 (split-window-horizontally) | |
1701 (other-window 1) | |
1702 (switch-to-buffer (gdb-locals-buffer-name)) | |
1703 (other-window 1) | |
1704 (switch-to-buffer | |
1705 (if (and gdb-view-source | |
1706 (eq gdb-selected-view 'source)) | |
1707 (if gud-last-last-frame | |
1708 (gud-find-file (car gud-last-last-frame)) | |
1709 (gud-find-file gdb-main-file)) | |
1710 (gdb-get-create-buffer 'gdb-assembler-buffer))) | |
54729
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
1711 (when gdb-use-inferior-io-buffer |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
1712 (split-window-horizontally) |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
1713 (other-window 1) |
7bfccd78beed
(gdb-use-inferior-io-buffer): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
54668
diff
changeset
|
1714 (switch-to-buffer (gdb-inferior-io-name))) |
54538 | 1715 (other-window 1) |
1716 (switch-to-buffer (gdb-stack-buffer-name)) | |
1717 (split-window-horizontally) | |
1718 (other-window 1) | |
1719 (switch-to-buffer (gdb-breakpoints-buffer-name)) | |
1720 (other-window 1)) | |
1721 | |
1722 (defcustom gdb-many-windows nil | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1723 "Nil means just pop up the GUD buffer unless `gdb-show-main' is t. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1724 In this case it starts with two windows: one displaying the GUD |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1725 buffer and the other with the source file with the main routine |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1726 of the inferior. Non-nil means display the layout shown for |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1727 `gdba'." |
54538 | 1728 :type 'boolean |
1729 :group 'gud) | |
1730 | |
1731 (defun gdb-many-windows (arg) | |
1732 "Toggle the number of windows in the basic arrangement." | |
1733 (interactive "P") | |
1734 (setq gdb-many-windows | |
1735 (if (null arg) | |
1736 (not gdb-many-windows) | |
1737 (> (prefix-numeric-value arg) 0))) | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1738 (condition-case nil |
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1739 (gdb-restore-windows) |
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
1740 (error nil))) |
54538 | 1741 |
1742 (defun gdb-restore-windows () | |
1743 "Restore the basic arrangement of windows used by gdba. | |
1744 This arrangement depends on the value of `gdb-many-windows'." | |
1745 (interactive) | |
1746 (if gdb-many-windows | |
1747 (progn | |
1748 (switch-to-buffer gud-comint-buffer) | |
1749 (delete-other-windows) | |
1750 (gdb-setup-windows)) | |
1751 (switch-to-buffer gud-comint-buffer) | |
1752 (delete-other-windows) | |
1753 (split-window) | |
1754 (other-window 1) | |
1755 (switch-to-buffer | |
1756 (if (and gdb-view-source | |
1757 (eq gdb-selected-view 'source)) | |
1758 (if gud-last-last-frame | |
1759 (gud-find-file (car gud-last-last-frame)) | |
1760 (gud-find-file gdb-main-file)) | |
1761 (gdb-get-create-buffer 'gdb-assembler-buffer))) | |
1762 (other-window 1))) | |
1763 | |
1764 (defun gdb-reset () | |
57791
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1765 "Exit a debugging session cleanly. |
d1b93fc4ce47
Docstring fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57664
diff
changeset
|
1766 Kills the gdb buffers and resets the source buffers." |
54538 | 1767 (dolist (buffer (buffer-list)) |
55696
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1768 (unless (eq buffer gud-comint-buffer) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1769 (with-current-buffer buffer |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1770 (if (memq gud-minor-mode '(gdbmi gdba)) |
55696
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1771 (if (string-match "\\`\\*.+\\*\\'" (buffer-name)) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1772 (kill-buffer nil) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1773 (gdb-remove-breakpoint-icons (point-min) (point-max) t) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1774 (setq gud-minor-mode nil) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1775 (kill-local-variable 'tool-bar-map) |
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
1776 (setq gud-running nil)))))) |
54538 | 1777 (when (markerp gdb-overlay-arrow-position) |
1778 (move-marker gdb-overlay-arrow-position nil) | |
1779 (setq gdb-overlay-arrow-position nil)) | |
1780 (setq overlay-arrow-variable-list | |
1781 (delq 'gdb-overlay-arrow-position overlay-arrow-variable-list))) | |
1782 | |
1783 (defun gdb-source-info () | |
1784 "Find the source file where the program starts and displays it with related | |
1785 buffers." | |
1786 (goto-char (point-min)) | |
1787 (if (search-forward "directory is " nil t) | |
1788 (if (looking-at "\\S-*:\\(\\S-*\\)") | |
1789 (setq gdb-cdir (match-string 1)) | |
1790 (looking-at "\\S-*") | |
1791 (setq gdb-cdir (match-string 0)))) | |
1792 (if (search-forward "Located in " nil t) | |
1793 (if (looking-at "\\S-*") | |
1794 (setq gdb-main-file (match-string 0))) | |
1795 (setq gdb-view-source nil)) | |
1796 (if gdb-many-windows | |
1797 (gdb-setup-windows) | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1798 (gdb-get-create-buffer 'gdb-breakpoints-buffer) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1799 (when gdb-show-main |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1800 (switch-to-buffer gud-comint-buffer) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1801 (delete-other-windows) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1802 (split-window) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1803 (other-window 1) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1804 (switch-to-buffer |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1805 (if gdb-view-source |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1806 (gud-find-file gdb-main-file) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1807 (gdb-get-create-buffer 'gdb-assembler-buffer))) |
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1808 (other-window 1)))) |
54538 | 1809 |
1810 ;;from put-image | |
1811 (defun gdb-put-string (putstring pos &optional dprop) | |
1812 "Put string PUTSTRING in front of POS in the current buffer. | |
1813 PUTSTRING is displayed by putting an overlay into the current buffer with a | |
1814 `before-string' STRING that has a `display' property whose value is | |
1815 PUTSTRING." | |
1816 (let ((gdb-string "x") | |
1817 (buffer (current-buffer))) | |
1818 (let ((overlay (make-overlay pos pos buffer)) | |
1819 (prop (or dprop | |
1820 (list (list 'margin 'left-margin) putstring)))) | |
1821 (put-text-property 0 (length gdb-string) 'display prop gdb-string) | |
1822 (overlay-put overlay 'put-break t) | |
1823 (overlay-put overlay 'before-string gdb-string)))) | |
1824 | |
1825 ;;from remove-images | |
1826 (defun gdb-remove-strings (start end &optional buffer) | |
1827 "Remove strings between START and END in BUFFER. | |
1828 Remove only strings that were put in BUFFER with calls to `gdb-put-string'. | |
1829 BUFFER nil or omitted means use the current buffer." | |
1830 (unless buffer | |
1831 (setq buffer (current-buffer))) | |
1832 (let ((overlays (overlays-in start end))) | |
1833 (while overlays | |
1834 (let ((overlay (car overlays))) | |
1835 (when (overlay-get overlay 'put-break) | |
1836 (delete-overlay overlay))) | |
1837 (setq overlays (cdr overlays))))) | |
1838 | |
1839 (defun gdb-put-breakpoint-icon (enabled) | |
1840 (let ((start (progn (beginning-of-line) (- (point) 1))) | |
1841 (end (progn (end-of-line) (+ (point) 1)))) | |
1842 (gdb-remove-breakpoint-icons start end) | |
1843 (if (display-images-p) | |
1844 (if (>= (car (window-fringes)) 8) | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1845 (gdb-put-string |
54538 | 1846 nil (1+ start) |
57262
df4b0ff293d8
(breakpoint): Define as fringe bitmap.
Kim F. Storm <storm@cua.dk>
parents:
56330
diff
changeset
|
1847 `(left-fringe breakpoint |
54538 | 1848 ,(if enabled |
1849 'breakpoint-enabled-bitmap-face | |
1850 'breakpoint-disabled-bitmap-face))) | |
1851 (when (< left-margin-width 2) | |
1852 (save-current-buffer | |
1853 (setq left-margin-width 2) | |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1854 (if (get-buffer-window (current-buffer) 'visible) |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1855 (set-window-margins |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1856 (get-buffer-window (current-buffer) 'visible) |
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1857 left-margin-width right-margin-width)))) |
54538 | 1858 (put-image |
1859 (if enabled | |
1860 (or breakpoint-enabled-icon | |
1861 (setq breakpoint-enabled-icon | |
54668
69a699e79a0d
(gdb-view-source-function, gdb-view-assembler)
Nick Roberts <nickrob@snap.net.nz>
parents:
54617
diff
changeset
|
1862 (find-image `((:type xpm :data |
54538 | 1863 ,breakpoint-xpm-data |
1864 :ascent 100 :pointer hand) | |
1865 (:type pbm :data | |
1866 ,breakpoint-enabled-pbm-data | |
1867 :ascent 100 :pointer hand))))) | |
1868 (or breakpoint-disabled-icon | |
1869 (setq breakpoint-disabled-icon | |
1870 (find-image `((:type xpm :data | |
1871 ,breakpoint-xpm-data | |
1872 :conversion disabled | |
1873 :ascent 100) | |
1874 (:type pbm :data | |
1875 ,breakpoint-disabled-pbm-data | |
1876 :ascent 100)))))) | |
1877 (+ start 1) nil 'left-margin)) | |
1878 (when (< left-margin-width 2) | |
1879 (save-current-buffer | |
1880 (setq left-margin-width 2) | |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1881 (if (get-buffer-window (current-buffer) 'visible) |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1882 (set-window-margins |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1883 (get-buffer-window (current-buffer) 'visible) |
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1884 left-margin-width right-margin-width)))) |
54538 | 1885 (gdb-put-string (if enabled "B" "b") (1+ start))))) |
1886 | |
1887 (defun gdb-remove-breakpoint-icons (start end &optional remove-margin) | |
1888 (gdb-remove-strings start end) | |
1889 (if (display-images-p) | |
1890 (remove-images start end)) | |
1891 (when remove-margin | |
1892 (setq left-margin-width 0) | |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1893 (if (get-buffer-window (current-buffer) 'visible) |
56285
313e3a9f34ca
(breakpoint-enabled-bitmap-face)
Kim F. Storm <storm@cua.dk>
parents:
56258
diff
changeset
|
1894 (set-window-margins |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1895 (get-buffer-window (current-buffer) 'visible) |
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1896 left-margin-width right-margin-width)))) |
54538 | 1897 |
1898 | |
1899 ;; | |
1900 ;; Assembler buffer. | |
1901 ;; | |
1902 (gdb-set-buffer-rules 'gdb-assembler-buffer | |
1903 'gdb-assembler-buffer-name | |
1904 'gdb-assembler-mode) | |
1905 | |
1906 (def-gdb-auto-updated-buffer gdb-assembler-buffer | |
1907 gdb-invalidate-assembler | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
1908 (concat gdb-server-prefix "disassemble " gdb-current-address "\n") |
54538 | 1909 gdb-assembler-handler |
1910 gdb-assembler-custom) | |
1911 | |
1912 (defun gdb-assembler-custom () | |
1913 (let ((buffer (gdb-get-buffer 'gdb-assembler-buffer)) | |
1914 (pos 1) (address) (flag)) | |
1915 (with-current-buffer buffer | |
1916 (if (not (equal gdb-current-address "main")) | |
1917 (progn | |
1918 (goto-char (point-min)) | |
1919 (if (re-search-forward gdb-current-address nil t) | |
1920 (progn | |
1921 (setq pos (point)) | |
1922 (beginning-of-line) | |
1923 (or gdb-overlay-arrow-position | |
1924 (setq gdb-overlay-arrow-position (make-marker))) | |
1925 (set-marker gdb-overlay-arrow-position | |
1926 (point) (current-buffer)))))) | |
1927 ;; remove all breakpoint-icons in assembler buffer before updating. | |
1928 (gdb-remove-breakpoint-icons (point-min) (point-max))) | |
1929 (with-current-buffer (gdb-get-buffer 'gdb-breakpoints-buffer) | |
1930 (goto-char (point-min)) | |
1931 (while (< (point) (- (point-max) 1)) | |
1932 (forward-line 1) | |
1933 (if (looking-at "[^\t].*breakpoint") | |
1934 (progn | |
1935 (looking-at | |
1936 "[0-9]*\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)\\s-*0x\\(\\S-*\\)") | |
1937 (setq flag (char-after (match-beginning 1))) | |
1938 (setq address (match-string 2)) | |
1939 ;; remove leading 0s from output of info break. | |
1940 (if (string-match "^0+\\(.*\\)" address) | |
1941 (setq address (match-string 1 address))) | |
1942 (with-current-buffer buffer | |
1943 (goto-char (point-min)) | |
1944 (if (re-search-forward address nil t) | |
1945 (gdb-put-breakpoint-icon (eq flag ?y)))))))) | |
1946 (if (not (equal gdb-current-address "main")) | |
55328
4440fe0e7dc6
(gud-watch, gdb-display-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
55217
diff
changeset
|
1947 (set-window-point (get-buffer-window buffer 'visible) pos)))) |
54538 | 1948 |
1949 (defvar gdb-assembler-mode-map | |
1950 (let ((map (make-sparse-keymap))) | |
1951 (suppress-keymap map) | |
1952 map)) | |
1953 | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1954 (defvar gdb-assembler-font-lock-keywords |
57664
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1955 '(;; <__function.name+n> |
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1956 ("<\\(\\(\\sw\\|[_.]\\)+\\)\\(\\+[0-9]+\\)?>" |
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1957 (1 font-lock-function-name-face)) |
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1958 ;; 0xNNNNNNNN <__function.name+n>: opcode |
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1959 ("^0x[0-9a-f]+ \\(<\\(\\(\\sw\\|[_.]\\)+\\)\\+[0-9]+>\\)?:[ \t]+\\(\\sw+\\)" |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1960 (4 font-lock-keyword-face)) |
57664
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1961 ;; %register(at least i386) |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1962 ("%\\sw+" . font-lock-variable-name-face) |
57664
4d6eec4c1ef8
* progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): Handle
Masatake YAMATO <jet@gyve.org>
parents:
57661
diff
changeset
|
1963 ("^\\(Dump of assembler code for function\\) \\(.+\\):" |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1964 (1 font-lock-comment-face) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1965 (2 font-lock-function-name-face)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1966 ("^\\(End of assembler dump\\.\\)" . font-lock-comment-face)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1967 "Font lock keywords used in `gdb-assembler-mode'.") |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1968 |
54538 | 1969 (defun gdb-assembler-mode () |
1970 "Major mode for viewing code assembler. | |
1971 | |
1972 \\{gdb-assembler-mode-map}" | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1973 (kill-all-local-variables) |
54538 | 1974 (setq major-mode 'gdb-assembler-mode) |
1975 (setq mode-name "Machine") | |
1976 (setq gdb-overlay-arrow-position nil) | |
1977 (add-to-list 'overlay-arrow-variable-list 'gdb-overlay-arrow-position) | |
1978 (put 'gdb-overlay-arrow-position 'overlay-arrow-string "=>") | |
1979 (setq fringes-outside-margins t) | |
1980 (setq buffer-read-only t) | |
1981 (use-local-map gdb-assembler-mode-map) | |
57661
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1982 (gdb-invalidate-assembler) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1983 (set (make-local-variable 'font-lock-defaults) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1984 '(gdb-assembler-font-lock-keywords)) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1985 (run-mode-hooks 'gdb-assembler-mode-hook) |
b59713cd72a2
(gdb-get-create-buffer): Allow modes to run
Nick Roberts <nickrob@snap.net.nz>
parents:
57350
diff
changeset
|
1986 'gdb-invalidate-assembler) |
54538 | 1987 |
1988 (defun gdb-assembler-buffer-name () | |
1989 (with-current-buffer gud-comint-buffer | |
1990 (concat "*Machine Code " (gdb-get-target-string) "*"))) | |
1991 | |
1992 (defun gdb-display-assembler-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1993 "Display disassembly view." |
54538 | 1994 (interactive) |
1995 (gdb-display-buffer | |
1996 (gdb-get-create-buffer 'gdb-assembler-buffer))) | |
1997 | |
1998 (defun gdb-frame-assembler-buffer () | |
55400
1aaa031e318c
Improve/extend documentation strings.
Nick Roberts <nickrob@snap.net.nz>
parents:
55330
diff
changeset
|
1999 "Display disassembly view in a new frame." |
54538 | 2000 (interactive) |
54993
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
2001 (select-frame (make-frame gdb-frame-parameters)) |
08b0ee9a9b35
(gdb-frame-parameters): New constant.
Nick Roberts <nickrob@snap.net.nz>
parents:
54962
diff
changeset
|
2002 (switch-to-buffer (gdb-get-create-buffer 'gdb-assembler-buffer)) |
55217
97d0e3a1174f
(gdb-frame-breakpoints-buffer)
Nick Roberts <nickrob@snap.net.nz>
parents:
54993
diff
changeset
|
2003 (set-window-dedicated-p (selected-window) t)) |
54538 | 2004 |
2005 ;; modified because if gdb-current-address has changed value a new command | |
2006 ;; must be enqueued to update the buffer with the new output | |
2007 (defun gdb-invalidate-assembler (&optional ignored) | |
2008 (if (gdb-get-buffer 'gdb-assembler-buffer) | |
2009 (progn | |
2010 (unless (string-equal gdb-current-frame gdb-previous-frame) | |
2011 (if (or (not (member 'gdb-invalidate-assembler | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2012 gdb-pending-triggers)) |
54538 | 2013 (not (string-equal gdb-current-address |
2014 gdb-previous-address))) | |
2015 (progn | |
2016 ;; take previous disassemble command off the queue | |
2017 (with-current-buffer gud-comint-buffer | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2018 (let ((queue gdb-input-queue) (item)) |
54538 | 2019 (dolist (item queue) |
2020 (if (equal (cdr item) '(gdb-assembler-handler)) | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2021 (setq gdb-input-queue |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2022 (delete item gdb-input-queue)))))) |
54538 | 2023 (gdb-enqueue-input |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2024 (list (concat gdb-server-prefix "disassemble " gdb-current-address "\n") |
54538 | 2025 'gdb-assembler-handler)) |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2026 (push 'gdb-invalidate-assembler gdb-pending-triggers) |
54538 | 2027 (setq gdb-previous-address gdb-current-address) |
2028 (setq gdb-previous-frame gdb-current-frame))))))) | |
2029 | |
2030 (defun gdb-get-current-frame () | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2031 (if (not (member 'gdb-get-current-frame gdb-pending-triggers)) |
54538 | 2032 (progn |
2033 (gdb-enqueue-input | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2034 (list (concat gdb-server-prefix "info frame\n") 'gdb-frame-handler)) |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2035 (push 'gdb-get-current-frame |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2036 gdb-pending-triggers)))) |
54538 | 2037 |
2038 (defun gdb-frame-handler () | |
55749
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2039 (setq gdb-pending-triggers |
230865f1c59d
(gdb-server-prefix): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
55696
diff
changeset
|
2040 (delq 'gdb-get-current-frame gdb-pending-triggers)) |
54538 | 2041 (with-current-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer) |
2042 (goto-char (point-min)) | |
2043 (forward-line) | |
54962
c3272c09f927
(gdb-goto-info): Require 'info.
Nick Roberts <nickrob@snap.net.nz>
parents:
54901
diff
changeset
|
2044 (if (looking-at ".*=\\s-+0x\\(\\S-*\\)\\s-+in\\s-+\\(\\S-*?\\);? ") |
54538 | 2045 (progn |
2046 (setq gdb-current-frame (match-string 2)) | |
55850
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
2047 (if (gdb-get-buffer 'gdb-locals-buffer) |
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
2048 (with-current-buffer (gdb-get-buffer 'gdb-locals-buffer) |
63ca25eb73a1
(gdb-current-frame, gud-watch)
Nick Roberts <nickrob@snap.net.nz>
parents:
55764
diff
changeset
|
2049 (setq mode-name (concat "Locals:" gdb-current-frame)))) |
54538 | 2050 (let ((address (match-string 1))) |
2051 ;; remove leading 0s from output of info frame command. | |
2052 (if (string-match "^0+\\(.*\\)" address) | |
2053 (setq gdb-current-address | |
2054 (concat "0x" (match-string 1 address))) | |
2055 (setq gdb-current-address (concat "0x" address)))) | |
2056 (if (or (if (not (re-search-forward "(\\S-*:[0-9]*);" nil t)) | |
2057 (progn (setq gdb-view-source nil) t)) | |
2058 (eq gdb-selected-view 'assembler)) | |
2059 (progn | |
54760
c6ccb7a82f9f
(gdb-source-window): Remove variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
54729
diff
changeset
|
2060 (gdb-display-buffer |
54538 | 2061 (gdb-get-create-buffer 'gdb-assembler-buffer)) |
2062 ;;update with new frame for machine code if necessary | |
2063 (gdb-invalidate-assembler)))))) | |
2064 (if (re-search-forward " source language \\(\\S-*\\)\." nil t) | |
2065 (setq gdb-current-language (match-string 1)))) | |
2066 | |
2067 (provide 'gdb-ui) | |
2068 | |
55696
ed6e91c53c82
(gdb-reset): Use unless. Fix regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55507
diff
changeset
|
2069 ;; arch-tag: e9fb00c5-74ef-469f-a088-37384caae352 |
54538 | 2070 ;;; gdb-ui.el ends here |