annotate lisp/gdb-ui.el @ 54291:bf240c02022c

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