* Makefile.in (objdump.o): Deleted special rule.
[deliverable/binutils-gdb.git] / gdb / gdba.el
1 (defmacro gud (form)
2 (` (save-excursion (set-buffer "*gud-a.out*") (, form))))
3
4 (defun dbug (foo &optional fun)
5 (save-excursion
6 (set-buffer (get-buffer-create "*trace*"))
7 (goto-char (point-max))
8 (insert "***" (symbol-name foo) "\n")
9 (if fun
10 (funcall fun))))
11
12
13 ;;; gud.el --- Grand Unified Debugger mode for gdb, sdb, dbx, or xdb
14 ;;; under Emacs
15
16 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
17 ;; Maintainer: FSF
18 ;; Version: 1.3
19 ;; Keywords: unix, tools
20
21 ;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
22
23 ;; This file is part of GNU Emacs.
24
25 ;; GNU Emacs is free software; you can redistribute it and/or modify
26 ;; it under the terms of the GNU General Public License as published by
27 ;; the Free Software Foundation; either version 2, or (at your option)
28 ;; any later version.
29
30 ;; GNU Emacs is distributed in the hope that it will be useful,
31 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
32 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 ;; GNU General Public License for more details.
34
35 ;; You should have received a copy of the GNU General Public License
36 ;; along with GNU Emacs; see the file COPYING. If not, write to
37 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
38
39 ;;; Commentary:
40
41 ;; The ancestral gdb.el was by W. Schelter <wfs@rascal.ics.utexas.edu>
42 ;; It was later rewritten by rms. Some ideas were due to Masanobu.
43 ;; Grand Unification (sdb/dbx support) by Eric S. Raymond <esr@thyrsus.com>
44 ;; The overloading code was then rewritten by Barry Warsaw <bwarsaw@cen.com>,
45 ;; who also hacked the mode to use comint.el. Shane Hartman <shane@spr.com>
46 ;; added support for xdb (HPUX debugger).
47
48 ;; Cygnus Support added support for gdb's --annotate=2.
49
50 ;;; Code:
51
52 (require 'comint)
53 (require 'etags)
54
55 ;; ======================================================================
56 ;; GUD commands must be visible in C buffers visited by GUD
57
58 (defvar gud-key-prefix "\C-x\C-a"
59 "Prefix of all GUD commands valid in C buffers.")
60
61 (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh)
62 (global-set-key "\C-x " 'gud-break) ;; backward compatibility hack
63
64 ;; ======================================================================
65 ;; the overloading mechanism
66
67 (defun gud-overload-functions (gud-overload-alist)
68 "Overload functions defined in GUD-OVERLOAD-ALIST.
69 This association list has elements of the form
70 (ORIGINAL-FUNCTION-NAME OVERLOAD-FUNCTION)"
71 (mapcar
72 (function (lambda (p) (fset (car p) (symbol-function (cdr p)))))
73 gud-overload-alist))
74
75 (defun gud-massage-args (file args)
76 (error "GUD not properly entered."))
77
78 (defun gud-marker-filter (str)
79 (error "GUD not properly entered."))
80
81 (defun gud-find-file (f)
82 (error "GUD not properly entered."))
83 \f
84 ;; ======================================================================
85 ;; command definition
86
87 ;; This macro is used below to define some basic debugger interface commands.
88 ;; Of course you may use `gud-def' with any other debugger command, including
89 ;; user defined ones.
90
91 ;; A macro call like (gud-def FUNC NAME KEY DOC) expands to a form
92 ;; which defines FUNC to send the command NAME to the debugger, gives
93 ;; it the docstring DOC, and binds that function to KEY in the GUD
94 ;; major mode. The function is also bound in the global keymap with the
95 ;; GUD prefix.
96
97 (defmacro gud-def (func cmd key &optional doc)
98 "Define FUNC to be a command sending STR and bound to KEY, with
99 optional doc string DOC. Certain %-escapes in the string arguments
100 are interpreted specially if present. These are:
101
102 %f name (without directory) of current source file.
103 %d directory of current source file.
104 %l number of current source line
105 %e text of the C lvalue or function-call expression surrounding point.
106 %a text of the hexadecimal address surrounding point
107 %p prefix argument to the command (if any) as a number
108
109 The `current' source file is the file of the current buffer (if
110 we're in a C file) or the source file current at the last break or
111 step (if we're in the GUD buffer).
112 The `current' line is that of the current buffer (if we're in a
113 source file) or the source line number at the last break or step (if
114 we're in the GUD buffer)."
115 (list 'progn
116 (list 'defun func '(arg)
117 (or doc "")
118 '(interactive "p")
119 (list 'gud-call cmd 'arg))
120 (if key
121 (list 'define-key
122 '(current-local-map)
123 (concat "\C-c" key)
124 (list 'quote func)))
125 (if key
126 (list 'global-set-key
127 (list 'concat 'gud-key-prefix key)
128 (list 'quote func)))))
129
130 ;; Where gud-display-frame should put the debugging arrow. This is
131 ;; set by the marker-filter, which scans the debugger's output for
132 ;; indications of the current program counter.
133 (defvar gud-last-frame nil)
134
135 ;; Used by gud-refresh, which should cause gud-display-frame to redisplay
136 ;; the last frame, even if it's been called before and gud-last-frame has
137 ;; been set to nil.
138 (defvar gud-last-last-frame nil)
139
140 ;; All debugger-specific information is collected here.
141 ;; Here's how it works, in case you ever need to add a debugger to the mode.
142 ;;
143 ;; Each entry must define the following at startup:
144 ;;
145 ;;<name>
146 ;; comint-prompt-regexp
147 ;; gud-<name>-massage-args
148 ;; gud-<name>-marker-filter
149 ;; gud-<name>-find-file
150 ;;
151 ;; The job of the massage-args method is to modify the given list of
152 ;; debugger arguments before running the debugger.
153 ;;
154 ;; The job of the marker-filter method is to detect file/line markers in
155 ;; strings and set the global gud-last-frame to indicate what display
156 ;; action (if any) should be triggered by the marker. Note that only
157 ;; whatever the method *returns* is displayed in the buffer; thus, you
158 ;; can filter the debugger's output, interpreting some and passing on
159 ;; the rest.
160 ;;
161 ;; The job of the find-file method is to visit and return the buffer indicated
162 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or
163 ;; something else.
164 \f
165 ;; ======================================================================
166 ;; gdb functions
167
168 ;;; History of argument lists passed to gdb.
169 (defvar gud-gdb-history nil)
170
171 (defun gud-gdb-massage-args (file args)
172 (cons "--annotate=2" (cons file args)))
173
174
175 ;;
176 ;; In this world, there are gdb instance objects (of unspecified
177 ;; representation) and buffers associated with those objects.
178 ;;
179
180 ;;
181 ;; gdb-instance objects
182 ;;
183
184 (defun make-gdb-instance (proc)
185 "Create a gdb instance object from a gdb process."
186 (let ((instance (cons 'gdb-instance proc)))
187 (save-excursion
188 (set-buffer (process-buffer proc))
189 (if (not (equal gdb-buffer-instance instance))
190 (progn
191 (mapcar 'make-variable-buffer-local gdb-instance-variables)
192 (setq gdb-buffer-instance instance) ; These are both...
193 (setq gdb-buffer-type 'gud)))) ; ...instance variables
194 instance))
195
196 (defun gdb-instance-process (inst) (cdr inst))
197
198 (defvar gdb-instance-variables '()
199 "A list of variables that are local to the gud buffer associated
200 with a gdb instance.")
201
202 (defmacro def-gdb-variable
203 (name accessor setter &optional default doc)
204 (`
205 (progn
206 (defvar (, name) (, default) (, (or doc "undocumented")))
207 (if (not (memq '(, name) gdb-instance-variables))
208 (setq gdb-instance-variables
209 (cons '(, name) gdb-instance-variables)))
210 (, (and accessor
211 (`
212 (defun (, accessor) (instance)
213 (let
214 ((buffer (gdb-get-instance-buffer instance 'gud)))
215 (and buffer
216 (save-excursion
217 (set-buffer buffer)
218 (, name))))))))
219 (, (and setter
220 (`
221 (defun (, setter) (instance val)
222 (let
223 ((buffer (gdb-get-instance-buffer instance 'gud)))
224 (and buffer
225 (save-excursion
226 (set-buffer buffer)
227 (setq (, name) val)))))))))))
228
229 (defmacro def-gdb-var (root-symbol &optional default doc)
230 (let* ((root (symbol-name root-symbol))
231 (accessor (intern (concat "gdb-instance-" root)))
232 (setter (intern (concat "set-gdb-instance-" root)))
233 (var-name (intern (concat "gdb-" root))))
234 (` (def-gdb-variable
235 (, var-name) (, accessor) (, setter)
236 (, default) (, doc)))))
237
238 (def-gdb-var buffer-instance nil
239 "In an instance buffer, the buffer's instance.")
240
241 (def-gdb-var buffer-type nil
242 "One of the symbols bound in gdb-instance-buffer-rules")
243
244 (def-gdb-var burst ""
245 "A string of characters from gdb that have not yet been processed.")
246
247 (def-gdb-var input-queue ()
248 "A list of high priority gdb command objects.")
249
250 (def-gdb-var idle-input-queue ()
251 "A list of low priority gdb command objects.")
252
253 (def-gdb-var prompting nil
254 "True when gdb is idle with no pending input.")
255
256 (def-gdb-var output-sink 'user
257 "The disposition of the output of the current gdb command.")
258
259 (def-gdb-var current-item nil
260 "The most recent command item sent to gdb.")
261
262 (def-gdb-var pending-triggers '()
263 "A list of trigger functions that have run later than their output
264 handlers.")
265
266 (defun in-gdb-instance-context (instance form)
267 "Funcall `form' in the gud buffer of `instance'"
268 (save-excursion
269 (set-buffer (gdb-get-instance-buffer instance 'gud))
270 (funcall form)))
271
272 ;; end of instance vars
273
274 ;;
275 ;; finding instances
276 ;;
277
278 (defun gdb-proc->instance (proc)
279 (save-excursion
280 (set-buffer (process-buffer proc))
281 gdb-buffer-instance))
282
283 (defun gdb-mru-instance-buffer ()
284 "Return the most recently used (non-auxiliary) gdb gud buffer."
285 (save-excursion
286 (gdb-goto-first-gdb-instance (buffer-list))))
287
288 (defun gdb-goto-first-gdb-instance (blist)
289 "Use gdb-mru-instance-buffer -- not this."
290 (and blist
291 (progn
292 (set-buffer (car blist))
293 (or (and gdb-buffer-instance
294 (eq gdb-buffer-type 'gud)
295 (car blist))
296 (gdb-find-first-gdb-instance (cdr blist))))))
297
298 (defun buffer-gdb-instance (buf)
299 (save-excursion
300 (set-buffer buf)
301 gdb-buffer-instance))
302
303 (defun gdb-needed-default-instance ()
304 "Return the most recently used gdb instance or signal an error."
305 (let ((buffer (gdb-mru-instance-buffer)))
306 (or (and buffer (buffer-gdb-instance buffer))
307 (error "No instance of gdb found."))))
308
309 (defun gdb-instance-target-string (instance)
310 "The apparent name of the program being debugged by a gdb instance.
311 For sure this the root string used in smashing together the gud
312 buffer's name, even if that doesn't happen to be the name of a
313 program."
314 (in-gdb-instance-context
315 instance
316 (function (lambda () gud-target-name))))
317
318 ;; More than one buffer can be associated with a gdb instance.
319 ;;
320 ;; Each buffer has a TYPE -- an atom that identifies the function
321 ;; of that particular buffer.
322 ;;
323 ;; The usual gud interaction buffer is given the type `gud' and
324 ;; is constructed specially.
325 ;;
326 ;; Others are constructed by gdb-get-create-instance-buffer and
327 ;; named according to the rules set forth here:
328 ;;
329
330 (defvar gdb-instance-buffer-rules-assoc
331 '((gud error) ; gud buffers construct specially
332 (gdb-partial-output-buffer
333 gdb-partial-output-name
334 )
335 (gdb-registers-buffer
336 gdb-registers-buffer-name)
337 (gdb-breakpoints-buffer
338 gdb-breakpoints-buffer-name)
339 (gdb-frames-buffer
340 gdb-frames-buffer-name)))
341
342
343 ;;
344 ;; gdb communications
345 ;;
346
347 ;; input: things sent to gdb
348 ;;
349 ;; Each instance has a high and low priority
350 ;; input queue. Low priority input is sent only
351 ;; when the high priority queue is idle.
352 ;;
353 ;; The queues are lists. Each element is either
354 ;; a string (indicating user or user-like input)
355 ;; or a list of the form:
356 ;;
357 ;; (INPUT-STRING HANDLER-FN)
358 ;;
359 ;;
360 ;; The handler function will be called from the
361 ;; partial-output buffer when the command completes.
362 ;;
363 ;; These lists are consumed tail first.
364 ;;
365
366 (defun gdb-send (proc string)
367 "A comint send filter for gdb.
368 This filter may simply queue output for a later time."
369 (let ((instance (gdb-proc->instance proc)))
370 (gdb-instance-enqueue-input instance (concat string "\n"))))
371
372 ;; Note: Stuff enqueued here will be sent to the next prompt, even if it
373 ;; is a query, or other non-top-level prompt. To guarantee stuff will get
374 ;; sent to the top-level prompt, currently it must be put in the idle queue.
375 (defun gdb-instance-enqueue-input (instance item)
376 "Enqueue an input item (a string or a list) for a gdb instance."
377 (if (gdb-instance-prompting instance)
378 (progn
379 (gdb-send-item instance item)
380 (set-gdb-instance-prompting instance nil))
381 (set-gdb-instance-input-queue
382 instance
383 (cons item (gdb-instance-input-queue instance)))))
384
385 (defun gdb-instance-dequeue-input (instance)
386 (let ((queue (gdb-instance-input-queue instance)))
387 (and queue
388 (if (not (cdr queue))
389 (let ((answer (car queue)))
390 (set-gdb-instance-input-queue instance '())
391 answer)
392 (gdb-take-last-elt queue)))))
393
394 (defun gdb-instance-enqueue-idle-input (instance item)
395 "Enqueue idle input (a string or a list) for a gdb instance."
396 (if (gdb-instance-prompting instance)
397 (progn
398 (gdb-send-item instance item)
399 (set-gdb-instance-prompting instance nil))
400 (set-gdb-instance-idle-input-queue
401 instance
402 (cons item (gdb-instance-idle-input-queue instance)))))
403
404 (defun gdb-instance-dequeue-idle-input (instance)
405 (let ((queue (gdb-instance-idle-input-queue instance)))
406 (and queue
407 (if (not (cdr queue))
408 (let ((answer (car queue)))
409 (set-gdb-instance-idle-input-queue instance '())
410 answer)
411 (gdb-take-last-elt queue)))))
412
413 (defun gdb-take-last-elt (l)
414 "Don't use this in general."
415 (if (cdr (cdr l))
416 (gdb-take-last-elt (cdr l))
417 (let ((answer (car (cdr l))))
418 (setcdr l '())
419 answer)))
420
421
422 ;;
423 ;; output -- things gdb prints to emacs
424 ;;
425 ;; GDB output is a stream interrupted by annotations.
426 ;; Annotations can be recognized by their beginning
427 ;; with \C-j\C-z\C-z<tag><opt>\C-j
428 ;;
429 ;; The tag is a string obeying symbol syntax.
430 ;;
431 ;; The optional part `<opt>' can be either the empty string
432 ;; or a space followed by more data relating to the annotation.
433 ;; For example, the SOURCE annotation is followed by a filename,
434 ;; line number and various useless goo. This data must not include
435 ;; any newlines.
436 ;;
437
438
439 (defun gud-gdb-marker-filter (string)
440 "A gud marker filter for gdb."
441 ;; Bogons don't tell us the process except through scoping crud.
442 (let ((instance (gdb-proc->instance proc)))
443 (gdb-output-burst instance string)))
444
445 (defvar gdb-annotation-rules
446 '(("frames-invalid" gdb-invalidate-frames)
447 ("breakpoints-invalid" gdb-invalidate-breakpoints)
448 ("pre-prompt" gdb-pre-prompt)
449 ("prompt" gdb-prompt)
450 ("commands" gdb-subprompt)
451 ("overload-choice" gdb-subprompt)
452 ("query" gdb-subprompt)
453 ("prompt-for-continue" gdb-subprompt)
454 ("post-prompt" gdb-post-prompt)
455 ("source" gdb-source)
456 )
457 "An assoc mapping annotation tags to functions which process them.")
458
459
460 (defun gdb-ignore-annotation (instance args)
461 nil)
462
463 (defconst gdb-source-spec-regexp
464 "\\(.*\\):\\([0-9]*\\):[0-9]*:[a-z]*:0x[a-f0-9]*")
465
466 (defun gdb-source (instance args)
467 "Do not use this except as an annotation handler."
468 (string-match gdb-source-spec-regexp args)
469 ;; Extract the frame position from the marker.
470 (setq gud-last-frame
471 (cons
472 (substring args (match-beginning 1) (match-end 1))
473 (string-to-int (substring args
474 (match-beginning 2)
475 (match-end 2))))))
476
477 (defun gdb-prompt (instance ignored)
478 "An annotation handler for `prompt'.
479 This sends the next command (if any) to gdb."
480 (let ((sink (gdb-instance-output-sink instance)))
481 (cond
482 ((eq sink 'user) t)
483 ((eq sink 'post-emacs)
484 (set-gdb-instance-output-sink instance 'user))
485 ((or (eq sink 'emacs)
486 (eq sink 'pre-emacs))
487 (set-gdb-instance-output-sink instance 'user)
488 (error "Phase error in gdb-prompt (got %s)" sink))
489 (t (set-gdb-instance-output-sink instance 'user))))
490 (let ((highest (gdb-instance-dequeue-input instance)))
491 (if highest
492 (gdb-send-item instance highest)
493 (let ((lowest (gdb-instance-dequeue-idle-input instance)))
494 (if lowest
495 (gdb-send-item instance lowest)
496 (set-gdb-instance-prompting instance t))))))
497
498 (defun gdb-subprompt (instance ignored)
499 "An annotation handler for non-top-level prompts."
500 (let ((highest (gdb-instance-dequeue-input instance)))
501 (if highest
502 (gdb-send-item instance highest)
503 (set-gdb-instance-prompting instance t))))
504
505 (defun gdb-send-item (instance item)
506 (dbug 'sending
507 (function
508 (lambda ()
509 (insert (format "%s\n" item)))))
510 (set-gdb-instance-current-item instance item)
511 (if (stringp item)
512 (progn
513 (set-gdb-instance-output-sink instance 'user)
514 (process-send-string (gdb-instance-process instance)
515 item))
516 (progn
517 (gdb-clear-partial-output instance)
518 (set-gdb-instance-output-sink instance 'pre-emacs)
519 (process-send-string (gdb-instance-process instance)
520 (car item)))))
521
522 (defun gdb-pre-prompt (instance ignored)
523 "An annotation handler for `pre-prompt'.
524 This terminates the collection of output from a previous
525 command if that happens to be in effect."
526 (let ((sink (gdb-instance-output-sink instance)))
527 (cond
528 ((eq sink 'user) t)
529 ((eq sink 'emacs)
530 (set-gdb-instance-output-sink instance 'post-emacs)
531 (let ((handler
532 (car (cdr (gdb-instance-current-item instance)))))
533 (save-excursion
534 (set-buffer (gdb-get-create-instance-buffer
535 instance 'gdb-partial-output-buffer))
536 (funcall handler))))
537 ((eq sink 'pre-emacs)
538 (set-gdb-instance-output-sink instance 'user)
539 (error "Output sink phase error 1."))
540 ((eq sink 'post-emacs)
541 (set-gdb-instance-output-sink instance 'user)
542 (error "Output sink phase error 2.")))))
543
544 (defun gdb-post-prompt (instance ignored)
545 "An annotation handler for `post-prompt'.
546 This begins the collection of output from the current
547 command if that happens to be appropriate."
548 (gdb-invalidate-registers instance ignored)
549 (let ((sink (gdb-instance-output-sink instance)))
550 (cond
551 ((eq sink 'user) t)
552 ((eq sink 'pre-emacs)
553 (set-gdb-instance-output-sink instance 'emacs))
554
555 ((eq sink 'emacs)
556 (set-gdb-instance-output-sink instance 'user)
557 (error "Output sink phase error 3."))
558
559 ((eq sink 'post-emacs)
560 (set-gdb-instance-output-sink instance 'user)
561 (error "Output sink phase error 3.")))))
562
563
564 (defmacro def-gdb-auto-update-trigger (name demand-predicate gdb-command output-handler)
565 (`
566 (defun (, name) (instance ignored)
567 (if (and ((, demand-predicate) instance)
568 (not (member '(, name)
569 (gdb-instance-pending-triggers instance))))
570 (progn
571 (gdb-instance-enqueue-idle-input
572 instance
573 (list (, gdb-command) '(, output-handler)))
574 (set-gdb-instance-pending-triggers
575 instance
576 (cons '(, name)
577 (gdb-instance-pending-triggers instance))))))))
578
579 (defmacro def-gdb-auto-update-handler (name trigger buf-key)
580 (`
581 (defun (, name) ()
582 (set-gdb-instance-pending-triggers
583 instance
584 (delq '(, trigger)
585 (gdb-instance-pending-triggers instance)))
586 (let ((buf (gdb-get-instance-buffer instance
587 '(, buf-key))))
588 (and buf
589 (save-excursion
590 (set-buffer buf)
591 (let ((p (point)))
592 (kill-region (point-min) (point-max))
593 (insert-buffer (gdb-get-create-instance-buffer
594 instance
595 'gdb-partial-output-buffer))
596 (goto-char p))))))))
597
598 (defmacro def-gdb-auto-updated-buffer
599 (buffer-key trigger-name gdb-command output-handler-name)
600 (`
601 (progn
602 (def-gdb-auto-update-trigger (, trigger-name)
603 ;; The demand predicate:
604 (lambda (instance)
605 (gdb-get-instance-buffer instance '(, buffer-key)))
606 (, gdb-command)
607 (, output-handler-name))
608 (def-gdb-auto-update-handler (, output-handler-name)
609 (, trigger-name) (, buffer-key)))))
610
611
612
613 (def-gdb-auto-updated-buffer gdb-breakpoints-buffer
614 ;; This defines the auto update rule for buffers of type
615 ;; `gdb-breakpoints-buffer'.
616 ;;
617 ;; It defines a function to serve as the annotation handler that
618 ;; handles the `foo-invalidated' message. That function is called:
619 gdb-invalidate-breakpoints
620
621 ;; To update the buffer, this command is sent to gdb.
622 "server info breakpoints\n"
623
624 ;; This also defines a function to be the handler for the output
625 ;; from the command above. That function will copy the output into
626 ;; the appropriately typed buffer. That function will be called:
627 gdb-info-breakpoints-handler)
628
629 (def-gdb-auto-updated-buffer gdb-frames-buffer
630 gdb-invalidate-frames
631 "server where\n"
632 gdb-info-frames-handler)
633
634
635 (def-gdb-auto-updated-buffer gdb-registers-buffer
636 gdb-invalidate-registers
637 "server info registers\n"
638 gdb-info-registers-handler)
639
640 ;;
641 ;; At any given time, output from gdb is being directed
642 ;; one of three places. By default, it goes into the gdb
643 ;; interaction buffer. For commands executed on behalf
644 ;; of emacs, it goes into a scratch buffer (not `the').
645 ;; Finally, some gdb output is simply thrown away; for example,
646 ;; the prompt that follows output from a command executed
647 ;; for emacs.
648 ;;
649
650 (defvar gdb-output-sink 'user
651 "An buffer-local indication of how output from an inferior gdb
652 should be directed. Legit values are:
653
654 USER -- the output should be appended to the gud
655 buffer.
656
657 PRE-EMACS -- throw away output preceding output for emacs.
658 EMACS -- redirect output to the partial-output buffer.
659 POST-EMACS -- throw away output following output for emacs.")
660
661 (defun gdb-output-burst (instance string)
662 "Handle a burst of output from a gdb instance.
663 This function is (indirectly) used as a gud-marker-filter.
664 It must return output (if any) to be insterted in the gud
665 buffer."
666
667 (save-match-data
668 (let (
669 ;; Recall the left over burst from last time
670 (burst (concat (gdb-instance-burst instance) string))
671 ;; Start accumulating output for the gud buffer
672 (output ""))
673
674 ;; Process all the complete markers in this chunk.
675
676 (while (string-match "\n\032\032\\(.*\\)\n" burst)
677 (let ((annotation (substring burst
678 (match-beginning 1)
679 (match-end 1))))
680
681 ;; Stuff prior to the match is just ordinary output.
682 ;; It is either concatenated to OUTPUT or directed
683 ;; elsewhere.
684 (setq output
685 (gdb-concat-output
686 instance
687 output
688 (substring burst 0 (match-beginning 0))))
689
690 ;; Take that stuff off the burst.
691 (setq burst (substring burst (match-end 0)))
692
693 ;; Parse the tag from the annotation, and maybe its arguments.
694 (string-match "\\(\\S-*\\) ?\\(.*\\)" annotation)
695 (let* ((annotation-type (substring annotation
696 (match-beginning 1)
697 (match-end 1)))
698 (annotation-arguments (substring annotation
699 (match-beginning 2)
700 (match-end 2)))
701 (annotation-rule (assoc annotation-type
702 gdb-annotation-rules)))
703 ;; Call the handler for this annotation.
704 (dbug 'annotation
705 '(lambda () (insert annotation-type "\n")))
706 (if annotation-rule
707 (funcall (car (cdr annotation-rule))
708 instance
709 annotation-arguments)
710 ;; Else the annotation is not recognized. Ignore it silently,
711 ;; so that GDB can add new annotations without causing
712 ;; us to blow up.
713 ))))
714
715
716 ;; Does the remaining text end in a partial line?
717 ;; If it does, then keep part of the burst until we get more.
718 (if (string-match "\n\\'\\|\n\032\\'\\|\n\032\032.*\\'"
719 burst)
720 (progn
721 ;; Everything before the potential marker start can be output.
722 (setq output
723 (gdb-concat-output
724 instance
725 output
726 (substring burst 0 (match-beginning 0))))
727
728 ;; Everything after, we save, to combine with later input.
729 (setq burst (substring burst (match-beginning 0))))
730
731 ;; In case we know the burst contains no partial annotations:
732 (progn
733 (setq output (gdb-concat-output instance output burst))
734 (setq burst "")))
735
736 ;; Save the remaining burst for the next call to this function.
737 (set-gdb-instance-burst instance burst)
738 output)))
739
740 (defun gdb-concat-output (instance so-far new)
741 (let ((sink (gdb-instance-output-sink instance)))
742 (cond
743 ((eq sink 'user) (concat so-far new))
744 ((or (eq sink 'pre-emacs) (eq sink 'post-emacs)) so-far)
745 ((eq sink 'emacs)
746 (gdb-append-to-partial-output instance new)
747 so-far)
748 (t (error "Bogon output sink %d" sink)))))
749
750 (defun gdb-append-to-partial-output (instance string)
751 (save-excursion
752 (set-buffer
753 (gdb-get-create-instance-buffer
754 instance 'gdb-partial-output-buffer))
755 (goto-char (point-max))
756 (insert string)))
757
758 (defun gdb-clear-partial-output (instance)
759 (save-excursion
760 (set-buffer
761 (gdb-get-create-instance-buffer
762 instance 'gdb-partial-output-buffer))
763 (kill-region (point-min) (point-max))))
764
765 ;;
766 ;; Instance Buffers.
767 ;;
768 ;; These are buffers that display output from gdb (or other
769 ;; information) that we want to filter out from the general gdb
770 ;; interaction buffer. (e.g. the backtrace buffer).
771 ;;
772 ;; The general pattern is that each kind of buffer is associated
773 ;; with a rule to refresh its contents. The rule includes one
774 ;; function to call when it is noticed that the buffer is out of
775 ;; date. Typically, that will queue up an idle command for gdb.
776 ;;
777 ;; Every type of instance buffer is identified by some atom
778 ;; such as gdb-frames-buffer. An instance and one of these
779 ;; atoms uniquely identifies a particular instance buffer.
780 ;;
781
782 (defun gdb-get-instance-buffer (instance key)
783 "Return the instance buffer for `instance' tagged with type `key'.
784 The key should be one of the cars in `gdb-instance-buffer-rules-assoc'."
785 (save-excursion
786 (gdb-look-for-tagged-buffer instance key (buffer-list))))
787
788 (defun gdb-get-create-instance-buffer (instance key)
789 "Create a new gdb instance buffer of the type specified by `key'.
790 The key should be one of the cars in `gdb-instance-buffer-rules-assoc'."
791 (or (gdb-get-instance-buffer instance key)
792 (let* ((rules (assoc key gdb-instance-buffer-rules-assoc))
793 (name (funcall (gdb-rules-name-maker rules) instance))
794 (new (get-buffer-create name)))
795 (save-excursion
796 (set-buffer new)
797 (make-variable-buffer-local 'gdb-buffer-type)
798 (setq gdb-buffer-type key)
799 (make-variable-buffer-local 'gdb-buffer-instance)
800 (setq gdb-buffer-instance instance)
801 new))))
802
803 (defun gdb-rules-name-maker (rules) (car (cdr rules)))
804
805 (defun gdb-look-for-tagged-buffer (instance key bufs)
806 (and bufs
807 (set-buffer (car bufs))
808 (or (and (eq gdb-buffer-instance instance)
809 (eq gdb-buffer-type key)
810 (car bufs))
811 (gdb-look-for-tagged-buffer instance key (cdr bufs)))))
812
813 (defun gdb-instance-buffer-p (buf)
814 (save-excursion
815 (set-buffer buf)
816 (and gdb-buffer-type
817 (not (eq gdb-buffer-type 'gud)))))
818
819 ;;
820 ;; partial-output buffers
821 ;;
822 ;; These accumulate output from a command executed on
823 ;; behalf of emacs (rather than the user). When the
824 ;; output is complete, the hooks bound to `gdb-command-complete-hooks'
825 ;; are called (and then cleared). Usually these hooks are not
826 ;; set directly but rather implicitly according to the
827 ;; instance-buffer rules.
828 ;;
829
830 (defun gdb-partial-output-name (instance)
831 (concat "*partial-output-"
832 (gdb-instance-target-string instance)
833 "*"))
834
835 ;;
836 ;; Backtrace buffers
837 ;;
838
839 (defun gdb-frames-buffer-name (instance)
840 (save-excursion
841 (set-buffer (process-buffer (gdb-instance-process instance)))
842 (concat "*stack frames of "
843 (gdb-instance-target-string instance) "*")))
844
845 (defun gud-display-frames-buffer (instance)
846 (interactive (list (gdb-needed-default-instance)))
847 (gud-display-buffer
848 (gdb-get-create-instance-buffer instance
849 'gdb-frames-buffer)))
850
851 ;;
852 ;; Breakpoint buffers
853 ;;
854
855 (defun gdb-breakpoints-buffer-name (instance)
856 (save-excursion
857 (set-buffer (process-buffer (gdb-instance-process instance)))
858 (concat "*breakpoints of " (gdb-instance-target-string instance) "*")))
859
860 (defun gud-display-breakpoints-buffer (instance)
861 (interactive (list (gdb-needed-default-instance)))
862 (gud-display-buffer
863 (gdb-get-create-instance-buffer instance
864 'gdb-breakpoints-buffer)))
865
866
867 ;;
868 ;; Registers buffers
869 ;;
870
871 (defun gdb-registers-buffer-name (instance)
872 (save-excursion
873 (set-buffer (process-buffer (gdb-instance-process instance)))
874 (concat "*registers of " (gdb-instance-target-string instance) "*")))
875
876 (defun gud-display-registers-buffer (instance)
877 (interactive (list (gdb-needed-default-instance)))
878 (gud-display-buffer
879 (gdb-get-create-instance-buffer instance
880 'gdb-registers-buffer)))
881
882 \f
883 ;;; FIXME: This should only return true for buffers in the current instance
884 (defun gud-protected-buffer-p (buffer)
885 "Is BUFFER a buffer which we want to leave displayed?"
886 (save-excursion
887 (set-buffer buffer)
888 (or (eq gdb-buffer-type 'gdb-registers-buffer)
889 (eq gdb-buffer-type 'gdb-breakpoints-buffer)
890 (eq gdb-buffer-type 'gdb-frames-buffer)
891 (eq gdb-buffer-type 'gud))))
892 ;;;
893 ;;; The way we abuse the dedicated-p flag is pretty gross, but seems
894 ;;; to do the right thing. Seeing as there is no way for Lisp code to
895 ;;; get at the use_time field of a window, I'm not sure there exists a
896 ;;; more elegant solution without writing C code.
897
898 (defun gud-display-buffer (buf)
899 (let ((must-split nil))
900 (unwind-protect
901 (progn
902 (walk-windows
903 '(lambda (win)
904 (if (gud-protected-buffer-p (window-buffer win))
905 (set-window-dedicated-p win t)
906 )))
907 ;; This is more or less just the same as display-buffer; the
908 ;; big difference is that we split the largest window rather
909 ;; than the lru window. Various settings and hair which
910 ;; display-buffer has are omitted, for simplicity.
911 (if (not (get-buffer-window buf nil))
912 (let ((window (get-lru-window nil)))
913 (if window
914 (set-window-buffer window buf)
915 (setq must-split t)
916 )))
917 )
918 (walk-windows
919 '(lambda (win)
920 (if (gud-protected-buffer-p (window-buffer win))
921 (set-window-dedicated-p win nil)
922 )))
923 )
924 (if must-split
925 (set-window-buffer (split-window (get-largest-window)) buf))
926 ))
927 \f
928 (defun gud-gdb-find-file (f)
929 (find-file-noselect f))
930
931 ;;;###autoload
932 (defun gdb (command-line)
933 "Run gdb on program FILE in buffer *gud-FILE*.
934 The directory containing FILE becomes the initial working directory
935 and source-file directory for your debugger."
936 (interactive
937 (list (read-from-minibuffer "Run gdb (like this): "
938 (if (consp gud-gdb-history)
939 (car gud-gdb-history)
940 "gdb ")
941 nil nil
942 '(gud-gdb-history . 1))))
943 (gud-overload-functions
944 '((gud-massage-args . gud-gdb-massage-args)
945 (gud-marker-filter . gud-gdb-marker-filter)
946 (gud-find-file . gud-gdb-find-file)
947 ))
948
949 (gud-common-init command-line)
950
951 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.")
952 (gud-def gud-tbreak "tbreak %f:%l" "\C-t" "Set breakpoint at current line.")
953 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
954 (gud-def gud-step "step %p" "\C-s" "Step one source line with display.")
955 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
956 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
957 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
958 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
959 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
960 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
961 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
962
963 (setq comint-prompt-regexp "^(.*gdb[+]?) *")
964 (setq comint-input-sender 'gdb-send)
965 (run-hooks 'gdb-mode-hook)
966 (make-gdb-instance (get-buffer-process (current-buffer)))
967 )
968
969 \f
970 ;; ======================================================================
971 ;; sdb functions
972
973 ;;; History of argument lists passed to sdb.
974 (defvar gud-sdb-history nil)
975
976 (defvar gud-sdb-needs-tags (not (file-exists-p "/var"))
977 "If nil, we're on a System V Release 4 and don't need the tags hack.")
978
979 (defvar gud-sdb-lastfile nil)
980
981 (defun gud-sdb-massage-args (file args)
982 (cons file args))
983
984 (defun gud-sdb-marker-filter (string)
985 (cond
986 ;; System V Release 3.2 uses this format
987 ((string-match "\\(^0x\\w* in \\|^\\|\n\\)\\([^:\n]*\\):\\([0-9]*\\):.*\n"
988 string)
989 (setq gud-last-frame
990 (cons
991 (substring string (match-beginning 2) (match-end 2))
992 (string-to-int
993 (substring string (match-beginning 3) (match-end 3))))))
994 ;; System V Release 4.0
995 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n"
996 string)
997 (setq gud-sdb-lastfile
998 (substring string (match-beginning 2) (match-end 2))))
999 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):" string))
1000 (setq gud-last-frame
1001 (cons
1002 gud-sdb-lastfile
1003 (string-to-int
1004 (substring string (match-beginning 1) (match-end 1))))))
1005 (t
1006 (setq gud-sdb-lastfile nil)))
1007 string)
1008
1009 (defun gud-sdb-find-file (f)
1010 (if gud-sdb-needs-tags
1011 (find-tag-noselect f)
1012 (find-file-noselect f)))
1013
1014 ;;;###autoload
1015 (defun sdb (command-line)
1016 "Run sdb on program FILE in buffer *gud-FILE*.
1017 The directory containing FILE becomes the initial working directory
1018 and source-file directory for your debugger."
1019 (interactive
1020 (list (read-from-minibuffer "Run sdb (like this): "
1021 (if (consp gud-sdb-history)
1022 (car gud-sdb-history)
1023 "sdb ")
1024 nil nil
1025 '(gud-sdb-history . 1))))
1026 (if (and gud-sdb-needs-tags
1027 (not (and (boundp 'tags-file-name) (file-exists-p tags-file-name))))
1028 (error "The sdb support requires a valid tags table to work."))
1029 (gud-overload-functions '((gud-massage-args . gud-sdb-massage-args)
1030 (gud-marker-filter . gud-sdb-marker-filter)
1031 (gud-find-file . gud-sdb-find-file)
1032 ))
1033
1034 (gud-common-init command-line)
1035
1036 (gud-def gud-break "%l b" "\C-b" "Set breakpoint at current line.")
1037 (gud-def gud-tbreak "%l c" "\C-t" "Set temporary breakpoint at current line.")
1038 (gud-def gud-remove "%l d" "\C-d" "Remove breakpoint at current line")
1039 (gud-def gud-step "s %p" "\C-s" "Step one source line with display.")
1040 (gud-def gud-stepi "i %p" "\C-i" "Step one instruction with display.")
1041 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1042 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1043 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.")
1044
1045 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*")
1046 (run-hooks 'sdb-mode-hook)
1047 )
1048 \f
1049 ;; ======================================================================
1050 ;; dbx functions
1051
1052 ;;; History of argument lists passed to dbx.
1053 (defvar gud-dbx-history nil)
1054
1055 (defun gud-dbx-massage-args (file args)
1056 (cons file args))
1057
1058 (defun gud-dbx-marker-filter (string)
1059 (if (or (string-match
1060 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1061 string)
1062 (string-match
1063 "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\""
1064 string))
1065 (setq gud-last-frame
1066 (cons
1067 (substring string (match-beginning 2) (match-end 2))
1068 (string-to-int
1069 (substring string (match-beginning 1) (match-end 1))))))
1070 string)
1071
1072 (defun gud-dbx-find-file (f)
1073 (find-file-noselect f))
1074
1075 ;;;###autoload
1076 (defun dbx (command-line)
1077 "Run dbx on program FILE in buffer *gud-FILE*.
1078 The directory containing FILE becomes the initial working directory
1079 and source-file directory for your debugger."
1080 (interactive
1081 (list (read-from-minibuffer "Run dbx (like this): "
1082 (if (consp gud-dbx-history)
1083 (car gud-dbx-history)
1084 "dbx ")
1085 nil nil
1086 '(gud-dbx-history . 1))))
1087 (gud-overload-functions '((gud-massage-args . gud-dbx-massage-args)
1088 (gud-marker-filter . gud-dbx-marker-filter)
1089 (gud-find-file . gud-dbx-find-file)
1090 ))
1091
1092 (gud-common-init command-line)
1093
1094 (gud-def gud-break "file \"%d%f\"\nstop at %l"
1095 "\C-b" "Set breakpoint at current line.")
1096 ;; (gud-def gud-break "stop at \"%f\":%l"
1097 ;; "\C-b" "Set breakpoint at current line.")
1098 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
1099 (gud-def gud-step "step %p" "\C-s" "Step one line with display.")
1100 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")
1101 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
1102 (gud-def gud-cont "cont" "\C-r" "Continue with display.")
1103 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1104 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1105 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.")
1106
1107 (setq comint-prompt-regexp "^[^)]*dbx) *")
1108 (run-hooks 'dbx-mode-hook)
1109 )
1110 \f
1111 ;; ======================================================================
1112 ;; xdb (HP PARISC debugger) functions
1113
1114 ;;; History of argument lists passed to xdb.
1115 (defvar gud-xdb-history nil)
1116
1117 (defvar gud-xdb-directories nil
1118 "*A list of directories that xdb should search for source code.
1119 If nil, only source files in the program directory
1120 will be known to xdb.
1121
1122 The file names should be absolute, or relative to the directory
1123 containing the executable being debugged.")
1124
1125 (defun gud-xdb-massage-args (file args)
1126 (nconc (let ((directories gud-xdb-directories)
1127 (result nil))
1128 (while directories
1129 (setq result (cons (car directories) (cons "-d" result)))
1130 (setq directories (cdr directories)))
1131 (nreverse (cons file result)))
1132 args))
1133
1134 (defun gud-xdb-file-name (f)
1135 "Transform a relative pathname to a full pathname in xdb mode"
1136 (let ((result nil))
1137 (if (file-exists-p f)
1138 (setq result (expand-file-name f))
1139 (let ((directories gud-xdb-directories))
1140 (while directories
1141 (let ((path (concat (car directories) "/" f)))
1142 (if (file-exists-p path)
1143 (setq result (expand-file-name path)
1144 directories nil)))
1145 (setq directories (cdr directories)))))
1146 result))
1147
1148 ;; xdb does not print the lines all at once, so we have to accumulate them
1149 (defvar gud-xdb-accumulation "")
1150
1151 (defun gud-xdb-marker-filter (string)
1152 (let (result)
1153 (if (or (string-match comint-prompt-regexp string)
1154 (string-match ".*\012" string))
1155 (setq result (concat gud-xdb-accumulation string)
1156 gud-xdb-accumulation "")
1157 (setq gud-xdb-accumulation (concat gud-xdb-accumulation string)))
1158 (if result
1159 (if (or (string-match "\\([^\n \t:]+\\): [^:]+: \\([0-9]+\\):" result)
1160 (string-match "[^: \t]+:[ \t]+\\([^:]+\\): [^:]+: \\([0-9]+\\):"
1161 result))
1162 (let ((line (string-to-int
1163 (substring result (match-beginning 2) (match-end 2))))
1164 (file (gud-xdb-file-name
1165 (substring result (match-beginning 1) (match-end 1)))))
1166 (if file
1167 (setq gud-last-frame (cons file line))))))
1168 (or result "")))
1169
1170 (defun gud-xdb-find-file (f)
1171 (let ((realf (gud-xdb-file-name f)))
1172 (if realf (find-file-noselect realf))))
1173
1174 ;;;###autoload
1175 (defun xdb (command-line)
1176 "Run xdb on program FILE in buffer *gud-FILE*.
1177 The directory containing FILE becomes the initial working directory
1178 and source-file directory for your debugger.
1179
1180 You can set the variable 'gud-xdb-directories' to a list of program source
1181 directories if your program contains sources from more than one directory."
1182 (interactive
1183 (list (read-from-minibuffer "Run xdb (like this): "
1184 (if (consp gud-xdb-history)
1185 (car gud-xdb-history)
1186 "xdb ")
1187 nil nil
1188 '(gud-xdb-history . 1))))
1189 (gud-overload-functions '((gud-massage-args . gud-xdb-massage-args)
1190 (gud-marker-filter . gud-xdb-marker-filter)
1191 (gud-find-file . gud-xdb-find-file)))
1192
1193 (gud-common-init command-line)
1194
1195 (gud-def gud-break "b %f:%l" "\C-b" "Set breakpoint at current line.")
1196 (gud-def gud-tbreak "b %f:%l\\t" "\C-t"
1197 "Set temporary breakpoint at current line.")
1198 (gud-def gud-remove "db" "\C-d" "Remove breakpoint at current line")
1199 (gud-def gud-step "s %p" "\C-s" "Step one line with display.")
1200 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1201 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1202 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1203 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1204 (gud-def gud-finish "bu\\t" "\C-f" "Finish executing current function.")
1205 (gud-def gud-print "p %e" "\C-p" "Evaluate C expression at point.")
1206
1207 (setq comint-prompt-regexp "^>")
1208 (make-local-variable 'gud-xdb-accumulation)
1209 (setq gud-xdb-accumulation "")
1210 (run-hooks 'xdb-mode-hook))
1211 \f
1212 ;; ======================================================================
1213 ;; perldb functions
1214
1215 ;;; History of argument lists passed to perldb.
1216 (defvar gud-perldb-history nil)
1217
1218 (defun gud-perldb-massage-args (file args)
1219 (cons "-d" (cons file (cons "-emacs" args))))
1220
1221 ;; There's no guarantee that Emacs will hand the filter the entire
1222 ;; marker at once; it could be broken up across several strings. We
1223 ;; might even receive a big chunk with several markers in it. If we
1224 ;; receive a chunk of text which looks like it might contain the
1225 ;; beginning of a marker, we save it here between calls to the
1226 ;; filter.
1227 (defvar gud-perldb-marker-acc "")
1228
1229 (defun gud-perldb-marker-filter (string)
1230 (save-match-data
1231 (setq gud-perldb-marker-acc (concat gud-perldb-marker-acc string))
1232 (let ((output ""))
1233
1234 ;; Process all the complete markers in this chunk.
1235 (while (string-match "^\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n"
1236 gud-perldb-marker-acc)
1237 (setq
1238
1239 ;; Extract the frame position from the marker.
1240 gud-last-frame
1241 (cons (substring gud-perldb-marker-acc (match-beginning 1) (match-end 1))
1242 (string-to-int (substring gud-perldb-marker-acc
1243 (match-beginning 2)
1244 (match-end 2))))
1245
1246 ;; Append any text before the marker to the output we're going
1247 ;; to return - we don't include the marker in this text.
1248 output (concat output
1249 (substring gud-perldb-marker-acc 0 (match-beginning 0)))
1250
1251 ;; Set the accumulator to the remaining text.
1252 gud-perldb-marker-acc (substring gud-perldb-marker-acc (match-end 0))))
1253
1254 ;; Does the remaining text look like it might end with the
1255 ;; beginning of another marker? If it does, then keep it in
1256 ;; gud-perldb-marker-acc until we receive the rest of it. Since we
1257 ;; know the full marker regexp above failed, it's pretty simple to
1258 ;; test for marker starts.
1259 (if (string-match "^\032.*\\'" gud-perldb-marker-acc)
1260 (progn
1261 ;; Everything before the potential marker start can be output.
1262 (setq output (concat output (substring gud-perldb-marker-acc
1263 0 (match-beginning 0))))
1264
1265 ;; Everything after, we save, to combine with later input.
1266 (setq gud-perldb-marker-acc
1267 (substring gud-perldb-marker-acc (match-beginning 0))))
1268
1269 (setq output (concat output gud-perldb-marker-acc)
1270 gud-perldb-marker-acc ""))
1271
1272 output)))
1273
1274 (defun gud-perldb-find-file (f)
1275 (find-file-noselect f))
1276
1277 ;;;###autoload
1278 (defun perldb (command-line)
1279 "Run perldb on program FILE in buffer *gud-FILE*.
1280 The directory containing FILE becomes the initial working directory
1281 and source-file directory for your debugger."
1282 (interactive
1283 (list (read-from-minibuffer "Run perldb (like this): "
1284 (if (consp gud-perldb-history)
1285 (car gud-perldb-history)
1286 "perl ")
1287 nil nil
1288 '(gud-perldb-history . 1))))
1289 (gud-overload-functions '((gud-massage-args . gud-perldb-massage-args)
1290 (gud-marker-filter . gud-perldb-marker-filter)
1291 (gud-find-file . gud-perldb-find-file)
1292 ))
1293
1294 (gud-common-init command-line)
1295
1296 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.")
1297 (gud-def gud-remove "d %l" "\C-d" "Remove breakpoint at current line")
1298 (gud-def gud-step "s" "\C-s" "Step one source line with display.")
1299 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).")
1300 (gud-def gud-cont "c" "\C-r" "Continue with display.")
1301 ; (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
1302 ; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
1303 ; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
1304 (gud-def gud-print "%e" "\C-p" "Evaluate perl expression at point.")
1305
1306 (setq comint-prompt-regexp "^ DB<[0-9]+> ")
1307 (run-hooks 'perldb-mode-hook)
1308 )
1309
1310 ;;
1311 ;; End of debugger-specific information
1312 ;;
1313
1314 \f
1315 ;;; When we send a command to the debugger via gud-call, it's annoying
1316 ;;; to see the command and the new prompt inserted into the debugger's
1317 ;;; buffer; we have other ways of knowing the command has completed.
1318 ;;;
1319 ;;; If the buffer looks like this:
1320 ;;; --------------------
1321 ;;; (gdb) set args foo bar
1322 ;;; (gdb) -!-
1323 ;;; --------------------
1324 ;;; (the -!- marks the location of point), and we type `C-x SPC' in a
1325 ;;; source file to set a breakpoint, we want the buffer to end up like
1326 ;;; this:
1327 ;;; --------------------
1328 ;;; (gdb) set args foo bar
1329 ;;; Breakpoint 1 at 0x92: file make-docfile.c, line 49.
1330 ;;; (gdb) -!-
1331 ;;; --------------------
1332 ;;; Essentially, the old prompt is deleted, and the command's output
1333 ;;; and the new prompt take its place.
1334 ;;;
1335 ;;; Not echoing the command is easy enough; you send it directly using
1336 ;;; process-send-string, and it never enters the buffer. However,
1337 ;;; getting rid of the old prompt is trickier; you don't want to do it
1338 ;;; when you send the command, since that will result in an annoying
1339 ;;; flicker as the prompt is deleted, redisplay occurs while Emacs
1340 ;;; waits for a response from the debugger, and the new prompt is
1341 ;;; inserted. Instead, we'll wait until we actually get some output
1342 ;;; from the subprocess before we delete the prompt. If the command
1343 ;;; produced no output other than a new prompt, that prompt will most
1344 ;;; likely be in the first chunk of output received, so we will delete
1345 ;;; the prompt and then replace it with an identical one. If the
1346 ;;; command produces output, the prompt is moving anyway, so the
1347 ;;; flicker won't be annoying.
1348 ;;;
1349 ;;; So - when we want to delete the prompt upon receipt of the next
1350 ;;; chunk of debugger output, we position gud-delete-prompt-marker at
1351 ;;; the start of the prompt; the process filter will notice this, and
1352 ;;; delete all text between it and the process output marker. If
1353 ;;; gud-delete-prompt-marker points nowhere, we leave the current
1354 ;;; prompt alone.
1355 (defvar gud-delete-prompt-marker nil)
1356
1357 \f
1358 (defvar gdbish-comint-mode-map (copy-keymap comint-mode-map))
1359 (define-key gdbish-comint-mode-map "\C-c\M-\C-r" 'gud-display-registers-buffer)
1360 (define-key gdbish-comint-mode-map "\C-c\M-\C-f" 'gud-display-frames-buffer)
1361 (define-key gdbish-comint-mode-map "\C-c\M-\C-b" 'gud-display-breakpoints-buffer)
1362
1363 (defun gud-mode ()
1364 "Major mode for interacting with an inferior debugger process.
1365
1366 You start it up with one of the commands M-x gdb, M-x sdb, M-x dbx,
1367 or M-x xdb. Each entry point finishes by executing a hook; `gdb-mode-hook',
1368 `sdb-mode-hook', `dbx-mode-hook' or `xdb-mode-hook' respectively.
1369
1370 After startup, the following commands are available in both the GUD
1371 interaction buffer and any source buffer GUD visits due to a breakpoint stop
1372 or step operation:
1373
1374 \\[gud-break] sets a breakpoint at the current file and line. In the
1375 GUD buffer, the current file and line are those of the last breakpoint or
1376 step. In a source buffer, they are the buffer's file and current line.
1377
1378 \\[gud-remove] removes breakpoints on the current file and line.
1379
1380 \\[gud-refresh] displays in the source window the last line referred to
1381 in the gud buffer.
1382
1383 \\[gud-step], \\[gud-next], and \\[gud-stepi] do a step-one-line,
1384 step-one-line (not entering function calls), and step-one-instruction
1385 and then update the source window with the current file and position.
1386 \\[gud-cont] continues execution.
1387
1388 \\[gud-print] tries to find the largest C lvalue or function-call expression
1389 around point, and sends it to the debugger for value display.
1390
1391 The above commands are common to all supported debuggers except xdb which
1392 does not support stepping instructions.
1393
1394 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break],
1395 except that the breakpoint is temporary; that is, it is removed when
1396 execution stops on it.
1397
1398 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack
1399 frame. \\[gud-down] drops back down through one.
1400
1401 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from
1402 the current function and stops.
1403
1404 All the keystrokes above are accessible in the GUD buffer
1405 with the prefix C-c, and in all buffers through the prefix C-x C-a.
1406
1407 All pre-defined functions for which the concept make sense repeat
1408 themselves the appropriate number of times if you give a prefix
1409 argument.
1410
1411 You may use the `gud-def' macro in the initialization hook to define other
1412 commands.
1413
1414 Other commands for interacting with the debugger process are inherited from
1415 comint mode, which see."
1416 (interactive)
1417 (comint-mode)
1418 (setq major-mode 'gud-mode)
1419 (setq mode-name "Debugger")
1420 (setq mode-line-process '(": %s"))
1421 (use-local-map (copy-keymap gdbish-comint-mode-map))
1422 (make-local-variable 'gud-last-frame)
1423 (setq gud-last-frame nil)
1424 (make-local-variable 'comint-prompt-regexp)
1425 (make-local-variable 'gud-delete-prompt-marker)
1426 (setq gud-delete-prompt-marker (make-marker))
1427 (run-hooks 'gud-mode-hook)
1428 )
1429
1430 (defvar gud-comint-buffer nil)
1431
1432 ;; Chop STRING into words separated by SPC or TAB and return a list of them.
1433 (defun gud-chop-words (string)
1434 (let ((i 0) (beg 0)
1435 (len (length string))
1436 (words nil))
1437 (while (< i len)
1438 (if (memq (aref string i) '(?\t ? ))
1439 (progn
1440 (setq words (cons (substring string beg i) words)
1441 beg (1+ i))
1442 (while (and (< beg len) (memq (aref string beg) '(?\t ? )))
1443 (setq beg (1+ beg)))
1444 (setq i (1+ beg)))
1445 (setq i (1+ i))))
1446 (if (< beg len)
1447 (setq words (cons (substring string beg) words)))
1448 (nreverse words)))
1449
1450 (defvar gud-target-name "--unknown--"
1451 "The apparent name of the program being debugged in a gud buffer.
1452 For sure this the root string used in smashing together the gud
1453 buffer's name, even if that doesn't happen to be the name of a
1454 program.")
1455
1456 ;; Perform initializations common to all debuggers.
1457 (defun gud-common-init (command-line)
1458 (let* ((words (gud-chop-words command-line))
1459 (program (car words))
1460 (file-word (let ((w (cdr words)))
1461 (while (and w (= ?- (aref (car w) 0)))
1462 (setq w (cdr w)))
1463 (car w)))
1464 (args (delq file-word (cdr words)))
1465 (file (expand-file-name file-word))
1466 (filepart (file-name-nondirectory file))
1467 (buffer-name (concat "*gud-" filepart "*")))
1468 (switch-to-buffer buffer-name)
1469 (setq default-directory (file-name-directory file))
1470 (or (bolp) (newline))
1471 (insert "Current directory is " default-directory "\n")
1472 (apply 'make-comint (concat "gud-" filepart) program nil
1473 (gud-massage-args file args))
1474 (gud-mode)
1475 (make-variable-buffer-local 'gud-target-name)
1476 (setq gud-target-name filepart))
1477 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter)
1478 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel)
1479 (gud-set-buffer)
1480 )
1481
1482 (defun gud-set-buffer ()
1483 (cond ((eq major-mode 'gud-mode)
1484 (setq gud-comint-buffer (current-buffer)))))
1485
1486 ;; These functions are responsible for inserting output from your debugger
1487 ;; into the buffer. The hard work is done by the method that is
1488 ;; the value of gud-marker-filter.
1489
1490 (defun gud-filter (proc string)
1491 ;; Here's where the actual buffer insertion is done
1492 (let ((inhibit-quit t))
1493 (save-excursion
1494 (set-buffer (process-buffer proc))
1495 (let (moving output-after-point)
1496 (save-excursion
1497 (goto-char (process-mark proc))
1498 ;; If we have been so requested, delete the debugger prompt.
1499 (if (marker-buffer gud-delete-prompt-marker)
1500 (progn
1501 (delete-region (point) gud-delete-prompt-marker)
1502 (set-marker gud-delete-prompt-marker nil)))
1503 (insert-before-markers (gud-marker-filter string))
1504 (setq moving (= (point) (process-mark proc)))
1505 (setq output-after-point (< (point) (process-mark proc)))
1506 ;; Check for a filename-and-line number.
1507 ;; Don't display the specified file
1508 ;; unless (1) point is at or after the position where output appears
1509 ;; and (2) this buffer is on the screen.
1510 (if (and gud-last-frame
1511 (not output-after-point)
1512 (get-buffer-window (current-buffer)))
1513 (gud-display-frame)))
1514 (if moving (goto-char (process-mark proc)))))))
1515
1516 (defun gud-sentinel (proc msg)
1517 (cond ((null (buffer-name (process-buffer proc)))
1518 ;; buffer killed
1519 ;; Stop displaying an arrow in a source file.
1520 (setq overlay-arrow-position nil)
1521 (set-process-buffer proc nil))
1522 ((memq (process-status proc) '(signal exit))
1523 ;; Stop displaying an arrow in a source file.
1524 (setq overlay-arrow-position nil)
1525 ;; Fix the mode line.
1526 (setq mode-line-process
1527 (concat ": "
1528 (symbol-name (process-status proc))))
1529 (let* ((obuf (current-buffer)))
1530 ;; save-excursion isn't the right thing if
1531 ;; process-buffer is current-buffer
1532 (unwind-protect
1533 (progn
1534 ;; Write something in *compilation* and hack its mode line,
1535 (set-buffer (process-buffer proc))
1536 ;; Force mode line redisplay soon
1537 (set-buffer-modified-p (buffer-modified-p))
1538 (if (eobp)
1539 (insert ?\n mode-name " " msg)
1540 (save-excursion
1541 (goto-char (point-max))
1542 (insert ?\n mode-name " " msg)))
1543 ;; If buffer and mode line will show that the process
1544 ;; is dead, we can delete it now. Otherwise it
1545 ;; will stay around until M-x list-processes.
1546 (delete-process proc))
1547 ;; Restore old buffer, but don't restore old point
1548 ;; if obuf is the gud buffer.
1549 (set-buffer obuf))))))
1550
1551 (defun gud-display-frame ()
1552 "Find and obey the last filename-and-line marker from the debugger.
1553 Obeying it means displaying in another window the specified file and line."
1554 (interactive)
1555 (if gud-last-frame
1556 (progn
1557 (gud-set-buffer)
1558 (gud-display-line (car gud-last-frame) (cdr gud-last-frame))
1559 (setq gud-last-last-frame gud-last-frame
1560 gud-last-frame nil))))
1561
1562 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
1563 ;; and that its line LINE is visible.
1564 ;; Put the overlay-arrow on the line LINE in that buffer.
1565 ;; Most of the trickiness in here comes from wanting to preserve the current
1566 ;; region-restriction if that's possible. We use an explicit display-buffer
1567 ;; to get around the fact that this is called inside a save-excursion.
1568
1569 (defun gud-display-line (true-file line)
1570 (let* ((buffer (gud-find-file true-file))
1571 (window (gud-display-buffer buffer))
1572 (pos))
1573 ;;; (if (equal buffer (current-buffer))
1574 ;;; nil
1575 ;;; (setq buffer-read-only nil))
1576 (save-excursion
1577 ;;; (setq buffer-read-only t)
1578 (set-buffer buffer)
1579 (save-restriction
1580 (widen)
1581 (goto-line line)
1582 (setq pos (point))
1583 (setq overlay-arrow-string "=>")
1584 (or overlay-arrow-position
1585 (setq overlay-arrow-position (make-marker)))
1586 (set-marker overlay-arrow-position (point) (current-buffer)))
1587 (cond ((or (< pos (point-min)) (> pos (point-max)))
1588 (widen)
1589 (goto-char pos))))
1590 (set-window-point window overlay-arrow-position)))
1591
1592 ;;; The gud-call function must do the right thing whether its invoking
1593 ;;; keystroke is from the GUD buffer itself (via major-mode binding)
1594 ;;; or a C buffer. In the former case, we want to supply data from
1595 ;;; gud-last-frame. Here's how we do it:
1596
1597 (defun gud-format-command (str arg)
1598 (let ((insource (not (eq (current-buffer) gud-comint-buffer))))
1599 (if (string-match "\\(.*\\)%f\\(.*\\)" str)
1600 (setq str (concat
1601 (substring str (match-beginning 1) (match-end 1))
1602 (file-name-nondirectory (if insource
1603 (buffer-file-name)
1604 (car gud-last-frame)))
1605 (substring str (match-beginning 2) (match-end 2)))))
1606 (if (string-match "\\(.*\\)%d\\(.*\\)" str)
1607 (setq str (concat
1608 (substring str (match-beginning 1) (match-end 1))
1609 (file-name-directory (if insource
1610 (buffer-file-name)
1611 (car gud-last-frame)))
1612 (substring str (match-beginning 2) (match-end 2)))))
1613 (if (string-match "\\(.*\\)%l\\(.*\\)" str)
1614 (setq str (concat
1615 (substring str (match-beginning 1) (match-end 1))
1616 (if insource
1617 (save-excursion
1618 (beginning-of-line)
1619 (save-restriction (widen)
1620 (1+ (count-lines 1 (point)))))
1621 (cdr gud-last-frame))
1622 (substring str (match-beginning 2) (match-end 2)))))
1623 (if (string-match "\\(.*\\)%e\\(.*\\)" str)
1624 (setq str (concat
1625 (substring str (match-beginning 1) (match-end 1))
1626 (find-c-expr)
1627 (substring str (match-beginning 2) (match-end 2)))))
1628 (if (string-match "\\(.*\\)%a\\(.*\\)" str)
1629 (setq str (concat
1630 (substring str (match-beginning 1) (match-end 1))
1631 (gud-read-address)
1632 (substring str (match-beginning 2) (match-end 2)))))
1633 (if (string-match "\\(.*\\)%p\\(.*\\)" str)
1634 (setq str (concat
1635 (substring str (match-beginning 1) (match-end 1))
1636 (if arg (int-to-string arg) "")
1637 (substring str (match-beginning 2) (match-end 2)))))
1638 )
1639 str
1640 )
1641
1642 (defun gud-read-address ()
1643 "Return a string containing the core-address found in the buffer at point."
1644 (save-excursion
1645 (let ((pt (point)) found begin)
1646 (setq found (if (search-backward "0x" (- pt 7) t) (point)))
1647 (cond
1648 (found (forward-char 2)
1649 (buffer-substring found
1650 (progn (re-search-forward "[^0-9a-f]")
1651 (forward-char -1)
1652 (point))))
1653 (t (setq begin (progn (re-search-backward "[^0-9]")
1654 (forward-char 1)
1655 (point)))
1656 (forward-char 1)
1657 (re-search-forward "[^0-9]")
1658 (forward-char -1)
1659 (buffer-substring begin (point)))))))
1660
1661 (defun gud-call (fmt &optional arg)
1662 (let ((msg (gud-format-command fmt arg)))
1663 (message "Command: %s" msg)
1664 (sit-for 0)
1665 (gud-basic-call msg)))
1666
1667 (defun gud-basic-call (command)
1668 "Invoke the debugger COMMAND displaying source in other window."
1669 (interactive)
1670 (gud-set-buffer)
1671 (let ((command (concat command "\n"))
1672 (proc (get-buffer-process gud-comint-buffer)))
1673
1674 ;; Arrange for the current prompt to get deleted.
1675 (save-excursion
1676 (set-buffer gud-comint-buffer)
1677 (goto-char (process-mark proc))
1678 (beginning-of-line)
1679 (if (looking-at comint-prompt-regexp)
1680 (set-marker gud-delete-prompt-marker (point))))
1681 (process-send-string proc command)))
1682
1683 (defun gud-refresh (&optional arg)
1684 "Fix up a possibly garbled display, and redraw the arrow."
1685 (interactive "P")
1686 (recenter arg)
1687 (or gud-last-frame (setq gud-last-frame gud-last-last-frame))
1688 (gud-display-frame))
1689 \f
1690 ;;; Code for parsing expressions out of C code. The single entry point is
1691 ;;; find-c-expr, which tries to return an lvalue expression from around point.
1692 ;;;
1693 ;;; The rest of this file is a hacked version of gdbsrc.el by
1694 ;;; Debby Ayers <ayers@asc.slb.com>,
1695 ;;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx.
1696
1697 (defun find-c-expr ()
1698 "Returns the C expr that surrounds point."
1699 (interactive)
1700 (save-excursion
1701 (let ((p) (expr) (test-expr))
1702 (setq p (point))
1703 (setq expr (expr-cur))
1704 (setq test-expr (expr-prev))
1705 (while (expr-compound test-expr expr)
1706 (setq expr (cons (car test-expr) (cdr expr)))
1707 (goto-char (car expr))
1708 (setq test-expr (expr-prev)))
1709 (goto-char p)
1710 (setq test-expr (expr-next))
1711 (while (expr-compound expr test-expr)
1712 (setq expr (cons (car expr) (cdr test-expr)))
1713 (setq test-expr (expr-next))
1714 )
1715 (buffer-substring (car expr) (cdr expr)))))
1716
1717 (defun expr-cur ()
1718 "Returns the expr that point is in; point is set to beginning of expr.
1719 The expr is represented as a cons cell, where the car specifies the point in
1720 the current buffer that marks the beginning of the expr and the cdr specifies
1721 the character after the end of the expr."
1722 (let ((p (point)) (begin) (end))
1723 (expr-backward-sexp)
1724 (setq begin (point))
1725 (expr-forward-sexp)
1726 (setq end (point))
1727 (if (>= p end)
1728 (progn
1729 (setq begin p)
1730 (goto-char p)
1731 (expr-forward-sexp)
1732 (setq end (point))
1733 )
1734 )
1735 (goto-char begin)
1736 (cons begin end)))
1737
1738 (defun expr-backward-sexp ()
1739 "Version of `backward-sexp' that catches errors."
1740 (condition-case nil
1741 (backward-sexp)
1742 (error t)))
1743
1744 (defun expr-forward-sexp ()
1745 "Version of `forward-sexp' that catches errors."
1746 (condition-case nil
1747 (forward-sexp)
1748 (error t)))
1749
1750 (defun expr-prev ()
1751 "Returns the previous expr, point is set to beginning of that expr.
1752 The expr is represented as a cons cell, where the car specifies the point in
1753 the current buffer that marks the beginning of the expr and the cdr specifies
1754 the character after the end of the expr"
1755 (let ((begin) (end))
1756 (expr-backward-sexp)
1757 (setq begin (point))
1758 (expr-forward-sexp)
1759 (setq end (point))
1760 (goto-char begin)
1761 (cons begin end)))
1762
1763 (defun expr-next ()
1764 "Returns the following expr, point is set to beginning of that expr.
1765 The expr is represented as a cons cell, where the car specifies the point in
1766 the current buffer that marks the beginning of the expr and the cdr specifies
1767 the character after the end of the expr."
1768 (let ((begin) (end))
1769 (expr-forward-sexp)
1770 (expr-forward-sexp)
1771 (setq end (point))
1772 (expr-backward-sexp)
1773 (setq begin (point))
1774 (cons begin end)))
1775
1776 (defun expr-compound-sep (span-start span-end)
1777 "Returns '.' for '->' & '.', returns ' ' for white space,
1778 returns '?' for other punctuation."
1779 (let ((result ? )
1780 (syntax))
1781 (while (< span-start span-end)
1782 (setq syntax (char-syntax (char-after span-start)))
1783 (cond
1784 ((= syntax ? ) t)
1785 ((= syntax ?.) (setq syntax (char-after span-start))
1786 (cond
1787 ((= syntax ?.) (setq result ?.))
1788 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>))
1789 (setq result ?.)
1790 (setq span-start (+ span-start 1)))
1791 (t (setq span-start span-end)
1792 (setq result ??)))))
1793 (setq span-start (+ span-start 1)))
1794 result))
1795
1796 (defun expr-compound (first second)
1797 "Non-nil if concatenating FIRST and SECOND makes a single C token.
1798 The two exprs are represented as a cons cells, where the car
1799 specifies the point in the current buffer that marks the beginning of the
1800 expr and the cdr specifies the character after the end of the expr.
1801 Link exprs of the form:
1802 Expr -> Expr
1803 Expr . Expr
1804 Expr (Expr)
1805 Expr [Expr]
1806 (Expr) Expr
1807 [Expr] Expr"
1808 (let ((span-start (cdr first))
1809 (span-end (car second))
1810 (syntax))
1811 (setq syntax (expr-compound-sep span-start span-end))
1812 (cond
1813 ((= (car first) (car second)) nil)
1814 ((= (cdr first) (cdr second)) nil)
1815 ((= syntax ?.) t)
1816 ((= syntax ? )
1817 (setq span-start (char-after (- span-start 1)))
1818 (setq span-end (char-after span-end))
1819 (cond
1820 ((= span-start ?) ) t )
1821 ((= span-start ?] ) t )
1822 ((= span-end ?( ) t )
1823 ((= span-end ?[ ) t )
1824 (t nil))
1825 )
1826 (t nil))))
1827
1828 (provide 'gud)
1829
1830 ;;; gud.el ends here
1831
1832 (defun toggle-bp-this-line ()
1833 (interactive)
1834 (save-excursion
1835 (let (bp-num bp-state)
1836 (beginning-of-line 1)
1837 (if (not (looking-at "\\([0-9]*\\)\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)"))
1838 (error "Not recognized as breakpoint line (demo foo).")
1839 (process-send-string
1840 gdb-buffer-process!!!
1841 (concat
1842 (if (eq ?y (char-after (match-beginning 2)))
1843 "server disable "
1844 "server enable ")
1845 (buffer-substring (match-beginning 0)
1846 (match-end 1))
1847 "\n"))))))
1848
1849
This page took 0.066133 seconds and 4 git commands to generate.