]> code.delx.au - gnu-emacs/blob - lisp/progmodes/gdb-mi.el
* mail/rmail.el (rmail-show-message-1): When displaying a mime message,
[gnu-emacs] / lisp / progmodes / gdb-mi.el
1 ;;; gdb-mi.el --- User Interface for running GDB -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2007-2015 Free Software Foundation, Inc.
4
5 ;; Author: Nick Roberts <nickrob@gnu.org>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: unix, tools
8
9 ;; This file is part of GNU Emacs.
10
11 ;; Homepage: http://www.emacswiki.org/emacs/GDB-MI
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Credits:
27
28 ;; This file was written by Nick Roberts following the general design
29 ;; used in gdb-ui.el for Emacs 22.1 - 23.1. It was further developed
30 ;; by Dmitry Dzhus <dima@sphinx.net.ru> as part of the Google Summer
31 ;; of Code 2009 Project "Emacs GDB/MI migration".
32
33 ;;; Commentary:
34
35 ;; This mode acts as a graphical user interface to GDB. You can interact with
36 ;; GDB through the GUD buffer in the usual way, but there are also further
37 ;; buffers which control the execution and describe the state of your program.
38 ;; It separates the input/output of your program from that of GDB and displays
39 ;; expressions and their current values in their own buffers. It also uses
40 ;; features of Emacs 21 such as the fringe/display margin for breakpoints, and
41 ;; the toolbar (see the GDB Graphical Interface section in the Emacs info
42 ;; manual).
43
44 ;; M-x gdb will start the debugger.
45
46 ;; This file uses GDB/MI as the primary interface to GDB. It runs gdb with
47 ;; GDB/MI (-interp=mi) and access CLI using "-interpreter-exec console
48 ;; cli-command". This code replaces gdb-ui.el and uses MI tokens instead
49 ;; of queues. Eventually MI should be asynchronous.
50
51 ;; Windows Platforms:
52
53 ;; If you are using Emacs and GDB on Windows you will need to flush the buffer
54 ;; explicitly in your program if you want timely display of I/O in Emacs.
55 ;; Alternatively you can make the output stream unbuffered, for example, by
56 ;; using a macro:
57
58 ;; #ifdef UNBUFFERED
59 ;; setvbuf (stdout, (char *) NULL, _IONBF, 0);
60 ;; #endif
61
62 ;; and compiling with -DUNBUFFERED while debugging.
63
64 ;; If you are using Cygwin GDB and find that the source is not being displayed
65 ;; in Emacs when you step through it, possible solutions are to:
66
67 ;; 1) Use Cygwin X Windows and Cygwin Emacs.
68 ;; (Since 22.1 Emacs builds under Cygwin.)
69 ;; 2) Use MinGW GDB instead.
70 ;; 3) Use cygwin-mount.el
71
72 ;;; Mac OSX:
73
74 ;; GDB in Emacs on Mac OSX works best with FSF GDB as Apple have made
75 ;; some changes to the version that they include as part of Mac OSX.
76 ;; This requires GDB version 7.0 or later (estimated release date Aug 2009)
77 ;; as earlier versions do not compile on Mac OSX.
78
79 ;;; Known Bugs:
80
81 ;; 1) Stack buffer doesn't parse MI output if you stop in a routine without
82 ;; line information, e.g., a routine in libc (just a TODO item).
83
84 ;; TODO:
85 ;; 2) Watch windows to work with threads.
86 ;; 3) Use treebuffer.el instead of the speedbar for watch-expressions?
87 ;; 4) Mark breakpoint locations on scroll-bar of source buffer?
88
89 ;;; Code:
90
91 (require 'gud)
92 (require 'json)
93 (require 'bindat)
94 (require 'cl-lib)
95
96 (declare-function speedbar-change-initial-expansion-list
97 "speedbar" (new-default))
98 (declare-function speedbar-timer-fn "speedbar" ())
99 (declare-function speedbar-line-text "speedbar" (&optional p))
100 (declare-function speedbar-change-expand-button-char "speedbar" (char))
101 (declare-function speedbar-delete-subblock "speedbar" (indent))
102 (declare-function speedbar-center-buffer-smartly "speedbar" ())
103
104 (defvar tool-bar-map)
105 (defvar speedbar-initial-expansion-list-name)
106 (defvar speedbar-frame)
107
108 (defvar gdb-memory-address "main")
109 (defvar gdb-memory-last-address nil
110 "Last successfully accessed memory address.")
111 (defvar gdb-memory-next-page nil
112 "Address of next memory page for program memory buffer.")
113 (defvar gdb-memory-prev-page nil
114 "Address of previous memory page for program memory buffer.")
115
116 (defvar gdb-thread-number nil
117 "Main current thread.
118
119 Invalidation triggers use this variable to query GDB for
120 information on the specified thread by wrapping GDB/MI commands
121 in `gdb-current-context-command'.
122
123 This variable may be updated implicitly by GDB via `gdb-stopped'
124 or explicitly by `gdb-select-thread'.
125
126 Only `gdb-setq-thread-number' should be used to change this
127 value.")
128
129 (defvar gdb-frame-number nil
130 "Selected frame level for main current thread.
131
132 Updated according to the following rules:
133
134 When a thread is selected or current thread stops, set to \"0\".
135
136 When current thread goes running (and possibly exits eventually),
137 set to nil.
138
139 May be manually changed by user with `gdb-select-frame'.")
140
141 (defvar gdb-frame-address nil "Identity of frame for watch expression.")
142
143 ;; Used to show overlay arrow in source buffer. All set in
144 ;; gdb-get-main-selected-frame. Disassembly buffer should not use
145 ;; these but rely on buffer-local thread information instead.
146 (defvar gdb-selected-frame nil
147 "Name of selected function for main current thread.")
148 (defvar gdb-selected-file nil
149 "Name of selected file for main current thread.")
150 (defvar gdb-selected-line nil
151 "Number of selected line for main current thread.")
152
153 (defvar gdb-threads-list nil
154 "Associative list of threads provided by \"-thread-info\" MI command.
155
156 Keys are thread numbers (in strings) and values are structures as
157 returned from -thread-info by `gdb-json-partial-output'. Updated in
158 `gdb-thread-list-handler-custom'.")
159
160 (defvar gdb-running-threads-count nil
161 "Number of currently running threads.
162
163 If nil, no information is available.
164
165 Updated in `gdb-thread-list-handler-custom'.")
166
167 (defvar gdb-stopped-threads-count nil
168 "Number of currently stopped threads.
169
170 See also `gdb-running-threads-count'.")
171
172 (defvar gdb-breakpoints-list nil
173 "Associative list of breakpoints provided by \"-break-list\" MI command.
174
175 Keys are breakpoint numbers (in string) and values are structures
176 as returned from \"-break-list\" by `gdb-json-partial-output'
177 \(\"body\" field is used). Updated in
178 `gdb-breakpoints-list-handler-custom'.")
179
180 (defvar gdb-current-language nil)
181 (defvar gdb-var-list nil
182 "List of variables in watch window.
183 Each element has the form
184 (VARNUM EXPRESSION NUMCHILD TYPE VALUE STATUS HAS_MORE FP)
185 where STATUS is nil (`unchanged'), `changed' or `out-of-scope', FP the frame
186 address for root variables.")
187 (defvar gdb-main-file nil "Source file from which program execution begins.")
188
189 ;; Overlay arrow markers
190 (defvar gdb-stack-position nil)
191 (defvar gdb-thread-position nil)
192 (defvar gdb-disassembly-position nil)
193
194 (defvar gdb-location-alist nil
195 "Alist of breakpoint numbers and full filenames.
196 Only used for files that Emacs can't find.")
197 (defvar gdb-active-process nil
198 "GUD tooltips display variable values when t, and macro definitions otherwise.")
199 (defvar gdb-error "Non-nil when GDB is reporting an error.")
200 (defvar gdb-macro-info nil
201 "Non-nil if GDB knows that the inferior includes preprocessor macro info.")
202 (defvar gdb-register-names nil "List of register names.")
203 (defvar gdb-changed-registers nil
204 "List of changed register numbers (strings).")
205 (defvar gdb-buffer-fringe-width nil)
206 (defvar gdb-last-command nil)
207 (defvar gdb-prompt-name nil)
208 (defvar gdb-token-number 0)
209 (defvar gdb-handler-list '()
210 "List of gdb-handler keeping track of all pending GDB commands.")
211 (defvar gdb-source-file-list nil
212 "List of source files for the current executable.")
213 (defvar gdb-first-done-or-error t)
214 (defvar gdb-source-window nil)
215 (defvar gdb-inferior-status nil)
216 (defvar gdb-continuation nil)
217 (defvar gdb-supports-non-stop nil)
218 (defvar gdb-filter-output nil
219 "Message to be shown in GUD console.
220
221 This variable is updated in `gdb-done-or-error' and returned by
222 `gud-gdbmi-marker-filter'.")
223
224 (defvar gdb-non-stop nil
225 "Indicates whether current GDB session is using non-stop mode.
226
227 It is initialized to `gdb-non-stop-setting' at the beginning of
228 every GDB session.")
229
230 (defvar-local gdb-buffer-type nil
231 "One of the symbols bound in `gdb-buffer-rules'.")
232
233 (defvar gdb-output-sink 'nil
234 "The disposition of the output of the current gdb command.
235 Possible values are these symbols:
236
237 `user' -- gdb output should be copied to the GUD buffer
238 for the user to see.
239
240 `emacs' -- output should be collected in the partial-output-buffer
241 for subsequent processing by a command. This is the
242 disposition of output generated by commands that
243 gdb mode sends to gdb on its own behalf.")
244
245 (defcustom gdb-discard-unordered-replies t
246 "Non-nil means discard any out-of-order GDB replies.
247 This protects against lost GDB replies, assuming that GDB always
248 replies in the same order as Emacs sends commands. When receiving a
249 reply with a given token-number, assume any pending messages with a
250 lower token-number are out-of-order."
251 :type 'boolean
252 :group 'gud
253 :version "24.4")
254
255 (cl-defstruct gdb-handler
256 "Data required to handle the reply of a command sent to GDB."
257 ;; Prefix of the command sent to GDB. The GDB reply for this command
258 ;; will be prefixed with this same TOKEN-NUMBER
259 (token-number nil :read-only t)
260 ;; Callback to invoke when the reply is received from GDB
261 (function nil :read-only t)
262 ;; PENDING-TRIGGER is used to prevent congestion: Emacs won't send
263 ;; two requests with the same PENDING-TRIGGER until a reply is received
264 ;; for the first one."
265 (pending-trigger nil))
266
267 (defun gdb-add-handler (token-number handler-function &optional pending-trigger)
268 "Insert a new GDB command handler in `gdb-handler-list'.
269 Handlers are used to keep track of the commands sent to GDB
270 and to handle the replies received.
271 Upon reception of a reply prefixed with TOKEN-NUMBER,
272 invoke the callback HANDLER-FUNCTION.
273 If PENDING-TRIGGER is specified, no new GDB commands will be
274 sent with this same PENDING-TRIGGER until a reply is received
275 for this handler."
276
277 (push (make-gdb-handler :token-number token-number
278 :function handler-function
279 :pending-trigger pending-trigger)
280 gdb-handler-list))
281
282 (defun gdb-delete-handler (token-number)
283 "Remove the handler TOKEN-NUMBER from `gdb-handler-list'.
284 Additionally, if `gdb-discard-unordered-replies' is non-nil,
285 discard all handlers having a token number less than TOKEN-NUMBER."
286 (if gdb-discard-unordered-replies
287
288 (setq gdb-handler-list
289 (cl-delete-if
290 (lambda (handler)
291 "Discard any HANDLER with a token number `<=' than TOKEN-NUMBER."
292 (when (< (gdb-handler-token-number handler) token-number)
293 (message "WARNING! Discarding GDB handler with token #%d\n"
294 (gdb-handler-token-number handler)))
295 (<= (gdb-handler-token-number handler) token-number))
296 gdb-handler-list))
297
298 (setq gdb-handler-list
299 (cl-delete-if
300 (lambda (handler)
301 "Discard any HANDLER with a token number `eq' to TOKEN-NUMBER."
302 (eq (gdb-handler-token-number handler) token-number))
303 gdb-handler-list))))
304
305 (defun gdb-get-handler-function (token-number)
306 "Return the function callback registered with the handler TOKEN-NUMBER."
307 (gdb-handler-function
308 (cl-find-if (lambda (handler) (eq (gdb-handler-token-number handler)
309 token-number))
310 gdb-handler-list)))
311
312
313 (defun gdb-pending-handler-p (pending-trigger)
314 "Return non-nil if a command handler is pending with trigger PENDING-TRIGGER."
315 (cl-find-if (lambda (handler) (eq (gdb-handler-pending-trigger handler)
316 pending-trigger))
317 gdb-handler-list))
318
319
320 (defun gdb-handle-reply (token-number)
321 "Handle the GDB reply TOKEN-NUMBER.
322 This invokes the handler registered with this token number
323 in `gdb-handler-list' and clears all pending handlers invalidated
324 by the reception of this reply."
325 (let ((handler-function (gdb-get-handler-function token-number)))
326 (when handler-function
327 (funcall handler-function)
328 (gdb-delete-handler token-number))))
329
330 (defun gdb-remove-all-pending-triggers ()
331 "Remove all pending triggers from gdb-handler-list.
332 The handlers are left in gdb-handler-list so that replies received
333 from GDB could still be handled. However, removing the pending triggers
334 allows Emacs to send new commands even if replies of previous commands
335 were not yet received."
336 (dolist (handler gdb-handler-list)
337 (setf (gdb-handler-pending-trigger handler) nil)))
338
339 (defmacro gdb-wait-for-pending (&rest body)
340 "Wait for all pending GDB commands to finish and evaluate BODY.
341
342 This function checks every 0.5 seconds if there are any pending
343 triggers in `gdb-handler-list'."
344 `(run-with-timer
345 0.5 nil
346 '(lambda ()
347 (if (not (cl-find-if (lambda (handler)
348 (gdb-handler-pending-trigger handler))
349 gdb-handler-list))
350 (progn ,@body)
351 (gdb-wait-for-pending ,@body)))))
352
353 ;; Publish-subscribe
354
355 (defmacro gdb-add-subscriber (publisher subscriber)
356 "Register new PUBLISHER's SUBSCRIBER.
357
358 SUBSCRIBER must be a pair, where cdr is a function of one
359 argument (see `gdb-emit-signal')."
360 `(add-to-list ',publisher ,subscriber t))
361
362 (defmacro gdb-delete-subscriber (publisher subscriber)
363 "Unregister SUBSCRIBER from PUBLISHER."
364 `(setq ,publisher (delete ,subscriber
365 ,publisher)))
366
367 (defun gdb-get-subscribers (publisher)
368 publisher)
369
370 (defun gdb-emit-signal (publisher &optional signal)
371 "Call cdr for each subscriber of PUBLISHER with SIGNAL as argument."
372 (dolist (subscriber (gdb-get-subscribers publisher))
373 (funcall (cdr subscriber) signal)))
374
375 (defvar gdb-buf-publisher '()
376 "Used to invalidate GDB buffers by emitting a signal in `gdb-update'.
377 Must be a list of pairs with cars being buffers and cdr's being
378 valid signal handlers.")
379
380 (defgroup gdb nil
381 "GDB graphical interface"
382 :group 'tools
383 :link '(info-link "(emacs)GDB Graphical Interface")
384 :version "23.2")
385
386 (defgroup gdb-non-stop nil
387 "GDB non-stop debugging settings"
388 :group 'gdb
389 :version "23.2")
390
391 (defgroup gdb-buffers nil
392 "GDB buffers"
393 :group 'gdb
394 :version "23.2")
395
396 (defcustom gdb-debug-log-max 128
397 "Maximum size of `gdb-debug-log'. If nil, size is unlimited."
398 :group 'gdb
399 :type '(choice (integer :tag "Number of elements")
400 (const :tag "Unlimited" nil))
401 :version "22.1")
402
403 (defcustom gdb-non-stop-setting t
404 "When in non-stop mode, stopped threads can be examined while
405 other threads continue to execute.
406
407 GDB session needs to be restarted for this setting to take effect."
408 :type 'boolean
409 :group 'gdb-non-stop
410 :version "23.2")
411
412 ;; TODO Some commands can't be called with --all (give a notice about
413 ;; it in setting doc)
414 (defcustom gdb-gud-control-all-threads t
415 "When non-nil, GUD execution commands affect all threads when
416 in non-stop mode. Otherwise, only current thread is affected."
417 :type 'boolean
418 :group 'gdb-non-stop
419 :version "23.2")
420
421 (defcustom gdb-switch-reasons t
422 "List of stop reasons for which Emacs should switch thread.
423 When t, switch to stopped thread no matter what the reason was.
424 When nil, never switch to stopped thread automatically.
425
426 This setting is used in non-stop mode only. In all-stop mode,
427 Emacs always switches to the thread which caused the stop."
428 ;; exited, exited-normally and exited-signaled are not
429 ;; thread-specific stop reasons and therefore are not included in
430 ;; this list
431 :type '(choice
432 (const :tag "All reasons" t)
433 (set :tag "Selection of reasons..."
434 (const :tag "A breakpoint was reached." "breakpoint-hit")
435 (const :tag "A watchpoint was triggered." "watchpoint-trigger")
436 (const :tag "A read watchpoint was triggered."
437 "read-watchpoint-trigger")
438 (const :tag "An access watchpoint was triggered."
439 "access-watchpoint-trigger")
440 (const :tag "Function finished execution." "function-finished")
441 (const :tag "Location reached." "location-reached")
442 (const :tag "Watchpoint has gone out of scope"
443 "watchpoint-scope")
444 (const :tag "End of stepping range reached."
445 "end-stepping-range")
446 (const :tag "Signal received (like interruption)."
447 "signal-received"))
448 (const :tag "None" nil))
449 :group 'gdb-non-stop
450 :version "23.2"
451 :link '(info-link "(gdb)GDB/MI Async Records"))
452
453 (defcustom gdb-stopped-functions nil
454 "List of functions called whenever GDB stops.
455
456 Each function takes one argument, a parsed MI response, which
457 contains fields of corresponding MI *stopped async record:
458
459 ((stopped-threads . \"all\")
460 (thread-id . \"1\")
461 (frame (line . \"38\")
462 (fullname . \"/home/sphinx/projects/gsoc/server.c\")
463 (file . \"server.c\")
464 (args ((value . \"0x804b038\")
465 (name . \"arg\")))
466 (func . \"hello\")
467 (addr . \"0x0804869e\"))
468 (reason . \"end-stepping-range\"))
469
470 Note that \"reason\" is only present in non-stop debugging mode.
471
472 `bindat-get-field' may be used to access the fields of response.
473
474 Each function is called after the new current thread was selected
475 and GDB buffers were updated in `gdb-stopped'."
476 :type '(repeat function)
477 :group 'gdb
478 :version "23.2"
479 :link '(info-link "(gdb)GDB/MI Async Records"))
480
481 (defcustom gdb-switch-when-another-stopped t
482 "When nil, don't switch to stopped thread if some other
483 stopped thread is already selected."
484 :type 'boolean
485 :group 'gdb-non-stop
486 :version "23.2")
487
488 (defcustom gdb-stack-buffer-locations t
489 "Show file information or library names in stack buffers."
490 :type 'boolean
491 :group 'gdb-buffers
492 :version "23.2")
493
494 (defcustom gdb-stack-buffer-addresses nil
495 "Show frame addresses in stack buffers."
496 :type 'boolean
497 :group 'gdb-buffers
498 :version "23.2")
499
500 (defcustom gdb-thread-buffer-verbose-names t
501 "Show long thread names in threads buffer."
502 :type 'boolean
503 :group 'gdb-buffers
504 :version "23.2")
505
506 (defcustom gdb-thread-buffer-arguments t
507 "Show function arguments in threads buffer."
508 :type 'boolean
509 :group 'gdb-buffers
510 :version "23.2")
511
512 (defcustom gdb-thread-buffer-locations t
513 "Show file information or library names in threads buffer."
514 :type 'boolean
515 :group 'gdb-buffers
516 :version "23.2")
517
518 (defcustom gdb-thread-buffer-addresses nil
519 "Show addresses for thread frames in threads buffer."
520 :type 'boolean
521 :group 'gdb-buffers
522 :version "23.2")
523
524 (defcustom gdb-show-threads-by-default nil
525 "Show threads list buffer instead of breakpoints list by default."
526 :type 'boolean
527 :group 'gdb-buffers
528 :version "23.2")
529
530 (defvar gdb-debug-log nil
531 "List of commands sent to and replies received from GDB.
532 Most recent commands are listed first. This list stores only the last
533 `gdb-debug-log-max' values. This variable is used to debug GDB-MI.")
534
535 ;;;###autoload
536 (define-minor-mode gdb-enable-debug
537 "Toggle logging of transaction between Emacs and Gdb.
538 The log is stored in `gdb-debug-log' as an alist with elements
539 whose cons is send, send-item or recv and whose cdr is the string
540 being transferred. This list may grow up to a size of
541 `gdb-debug-log-max' after which the oldest element (at the end of
542 the list) is deleted every time a new one is added (at the front)."
543 :global t
544 :group 'gdb
545 :version "22.1")
546
547 (defcustom gdb-cpp-define-alist-program "gcc -E -dM -"
548 "Shell command for generating a list of defined macros in a source file.
549 This list is used to display the #define directive associated
550 with an identifier as a tooltip. It works in a debug session with
551 GDB, when `gud-tooltip-mode' is t.
552
553 Set `gdb-cpp-define-alist-flags' for any include paths or
554 predefined macros."
555 :type 'string
556 :group 'gdb
557 :version "22.1")
558
559 (defcustom gdb-cpp-define-alist-flags ""
560 "Preprocessor flags for `gdb-cpp-define-alist-program'."
561 :type 'string
562 :group 'gdb
563 :version "22.1")
564
565 (defcustom gdb-create-source-file-list t
566 "Non-nil means create a list of files from which the executable was built.
567 Set this to nil if the GUD buffer displays \"initializing...\" in the mode
568 line for a long time when starting, possibly because your executable was
569 built from a large number of files. This allows quicker initialization
570 but means that these files are not automatically enabled for debugging,
571 e.g., you won't be able to click in the fringe to set a breakpoint until
572 execution has already stopped there."
573 :type 'boolean
574 :group 'gdb
575 :version "23.1")
576
577 (defcustom gdb-show-main nil
578 "Non-nil means display source file containing the main routine at startup.
579 Also display the main routine in the disassembly buffer if present."
580 :type 'boolean
581 :group 'gdb
582 :version "22.1")
583
584 (defvar gdbmi-debug-mode nil
585 "When non-nil, print the messages sent/received from GDB/MI in *Messages*.")
586
587 (defun gdb-force-mode-line-update (status)
588 (let ((buffer gud-comint-buffer))
589 (if (and buffer (buffer-name buffer))
590 (with-current-buffer buffer
591 (setq mode-line-process
592 (format ":%s [%s]"
593 (process-status (get-buffer-process buffer)) status))
594 ;; Force mode line redisplay soon.
595 (force-mode-line-update)))))
596
597 ;; These two are used for menu and toolbar
598 (defun gdb-control-all-threads ()
599 "Switch to non-stop/A mode."
600 (interactive)
601 (setq gdb-gud-control-all-threads t)
602 ;; Actually forcing the tool-bar to update.
603 (force-mode-line-update)
604 (message "Now in non-stop/A mode."))
605
606 (defun gdb-control-current-thread ()
607 "Switch to non-stop/T mode."
608 (interactive)
609 (setq gdb-gud-control-all-threads nil)
610 ;; Actually forcing the tool-bar to update.
611 (force-mode-line-update)
612 (message "Now in non-stop/T mode."))
613
614 (defun gdb-find-watch-expression ()
615 (let* ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list))
616 (varnum (car var)) expr)
617 (string-match "\\(var[0-9]+\\)\\.\\(.*\\)" varnum)
618 (let ((var1 (assoc (match-string 1 varnum) gdb-var-list)) var2 varnumlet
619 (component-list (split-string (match-string 2 varnum) "\\." t)))
620 (setq expr (nth 1 var1))
621 (setq varnumlet (car var1))
622 (dolist (component component-list)
623 (setq var2 (assoc varnumlet gdb-var-list))
624 (setq expr (concat expr
625 (if (string-match ".*\\[[0-9]+\\]$" (nth 3 var2))
626 (concat "[" component "]")
627 (concat "." component))))
628 (setq varnumlet (concat varnumlet "." component)))
629 expr)))
630
631 ;; noall is used for commands which don't take --all, but only
632 ;; --thread.
633 (defun gdb-gud-context-command (command &optional noall)
634 "When `gdb-non-stop' is t, add --thread option to COMMAND if
635 `gdb-gud-control-all-threads' is nil and --all option otherwise.
636 If NOALL is t, always add --thread option no matter what
637 `gdb-gud-control-all-threads' value is.
638
639 When `gdb-non-stop' is nil, return COMMAND unchanged."
640 (if gdb-non-stop
641 (if (and gdb-gud-control-all-threads
642 (not noall)
643 gdb-supports-non-stop)
644 (concat command " --all ")
645 (gdb-current-context-command command))
646 command))
647
648 (defmacro gdb-gud-context-call (cmd1 &optional cmd2 noall noarg)
649 "`gud-call' wrapper which adds --thread/--all options between
650 CMD1 and CMD2. NOALL is the same as in `gdb-gud-context-command'.
651
652 NOARG must be t when this macro is used outside `gud-def'"
653 `(gud-call
654 (concat (gdb-gud-context-command ,cmd1 ,noall) " " ,cmd2)
655 ,(when (not noarg) 'arg)))
656
657 (defun gdb--check-interpreter (filter proc string)
658 (unless (zerop (length string))
659 (remove-function (process-filter proc) #'gdb--check-interpreter)
660 (unless (memq (aref string 0) '(?^ ?~ ?@ ?& ?* ?=))
661 ;; Apparently we're not running with -i=mi.
662 (let ((msg "Error: you did not specify -i=mi on GDB's command line!"))
663 (message msg)
664 (setq string (concat (propertize msg 'font-lock-face 'error)
665 "\n" string)))
666 ;; Use the old gud-gbd filter, not because it works, but because it
667 ;; will properly display GDB's answers rather than hanging waiting for
668 ;; answers that aren't coming.
669 (set (make-local-variable 'gud-marker-filter) #'gud-gdb-marker-filter))
670 (funcall filter proc string)))
671
672 (defvar gdb-control-level 0)
673
674 ;;;###autoload
675 (defun gdb (command-line)
676 "Run gdb on program FILE in buffer *gud-FILE*.
677 The directory containing FILE becomes the initial working directory
678 and source-file directory for your debugger.
679
680 COMMAND-LINE is the shell command for starting the gdb session.
681 It should be a string consisting of the name of the gdb
682 executable followed by command line options. The command line
683 options should include \"-i=mi\" to use gdb's MI text interface.
684 Note that the old \"--annotate\" option is no longer supported.
685
686 If option `gdb-many-windows' is nil (the default value) then gdb just
687 pops up the GUD buffer unless `gdb-show-main' is t. In this case
688 it starts with two windows: one displaying the GUD buffer and the
689 other with the source file with the main routine of the inferior.
690
691 If option `gdb-many-windows' is t, regardless of the value of
692 `gdb-show-main', the layout below will appear. Keybindings are
693 shown in some of the buffers.
694
695 Watch expressions appear in the speedbar/slowbar.
696
697 The following commands help control operation :
698
699 `gdb-many-windows' - Toggle the number of windows gdb uses.
700 `gdb-restore-windows' - To restore the window layout.
701
702 See Info node `(emacs)GDB Graphical Interface' for a more
703 detailed description of this mode.
704
705
706 +----------------------------------------------------------------------+
707 | GDB Toolbar |
708 +-----------------------------------+----------------------------------+
709 | GUD buffer (I/O of GDB) | Locals buffer |
710 | | |
711 | | |
712 | | |
713 +-----------------------------------+----------------------------------+
714 | Source buffer | I/O buffer (of debugged program) |
715 | | (comint-mode) |
716 | | |
717 | | |
718 | | |
719 | | |
720 | | |
721 | | |
722 +-----------------------------------+----------------------------------+
723 | Stack buffer | Breakpoints buffer |
724 | RET gdb-select-frame | SPC gdb-toggle-breakpoint |
725 | | RET gdb-goto-breakpoint |
726 | | D gdb-delete-breakpoint |
727 +-----------------------------------+----------------------------------+"
728 ;;
729 (interactive (list (gud-query-cmdline 'gdb)))
730
731 (when (and gud-comint-buffer
732 (buffer-name gud-comint-buffer)
733 (get-buffer-process gud-comint-buffer)
734 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)))
735 (gdb-restore-windows)
736 (error
737 "Multiple debugging requires restarting in text command mode"))
738 ;;
739 (gud-common-init command-line nil 'gud-gdbmi-marker-filter)
740
741 ;; Setup a temporary process filter to warn when GDB was not started
742 ;; with -i=mi.
743 (let ((proc (get-buffer-process gud-comint-buffer)))
744 (add-function :around (process-filter proc) #'gdb--check-interpreter))
745
746 (set (make-local-variable 'gud-minor-mode) 'gdbmi)
747 (set (make-local-variable 'gdb-control-level) 0)
748 (setq comint-input-sender 'gdb-send)
749 (when (ring-empty-p comint-input-ring) ; cf shell-mode
750 (let ((hfile (expand-file-name (or (getenv "GDBHISTFILE")
751 (if (eq system-type 'ms-dos)
752 "_gdb_history"
753 ".gdb_history"))))
754 ;; gdb defaults to 256, but we'll default to comint-input-ring-size.
755 (hsize (getenv "HISTSIZE")))
756 (dolist (file (append '("~/.gdbinit")
757 (unless (string-equal (expand-file-name ".")
758 (expand-file-name "~"))
759 '(".gdbinit"))))
760 (if (file-readable-p (setq file (expand-file-name file)))
761 (with-temp-buffer
762 (insert-file-contents file)
763 ;; TODO? check for "set history save\\( *on\\)?" and do
764 ;; not use history otherwise?
765 (while (re-search-forward
766 "^ *set history \\(filename\\|size\\) *\\(.*\\)" nil t)
767 (cond ((string-equal (match-string 1) "filename")
768 (setq hfile (expand-file-name
769 (match-string 2)
770 (file-name-directory file))))
771 ((string-equal (match-string 1) "size")
772 (setq hsize (match-string 2))))))))
773 (and (stringp hsize)
774 (integerp (setq hsize (string-to-number hsize)))
775 (> hsize 0)
776 (set (make-local-variable 'comint-input-ring-size) hsize))
777 (if (stringp hfile)
778 (set (make-local-variable 'comint-input-ring-file-name) hfile))
779 (comint-read-input-ring t)))
780 (gud-def gud-tbreak "tbreak %f:%l" "\C-t"
781 "Set temporary breakpoint at current line.")
782 (gud-def gud-jump
783 (progn (gud-call "tbreak %f:%l") (gud-call "jump %f:%l"))
784 "\C-j" "Set execution address to current line.")
785
786 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
787 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
788 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
789 (gud-def gud-pstar "print* %e" nil
790 "Evaluate C dereferenced pointer expression at point.")
791
792 (gud-def gud-step (gdb-gud-context-call "-exec-step" "%p" t)
793 "\C-s"
794 "Step one source line with display.")
795 (gud-def gud-stepi (gdb-gud-context-call "-exec-step-instruction" "%p" t)
796 "\C-i"
797 "Step one instruction with display.")
798 (gud-def gud-next (gdb-gud-context-call "-exec-next" "%p" t)
799 "\C-n"
800 "Step one line (skip functions).")
801 (gud-def gud-nexti (gdb-gud-context-call "-exec-next-instruction" "%p" t)
802 nil
803 "Step one instruction (skip functions).")
804 (gud-def gud-cont (gdb-gud-context-call "-exec-continue")
805 "\C-r"
806 "Continue with display.")
807 (gud-def gud-finish (gdb-gud-context-call "-exec-finish" nil t)
808 "\C-f"
809 "Finish executing current function.")
810 (gud-def gud-run "-exec-run"
811 nil
812 "Run the program.")
813
814 (gud-def gud-break (if (not (string-match "Disassembly" mode-name))
815 (gud-call "break %f:%l" arg)
816 (save-excursion
817 (beginning-of-line)
818 (forward-char 2)
819 (gud-call "break *%a" arg)))
820 "\C-b" "Set breakpoint at current line or address.")
821
822 (gud-def gud-remove (if (not (string-match "Disassembly" mode-name))
823 (gud-call "clear %f:%l" arg)
824 (save-excursion
825 (beginning-of-line)
826 (forward-char 2)
827 (gud-call "clear *%a" arg)))
828 "\C-d" "Remove breakpoint at current line or address.")
829
830 ;; -exec-until doesn't support --all yet
831 (gud-def gud-until (if (not (string-match "Disassembly" mode-name))
832 (gud-call "-exec-until %f:%l" arg)
833 (save-excursion
834 (beginning-of-line)
835 (forward-char 2)
836 (gud-call "-exec-until *%a" arg)))
837 "\C-u" "Continue to current line or address.")
838 ;; TODO Why arg here?
839 (gud-def
840 gud-go (gud-call (if gdb-active-process
841 (gdb-gud-context-command "-exec-continue")
842 "-exec-run") arg)
843 nil "Start or continue execution.")
844
845 ;; For debugging Emacs only.
846 (gud-def gud-pp
847 (gud-call
848 (concat
849 "pp " (if (eq (buffer-local-value
850 'major-mode (window-buffer)) 'speedbar-mode)
851 (gdb-find-watch-expression) "%e")) arg)
852 nil "Print the Emacs s-expression.")
853
854 (define-key gud-minor-mode-map [left-margin mouse-1]
855 'gdb-mouse-set-clear-breakpoint)
856 (define-key gud-minor-mode-map [left-fringe mouse-1]
857 'gdb-mouse-set-clear-breakpoint)
858 (define-key gud-minor-mode-map [left-margin C-mouse-1]
859 'gdb-mouse-toggle-breakpoint-margin)
860 (define-key gud-minor-mode-map [left-fringe C-mouse-1]
861 'gdb-mouse-toggle-breakpoint-fringe)
862
863 (define-key gud-minor-mode-map [left-margin drag-mouse-1]
864 'gdb-mouse-until)
865 (define-key gud-minor-mode-map [left-fringe drag-mouse-1]
866 'gdb-mouse-until)
867 (define-key gud-minor-mode-map [left-margin mouse-3]
868 'gdb-mouse-until)
869 (define-key gud-minor-mode-map [left-fringe mouse-3]
870 'gdb-mouse-until)
871
872 (define-key gud-minor-mode-map [left-margin C-drag-mouse-1]
873 'gdb-mouse-jump)
874 (define-key gud-minor-mode-map [left-fringe C-drag-mouse-1]
875 'gdb-mouse-jump)
876 (define-key gud-minor-mode-map [left-fringe C-mouse-3]
877 'gdb-mouse-jump)
878 (define-key gud-minor-mode-map [left-margin C-mouse-3]
879 'gdb-mouse-jump)
880
881 (set (make-local-variable 'gud-gdb-completion-function)
882 'gud-gdbmi-completions)
883
884 (add-hook 'completion-at-point-functions #'gud-gdb-completion-at-point
885 nil 'local)
886 (local-set-key "\C-i" 'completion-at-point)
887
888 (local-set-key [remap comint-delchar-or-maybe-eof] 'gdb-delchar-or-quit)
889
890 (setq gdb-first-prompt t)
891 (setq gud-running nil)
892
893 (gdb-update)
894
895 (run-hooks 'gdb-mode-hook))
896
897 (defun gdb-init-1 ()
898 ;; (Re-)initialize.
899 (setq gdb-selected-frame nil
900 gdb-frame-number nil
901 gdb-thread-number nil
902 gdb-var-list nil
903 gdb-output-sink 'user
904 gdb-location-alist nil
905 gdb-source-file-list nil
906 gdb-last-command nil
907 gdb-token-number 0
908 gdb-handler-list '()
909 gdb-prompt-name nil
910 gdb-first-done-or-error t
911 gdb-buffer-fringe-width (car (window-fringes))
912 gdb-debug-log nil
913 gdb-source-window nil
914 gdb-inferior-status nil
915 gdb-continuation nil
916 gdb-buf-publisher '()
917 gdb-threads-list '()
918 gdb-breakpoints-list '()
919 gdb-register-names '()
920 gdb-non-stop gdb-non-stop-setting)
921 ;;
922 (gdbmi-bnf-init)
923 ;;
924 (setq gdb-buffer-type 'gdbmi)
925 ;;
926 (gdb-force-mode-line-update
927 (propertize "initializing..." 'face font-lock-variable-name-face))
928
929 (gdb-get-buffer-create 'gdb-inferior-io)
930 (gdb-clear-inferior-io)
931 (gdb-inferior-io--init-proc (get-process "gdb-inferior"))
932
933 (when (eq system-type 'windows-nt)
934 ;; Don't create a separate console window for the debuggee.
935 (gdb-input "-gdb-set new-console off" 'ignore)
936 ;; Force GDB to behave as if its input and output stream were
937 ;; connected to a TTY device (since on Windows we use pipes for
938 ;; communicating with GDB).
939 (gdb-input "-gdb-set interactive-mode on" 'ignore))
940 (gdb-input "-gdb-set height 0" 'ignore)
941
942 (when gdb-non-stop
943 (gdb-input "-gdb-set non-stop 1" 'gdb-non-stop-handler))
944
945 (gdb-input "-enable-pretty-printing" 'ignore)
946
947 ;; Find source file and compilation directory here.
948 (if gdb-create-source-file-list
949 ;; Needs GDB 6.2 onwards.
950 (gdb-input "-file-list-exec-source-files" 'gdb-get-source-file-list))
951 ;; Needs GDB 6.0 onwards.
952 (gdb-input "-file-list-exec-source-file" 'gdb-get-source-file)
953 (gdb-input "-gdb-show prompt" 'gdb-get-prompt))
954
955 (defun gdb-non-stop-handler ()
956 (goto-char (point-min))
957 (if (re-search-forward "No symbol" nil t)
958 (progn
959 (message
960 "This version of GDB doesn't support non-stop mode. Turning it off.")
961 (setq gdb-non-stop nil)
962 (setq gdb-supports-non-stop nil))
963 (setq gdb-supports-non-stop t)
964 (gdb-input "-gdb-set target-async 1" 'ignore)
965 (gdb-input "-list-target-features" 'gdb-check-target-async)))
966
967 (defun gdb-check-target-async ()
968 (goto-char (point-min))
969 (unless (re-search-forward "async" nil t)
970 (message
971 "Target doesn't support non-stop mode. Turning it off.")
972 (setq gdb-non-stop nil)
973 (gdb-input "-gdb-set non-stop 0" 'ignore)))
974
975 (defun gdb-delchar-or-quit (arg)
976 "Delete ARG characters or send a quit command to GDB.
977 Send a quit only if point is at the end of the buffer, there is
978 no input, and GDB is waiting for input."
979 (interactive "p")
980 (unless (and (eq (current-buffer) gud-comint-buffer)
981 (eq gud-minor-mode 'gdbmi))
982 (error "Not in a GDB-MI buffer"))
983 (let ((proc (get-buffer-process gud-comint-buffer)))
984 (if (and (eobp)
985 (process-live-p proc)
986 (not gud-running)
987 (= (point) (marker-position (process-mark proc))))
988 ;; Sending an EOF does not work with GDB-MI; submit an
989 ;; explicit quit command.
990 (progn
991 (insert "quit")
992 (comint-send-input t t))
993 (delete-char arg))))
994
995 (defvar gdb-define-alist nil "Alist of #define directives for GUD tooltips.")
996
997 (defun gdb-create-define-alist ()
998 "Create an alist of #define directives for GUD tooltips."
999 (let* ((file (buffer-file-name))
1000 (output
1001 (with-output-to-string
1002 (with-current-buffer standard-output
1003 (and file
1004 (file-exists-p file)
1005 ;; call-process doesn't work with remote file names.
1006 (not (file-remote-p default-directory))
1007 (call-process shell-file-name file
1008 (list t nil) nil "-c"
1009 (concat gdb-cpp-define-alist-program " "
1010 gdb-cpp-define-alist-flags))))))
1011 (define-list (split-string output "\n" t))
1012 (name))
1013 (setq gdb-define-alist nil)
1014 (dolist (define define-list)
1015 (setq name (nth 1 (split-string define "[( ]")))
1016 (push (cons name define) gdb-define-alist))))
1017
1018 (declare-function tooltip-show "tooltip" (text &optional use-echo-area))
1019
1020 (defconst gdb--string-regexp "\"\\(?:[^\\\"]\\|\\\\.\\)*\"")
1021
1022 (defun gdb-tooltip-print (expr)
1023 (with-current-buffer (gdb-get-buffer 'gdb-partial-output-buffer)
1024 (goto-char (point-min))
1025 (cond
1026 ((re-search-forward (concat ".*value=\\(" gdb--string-regexp
1027 "\\)")
1028 nil t)
1029 (tooltip-show
1030 (concat expr " = " (read (match-string 1)))
1031 (or gud-tooltip-echo-area
1032 (not (display-graphic-p)))))
1033 ((re-search-forward "msg=\\(\".+\"\\)$" nil t)
1034 (tooltip-show (read (match-string 1))
1035 (or gud-tooltip-echo-area
1036 (not (display-graphic-p))))))))
1037
1038 ;; If expr is a macro for a function don't print because of possible dangerous
1039 ;; side-effects. Also printing a function within a tooltip generates an
1040 ;; unexpected starting annotation (phase error).
1041 (defun gdb-tooltip-print-1 (expr)
1042 (with-current-buffer (gdb-get-buffer 'gdb-partial-output-buffer)
1043 (goto-char (point-min))
1044 (if (search-forward "expands to: " nil t)
1045 (unless (looking-at "\\S-+.*(.*).*")
1046 (gdb-input (concat "-data-evaluate-expression \"" expr "\"")
1047 `(lambda () (gdb-tooltip-print ,expr)))))))
1048
1049 (defun gdb-init-buffer ()
1050 (set (make-local-variable 'gud-minor-mode) 'gdbmi)
1051 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map)
1052 (when gud-tooltip-mode
1053 (make-local-variable 'gdb-define-alist)
1054 (gdb-create-define-alist)
1055 (add-hook 'after-save-hook 'gdb-create-define-alist nil t)))
1056
1057 (defmacro gdb--if-arrow (arrow-position start-posn end-posn &rest body)
1058 (declare (indent 3))
1059 (let ((buffer (make-symbol "buffer")))
1060 `(if ,arrow-position
1061 (let ((,buffer (marker-buffer ,arrow-position)))
1062 (if (equal ,buffer (window-buffer (posn-window ,end-posn)))
1063 (with-current-buffer ,buffer
1064 (when (or (equal ,start-posn ,end-posn)
1065 (equal (posn-point ,start-posn)
1066 (marker-position ,arrow-position)))
1067 ,@body)))))))
1068
1069 (defun gdb-mouse-until (event)
1070 "Continue running until a source line past the current line.
1071 The destination source line can be selected either by clicking
1072 with mouse-3 on the fringe/margin or dragging the arrow
1073 with mouse-1 (default bindings)."
1074 (interactive "e")
1075 (let ((start (event-start event))
1076 (end (event-end event)))
1077 (gdb--if-arrow gud-overlay-arrow-position start end
1078 (let ((line (line-number-at-pos (posn-point end))))
1079 (gud-call (concat "until " (number-to-string line)))))
1080 (gdb--if-arrow gdb-disassembly-position start end
1081 (save-excursion
1082 (goto-char (point-min))
1083 (forward-line (1- (line-number-at-pos (posn-point end))))
1084 (forward-char 2)
1085 (gud-call (concat "until *%a"))))))
1086
1087 (defun gdb-mouse-jump (event)
1088 "Set execution address/line.
1089 The destination source line can be selected either by clicking with C-mouse-3
1090 on the fringe/margin or dragging the arrow with C-mouse-1 (default bindings).
1091 Unlike `gdb-mouse-until' the destination address can be before the current
1092 line, and no execution takes place."
1093 (interactive "e")
1094 (let ((start (event-start event))
1095 (end (event-end event)))
1096 (gdb--if-arrow gud-overlay-arrow-position start end
1097 (let ((line (line-number-at-pos (posn-point end))))
1098 (gud-call (concat "tbreak " (number-to-string line)))
1099 (gud-call (concat "jump " (number-to-string line)))))
1100 (gdb--if-arrow gdb-disassembly-position start end
1101 (save-excursion
1102 (goto-char (point-min))
1103 (forward-line (1- (line-number-at-pos (posn-point end))))
1104 (forward-char 2)
1105 (gud-call (concat "tbreak *%a"))
1106 (gud-call (concat "jump *%a"))))))
1107
1108 (defcustom gdb-show-changed-values t
1109 "If non-nil change the face of out of scope variables and changed values.
1110 Out of scope variables are suppressed with `shadow' face.
1111 Changed values are highlighted with the face `font-lock-warning-face'."
1112 :type 'boolean
1113 :group 'gdb
1114 :version "22.1")
1115
1116 (defcustom gdb-max-children 40
1117 "Maximum number of children before expansion requires confirmation."
1118 :type 'integer
1119 :group 'gdb
1120 :version "22.1")
1121
1122 (defcustom gdb-delete-out-of-scope t
1123 "If non-nil delete watch expressions automatically when they go out of scope."
1124 :type 'boolean
1125 :group 'gdb
1126 :version "22.2")
1127
1128 (define-minor-mode gdb-speedbar-auto-raise
1129 "Minor mode to automatically raise the speedbar for watch expressions.
1130 With prefix argument ARG, automatically raise speedbar if ARG is
1131 positive, otherwise don't automatically raise it."
1132 :global t
1133 :group 'gdb
1134 :version "22.1")
1135
1136 (defcustom gdb-use-colon-colon-notation nil
1137 "If non-nil use FUN::VAR format to display variables in the speedbar."
1138 :type 'boolean
1139 :group 'gdb
1140 :version "22.1")
1141
1142 (define-key gud-minor-mode-map "\C-c\C-w" 'gud-watch)
1143 (define-key global-map (vconcat gud-key-prefix "\C-w") 'gud-watch)
1144
1145 (declare-function tooltip-identifier-from-point "tooltip" (point))
1146
1147 (defun gud-watch (&optional arg event)
1148 "Watch expression at point.
1149 With arg, enter name of variable to be watched in the minibuffer."
1150 (interactive (list current-prefix-arg last-input-event))
1151 (let ((minor-mode (buffer-local-value 'gud-minor-mode gud-comint-buffer)))
1152 (if (eq minor-mode 'gdbmi)
1153 (progn
1154 (if event (posn-set-point (event-end event)))
1155 (require 'tooltip)
1156 (save-selected-window
1157 (let ((expr
1158 (if arg
1159 (completing-read "Name of variable: "
1160 'gud-gdb-complete-command)
1161 (if (and transient-mark-mode mark-active)
1162 (buffer-substring (region-beginning) (region-end))
1163 (concat (if (derived-mode-p 'gdb-registers-mode) "$")
1164 (tooltip-identifier-from-point (point)))))))
1165 (set-text-properties 0 (length expr) nil expr)
1166 (gdb-input (concat "-var-create - * " expr "")
1167 `(lambda () (gdb-var-create-handler ,expr))))))
1168 (message "gud-watch is a no-op in this mode."))))
1169
1170 (defun gdb-var-create-handler (expr)
1171 (let* ((result (gdb-json-partial-output)))
1172 (if (not (bindat-get-field result 'msg))
1173 (let ((var
1174 (list (bindat-get-field result 'name)
1175 (if (and (string-equal gdb-current-language "c")
1176 gdb-use-colon-colon-notation gdb-selected-frame)
1177 (setq expr (concat gdb-selected-frame "::" expr))
1178 expr)
1179 (bindat-get-field result 'numchild)
1180 (bindat-get-field result 'type)
1181 (bindat-get-field result 'value)
1182 nil
1183 (bindat-get-field result 'has_more)
1184 gdb-frame-address)))
1185 (push var gdb-var-list)
1186 (speedbar 1)
1187 (unless (string-equal
1188 speedbar-initial-expansion-list-name "GUD")
1189 (speedbar-change-initial-expansion-list "GUD")))
1190 (message-box "No symbol \"%s\" in current context." expr))))
1191
1192 (defun gdb-speedbar-update ()
1193 (when (and (boundp 'speedbar-frame) (frame-live-p speedbar-frame))
1194 ;; Dummy command to update speedbar even when idle.
1195 (gdb-input "-environment-pwd"
1196 'gdb-speedbar-timer-fn
1197 'gdb-speedbar-update)))
1198
1199 (defun gdb-speedbar-timer-fn ()
1200 (if gdb-speedbar-auto-raise
1201 (raise-frame speedbar-frame))
1202 (speedbar-timer-fn))
1203
1204 (defun gdb-var-evaluate-expression-handler (varnum changed)
1205 (goto-char (point-min))
1206 (re-search-forward (concat ".*value=\\(" gdb--string-regexp "\\)")
1207 nil t)
1208 (let ((var (assoc varnum gdb-var-list)))
1209 (when var
1210 (if changed (setcar (nthcdr 5 var) 'changed))
1211 (setcar (nthcdr 4 var) (read (match-string 1)))))
1212 (gdb-speedbar-update))
1213
1214 ; Uses "-var-list-children --all-values". Needs GDB 6.1 onwards.
1215 (defun gdb-var-list-children (varnum)
1216 (gdb-input (concat "-var-update " varnum) 'ignore)
1217 (gdb-input (concat "-var-list-children --all-values " varnum)
1218 `(lambda () (gdb-var-list-children-handler ,varnum))))
1219
1220 (defun gdb-var-list-children-handler (varnum)
1221 (let* ((var-list nil)
1222 (output (bindat-get-field (gdb-json-partial-output "child")))
1223 (children (bindat-get-field output 'children)))
1224 (catch 'child-already-watched
1225 (dolist (var gdb-var-list)
1226 (if (string-equal varnum (car var))
1227 (progn
1228 ;; With dynamic varobjs numchild may have increased.
1229 (setcar (nthcdr 2 var) (bindat-get-field output 'numchild))
1230 (push var var-list)
1231 (dolist (child children)
1232 (let ((varchild (list (bindat-get-field child 'name)
1233 (bindat-get-field child 'exp)
1234 (bindat-get-field child 'numchild)
1235 (bindat-get-field child 'type)
1236 (bindat-get-field child 'value)
1237 nil
1238 (bindat-get-field child 'has_more))))
1239 (if (assoc (car varchild) gdb-var-list)
1240 (throw 'child-already-watched nil))
1241 (push varchild var-list))))
1242 (push var var-list)))
1243 (setq gdb-var-list (nreverse var-list))))
1244 (gdb-speedbar-update))
1245
1246 (defun gdb-var-set-format (format)
1247 "Set the output format for a variable displayed in the speedbar."
1248 (let* ((var (nth (- (count-lines (point-min) (point)) 2) gdb-var-list))
1249 (varnum (car var)))
1250 (gdb-input (concat "-var-set-format " varnum " " format) 'ignore)
1251 (gdb-var-update)))
1252
1253 (defun gdb-var-delete-1 (var varnum)
1254 (gdb-input (concat "-var-delete " varnum) 'ignore)
1255 (setq gdb-var-list (delq var gdb-var-list))
1256 (dolist (varchild gdb-var-list)
1257 (if (string-match (concat (car var) "\\.") (car varchild))
1258 (setq gdb-var-list (delq varchild gdb-var-list)))))
1259
1260 (defun gdb-var-delete ()
1261 "Delete watch expression at point from the speedbar."
1262 (interactive)
1263 (let ((text (speedbar-line-text)))
1264 (string-match "\\(\\S-+\\)" text)
1265 (let* ((var (nth (- (count-lines (point-min) (point)) 2) gdb-var-list))
1266 (varnum (car var)))
1267 (if (string-match "\\." (car var))
1268 (message-box "Can only delete a root expression")
1269 (gdb-var-delete-1 var varnum)))))
1270
1271 (defun gdb-var-delete-children (varnum)
1272 "Delete children of variable object at point from the speedbar."
1273 (gdb-input (concat "-var-delete -c " varnum) 'ignore))
1274
1275 (defun gdb-edit-value (_text _token _indent)
1276 "Assign a value to a variable displayed in the speedbar."
1277 (let* ((var (nth (- (count-lines (point-min) (point)) 2) gdb-var-list))
1278 (varnum (car var))
1279 (value (read-string "New value: ")))
1280 (gdb-input (concat "-var-assign " varnum " " value)
1281 `(lambda () (gdb-edit-value-handler ,value)))))
1282
1283 (defconst gdb-error-regexp "\\^error,msg=\\(\".+\"\\)")
1284
1285 (defun gdb-edit-value-handler (value)
1286 (goto-char (point-min))
1287 (if (re-search-forward gdb-error-regexp nil t)
1288 (message-box "Invalid number or expression (%s)" value)))
1289
1290 ; Uses "-var-update --all-values". Needs GDB 6.4 onwards.
1291 (defun gdb-var-update ()
1292 (gdb-input "-var-update --all-values *"
1293 'gdb-var-update-handler
1294 'gdb-var-update))
1295
1296 (defun gdb-var-update-handler ()
1297 (let ((changelist (bindat-get-field (gdb-json-partial-output) 'changelist)))
1298 (dolist (var gdb-var-list)
1299 (setcar (nthcdr 5 var) nil))
1300 (let ((temp-var-list gdb-var-list))
1301 (dolist (change changelist)
1302 (let* ((varnum (bindat-get-field change 'name))
1303 (var (assoc varnum gdb-var-list))
1304 (new-num (bindat-get-field change 'new_num_children)))
1305 (when var
1306 (let ((scope (bindat-get-field change 'in_scope))
1307 (has-more (bindat-get-field change 'has_more)))
1308 (cond ((string-equal scope "false")
1309 (if gdb-delete-out-of-scope
1310 (gdb-var-delete-1 var varnum)
1311 (setcar (nthcdr 5 var) 'out-of-scope)))
1312 ((string-equal scope "true")
1313 (setcar (nthcdr 6 var) has-more)
1314 (when (and (or (not has-more)
1315 (string-equal has-more "0"))
1316 (not new-num)
1317 (string-equal (nth 2 var) "0"))
1318 (setcar (nthcdr 4 var)
1319 (bindat-get-field change 'value))
1320 (setcar (nthcdr 5 var) 'changed)))
1321 ((string-equal scope "invalid")
1322 (gdb-var-delete-1 var varnum)))))
1323 (let ((var-list nil) var1
1324 (children (bindat-get-field change 'new_children)))
1325 (when new-num
1326 (setq var1 (pop temp-var-list))
1327 (while var1
1328 (if (string-equal varnum (car var1))
1329 (let ((new (string-to-number new-num))
1330 (previous (string-to-number (nth 2 var1))))
1331 (setcar (nthcdr 2 var1) new-num)
1332 (push var1 var-list)
1333 (cond
1334 ((> new previous)
1335 ;; Add new children to list.
1336 (dotimes (_ previous)
1337 (push (pop temp-var-list) var-list))
1338 (dolist (child children)
1339 (let ((varchild
1340 (list (bindat-get-field child 'name)
1341 (bindat-get-field child 'exp)
1342 (bindat-get-field child 'numchild)
1343 (bindat-get-field child 'type)
1344 (bindat-get-field child 'value)
1345 'changed
1346 (bindat-get-field child 'has_more))))
1347 (push varchild var-list))))
1348 ;; Remove deleted children from list.
1349 ((< new previous)
1350 (dotimes (_ new)
1351 (push (pop temp-var-list) var-list))
1352 (dotimes (_ (- previous new))
1353 (pop temp-var-list)))))
1354 (push var1 var-list))
1355 (setq var1 (pop temp-var-list)))
1356 (setq gdb-var-list (nreverse var-list))))))))
1357 (gdb-speedbar-update))
1358
1359 (defun gdb-speedbar-expand-node (text token indent)
1360 "Expand the node the user clicked on.
1361 TEXT is the text of the button we clicked on, a + or - item.
1362 TOKEN is data related to this node.
1363 INDENT is the current indentation depth."
1364 (cond ((string-match "+" text) ;expand this node
1365 (let* ((var (assoc token gdb-var-list))
1366 (expr (nth 1 var)) (children (nth 2 var)))
1367 (if (or (<= (string-to-number children) gdb-max-children)
1368 (y-or-n-p
1369 (format "%s has %s children. Continue? " expr children)))
1370 (gdb-var-list-children token))))
1371 ((string-match "-" text) ;contract this node
1372 (dolist (var gdb-var-list)
1373 (if (string-match (concat token "\\.") (car var))
1374 (setq gdb-var-list (delq var gdb-var-list))))
1375 (gdb-var-delete-children token)
1376 (speedbar-change-expand-button-char ?+)
1377 (speedbar-delete-subblock indent))
1378 (t (error "Ooops... not sure what to do")))
1379 (speedbar-center-buffer-smartly))
1380
1381 (defun gdb-get-target-string ()
1382 (with-current-buffer gud-comint-buffer
1383 gud-target-name))
1384 \f
1385
1386 ;;
1387 ;; gdb buffers.
1388 ;;
1389 ;; Each buffer has a TYPE -- a symbol that identifies the function
1390 ;; of that particular buffer.
1391 ;;
1392 ;; The usual gdb interaction buffer is given the type `gdbmi' and
1393 ;; is constructed specially.
1394 ;;
1395 ;; Others are constructed by gdb-get-buffer-create and
1396 ;; named according to the rules set forth in the gdb-buffer-rules
1397
1398 (defvar gdb-buffer-rules '())
1399
1400 (defun gdb-rules-name-maker (rules-entry)
1401 (cadr rules-entry))
1402 (defun gdb-rules-buffer-mode (rules-entry)
1403 (nth 2 rules-entry))
1404 (defun gdb-rules-update-trigger (rules-entry)
1405 (nth 3 rules-entry))
1406
1407 (defun gdb-update-buffer-name ()
1408 "Rename current buffer according to name-maker associated with
1409 it in `gdb-buffer-rules'."
1410 (let ((f (gdb-rules-name-maker (assoc gdb-buffer-type
1411 gdb-buffer-rules))))
1412 (when f (rename-buffer (funcall f)))))
1413
1414 (defun gdb-current-buffer-rules ()
1415 "Get `gdb-buffer-rules' entry for current buffer type."
1416 (assoc gdb-buffer-type gdb-buffer-rules))
1417
1418 (defun gdb-current-buffer-thread ()
1419 "Get thread object of current buffer from `gdb-threads-list'.
1420
1421 When current buffer is not bound to any thread, return main
1422 thread."
1423 (cdr (assoc gdb-thread-number gdb-threads-list)))
1424
1425 (defun gdb-current-buffer-frame ()
1426 "Get current stack frame object for thread of current buffer."
1427 (bindat-get-field (gdb-current-buffer-thread) 'frame))
1428
1429 (defun gdb-buffer-type (buffer)
1430 "Get value of `gdb-buffer-type' for BUFFER."
1431 (with-current-buffer buffer
1432 gdb-buffer-type))
1433
1434 (defun gdb-buffer-shows-main-thread-p ()
1435 "Return t if current GDB buffer shows main selected thread and
1436 is not bound to it."
1437 (current-buffer)
1438 (not (local-variable-p 'gdb-thread-number)))
1439
1440 (defun gdb-get-buffer (buffer-type &optional thread)
1441 "Get a specific GDB buffer.
1442
1443 In that buffer, `gdb-buffer-type' must be equal to BUFFER-TYPE
1444 and `gdb-thread-number' (if provided) must be equal to THREAD."
1445 (catch 'found
1446 (dolist (buffer (buffer-list) nil)
1447 (with-current-buffer buffer
1448 (when (and (eq gdb-buffer-type buffer-type)
1449 (or (not thread)
1450 (equal gdb-thread-number thread)))
1451 (throw 'found buffer))))))
1452
1453 (defun gdb-get-buffer-create (buffer-type &optional thread)
1454 "Create a new GDB buffer of the type specified by BUFFER-TYPE.
1455 The buffer-type should be one of the cars in `gdb-buffer-rules'.
1456
1457 If THREAD is non-nil, it is assigned to `gdb-thread-number'
1458 buffer-local variable of the new buffer.
1459
1460 Buffer mode and name are selected according to buffer type.
1461
1462 If buffer has trigger associated with it in `gdb-buffer-rules',
1463 this trigger is subscribed to `gdb-buf-publisher' and called with
1464 'update argument."
1465 (or (gdb-get-buffer buffer-type thread)
1466 (let ((rules (assoc buffer-type gdb-buffer-rules))
1467 (new (generate-new-buffer "limbo")))
1468 (with-current-buffer new
1469 (let ((mode (gdb-rules-buffer-mode rules))
1470 (trigger (gdb-rules-update-trigger rules)))
1471 (when mode (funcall mode))
1472 (setq gdb-buffer-type buffer-type)
1473 (when thread
1474 (set (make-local-variable 'gdb-thread-number) thread))
1475 (set (make-local-variable 'gud-minor-mode)
1476 (buffer-local-value 'gud-minor-mode gud-comint-buffer))
1477 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map)
1478 (rename-buffer (funcall (gdb-rules-name-maker rules)))
1479 (when trigger
1480 (gdb-add-subscriber gdb-buf-publisher
1481 (cons (current-buffer)
1482 (gdb-bind-function-to-buffer
1483 trigger (current-buffer))))
1484 (funcall trigger 'start))
1485 (current-buffer))))))
1486
1487 (defun gdb-bind-function-to-buffer (expr buffer)
1488 "Return a function which will evaluate EXPR in BUFFER."
1489 `(lambda (&rest args)
1490 (with-current-buffer ,buffer
1491 (apply ',expr args))))
1492
1493 ;; Used to display windows with thread-bound buffers
1494 (defmacro def-gdb-preempt-display-buffer (name buffer &optional doc
1495 split-horizontal)
1496 `(defun ,name (&optional thread)
1497 ,(when doc doc)
1498 (message "%s" thread)
1499 (gdb-preempt-existing-or-display-buffer
1500 (gdb-get-buffer-create ,buffer thread)
1501 ,split-horizontal)))
1502
1503 ;; This assoc maps buffer type symbols to rules. Each rule is a list of
1504 ;; at least one and possible more functions. The functions have these
1505 ;; roles in defining a buffer type:
1506 ;;
1507 ;; NAME - Return a name for this buffer type.
1508 ;;
1509 ;; The remaining function(s) are optional:
1510 ;;
1511 ;; MODE - called in a new buffer with no arguments, should establish
1512 ;; the proper mode for the buffer.
1513 ;;
1514
1515 (defun gdb-set-buffer-rules (buffer-type &rest rules)
1516 (let ((binding (assoc buffer-type gdb-buffer-rules)))
1517 (if binding
1518 (setcdr binding rules)
1519 (push (cons buffer-type rules)
1520 gdb-buffer-rules))))
1521
1522 (defun gdb-parent-mode ()
1523 "Generic mode to derive all other GDB buffer modes from."
1524 (kill-all-local-variables)
1525 (setq buffer-read-only t)
1526 (buffer-disable-undo)
1527 ;; Delete buffer from gdb-buf-publisher when it's killed
1528 ;; (if it has an associated update trigger)
1529 (add-hook
1530 'kill-buffer-hook
1531 (function
1532 (lambda ()
1533 (let ((trigger (gdb-rules-update-trigger
1534 (gdb-current-buffer-rules))))
1535 (when trigger
1536 (gdb-delete-subscriber
1537 gdb-buf-publisher
1538 ;; This should match gdb-add-subscriber done in
1539 ;; gdb-get-buffer-create
1540 (cons (current-buffer)
1541 (gdb-bind-function-to-buffer trigger (current-buffer))))))))
1542 nil t))
1543
1544 ;; Partial-output buffer : This accumulates output from a command executed on
1545 ;; behalf of emacs (rather than the user).
1546 ;;
1547 (gdb-set-buffer-rules 'gdb-partial-output-buffer
1548 'gdb-partial-output-name)
1549
1550 (defun gdb-partial-output-name ()
1551 (concat " *partial-output-"
1552 (gdb-get-target-string)
1553 "*"))
1554
1555 \f
1556 (gdb-set-buffer-rules 'gdb-inferior-io
1557 'gdb-inferior-io-name
1558 'gdb-inferior-io-mode)
1559
1560 (defun gdb-inferior-io-name ()
1561 (concat "*input/output of "
1562 (gdb-get-target-string)
1563 "*"))
1564
1565 (defun gdb-display-io-buffer ()
1566 "Display IO of debugged program in a separate window."
1567 (interactive)
1568 (gdb-display-buffer (gdb-get-buffer-create 'gdb-inferior-io)))
1569
1570 (defun gdb-inferior-io--init-proc (proc)
1571 ;; Set up inferior I/O. Needs GDB 6.4 onwards.
1572 (set-process-filter proc 'gdb-inferior-filter)
1573 (set-process-sentinel proc 'gdb-inferior-io-sentinel)
1574 ;; The process can run on a remote host.
1575 (let ((tty (or (process-get proc 'remote-tty)
1576 (process-tty-name proc))))
1577 (unless (or (null tty)
1578 (string= tty ""))
1579 (gdb-input
1580 (concat "-inferior-tty-set " tty) 'ignore))))
1581
1582 (defun gdb-inferior-io-sentinel (proc _str)
1583 (when (eq (process-status proc) 'failed)
1584 ;; When the debugged process exits, Emacs gets an EIO error on
1585 ;; read from the pty, and stops listening to it. If the gdb
1586 ;; process is still running, remove the pty, make a new one, and
1587 ;; pass it to gdb.
1588 (let ((io-buffer (process-buffer proc)))
1589 (when (and (process-live-p (get-buffer-process gud-comint-buffer))
1590 (buffer-live-p io-buffer))
1591 ;; `comint-exec' deletes the original process as a side effect.
1592 (comint-exec io-buffer "gdb-inferior" nil nil nil)
1593 (gdb-inferior-io--init-proc (get-buffer-process io-buffer))))))
1594
1595 (defcustom gdb-display-buffer-other-frame-action
1596 '((display-buffer-reuse-window display-buffer-pop-up-frame)
1597 (reusable-frames . visible)
1598 (inhibit-same-window . t)
1599 (pop-up-frame-parameters (height . 14)
1600 (width . 80)
1601 (unsplittable . t)
1602 (tool-bar-lines . nil)
1603 (menu-bar-lines . nil)
1604 (minibuffer . nil)))
1605 "`display-buffer' action for displaying GDB utility frames."
1606 :group 'gdb
1607 :type display-buffer--action-custom-type
1608 :risky t
1609 :version "24.3")
1610
1611 (defun gdb-frame-io-buffer ()
1612 "Display IO of debugged program in another frame."
1613 (interactive)
1614 (display-buffer (gdb-get-buffer-create 'gdb-inferior-io)
1615 gdb-display-buffer-other-frame-action))
1616
1617 (defvar gdb-inferior-io-mode-map
1618 (let ((map (make-sparse-keymap)))
1619 (define-key map "\C-c\C-c" 'gdb-io-interrupt)
1620 (define-key map "\C-c\C-z" 'gdb-io-stop)
1621 (define-key map "\C-c\C-\\" 'gdb-io-quit)
1622 (define-key map "\C-c\C-d" 'gdb-io-eof)
1623 (define-key map "\C-d" 'gdb-io-eof)
1624 map))
1625
1626 ;; We want to use comint because it has various nifty and familiar features.
1627 (define-derived-mode gdb-inferior-io-mode comint-mode "Inferior I/O"
1628 "Major mode for gdb inferior-io."
1629 :syntax-table nil :abbrev-table nil
1630 (make-comint-in-buffer "gdb-inferior" (current-buffer) nil))
1631
1632 (defcustom gdb-display-io-nopopup nil
1633 "When non-nil, and the 'gdb-inferior-io buffer is buried, don't pop it up."
1634 :type 'boolean
1635 :group 'gdb
1636 :version "25.1")
1637
1638 (defun gdb-inferior-filter (proc string)
1639 (unless (string-equal string "")
1640 (let (buf)
1641 (unless (and gdb-display-io-nopopup
1642 (setq buf (gdb-get-buffer 'gdb-inferior-io))
1643 (null (get-buffer-window buf)))
1644 (gdb-display-buffer (gdb-get-buffer-create 'gdb-inferior-io)))))
1645 (with-current-buffer (gdb-get-buffer-create 'gdb-inferior-io)
1646 (comint-output-filter proc string)))
1647
1648 (defun gdb-io-interrupt ()
1649 "Interrupt the program being debugged."
1650 (interactive)
1651 (interrupt-process
1652 (get-buffer-process gud-comint-buffer) comint-ptyp))
1653
1654 (defun gdb-io-quit ()
1655 "Send quit signal to the program being debugged."
1656 (interactive)
1657 (quit-process
1658 (get-buffer-process gud-comint-buffer) comint-ptyp))
1659
1660 (defun gdb-io-stop ()
1661 "Stop the program being debugged."
1662 (interactive)
1663 (stop-process
1664 (get-buffer-process gud-comint-buffer) comint-ptyp))
1665
1666 (defun gdb-io-eof ()
1667 "Send end-of-file to the program being debugged."
1668 (interactive)
1669 (process-send-eof
1670 (get-buffer-process gud-comint-buffer)))
1671
1672 (defun gdb-clear-inferior-io ()
1673 (with-current-buffer (gdb-get-buffer-create 'gdb-inferior-io)
1674 (erase-buffer)))
1675 \f
1676
1677 (defconst breakpoint-xpm-data
1678 "/* XPM */
1679 static char *magick[] = {
1680 /* columns rows colors chars-per-pixel */
1681 \"10 10 2 1\",
1682 \" c red\",
1683 \"+ c None\",
1684 /* pixels */
1685 \"+++ +++\",
1686 \"++ ++\",
1687 \"+ +\",
1688 \" \",
1689 \" \",
1690 \" \",
1691 \" \",
1692 \"+ +\",
1693 \"++ ++\",
1694 \"+++ +++\",
1695 };"
1696 "XPM data used for breakpoint icon.")
1697
1698 (defconst breakpoint-enabled-pbm-data
1699 "P1
1700 10 10\",
1701 0 0 0 0 1 1 1 1 0 0 0 0
1702 0 0 0 1 1 1 1 1 1 0 0 0
1703 0 0 1 1 1 1 1 1 1 1 0 0
1704 0 1 1 1 1 1 1 1 1 1 1 0
1705 0 1 1 1 1 1 1 1 1 1 1 0
1706 0 1 1 1 1 1 1 1 1 1 1 0
1707 0 1 1 1 1 1 1 1 1 1 1 0
1708 0 0 1 1 1 1 1 1 1 1 0 0
1709 0 0 0 1 1 1 1 1 1 0 0 0
1710 0 0 0 0 1 1 1 1 0 0 0 0"
1711 "PBM data used for enabled breakpoint icon.")
1712
1713 (defconst breakpoint-disabled-pbm-data
1714 "P1
1715 10 10\",
1716 0 0 1 0 1 0 1 0 0 0
1717 0 1 0 1 0 1 0 1 0 0
1718 1 0 1 0 1 0 1 0 1 0
1719 0 1 0 1 0 1 0 1 0 1
1720 1 0 1 0 1 0 1 0 1 0
1721 0 1 0 1 0 1 0 1 0 1
1722 1 0 1 0 1 0 1 0 1 0
1723 0 1 0 1 0 1 0 1 0 1
1724 0 0 1 0 1 0 1 0 1 0
1725 0 0 0 1 0 1 0 1 0 0"
1726 "PBM data used for disabled breakpoint icon.")
1727
1728 (defvar breakpoint-enabled-icon nil
1729 "Icon for enabled breakpoint in display margin.")
1730
1731 (defvar breakpoint-disabled-icon nil
1732 "Icon for disabled breakpoint in display margin.")
1733
1734 (declare-function define-fringe-bitmap "fringe.c"
1735 (bitmap bits &optional height width align))
1736
1737 (and (display-images-p)
1738 ;; Bitmap for breakpoint in fringe
1739 (define-fringe-bitmap 'breakpoint
1740 "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")
1741 ;; Bitmap for gud-overlay-arrow in fringe
1742 (define-fringe-bitmap 'hollow-right-triangle
1743 "\xe0\x90\x88\x84\x84\x88\x90\xe0"))
1744
1745 (defface breakpoint-enabled
1746 '((t
1747 :foreground "red1"
1748 :weight bold))
1749 "Face for enabled breakpoint icon in fringe."
1750 :group 'gdb)
1751
1752 (defface breakpoint-disabled
1753 '((((class color) (min-colors 88)) :foreground "grey70")
1754 ;; Ensure that on low-color displays that we end up something visible.
1755 (((class color) (min-colors 8) (background light))
1756 :foreground "black")
1757 (((class color) (min-colors 8) (background dark))
1758 :foreground "white")
1759 (((type tty) (class mono))
1760 :inverse-video t)
1761 (t :background "gray"))
1762 "Face for disabled breakpoint icon in fringe."
1763 :group 'gdb)
1764
1765 \f
1766 (defvar gdb-control-commands-regexp
1767 (concat
1768 "^\\("
1769 "commands\\|if\\|while\\|define\\|document\\|python\\|"
1770 "while-stepping\\|stepping\\|ws\\|actions"
1771 "\\)\\([[:blank:]]+.*\\)?$")
1772 "Regexp matching GDB commands that enter a recursive reading loop.
1773 As long as GDB is in the recursive reading loop, it does not expect
1774 commands to be prefixed by \"-interpreter-exec console\".")
1775
1776 (defun gdb-strip-string-backslash (string)
1777 (replace-regexp-in-string "\\\\$" "" string))
1778
1779 (defun gdb-send (proc string)
1780 "A comint send filter for gdb."
1781 (with-current-buffer gud-comint-buffer
1782 (let ((inhibit-read-only t))
1783 (remove-text-properties (point-min) (point-max) '(face))))
1784 ;; mimic <RET> key to repeat previous command in GDB
1785 (if (not (string= "" string))
1786 (if gdb-continuation
1787 (setq gdb-last-command (concat gdb-continuation
1788 (gdb-strip-string-backslash string)
1789 " "))
1790 (setq gdb-last-command (gdb-strip-string-backslash string)))
1791 (if gdb-last-command (setq string gdb-last-command))
1792 (setq gdb-continuation nil))
1793 (if (and (not gdb-continuation) (or (string-match "^-" string)
1794 (> gdb-control-level 0)))
1795 ;; Either MI command or we are feeding GDB's recursive reading loop.
1796 (progn
1797 (setq gdb-first-done-or-error t)
1798 (process-send-string proc (concat string "\n"))
1799 (if (and (string-match "^end$" string)
1800 (> gdb-control-level 0))
1801 (setq gdb-control-level (1- gdb-control-level))))
1802 ;; CLI command
1803 (if (string-match "\\\\$" string)
1804 (setq gdb-continuation
1805 (concat gdb-continuation (gdb-strip-string-backslash
1806 string)
1807 " "))
1808 (setq gdb-first-done-or-error t)
1809 (let ((to-send (concat "-interpreter-exec console "
1810 (gdb-mi-quote (concat gdb-continuation string " "))
1811 "\n")))
1812 (if gdb-enable-debug
1813 (push (cons 'mi-send to-send) gdb-debug-log))
1814 (process-send-string proc to-send))
1815 (if (and (string-match "^end$" string)
1816 (> gdb-control-level 0))
1817 (setq gdb-control-level (1- gdb-control-level)))
1818 (setq gdb-continuation nil)))
1819 (if (string-match gdb-control-commands-regexp string)
1820 (setq gdb-control-level (1+ gdb-control-level))))
1821
1822 (defun gdb-mi-quote (string)
1823 "Return STRING quoted properly as an MI argument.
1824 The string is enclosed in double quotes.
1825 All embedded quotes, newlines, and backslashes are preceded with a backslash."
1826 (setq string (replace-regexp-in-string "\\([\"\\]\\)" "\\\\\\&" string))
1827 (setq string (replace-regexp-in-string "\n" "\\n" string t t))
1828 (concat "\"" string "\""))
1829
1830 (defun gdb-input (command handler-function &optional trigger-name)
1831 "Send COMMAND to GDB via the MI interface.
1832 Run the function HANDLER-FUNCTION, with no arguments, once the command is
1833 complete. Do not send COMMAND to GDB if TRIGGER-NAME is non-nil and
1834 Emacs is still waiting for a reply from another command previously
1835 sent with the same TRIGGER-NAME."
1836 (when (or (not trigger-name)
1837 (not (gdb-pending-handler-p trigger-name)))
1838 (setq gdb-token-number (1+ gdb-token-number))
1839 (setq command (concat (number-to-string gdb-token-number) command))
1840
1841 (if gdb-enable-debug (push (list 'send-item command handler-function)
1842 gdb-debug-log))
1843
1844 (gdb-add-handler gdb-token-number handler-function trigger-name)
1845
1846 (if gdbmi-debug-mode (message "gdb-input: %s" command))
1847 (process-send-string (get-buffer-process gud-comint-buffer)
1848 (concat command "\n"))))
1849
1850 ;; NOFRAME is used for gud execution control commands
1851 (defun gdb-current-context-command (command)
1852 "Add --thread to gdb COMMAND when needed."
1853 (if (and gdb-thread-number
1854 gdb-supports-non-stop)
1855 (concat command " --thread " gdb-thread-number)
1856 command))
1857
1858 (defun gdb-current-context-buffer-name (name)
1859 "Add thread information and asterisks to string NAME.
1860
1861 If `gdb-thread-number' is nil, just wrap NAME in asterisks."
1862 (concat "*" name
1863 (if (local-variable-p 'gdb-thread-number)
1864 (format " (bound to thread %s)" gdb-thread-number)
1865 "")
1866 "*"))
1867
1868 (defun gdb-current-context-mode-name (mode)
1869 "Add thread information to MODE which is to be used as `mode-name'."
1870 (concat mode
1871 (if gdb-thread-number
1872 (format " [thread %s]" gdb-thread-number)
1873 "")))
1874 \f
1875
1876 (defcustom gud-gdb-command-name "gdb -i=mi"
1877 "Default command to execute an executable under the GDB debugger."
1878 :type 'string
1879 :group 'gdb)
1880
1881 (defun gdb-resync()
1882 (setq gud-running nil)
1883 (setq gdb-output-sink 'user)
1884 (gdb-remove-all-pending-triggers))
1885
1886 (defun gdb-update (&optional no-proc)
1887 "Update buffers showing status of debug session.
1888 If NO-PROC is non-nil, do not try to contact the GDB process."
1889 (when gdb-first-prompt
1890 (gdb-force-mode-line-update
1891 (propertize "initializing..." 'face font-lock-variable-name-face))
1892 (gdb-init-1)
1893 (setq gdb-first-prompt nil))
1894
1895 (unless no-proc
1896 (gdb-get-main-selected-frame))
1897
1898 ;; We may need to update gdb-threads-list so we can use
1899 (gdb-get-buffer-create 'gdb-threads-buffer)
1900 ;; gdb-break-list is maintained in breakpoints handler
1901 (gdb-get-buffer-create 'gdb-breakpoints-buffer)
1902
1903 (unless no-proc
1904 (gdb-emit-signal gdb-buf-publisher 'update))
1905
1906 (gdb-get-changed-registers)
1907 (when (and (boundp 'speedbar-frame) (frame-live-p speedbar-frame))
1908 (dolist (var gdb-var-list)
1909 (setcar (nthcdr 5 var) nil))
1910 (gdb-var-update)))
1911
1912 ;; gdb-setq-thread-number and gdb-update-gud-running are decoupled
1913 ;; because we may need to update current gud-running value without
1914 ;; changing current thread (see gdb-running)
1915 (defun gdb-setq-thread-number (number)
1916 "Set `gdb-thread-number' to NUMBER.
1917 Only this function must be used to change `gdb-thread-number'
1918 value to NUMBER, because `gud-running' and `gdb-frame-number'
1919 need to be updated appropriately when current thread changes."
1920 ;; GDB 6.8 and earlier always output thread-id="0" when stopping.
1921 (unless (string-equal number "0") (setq gdb-thread-number number))
1922 (setq gdb-frame-number "0")
1923 (gdb-update-gud-running))
1924
1925 (defun gdb-update-gud-running ()
1926 "Set `gud-running' according to the state of current thread.
1927
1928 `gdb-frame-number' is set to 0 if current thread is now stopped.
1929
1930 Note that when `gdb-gud-control-all-threads' is t, `gud-running'
1931 cannot be reliably used to determine whether or not execution
1932 control buttons should be shown in menu or toolbar. Use
1933 `gdb-running-threads-count' and `gdb-stopped-threads-count'
1934 instead.
1935
1936 For all-stop mode, thread information is unavailable while target
1937 is running."
1938 (let ((old-value gud-running))
1939 (setq gud-running
1940 (string= (bindat-get-field (gdb-current-buffer-thread) 'state)
1941 "running"))
1942 ;; Set frame number to "0" when _current_ threads stops.
1943 (when (and (gdb-current-buffer-thread)
1944 (not (eq gud-running old-value)))
1945 (setq gdb-frame-number "0"))))
1946
1947 (defun gdb-show-run-p ()
1948 "Return t if \"Run/continue\" should be shown on the toolbar."
1949 (or (not gdb-active-process)
1950 (and (or
1951 (not gdb-gud-control-all-threads)
1952 (not gdb-non-stop))
1953 (not gud-running))
1954 (and gdb-gud-control-all-threads
1955 (> gdb-stopped-threads-count 0))))
1956
1957 (defun gdb-show-stop-p ()
1958 "Return t if \"Stop\" should be shown on the toolbar."
1959 (or (and (or
1960 (not gdb-gud-control-all-threads)
1961 (not gdb-non-stop))
1962 gud-running)
1963 (and gdb-gud-control-all-threads
1964 (> gdb-running-threads-count 0))))
1965
1966 ;; GUD displays the selected GDB frame. This might might not be the current
1967 ;; GDB frame (after up, down etc). If no GDB frame is visible but the last
1968 ;; visited breakpoint is, use that window.
1969 (defun gdb-display-source-buffer (buffer)
1970 (let* ((last-window (if gud-last-last-frame
1971 (get-buffer-window
1972 (gud-find-file (car gud-last-last-frame)))))
1973 (source-window (or last-window
1974 (if (and gdb-source-window
1975 (window-live-p gdb-source-window))
1976 gdb-source-window))))
1977 (when source-window
1978 (setq gdb-source-window source-window)
1979 (set-window-buffer source-window buffer))
1980 source-window))
1981
1982
1983 (defun gdbmi-start-with (str offset match)
1984 "Return non-nil if string STR starts with MATCH, else returns nil.
1985 OFFSET is the position in STR at which the comparison takes place."
1986 (let ((match-length (length match))
1987 (str-length (- (length str) offset)))
1988 (when (>= str-length match-length)
1989 (string-equal match (substring str offset (+ offset match-length))))))
1990
1991 (defun gdbmi-same-start (str offset match)
1992 "Return non-nil if STR and MATCH are equal up to the end of either strings.
1993 OFFSET is the position in STR at which the comparison takes place."
1994 (let* ((str-length (- (length str) offset))
1995 (match-length (length match))
1996 (compare-length (min str-length match-length)))
1997 (when (> compare-length 0)
1998 (string-equal (substring str offset (+ offset compare-length))
1999 (substring match 0 compare-length)))))
2000
2001 (defun gdbmi-is-number (character)
2002 "Return non-nil if CHARACTER is a numerical character between 0 and 9."
2003 (and (>= character ?0)
2004 (<= character ?9)))
2005
2006
2007 (defvar-local gdbmi-bnf-state 'gdbmi-bnf-output
2008 "Current GDB/MI output parser state.
2009 The parser is placed in a different state when an incomplete data steam is
2010 received from GDB.
2011 This variable will preserve the state required to resume the parsing
2012 when more data arrives.")
2013
2014 (defvar-local gdbmi-bnf-offset 0
2015 "Offset in `gud-marker-acc' at which the parser is reading.
2016 This offset is used to be able to parse the GDB/MI message
2017 in-place, without the need of copying the string in a temporary buffer
2018 or discarding parsed tokens by substringing the message.")
2019
2020 (defun gdbmi-bnf-init ()
2021 "Initialize the GDB/MI message parser."
2022 (setq gdbmi-bnf-state 'gdbmi-bnf-output)
2023 (setq gdbmi-bnf-offset 0)
2024 (setq gud-marker-acc ""))
2025
2026
2027 (defun gdbmi-bnf-output ()
2028 "Implementation of the following GDB/MI output grammar rule:
2029
2030 output ==>
2031 ( out-of-band-record )* [ result-record ] gdb-prompt"
2032
2033 (gdbmi-bnf-skip-unrecognized)
2034 (while (gdbmi-bnf-out-of-band-record))
2035 (gdbmi-bnf-result-record)
2036 (gdbmi-bnf-gdb-prompt))
2037
2038
2039 (defun gdbmi-bnf-skip-unrecognized ()
2040 "Skip characters until is encounters the beginning of a valid record.
2041 Used as a protection mechanism in case something goes wrong when parsing
2042 a GDB/MI reply message."
2043 (let ((acc-length (length gud-marker-acc))
2044 (prefix-offset gdbmi-bnf-offset)
2045 (prompt "(gdb) \n"))
2046
2047 (while (and (< prefix-offset acc-length)
2048 (gdbmi-is-number (aref gud-marker-acc prefix-offset)))
2049 (setq prefix-offset (1+ prefix-offset)))
2050
2051 (if (and (< prefix-offset acc-length)
2052 (not (memq (aref gud-marker-acc prefix-offset)
2053 '(?^ ?* ?+ ?= ?~ ?@ ?&)))
2054 (not (gdbmi-same-start gud-marker-acc gdbmi-bnf-offset prompt))
2055 (string-match "\\([^^*+=~@&]+\\)" gud-marker-acc
2056 gdbmi-bnf-offset))
2057 (let ((unrecognized-str (match-string 0 gud-marker-acc)))
2058 (setq gdbmi-bnf-offset (match-end 0))
2059 (if gdbmi-debug-mode
2060 (message "gdbmi-bnf-skip-unrecognized: %s" unrecognized-str))
2061 (gdb-shell unrecognized-str)
2062 t))))
2063
2064
2065 (defun gdbmi-bnf-gdb-prompt ()
2066 "Implementation of the following GDB/MI output grammar rule:
2067 gdb-prompt ==>
2068 '(gdb)' nl
2069
2070 nl ==>
2071 CR | CR-LF"
2072
2073 (let ((prompt "(gdb) \n"))
2074 (when (gdbmi-start-with gud-marker-acc gdbmi-bnf-offset prompt)
2075 (if gdbmi-debug-mode (message "gdbmi-bnf-gdb-prompt: %s" prompt))
2076 (gdb-gdb prompt)
2077 (setq gdbmi-bnf-offset (+ gdbmi-bnf-offset (length prompt)))
2078
2079 ;; Returns non-nil to tell gud-gdbmi-marker-filter we've reached
2080 ;; the end of a GDB reply message.
2081 t)))
2082
2083
2084 (defun gdbmi-bnf-result-record ()
2085 "Implementation of the following GDB/MI output grammar rule:
2086
2087 result-record ==>
2088 [ token ] '^' result-class ( ',' result )* nl
2089
2090 token ==>
2091 any sequence of digits."
2092
2093 (gdbmi-bnf-result-and-async-record-impl))
2094
2095
2096 (defun gdbmi-bnf-out-of-band-record ()
2097 "Implementation of the following GDB/MI output grammar rule:
2098
2099 out-of-band-record ==>
2100 async-record | stream-record"
2101
2102 (or (gdbmi-bnf-async-record)
2103 (gdbmi-bnf-stream-record)))
2104
2105
2106 (defun gdbmi-bnf-async-record ()
2107 "Implementation of the following GDB/MI output grammar rules:
2108
2109 async-record ==>
2110 exec-async-output | status-async-output | notify-async-output
2111
2112 exec-async-output ==>
2113 [ token ] '*' async-output
2114
2115 status-async-output ==>
2116 [ token ] '+' async-output
2117
2118 notify-async-output ==>
2119 [ token ] '=' async-output
2120
2121 async-output ==>
2122 async-class ( ',' result )* nl"
2123
2124 (gdbmi-bnf-result-and-async-record-impl))
2125
2126
2127 (defun gdbmi-bnf-stream-record ()
2128 "Implement the following GDB/MI output grammar rule:
2129 stream-record ==>
2130 console-stream-output | target-stream-output | log-stream-output
2131
2132 console-stream-output ==>
2133 '~' c-string
2134
2135 target-stream-output ==>
2136 '@' c-string
2137
2138 log-stream-output ==>
2139 '&' c-string"
2140 (when (< gdbmi-bnf-offset (length gud-marker-acc))
2141 (if (and (member (aref gud-marker-acc gdbmi-bnf-offset) '(?~ ?@ ?&))
2142 (string-match (concat "\\([~@&]\\)\\(" gdb--string-regexp "\\)\n")
2143 gud-marker-acc
2144 gdbmi-bnf-offset))
2145 (let ((prefix (match-string 1 gud-marker-acc))
2146 (c-string (match-string 2 gud-marker-acc)))
2147
2148 (setq gdbmi-bnf-offset (match-end 0))
2149 (if gdbmi-debug-mode (message "gdbmi-bnf-stream-record: %s"
2150 (match-string 0 gud-marker-acc)))
2151
2152 (cond ((string-equal prefix "~")
2153 (gdbmi-bnf-console-stream-output c-string))
2154 ((string-equal prefix "@")
2155 (gdbmi-bnf-target-stream-output c-string))
2156 ((string-equal prefix "&")
2157 (gdbmi-bnf-log-stream-output c-string)))
2158 t))))
2159
2160 (defun gdbmi-bnf-console-stream-output (c-string)
2161 "Handler for the console-stream-output GDB/MI output grammar rule."
2162 (gdb-console c-string))
2163
2164 (defun gdbmi-bnf-target-stream-output (_c-string)
2165 "Handler for the target-stream-output GDB/MI output grammar rule."
2166 ;; Not currently used.
2167 )
2168
2169 (defun gdbmi-bnf-log-stream-output (c-string)
2170 "Handler for the log-stream-output GDB/MI output grammar rule."
2171 ;; Suppress "No registers." GDB 6.8 and earlier
2172 ;; duplicates MI error message on internal stream.
2173 ;; Don't print to GUD buffer.
2174 (if (not (string-equal (read c-string) "No registers.\n"))
2175 (gdb-internals c-string)))
2176
2177
2178 (defconst gdbmi-bnf-result-state-configs
2179 '(("^" . (("done" . (gdb-done . progressive))
2180 ("error" . (gdb-error . progressive))
2181 ("running" . (gdb-starting . atomic))))
2182 ("*" . (("stopped" . (gdb-stopped . atomic))
2183 ("running" . (gdb-running . atomic))))
2184 ("+" . ())
2185 ("=" . (("thread-created" . (gdb-thread-created . atomic))
2186 ("thread-selected" . (gdb-thread-selected . atomic))
2187 ("thread-existed" . (gdb-ignored-notification . atomic))
2188 ('default . (gdb-ignored-notification . atomic)))))
2189 "Alist of alists, mapping the type and class of message to a handler function.
2190 Handler functions are all flagged as either `progressive' or `atomic'.
2191 `progressive' handlers are capable of parsing incomplete messages.
2192 They can be called several time with new data chunk as they arrive from GDB.
2193 `progressive' handlers must have an extra argument that is set to a non-nil
2194 value when the message is complete.
2195
2196 Implement the following GDB/MI output grammar rule:
2197 result-class ==>
2198 'done' | 'running' | 'connected' | 'error' | 'exit'
2199
2200 async-class ==>
2201 'stopped' | others (where others will be added depending on the needs
2202 --this is still in development).")
2203
2204 (defun gdbmi-bnf-result-and-async-record-impl ()
2205 "Common implementation of the result-record and async-record rule.
2206 Both rules share the same syntax. Those records may be very large in size.
2207 For that reason, the \"result\" part of the record is parsed by
2208 `gdbmi-bnf-incomplete-record-result', which will keep
2209 receiving characters as they arrive from GDB until the record is complete."
2210 (let ((acc-length (length gud-marker-acc))
2211 (prefix-offset gdbmi-bnf-offset))
2212
2213 (while (and (< prefix-offset acc-length)
2214 (gdbmi-is-number (aref gud-marker-acc prefix-offset)))
2215 (setq prefix-offset (1+ prefix-offset)))
2216
2217 (if (and (< prefix-offset acc-length)
2218 (member (aref gud-marker-acc prefix-offset) '(?* ?+ ?= ?^))
2219 (string-match "\\([0-9]*\\)\\([*+=^]\\)\\(.+?\\)\\([,\n]\\)"
2220 gud-marker-acc gdbmi-bnf-offset))
2221
2222 (let ((token (match-string 1 gud-marker-acc))
2223 (prefix (match-string 2 gud-marker-acc))
2224 (class (match-string 3 gud-marker-acc))
2225 (complete (string-equal (match-string 4 gud-marker-acc) "\n"))
2226 class-alist
2227 class-command)
2228
2229 (setq gdbmi-bnf-offset (match-end 0))
2230 (if gdbmi-debug-mode (message "gdbmi-bnf-result-record: %s"
2231 (match-string 0 gud-marker-acc)))
2232
2233 (setq class-alist
2234 (cdr (assoc prefix gdbmi-bnf-result-state-configs)))
2235 (setq class-command (cdr (assoc class class-alist)))
2236 (if (null class-command)
2237 (setq class-command (cdr (assoc 'default class-alist))))
2238
2239 (if complete
2240 (if class-command
2241 (if (equal (cdr class-command) 'progressive)
2242 (funcall (car class-command) token "" complete)
2243 (funcall (car class-command) token "")))
2244 (setq gdbmi-bnf-state
2245 (lambda ()
2246 (gdbmi-bnf-incomplete-record-result token class-command)))
2247 (funcall gdbmi-bnf-state))
2248 t))))
2249
2250 (defun gdbmi-bnf-incomplete-record-result (token class-command)
2251 "State of the parser used to progressively parse a result-record or async-record
2252 rule from an incomplete data stream. The parser will stay in this state until
2253 the end of the current result or async record is reached."
2254 (when (< gdbmi-bnf-offset (length gud-marker-acc))
2255 ;; Search the data stream for the end of the current record:
2256 (let* ((newline-pos (string-match "\n" gud-marker-acc gdbmi-bnf-offset))
2257 (is-progressive (equal (cdr class-command) 'progressive))
2258 (is-complete (not (null newline-pos)))
2259 result-str)
2260
2261 (when gdbmi-debug-mode
2262 (message "gdbmi-bnf-incomplete-record-result: %s"
2263 (substring gud-marker-acc gdbmi-bnf-offset newline-pos)))
2264
2265 ;; Update the gdbmi-bnf-offset only if the current chunk of data can
2266 ;; be processed by the class-command handler:
2267 (when (or is-complete is-progressive)
2268 (setq result-str
2269 (substring gud-marker-acc gdbmi-bnf-offset newline-pos))
2270
2271 ;; Move gdbmi-bnf-offset past the end of the chunk.
2272 (setq gdbmi-bnf-offset (+ gdbmi-bnf-offset (length result-str)))
2273 (when newline-pos
2274 (setq gdbmi-bnf-offset (1+ gdbmi-bnf-offset))))
2275
2276 ;; Update the parsing state before invoking the handler in class-command
2277 ;; to make sure it's not left in an invalid state if the handler was
2278 ;; to generate an error.
2279 (if is-complete
2280 (setq gdbmi-bnf-state 'gdbmi-bnf-output))
2281
2282 (if class-command
2283 (if is-progressive
2284 (funcall (car class-command) token result-str is-complete)
2285 (if is-complete
2286 (funcall (car class-command) token result-str))))
2287
2288 (unless is-complete
2289 ;; Incomplete gdb response: abort parsing until we receive more data.
2290 (if gdbmi-debug-mode (message "gdbmi-bnf-incomplete-record-result, aborting: incomplete stream"))
2291 (throw 'gdbmi-incomplete-stream nil))
2292
2293 is-complete)))
2294
2295
2296 ; The following grammar rules are not yet implemented by this GDBMI-BNF parser.
2297 ; The handling of those rules is currently done by the handlers registered
2298 ; in gdbmi-bnf-result-state-configs
2299 ;
2300 ; result ==>
2301 ; variable "=" value
2302 ;
2303 ; variable ==>
2304 ; string
2305 ;
2306 ; value ==>
2307 ; const | tuple | list
2308 ;
2309 ; const ==>
2310 ; c-string
2311 ;
2312 ; tuple ==>
2313 ; "{}" | "{" result ( "," result )* "}"
2314 ;
2315 ; list ==>
2316 ; "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]"
2317
2318
2319 (defun gud-gdbmi-marker-filter (string)
2320 "Filter GDB/MI output."
2321
2322 ;; Record transactions if logging is enabled.
2323 (when gdb-enable-debug
2324 (push (cons 'recv string) gdb-debug-log)
2325 (if (and gdb-debug-log-max
2326 (> (length gdb-debug-log) gdb-debug-log-max))
2327 (setcdr (nthcdr (1- gdb-debug-log-max) gdb-debug-log) nil)))
2328
2329 ;; Recall the left over gud-marker-acc from last time.
2330 (setq gud-marker-acc (concat gud-marker-acc string))
2331
2332 ;; Start accumulating output for the GUD buffer.
2333 (setq gdb-filter-output "")
2334
2335 (let ((acc-length (length gud-marker-acc)))
2336 (catch 'gdbmi-incomplete-stream
2337 (while (and (< gdbmi-bnf-offset acc-length)
2338 (funcall gdbmi-bnf-state)))))
2339
2340 (when (/= gdbmi-bnf-offset 0)
2341 (setq gud-marker-acc (substring gud-marker-acc gdbmi-bnf-offset))
2342 (setq gdbmi-bnf-offset 0))
2343
2344 (when (and gdbmi-debug-mode (> (length gud-marker-acc) 0))
2345 (message "gud-gdbmi-marker-filter, unparsed string: %s" gud-marker-acc))
2346
2347 gdb-filter-output)
2348
2349 (defun gdb-gdb (_output-field))
2350
2351 (defun gdb-shell (output-field)
2352 (setq gdb-filter-output
2353 (concat output-field gdb-filter-output)))
2354
2355 (defun gdb-ignored-notification (_token _output-field))
2356
2357 ;; gdb-invalidate-threads is defined to accept 'update-threads signal
2358 (defun gdb-thread-created (_token _output-field))
2359 (defun gdb-thread-exited (_token output-field)
2360 "Handle =thread-exited async record.
2361 Unset `gdb-thread-number' if current thread exited and update threads list."
2362 (let* ((thread-id (bindat-get-field (gdb-json-string output-field) 'id)))
2363 (if (string= gdb-thread-number thread-id)
2364 (gdb-setq-thread-number nil))
2365 ;; When we continue current thread and it quickly exits,
2366 ;; the pending triggers in gdb-handler-list left after gdb-running
2367 ;; disallow us to properly call -thread-info without --thread option.
2368 ;; Thus we need to use gdb-wait-for-pending.
2369 (gdb-wait-for-pending
2370 (gdb-emit-signal gdb-buf-publisher 'update-threads))))
2371
2372 (defun gdb-thread-selected (_token output-field)
2373 "Handler for =thread-selected MI output record.
2374
2375 Sets `gdb-thread-number' to new id."
2376 (let* ((result (gdb-json-string output-field))
2377 (thread-id (bindat-get-field result 'id)))
2378 (gdb-setq-thread-number thread-id)
2379 ;; Typing `thread N` in GUD buffer makes GDB emit `^done` followed
2380 ;; by `=thread-selected` notification. `^done` causes `gdb-update`
2381 ;; as usually. Things happen to fast and second call (from
2382 ;; gdb-thread-selected handler) gets cut off by our beloved
2383 ;; pending triggers.
2384 ;; Solution is `gdb-wait-for-pending' macro: it guarantees that its
2385 ;; body will get executed when `gdb-handler-list' if free of
2386 ;; pending triggers.
2387 (gdb-wait-for-pending
2388 (gdb-update))))
2389
2390 (defun gdb-running (_token output-field)
2391 (let* ((thread-id
2392 (bindat-get-field (gdb-json-string output-field) 'thread-id)))
2393 ;; We reset gdb-frame-number to nil if current thread has gone
2394 ;; running. This can't be done in gdb-thread-list-handler-custom
2395 ;; because we need correct gdb-frame-number by the time
2396 ;; -thread-info command is sent.
2397 (when (or (string-equal thread-id "all")
2398 (string-equal thread-id gdb-thread-number))
2399 (setq gdb-frame-number nil)))
2400 (setq gdb-inferior-status "running")
2401 (gdb-force-mode-line-update
2402 (propertize gdb-inferior-status 'face font-lock-type-face))
2403 (when (not gdb-non-stop)
2404 (setq gud-running t))
2405 (setq gdb-active-process t))
2406
2407 (defun gdb-starting (_output-field _result)
2408 ;; CLI commands don't emit ^running at the moment so use gdb-running too.
2409 (setq gdb-inferior-status "running")
2410 (gdb-force-mode-line-update
2411 (propertize gdb-inferior-status 'face font-lock-type-face))
2412 (setq gdb-active-process t)
2413 (setq gud-running t))
2414
2415 ;; -break-insert -t didn't give a reason before gdb 6.9
2416
2417 (defun gdb-stopped (_token output-field)
2418 "Given the contents of *stopped MI async record, select new
2419 current thread and update GDB buffers."
2420 ;; Reason is available with target-async only
2421 (let* ((result (gdb-json-string output-field))
2422 (reason (bindat-get-field result 'reason))
2423 (thread-id (bindat-get-field result 'thread-id)))
2424
2425 ;; -data-list-register-names needs to be issued for any stopped
2426 ;; thread
2427 (when (not gdb-register-names)
2428 (gdb-input (concat "-data-list-register-names"
2429 (if gdb-supports-non-stop
2430 (concat " --thread " thread-id)))
2431 'gdb-register-names-handler))
2432
2433 ;; Don't set gud-last-frame here as it's currently done in
2434 ;; gdb-frame-handler because synchronous GDB doesn't give these fields
2435 ;; with CLI.
2436 ;;(when file
2437 ;; (setq
2438 ;; ;; Extract the frame position from the marker.
2439 ;; gud-last-frame (cons file
2440 ;; (string-to-number
2441 ;; (match-string 6 gud-marker-acc)))))
2442
2443 (setq gdb-inferior-status (or reason "unknown"))
2444 (gdb-force-mode-line-update
2445 (propertize gdb-inferior-status 'face font-lock-warning-face))
2446 (if (string-equal reason "exited-normally")
2447 (setq gdb-active-process nil))
2448
2449 ;; Select new current thread.
2450
2451 ;; Don't switch if we have no reasons selected
2452 (when gdb-switch-reasons
2453 ;; Switch from another stopped thread only if we have
2454 ;; gdb-switch-when-another-stopped:
2455 (when (or gdb-switch-when-another-stopped
2456 (not (string= "stopped"
2457 (bindat-get-field (gdb-current-buffer-thread) 'state))))
2458 ;; Switch if current reason has been selected or we have no
2459 ;; reasons
2460 (if (or (eq gdb-switch-reasons t)
2461 (member reason gdb-switch-reasons))
2462 (when (not (string-equal gdb-thread-number thread-id))
2463 (message "Switched to thread %s" thread-id)
2464 (gdb-setq-thread-number thread-id))
2465 (message "Thread %s stopped" thread-id))))
2466
2467 ;; Print "(gdb)" to GUD console
2468 (when gdb-first-done-or-error
2469 (setq gdb-filter-output (concat gdb-filter-output gdb-prompt-name)))
2470
2471 ;; In non-stop, we update information as soon as another thread gets
2472 ;; stopped
2473 (when (or gdb-first-done-or-error
2474 gdb-non-stop)
2475 ;; In all-stop this updates gud-running properly as well.
2476 (gdb-update)
2477 (setq gdb-first-done-or-error nil))
2478 (run-hook-with-args 'gdb-stopped-functions result)))
2479
2480 ;; Remove the trimmings from log stream containing debugging messages
2481 ;; being produced by GDB's internals, use warning face and send to GUD
2482 ;; buffer.
2483 (defun gdb-internals (output-field)
2484 (setq gdb-filter-output
2485 (gdb-concat-output
2486 gdb-filter-output
2487 (if (string= output-field "\"\\n\"")
2488 ""
2489 (let ((error-message
2490 (read output-field)))
2491 (put-text-property
2492 0 (length error-message)
2493 'face font-lock-warning-face
2494 error-message)
2495 error-message)))))
2496
2497 ;; Remove the trimmings from the console stream and send to GUD buffer
2498 ;; (frontend MI commands should not print to this stream)
2499 (defun gdb-console (output-field)
2500 (setq gdb-filter-output
2501 (gdb-concat-output gdb-filter-output (read output-field))))
2502
2503 (defun gdb-done (token-number output-field is-complete)
2504 (gdb-done-or-error token-number 'done output-field is-complete))
2505
2506 (defun gdb-error (token-number output-field is-complete)
2507 (gdb-done-or-error token-number 'error output-field is-complete))
2508
2509 (defun gdb-done-or-error (token-number type output-field is-complete)
2510 (if (string-equal token-number "")
2511 ;; Output from command entered by user
2512 (progn
2513 (setq gdb-output-sink 'user)
2514 (setq token-number nil)
2515 ;; MI error - send to minibuffer
2516 (when (eq type 'error)
2517 ;; Skip "msg=" from `output-field'
2518 (message "%s" (read (substring output-field 4)))
2519 ;; Don't send to the console twice. (If it is a console error
2520 ;; it is also in the console stream.)
2521 (setq output-field nil)))
2522 ;; Output from command from frontend.
2523 (setq gdb-output-sink 'emacs))
2524
2525 ;; The process may already be dead (e.g. C-d at the gdb prompt).
2526 (let* ((proc (get-buffer-process gud-comint-buffer))
2527 (no-proc (or (null proc)
2528 (memq (process-status proc) '(exit signal)))))
2529
2530 (when (and is-complete gdb-first-done-or-error)
2531 (unless (or token-number gud-running no-proc)
2532 (setq gdb-filter-output (concat gdb-filter-output gdb-prompt-name)))
2533 (gdb-update no-proc)
2534 (setq gdb-first-done-or-error nil))
2535
2536 (setq gdb-filter-output
2537 (gdb-concat-output gdb-filter-output output-field))
2538
2539 ;; We are done concatenating to the output sink. Restore it to user sink:
2540 (setq gdb-output-sink 'user)
2541
2542 (when (and token-number is-complete)
2543 (with-current-buffer
2544 (gdb-get-buffer-create 'gdb-partial-output-buffer)
2545 (gdb-handle-reply (string-to-number token-number))))
2546
2547 (when is-complete
2548 (gdb-clear-partial-output))))
2549
2550 (defun gdb-concat-output (so-far new)
2551 (cond
2552 ((eq gdb-output-sink 'user) (concat so-far new))
2553 ((eq gdb-output-sink 'emacs)
2554 (gdb-append-to-partial-output new)
2555 so-far)))
2556
2557 (defun gdb-append-to-partial-output (string)
2558 (with-current-buffer (gdb-get-buffer-create 'gdb-partial-output-buffer)
2559 (goto-char (point-max))
2560 (insert string)))
2561
2562 (defun gdb-clear-partial-output ()
2563 (with-current-buffer (gdb-get-buffer-create 'gdb-partial-output-buffer)
2564 (erase-buffer)))
2565
2566 (defun gdb-jsonify-buffer (&optional fix-key fix-list)
2567 "Prepare GDB/MI output in current buffer for parsing with `json-read'.
2568
2569 Field names are wrapped in double quotes and equal signs are
2570 replaced with semicolons.
2571
2572 If FIX-KEY is non-nil, strip all \"FIX-KEY=\" occurrences from
2573 partial output. This is used to get rid of useless keys in lists
2574 in MI messages, e.g.: [key=.., key=..]. -stack-list-frames and
2575 -break-info are examples of MI commands which issue such
2576 responses.
2577
2578 If FIX-LIST is non-nil, \"FIX-LIST={..}\" is replaced with
2579 \"FIX-LIST=[..]\" prior to parsing. This is used to fix broken
2580 -break-info output when it contains breakpoint script field
2581 incompatible with GDB/MI output syntax."
2582 (save-excursion
2583 (goto-char (point-min))
2584 (when fix-key
2585 (save-excursion
2586 (while (re-search-forward (concat "[\\[,]\\(" fix-key "=\\)") nil t)
2587 (replace-match "" nil nil nil 1))))
2588 (when fix-list
2589 (save-excursion
2590 ;; Find positions of braces which enclose broken list
2591 (while (re-search-forward (concat fix-list "={\"") nil t)
2592 (let ((p1 (goto-char (- (point) 2)))
2593 (p2 (progn (forward-sexp)
2594 (1- (point)))))
2595 ;; Replace braces with brackets
2596 (save-excursion
2597 (goto-char p1)
2598 (delete-char 1)
2599 (insert "[")
2600 (goto-char p2)
2601 (delete-char 1)
2602 (insert "]"))))))
2603 (goto-char (point-min))
2604 (insert "{")
2605 (let ((re (concat "\\([[:alnum:]-_]+\\)=\\({\\|\\[\\|\"\"\\|"
2606 gdb--string-regexp "\\)")))
2607 (while (re-search-forward re nil t)
2608 (replace-match "\"\\1\":\\2" nil nil)))
2609 (goto-char (point-max))
2610 (insert "}")))
2611
2612 (defun gdb-json-read-buffer (&optional fix-key fix-list)
2613 "Prepare and parse GDB/MI output in current buffer with `json-read'.
2614
2615 FIX-KEY and FIX-LIST work as in `gdb-jsonify-buffer'."
2616 (gdb-jsonify-buffer fix-key fix-list)
2617 (save-excursion
2618 (goto-char (point-min))
2619 (let ((json-array-type 'list))
2620 (json-read))))
2621
2622 (defun gdb-json-string (string &optional fix-key fix-list)
2623 "Prepare and parse STRING containing GDB/MI output with `json-read'.
2624
2625 FIX-KEY and FIX-LIST work as in `gdb-jsonify-buffer'."
2626 (with-temp-buffer
2627 (insert string)
2628 (gdb-json-read-buffer fix-key fix-list)))
2629
2630 (defun gdb-json-partial-output (&optional fix-key fix-list)
2631 "Prepare and parse gdb-partial-output-buffer with `json-read'.
2632
2633 FIX-KEY and FIX-KEY work as in `gdb-jsonify-buffer'."
2634 (with-current-buffer (gdb-get-buffer-create 'gdb-partial-output-buffer)
2635 (gdb-json-read-buffer fix-key fix-list)))
2636
2637 (defun gdb-line-posns (line)
2638 "Return a pair of LINE beginning and end positions."
2639 (let ((offset (1+ (- line (line-number-at-pos)))))
2640 (cons
2641 (line-beginning-position offset)
2642 (line-end-position offset))))
2643
2644 (defmacro gdb-mark-line (line variable)
2645 "Set VARIABLE marker to point at beginning of LINE.
2646
2647 If current window has no fringes, inverse colors on LINE.
2648
2649 Return position where LINE begins."
2650 `(save-excursion
2651 (let* ((posns (gdb-line-posns ,line))
2652 (start-posn (car posns))
2653 (end-posn (cdr posns)))
2654 (set-marker ,variable (copy-marker start-posn))
2655 (when (not (> (car (window-fringes)) 0))
2656 (put-text-property start-posn end-posn
2657 'font-lock-face '(:inverse-video t)))
2658 start-posn)))
2659
2660 (defun gdb-pad-string (string padding)
2661 (format (concat "%" (number-to-string padding) "s") string))
2662
2663 ;; gdb-table struct is a way to programmatically construct simple
2664 ;; tables. It help to reliably align columns of data in GDB buffers
2665 ;; and provides
2666 (cl-defstruct gdb-table
2667 (column-sizes nil)
2668 (rows nil)
2669 (row-properties nil)
2670 (right-align nil))
2671
2672 (defun gdb-table-add-row (table row &optional properties)
2673 "Add ROW of string to TABLE and recalculate column sizes.
2674
2675 When non-nil, PROPERTIES will be added to the whole row when
2676 calling `gdb-table-string'."
2677 (let ((rows (gdb-table-rows table))
2678 (row-properties (gdb-table-row-properties table))
2679 (column-sizes (gdb-table-column-sizes table))
2680 (right-align (gdb-table-right-align table)))
2681 (when (not column-sizes)
2682 (setf (gdb-table-column-sizes table)
2683 (make-list (length row) 0)))
2684 (setf (gdb-table-rows table)
2685 (append rows (list row)))
2686 (setf (gdb-table-row-properties table)
2687 (append row-properties (list properties)))
2688 (setf (gdb-table-column-sizes table)
2689 (cl-mapcar (lambda (x s)
2690 (let ((new-x
2691 (max (abs x) (string-width (or s "")))))
2692 (if right-align new-x (- new-x))))
2693 (gdb-table-column-sizes table)
2694 row))
2695 ;; Avoid trailing whitespace at eol
2696 (if (not (gdb-table-right-align table))
2697 (setcar (last (gdb-table-column-sizes table)) 0))))
2698
2699 (defun gdb-table-string (table &optional sep)
2700 "Return TABLE as a string with columns separated with SEP."
2701 (let ((column-sizes (gdb-table-column-sizes table)))
2702 (mapconcat
2703 'identity
2704 (cl-mapcar
2705 (lambda (row properties)
2706 (apply 'propertize
2707 (mapconcat 'identity
2708 (cl-mapcar (lambda (s x) (gdb-pad-string s x))
2709 row column-sizes)
2710 sep)
2711 properties))
2712 (gdb-table-rows table)
2713 (gdb-table-row-properties table))
2714 "\n")))
2715
2716 ;; bindat-get-field goes deep, gdb-get-many-fields goes wide
2717 (defun gdb-get-many-fields (struct &rest fields)
2718 "Return a list of FIELDS values from STRUCT."
2719 (let ((values))
2720 (dolist (field fields)
2721 (push (bindat-get-field struct field) values))
2722 (nreverse values)))
2723
2724 (defmacro def-gdb-auto-update-trigger (trigger-name gdb-command
2725 handler-name
2726 &optional signal-list)
2727 "Define a trigger TRIGGER-NAME which sends GDB-COMMAND and sets
2728 HANDLER-NAME as its handler. HANDLER-NAME is bound to current
2729 buffer with `gdb-bind-function-to-buffer'.
2730
2731 If SIGNAL-LIST is non-nil, GDB-COMMAND is sent only when the
2732 defined trigger is called with an argument from SIGNAL-LIST. It's
2733 not recommended to define triggers with empty SIGNAL-LIST.
2734 Normally triggers should respond at least to 'update signal.
2735
2736 Normally the trigger defined by this command must be called from
2737 the buffer where HANDLER-NAME must work. This should be done so
2738 that buffer-local thread number may be used in GDB-COMMAND (by
2739 calling `gdb-current-context-command').
2740 `gdb-bind-function-to-buffer' is used to achieve this, see
2741 `gdb-get-buffer-create'.
2742
2743 Triggers defined by this command are meant to be used as a
2744 trigger argument when describing buffer types with
2745 `gdb-set-buffer-rules'."
2746 `(defun ,trigger-name (&optional signal)
2747 (when
2748 (or (not ,signal-list)
2749 (memq signal ,signal-list))
2750 (gdb-input ,gdb-command
2751 (gdb-bind-function-to-buffer ',handler-name (current-buffer))
2752 (cons (current-buffer) ',trigger-name)))))
2753
2754 ;; Used by disassembly buffer only, the rest use
2755 ;; def-gdb-trigger-and-handler
2756 (defmacro def-gdb-auto-update-handler (handler-name custom-defun
2757 &optional nopreserve)
2758 "Define a handler HANDLER-NAME calling CUSTOM-DEFUN.
2759
2760 Handlers are normally called from the buffers they put output in.
2761
2762 Erase current buffer and evaluate CUSTOM-DEFUN.
2763 Then call `gdb-update-buffer-name'.
2764
2765 If NOPRESERVE is non-nil, window point is not restored after CUSTOM-DEFUN."
2766 `(defun ,handler-name ()
2767 (let* ((inhibit-read-only t)
2768 ,@(unless nopreserve
2769 '((window (get-buffer-window (current-buffer) 0))
2770 (start (window-start window))
2771 (p (window-point window)))))
2772 (erase-buffer)
2773 (,custom-defun)
2774 (gdb-update-buffer-name)
2775 ,@(when (not nopreserve)
2776 '((set-window-start window start)
2777 (set-window-point window p))))))
2778
2779 (defmacro def-gdb-trigger-and-handler (trigger-name gdb-command
2780 handler-name custom-defun
2781 &optional signal-list)
2782 "Define trigger and handler.
2783
2784 TRIGGER-NAME trigger is defined to send GDB-COMMAND.
2785 See `def-gdb-auto-update-trigger'.
2786
2787 HANDLER-NAME handler uses customization of CUSTOM-DEFUN.
2788 See `def-gdb-auto-update-handler'."
2789 `(progn
2790 (def-gdb-auto-update-trigger ,trigger-name
2791 ,gdb-command
2792 ,handler-name ,signal-list)
2793 (def-gdb-auto-update-handler ,handler-name
2794 ,custom-defun)))
2795
2796 \f
2797
2798 ;; Breakpoint buffer : This displays the output of `-break-list'.
2799 (def-gdb-trigger-and-handler
2800 gdb-invalidate-breakpoints "-break-list"
2801 gdb-breakpoints-list-handler gdb-breakpoints-list-handler-custom
2802 '(start update))
2803
2804 (gdb-set-buffer-rules
2805 'gdb-breakpoints-buffer
2806 'gdb-breakpoints-buffer-name
2807 'gdb-breakpoints-mode
2808 'gdb-invalidate-breakpoints)
2809
2810 (defun gdb-breakpoints-list-handler-custom ()
2811 (let ((breakpoints-list (bindat-get-field
2812 (gdb-json-partial-output "bkpt" "script")
2813 'BreakpointTable 'body))
2814 (table (make-gdb-table)))
2815 (setq gdb-breakpoints-list nil)
2816 (gdb-table-add-row table '("Num" "Type" "Disp" "Enb" "Addr" "Hits" "What"))
2817 (dolist (breakpoint breakpoints-list)
2818 (add-to-list 'gdb-breakpoints-list
2819 (cons (bindat-get-field breakpoint 'number)
2820 breakpoint))
2821 (let ((at (bindat-get-field breakpoint 'at))
2822 (pending (bindat-get-field breakpoint 'pending))
2823 (func (bindat-get-field breakpoint 'func))
2824 (type (bindat-get-field breakpoint 'type)))
2825 (gdb-table-add-row table
2826 (list
2827 (bindat-get-field breakpoint 'number)
2828 (or type "")
2829 (or (bindat-get-field breakpoint 'disp) "")
2830 (let ((flag (bindat-get-field breakpoint 'enabled)))
2831 (if (string-equal flag "y")
2832 (eval-when-compile
2833 (propertize "y" 'font-lock-face
2834 font-lock-warning-face))
2835 (eval-when-compile
2836 (propertize "n" 'font-lock-face
2837 font-lock-comment-face))))
2838 (bindat-get-field breakpoint 'addr)
2839 (or (bindat-get-field breakpoint 'times) "")
2840 (if (and type (string-match ".*watchpoint" type))
2841 (bindat-get-field breakpoint 'what)
2842 (or pending at
2843 (concat "in "
2844 (propertize (or func "unknown")
2845 'font-lock-face font-lock-function-name-face)
2846 (gdb-frame-location breakpoint)))))
2847 ;; Add clickable properties only for breakpoints with file:line
2848 ;; information
2849 (append (list 'gdb-breakpoint breakpoint)
2850 (when func '(help-echo "mouse-2, RET: visit breakpoint"
2851 mouse-face highlight))))))
2852 (insert (gdb-table-string table " "))
2853 (gdb-place-breakpoints)))
2854
2855 ;; Put breakpoint icons in relevant margins (even those set in the GUD buffer).
2856 (defun gdb-place-breakpoints ()
2857 ;; Remove all breakpoint-icons in source buffers but not assembler buffer.
2858 (dolist (buffer (buffer-list))
2859 (with-current-buffer buffer
2860 (if (and (eq gud-minor-mode 'gdbmi)
2861 (not (string-match "\\` ?\\*.+\\*\\'" (buffer-name))))
2862 (gdb-remove-breakpoint-icons (point-min) (point-max)))))
2863 (dolist (breakpoint gdb-breakpoints-list)
2864 (let* ((breakpoint (cdr breakpoint)) ; gdb-breakpoints-list is
2865 ; an associative list
2866 (line (bindat-get-field breakpoint 'line)))
2867 (when line
2868 (let ((file (bindat-get-field breakpoint 'fullname))
2869 (flag (bindat-get-field breakpoint 'enabled))
2870 (bptno (bindat-get-field breakpoint 'number)))
2871 (unless (and file (file-exists-p file))
2872 (setq file (cdr (assoc bptno gdb-location-alist))))
2873 (if (or (null file)
2874 (string-equal file "File not found"))
2875 ;; If the full filename is not recorded in the
2876 ;; breakpoint structure or in `gdb-location-alist', use
2877 ;; -file-list-exec-source-file to extract it.
2878 (when (setq file (bindat-get-field breakpoint 'file))
2879 (gdb-input (concat "list " file ":1") 'ignore)
2880 (gdb-input "-file-list-exec-source-file"
2881 `(lambda () (gdb-get-location
2882 ,bptno ,line ,flag))))
2883 (with-current-buffer (find-file-noselect file 'nowarn)
2884 (gdb-init-buffer)
2885 ;; Only want one breakpoint icon at each location.
2886 (gdb-put-breakpoint-icon (string-equal flag "y") bptno
2887 (string-to-number line)))))))))
2888
2889 (defconst gdb-source-file-regexp
2890 (concat "fullname=\\(" gdb--string-regexp "\\)"))
2891
2892 (defun gdb-get-location (bptno line flag)
2893 "Find the directory containing the relevant source file.
2894 Put in buffer and place breakpoint icon."
2895 (goto-char (point-min))
2896 (catch 'file-not-found
2897 (if (re-search-forward gdb-source-file-regexp nil t)
2898 (delete (cons bptno "File not found") gdb-location-alist)
2899 ;; FIXME: Why/how do we use (match-string 1) when the search failed?
2900 (push (cons bptno (match-string 1)) gdb-location-alist)
2901 (gdb-resync)
2902 (unless (assoc bptno gdb-location-alist)
2903 (push (cons bptno "File not found") gdb-location-alist)
2904 (message-box "Cannot find source file for breakpoint location.
2905 Add directory to search path for source files using the GDB command, dir."))
2906 (throw 'file-not-found nil))
2907 (with-current-buffer (find-file-noselect (match-string 1))
2908 (gdb-init-buffer)
2909 ;; only want one breakpoint icon at each location
2910 (gdb-put-breakpoint-icon (eq flag ?y) bptno (string-to-number line)))))
2911
2912 (add-hook 'find-file-hook 'gdb-find-file-hook)
2913
2914 (defun gdb-find-file-hook ()
2915 "Set up buffer for debugging if file is part of the source code
2916 of the current session."
2917 (if (and (buffer-name gud-comint-buffer)
2918 ;; in case gud or gdb-ui is just loaded
2919 gud-comint-buffer
2920 (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2921 'gdbmi))
2922 (if (member buffer-file-name gdb-source-file-list)
2923 (with-current-buffer (find-buffer-visiting buffer-file-name)
2924 (gdb-init-buffer)))))
2925
2926 (declare-function gud-remove "gdb-mi" t t) ; gud-def
2927 (declare-function gud-break "gdb-mi" t t) ; gud-def
2928 (declare-function fringe-bitmaps-at-pos "fringe.c" (&optional pos window))
2929
2930 (defun gdb-mouse-set-clear-breakpoint (event)
2931 "Set/clear breakpoint in left fringe/margin at mouse click.
2932 If not in a source or disassembly buffer just set point."
2933 (interactive "e")
2934 (mouse-minibuffer-check event)
2935 (let ((posn (event-end event)))
2936 (with-selected-window (posn-window posn)
2937 (if (or (buffer-file-name) (derived-mode-p 'gdb-disassembly-mode))
2938 (if (numberp (posn-point posn))
2939 (save-excursion
2940 (goto-char (posn-point posn))
2941 (if (or (posn-object posn)
2942 (eq (car (fringe-bitmaps-at-pos (posn-point posn)))
2943 'breakpoint))
2944 (gud-remove nil)
2945 (gud-break nil)))))
2946 (posn-set-point posn))))
2947
2948 (defun gdb-mouse-toggle-breakpoint-margin (event)
2949 "Enable/disable breakpoint in left margin with mouse click."
2950 (interactive "e")
2951 (mouse-minibuffer-check event)
2952 (let ((posn (event-end event)))
2953 (if (numberp (posn-point posn))
2954 (with-selected-window (posn-window posn)
2955 (save-excursion
2956 (goto-char (posn-point posn))
2957 (if (posn-object posn)
2958 (gud-basic-call
2959 (let ((bptno (get-text-property
2960 0 'gdb-bptno (car (posn-string posn)))))
2961 (concat
2962 (if (get-text-property
2963 0 'gdb-enabled (car (posn-string posn)))
2964 "-break-disable "
2965 "-break-enable ")
2966 bptno)))))))))
2967
2968 (defun gdb-mouse-toggle-breakpoint-fringe (event)
2969 "Enable/disable breakpoint in left fringe with mouse click."
2970 (interactive "e")
2971 (mouse-minibuffer-check event)
2972 (let* ((posn (event-end event))
2973 (pos (posn-point posn))
2974 obj)
2975 (when (numberp pos)
2976 (with-selected-window (posn-window posn)
2977 (with-current-buffer (window-buffer)
2978 (goto-char pos)
2979 (dolist (overlay (overlays-in pos pos))
2980 (when (overlay-get overlay 'put-break)
2981 (setq obj (overlay-get overlay 'before-string))))
2982 (when (stringp obj)
2983 (gud-basic-call
2984 (concat
2985 (if (get-text-property 0 'gdb-enabled obj)
2986 "-break-disable "
2987 "-break-enable ")
2988 (get-text-property 0 'gdb-bptno obj)))))))))
2989
2990 (defun gdb-breakpoints-buffer-name ()
2991 (concat "*breakpoints of " (gdb-get-target-string) "*"))
2992
2993 (defun gdb-display-breakpoints-buffer (&optional thread)
2994 "Display GDB breakpoints."
2995 (interactive)
2996 (gdb-display-buffer (gdb-get-buffer-create 'gdb-breakpoints-buffer thread)))
2997
2998 (defun gdb-frame-breakpoints-buffer (&optional thread)
2999 "Display GDB breakpoints in another frame."
3000 (interactive)
3001 (display-buffer (gdb-get-buffer-create 'gdb-breakpoints-buffer thread)
3002 gdb-display-buffer-other-frame-action))
3003
3004 (defvar gdb-breakpoints-mode-map
3005 (let ((map (make-sparse-keymap))
3006 (menu (make-sparse-keymap "Breakpoints")))
3007 (define-key menu [quit] '("Quit" . gdb-delete-frame-or-window))
3008 (define-key menu [goto] '("Goto" . gdb-goto-breakpoint))
3009 (define-key menu [delete] '("Delete" . gdb-delete-breakpoint))
3010 (define-key menu [toggle] '("Toggle" . gdb-toggle-breakpoint))
3011 (suppress-keymap map)
3012 (define-key map [menu-bar breakpoints] (cons "Breakpoints" menu))
3013 (define-key map " " 'gdb-toggle-breakpoint)
3014 (define-key map "D" 'gdb-delete-breakpoint)
3015 ;; Don't bind "q" to kill-this-buffer as we need it for breakpoint icons.
3016 (define-key map "q" 'gdb-delete-frame-or-window)
3017 (define-key map "\r" 'gdb-goto-breakpoint)
3018 (define-key map "\t" (lambda ()
3019 (interactive)
3020 (gdb-set-window-buffer
3021 (gdb-get-buffer-create 'gdb-threads-buffer) t)))
3022 (define-key map [mouse-2] 'gdb-goto-breakpoint)
3023 (define-key map [follow-link] 'mouse-face)
3024 map))
3025
3026 (defun gdb-delete-frame-or-window ()
3027 "Delete frame if there is only one window. Otherwise delete the window."
3028 (interactive)
3029 (if (one-window-p) (delete-frame)
3030 (delete-window)))
3031
3032 ;;from make-mode-line-mouse-map
3033 (defun gdb-make-header-line-mouse-map (mouse function) "\
3034 Return a keymap with single entry for mouse key MOUSE on the header line.
3035 MOUSE is defined to run function FUNCTION with no args in the buffer
3036 corresponding to the mode line clicked."
3037 (let ((map (make-sparse-keymap)))
3038 (define-key map (vector 'header-line mouse) function)
3039 (define-key map (vector 'header-line 'down-mouse-1) 'ignore)
3040 map))
3041
3042 (defmacro gdb-propertize-header (name buffer help-echo mouse-face face)
3043 `(propertize ,name
3044 'help-echo ,help-echo
3045 'mouse-face ',mouse-face
3046 'face ',face
3047 'local-map
3048 (gdb-make-header-line-mouse-map
3049 'mouse-1
3050 (lambda (event) (interactive "e")
3051 (save-selected-window
3052 (select-window (posn-window (event-start event)))
3053 (gdb-set-window-buffer
3054 (gdb-get-buffer-create ',buffer) t) )))))
3055
3056 \f
3057 ;; uses "-thread-info". Needs GDB 7.0 onwards.
3058 ;;; Threads view
3059
3060 (defun gdb-threads-buffer-name ()
3061 (concat "*threads of " (gdb-get-target-string) "*"))
3062
3063 (defun gdb-display-threads-buffer (&optional thread)
3064 "Display GDB threads."
3065 (interactive)
3066 (gdb-display-buffer (gdb-get-buffer-create 'gdb-threads-buffer thread)))
3067
3068 (defun gdb-frame-threads-buffer (&optional thread)
3069 "Display GDB threads in another frame."
3070 (interactive)
3071 (display-buffer (gdb-get-buffer-create 'gdb-threads-buffer thread)
3072 gdb-display-buffer-other-frame-action))
3073
3074 (def-gdb-trigger-and-handler
3075 gdb-invalidate-threads (gdb-current-context-command "-thread-info")
3076 gdb-thread-list-handler gdb-thread-list-handler-custom
3077 '(start update update-threads))
3078
3079 (gdb-set-buffer-rules
3080 'gdb-threads-buffer
3081 'gdb-threads-buffer-name
3082 'gdb-threads-mode
3083 'gdb-invalidate-threads)
3084
3085 (defvar gdb-threads-font-lock-keywords
3086 '(("in \\([^ ]+\\)" (1 font-lock-function-name-face))
3087 (" \\(stopped\\)" (1 font-lock-warning-face))
3088 (" \\(running\\)" (1 font-lock-string-face))
3089 ("\\(\\(\\sw\\|[_.]\\)+\\)=" (1 font-lock-variable-name-face)))
3090 "Font lock keywords used in `gdb-threads-mode'.")
3091
3092 (defvar gdb-threads-mode-map
3093 (let ((map (make-sparse-keymap)))
3094 (define-key map "\r" 'gdb-select-thread)
3095 (define-key map "f" 'gdb-display-stack-for-thread)
3096 (define-key map "F" 'gdb-frame-stack-for-thread)
3097 (define-key map "l" 'gdb-display-locals-for-thread)
3098 (define-key map "L" 'gdb-frame-locals-for-thread)
3099 (define-key map "r" 'gdb-display-registers-for-thread)
3100 (define-key map "R" 'gdb-frame-registers-for-thread)
3101 (define-key map "d" 'gdb-display-disassembly-for-thread)
3102 (define-key map "D" 'gdb-frame-disassembly-for-thread)
3103 (define-key map "i" 'gdb-interrupt-thread)
3104 (define-key map "c" 'gdb-continue-thread)
3105 (define-key map "s" 'gdb-step-thread)
3106 (define-key map "\t"
3107 (lambda ()
3108 (interactive)
3109 (gdb-set-window-buffer
3110 (gdb-get-buffer-create 'gdb-breakpoints-buffer) t)))
3111 (define-key map [mouse-2] 'gdb-select-thread)
3112 (define-key map [follow-link] 'mouse-face)
3113 map))
3114
3115 (defvar gdb-threads-header
3116 (list
3117 (gdb-propertize-header
3118 "Breakpoints" gdb-breakpoints-buffer
3119 "mouse-1: select" mode-line-highlight mode-line-inactive)
3120 " "
3121 (gdb-propertize-header "Threads" gdb-threads-buffer
3122 nil nil mode-line)))
3123
3124 (define-derived-mode gdb-threads-mode gdb-parent-mode "Threads"
3125 "Major mode for GDB threads."
3126 (setq gdb-thread-position (make-marker))
3127 (add-to-list 'overlay-arrow-variable-list 'gdb-thread-position)
3128 (setq header-line-format gdb-threads-header)
3129 (set (make-local-variable 'font-lock-defaults)
3130 '(gdb-threads-font-lock-keywords))
3131 'gdb-invalidate-threads)
3132
3133 (defun gdb-thread-list-handler-custom ()
3134 (let ((threads-list (bindat-get-field (gdb-json-partial-output) 'threads))
3135 (table (make-gdb-table))
3136 (marked-line nil))
3137 (setq gdb-threads-list nil)
3138 (setq gdb-running-threads-count 0)
3139 (setq gdb-stopped-threads-count 0)
3140 (set-marker gdb-thread-position nil)
3141
3142 (dolist (thread (reverse threads-list))
3143 (let ((running (equal (bindat-get-field thread 'state) "running")))
3144 (add-to-list 'gdb-threads-list
3145 (cons (bindat-get-field thread 'id)
3146 thread))
3147 (cl-incf (if running
3148 gdb-running-threads-count
3149 gdb-stopped-threads-count))
3150
3151 (gdb-table-add-row
3152 table
3153 (list
3154 (bindat-get-field thread 'id)
3155 (concat
3156 (if gdb-thread-buffer-verbose-names
3157 (concat (bindat-get-field thread 'target-id) " ") "")
3158 (bindat-get-field thread 'state)
3159 ;; Include frame information for stopped threads
3160 (if (not running)
3161 (concat
3162 " in " (bindat-get-field thread 'frame 'func)
3163 (if gdb-thread-buffer-arguments
3164 (concat
3165 " ("
3166 (let ((args (bindat-get-field thread 'frame 'args)))
3167 (mapconcat
3168 (lambda (arg)
3169 (apply #'format "%s=%s"
3170 (gdb-get-many-fields arg 'name 'value)))
3171 args ","))
3172 ")")
3173 "")
3174 (if gdb-thread-buffer-locations
3175 (gdb-frame-location (bindat-get-field thread 'frame)) "")
3176 (if gdb-thread-buffer-addresses
3177 (concat " at " (bindat-get-field thread 'frame 'addr)) ""))
3178 "")))
3179 (list
3180 'gdb-thread thread
3181 'mouse-face 'highlight
3182 'help-echo "mouse-2, RET: select thread")))
3183 (when (string-equal gdb-thread-number
3184 (bindat-get-field thread 'id))
3185 (setq marked-line (length gdb-threads-list))))
3186 (insert (gdb-table-string table " "))
3187 (when marked-line
3188 (gdb-mark-line marked-line gdb-thread-position)))
3189 ;; We update gud-running here because we need to make sure that
3190 ;; gdb-threads-list is up-to-date
3191 (gdb-update-gud-running)
3192 (gdb-emit-signal gdb-buf-publisher 'update-disassembly))
3193
3194 (defmacro def-gdb-thread-buffer-command (name custom-defun &optional doc)
3195 "Define a NAME command which will act upon thread on the current line.
3196
3197 CUSTOM-DEFUN may use locally bound `thread' variable, which will
3198 be the value of 'gdb-thread property of the current line.
3199 If `gdb-thread' is nil, error is signaled."
3200 `(defun ,name (&optional event)
3201 ,(when doc doc)
3202 (interactive (list last-input-event))
3203 (if event (posn-set-point (event-end event)))
3204 (save-excursion
3205 (beginning-of-line)
3206 (let ((thread (get-text-property (point) 'gdb-thread)))
3207 (if thread
3208 ,custom-defun
3209 (error "Not recognized as thread line"))))))
3210
3211 (defmacro def-gdb-thread-buffer-simple-command (name buffer-command
3212 &optional doc)
3213 "Define a NAME which will call BUFFER-COMMAND with id of thread
3214 on the current line."
3215 `(def-gdb-thread-buffer-command ,name
3216 (,buffer-command (bindat-get-field thread 'id))
3217 ,doc))
3218
3219 (def-gdb-thread-buffer-command gdb-select-thread
3220 (let ((new-id (bindat-get-field thread 'id)))
3221 (gdb-setq-thread-number new-id)
3222 (gdb-input (concat "-thread-select " new-id) 'ignore)
3223 (gdb-update))
3224 "Select the thread at current line of threads buffer.")
3225
3226 (def-gdb-thread-buffer-simple-command
3227 gdb-display-stack-for-thread
3228 gdb-preemptively-display-stack-buffer
3229 "Display stack buffer for the thread at current line.")
3230
3231 (def-gdb-thread-buffer-simple-command
3232 gdb-display-locals-for-thread
3233 gdb-preemptively-display-locals-buffer
3234 "Display locals buffer for the thread at current line.")
3235
3236 (def-gdb-thread-buffer-simple-command
3237 gdb-display-registers-for-thread
3238 gdb-preemptively-display-registers-buffer
3239 "Display registers buffer for the thread at current line.")
3240
3241 (def-gdb-thread-buffer-simple-command
3242 gdb-display-disassembly-for-thread
3243 gdb-preemptively-display-disassembly-buffer
3244 "Display disassembly buffer for the thread at current line.")
3245
3246 (def-gdb-thread-buffer-simple-command
3247 gdb-frame-stack-for-thread
3248 gdb-frame-stack-buffer
3249 "Display another frame with stack buffer for thread at current line.")
3250
3251 (def-gdb-thread-buffer-simple-command
3252 gdb-frame-locals-for-thread
3253 gdb-frame-locals-buffer
3254 "Display another frame with locals buffer for thread at current line.")
3255
3256 (def-gdb-thread-buffer-simple-command
3257 gdb-frame-registers-for-thread
3258 gdb-frame-registers-buffer
3259 "Display another frame with registers buffer for the thread at current line.")
3260
3261 (def-gdb-thread-buffer-simple-command
3262 gdb-frame-disassembly-for-thread
3263 gdb-frame-disassembly-buffer
3264 "Display another frame with disassembly buffer for the thread at current line.")
3265
3266 (defmacro def-gdb-thread-buffer-gud-command (name gud-command &optional doc)
3267 "Define a NAME which will execute GUD-COMMAND with
3268 `gdb-thread-number' locally bound to id of thread on the current
3269 line."
3270 `(def-gdb-thread-buffer-command ,name
3271 (if gdb-non-stop
3272 (let ((gdb-thread-number (bindat-get-field thread 'id))
3273 (gdb-gud-control-all-threads nil))
3274 (call-interactively #',gud-command))
3275 (error "Available in non-stop mode only, customize `gdb-non-stop-setting'"))
3276 ,doc))
3277
3278 (def-gdb-thread-buffer-gud-command
3279 gdb-interrupt-thread
3280 gud-stop-subjob
3281 "Interrupt thread at current line.")
3282
3283 ;; Defined opaquely in M-x gdb via gud-def.
3284 (declare-function gud-cont "gdb-mi" (arg) t)
3285
3286 (def-gdb-thread-buffer-gud-command
3287 gdb-continue-thread
3288 gud-cont
3289 "Continue thread at current line.")
3290
3291 (declare-function gud-step "gdb-mi" (arg) t)
3292
3293 (def-gdb-thread-buffer-gud-command
3294 gdb-step-thread
3295 gud-step
3296 "Step thread at current line.")
3297
3298 \f
3299 ;;; Memory view
3300
3301 (defcustom gdb-memory-rows 8
3302 "Number of data rows in memory window."
3303 :type 'integer
3304 :group 'gud
3305 :version "23.2")
3306
3307 (defcustom gdb-memory-columns 4
3308 "Number of data columns in memory window."
3309 :type 'integer
3310 :group 'gud
3311 :version "23.2")
3312
3313 (defcustom gdb-memory-format "x"
3314 "Display format of data items in memory window."
3315 :type '(choice (const :tag "Hexadecimal" "x")
3316 (const :tag "Signed decimal" "d")
3317 (const :tag "Unsigned decimal" "u")
3318 (const :tag "Octal" "o")
3319 (const :tag "Binary" "t"))
3320 :group 'gud
3321 :version "22.1")
3322
3323 (defcustom gdb-memory-unit 4
3324 "Unit size of data items in memory window."
3325 :type '(choice (const :tag "Byte" 1)
3326 (const :tag "Halfword" 2)
3327 (const :tag "Word" 4)
3328 (const :tag "Giant word" 8))
3329 :group 'gud
3330 :version "23.2")
3331
3332 (def-gdb-trigger-and-handler
3333 gdb-invalidate-memory
3334 (format "-data-read-memory %s %s %d %d %d"
3335 gdb-memory-address
3336 gdb-memory-format
3337 gdb-memory-unit
3338 gdb-memory-rows
3339 gdb-memory-columns)
3340 gdb-read-memory-handler
3341 gdb-read-memory-custom
3342 '(start update))
3343
3344 (gdb-set-buffer-rules
3345 'gdb-memory-buffer
3346 'gdb-memory-buffer-name
3347 'gdb-memory-mode
3348 'gdb-invalidate-memory)
3349
3350 (defun gdb-memory-column-width (size format)
3351 "Return length of string with memory unit of SIZE in FORMAT.
3352
3353 SIZE is in bytes, as in `gdb-memory-unit'. FORMAT is a string as
3354 in `gdb-memory-format'."
3355 (let ((format-base (cdr (assoc format
3356 '(("x" . 16)
3357 ("d" . 10) ("u" . 10)
3358 ("o" . 8)
3359 ("t" . 2))))))
3360 (if format-base
3361 (let ((res (ceiling (log (expt 2.0 (* size 8)) format-base))))
3362 (cond ((string-equal format "x")
3363 (+ 2 res)) ; hexadecimal numbers have 0x in front
3364 ((or (string-equal format "d")
3365 (string-equal format "o"))
3366 (1+ res))
3367 (t res)))
3368 (error "Unknown format"))))
3369
3370 (defun gdb-read-memory-custom ()
3371 (let* ((res (gdb-json-partial-output))
3372 (err-msg (bindat-get-field res 'msg)))
3373 (if (not err-msg)
3374 (let ((memory (bindat-get-field res 'memory)))
3375 (setq gdb-memory-address (bindat-get-field res 'addr))
3376 (setq gdb-memory-next-page (bindat-get-field res 'next-page))
3377 (setq gdb-memory-prev-page (bindat-get-field res 'prev-page))
3378 (setq gdb-memory-last-address gdb-memory-address)
3379 (dolist (row memory)
3380 (insert (concat (bindat-get-field row 'addr) ":"))
3381 (dolist (column (bindat-get-field row 'data))
3382 (insert (gdb-pad-string column
3383 (+ 2 (gdb-memory-column-width
3384 gdb-memory-unit
3385 gdb-memory-format)))))
3386 (newline)))
3387 ;; Show last page instead of empty buffer when out of bounds
3388 (progn
3389 (let ((gdb-memory-address gdb-memory-last-address))
3390 (gdb-invalidate-memory 'update)
3391 (error err-msg))))))
3392
3393 (defvar gdb-memory-mode-map
3394 (let ((map (make-sparse-keymap)))
3395 (suppress-keymap map t)
3396 (define-key map "q" 'kill-this-buffer)
3397 (define-key map "n" 'gdb-memory-show-next-page)
3398 (define-key map "p" 'gdb-memory-show-previous-page)
3399 (define-key map "a" 'gdb-memory-set-address)
3400 (define-key map "t" 'gdb-memory-format-binary)
3401 (define-key map "o" 'gdb-memory-format-octal)
3402 (define-key map "u" 'gdb-memory-format-unsigned)
3403 (define-key map "d" 'gdb-memory-format-signed)
3404 (define-key map "x" 'gdb-memory-format-hexadecimal)
3405 (define-key map "b" 'gdb-memory-unit-byte)
3406 (define-key map "h" 'gdb-memory-unit-halfword)
3407 (define-key map "w" 'gdb-memory-unit-word)
3408 (define-key map "g" 'gdb-memory-unit-giant)
3409 (define-key map "R" 'gdb-memory-set-rows)
3410 (define-key map "C" 'gdb-memory-set-columns)
3411 map))
3412
3413 (defun gdb-memory-set-address-event (event)
3414 "Handle a click on address field in memory buffer header."
3415 (interactive "e")
3416 (save-selected-window
3417 (select-window (posn-window (event-start event)))
3418 (gdb-memory-set-address)))
3419
3420 ;; Non-event version for use within keymap
3421 (defun gdb-memory-set-address ()
3422 "Set the start memory address."
3423 (interactive)
3424 (let ((arg (read-from-minibuffer "Memory address: ")))
3425 (setq gdb-memory-address arg))
3426 (gdb-invalidate-memory 'update))
3427
3428 (defmacro def-gdb-set-positive-number (name variable echo-string &optional doc)
3429 "Define a function NAME which reads new VAR value from minibuffer."
3430 `(defun ,name (event)
3431 ,(when doc doc)
3432 (interactive "e")
3433 (save-selected-window
3434 (select-window (posn-window (event-start event)))
3435 (let* ((arg (read-from-minibuffer ,echo-string))
3436 (count (string-to-number arg)))
3437 (if (<= count 0)
3438 (error "Positive number only")
3439 (customize-set-variable ',variable count)
3440 (gdb-invalidate-memory 'update))))))
3441
3442 (def-gdb-set-positive-number
3443 gdb-memory-set-rows
3444 gdb-memory-rows
3445 "Rows: "
3446 "Set the number of data rows in memory window.")
3447
3448 (def-gdb-set-positive-number
3449 gdb-memory-set-columns
3450 gdb-memory-columns
3451 "Columns: "
3452 "Set the number of data columns in memory window.")
3453
3454 (defmacro def-gdb-memory-format (name format doc)
3455 "Define a function NAME to switch memory buffer to use FORMAT.
3456
3457 DOC is an optional documentation string."
3458 `(defun ,name () ,(when doc doc)
3459 (interactive)
3460 (customize-set-variable 'gdb-memory-format ,format)
3461 (gdb-invalidate-memory 'update)))
3462
3463 (def-gdb-memory-format
3464 gdb-memory-format-binary "t"
3465 "Set the display format to binary.")
3466
3467 (def-gdb-memory-format
3468 gdb-memory-format-octal "o"
3469 "Set the display format to octal.")
3470
3471 (def-gdb-memory-format
3472 gdb-memory-format-unsigned "u"
3473 "Set the display format to unsigned decimal.")
3474
3475 (def-gdb-memory-format
3476 gdb-memory-format-signed "d"
3477 "Set the display format to decimal.")
3478
3479 (def-gdb-memory-format
3480 gdb-memory-format-hexadecimal "x"
3481 "Set the display format to hexadecimal.")
3482
3483 (defvar gdb-memory-format-map
3484 (let ((map (make-sparse-keymap)))
3485 (define-key map [header-line down-mouse-3] 'gdb-memory-format-menu-1)
3486 map)
3487 "Keymap to select format in the header line.")
3488
3489 (defvar gdb-memory-format-menu
3490 (let ((map (make-sparse-keymap "Format")))
3491
3492 (define-key map [binary]
3493 '(menu-item "Binary" gdb-memory-format-binary
3494 :button (:radio . (equal gdb-memory-format "t"))))
3495 (define-key map [octal]
3496 '(menu-item "Octal" gdb-memory-format-octal
3497 :button (:radio . (equal gdb-memory-format "o"))))
3498 (define-key map [unsigned]
3499 '(menu-item "Unsigned Decimal" gdb-memory-format-unsigned
3500 :button (:radio . (equal gdb-memory-format "u"))))
3501 (define-key map [signed]
3502 '(menu-item "Signed Decimal" gdb-memory-format-signed
3503 :button (:radio . (equal gdb-memory-format "d"))))
3504 (define-key map [hexadecimal]
3505 '(menu-item "Hexadecimal" gdb-memory-format-hexadecimal
3506 :button (:radio . (equal gdb-memory-format "x"))))
3507 map)
3508 "Menu of display formats in the header line.")
3509
3510 (defun gdb-memory-format-menu (event)
3511 (interactive "@e")
3512 (x-popup-menu event gdb-memory-format-menu))
3513
3514 (defun gdb-memory-format-menu-1 (event)
3515 (interactive "e")
3516 (save-selected-window
3517 (select-window (posn-window (event-start event)))
3518 (let* ((selection (gdb-memory-format-menu event))
3519 (binding (and selection (lookup-key gdb-memory-format-menu
3520 (vector (car selection))))))
3521 (if binding (call-interactively binding)))))
3522
3523 (defmacro def-gdb-memory-unit (name unit-size doc)
3524 "Define a function NAME to switch memory unit size to UNIT-SIZE.
3525
3526 DOC is an optional documentation string."
3527 `(defun ,name () ,(when doc doc)
3528 (interactive)
3529 (customize-set-variable 'gdb-memory-unit ,unit-size)
3530 (gdb-invalidate-memory 'update)))
3531
3532 (def-gdb-memory-unit gdb-memory-unit-giant 8
3533 "Set the unit size to giant words (eight bytes).")
3534
3535 (def-gdb-memory-unit gdb-memory-unit-word 4
3536 "Set the unit size to words (four bytes).")
3537
3538 (def-gdb-memory-unit gdb-memory-unit-halfword 2
3539 "Set the unit size to halfwords (two bytes).")
3540
3541 (def-gdb-memory-unit gdb-memory-unit-byte 1
3542 "Set the unit size to bytes.")
3543
3544 (defmacro def-gdb-memory-show-page (name address-var &optional doc)
3545 "Define a function NAME which show new address in memory buffer.
3546
3547 The defined function switches Memory buffer to show address
3548 stored in ADDRESS-VAR variable.
3549
3550 DOC is an optional documentation string."
3551 `(defun ,name
3552 ,(when doc doc)
3553 (interactive)
3554 (let ((gdb-memory-address ,address-var))
3555 (gdb-invalidate-memory))))
3556
3557 (def-gdb-memory-show-page gdb-memory-show-previous-page
3558 gdb-memory-prev-page)
3559
3560 (def-gdb-memory-show-page gdb-memory-show-next-page
3561 gdb-memory-next-page)
3562
3563 (defvar gdb-memory-unit-map
3564 (let ((map (make-sparse-keymap)))
3565 (define-key map [header-line down-mouse-3] 'gdb-memory-unit-menu-1)
3566 map)
3567 "Keymap to select units in the header line.")
3568
3569 (defvar gdb-memory-unit-menu
3570 (let ((map (make-sparse-keymap "Unit")))
3571 (define-key map [giantwords]
3572 '(menu-item "Giant words" gdb-memory-unit-giant
3573 :button (:radio . (equal gdb-memory-unit 8))))
3574 (define-key map [words]
3575 '(menu-item "Words" gdb-memory-unit-word
3576 :button (:radio . (equal gdb-memory-unit 4))))
3577 (define-key map [halfwords]
3578 '(menu-item "Halfwords" gdb-memory-unit-halfword
3579 :button (:radio . (equal gdb-memory-unit 2))))
3580 (define-key map [bytes]
3581 '(menu-item "Bytes" gdb-memory-unit-byte
3582 :button (:radio . (equal gdb-memory-unit 1))))
3583 map)
3584 "Menu of units in the header line.")
3585
3586 (defun gdb-memory-unit-menu (event)
3587 (interactive "@e")
3588 (x-popup-menu event gdb-memory-unit-menu))
3589
3590 (defun gdb-memory-unit-menu-1 (event)
3591 (interactive "e")
3592 (save-selected-window
3593 (select-window (posn-window (event-start event)))
3594 (let* ((selection (gdb-memory-unit-menu event))
3595 (binding (and selection (lookup-key gdb-memory-unit-menu
3596 (vector (car selection))))))
3597 (if binding (call-interactively binding)))))
3598
3599 (defvar gdb-memory-font-lock-keywords
3600 '(;; <__function.name+n>
3601 ("<\\(\\(\\sw\\|[_.]\\)+\\)\\(\\+[0-9]+\\)?>"
3602 (1 font-lock-function-name-face)))
3603 "Font lock keywords used in `gdb-memory-mode'.")
3604
3605 (defvar gdb-memory-header
3606 '(:eval
3607 (concat
3608 "Start address["
3609 (propertize "-"
3610 'face font-lock-warning-face
3611 'help-echo "mouse-1: decrement address"
3612 'mouse-face 'mode-line-highlight
3613 'local-map (gdb-make-header-line-mouse-map
3614 'mouse-1
3615 #'gdb-memory-show-previous-page))
3616 "|"
3617 (propertize "+"
3618 'face font-lock-warning-face
3619 'help-echo "mouse-1: increment address"
3620 'mouse-face 'mode-line-highlight
3621 'local-map (gdb-make-header-line-mouse-map
3622 'mouse-1
3623 #'gdb-memory-show-next-page))
3624 "]: "
3625 (propertize gdb-memory-address
3626 'face font-lock-warning-face
3627 'help-echo "mouse-1: set start address"
3628 'mouse-face 'mode-line-highlight
3629 'local-map (gdb-make-header-line-mouse-map
3630 'mouse-1
3631 #'gdb-memory-set-address-event))
3632 " Rows: "
3633 (propertize (number-to-string gdb-memory-rows)
3634 'face font-lock-warning-face
3635 'help-echo "mouse-1: set number of columns"
3636 'mouse-face 'mode-line-highlight
3637 'local-map (gdb-make-header-line-mouse-map
3638 'mouse-1
3639 #'gdb-memory-set-rows))
3640 " Columns: "
3641 (propertize (number-to-string gdb-memory-columns)
3642 'face font-lock-warning-face
3643 'help-echo "mouse-1: set number of columns"
3644 'mouse-face 'mode-line-highlight
3645 'local-map (gdb-make-header-line-mouse-map
3646 'mouse-1
3647 #'gdb-memory-set-columns))
3648 " Display Format: "
3649 (propertize gdb-memory-format
3650 'face font-lock-warning-face
3651 'help-echo "mouse-3: select display format"
3652 'mouse-face 'mode-line-highlight
3653 'local-map gdb-memory-format-map)
3654 " Unit Size: "
3655 (propertize (number-to-string gdb-memory-unit)
3656 'face font-lock-warning-face
3657 'help-echo "mouse-3: select unit size"
3658 'mouse-face 'mode-line-highlight
3659 'local-map gdb-memory-unit-map)))
3660 "Header line used in `gdb-memory-mode'.")
3661
3662 (define-derived-mode gdb-memory-mode gdb-parent-mode "Memory"
3663 "Major mode for examining memory."
3664 (setq header-line-format gdb-memory-header)
3665 (set (make-local-variable 'font-lock-defaults)
3666 '(gdb-memory-font-lock-keywords))
3667 'gdb-invalidate-memory)
3668
3669 (defun gdb-memory-buffer-name ()
3670 (concat "*memory of " (gdb-get-target-string) "*"))
3671
3672 (defun gdb-display-memory-buffer (&optional thread)
3673 "Display GDB memory contents."
3674 (interactive)
3675 (gdb-display-buffer (gdb-get-buffer-create 'gdb-memory-buffer thread)))
3676
3677 (defun gdb-frame-memory-buffer ()
3678 "Display memory contents in another frame."
3679 (interactive)
3680 (display-buffer (gdb-get-buffer-create 'gdb-memory-buffer)
3681 gdb-display-buffer-other-frame-action))
3682
3683 \f
3684 ;;; Disassembly view
3685
3686 (defun gdb-disassembly-buffer-name ()
3687 (gdb-current-context-buffer-name
3688 (concat "disassembly of " (gdb-get-target-string))))
3689
3690 (defun gdb-display-disassembly-buffer (&optional thread)
3691 "Display GDB disassembly information."
3692 (interactive)
3693 (gdb-display-buffer (gdb-get-buffer-create 'gdb-disassembly-buffer thread)))
3694
3695 (def-gdb-preempt-display-buffer
3696 gdb-preemptively-display-disassembly-buffer
3697 'gdb-disassembly-buffer)
3698
3699 (defun gdb-frame-disassembly-buffer (&optional thread)
3700 "Display GDB disassembly information in another frame."
3701 (interactive)
3702 (display-buffer (gdb-get-buffer-create 'gdb-disassembly-buffer thread)
3703 gdb-display-buffer-other-frame-action))
3704
3705 (def-gdb-auto-update-trigger gdb-invalidate-disassembly
3706 (let* ((frame (gdb-current-buffer-frame))
3707 (file (bindat-get-field frame 'fullname))
3708 (line (bindat-get-field frame 'line)))
3709 (if file
3710 (format "-data-disassemble -f %s -l %s -n -1 -- 0" file line)
3711 ;; If we're unable to get a file name / line for $PC, simply
3712 ;; follow $PC, disassembling the next 10 (x ~15 (on IA) ==
3713 ;; 150 bytes) instructions.
3714 "-data-disassemble -s $pc -e \"$pc + 150\" -- 0"))
3715 gdb-disassembly-handler
3716 ;; We update disassembly only after we have actual frame information
3717 ;; about all threads, so no there's `update' signal in this list
3718 '(start update-disassembly))
3719
3720 (def-gdb-auto-update-handler
3721 gdb-disassembly-handler
3722 gdb-disassembly-handler-custom
3723 t)
3724
3725 (gdb-set-buffer-rules
3726 'gdb-disassembly-buffer
3727 'gdb-disassembly-buffer-name
3728 'gdb-disassembly-mode
3729 'gdb-invalidate-disassembly)
3730
3731 (defvar gdb-disassembly-font-lock-keywords
3732 '(;; <__function.name+n>
3733 ("<\\(\\(\\sw\\|[_.]\\)+\\)\\(\\+[0-9]+\\)?>"
3734 (1 font-lock-function-name-face))
3735 ;; 0xNNNNNNNN <__function.name+n>: opcode
3736 ("^0x[0-9a-f]+ \\(<\\(\\(\\sw\\|[_.]\\)+\\)\\+[0-9]+>\\)?:[ \t]+\\(\\sw+\\)"
3737 (4 font-lock-keyword-face))
3738 ;; %register(at least i386)
3739 ("%\\sw+" . font-lock-variable-name-face)
3740 ("^\\(Dump of assembler code for function\\) \\(.+\\):"
3741 (1 font-lock-comment-face)
3742 (2 font-lock-function-name-face))
3743 ("^\\(End of assembler dump\\.\\)" . font-lock-comment-face))
3744 "Font lock keywords used in `gdb-disassembly-mode'.")
3745
3746 (defvar gdb-disassembly-mode-map
3747 ;; TODO
3748 (let ((map (make-sparse-keymap)))
3749 (suppress-keymap map)
3750 (define-key map "q" 'kill-this-buffer)
3751 map))
3752
3753 (define-derived-mode gdb-disassembly-mode gdb-parent-mode "Disassembly"
3754 "Major mode for GDB disassembly information."
3755 ;; TODO Rename overlay variable for disassembly mode
3756 (add-to-list 'overlay-arrow-variable-list 'gdb-disassembly-position)
3757 (setq fringes-outside-margins t)
3758 (set (make-local-variable 'gdb-disassembly-position) (make-marker))
3759 (set (make-local-variable 'font-lock-defaults)
3760 '(gdb-disassembly-font-lock-keywords))
3761 'gdb-invalidate-disassembly)
3762
3763 (defun gdb-disassembly-handler-custom ()
3764 (let* ((instructions (bindat-get-field (gdb-json-partial-output) 'asm_insns))
3765 (address (bindat-get-field (gdb-current-buffer-frame) 'addr))
3766 (table (make-gdb-table))
3767 (marked-line nil))
3768 (dolist (instr instructions)
3769 (gdb-table-add-row table
3770 (list
3771 (bindat-get-field instr 'address)
3772 (let
3773 ((func-name (bindat-get-field instr 'func-name))
3774 (offset (bindat-get-field instr 'offset)))
3775 (if func-name
3776 (format "<%s+%s>:" func-name offset)
3777 ""))
3778 (bindat-get-field instr 'inst)))
3779 (when (string-equal (bindat-get-field instr 'address)
3780 address)
3781 (progn
3782 (setq marked-line (length (gdb-table-rows table)))
3783 (setq fringe-indicator-alist
3784 (if (string-equal gdb-frame-number "0")
3785 nil
3786 '((overlay-arrow . hollow-right-triangle)))))))
3787 (insert (gdb-table-string table " "))
3788 (gdb-disassembly-place-breakpoints)
3789 ;; Mark current position with overlay arrow and scroll window to
3790 ;; that point
3791 (when marked-line
3792 (let ((window (get-buffer-window (current-buffer) 0)))
3793 (set-window-point window (gdb-mark-line marked-line
3794 gdb-disassembly-position))))
3795 (setq mode-name
3796 (gdb-current-context-mode-name
3797 (concat "Disassembly: "
3798 (bindat-get-field (gdb-current-buffer-frame) 'func))))))
3799
3800 (defun gdb-disassembly-place-breakpoints ()
3801 (gdb-remove-breakpoint-icons (point-min) (point-max))
3802 (dolist (breakpoint gdb-breakpoints-list)
3803 (let* ((breakpoint (cdr breakpoint))
3804 (bptno (bindat-get-field breakpoint 'number))
3805 (flag (bindat-get-field breakpoint 'enabled))
3806 (address (bindat-get-field breakpoint 'addr)))
3807 (save-excursion
3808 (goto-char (point-min))
3809 (if (re-search-forward (concat "^" address) nil t)
3810 (gdb-put-breakpoint-icon (string-equal flag "y") bptno))))))
3811
3812 \f
3813 (defvar gdb-breakpoints-header
3814 (list
3815 (gdb-propertize-header "Breakpoints" gdb-breakpoints-buffer
3816 nil nil mode-line)
3817 " "
3818 (gdb-propertize-header "Threads" gdb-threads-buffer
3819 "mouse-1: select" mode-line-highlight
3820 mode-line-inactive)))
3821
3822 ;;; Breakpoints view
3823 (define-derived-mode gdb-breakpoints-mode gdb-parent-mode "Breakpoints"
3824 "Major mode for gdb breakpoints."
3825 (setq header-line-format gdb-breakpoints-header)
3826 'gdb-invalidate-breakpoints)
3827
3828 (defun gdb-toggle-breakpoint ()
3829 "Enable/disable breakpoint at current line of breakpoints buffer."
3830 (interactive)
3831 (save-excursion
3832 (beginning-of-line)
3833 (let ((breakpoint (get-text-property (point) 'gdb-breakpoint)))
3834 (if breakpoint
3835 (gud-basic-call
3836 (concat (if (equal "y" (bindat-get-field breakpoint 'enabled))
3837 "-break-disable "
3838 "-break-enable ")
3839 (bindat-get-field breakpoint 'number)))
3840 (error "Not recognized as break/watchpoint line")))))
3841
3842 (defun gdb-delete-breakpoint ()
3843 "Delete the breakpoint at current line of breakpoints buffer."
3844 (interactive)
3845 (save-excursion
3846 (beginning-of-line)
3847 (let ((breakpoint (get-text-property (point) 'gdb-breakpoint)))
3848 (if breakpoint
3849 (gud-basic-call (concat "-break-delete "
3850 (bindat-get-field breakpoint 'number)))
3851 (error "Not recognized as break/watchpoint line")))))
3852
3853 (defun gdb-goto-breakpoint (&optional event)
3854 "Go to the location of breakpoint at current line of breakpoints buffer."
3855 (interactive (list last-input-event))
3856 (if event (posn-set-point (event-end event)))
3857 ;; Hack to stop gdb-goto-breakpoint displaying in GUD buffer.
3858 (let ((window (get-buffer-window gud-comint-buffer)))
3859 (if window (save-selected-window (select-window window))))
3860 (save-excursion
3861 (beginning-of-line)
3862 (let ((breakpoint (get-text-property (point) 'gdb-breakpoint)))
3863 (if breakpoint
3864 (let ((bptno (bindat-get-field breakpoint 'number))
3865 (file (bindat-get-field breakpoint 'fullname))
3866 (line (bindat-get-field breakpoint 'line)))
3867 (save-selected-window
3868 (let* ((buffer (find-file-noselect
3869 (if (file-exists-p file) file
3870 (cdr (assoc bptno gdb-location-alist)))))
3871 (window (or (gdb-display-source-buffer buffer)
3872 (display-buffer buffer))))
3873 (setq gdb-source-window window)
3874 (with-current-buffer buffer
3875 (goto-char (point-min))
3876 (forward-line (1- (string-to-number line)))
3877 (set-window-point window (point))))))
3878 (error "Not recognized as break/watchpoint line")))))
3879
3880 \f
3881 ;; Frames buffer. This displays a perpetually correct backtrack trace.
3882 ;;
3883 (def-gdb-trigger-and-handler
3884 gdb-invalidate-frames (gdb-current-context-command "-stack-list-frames")
3885 gdb-stack-list-frames-handler gdb-stack-list-frames-custom
3886 '(start update))
3887
3888 (gdb-set-buffer-rules
3889 'gdb-stack-buffer
3890 'gdb-stack-buffer-name
3891 'gdb-frames-mode
3892 'gdb-invalidate-frames)
3893
3894 (defun gdb-frame-location (frame)
3895 "Return \" of file:line\" or \" of library\" for structure FRAME.
3896
3897 FRAME must have either \"file\" and \"line\" members or \"from\"
3898 member."
3899 (let ((file (bindat-get-field frame 'file))
3900 (line (bindat-get-field frame 'line))
3901 (from (bindat-get-field frame 'from)))
3902 (let ((res (or (and file line (concat file ":" line))
3903 from)))
3904 (if res (concat " of " res) ""))))
3905
3906 (defun gdb-stack-list-frames-custom ()
3907 (let ((stack (bindat-get-field (gdb-json-partial-output "frame") 'stack))
3908 (table (make-gdb-table)))
3909 (set-marker gdb-stack-position nil)
3910 (dolist (frame stack)
3911 (gdb-table-add-row table
3912 (list
3913 (bindat-get-field frame 'level)
3914 "in"
3915 (concat
3916 (bindat-get-field frame 'func)
3917 (if gdb-stack-buffer-locations
3918 (gdb-frame-location frame) "")
3919 (if gdb-stack-buffer-addresses
3920 (concat " at " (bindat-get-field frame 'addr)) "")))
3921 `(mouse-face highlight
3922 help-echo "mouse-2, RET: Select frame"
3923 gdb-frame ,frame)))
3924 (insert (gdb-table-string table " ")))
3925 (when (and gdb-frame-number
3926 (gdb-buffer-shows-main-thread-p))
3927 (gdb-mark-line (1+ (string-to-number gdb-frame-number))
3928 gdb-stack-position))
3929 (setq mode-name
3930 (gdb-current-context-mode-name "Frames")))
3931
3932 (defun gdb-stack-buffer-name ()
3933 (gdb-current-context-buffer-name
3934 (concat "stack frames of " (gdb-get-target-string))))
3935
3936 (defun gdb-display-stack-buffer (&optional thread)
3937 "Display GDB backtrace for current stack."
3938 (interactive)
3939 (gdb-display-buffer (gdb-get-buffer-create 'gdb-stack-buffer thread)))
3940
3941 (def-gdb-preempt-display-buffer
3942 gdb-preemptively-display-stack-buffer
3943 'gdb-stack-buffer nil t)
3944
3945 (defun gdb-frame-stack-buffer (&optional thread)
3946 "Display GDB backtrace for current stack in another frame."
3947 (interactive)
3948 (display-buffer (gdb-get-buffer-create 'gdb-stack-buffer thread)
3949 gdb-display-buffer-other-frame-action))
3950
3951 (defvar gdb-frames-mode-map
3952 (let ((map (make-sparse-keymap)))
3953 (suppress-keymap map)
3954 (define-key map "q" 'kill-this-buffer)
3955 (define-key map "\r" 'gdb-select-frame)
3956 (define-key map [mouse-2] 'gdb-select-frame)
3957 (define-key map [follow-link] 'mouse-face)
3958 map))
3959
3960 (defvar gdb-frames-font-lock-keywords
3961 '(("in \\([^ ]+\\)" (1 font-lock-function-name-face)))
3962 "Font lock keywords used in `gdb-frames-mode'.")
3963
3964 (define-derived-mode gdb-frames-mode gdb-parent-mode "Frames"
3965 "Major mode for gdb call stack."
3966 (setq gdb-stack-position (make-marker))
3967 (add-to-list 'overlay-arrow-variable-list 'gdb-stack-position)
3968 (setq truncate-lines t) ;; Make it easier to see overlay arrow.
3969 (set (make-local-variable 'font-lock-defaults)
3970 '(gdb-frames-font-lock-keywords))
3971 'gdb-invalidate-frames)
3972
3973 (defun gdb-select-frame (&optional event)
3974 "Select the frame and display the relevant source."
3975 (interactive (list last-input-event))
3976 (if event (posn-set-point (event-end event)))
3977 (let ((frame (get-text-property (point) 'gdb-frame)))
3978 (if frame
3979 (if (gdb-buffer-shows-main-thread-p)
3980 (let ((new-level (bindat-get-field frame 'level)))
3981 (setq gdb-frame-number new-level)
3982 (gdb-input (concat "-stack-select-frame " new-level)
3983 'ignore)
3984 (gdb-update))
3985 (error "Could not select frame for non-current thread"))
3986 (error "Not recognized as frame line"))))
3987
3988 \f
3989 ;; Locals buffer.
3990 ;; uses "-stack-list-locals --simple-values". Needs GDB 6.1 onwards.
3991 (def-gdb-trigger-and-handler
3992 gdb-invalidate-locals
3993 (concat (gdb-current-context-command "-stack-list-locals")
3994 " --simple-values")
3995 gdb-locals-handler gdb-locals-handler-custom
3996 '(start update))
3997
3998 (gdb-set-buffer-rules
3999 'gdb-locals-buffer
4000 'gdb-locals-buffer-name
4001 'gdb-locals-mode
4002 'gdb-invalidate-locals)
4003
4004 (defvar gdb-locals-watch-map
4005 (let ((map (make-sparse-keymap)))
4006 (suppress-keymap map)
4007 (define-key map "\r" 'gud-watch)
4008 (define-key map [mouse-2] 'gud-watch)
4009 map)
4010 "Keymap to create watch expression of a complex data type local variable.")
4011
4012 (defvar gdb-edit-locals-map-1
4013 (let ((map (make-sparse-keymap)))
4014 (suppress-keymap map)
4015 (define-key map "\r" 'gdb-edit-locals-value)
4016 (define-key map [mouse-2] 'gdb-edit-locals-value)
4017 map)
4018 "Keymap to edit value of a simple data type local variable.")
4019
4020 (defun gdb-edit-locals-value (&optional event)
4021 "Assign a value to a variable displayed in the locals buffer."
4022 (interactive (list last-input-event))
4023 (save-excursion
4024 (if event (posn-set-point (event-end event)))
4025 (beginning-of-line)
4026 (let* ((var (bindat-get-field
4027 (get-text-property (point) 'gdb-local-variable) 'name))
4028 (value (read-string (format "New value (%s): " var))))
4029 (gud-basic-call
4030 (concat "-gdb-set variable " var " = " value)))))
4031
4032 ;; Don't display values of arrays or structures.
4033 ;; These can be expanded using gud-watch.
4034 (defun gdb-locals-handler-custom ()
4035 (let ((locals-list (bindat-get-field (gdb-json-partial-output) 'locals))
4036 (table (make-gdb-table)))
4037 (dolist (local locals-list)
4038 (let ((name (bindat-get-field local 'name))
4039 (value (bindat-get-field local 'value))
4040 (type (bindat-get-field local 'type)))
4041 (if (or (not value)
4042 (string-match "\\0x" value))
4043 (add-text-properties 0 (length name)
4044 `(mouse-face highlight
4045 help-echo "mouse-2: create watch expression"
4046 local-map ,gdb-locals-watch-map)
4047 name)
4048 (add-text-properties 0 (length value)
4049 `(mouse-face highlight
4050 help-echo "mouse-2: edit value"
4051 local-map ,gdb-edit-locals-map-1)
4052 value))
4053 (gdb-table-add-row
4054 table
4055 (list
4056 (propertize type 'font-lock-face font-lock-type-face)
4057 (propertize name 'font-lock-face font-lock-variable-name-face)
4058 value)
4059 `(gdb-local-variable ,local))))
4060 (insert (gdb-table-string table " "))
4061 (setq mode-name
4062 (gdb-current-context-mode-name
4063 (concat "Locals: "
4064 (bindat-get-field (gdb-current-buffer-frame) 'func))))))
4065
4066 (defvar gdb-locals-header
4067 (list
4068 (gdb-propertize-header "Locals" gdb-locals-buffer
4069 nil nil mode-line)
4070 " "
4071 (gdb-propertize-header "Registers" gdb-registers-buffer
4072 "mouse-1: select" mode-line-highlight
4073 mode-line-inactive)))
4074
4075 (defvar gdb-locals-mode-map
4076 (let ((map (make-sparse-keymap)))
4077 (suppress-keymap map)
4078 (define-key map "q" 'kill-this-buffer)
4079 (define-key map "\t" (lambda ()
4080 (interactive)
4081 (gdb-set-window-buffer
4082 (gdb-get-buffer-create
4083 'gdb-registers-buffer
4084 gdb-thread-number) t)))
4085 map))
4086
4087 (define-derived-mode gdb-locals-mode gdb-parent-mode "Locals"
4088 "Major mode for gdb locals."
4089 (setq header-line-format gdb-locals-header)
4090 'gdb-invalidate-locals)
4091
4092 (defun gdb-locals-buffer-name ()
4093 (gdb-current-context-buffer-name
4094 (concat "locals of " (gdb-get-target-string))))
4095
4096 (defun gdb-display-locals-buffer (&optional thread)
4097 "Display the local variables of current GDB stack."
4098 (interactive)
4099 (gdb-display-buffer (gdb-get-buffer-create 'gdb-locals-buffer thread)))
4100
4101 (def-gdb-preempt-display-buffer
4102 gdb-preemptively-display-locals-buffer
4103 'gdb-locals-buffer nil t)
4104
4105 (defun gdb-frame-locals-buffer (&optional thread)
4106 "Display the local variables of the current GDB stack in another frame."
4107 (interactive)
4108 (display-buffer (gdb-get-buffer-create 'gdb-locals-buffer thread)
4109 gdb-display-buffer-other-frame-action))
4110
4111 \f
4112 ;; Registers buffer.
4113
4114 (def-gdb-trigger-and-handler
4115 gdb-invalidate-registers
4116 (concat (gdb-current-context-command "-data-list-register-values") " x")
4117 gdb-registers-handler
4118 gdb-registers-handler-custom
4119 '(start update))
4120
4121 (gdb-set-buffer-rules
4122 'gdb-registers-buffer
4123 'gdb-registers-buffer-name
4124 'gdb-registers-mode
4125 'gdb-invalidate-registers)
4126
4127 (defun gdb-registers-handler-custom ()
4128 (when gdb-register-names
4129 (let ((register-values
4130 (bindat-get-field (gdb-json-partial-output) 'register-values))
4131 (table (make-gdb-table)))
4132 (dolist (register register-values)
4133 (let* ((register-number (bindat-get-field register 'number))
4134 (value (bindat-get-field register 'value))
4135 (register-name (nth (string-to-number register-number)
4136 gdb-register-names)))
4137 (gdb-table-add-row
4138 table
4139 (list
4140 (propertize register-name
4141 'font-lock-face font-lock-variable-name-face)
4142 (if (member register-number gdb-changed-registers)
4143 (propertize value 'font-lock-face font-lock-warning-face)
4144 value))
4145 `(mouse-face highlight
4146 help-echo "mouse-2: edit value"
4147 gdb-register-name ,register-name))))
4148 (insert (gdb-table-string table " ")))
4149 (setq mode-name
4150 (gdb-current-context-mode-name "Registers"))))
4151
4152 (defun gdb-edit-register-value (&optional event)
4153 "Assign a value to a register displayed in the registers buffer."
4154 (interactive (list last-input-event))
4155 (save-excursion
4156 (if event (posn-set-point (event-end event)))
4157 (beginning-of-line)
4158 (let* ((var (bindat-get-field
4159 (get-text-property (point) 'gdb-register-name)))
4160 (value (read-string (format "New value (%s): " var))))
4161 (gud-basic-call
4162 (concat "-gdb-set variable $" var " = " value)))))
4163
4164 (defvar gdb-registers-mode-map
4165 (let ((map (make-sparse-keymap)))
4166 (suppress-keymap map)
4167 (define-key map "\r" 'gdb-edit-register-value)
4168 (define-key map [mouse-2] 'gdb-edit-register-value)
4169 (define-key map "q" 'kill-this-buffer)
4170 (define-key map "\t" (lambda ()
4171 (interactive)
4172 (gdb-set-window-buffer
4173 (gdb-get-buffer-create
4174 'gdb-locals-buffer
4175 gdb-thread-number) t)))
4176 map))
4177
4178 (defvar gdb-registers-header
4179 (list
4180 (gdb-propertize-header "Locals" gdb-locals-buffer
4181 "mouse-1: select" mode-line-highlight
4182 mode-line-inactive)
4183 " "
4184 (gdb-propertize-header "Registers" gdb-registers-buffer
4185 nil nil mode-line)))
4186
4187 (define-derived-mode gdb-registers-mode gdb-parent-mode "Registers"
4188 "Major mode for gdb registers."
4189 (setq header-line-format gdb-registers-header)
4190 'gdb-invalidate-registers)
4191
4192 (defun gdb-registers-buffer-name ()
4193 (gdb-current-context-buffer-name
4194 (concat "registers of " (gdb-get-target-string))))
4195
4196 (defun gdb-display-registers-buffer (&optional thread)
4197 "Display GDB register contents."
4198 (interactive)
4199 (gdb-display-buffer (gdb-get-buffer-create 'gdb-registers-buffer thread)))
4200
4201 (def-gdb-preempt-display-buffer
4202 gdb-preemptively-display-registers-buffer
4203 'gdb-registers-buffer nil t)
4204
4205 (defun gdb-frame-registers-buffer (&optional thread)
4206 "Display GDB register contents in another frame."
4207 (interactive)
4208 (display-buffer (gdb-get-buffer-create 'gdb-registers-buffer thread)
4209 gdb-display-buffer-other-frame-action))
4210
4211 ;; Needs GDB 6.4 onwards (used to fail with no stack).
4212 (defun gdb-get-changed-registers ()
4213 (when (gdb-get-buffer 'gdb-registers-buffer)
4214 (gdb-input "-data-list-changed-registers"
4215 'gdb-changed-registers-handler
4216 'gdb-get-changed-registers)))
4217
4218 (defun gdb-changed-registers-handler ()
4219 (setq gdb-changed-registers nil)
4220 (dolist (register-number
4221 (bindat-get-field (gdb-json-partial-output) 'changed-registers))
4222 (push register-number gdb-changed-registers)))
4223
4224 (defun gdb-register-names-handler ()
4225 ;; Don't use pending triggers because this handler is called
4226 ;; only once (in gdb-init-1)
4227 (setq gdb-register-names nil)
4228 (dolist (register-name
4229 (bindat-get-field (gdb-json-partial-output) 'register-names))
4230 (push register-name gdb-register-names))
4231 (setq gdb-register-names (reverse gdb-register-names)))
4232 \f
4233
4234 (defun gdb-get-source-file-list ()
4235 "Create list of source files for current GDB session.
4236 If buffers already exist for any of these files, `gud-minor-mode'
4237 is set in them."
4238 (goto-char (point-min))
4239 (while (re-search-forward gdb-source-file-regexp nil t)
4240 (push (read (match-string 1)) gdb-source-file-list))
4241 (dolist (buffer (buffer-list))
4242 (with-current-buffer buffer
4243 (when (member buffer-file-name gdb-source-file-list)
4244 (gdb-init-buffer)))))
4245
4246 (defun gdb-get-main-selected-frame ()
4247 "Trigger for `gdb-frame-handler' which uses main current thread.
4248 Called from `gdb-update'."
4249 (gdb-input (gdb-current-context-command "-stack-info-frame")
4250 'gdb-frame-handler
4251 'gdb-get-main-selected-frame))
4252
4253 (defun gdb-frame-handler ()
4254 "Set `gdb-selected-frame' and `gdb-selected-file' to show
4255 overlay arrow in source buffer."
4256 (let ((frame (bindat-get-field (gdb-json-partial-output) 'frame)))
4257 (when frame
4258 (setq gdb-selected-frame (bindat-get-field frame 'func))
4259 (setq gdb-selected-file (bindat-get-field frame 'fullname))
4260 (setq gdb-frame-number (bindat-get-field frame 'level))
4261 (setq gdb-frame-address (bindat-get-field frame 'addr))
4262 (let ((line (bindat-get-field frame 'line)))
4263 (setq gdb-selected-line (and line (string-to-number line)))
4264 (when (and gdb-selected-file gdb-selected-line)
4265 (setq gud-last-frame (cons gdb-selected-file gdb-selected-line))
4266 (gud-display-frame)))
4267 (if gud-overlay-arrow-position
4268 (let ((buffer (marker-buffer gud-overlay-arrow-position))
4269 (position (marker-position gud-overlay-arrow-position)))
4270 (when buffer
4271 (with-current-buffer buffer
4272 (setq fringe-indicator-alist
4273 (if (string-equal gdb-frame-number "0")
4274 nil
4275 '((overlay-arrow . hollow-right-triangle))))
4276 (setq gud-overlay-arrow-position (make-marker))
4277 (set-marker gud-overlay-arrow-position position))))))))
4278
4279 (defconst gdb-prompt-name-regexp
4280 (concat "value=\\(" gdb--string-regexp "\\)"))
4281
4282 (defun gdb-get-prompt ()
4283 "Find prompt for GDB session."
4284 (goto-char (point-min))
4285 (setq gdb-prompt-name nil)
4286 (re-search-forward gdb-prompt-name-regexp nil t)
4287 (setq gdb-prompt-name (read (match-string 1)))
4288 ;; Insert first prompt.
4289 (setq gdb-filter-output (concat gdb-filter-output gdb-prompt-name)))
4290
4291 ;;;; Window management
4292 (defun gdb-display-buffer (buf)
4293 "Show buffer BUF, and make that window dedicated."
4294 (let ((window (display-buffer buf)))
4295 (set-window-dedicated-p window t)
4296 window))
4297
4298 ;; (let ((answer (get-buffer-window buf 0)))
4299 ;; (if answer
4300 ;; (display-buffer buf nil 0) ;Deiconify frame if necessary.
4301 ;; (let ((window (get-lru-window)))
4302 ;; (if (eq (buffer-local-value 'gud-minor-mode (window-buffer window))
4303 ;; 'gdbmi)
4304 ;; (let ((largest (get-largest-window)))
4305 ;; (setq answer (split-window largest))
4306 ;; (set-window-buffer answer buf)
4307 ;; (set-window-dedicated-p answer t)
4308 ;; answer)
4309 ;; (set-window-buffer window buf)
4310 ;; window)))))
4311
4312
4313 (defun gdb-preempt-existing-or-display-buffer (buf &optional split-horizontal)
4314 "Find window displaying a buffer with the same
4315 `gdb-buffer-type' as BUF and show BUF there. If no such window
4316 exists, just call `gdb-display-buffer' for BUF. If the window
4317 found is already dedicated, split window according to
4318 SPLIT-HORIZONTAL and show BUF in the new window."
4319 (if buf
4320 (when (not (get-buffer-window buf))
4321 (let* ((buf-type (gdb-buffer-type buf))
4322 (existing-window
4323 (get-window-with-predicate
4324 #'(lambda (w)
4325 (and (eq buf-type
4326 (gdb-buffer-type (window-buffer w)))
4327 (not (window-dedicated-p w)))))))
4328 (if existing-window
4329 (set-window-buffer existing-window buf)
4330 (let ((dedicated-window
4331 (get-window-with-predicate
4332 #'(lambda (w)
4333 (eq buf-type
4334 (gdb-buffer-type (window-buffer w)))))))
4335 (if dedicated-window
4336 (set-window-buffer
4337 (split-window dedicated-window nil split-horizontal) buf)
4338 (gdb-display-buffer buf))))))
4339 (error "Null buffer")))
4340 \f
4341 ;;; Shared keymap initialization:
4342
4343 (let ((menu (make-sparse-keymap "GDB-Windows")))
4344 (define-key gud-menu-map [displays]
4345 `(menu-item "GDB-Windows" ,menu
4346 :visible (eq gud-minor-mode 'gdbmi)))
4347 (define-key menu [gdb] '("Gdb" . gdb-display-gdb-buffer))
4348 (define-key menu [threads] '("Threads" . gdb-display-threads-buffer))
4349 (define-key menu [memory] '("Memory" . gdb-display-memory-buffer))
4350 (define-key menu [disassembly]
4351 '("Disassembly" . gdb-display-disassembly-buffer))
4352 (define-key menu [registers] '("Registers" . gdb-display-registers-buffer))
4353 (define-key menu [inferior]
4354 '("IO" . gdb-display-io-buffer))
4355 (define-key menu [locals] '("Locals" . gdb-display-locals-buffer))
4356 (define-key menu [frames] '("Stack" . gdb-display-stack-buffer))
4357 (define-key menu [breakpoints]
4358 '("Breakpoints" . gdb-display-breakpoints-buffer)))
4359
4360 (let ((menu (make-sparse-keymap "GDB-Frames")))
4361 (define-key gud-menu-map [frames]
4362 `(menu-item "GDB-Frames" ,menu
4363 :visible (eq gud-minor-mode 'gdbmi)))
4364 (define-key menu [gdb] '("Gdb" . gdb-frame-gdb-buffer))
4365 (define-key menu [threads] '("Threads" . gdb-frame-threads-buffer))
4366 (define-key menu [memory] '("Memory" . gdb-frame-memory-buffer))
4367 (define-key menu [disassembly]
4368 '("Disassembly" . gdb-frame-disassembly-buffer))
4369 (define-key menu [registers] '("Registers" . gdb-frame-registers-buffer))
4370 (define-key menu [inferior]
4371 '("IO" . gdb-frame-io-buffer))
4372 (define-key menu [locals] '("Locals" . gdb-frame-locals-buffer))
4373 (define-key menu [frames] '("Stack" . gdb-frame-stack-buffer))
4374 (define-key menu [breakpoints]
4375 '("Breakpoints" . gdb-frame-breakpoints-buffer)))
4376
4377 (let ((menu (make-sparse-keymap "GDB-MI")))
4378 (define-key menu [gdb-customize]
4379 '(menu-item "Customize" (lambda () (interactive) (customize-group 'gdb))
4380 :help "Customize Gdb Graphical Mode options."))
4381 (define-key menu [gdb-many-windows]
4382 '(menu-item "Display Other Windows" gdb-many-windows
4383 :help "Toggle display of locals, stack and breakpoint information"
4384 :button (:toggle . gdb-many-windows)))
4385 (define-key menu [gdb-restore-windows]
4386 '(menu-item "Restore Window Layout" gdb-restore-windows
4387 :help "Restore standard layout for debug session."))
4388 (define-key menu [sep1]
4389 '(menu-item "--"))
4390 (define-key menu [all-threads]
4391 '(menu-item "GUD controls all threads"
4392 (lambda ()
4393 (interactive)
4394 (setq gdb-gud-control-all-threads t))
4395 :help "GUD start/stop commands apply to all threads"
4396 :button (:radio . gdb-gud-control-all-threads)))
4397 (define-key menu [current-thread]
4398 '(menu-item "GUD controls current thread"
4399 (lambda ()
4400 (interactive)
4401 (setq gdb-gud-control-all-threads nil))
4402 :help "GUD start/stop commands apply to current thread only"
4403 :button (:radio . (not gdb-gud-control-all-threads))))
4404 (define-key menu [sep2]
4405 '(menu-item "--"))
4406 (define-key menu [gdb-customize-reasons]
4407 '(menu-item "Customize switching..."
4408 (lambda ()
4409 (interactive)
4410 (customize-option 'gdb-switch-reasons))))
4411 (define-key menu [gdb-switch-when-another-stopped]
4412 (menu-bar-make-toggle gdb-toggle-switch-when-another-stopped
4413 gdb-switch-when-another-stopped
4414 "Automatically switch to stopped thread"
4415 "GDB thread switching %s"
4416 "Switch to stopped thread"))
4417 (define-key gud-menu-map [mi]
4418 `(menu-item "GDB-MI" ,menu :visible (eq gud-minor-mode 'gdbmi))))
4419
4420 ;; TODO Fit these into tool-bar-local-item-from-menu call in gud.el.
4421 ;; GDB-MI menu will need to be moved to gud.el. We can't use
4422 ;; tool-bar-local-item-from-menu here because it appends new buttons
4423 ;; to toolbar from right to left while we want our A/T throttle to
4424 ;; show up right before Run button.
4425 (define-key-after gud-tool-bar-map [all-threads]
4426 '(menu-item "Switch to non-stop/A mode" gdb-control-all-threads
4427 :image (find-image '((:type xpm :file "gud/thread.xpm")))
4428 :visible (and (eq gud-minor-mode 'gdbmi)
4429 gdb-non-stop
4430 (not gdb-gud-control-all-threads)))
4431 'run)
4432
4433 (define-key-after gud-tool-bar-map [current-thread]
4434 '(menu-item "Switch to non-stop/T mode" gdb-control-current-thread
4435 :image (find-image '((:type xpm :file "gud/all.xpm")))
4436 :visible (and (eq gud-minor-mode 'gdbmi)
4437 gdb-non-stop
4438 gdb-gud-control-all-threads))
4439 'all-threads)
4440
4441 (defun gdb-frame-gdb-buffer ()
4442 "Display GUD buffer in another frame."
4443 (interactive)
4444 (display-buffer-other-frame gud-comint-buffer))
4445
4446 (defun gdb-display-gdb-buffer ()
4447 "Display GUD buffer."
4448 (interactive)
4449 (pop-to-buffer gud-comint-buffer nil 0))
4450
4451 (defun gdb-set-window-buffer (name &optional ignore-dedicated window)
4452 "Set buffer of selected window to NAME and dedicate window.
4453
4454 When IGNORE-DEDICATED is non-nil, buffer is set even if selected
4455 window is dedicated."
4456 (unless window (setq window (selected-window)))
4457 (when ignore-dedicated
4458 (set-window-dedicated-p window nil))
4459 (set-window-buffer window (get-buffer name))
4460 (set-window-dedicated-p window t))
4461
4462 (defun gdb-setup-windows ()
4463 "Layout the window pattern for option `gdb-many-windows'."
4464 (gdb-get-buffer-create 'gdb-locals-buffer)
4465 (gdb-get-buffer-create 'gdb-stack-buffer)
4466 (gdb-get-buffer-create 'gdb-breakpoints-buffer)
4467 (set-window-dedicated-p (selected-window) nil)
4468 (switch-to-buffer gud-comint-buffer)
4469 (delete-other-windows)
4470 (let ((win0 (selected-window))
4471 (win1 (split-window nil ( / ( * (window-height) 3) 4)))
4472 (win2 (split-window nil ( / (window-height) 3)))
4473 (win3 (split-window-right)))
4474 (gdb-set-window-buffer (gdb-locals-buffer-name) nil win3)
4475 (select-window win2)
4476 (set-window-buffer
4477 win2
4478 (if gud-last-last-frame
4479 (gud-find-file (car gud-last-last-frame))
4480 (if gdb-main-file
4481 (gud-find-file gdb-main-file)
4482 ;; Put buffer list in window if we
4483 ;; can't find a source file.
4484 (list-buffers-noselect))))
4485 (setq gdb-source-window (selected-window))
4486 (let ((win4 (split-window-right)))
4487 (gdb-set-window-buffer
4488 (gdb-get-buffer-create 'gdb-inferior-io) nil win4))
4489 (select-window win1)
4490 (gdb-set-window-buffer (gdb-stack-buffer-name))
4491 (let ((win5 (split-window-right)))
4492 (gdb-set-window-buffer (if gdb-show-threads-by-default
4493 (gdb-threads-buffer-name)
4494 (gdb-breakpoints-buffer-name))
4495 nil win5))
4496 (select-window win0)))
4497
4498 (define-minor-mode gdb-many-windows
4499 "If nil just pop up the GUD buffer unless `gdb-show-main' is t.
4500 In this case it starts with two windows: one displaying the GUD
4501 buffer and the other with the source file with the main routine
4502 of the debugged program. Non-nil means display the layout shown for
4503 `gdb'."
4504 :global t
4505 :group 'gdb
4506 :version "22.1"
4507 (if (and gud-comint-buffer
4508 (buffer-name gud-comint-buffer))
4509 (ignore-errors
4510 (gdb-restore-windows))))
4511
4512 (defun gdb-restore-windows ()
4513 "Restore the basic arrangement of windows used by gdb.
4514 This arrangement depends on the value of option `gdb-many-windows'."
4515 (interactive)
4516 (switch-to-buffer gud-comint-buffer) ;Select the right window and frame.
4517 (delete-other-windows)
4518 (if gdb-many-windows
4519 (gdb-setup-windows)
4520 (when (or gud-last-last-frame gdb-show-main)
4521 (let ((win (split-window)))
4522 (set-window-buffer
4523 win
4524 (if gud-last-last-frame
4525 (gud-find-file (car gud-last-last-frame))
4526 (gud-find-file gdb-main-file)))
4527 (setq gdb-source-window win)))))
4528
4529 ;; Called from `gud-sentinel' in gud.el:
4530 (defun gdb-reset ()
4531 "Exit a debugging session cleanly.
4532 Kills the gdb buffers, and resets variables and the source buffers."
4533 ;; The gdb-inferior buffer has a pty hooked up to the main gdb
4534 ;; process. This pty must be deleted explicitly.
4535 (let ((pty (get-process "gdb-inferior")))
4536 (if pty (delete-process pty)))
4537 ;; Find gdb-mi buffers and kill them.
4538 (dolist (buffer (buffer-list))
4539 (unless (eq buffer gud-comint-buffer)
4540 (with-current-buffer buffer
4541 (if (eq gud-minor-mode 'gdbmi)
4542 (if (string-match "\\` ?\\*.+\\*\\'" (buffer-name))
4543 (kill-buffer nil)
4544 (gdb-remove-breakpoint-icons (point-min) (point-max) t)
4545 (setq gud-minor-mode nil)
4546 (kill-local-variable 'tool-bar-map)
4547 (kill-local-variable 'gdb-define-alist))))))
4548 (setq gdb-disassembly-position nil)
4549 (setq overlay-arrow-variable-list
4550 (delq 'gdb-disassembly-position overlay-arrow-variable-list))
4551 (setq fringe-indicator-alist '((overlay-arrow . right-triangle)))
4552 (setq gdb-stack-position nil)
4553 (setq overlay-arrow-variable-list
4554 (delq 'gdb-stack-position overlay-arrow-variable-list))
4555 (setq gdb-thread-position nil)
4556 (setq overlay-arrow-variable-list
4557 (delq 'gdb-thread-position overlay-arrow-variable-list))
4558 (if (boundp 'speedbar-frame) (speedbar-timer-fn))
4559 (setq gud-running nil)
4560 (setq gdb-active-process nil)
4561 (remove-hook 'after-save-hook 'gdb-create-define-alist t))
4562
4563 (defun gdb-get-source-file ()
4564 "Find the source file where the program starts and display it with related
4565 buffers, if required."
4566 (goto-char (point-min))
4567 (if (re-search-forward gdb-source-file-regexp nil t)
4568 (setq gdb-main-file (read (match-string 1))))
4569 (if gdb-many-windows
4570 (gdb-setup-windows)
4571 (gdb-get-buffer-create 'gdb-breakpoints-buffer)
4572 (and gdb-show-main
4573 gdb-main-file
4574 (display-buffer (gud-find-file gdb-main-file))))
4575 (gdb-force-mode-line-update
4576 (propertize "ready" 'face font-lock-variable-name-face)))
4577
4578 ;;from put-image
4579 (defun gdb-put-string (putstring pos &optional dprop &rest sprops)
4580 "Put string PUTSTRING in front of POS in the current buffer.
4581 PUTSTRING is displayed by putting an overlay into the current buffer with a
4582 `before-string' string that has a `display' property whose value is
4583 PUTSTRING."
4584 (let ((string (make-string 1 ?x))
4585 (buffer (current-buffer)))
4586 (setq putstring (copy-sequence putstring))
4587 (let ((overlay (make-overlay pos pos buffer))
4588 (prop (or dprop
4589 (list (list 'margin 'left-margin) putstring))))
4590 (put-text-property 0 1 'display prop string)
4591 (if sprops
4592 (add-text-properties 0 1 sprops string))
4593 (overlay-put overlay 'put-break t)
4594 (overlay-put overlay 'before-string string))))
4595
4596 ;;from remove-images
4597 (defun gdb-remove-strings (start end &optional buffer)
4598 "Remove strings between START and END in BUFFER.
4599 Remove only strings that were put in BUFFER with calls to `gdb-put-string'.
4600 BUFFER nil or omitted means use the current buffer."
4601 (unless buffer
4602 (setq buffer (current-buffer)))
4603 (dolist (overlay (overlays-in start end))
4604 (when (overlay-get overlay 'put-break)
4605 (delete-overlay overlay))))
4606
4607 (defun gdb-put-breakpoint-icon (enabled bptno &optional line)
4608 (let* ((posns (gdb-line-posns (or line (line-number-at-pos))))
4609 (start (- (car posns) 1))
4610 (end (+ (cdr posns) 1))
4611 (putstring (if enabled "B" "b"))
4612 (source-window (get-buffer-window (current-buffer) 0)))
4613 (add-text-properties
4614 0 1 '(help-echo "mouse-1: clear bkpt, mouse-3: enable/disable bkpt")
4615 putstring)
4616 (if enabled
4617 (add-text-properties
4618 0 1 `(gdb-bptno ,bptno gdb-enabled t) putstring)
4619 (add-text-properties
4620 0 1 `(gdb-bptno ,bptno gdb-enabled nil) putstring))
4621 (gdb-remove-breakpoint-icons start end)
4622 (if (display-images-p)
4623 (if (>= (or left-fringe-width
4624 (if source-window (car (window-fringes source-window)))
4625 gdb-buffer-fringe-width) 8)
4626 (gdb-put-string
4627 nil (1+ start)
4628 `(left-fringe breakpoint
4629 ,(if enabled
4630 'breakpoint-enabled
4631 'breakpoint-disabled))
4632 'gdb-bptno bptno
4633 'gdb-enabled enabled)
4634 (when (< left-margin-width 2)
4635 (save-current-buffer
4636 (setq left-margin-width 2)
4637 (if source-window
4638 (set-window-margins
4639 source-window
4640 left-margin-width right-margin-width))))
4641 (put-image
4642 (if enabled
4643 (or breakpoint-enabled-icon
4644 (setq breakpoint-enabled-icon
4645 (find-image `((:type xpm :data
4646 ,breakpoint-xpm-data
4647 :ascent 100 :pointer hand)
4648 (:type pbm :data
4649 ,breakpoint-enabled-pbm-data
4650 :ascent 100 :pointer hand)))))
4651 (or breakpoint-disabled-icon
4652 (setq breakpoint-disabled-icon
4653 (find-image `((:type xpm :data
4654 ,breakpoint-xpm-data
4655 :conversion disabled
4656 :ascent 100 :pointer hand)
4657 (:type pbm :data
4658 ,breakpoint-disabled-pbm-data
4659 :ascent 100 :pointer hand))))))
4660 (+ start 1)
4661 putstring
4662 'left-margin))
4663 (when (< left-margin-width 2)
4664 (save-current-buffer
4665 (setq left-margin-width 2)
4666 (let ((window (get-buffer-window (current-buffer) 0)))
4667 (if window
4668 (set-window-margins
4669 window left-margin-width right-margin-width)))))
4670 (gdb-put-string
4671 (propertize putstring
4672 'face (if enabled
4673 'breakpoint-enabled 'breakpoint-disabled))
4674 (1+ start)))))
4675
4676 (defun gdb-remove-breakpoint-icons (start end &optional remove-margin)
4677 (gdb-remove-strings start end)
4678 (if (display-images-p)
4679 (remove-images start end))
4680 (when remove-margin
4681 (setq left-margin-width 0)
4682 (let ((window (get-buffer-window (current-buffer) 0)))
4683 (if window
4684 (set-window-margins
4685 window left-margin-width right-margin-width)))))
4686
4687 \f
4688 ;;; Functions for inline completion.
4689
4690 (defvar gud-gdb-fetch-lines-in-progress)
4691 (defvar gud-gdb-fetch-lines-string)
4692 (defvar gud-gdb-fetch-lines-break)
4693 (defvar gud-gdb-fetched-lines)
4694
4695 (defun gud-gdbmi-completions (context command)
4696 "Completion table for GDB/MI commands.
4697 COMMAND is the prefix for which we seek completion.
4698 CONTEXT is the text before COMMAND on the line."
4699 (let ((gud-gdb-fetch-lines-in-progress t)
4700 (gud-gdb-fetch-lines-string nil)
4701 (gud-gdb-fetch-lines-break (length context))
4702 (gud-gdb-fetched-lines nil)
4703 ;; This filter dumps output lines to `gud-gdb-fetched-lines'.
4704 (gud-marker-filter #'gud-gdbmi-fetch-lines-filter))
4705 (with-current-buffer (gdb-get-buffer 'gdb-partial-output-buffer)
4706 (gdb-input (concat "complete " context command)
4707 (lambda () (setq gud-gdb-fetch-lines-in-progress nil)))
4708 (while gud-gdb-fetch-lines-in-progress
4709 (accept-process-output (get-buffer-process gud-comint-buffer))))
4710 (gud-gdb-completions-1 gud-gdb-fetched-lines)))
4711
4712 (defun gud-gdbmi-fetch-lines-filter (string)
4713 "Custom filter function for `gud-gdbmi-completions'."
4714 (setq string (concat gud-gdb-fetch-lines-string
4715 (gud-gdbmi-marker-filter string)))
4716 (while (string-match "\n" string)
4717 (push (substring string gud-gdb-fetch-lines-break (match-beginning 0))
4718 gud-gdb-fetched-lines)
4719 (setq string (substring string (match-end 0))))
4720 "")
4721
4722 (provide 'gdb-mi)
4723
4724 ;;; gdb-mi.el ends here