1 ;;; edebug.el --- a source-level debugger for Emacs Lisp
3 ;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1999,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
7 ;; Author: Daniel LaLiberte <liberte@holonexus.org>
9 ;; Keywords: lisp, tools, maint
11 ;; This file is part of GNU Emacs.
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.
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.
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/>.
28 ;; This minor mode allows programmers to step through Emacs Lisp
29 ;; source code while executing functions. You can also set
30 ;; breakpoints, trace (stopping at each expression), evaluate
31 ;; expressions as if outside Edebug, reevaluate and display a list of
32 ;; expressions, trap errors normally caught by debug, and display a
33 ;; debug style backtrace.
35 ;;; Minimal Instructions
36 ;; =====================
38 ;; First evaluate a defun with C-M-x, then run the function. Step
39 ;; through the code with SPC, mark breakpoints with b, go until a
40 ;; breakpoint is reached with g, and quit execution with q. Use the
41 ;; "?" command in edebug to describe other commands.
42 ;; See the Emacs Lisp Reference Manual for more details.
44 ;; If you wish to change the default edebug global command prefix, change:
45 ;; (setq edebug-global-prefix "\C-xX")
47 ;; Edebug was written by
52 ;; liberte@holonexus.org
58 (defalias 'edebug-submit-bug-report
'report-emacs-bug
)
63 "A source-level debugger for Emacs Lisp."
67 (defcustom edebug-setup-hook nil
68 "Functions to call before edebug is used.
69 Each time it is set to a new value, Edebug will call those functions
70 once and then reset `edebug-setup-hook' to nil. You could use this
71 to load up Edebug specifications associated with a package you are
72 using, but only when you also use Edebug."
76 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
77 ;; because the byte compiler binds them; as a result, if edebug
78 ;; is first loaded for a require in a compilation, they will be left unbound.
81 (defcustom edebug-all-defs nil
82 "If non-nil, evaluating defining forms instruments for Edebug.
83 This applies to `eval-defun', `eval-region', `eval-buffer', and
84 `eval-current-buffer'. `eval-region' is also called by
85 `eval-last-sexp', and `eval-print-last-sexp'.
87 You can use the command `edebug-all-defs' to toggle the value of this
88 variable. You may wish to make it local to each buffer with
89 \(make-local-variable 'edebug-all-defs) in your
90 `emacs-lisp-mode-hook'."
94 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
95 ;; because the byte compiler binds them; as a result, if edebug
96 ;; is first loaded for a require in a compilation, they will be left unbound.
99 (defcustom edebug-all-forms nil
100 "Non-nil means evaluation of all forms will instrument for Edebug.
101 This doesn't apply to loading or evaluations in the minibuffer.
102 Use the command `edebug-all-forms' to toggle the value of this option."
106 (defcustom edebug-eval-macro-args nil
107 "Non-nil means all macro call arguments may be evaluated.
108 If this variable is nil, the default, Edebug will *not* wrap
109 macro call arguments as if they will be evaluated.
110 For each macro, an `edebug-form-spec' overrides this option.
111 So to specify exceptions for macros that have some arguments evaluated
112 and some not, use `def-edebug-spec' to specify an `edebug-form-spec'."
116 (defcustom edebug-save-windows t
117 "If non-nil, Edebug saves and restores the window configuration.
118 That takes some time, so if your program does not care what happens to
119 the window configurations, it is better to set this variable to nil.
121 If the value is a list, only the listed windows are saved and
124 `edebug-toggle-save-windows' may be used to change this variable."
125 :type
'(choice boolean
(repeat string
))
128 (defcustom edebug-save-displayed-buffer-points nil
129 "If non-nil, save and restore point in all displayed buffers.
131 Saving and restoring point in other buffers is necessary if you are
132 debugging code that changes the point of a buffer that is displayed
133 in a non-selected window. If Edebug or the user then selects the
134 window, the buffer's point will be changed to the window's point.
136 Saving and restoring point in all buffers is expensive, since it
137 requires selecting each window twice, so enable this only if you
142 (defcustom edebug-initial-mode
'step
143 "Initial execution mode for Edebug, if non-nil.
144 If this variable is non-nil, it specifies the initial execution mode
145 for Edebug when it is first activated. Possible values are step, next,
146 go, Go-nonstop, trace, Trace-fast, continue, and Continue-fast."
147 :type
'(choice (const step
) (const next
) (const go
)
148 (const Go-nonstop
) (const trace
)
149 (const Trace-fast
) (const continue
)
150 (const Continue-fast
))
153 (defcustom edebug-trace nil
154 "Non-nil means display a trace of function entry and exit.
155 Tracing output is displayed in a buffer named `*edebug-trace*', one
156 function entry or exit per line, indented by the recursion level.
158 You can customize by replacing functions `edebug-print-trace-before'
159 and `edebug-print-trace-after'."
163 (defcustom edebug-test-coverage nil
164 "If non-nil, Edebug tests coverage of all expressions debugged.
165 This is done by comparing the result of each expression with the
166 previous result. Coverage is considered OK if two different
169 Use `edebug-display-freq-count' to display the frequency count and
170 coverage information for a definition."
174 (defcustom edebug-continue-kbd-macro nil
175 "If non-nil, continue defining or executing any keyboard macro.
176 Use this with caution since it is not debugged."
181 (defcustom edebug-print-length
50
182 "If non-nil, default value of `print-length' for printing results in Edebug."
185 (defcustom edebug-print-level
50
186 "If non-nil, default value of `print-level' for printing results in Edebug."
189 (defcustom edebug-print-circle t
190 "If non-nil, default value of `print-circle' for printing results in Edebug."
194 (defcustom edebug-unwrap-results nil
195 "Non-nil if Edebug should unwrap results of expressions.
196 This is useful when debugging macros where the results of expressions
197 are instrumented expressions. But don't do this when results might be
198 circular or an infinite loop will result."
202 (defcustom edebug-on-error t
203 "Value bound to `debug-on-error' while Edebug is active.
205 If `debug-on-error' is non-nil, that value is still used.
207 If the value is a list of signal names, Edebug will stop when any of
208 these errors are signaled from Lisp code whether or not the signal is
209 handled by a `condition-case'. This option is useful for debugging
210 signals that *are* handled since they would otherwise be missed.
211 After execution is resumed, the error is signaled again."
212 :type
'(choice (const :tag
"off")
213 (repeat :menu-tag
"When"
215 (symbol :format
"%v"))
216 (const :tag
"always" t
))
219 (defcustom edebug-on-quit t
220 "Value bound to `debug-on-quit' while Edebug is active."
224 (defcustom edebug-global-break-condition nil
225 "If non-nil, an expression to test for at every stop point.
226 If the result is non-nil, then break. Errors are ignored."
230 (defcustom edebug-sit-for-seconds
1
231 "Number of seconds to pause when execution mode is `trace' or `continue'."
235 ;;; Form spec utilities.
237 (defmacro def-edebug-form-spec
(symbol spec-form
)
238 "For compatibility with old version."
239 (def-edebug-spec symbol
(eval spec-form
)))
240 (make-obsolete 'def-edebug-form-spec
'def-edebug-spec
"22.1")
242 (defun get-edebug-spec (symbol)
243 ;; Get the spec of symbol resolving all indirection.
244 (let ((edebug-form-spec (get symbol
'edebug-form-spec
))
246 (while (and (symbolp edebug-form-spec
)
247 (setq indirect
(get edebug-form-spec
'edebug-form-spec
)))
248 ;; (edebug-trace "indirection: %s" edebug-form-spec)
249 (setq edebug-form-spec indirect
))
254 (defun edebug-basic-spec (spec)
255 "Return t if SPEC uses only extant spec symbols.
256 An extant spec symbol is a symbol that is not a function and has a
257 `edebug-form-spec' property."
261 (unless (edebug-basic-spec (car spec
)) (throw 'basic nil
))
262 (setq spec
(cdr spec
)))
265 (unless (functionp spec
) (get spec
'edebug-form-spec
)))))
269 ;; Define edebug-gensym - from old cl.el
270 (defvar edebug-gensym-index
0
271 "Integer used by `edebug-gensym' to produce new names.")
273 (defun edebug-gensym (&optional prefix
)
274 "Generate a fresh uninterned symbol.
275 There is an optional argument, PREFIX. PREFIX is the string
276 that begins the new name. Most people take just the default,
277 except when debugging needs suggest otherwise."
280 (let ((newsymbol nil
)
282 (while (not newsymbol
)
283 (setq newname
(concat prefix
(int-to-string edebug-gensym-index
)))
284 (setq edebug-gensym-index
(+ edebug-gensym-index
1))
285 (if (not (intern-soft newname
))
286 (setq newsymbol
(make-symbol newname
))))
289 (defun edebug-lambda-list-keywordp (object)
290 "Return t if OBJECT is a lambda list keyword.
291 A lambda list keyword is a symbol that starts with `&'."
292 (and (symbolp object
)
293 (= ?
& (aref (symbol-name object
) 0))))
296 (defun edebug-last-sexp ()
297 ;; Return the last sexp before point in current buffer.
298 ;; Assumes Emacs Lisp syntax is active.
307 (defun edebug-window-list ()
308 "Return a list of windows, in order of `next-window'."
309 ;; This doesn't work for epoch.
311 (walk-windows (lambda (w) (push w window-list
)))
312 (nreverse window-list
)))
315 '(defun edebug-two-window-p ()
316 "Return t if there are two windows."
317 (and (not (one-window-p))
318 (eq (selected-window)
319 (next-window (next-window (selected-window))))))
321 (defsubst edebug-lookup-function
(object)
322 (while (and (symbolp object
) (fboundp object
))
323 (setq object
(symbol-function object
)))
326 (defun edebug-macrop (object)
327 "Return the macro named by OBJECT, or nil if it is not a macro."
328 (setq object
(edebug-lookup-function object
))
329 (if (and (listp object
)
330 (eq 'macro
(car object
))
331 (functionp (cdr object
)))
334 (defun edebug-sort-alist (alist function
)
335 ;; Return the ALIST sorted with comparison function FUNCTION.
336 ;; This uses 'sort so the sorting is destructive.
337 (sort alist
(function
339 (funcall function
(car e1
) (car e2
))))))
341 ;;(def-edebug-spec edebug-save-restriction t)
343 ;; Not used. If it is used, def-edebug-spec must be defined before use.
344 '(defmacro edebug-save-restriction
(&rest body
)
345 "Evaluate BODY while saving the current buffers restriction.
346 BODY may change buffer outside of current restriction, unlike
347 save-restriction. BODY may change the current buffer,
348 and the restriction will be restored to the original buffer,
349 and the current buffer remains current.
350 Return the result of the last expression in BODY."
351 `(let ((edebug:s-r-beg
(point-min-marker))
352 (edebug:s-r-end
(point-max-marker)))
355 (with-current-buffer (marker-buffer edebug
:s-r-beg
)
356 (narrow-to-region edebug
:s-r-beg edebug
:s-r-end
)))))
360 (defconst edebug-trace-buffer
"*edebug-trace*"
361 "Name of the buffer to put trace info in.")
363 (defun edebug-pop-to-buffer (buffer &optional window
)
364 ;; Like pop-to-buffer, but select window where BUFFER was last shown.
365 ;; Select WINDOW if it is provided and still exists. Otherwise,
366 ;; if buffer is currently shown in several windows, choose one.
367 ;; Otherwise, find a new window, possibly splitting one.
370 ((and (edebug-window-live-p window
)
371 (eq (window-buffer window
) buffer
))
373 ((eq (window-buffer (selected-window)) buffer
)
374 ;; Selected window already displays BUFFER.
376 ((edebug-get-buffer-window buffer
))
377 ((one-window-p 'nomini
)
378 ;; When there's one window only, split it.
380 ((let ((trace-window (get-buffer-window edebug-trace-buffer
)))
382 (dolist (elt (window-list nil
'nomini
))
383 (unless (or (eq elt
(selected-window)) (eq elt trace-window
)
384 (window-dedicated-p elt
))
385 ;; Found a non-dedicated window not showing
386 ;; `edebug-trace-buffer', use it.
387 (throw 'found elt
))))))
388 ;; All windows are dedicated or show `edebug-trace-buffer', split
391 (select-window window
)
392 (set-window-buffer window buffer
)
393 (set-window-hscroll window
0);; should this be??
394 ;; Selecting the window does not set the buffer until command loop.
395 ;;(set-buffer buffer)
398 (defun edebug-get-displayed-buffer-points ()
399 ;; Return a list of buffer point pairs, for all displayed buffers.
401 (walk-windows (lambda (w)
402 (unless (eq w
(selected-window))
403 (push (cons (window-buffer w
)
409 (defun edebug-set-buffer-points (buffer-points)
410 ;; Restore the buffer-points created by edebug-get-displayed-buffer-points.
412 (mapcar (lambda (buf-point)
413 (when (buffer-live-p (car buf-point
))
414 (set-buffer (car buf-point
))
415 (goto-char (cdr buf-point
))))
418 (defun edebug-current-windows (which-windows)
419 ;; Get either a full window configuration or some window information.
420 (if (listp which-windows
)
421 (mapcar (function (lambda (window)
422 (if (edebug-window-live-p window
)
424 (window-buffer window
)
425 (window-point window
)
426 (window-start window
)
427 (window-hscroll window
)))))
429 (current-window-configuration)))
431 (defun edebug-set-windows (window-info)
432 ;; Set either a full window configuration or some window information.
433 (if (listp window-info
)
435 (lambda (one-window-info)
438 (lambda (window buffer point start hscroll
)
439 (if (edebug-window-live-p window
)
441 (set-window-buffer window buffer
)
442 (set-window-point window point
)
443 (set-window-start window start
)
444 (set-window-hscroll window hscroll
)))))
447 (set-window-configuration window-info
)))
449 (defalias 'edebug-get-buffer-window
'get-buffer-window
)
450 (defalias 'edebug-sit-for
'sit-for
)
451 (defalias 'edebug-input-pending-p
'input-pending-p
)
454 ;;; Redefine read and eval functions
455 ;; read is redefined to maybe instrument forms.
456 ;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs.
458 ;; Save the original read function
459 (or (fboundp 'edebug-original-read
)
460 (defalias 'edebug-original-read
(symbol-function 'read
)))
462 (defun edebug-read (&optional stream
)
463 "Read one Lisp expression as text from STREAM, return as Lisp object.
464 If STREAM is nil, use the value of `standard-input' (which see).
465 STREAM or the value of `standard-input' may be:
466 a buffer (read from point and advance it)
467 a marker (read from where it points and advance it)
468 a function (call it with no arguments for each character,
469 call it with a char as argument to push a char back)
470 a string (takes text from string, starting at the beginning)
471 t (read text line using minibuffer and use it).
473 This version, from Edebug, maybe instruments the expression. But the
474 STREAM must be the current buffer to do so. Whether it instruments is
475 also dependent on the values of `edebug-all-defs' and
477 (or stream
(setq stream standard-input
))
478 (if (eq stream
(current-buffer))
479 (edebug-read-and-maybe-wrap-form)
480 (edebug-original-read stream
)))
482 (or (fboundp 'edebug-original-eval-defun
)
483 (defalias 'edebug-original-eval-defun
(symbol-function 'eval-defun
)))
485 ;; We should somehow arrange to be able to do this
486 ;; without actually replacing the eval-defun command.
487 (defun edebug-eval-defun (edebug-it)
488 "Evaluate the top-level form containing point, or after point.
490 If the current defun is actually a call to `defvar', then reset the
491 variable using its initial value expression even if the variable
492 already has some other value. (Normally `defvar' does not change the
493 variable's value if it already has a value.) Treat `defcustom'
494 similarly. Reinitialize the face according to `defface' specification.
496 With a prefix argument, instrument the code for Edebug.
498 Setting `edebug-all-defs' to a non-nil value reverses the meaning of
499 the prefix argument. Code is then instrumented when this function is
500 invoked without a prefix argument
502 If acting on a `defun' for FUNCTION, and the function was instrumented,
503 `Edebug: FUNCTION' is printed in the minibuffer. If not instrumented,
504 just FUNCTION is printed.
506 If not acting on a `defun', the result of evaluation is displayed in
509 (let* ((edebugging (not (eq (not edebug-it
) (not edebug-all-defs
))))
512 (let ((edebug-all-forms edebugging
)
513 (edebug-all-defs (eq edebug-all-defs
(not edebug-it
))))
514 (edebug-read-top-level-form))))
515 ;; This should be consistent with `eval-defun-1', but not the
516 ;; same, since that gets a macroexpanded form.
517 (cond ((and (eq (car form
) 'defvar
)
518 (cdr-safe (cdr-safe form
)))
519 ;; Force variable to be bound.
520 (makunbound (nth 1 form
)))
521 ((and (eq (car form
) 'defcustom
)
522 (default-boundp (nth 1 form
)))
523 ;; Force variable to be bound.
524 (set-default (nth 1 form
) (eval (nth 2 form
))))
525 ((eq (car form
) 'defface
)
527 (setq face-new-frame-defaults
528 (assq-delete-all (nth 1 form
) face-new-frame-defaults
))
529 (put (nth 1 form
) 'face-defface-spec nil
)
530 ;; See comments in `eval-defun-1' for purpose of code below
531 (setq form
(prog1 `(prog1 ,form
532 (put ',(nth 1 form
) 'saved-face
533 ',(get (nth 1 form
) 'saved-face
))
534 (put ',(nth 1 form
) 'customized-face
536 (put (nth 1 form
) 'saved-face nil
)))))
537 (setq edebug-result
(eval form
))
539 (princ edebug-result
)
544 (defalias 'edebug-defun
'edebug-eval-top-level-form
)
547 (defun edebug-eval-top-level-form ()
548 "Evaluate the top level form point is in, stepping through with Edebug.
549 This is like `eval-defun' except that it steps the code for Edebug
550 before evaluating it. It displays the value in the echo area
551 using `eval-expression' (which see).
553 If you do this on a function definition such as a defun or defmacro,
554 it defines the function and instruments its definition for Edebug,
555 so it will do Edebug stepping when called later. It displays
556 `Edebug: FUNCTION' in the echo area to indicate that FUNCTION is now
557 instrumented for Edebug.
559 If the current defun is actually a call to `defvar' or `defcustom',
560 evaluating it this way resets the variable using its initial value
561 expression even if the variable already has some other value.
562 \(Normally `defvar' and `defcustom' do not alter the value if there
566 ;; Bind edebug-all-forms only while reading, not while evalling
567 ;; but this causes problems while edebugging edebug.
568 (let ((edebug-all-forms t
)
570 (edebug-read-top-level-form))))
573 (defun edebug-read-top-level-form ()
574 (let ((starting-point (point)))
578 (edebug-read-and-maybe-wrap-form)
579 ;; Recover point, but only if no error occurred.
580 (goto-char starting-point
))))
583 ;; Compatibility with old versions.
584 (defalias 'edebug-all-defuns
'edebug-all-defs
)
587 (defun edebug-all-defs ()
588 "Toggle edebugging of all definitions."
590 (setq edebug-all-defs
(not edebug-all-defs
))
591 (message "Edebugging all definitions is %s."
592 (if edebug-all-defs
"on" "off")))
596 (defun edebug-all-forms ()
597 "Toggle edebugging of all forms."
599 (setq edebug-all-forms
(not edebug-all-forms
))
600 (message "Edebugging all forms is %s."
601 (if edebug-all-forms
"on" "off")))
604 (defun edebug-install-read-eval-functions ()
606 ;; Don't install if already installed.
607 (unless load-read-function
608 (setq load-read-function
'edebug-read
)
609 (defalias 'eval-defun
'edebug-eval-defun
)))
611 (defun edebug-uninstall-read-eval-functions ()
613 (setq load-read-function nil
)
614 (defalias 'eval-defun
(symbol-function 'edebug-original-eval-defun
)))
617 ;;; Edebug internal data
619 ;; The internal data that is needed for edebugging is kept in the
620 ;; buffer-local variable `edebug-form-data'.
622 (make-variable-buffer-local 'edebug-form-data
)
624 (defvar edebug-form-data nil
)
625 ;; A list of entries associating symbols with buffer regions.
626 ;; This is an automatic buffer local variable. Each entry looks like:
627 ;; @code{(@var{symbol} @var{begin-marker} @var{end-marker}). The markers
628 ;; are at the beginning and end of an entry level form and @var{symbol} is
629 ;; a symbol that holds all edebug related information for the form on its
632 ;; In the future, the symbol will be irrelevant and edebug data will
633 ;; be stored in the definitions themselves rather than in the property
636 (defun edebug-make-form-data-entry (symbol begin end
)
637 (list symbol begin end
))
639 (defsubst edebug-form-data-name
(entry)
642 (defsubst edebug-form-data-begin
(entry)
645 (defsubst edebug-form-data-end
(entry)
648 (defsubst edebug-set-form-data-entry
(entry name begin end
)
649 (setcar entry name
);; in case name is changed
650 (set-marker (nth 1 entry
) begin
)
651 (set-marker (nth 2 entry
) end
))
653 (defun edebug-get-form-data-entry (pnt &optional end-point
)
654 ;; Find the edebug form data entry which is closest to PNT.
655 ;; If END-POINT is supplied, match must be exact.
656 ;; Return `nil' if none found.
657 (let ((rest edebug-form-data
)
659 (closest-dist 999999)) ;; need maxint here
660 (while (and rest
(< 0 closest-dist
))
661 (let* ((entry (car rest
))
662 (begin (edebug-form-data-begin entry
))
663 (dist (- pnt begin
)))
664 (setq rest
(cdr rest
))
666 (< dist closest-dist
)
668 (= end-point
(edebug-form-data-end entry
)))
669 (<= pnt
(edebug-form-data-end entry
)))
670 (setq closest-dist dist
671 closest-entry entry
))))
674 ;; Also need to find all contained entries,
675 ;; and find an entry given a symbol, which should be just assq.
677 (defun edebug-form-data-symbol ()
678 ;; Return the edebug data symbol of the form where point is in.
679 ;; If point is not inside a edebuggable form, cause error.
680 (or (edebug-form-data-name (edebug-get-form-data-entry (point)))
681 (error "Not inside instrumented form")))
683 (defun edebug-make-top-form-data-entry (new-entry)
684 ;; Make NEW-ENTRY the first element in the `edebug-form-data' list.
685 (edebug-clear-form-data-entry new-entry
)
686 (setq edebug-form-data
(cons new-entry edebug-form-data
)))
688 (defun edebug-clear-form-data-entry (entry)
689 ;; If non-nil, clear ENTRY out of the form data.
690 ;; Maybe clear the markers and delete the symbol's edebug property?
693 ;; Instead of this, we could just find all contained forms.
694 ;; (put (car entry) 'edebug nil) ;
695 ;; (mapcar 'edebug-clear-form-data-entry ; dangerous
696 ;; (get (car entry) 'edebug-dependents))
697 ;; (set-marker (nth 1 entry) nil)
698 ;; (set-marker (nth 2 entry) nil)
699 (setq edebug-form-data
(delq entry edebug-form-data
)))))
703 (defun edebug-syntax-error (&rest args
)
704 ;; Signal an invalid-read-syntax with ARGS.
705 (signal 'invalid-read-syntax args
))
708 (defconst edebug-read-syntax-table
709 ;; Lookup table for significant characters indicating the class of the
710 ;; token that follows. This is not a \"real\" syntax table.
711 (let ((table (make-char-table 'syntax-table
'symbol
))
714 (aset table i
'space
)
716 (aset table ?\
( 'lparen
)
717 (aset table ?\
) 'rparen
)
718 (aset table ?
\' 'quote
)
719 (aset table ?\
` 'backquote
)
720 (aset table ?\
, 'comma
)
721 (aset table ?
\" 'string
)
722 (aset table ?
\? 'char
)
723 (aset table ?\
[ 'lbracket
)
724 (aset table ?\
] 'rbracket
)
725 (aset table ?\.
'dot
)
726 (aset table ?\
# 'hash
)
727 ;; We treat numbers as symbols, because of confusion with -, -1, and 1-.
728 ;; We don't care about any other chars since they won't be seen.
731 (defun edebug-next-token-class ()
732 ;; Move to the next token and return its class. We only care about
733 ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector,
735 (edebug-skip-whitespace)
736 (if (and (eq (following-char) ?.
)
739 (or (and (eq (aref edebug-read-syntax-table
(following-char))
741 (not (= (following-char) ?\
;)))
742 (memq (following-char) '(?\
, ?\.
)))))
744 (aref edebug-read-syntax-table
(following-char))))
747 (defun edebug-skip-whitespace ()
748 ;; Leave point before the next token, skipping white space and comments.
749 (skip-chars-forward " \t\r\n\f")
750 (while (= (following-char) ?\
;)
751 (skip-chars-forward "^\n") ; skip the comment
752 (skip-chars-forward " \t\r\n\f")))
755 ;; Mostly obsolete reader; still used in one case.
757 (defun edebug-read-sexp ()
758 ;; Read one sexp from the current buffer starting at point.
759 ;; Leave point immediately after it. A sexp can be a list or atom.
760 ;; An atom is a symbol (or number), character, string, or vector.
761 ;; This works for reading anything legitimate, but it
762 ;; is gummed up by parser inconsistencies (bugs?)
763 (let ((class (edebug-next-token-class)))
765 ;; read goes one too far if a (possibly quoted) string or symbol
766 ;; is immediately followed by non-whitespace.
767 ((eq class
'symbol
) (edebug-original-read (current-buffer)))
768 ((eq class
'string
) (edebug-original-read (current-buffer)))
769 ((eq class
'quote
) (forward-char 1)
770 (list 'quote
(edebug-read-sexp)))
771 ((eq class
'backquote
)
772 (list '\
` (edebug-read-sexp)))
774 (list '\
, (edebug-read-sexp)))
775 (t ; anything else, just read it.
776 (edebug-original-read (current-buffer))))))
778 ;;; Offsets for reader
780 ;; Define a structure to represent offset positions of expressions.
781 ;; Each offset structure looks like: (before . after) for constituents,
782 ;; or for structures that have elements: (before <subexpressions> . after)
783 ;; where the <subexpressions> are the offset structures for subexpressions
784 ;; including the head of a list.
785 (defvar edebug-offsets nil
)
787 ;; Stack of offset structures in reverse order of the nesting.
788 ;; This is used to get back to previous levels.
789 (defvar edebug-offsets-stack nil
)
790 (defvar edebug-current-offset nil
) ; Top of the stack, for convenience.
792 ;; We must store whether we just read a list with a dotted form that
793 ;; is itself a list. This structure will be condensed, so the offsets
794 ;; must also be condensed.
795 (defvar edebug-read-dotted-list nil
)
797 (defsubst edebug-initialize-offsets
()
798 ;; Reinitialize offset recording.
799 (setq edebug-current-offset nil
))
801 (defun edebug-store-before-offset (point)
802 ;; Add a new offset pair with POINT as the before offset.
803 (let ((new-offset (list point
)))
804 (if edebug-current-offset
805 (setcdr edebug-current-offset
806 (cons new-offset
(cdr edebug-current-offset
)))
807 ;; Otherwise, we are at the top level, so initialize.
808 (setq edebug-offsets new-offset
809 edebug-offsets-stack nil
810 edebug-read-dotted-list nil
))
811 ;; Cons the new offset to the front of the stack.
812 (setq edebug-offsets-stack
(cons new-offset edebug-offsets-stack
)
813 edebug-current-offset new-offset
)
816 (defun edebug-store-after-offset (point)
817 ;; Finalize the current offset struct by reversing it and
818 ;; store POINT as the after offset.
819 (if (not edebug-read-dotted-list
)
820 ;; Just reverse the offsets of all subexpressions.
821 (setcdr edebug-current-offset
(nreverse (cdr edebug-current-offset
)))
823 ;; We just read a list after a dot, which will be abbreviated out.
824 (setq edebug-read-dotted-list nil
)
825 ;; Drop the corresponding offset pair.
826 ;; That is, nconc the reverse of the rest of the offsets
827 ;; with the cdr of last offset.
828 (setcdr edebug-current-offset
829 (nconc (nreverse (cdr (cdr edebug-current-offset
)))
830 (cdr (car (cdr edebug-current-offset
))))))
832 ;; Now append the point using nconc.
833 (setq edebug-current-offset
(nconc edebug-current-offset point
))
835 (setq edebug-offsets-stack
(cdr edebug-offsets-stack
)
836 edebug-current-offset
(car edebug-offsets-stack
)))
838 (defun edebug-ignore-offset ()
839 ;; Ignore the last created offset pair.
840 (setcdr edebug-current-offset
(cdr (cdr edebug-current-offset
))))
842 (defmacro edebug-storing-offsets
(point &rest body
)
843 (declare (debug (form body
)) (indent 1))
846 (edebug-store-before-offset ,point
)
848 (edebug-store-after-offset (point))))
851 ;;; Reader for Emacs Lisp.
853 ;; Uses edebug-next-token-class (and edebug-skip-whitespace) above.
855 (defconst edebug-read-alist
856 '((symbol . edebug-read-symbol
)
857 (lparen . edebug-read-list
)
858 (string . edebug-read-string
)
859 (quote . edebug-read-quote
)
860 (backquote . edebug-read-backquote
)
861 (comma . edebug-read-comma
)
862 (lbracket . edebug-read-vector
)
863 (hash . edebug-read-function
)
866 (defun edebug-read-storing-offsets (stream)
867 (let (edebug-read-dotted-list) ; see edebug-store-after-offset
868 (edebug-storing-offsets (point)
870 (or (cdr (assq (edebug-next-token-class) edebug-read-alist
))
871 ;; anything else, just read it.
872 'edebug-original-read
)
875 (defun edebug-read-symbol (stream)
876 (edebug-original-read stream
))
878 (defun edebug-read-string (stream)
879 (edebug-original-read stream
))
881 (defun edebug-read-quote (stream)
882 ;; Turn 'thing into (quote thing)
885 (edebug-storing-offsets (1- (point)) 'quote
)
886 (edebug-read-storing-offsets stream
)))
888 (defvar edebug-read-backquote-level
0
889 "If non-zero, we're in a new-style backquote.
890 It should never be negative. This controls how we read comma constructs.")
892 (defun edebug-read-backquote (stream)
893 ;; Turn `thing into (\` thing)
896 (edebug-storing-offsets (1- (point)) '\
`)
897 (let ((edebug-read-backquote-level (1+ edebug-read-backquote-level
)))
898 (edebug-read-storing-offsets stream
))))
900 (defun edebug-read-comma (stream)
901 ;; Turn ,thing into (\, thing). Handle ,@ and ,. also.
902 (let ((opoint (point)))
905 (cond ((eq (following-char) ?\.
)
908 ((eq (following-char) ?\
@)
911 ;; Generate the same structure of offsets we would have
912 ;; if the resulting list appeared verbatim in the input text.
913 (if (zerop edebug-read-backquote-level
)
914 (edebug-storing-offsets opoint symbol
)
916 (edebug-storing-offsets opoint symbol
)
917 (let ((edebug-read-backquote-level (1- edebug-read-backquote-level
)))
918 (edebug-read-storing-offsets stream
)))))))
920 (defun edebug-read-function (stream)
921 ;; Turn #'thing into (function thing)
923 (cond ((eq ?
\' (following-char))
926 (edebug-storing-offsets (- (point) 2)
927 (if (featurep 'cl
) 'function
* 'function
))
928 (edebug-read-storing-offsets stream
)))
929 ((memq (following-char) '(?
: ?B ?O ?X ?b ?o ?x ?
1 ?
2 ?
3 ?
4 ?
5 ?
6
932 (edebug-original-read stream
))
933 (t (edebug-syntax-error "Bad char after #"))))
935 (defun edebug-read-list (stream)
936 (forward-char 1) ; skip \(
939 (while (not (memq (edebug-next-token-class) '(rparen dot
)))
940 (if (and (eq (edebug-next-token-class) 'backquote
)
942 (zerop edebug-read-backquote-level
))
944 ;; Old style backquote.
945 (forward-char 1) ; Skip backquote.
946 ;; Call edebug-storing-offsets here so that we
947 ;; produce the same offsets we would have had
948 ;; if the backquote were an ordinary symbol.
949 (push (edebug-storing-offsets (1- (point)) '\
`) elements
))
950 (push (edebug-read-storing-offsets stream
) elements
)))
951 (setq elements
(nreverse elements
))
952 (if (eq 'dot
(edebug-next-token-class))
954 (forward-char 1) ; skip \.
955 (setq dotted-form
(edebug-read-storing-offsets stream
))
956 elements
(nconc elements dotted-form
)
957 (if (not (eq (edebug-next-token-class) 'rparen
))
958 (edebug-syntax-error "Expected `)'"))
959 (setq edebug-read-dotted-list
(listp dotted-form
))
962 (forward-char 1) ; skip \)
965 (defun edebug-read-vector (stream)
966 (forward-char 1) ; skip \[
969 (while (not (eq 'rbracket
(edebug-next-token-class)))
970 (push (edebug-read-storing-offsets stream
) elements
))
971 (apply 'vector
(nreverse elements
)))
972 (forward-char 1) ; skip \]
975 ;;; Cursors for traversal of list and vector elements with offsets.
977 (defvar edebug-dotted-spec nil
)
979 (defun edebug-new-cursor (expressions offsets
)
980 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
981 (if (vectorp expressions
)
982 (setq expressions
(append expressions nil
)))
983 (cons expressions offsets
))
985 (defsubst edebug-set-cursor
(cursor expressions offsets
)
986 ;; Set the CURSOR's EXPRESSIONS and OFFSETS to the given.
987 ;; Return the cursor.
988 (setcar cursor expressions
)
989 (setcdr cursor offsets
)
992 (defun edebug-copy-cursor (cursor)
993 ;; Copy the cursor using the same object and offsets.
994 (cons (car cursor
) (cdr cursor
)))
996 (defsubst edebug-cursor-expressions
(cursor)
998 (defsubst edebug-cursor-offsets
(cursor)
1001 (defsubst edebug-empty-cursor
(cursor)
1002 ;; Return non-nil if CURSOR is empty - meaning no more elements.
1003 (null (car cursor
)))
1005 (defsubst edebug-top-element
(cursor)
1006 ;; Return the top element at the cursor.
1007 ;; Assumes not empty.
1010 (defun edebug-top-element-required (cursor &rest error
)
1011 ;; Check if a dotted form is required.
1012 (if edebug-dotted-spec
(edebug-no-match cursor
"Dot expected."))
1013 ;; Check if there is at least one more argument.
1014 (if (edebug-empty-cursor cursor
) (apply 'edebug-no-match cursor error
))
1015 ;; Return that top element.
1016 (edebug-top-element cursor
))
1018 (defsubst edebug-top-offset
(cursor)
1019 ;; Return the top offset pair corresponding to the top element.
1022 (defun edebug-move-cursor (cursor)
1023 ;; Advance and return the cursor to the next element and offset.
1024 ;; throw no-match if empty before moving.
1025 ;; This is a violation of the cursor encapsulation, but
1026 ;; there is plenty of that going on while matching.
1027 ;; The following test should always fail.
1028 (if (edebug-empty-cursor cursor
)
1029 (edebug-no-match cursor
"Not enough arguments."))
1030 (setcar cursor
(cdr (car cursor
)))
1031 (setcdr cursor
(cdr (cdr cursor
)))
1035 (defun edebug-before-offset (cursor)
1036 ;; Return the before offset of the cursor.
1037 ;; If there is nothing left in the offsets,
1038 ;; return one less than the offset itself,
1039 ;; which is the after offset for a list.
1040 (let ((offset (edebug-cursor-offsets cursor
)))
1045 (defun edebug-after-offset (cursor)
1046 ;; Return the after offset of the cursor object.
1047 (let ((offset (edebug-top-offset cursor
)))
1048 (while (consp offset
)
1049 (setq offset
(cdr offset
)))
1054 ;; The top level function for parsing forms is
1055 ;; edebug-read-and-maybe-wrap-form; it calls all the rest. It checks the
1056 ;; syntax a bit and leaves point at any error it finds, but otherwise
1057 ;; should appear to work like eval-defun.
1059 ;; The basic plan is to surround each expression with a call to
1060 ;; the edebug debugger together with indexes into a table of positions of
1061 ;; all expressions. Thus an expression "exp" becomes:
1063 ;; (edebug-after (edebug-before 1) 2 exp)
1065 ;; When this is evaluated, first point is moved to the beginning of
1066 ;; exp at offset 1 of the current function. The expression is
1067 ;; evaluated, which may cause more edebug calls, and then point is
1068 ;; moved to offset 2 after the end of exp.
1070 ;; The highest level expressions of the function are wrapped in a call to
1071 ;; edebug-enter, which supplies the function name and the actual
1072 ;; arguments to the function. See functions edebug-enter, edebug-before,
1073 ;; and edebug-after for more details.
1075 ;; Dynamically bound vars, left unbound, but globally declared.
1076 ;; This is to quiet the byte compiler.
1078 ;; Window data of the highest definition being wrapped.
1079 ;; This data is shared by all embedded definitions.
1080 (defvar edebug-top-window-data
)
1082 (defvar edebug-
&optional
)
1083 (defvar edebug-
&rest
)
1084 (defvar edebug-gate nil
) ;; whether no-match forces an error.
1086 (defvar edebug-def-name nil
) ; name of definition, used by interactive-form
1087 (defvar edebug-old-def-name nil
) ; previous name of containing definition.
1089 (defvar edebug-error-point nil
)
1090 (defvar edebug-best-error nil
)
1093 (defun edebug-read-and-maybe-wrap-form ()
1094 ;; Read a form and wrap it with edebug calls, if the conditions are right.
1095 ;; Here we just catch any no-match not caught below and signal an error.
1097 ;; Run the setup hook.
1098 ;; If it gets an error, make it nil.
1099 (let ((temp-hook edebug-setup-hook
))
1100 (setq edebug-setup-hook nil
)
1101 (run-hooks 'temp-hook
))
1104 edebug-top-window-data
1105 edebug-def-name
;; make sure it is locally nil
1106 ;; I don't like these here!!
1113 ;; Do this once here instead of several times.
1114 (max-lisp-eval-depth (+ 800 max-lisp-eval-depth
))
1115 (max-specpdl-size (+ 2000 max-specpdl-size
)))
1118 (setq result
(edebug-read-and-maybe-wrap-form1))
1121 (apply 'edebug-syntax-error no-match
))
1125 (defun edebug-read-and-maybe-wrap-form1 ()
1130 ;; These offset things don't belong here, but to support recursive
1131 ;; calls to edebug-read, they need to be here.
1133 edebug-offsets-stack
1134 edebug-current-offset
; reset to nil
1137 (if (and (eq 'lparen
(edebug-next-token-class))
1138 (eq 'symbol
(progn (forward-char 1) (edebug-next-token-class))))
1139 ;; Find out if this is a defining form from first symbol
1140 (setq def-kind
(edebug-original-read (current-buffer))
1141 spec
(and (symbolp def-kind
) (get-edebug-spec def-kind
))
1142 defining-form-p
(and (listp spec
)
1143 (eq '&define
(car spec
)))
1144 ;; This is incorrect in general!! But OK most of the time.
1145 def-name
(if (and defining-form-p
1146 (eq 'name
(car (cdr spec
)))
1147 (eq 'symbol
(edebug-next-token-class)))
1148 (edebug-original-read (current-buffer))))))
1149 ;;;(message "all defs: %s all forms: %s" edebug-all-defs edebug-all-forms)
1152 (if (or edebug-all-defs edebug-all-forms
)
1153 ;; If it is a defining form and we are edebugging defs,
1154 ;; then let edebug-list-form start it.
1155 (let ((cursor (edebug-new-cursor
1156 (list (edebug-read-storing-offsets (current-buffer)))
1157 (list edebug-offsets
))))
1159 (edebug-make-form-wrapper
1161 (edebug-before-offset cursor
)
1162 (1- (edebug-after-offset cursor
))
1163 (list (cons (symbol-name def-kind
) (cdr spec
))))))
1165 ;; Not edebugging this form, so reset the symbol's edebug
1166 ;; property to be just a marker at the definition's source code.
1167 ;; This only works for defs with simple names.
1168 (put def-name
'edebug
(point-marker))
1169 ;; Also nil out dependent defs.
1172 (put def-name
'edebug nil
)))
1173 (get def-name
'edebug-dependents
))
1174 (edebug-read-sexp)))
1176 ;; If all forms are being edebugged, explicitly wrap it.
1178 (let ((cursor (edebug-new-cursor
1179 (list (edebug-read-storing-offsets (current-buffer)))
1180 (list edebug-offsets
))))
1181 (edebug-make-form-wrapper
1183 (edebug-before-offset cursor
)
1184 (edebug-after-offset cursor
)
1187 ;; Not a defining form, and not edebugging.
1188 (t (edebug-read-sexp)))
1192 (defvar edebug-def-args
) ; args of defining form.
1193 (defvar edebug-def-interactive
) ; is it an emacs interactive function?
1194 (defvar edebug-inside-func
) ;; whether code is inside function context.
1195 ;; Currently def-form sets this to nil; def-body sets it to t.
1197 (defun edebug-interactive-p-name ()
1198 ;; Return a unique symbol for the variable used to store the
1199 ;; status of interactive-p for this function.
1200 (intern (format "edebug-%s-interactive-p" edebug-def-name
)))
1203 (defun edebug-wrap-def-body (forms)
1204 "Wrap the FORMS of a definition body."
1205 (if edebug-def-interactive
1206 `(let ((,(edebug-interactive-p-name)
1208 ,(edebug-make-enter-wrapper forms
))
1209 (edebug-make-enter-wrapper forms
)))
1212 (defun edebug-make-enter-wrapper (forms)
1213 ;; Generate the enter wrapper for some forms of a definition.
1214 ;; This is not to be used for the body of other forms, e.g. `while',
1215 ;; since it wraps the list of forms with a call to `edebug-enter'.
1216 ;; Uses the dynamically bound vars edebug-def-name and edebug-def-args.
1217 ;; Do this after parsing since that may find a name.
1218 (setq edebug-def-name
1219 (or edebug-def-name edebug-old-def-name
(edebug-gensym "edebug-anon")))
1221 (quote ,edebug-def-name
)
1222 ,(if edebug-inside-func
1224 ;; Doesn't work with more than one def-body!!
1225 ;; But the list will just be reversed.
1226 ,@(nreverse edebug-def-args
))
1228 (function (lambda () ,@forms
))
1232 (defvar edebug-form-begin-marker
) ; the mark for def being instrumented
1234 (defvar edebug-offset-index
) ; the next available offset index.
1235 (defvar edebug-offset-list
) ; the list of offset positions.
1237 (defun edebug-inc-offset (offset)
1238 ;; modifies edebug-offset-index and edebug-offset-list
1239 ;; accesses edebug-func-marc and buffer point
1242 (setq edebug-offset-list
(cons (- offset edebug-form-begin-marker
)
1244 edebug-offset-index
(1+ edebug-offset-index
))))
1247 (defun edebug-make-before-and-after-form (before-index form after-index
)
1248 ;; Return the edebug form for the current function at offset BEFORE-INDEX
1249 ;; given FORM. Looks like:
1250 ;; (edebug-after (edebug-before BEFORE-INDEX) AFTER-INDEX FORM)
1251 ;; Also increment the offset index for subsequent use.
1253 (list 'edebug-before before-index
)
1256 (defun edebug-make-after-form (form after-index
)
1257 ;; Like edebug-make-before-and-after-form, but only after.
1258 (list 'edebug-after
0 after-index form
))
1261 (defun edebug-unwrap (sexp)
1262 "Return the unwrapped SEXP or return it as is if it is not wrapped.
1263 The SEXP might be the result of wrapping a body, which is a list of
1264 expressions; a `progn' form will be returned enclosing these forms."
1267 ((eq 'edebug-after
(car sexp
))
1269 ((eq 'edebug-enter
(car sexp
))
1270 (let ((forms (nthcdr 2 (nth 1 (nth 3 sexp
)))))
1271 (if (> (length forms
) 1)
1272 (cons 'progn forms
) ;; could return (values forms) instead.
1274 (t sexp
);; otherwise it is not wrapped, so just return it.
1278 (defun edebug-unwrap* (sexp)
1279 "Return the SEXP recursively unwrapped."
1280 (let ((new-sexp (edebug-unwrap sexp
)))
1281 (while (not (eq sexp new-sexp
))
1283 new-sexp
(edebug-unwrap sexp
)))
1284 (if (consp new-sexp
)
1285 (mapcar 'edebug-unwrap
* new-sexp
)
1289 (defun edebug-defining-form (cursor form-begin form-end speclist
)
1290 ;; Process the defining form, starting outside the form.
1291 ;; The speclist is a generated list spec that looks like:
1292 ;; (("def-symbol" defining-form-spec-sans-&define))
1293 ;; Skip the first offset.
1294 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1295 (cdr (edebug-cursor-offsets cursor
)))
1296 (edebug-make-form-wrapper
1298 form-begin
(1- form-end
)
1301 (defun edebug-make-form-wrapper (cursor form-begin form-end
1303 ;; Wrap a form, usually a defining form, but any evaluated one.
1304 ;; If speclist is non-nil, this is being called by edebug-defining-form.
1305 ;; Otherwise it is being called from edebug-read-and-maybe-wrap-form1.
1306 ;; This is a hack, but I havent figured out a simpler way yet.
1307 (let* ((form-data-entry (edebug-get-form-data-entry form-begin form-end
))
1308 ;; Set this marker before parsing.
1309 (edebug-form-begin-marker
1311 (edebug-form-data-begin form-data-entry
)
1312 ;; Buffer must be current-buffer for this to work:
1313 (set-marker (make-marker) form-begin
))))
1315 (let (edebug-offset-list
1316 (edebug-offset-index 0)
1319 ;; (edebug-containing-def-name edebug-def-name)
1320 ;; Get name from form-data, if any.
1321 (edebug-old-def-name (edebug-form-data-name form-data-entry
))
1324 edebug-def-interactive
1325 edebug-inside-func
;; whether wrapped code executes inside a function.
1330 (edebug-match cursor speclist
)
1332 ;; else wrap as an enter-form.
1333 (edebug-make-enter-wrapper (list (edebug-form cursor
)))))
1335 ;; Set the name here if it was not set by edebug-make-enter-wrapper.
1336 (setq edebug-def-name
1337 (or edebug-def-name edebug-old-def-name
(edebug-gensym "edebug-anon")))
1339 ;; Add this def as a dependent of containing def. Buggy.
1340 '(if (and edebug-containing-def-name
1341 (not (get edebug-containing-def-name
'edebug-dependents
)))
1342 (put edebug-containing-def-name
'edebug-dependents
1343 (cons edebug-def-name
1344 (get edebug-containing-def-name
1345 'edebug-dependents
))))
1347 ;; Create a form-data-entry or modify existing entry's markers.
1348 ;; In the latter case, pointers to the entry remain eq.
1349 (if (not form-data-entry
)
1350 (setq form-data-entry
1351 (edebug-make-form-data-entry
1353 edebug-form-begin-marker
1354 ;; Buffer must be current-buffer.
1355 (set-marker (make-marker) form-end
)
1357 (edebug-set-form-data-entry
1358 form-data-entry edebug-def-name
;; in case name is changed
1359 form-begin form-end
))
1361 ;; (message "defining: %s" edebug-def-name) (sit-for 2)
1362 (edebug-make-top-form-data-entry form-data-entry
)
1363 (message "Edebug: %s" edebug-def-name
)
1364 ;;(debug edebug-def-name)
1366 ;; Destructively reverse edebug-offset-list and make vector from it.
1367 (setq edebug-offset-list
(vconcat (nreverse edebug-offset-list
)))
1369 ;; Side effects on the property list of edebug-def-name.
1370 (edebug-clear-frequency-count edebug-def-name
)
1371 (edebug-clear-coverage edebug-def-name
)
1373 ;; Set up the initial window data.
1374 (if (not edebug-top-window-data
) ;; if not already set, do it now.
1375 (let ((window ;; Find the best window for this buffer.
1376 (or (get-buffer-window (current-buffer))
1377 (selected-window))))
1378 (setq edebug-top-window-data
1379 (cons window
(window-start window
)))))
1381 ;; Store the edebug data in symbol's property list.
1382 (put edebug-def-name
'edebug
1383 ;; A struct or vector would be better here!!
1384 (list edebug-form-begin-marker
1385 nil
; clear breakpoints
1387 edebug-top-window-data
1393 (defun edebug-clear-frequency-count (name)
1394 ;; Create initial frequency count vector.
1395 ;; For each stop point, the counter is incremented each time it is visited.
1396 (put name
'edebug-freq-count
1397 (make-vector (length edebug-offset-list
) 0)))
1400 (defun edebug-clear-coverage (name)
1401 ;; Create initial coverage vector.
1402 ;; Only need one per expression, but it is simpler to use stop points.
1403 (put name
'edebug-coverage
1404 (make-vector (length edebug-offset-list
) 'unknown
)))
1407 (defun edebug-form (cursor)
1408 ;; Return the instrumented form for the following form.
1409 ;; Add the point offsets to the edebug-offset-list for the form.
1410 (let* ((form (edebug-top-element-required cursor
"Expected form"))
1411 (offset (edebug-top-offset cursor
)))
1415 ;; The first offset for a list form is for the list form itself.
1416 (if (eq 'quote
(car form
))
1418 (let* ((head (car form
))
1419 (spec (and (symbolp head
) (get-edebug-spec head
)))
1420 (new-cursor (edebug-new-cursor form offset
)))
1421 ;; Find out if this is a defining form from first symbol.
1422 ;; An indirect spec would not work here, yet.
1423 (if (and (consp spec
) (eq '&define
(car spec
)))
1424 (edebug-defining-form
1426 (car offset
);; before the form
1427 (edebug-after-offset cursor
)
1428 (cons (symbol-name head
) (cdr spec
)))
1429 ;; Wrap a regular form.
1430 (edebug-make-before-and-after-form
1431 (edebug-inc-offset (car offset
))
1432 (edebug-list-form new-cursor
)
1433 ;; After processing the list form, the new-cursor is left
1434 ;; with the offset after the form.
1435 (edebug-inc-offset (edebug-cursor-offsets new-cursor
))))
1440 ;; Check for constant symbols that don't get wrapped.
1441 ((or (memq form
'(t nil
))
1445 (t ;; just a variable
1446 (edebug-make-after-form form
(edebug-inc-offset (cdr offset
))))))
1448 ;; Anything else is self-evaluating.
1450 (edebug-move-cursor cursor
))))
1453 (defsubst edebug-forms
(cursor) (edebug-match cursor
'(&rest form
)))
1454 (defsubst edebug-sexps
(cursor) (edebug-match cursor
'(&rest sexp
)))
1456 (defsubst edebug-list-form-args
(head cursor
)
1457 ;; Process the arguments of a list form given that head of form is a symbol.
1458 ;; Helper for edebug-list-form
1459 (let ((spec (get-edebug-spec head
)))
1464 ;; It is a speclist.
1465 (let (edebug-best-error
1466 edebug-error-point
);; This may not be needed.
1467 (edebug-match-sublist cursor spec
)))
1468 ((eq t spec
) (edebug-forms cursor
))
1469 ((eq 0 spec
) (edebug-sexps cursor
))
1470 ((symbolp spec
) (funcall spec cursor
));; Not used by edebug,
1471 ; but leave it in for compatibility.
1473 ;; No edebug-form-spec provided.
1474 ((edebug-macrop head
)
1475 (if edebug-eval-macro-args
1476 (edebug-forms cursor
)
1477 (edebug-sexps cursor
)))
1478 (t ;; Otherwise it is a function call.
1479 (edebug-forms cursor
)))))
1482 (defun edebug-list-form (cursor)
1483 ;; Return an instrumented form built from the list form.
1484 ;; The after offset will be left in the cursor after processing the form.
1485 (let ((head (edebug-top-element-required cursor
"Expected elements"))
1486 ;; Prevent backtracking whenever instrumenting.
1488 ;; A list form is never optional because it matches anything.
1489 (edebug-&optional nil
)
1491 ;; Skip the first offset.
1492 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1493 (cdr (edebug-cursor-offsets cursor
)))
1497 ((null head
) nil
) ; () is valid.
1498 ((eq head
'interactive-p
)
1499 ;; Special case: replace (interactive-p) with variable
1500 (setq edebug-def-interactive
'check-it
)
1501 (edebug-move-cursor cursor
)
1502 (edebug-interactive-p-name))
1504 (cons head
(edebug-list-form-args
1505 head
(edebug-move-cursor cursor
))))))
1508 (if (eq (car head
) '\
,)
1509 ;; The head of a form should normally be a symbol or a lambda
1510 ;; expression but it can also be an unquote form to be filled
1511 ;; before evaluation. We evaluate the arguments anyway, on the
1512 ;; assumption that the unquote form will place a proper function
1513 ;; name (rather than a macro name).
1514 (edebug-match cursor
'(("," def-form
) body
))
1515 ;; Process anonymous function and args.
1516 ;; This assumes no anonymous macros.
1517 (edebug-match-specs cursor
'(lambda-expr body
) 'edebug-match-specs
)))
1519 (t (edebug-syntax-error
1520 "Head of list form must be a symbol or lambda expression")))
1523 ;;; Matching of specs.
1525 (defvar edebug-after-dotted-spec nil
)
1527 (defvar edebug-matching-depth
0) ;; initial value
1528 (defconst edebug-max-depth
150) ;; maximum number of matching recursions.
1531 ;;; Failure to match
1533 ;; This throws to no-match, if there are higher alternatives.
1534 ;; Otherwise it signals an error. The place of the error is found
1535 ;; with the two before- and after-offset functions.
1537 (defun edebug-no-match (cursor &rest edebug-args
)
1538 ;; Throw a no-match, or signal an error immediately if gate is active.
1539 ;; Remember this point in case we need to report this error.
1540 (setq edebug-error-point
(or edebug-error-point
1541 (edebug-before-offset cursor
))
1542 edebug-best-error
(or edebug-best-error edebug-args
))
1543 (if (and edebug-gate
(not edebug-
&optional
))
1545 (if edebug-error-point
1546 (goto-char edebug-error-point
))
1547 (apply 'edebug-syntax-error edebug-args
))
1548 (funcall 'throw
'no-match edebug-args
)))
1551 (defun edebug-match (cursor specs
)
1552 ;; Top level spec matching function.
1553 ;; Used also at each lower level of specs.
1554 (let (edebug-&optional
1558 (edebug-gate edebug-gate
) ;; locally bound to limit effect
1560 (edebug-match-specs cursor specs
'edebug-match-specs
)))
1563 (defun edebug-match-one-spec (cursor spec
)
1564 ;; Match one spec, which is not a keyword &-spec.
1566 ((symbolp spec
) (edebug-match-symbol cursor spec
))
1567 ((vectorp spec
) (edebug-match cursor
(append spec nil
)))
1568 ((stringp spec
) (edebug-match-string cursor spec
))
1569 ((listp spec
) (edebug-match-list cursor spec
))
1573 (defun edebug-match-specs (cursor specs remainder-handler
)
1574 ;; Append results of matching the list of specs.
1575 ;; The first spec is handled and the remainder-handler handles the rest.
1576 (let ((edebug-matching-depth
1577 (if (> edebug-matching-depth edebug-max-depth
)
1578 (error "too deep - perhaps infinite loop in spec?")
1579 (1+ edebug-matching-depth
))))
1583 ;; Is the spec dotted?
1585 (let ((edebug-dotted-spec t
));; Containing spec list was dotted.
1586 (edebug-match-specs cursor
(list specs
) remainder-handler
)))
1588 ;; Is the form dotted?
1589 ((not (listp (edebug-cursor-expressions cursor
)));; allow nil
1590 (if (not edebug-dotted-spec
)
1591 (edebug-no-match cursor
"Dotted spec required."))
1592 ;; Cancel dotted spec and dotted form.
1593 (let ((edebug-dotted-spec)
1594 (this-form (edebug-cursor-expressions cursor
))
1595 (this-offset (edebug-cursor-offsets cursor
)))
1596 ;; Wrap the form in a list, (by changing the cursor??)...
1597 (edebug-set-cursor cursor
(list this-form
) this-offset
)
1598 ;; and process normally, then unwrap the result.
1599 (car (edebug-match-specs cursor specs remainder-handler
))))
1601 (t;; Process normally.
1602 (let* ((spec (car specs
))
1604 (first-char (and (symbolp spec
) (aref (symbol-name spec
) 0))))
1605 ;;(message "spec = %s first char = %s" spec first-char) (sit-for 1)
1608 ((eq ?
& first-char
);; "&" symbols take all following specs.
1609 (funcall (get-edebug-spec spec
) cursor
(cdr specs
)))
1610 ((eq ?
: first-char
);; ":" symbols take one following spec.
1611 (setq rest
(cdr (cdr specs
)))
1612 (funcall (get-edebug-spec spec
) cursor
(car (cdr specs
))))
1613 (t;; Any other normal spec.
1614 (setq rest
(cdr specs
))
1615 (edebug-match-one-spec cursor spec
)))
1616 (funcall remainder-handler cursor rest remainder-handler
)))))))
1619 ;; Define specs for all the symbol specs with functions used to process them.
1620 ;; Perhaps we shouldn't be doing this with edebug-form-specs since the
1621 ;; user may want to define macros or functions with the same names.
1622 ;; We could use an internal obarray for these primitive specs.
1624 (dolist (pair '((&optional . edebug-match-
&optional
)
1625 (&rest . edebug-match-
&rest
)
1626 (&or . edebug-match-
&or
)
1627 (form . edebug-match-form
)
1628 (sexp . edebug-match-sexp
)
1629 (body . edebug-match-body
)
1630 (&define . edebug-match-
&define
)
1631 (name . edebug-match-name
)
1632 (:name . edebug-match-colon-name
)
1633 (arg . edebug-match-arg
)
1634 (def-body . edebug-match-def-body
)
1635 (def-form . edebug-match-def-form
)
1636 ;; Less frequently used:
1637 ;; (function . edebug-match-function)
1638 (lambda-expr . edebug-match-lambda-expr
)
1639 (¬ . edebug-match-
¬
)
1640 (&key . edebug-match-
&key
)
1641 (place . edebug-match-place
)
1642 (gate . edebug-match-gate
)
1643 ;; (nil . edebug-match-nil) not this one - special case it.
1645 (put (car pair
) 'edebug-form-spec
(cdr pair
)))
1647 (defun edebug-match-symbol (cursor symbol
)
1648 ;; Match a symbol spec.
1649 (let* ((spec (get-edebug-spec symbol
)))
1653 ;; It is an indirect spec.
1654 (edebug-match cursor spec
)
1655 ;; Otherwise it should be the symbol name of a function.
1656 ;; There could be a bug here - maybe need to do edebug-match bindings.
1657 (funcall spec cursor
)))
1659 ((null symbol
) ;; special case this.
1660 (edebug-match-nil cursor
))
1662 ((fboundp symbol
) ; is it a predicate?
1663 (let ((sexp (edebug-top-element-required cursor
"Expected" symbol
)))
1664 ;; Special case for edebug-`.
1665 (if (and (listp sexp
) (eq (car sexp
) '\
,))
1666 (edebug-match cursor
'(("," def-form
)))
1667 (if (not (funcall symbol sexp
))
1668 (edebug-no-match cursor symbol
"failed"))
1669 (edebug-move-cursor cursor
)
1671 (t (error "%s is not a form-spec or function" symbol
))
1675 (defun edebug-match-sexp (cursor)
1676 (list (prog1 (edebug-top-element-required cursor
"Expected sexp")
1677 (edebug-move-cursor cursor
))))
1679 (defun edebug-match-form (cursor)
1680 (list (edebug-form cursor
)))
1682 (defalias 'edebug-match-place
'edebug-match-form
)
1683 ;; Currently identical to edebug-match-form.
1684 ;; This is for common lisp setf-style place arguments.
1686 (defsubst edebug-match-body
(cursor) (edebug-forms cursor
))
1688 (defun edebug-match-&optional
(cursor specs
)
1689 ;; Keep matching until one spec fails.
1690 (edebug-&optional-wrapper cursor specs
'edebug-
&optional-wrapper
))
1692 (defun edebug-&optional-wrapper
(cursor specs remainder-handler
)
1694 (edebug-&optional specs
)
1696 (this-form (edebug-cursor-expressions cursor
))
1697 (this-offset (edebug-cursor-offsets cursor
)))
1698 (if (null (catch 'no-match
1700 (edebug-match-specs cursor specs remainder-handler
))
1701 ;; Returning nil means no no-match was thrown.
1704 ;; no-match, but don't fail; just reset cursor and return nil.
1705 (edebug-set-cursor cursor this-form this-offset
)
1709 (defun edebug-&rest-wrapper
(cursor specs remainder-handler
)
1710 (if (null specs
) (setq specs edebug-
&rest
))
1711 ;; Reuse the &optional handler with this as the remainder handler.
1712 (edebug-&optional-wrapper cursor specs remainder-handler
))
1714 (defun edebug-match-&rest
(cursor specs
)
1715 ;; Repeatedly use specs until failure.
1716 (let ((edebug-&rest specs
) ;; remember these
1719 (edebug-&rest-wrapper cursor specs
'edebug-
&rest-wrapper
)))
1722 (defun edebug-match-&or
(cursor specs
)
1723 ;; Keep matching until one spec succeeds, and return its results.
1724 ;; If none match, fail.
1725 ;; This needs to be optimized since most specs spend time here.
1726 (let ((original-specs specs
)
1727 (this-form (edebug-cursor-expressions cursor
))
1728 (this-offset (edebug-cursor-offsets cursor
)))
1733 (let (edebug-gate ;; only while matching each spec
1736 ;; Doesn't support e.g. &or symbolp &rest form
1737 (edebug-match-one-spec cursor
(car specs
)))))
1738 ;; Match failed, so reset and try again.
1739 (setq specs
(cdr specs
))
1740 ;; Reset the cursor for the next match.
1741 (edebug-set-cursor cursor this-form this-offset
))
1743 (apply 'edebug-no-match cursor
"Expected one of" original-specs
))
1747 (defun edebug-match-¬
(cursor specs
)
1748 ;; If any specs match, then fail
1749 (if (null (catch 'no-match
1750 (let ((edebug-gate nil
))
1752 (edebug-match-&or cursor specs
)))
1754 ;; This means something matched, so it is a no match.
1755 (edebug-no-match cursor
"Unexpected"))
1756 ;; This means nothing matched, so it is OK.
1757 nil
) ;; So, return nothing
1760 (def-edebug-spec &key edebug-match-
&key
)
1762 (defun edebug-match-&key
(cursor specs
)
1763 ;; Following specs must look like (<name> <spec>) ...
1764 ;; where <name> is the name of a keyword, and spec is its spec.
1765 ;; This really doesn't save much over the expanded form and takes time.
1769 (mapcar (function (lambda (pair)
1770 (vector (format ":%s" (car pair
))
1775 (defun edebug-match-gate (cursor)
1776 ;; Simply set the gate to prevent backtracking at this level.
1777 (setq edebug-gate t
)
1781 (defun edebug-match-list (cursor specs
)
1782 ;; The spec is a list, but what kind of list, and what context?
1783 (if edebug-dotted-spec
1784 ;; After dotted spec but form did not contain dot,
1785 ;; so match list spec elements as if spliced in.
1787 (let ((edebug-dotted-spec))
1788 (edebug-match-specs cursor specs
'edebug-match-specs
))
1789 ;; If it matched, really clear the dotted-spec flag.
1790 (setq edebug-dotted-spec nil
))
1791 (let ((spec (car specs
))
1792 (form (edebug-top-element-required cursor
"Expected" specs
)))
1795 (let ((spec (car (cdr specs
))))
1798 ;; Special case: spec quotes a symbol to match.
1799 ;; Change in future. Use "..." instead.
1800 (if (not (eq spec form
))
1801 (edebug-no-match cursor
"Expected" spec
))
1802 (edebug-move-cursor cursor
)
1803 (setq edebug-gate t
)
1806 (error "Bad spec: %s" specs
)))))
1810 (list (edebug-match-sublist
1811 ;; First offset is for the list form itself.
1812 ;; Treat nil as empty list.
1813 (edebug-new-cursor form
(cdr (edebug-top-offset cursor
)))
1815 (edebug-move-cursor cursor
)))
1817 ((and (eq 'vector spec
) (vectorp form
))
1818 ;; Special case: match a vector with the specs.
1819 (let ((result (edebug-match-sublist
1821 form
(cdr (edebug-top-offset cursor
)))
1823 (edebug-move-cursor cursor
)
1824 (list (apply 'vector result
))))
1826 (t (edebug-no-match cursor
"Expected" specs
)))
1830 (defun edebug-match-sublist (cursor specs
)
1831 ;; Match a sublist of specs.
1832 (let (edebug-&optional
1834 ;;edebug-error-point
1837 ;; match with edebug-match-specs so edebug-best-error is not bound.
1838 (edebug-match-specs cursor specs
'edebug-match-specs
)
1839 (if (not (edebug-empty-cursor cursor
))
1840 (if edebug-best-error
1841 (apply 'edebug-no-match cursor edebug-best-error
)
1842 ;; A failed &rest or &optional spec may leave some args.
1843 (edebug-no-match cursor
"Failed matching" specs
)
1847 (defun edebug-match-string (cursor spec
)
1848 (let ((sexp (edebug-top-element-required cursor
"Expected" spec
)))
1849 (if (not (eq (intern spec
) sexp
))
1850 (edebug-no-match cursor
"Expected" spec
)
1851 ;; Since it matched, failure means immediate error, unless &optional.
1852 (setq edebug-gate t
)
1853 (edebug-move-cursor cursor
)
1857 (defun edebug-match-nil (cursor)
1858 ;; There must be nothing left to match a nil.
1859 (if (not (edebug-empty-cursor cursor
))
1860 (edebug-no-match cursor
"Unmatched argument(s)")
1864 (defun edebug-match-function (cursor)
1865 (error "Use function-form instead of function in edebug spec"))
1867 (defun edebug-match-&define
(cursor specs
)
1868 ;; Match a defining form.
1869 ;; Normally, &define is interpreted specially other places.
1870 ;; This should only be called inside of a spec list to match the remainder
1871 ;; of the current list. e.g. ("lambda" &define args def-body)
1872 (edebug-make-form-wrapper
1874 (edebug-before-offset cursor
)
1875 ;; Find the last offset in the list.
1876 (let ((offsets (edebug-cursor-offsets cursor
)))
1877 (while (consp offsets
) (setq offsets
(cdr offsets
)))
1881 (defun edebug-match-lambda-expr (cursor)
1882 ;; The expression must be a function.
1883 ;; This will match any list form that begins with a symbol
1884 ;; that has an edebug-form-spec beginning with &define. In
1885 ;; practice, only lambda expressions should be used.
1886 ;; I could add a &lambda specification to avoid confusion.
1887 (let* ((sexp (edebug-top-element-required
1888 cursor
"Expected lambda expression"))
1889 (offset (edebug-top-offset cursor
))
1890 (head (and (consp sexp
) (car sexp
)))
1891 (spec (and (symbolp head
) (get-edebug-spec head
)))
1892 (edebug-inside-func nil
))
1893 ;; Find out if this is a defining form from first symbol.
1894 (if (and (consp spec
) (eq '&define
(car spec
)))
1897 (edebug-defining-form
1898 (edebug-new-cursor sexp offset
)
1899 (car offset
);; before the sexp
1900 (edebug-after-offset cursor
)
1901 (cons (symbol-name head
) (cdr spec
))))
1902 (edebug-move-cursor cursor
))
1903 (edebug-no-match cursor
"Expected lambda expression")
1907 (defun edebug-match-name (cursor)
1908 ;; Set the edebug-def-name bound in edebug-defining-form.
1909 (let ((name (edebug-top-element-required cursor
"Expected name")))
1910 ;; Maybe strings and numbers could be used.
1911 (if (not (symbolp name
))
1912 (edebug-no-match cursor
"Symbol expected for name of definition"))
1913 (setq edebug-def-name
1915 ;; Construct a new name by appending to previous name.
1916 (intern (format "%s@%s" edebug-def-name name
))
1918 (edebug-move-cursor cursor
)
1921 (defun edebug-match-colon-name (cursor spec
)
1922 ;; Set the edebug-def-name to the spec.
1923 (setq edebug-def-name
1925 ;; Construct a new name by appending to previous name.
1926 (intern (format "%s@%s" edebug-def-name spec
))
1930 (defun edebug-match-arg (cursor)
1931 ;; set the def-args bound in edebug-defining-form
1932 (let ((edebug-arg (edebug-top-element-required cursor
"Expected arg")))
1933 (if (or (not (symbolp edebug-arg
))
1934 (edebug-lambda-list-keywordp edebug-arg
))
1935 (edebug-no-match cursor
"Bad argument:" edebug-arg
))
1936 (edebug-move-cursor cursor
)
1937 (setq edebug-def-args
(cons edebug-arg edebug-def-args
))
1940 (defun edebug-match-def-form (cursor)
1941 ;; Like form but the form is wrapped in edebug-enter form.
1942 ;; The form is assumed to be executing outside of the function context.
1943 ;; This is a hack for now, since a def-form might execute inside as well.
1944 ;; Not to be used otherwise.
1945 (let ((edebug-inside-func nil
))
1946 (list (edebug-make-enter-wrapper (list (edebug-form cursor
))))))
1948 (defun edebug-match-def-body (cursor)
1949 ;; Like body but body is wrapped in edebug-enter form.
1950 ;; The body is assumed to be executing inside of the function context.
1951 ;; Not to be used otherwise.
1952 (let ((edebug-inside-func t
))
1953 (list (edebug-wrap-def-body (edebug-forms cursor
)))))
1956 ;;;; Edebug Form Specs
1957 ;;; ==========================================================
1958 ;;; See cl-specs.el for common lisp specs.
1960 ;;;;* Spec for def-edebug-spec
1963 (defun edebug-spec-p (object)
1964 "Return non-nil if OBJECT is a symbol with an edebug-form-spec property."
1965 (and (symbolp object
)
1966 (get object
'edebug-form-spec
)))
1968 (def-edebug-spec def-edebug-spec
1969 ;; Top level is different from lower levels.
1970 (&define
:name edebug-spec name
1971 &or
"nil" edebug-spec-p
"t" "0" (&rest edebug-spec
)))
1973 (def-edebug-spec edebug-spec-list
1974 ;; A list must have something in it, or it is nil, a symbolp
1975 ((edebug-spec .
[&or nil edebug-spec
])))
1977 (def-edebug-spec edebug-spec
1979 (vector &rest edebug-spec
) ; matches a vector
1980 ("vector" &rest edebug-spec
) ; matches a vector spec
1984 [edebug-lambda-list-keywordp
&rest edebug-spec
]
1985 [keywordp gate edebug-spec
]
1986 edebug-spec-p
;; Including all the special ones e.g. form.
1987 symbolp
;; a predicate
1991 ;;;* Emacs special forms and some functions.
1993 ;; quote expects only one argument, although it allows any number.
1994 (def-edebug-spec quote sexp
)
1996 ;; The standard defining forms.
1997 (def-edebug-spec defconst defvar
)
1998 (def-edebug-spec defvar
(symbolp &optional form stringp
))
2000 (def-edebug-spec defun
2001 (&define name lambda-list
2003 [&optional
("interactive" interactive
)]
2005 ;; FIXME? Isn't this missing the doc-string? Cf defun.
2006 (def-edebug-spec defmacro
2007 (&define name lambda-list
[&optional
("declare" &rest sexp
)] def-body
))
2009 (def-edebug-spec arglist lambda-list
) ;; deprecated - use lambda-list.
2011 (def-edebug-spec lambda-list
2013 [&optional
["&optional" arg
&rest arg
]]
2014 &optional
["&rest" arg
]
2017 (def-edebug-spec interactive
2018 (&optional
&or stringp def-form
))
2020 ;; A function-form is for an argument that may be a function or a form.
2021 ;; This specially recognizes anonymous functions quoted with quote.
2022 (def-edebug-spec function-form
2023 ;; form at the end could also handle "function",
2024 ;; but recognize it specially to avoid wrapping function forms.
2025 (&or
([&or
"quote" "function"] &or symbolp lambda-expr
) form
))
2027 ;; function expects a symbol or a lambda or macro expression
2028 ;; A macro is allowed by Emacs.
2029 (def-edebug-spec function
(&or symbolp lambda-expr
))
2031 ;; lambda is a macro in emacs 19.
2032 (def-edebug-spec lambda
(&define lambda-list
2034 [&optional
("interactive" interactive
)]
2037 ;; A macro expression is a lambda expression with "macro" prepended.
2038 (def-edebug-spec macro
(&define
"lambda" lambda-list def-body
))
2040 ;; (def-edebug-spec anonymous-form ((&or ["lambda" lambda] ["macro" macro])))
2042 ;; Standard functions that take function-forms arguments.
2043 (def-edebug-spec mapcar
(function-form form
))
2044 (def-edebug-spec mapconcat
(function-form form form
))
2045 (def-edebug-spec mapatoms
(function-form &optional form
))
2046 (def-edebug-spec apply
(function-form &rest form
))
2047 (def-edebug-spec funcall
(function-form &rest form
))
2049 ;; FIXME? The manual has a gate here.
2050 (def-edebug-spec let
2051 ((&rest
&or
(symbolp &optional form
) symbolp
)
2054 (def-edebug-spec let
* let
)
2056 (def-edebug-spec setq
(&rest symbolp form
))
2057 (def-edebug-spec setq-default setq
)
2059 (def-edebug-spec cond
(&rest
(&rest form
)))
2061 (def-edebug-spec condition-case
2064 &rest
([&or symbolp
(&rest symbolp
)] body
)))
2067 (def-edebug-spec \
` (backquote-form))
2069 ;; Supports quotes inside backquotes,
2070 ;; but only at the top level inside unquotes.
2071 (def-edebug-spec backquote-form
2073 ([&or
"," ",@"] &or
("quote" backquote-form
) form
)
2074 ;; The simple version:
2075 ;; (backquote-form &rest backquote-form)
2076 ;; doesn't handle (a . ,b). The straightforward fix:
2077 ;; (backquote-form . [&or nil backquote-form])
2078 ;; uses up too much stack space.
2079 ;; Note that `(foo . ,@bar) is not valid, so we don't need to handle it.
2080 (backquote-form [&rest
[¬
","] backquote-form
]
2081 .
[&or nil backquote-form
])
2082 ;; If you use dotted forms in backquotes, replace the previous line
2083 ;; with the following. This takes quite a bit more stack space, however.
2084 ;; (backquote-form . [&or nil backquote-form])
2085 (vector &rest backquote-form
)
2088 ;; Special version of backquote that instruments backquoted forms
2089 ;; destined to be evaluated, usually as the result of a
2090 ;; macroexpansion. Backquoted code can only have unquotes (, and ,@)
2091 ;; in places where list forms are allowed, and predicates. If the
2092 ;; backquote is used in a macro, unquoted code that come from
2093 ;; arguments must be instrumented, if at all, with def-form not def-body.
2095 ;; We could assume that all forms (not nested in other forms)
2096 ;; in arguments of macros should be def-forms, whether or not the macros
2097 ;; are defined with edebug-` but this would be expensive.
2099 ;; ,@ might have some problems.
2101 (defalias 'edebug-\
` '\
`) ;; same macro as regular backquote.
2102 (def-edebug-spec edebug-\
` (def-form))
2104 ;; Assume immediate quote in unquotes mean backquote at next higher level.
2105 (def-edebug-spec \
, (&or
("quote" edebug-\
`) def-form
))
2106 (def-edebug-spec \
,@ (&define
;; so (,@ form) is never wrapped.
2107 &or
("quote" edebug-\
`) def-form
))
2109 ;; New byte compiler.
2110 (def-edebug-spec defsubst defun
)
2111 (def-edebug-spec dont-compile t
)
2112 (def-edebug-spec eval-when-compile t
)
2113 (def-edebug-spec eval-and-compile t
)
2115 (def-edebug-spec save-selected-window t
)
2116 (def-edebug-spec save-current-buffer t
)
2117 (def-edebug-spec delay-mode-hooks t
)
2118 (def-edebug-spec with-temp-file t
)
2119 (def-edebug-spec with-temp-message t
)
2120 (def-edebug-spec with-syntax-table t
)
2121 (def-edebug-spec push
(form sexp
))
2122 (def-edebug-spec pop
(sexp))
2124 (def-edebug-spec 1value
(form))
2125 (def-edebug-spec noreturn
(form))
2131 ;; Some miscellaneous specs for macros in public packages.
2134 ;; advice.el by Hans Chalupsky (hans@cs.buffalo.edu)
2136 (def-edebug-spec ad-dolist
((symbolp form
&optional form
) body
))
2137 (def-edebug-spec defadvice
2138 (&define name
;; thing being advised.
2139 (name ;; class is [&or "before" "around" "after"
2140 ;; "activation" "deactivation"]
2141 name
;; name of advice
2142 &rest sexp
;; optional position and flags
2145 [&optional
("interactive" interactive
)]
2148 (def-edebug-spec easy-menu-define
(symbolp body
))
2150 (def-edebug-spec with-custom-print body
)
2152 (def-edebug-spec sregexq
(&rest sexp
))
2153 (def-edebug-spec rx
(&rest sexp
))
2155 ;;; The debugger itself
2157 (defvar edebug-active nil
) ;; Non-nil when edebug is active
2159 ;;; add minor-mode-alist entry
2160 (or (assq 'edebug-active minor-mode-alist
)
2161 (setq minor-mode-alist
(cons (list 'edebug-active
" *Debugging*")
2164 (defvar edebug-stack nil
)
2165 ;; Stack of active functions evaluated via edebug.
2166 ;; Should be nil at the top level.
2168 (defvar edebug-stack-depth -
1)
2169 ;; Index of last edebug-stack item.
2171 (defvar edebug-offset-indices nil
)
2172 ;; Stack of offset indices of visited edebug sexps.
2173 ;; Should be nil at the top level.
2174 ;; Each function adds one cons. Top is modified with setcar.
2177 (defvar edebug-entered nil
2178 ;; Non-nil if edebug has already been entered at this recursive edit level.
2179 ;; This should stay nil at the top level.
2182 ;; Should these be options?
2183 (defconst edebug-debugger
'edebug
2184 ;; Name of function to use for debugging when error or quit occurs.
2185 ;; Set this to 'debug if you want to debug edebug.
2189 ;; Dynamically bound variables, declared globally but left unbound.
2190 (defvar edebug-function
) ; the function being executed. change name!!
2191 (defvar edebug-args
) ; the arguments of the function
2192 (defvar edebug-data
) ; the edebug data for the function
2193 (defvar edebug-value
) ; the result of the expression
2194 (defvar edebug-after-index
)
2195 (defvar edebug-def-mark
) ; the mark for the definition
2196 (defvar edebug-freq-count
) ; the count of expression visits.
2197 (defvar edebug-coverage
) ; the coverage results of each expression of function.
2199 (defvar edebug-buffer
) ; which buffer the function is in.
2200 (defvar edebug-result
) ; the result of the function call returned by body
2201 (defvar edebug-outside-executing-macro
)
2202 (defvar edebug-outside-defining-kbd-macro
)
2204 (defvar edebug-execution-mode
'step
) ; Current edebug mode set by user.
2205 (defvar edebug-next-execution-mode nil
) ; Use once instead of initial mode.
2207 (defvar edebug-outside-debug-on-error
) ; the value of debug-on-error outside
2208 (defvar edebug-outside-debug-on-quit
) ; the value of debug-on-quit outside
2210 (defvar edebug-outside-overriding-local-map
)
2211 (defvar edebug-outside-overriding-terminal-local-map
)
2213 (defvar edebug-outside-pre-command-hook
)
2214 (defvar edebug-outside-post-command-hook
)
2216 (defvar cl-lexical-debug
) ;; Defined in cl.el
2218 ;;; Handling signals
2220 (defun edebug-signal (edebug-signal-name edebug-signal-data
)
2221 "Signal an error. Args are SIGNAL-NAME, and associated DATA.
2222 A signal name is a symbol with an `error-conditions' property
2223 that is a list of condition names.
2224 A handler for any of those names will get to handle this signal.
2225 The symbol `error' should always be one of them.
2227 DATA should be a list. Its elements are printed as part of the error message.
2228 If the signal is handled, DATA is made available to the handler.
2229 See `condition-case'.
2231 This is the Edebug replacement for the standard `signal'. It should
2232 only be active while Edebug is. It checks `debug-on-error' to see
2233 whether it should call the debugger. When execution is resumed, the
2234 error is signaled again.
2235 \n(fn SIGNAL-NAME DATA)"
2236 (if (and (listp debug-on-error
) (memq edebug-signal-name debug-on-error
))
2237 (edebug 'error
(cons edebug-signal-name edebug-signal-data
)))
2238 ;; If we reach here without another non-local exit, then send signal again.
2239 ;; i.e. the signal is not continuable, yet.
2240 ;; Avoid infinite recursion.
2241 (let ((signal-hook-function nil
))
2242 (signal edebug-signal-name edebug-signal-data
)))
2246 (defun edebug-enter (edebug-function edebug-args edebug-body
)
2247 ;; Entering FUNC. The arguments are ARGS, and the body is BODY.
2248 ;; Setup edebug variables and evaluate BODY. This function is called
2249 ;; when a function evaluated with edebug-eval-top-level-form is entered.
2250 ;; Return the result of BODY.
2252 ;; Is this the first time we are entering edebug since
2253 ;; lower-level recursive-edit command?
2254 ;; More precisely, this tests whether Edebug is currently active.
2255 (if (not edebug-entered
)
2256 (let ((edebug-entered t
)
2257 ;; Binding max-lisp-eval-depth here is OK,
2258 ;; but not inside an unwind-protect.
2259 ;; Doing it here also keeps it from growing too large.
2260 (max-lisp-eval-depth (+ 100 max-lisp-eval-depth
)) ; too much??
2261 (max-specpdl-size (+ 200 max-specpdl-size
))
2263 (debugger edebug-debugger
) ; only while edebug is active.
2264 (edebug-outside-debug-on-error debug-on-error
)
2265 (edebug-outside-debug-on-quit debug-on-quit
)
2266 ;; Binding these may not be the right thing to do.
2267 ;; We want to allow the global values to be changed.
2268 (debug-on-error (or debug-on-error edebug-on-error
))
2269 (debug-on-quit edebug-on-quit
)
2271 ;; Lexical bindings must be uncompiled for this to work.
2272 (cl-lexical-debug t
)
2274 (edebug-outside-overriding-local-map overriding-local-map
)
2275 (edebug-outside-overriding-terminal-local-map
2276 overriding-terminal-local-map
)
2278 ;; Save the outside value of executing macro. (here??)
2279 (edebug-outside-executing-macro executing-kbd-macro
)
2280 (edebug-outside-pre-command-hook
2281 (edebug-var-status 'pre-command-hook
))
2282 (edebug-outside-post-command-hook
2283 (edebug-var-status 'post-command-hook
)))
2285 (let (;; Don't keep reading from an executing kbd macro
2286 ;; within edebug unless edebug-continue-kbd-macro is
2287 ;; non-nil. Again, local binding may not be best.
2288 (executing-kbd-macro
2289 (if edebug-continue-kbd-macro executing-kbd-macro
))
2291 ;; Don't get confused by the user's keymap changes.
2292 (overriding-local-map nil
)
2293 (overriding-terminal-local-map nil
)
2295 (signal-hook-function 'edebug-signal
)
2297 ;; Disable command hooks. This is essential when
2298 ;; a hook function is instrumented - to avoid infinite loop.
2299 ;; This may be more than we need, however.
2300 (pre-command-hook nil
)
2301 (post-command-hook nil
))
2302 (setq edebug-execution-mode
(or edebug-next-execution-mode
2304 edebug-execution-mode
)
2305 edebug-next-execution-mode nil
)
2306 (edebug-enter edebug-function edebug-args edebug-body
))
2307 ;; Reset global variables in case outside value was changed.
2308 (setq executing-kbd-macro edebug-outside-executing-macro
)
2309 (edebug-restore-status
2310 'post-command-hook edebug-outside-post-command-hook
)
2311 (edebug-restore-status
2312 'pre-command-hook edebug-outside-pre-command-hook
)))
2314 (let* ((edebug-data (get edebug-function
'edebug
))
2315 (edebug-def-mark (car edebug-data
)) ; mark at def start
2316 (edebug-freq-count (get edebug-function
'edebug-freq-count
))
2317 (edebug-coverage (get edebug-function
'edebug-coverage
))
2318 (edebug-buffer (marker-buffer edebug-def-mark
))
2320 (edebug-stack (cons edebug-function edebug-stack
))
2321 (edebug-offset-indices (cons 0 edebug-offset-indices
))
2323 (if (get edebug-function
'edebug-on-entry
)
2325 (setq edebug-execution-mode
'step
)
2326 (if (eq (get edebug-function
'edebug-on-entry
) 'temp
)
2327 (put edebug-function
'edebug-on-entry nil
))))
2329 (edebug-enter-trace edebug-body
)
2330 (funcall edebug-body
))
2333 (defun edebug-var-status (var)
2334 "Return a cons cell describing the status of VAR's current binding.
2335 The purpose of this function is so you can properly undo
2336 subsequent changes to the same binding, by passing the status
2337 cons cell to `edebug-restore-status'. The status cons cell
2338 has the form (LOCUS . VALUE), where LOCUS can be a buffer
2339 \(for a buffer-local binding), a frame (for a frame-local binding),
2340 or nil (if the default binding is current)."
2341 (cons (variable-binding-locus var
)
2342 (symbol-value var
)))
2344 (defun edebug-restore-status (var status
)
2345 "Reset VAR based on STATUS.
2346 STATUS should be a list returned by `edebug-var-status'."
2347 (let ((locus (car status
))
2348 (value (cdr status
)))
2349 (cond ((bufferp locus
)
2350 (if (buffer-live-p locus
)
2351 (with-current-buffer locus
2354 (modify-frame-parameters locus
(list (cons var value
))))
2358 (defun edebug-enter-trace (edebug-body)
2359 (let ((edebug-stack-depth (1+ edebug-stack-depth
))
2361 (edebug-print-trace-before
2362 (format "%s args: %s" edebug-function edebug-args
))
2363 (prog1 (setq edebug-result
(funcall edebug-body
))
2364 (edebug-print-trace-after
2365 (format "%s result: %s" edebug-function edebug-result
)))))
2367 (def-edebug-spec edebug-tracing
(form body
))
2369 (defmacro edebug-tracing
(msg &rest body
)
2370 "Print MSG in *edebug-trace* before and after evaluating BODY.
2371 The result of BODY is also printed."
2372 `(let ((edebug-stack-depth (1+ edebug-stack-depth
))
2374 (edebug-print-trace-before ,msg
)
2375 (prog1 (setq edebug-result
(progn ,@body
))
2376 (edebug-print-trace-after
2377 (format "%s result: %s" ,msg edebug-result
)))))
2379 (defun edebug-print-trace-before (msg)
2380 "Function called to print trace info before expression evaluation.
2381 MSG is printed after `::::{ '."
2382 (edebug-trace-display
2383 edebug-trace-buffer
"%s{ %s" (make-string edebug-stack-depth ?\
:) msg
))
2385 (defun edebug-print-trace-after (msg)
2386 "Function called to print trace info after expression evaluation.
2387 MSG is printed after `::::} '."
2388 (edebug-trace-display
2389 edebug-trace-buffer
"%s} %s" (make-string edebug-stack-depth ?\
:) msg
))
2393 (defun edebug-slow-before (edebug-before-index)
2394 (unless edebug-active
2395 ;; Debug current function given BEFORE position.
2396 ;; Called from functions compiled with edebug-eval-top-level-form.
2397 ;; Return the before index.
2398 (setcar edebug-offset-indices edebug-before-index
)
2400 ;; Increment frequency count
2401 (aset edebug-freq-count edebug-before-index
2402 (1+ (aref edebug-freq-count edebug-before-index
)))
2404 (if (or (not (memq edebug-execution-mode
'(Go-nonstop next
)))
2405 (edebug-input-pending-p))
2406 (edebug-debugger edebug-before-index
'before nil
)))
2407 edebug-before-index
)
2409 (defun edebug-fast-before (edebug-before-index)
2413 (defun edebug-slow-after (edebug-before-index edebug-after-index edebug-value
)
2416 ;; Debug current function given AFTER position and VALUE.
2417 ;; Called from functions compiled with edebug-eval-top-level-form.
2419 (setcar edebug-offset-indices edebug-after-index
)
2421 ;; Increment frequency count
2422 (aset edebug-freq-count edebug-after-index
2423 (1+ (aref edebug-freq-count edebug-after-index
)))
2424 (if edebug-test-coverage
(edebug-update-coverage))
2426 (if (and (eq edebug-execution-mode
'Go-nonstop
)
2427 (not (edebug-input-pending-p)))
2428 ;; Just return result.
2430 (edebug-debugger edebug-after-index
'after edebug-value
)
2433 (defun edebug-fast-after (edebug-before-index edebug-after-index edebug-value
)
2434 ;; Do nothing but return the value.
2437 (defun edebug-run-slow ()
2438 (defalias 'edebug-before
'edebug-slow-before
)
2439 (defalias 'edebug-after
'edebug-slow-after
))
2441 ;; This is not used, yet.
2442 (defun edebug-run-fast ()
2443 (defalias 'edebug-before
'edebug-fast-before
)
2444 (defalias 'edebug-after
'edebug-fast-after
))
2449 (defun edebug-update-coverage ()
2450 (let ((old-result (aref edebug-coverage edebug-after-index
)))
2452 ((eq 'ok-coverage old-result
))
2453 ((eq 'unknown old-result
)
2454 (aset edebug-coverage edebug-after-index edebug-value
))
2455 ;; Test if a different result.
2456 ((not (eq edebug-value old-result
))
2457 (aset edebug-coverage edebug-after-index
'ok-coverage
)))))
2460 ;; Dynamically declared unbound variables.
2461 (defvar edebug-arg-mode
) ; the mode, either before, after, or error
2462 (defvar edebug-breakpoints
)
2463 (defvar edebug-break-data
) ; break data for current function.
2464 (defvar edebug-break
) ; whether a break occurred.
2465 (defvar edebug-global-break
) ; whether a global break occurred.
2466 (defvar edebug-break-condition
) ; whether the breakpoint is conditional.
2468 (defvar edebug-break-result nil
)
2469 (defvar edebug-global-break-result nil
)
2472 (defun edebug-debugger (edebug-offset-index edebug-arg-mode edebug-value
)
2473 (if inhibit-redisplay
2474 ;; Don't really try to enter edebug within an eval from redisplay.
2476 ;; Check breakpoints and pending input.
2477 ;; If edebug display should be updated, call edebug-display.
2478 ;; Return edebug-value.
2479 (let* ( ;; This needs to be here since breakpoints may be changed.
2480 (edebug-breakpoints (car (cdr edebug-data
))) ; list of breakpoints
2481 (edebug-break-data (assq edebug-offset-index edebug-breakpoints
))
2482 (edebug-break-condition (car (cdr edebug-break-data
)))
2483 (edebug-global-break
2484 (if edebug-global-break-condition
2486 (setq edebug-global-break-result
2487 (eval edebug-global-break-condition
))
2491 ;;; (edebug-trace "exp: %s" edebug-value)
2492 ;; Test whether we should break.
2494 (or edebug-global-break
2495 (and edebug-break-data
2496 (or (not edebug-break-condition
)
2497 (setq edebug-break-result
2498 (eval edebug-break-condition
))))))
2499 (if (and edebug-break
2500 (nth 2 edebug-break-data
)) ; is it temporary?
2501 ;; Delete the breakpoint.
2503 (cons (delq edebug-break-data edebug-breakpoints
)
2504 (cdr (cdr edebug-data
)))))
2506 ;; Display if mode is not go, continue, or Continue-fast
2507 ;; or break, or input is pending,
2508 (if (or (not (memq edebug-execution-mode
'(go continue Continue-fast
)))
2510 (edebug-input-pending-p))
2511 (edebug-display)) ; <--------------- display
2517 ;; window-start now stored with each function.
2518 ;;(defvar edebug-window-start nil)
2519 ;; Remember where each buffers' window starts between edebug calls.
2520 ;; This is to avoid spurious recentering.
2521 ;; Does this still need to be buffer-local??
2522 ;;(setq-default edebug-window-start nil)
2523 ;;(make-variable-buffer-local 'edebug-window-start)
2526 ;; Dynamically declared unbound vars
2527 (defvar edebug-point
) ; the point in edebug buffer
2528 (defvar edebug-outside-buffer
) ; the current-buffer outside of edebug
2529 (defvar edebug-outside-point
) ; the point outside of edebug
2530 (defvar edebug-outside-mark
) ; the mark outside of edebug
2531 (defvar edebug-window-data
) ; window and window-start for current function
2532 (defvar edebug-outside-windows
) ; outside window configuration
2533 (defvar edebug-eval-buffer
) ; for the evaluation list.
2534 (defvar edebug-outside-o-a-p
) ; outside overlay-arrow-position
2535 (defvar edebug-outside-o-a-s
) ; outside overlay-arrow-string
2536 (defvar edebug-outside-c-i-e-a
) ; outside cursor-in-echo-area
2537 (defvar edebug-outside-d-c-i-n-s-w
) ; outside default-cursor-in-non-selected-windows
2539 (defvar edebug-eval-list nil
) ;; List of expressions to evaluate.
2541 (defvar edebug-previous-result nil
) ;; Last result returned.
2543 ;; Emacs 19 adds an arg to mark and mark-marker.
2544 (defalias 'edebug-mark-marker
'mark-marker
)
2547 (defun edebug-display ()
2548 (unless (marker-position edebug-def-mark
)
2549 ;; The buffer holding the source has been killed.
2550 ;; Let's at least show a backtrace so the user can figure out
2551 ;; which function we're talking about.
2553 ;; Setup windows for edebug, determine mode, maybe enter recursive-edit.
2554 ;; Uses local variables of edebug-enter, edebug-before, edebug-after
2555 ;; and edebug-debugger.
2556 (let ((edebug-active t
) ; for minor mode alist
2557 (edebug-with-timeout-suspend (with-timeout-suspend))
2558 edebug-stop
; should we enter recursive-edit
2559 (edebug-point (+ edebug-def-mark
2560 (aref (nth 2 edebug-data
) edebug-offset-index
)))
2561 edebug-buffer-outside-point
; current point in edebug-buffer
2562 ;; window displaying edebug-buffer
2563 (edebug-window-data (nth 3 edebug-data
))
2564 (edebug-outside-window (selected-window))
2565 (edebug-outside-buffer (current-buffer))
2566 (edebug-outside-point (point))
2567 (edebug-outside-mark (edebug-mark))
2568 (edebug-outside-unread-command-events unread-command-events
)
2569 edebug-outside-windows
; window or screen configuration
2570 edebug-buffer-points
2572 edebug-eval-buffer
; declared here so we can kill it below
2573 (edebug-eval-result-list (and edebug-eval-list
2574 (edebug-eval-result-list)))
2576 edebug-trace-window-start
2578 (edebug-outside-o-a-p overlay-arrow-position
)
2579 (edebug-outside-o-a-s overlay-arrow-string
)
2580 (edebug-outside-c-i-e-a cursor-in-echo-area
)
2581 (edebug-outside-d-c-i-n-s-w
2582 (default-value 'cursor-in-non-selected-windows
)))
2584 (let ((overlay-arrow-position overlay-arrow-position
)
2585 (overlay-arrow-string overlay-arrow-string
)
2586 (cursor-in-echo-area nil
)
2587 (unread-command-events unread-command-events
)
2590 (setq-default cursor-in-non-selected-windows t
)
2591 (if (not (buffer-name edebug-buffer
))
2592 (let ((debug-on-error nil
))
2593 (error "Buffer defining %s not found" edebug-function
)))
2595 (if (eq 'after edebug-arg-mode
)
2596 ;; Compute result string now before windows are modified.
2597 (edebug-compute-previous-result edebug-value
))
2599 (if edebug-save-windows
2600 ;; Save windows now before we modify them.
2601 (setq edebug-outside-windows
2602 (edebug-current-windows edebug-save-windows
)))
2604 (if edebug-save-displayed-buffer-points
2605 (setq edebug-buffer-points
(edebug-get-displayed-buffer-points)))
2607 ;; First move the edebug buffer point to edebug-point
2608 ;; so that window start doesn't get changed when we display it.
2609 ;; I don't know if this is going to help.
2610 ;;(set-buffer edebug-buffer)
2611 ;;(goto-char edebug-point)
2613 ;; If edebug-buffer is not currently displayed,
2614 ;; first find a window for it.
2615 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
))
2616 (setcar edebug-window-data
(selected-window))
2618 ;; Now display eval list, if any.
2619 ;; This is done after the pop to edebug-buffer
2620 ;; so that buffer-window correspondence is correct after quitting.
2621 (edebug-eval-display edebug-eval-result-list
)
2622 ;; The evaluation list better not have deleted edebug-window-data.
2623 (select-window (car edebug-window-data
))
2624 (set-buffer edebug-buffer
)
2626 (setq edebug-buffer-outside-point
(point))
2627 (goto-char edebug-point
)
2629 (if (eq 'before edebug-arg-mode
)
2630 ;; Check whether positions are up-to-date.
2631 ;; This assumes point is never before symbol.
2632 (if (not (memq (following-char) '(?\
( ?\
# ?\
` )))
2633 (let ((debug-on-error nil
))
2634 (error "Source has changed - reevaluate definition of %s"
2638 (setcdr edebug-window-data
2639 (edebug-adjust-window (cdr edebug-window-data
)))
2641 ;; Test if there is input, not including keyboard macros.
2642 (if (edebug-input-pending-p)
2644 (setq edebug-execution-mode
'step
2647 ;; (discard-input) ; is this unfriendly??
2649 ;; Now display arrow based on mode.
2650 (edebug-overlay-arrow)
2653 ((eq 'error edebug-arg-mode
)
2654 ;; Display error message
2655 (setq edebug-execution-mode
'step
)
2656 (edebug-overlay-arrow)
2658 (if (eq 'quit
(car edebug-value
))
2660 (edebug-report-error edebug-value
)))
2663 (edebug-global-break
2664 (message "Global Break: %s => %s"
2665 edebug-global-break-condition
2666 edebug-global-break-result
))
2667 (edebug-break-condition
2668 (message "Break: %s => %s"
2669 edebug-break-condition
2670 edebug-break-result
))
2671 ((not (eq edebug-execution-mode
'Continue-fast
))
2677 (setq unread-command-events nil
)
2678 (if (eq 'after edebug-arg-mode
)
2680 ;; Display result of previous evaluation.
2681 (if (and edebug-break
2682 (not (eq edebug-execution-mode
'Continue-fast
)))
2683 (edebug-sit-for edebug-sit-for-seconds
)) ; Show message.
2684 (edebug-previous-result)))
2689 ((eq edebug-execution-mode
'continue
)
2690 (edebug-sit-for edebug-sit-for-seconds
))
2691 ((eq edebug-execution-mode
'Continue-fast
) (edebug-sit-for 0))
2692 (t (setq edebug-stop t
))))
2694 ((eq edebug-execution-mode
'trace
)
2695 (edebug-sit-for edebug-sit-for-seconds
)) ; Force update and pause.
2696 ((eq edebug-execution-mode
'Trace-fast
)
2697 (edebug-sit-for 0))) ; Force update and continue.
2701 (memq edebug-execution-mode
'(step next
))
2702 (eq edebug-arg-mode
'error
))
2704 ;; (setq edebug-execution-mode 'step)
2705 ;; (edebug-overlay-arrow) ; This doesn't always show up.
2706 (edebug-recursive-edit))) ; <---------- Recursive edit
2708 ;; Reset the edebug-window-data to whatever it is now.
2709 (let ((window (if (eq (window-buffer) edebug-buffer
)
2711 (edebug-get-buffer-window edebug-buffer
))))
2712 ;; Remember window-start for edebug-buffer, if still displayed.
2715 (setcar edebug-window-data window
)
2716 (setcdr edebug-window-data
(window-start window
)))))
2718 ;; Save trace window point before restoring outside windows.
2719 ;; Could generalize this for other buffers.
2720 (setq edebug-trace-window
(get-buffer-window edebug-trace-buffer
))
2721 (if edebug-trace-window
2722 (setq edebug-trace-window-start
2723 (and edebug-trace-window
2724 (window-start edebug-trace-window
))))
2726 ;; Restore windows before continuing.
2727 (if edebug-save-windows
2729 (edebug-set-windows edebug-outside-windows
)
2731 ;; Restore displayed buffer points.
2732 ;; Needed even if restoring windows because
2733 ;; window-points are not restored. (should they be??)
2734 (if edebug-save-displayed-buffer-points
2735 (edebug-set-buffer-points edebug-buffer-points
))
2737 ;; Unrestore trace window's window-point.
2738 (if edebug-trace-window
2739 (set-window-start edebug-trace-window
2740 edebug-trace-window-start
))
2742 ;; Unrestore edebug-buffer's window-start, if displayed.
2743 (let ((window (car edebug-window-data
)))
2744 (if (and (edebug-window-live-p window
)
2745 (eq (window-buffer) edebug-buffer
))
2747 (set-window-start window
(cdr edebug-window-data
)
2749 ;; Unrestore edebug-buffer's window-point.
2750 ;; Needed in addition to setting the buffer point
2751 ;; - otherwise quitting doesn't leave point as is.
2752 ;; But this causes point to not be restored at times.
2753 ;; Also, it may not be a visible window.
2754 ;; (set-window-point window edebug-point)
2757 ;; Unrestore edebug-buffer's point. Rerestored below.
2758 ;; (goto-char edebug-point) ;; in edebug-buffer
2760 ;; Since we may be in a save-excursion, in case of quit,
2761 ;; reselect the outside window only.
2762 ;; Only needed if we are not recovering windows??
2763 (if (edebug-window-live-p edebug-outside-window
)
2764 (select-window edebug-outside-window
))
2765 ) ; if edebug-save-windows
2767 ;; Restore current buffer always, in case application needs it.
2768 (if (buffer-name edebug-outside-buffer
)
2769 (set-buffer edebug-outside-buffer
))
2770 ;; Restore point, and mark.
2771 ;; Needed even if restoring windows because
2772 ;; that doesn't restore point and mark in the current buffer.
2773 ;; But don't restore point if edebug-buffer is current buffer.
2774 (if (not (eq edebug-buffer edebug-outside-buffer
))
2775 (goto-char edebug-outside-point
))
2776 (if (marker-buffer (edebug-mark-marker))
2777 ;; Does zmacs-regions need to be nil while doing set-marker?
2778 (set-marker (edebug-mark-marker) edebug-outside-mark
))
2780 ;; None of the following is done if quit or signal occurs.
2782 ;; Restore edebug-buffer's outside point.
2783 ;; (edebug-trace "restore edebug-buffer point: %s"
2784 ;; edebug-buffer-outside-point)
2785 (with-current-buffer edebug-buffer
2786 (goto-char edebug-buffer-outside-point
))
2787 ;; ... nothing more.
2789 (with-timeout-unsuspend edebug-with-timeout-suspend
)
2790 ;; Reset global variables to outside values in case they were changed.
2792 unread-command-events edebug-outside-unread-command-events
2793 overlay-arrow-position edebug-outside-o-a-p
2794 overlay-arrow-string edebug-outside-o-a-s
2795 cursor-in-echo-area edebug-outside-c-i-e-a
)
2796 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w
)
2800 (defvar edebug-number-of-recursions
0)
2801 ;; Number of recursive edits started by edebug.
2802 ;; Should be 0 at the top level.
2804 (defvar edebug-recursion-depth
0)
2805 ;; Value of recursion-depth when edebug was called.
2807 ;; Dynamically declared unbound vars
2808 (defvar edebug-outside-match-data
) ; match data outside of edebug
2809 (defvar edebug-backtrace-buffer
) ; each recursive edit gets its own
2810 (defvar edebug-inside-windows
)
2811 (defvar edebug-interactive-p
)
2813 (defvar edebug-outside-map
)
2814 (defvar edebug-outside-standard-output
)
2815 (defvar edebug-outside-standard-input
)
2816 (defvar edebug-outside-current-prefix-arg
)
2817 (defvar edebug-outside-last-command
)
2818 (defvar edebug-outside-this-command
)
2820 ;; Note: here we have defvars for variables that are
2821 ;; built-in in certain versions.
2822 ;; Each defvar makes a difference
2823 ;; in versions where the variable is *not* built-in.
2826 (defvar edebug-outside-unread-command-char
)
2829 (defvar edebug-outside-last-command-event
)
2830 (defvar edebug-outside-unread-command-events
)
2831 (defvar edebug-outside-last-input-event
)
2832 (defvar edebug-outside-last-event-frame
)
2833 (defvar edebug-outside-last-nonmenu-event
)
2834 (defvar edebug-outside-track-mouse
)
2836 ;; Disable byte compiler warnings about unread-command-char and -event
2837 ;; (maybe works with byte-compile-version 2.22 at least)
2838 (defvar edebug-unread-command-char-warning
)
2839 (defvar edebug-unread-command-event-warning
)
2840 (eval-when-compile ; FIXME
2841 (setq edebug-unread-command-char-warning
2842 (get 'unread-command-char
'byte-obsolete-variable
))
2843 (put 'unread-command-char
'byte-obsolete-variable nil
))
2845 (defun edebug-recursive-edit ()
2846 ;; Start up a recursive edit inside of edebug.
2847 ;; The current buffer is the edebug-buffer, which is put into edebug-mode.
2848 ;; Assume that none of the variables below are buffer-local.
2849 (let ((edebug-buffer-read-only buffer-read-only
)
2850 ;; match-data must be done in the outside buffer
2851 (edebug-outside-match-data
2852 (with-current-buffer edebug-outside-buffer
; in case match buffer different
2855 ;;(edebug-number-of-recursions (1+ edebug-number-of-recursions))
2856 (edebug-recursion-depth (recursion-depth))
2857 edebug-entered
; bind locally to nil
2858 (edebug-interactive-p nil
) ; again non-interactive
2859 edebug-backtrace-buffer
; each recursive edit gets its own
2860 ;; The window configuration may be saved and restored
2861 ;; during a recursive-edit
2862 edebug-inside-windows
2864 (edebug-outside-map (current-local-map))
2866 (edebug-outside-standard-output standard-output
)
2867 (edebug-outside-standard-input standard-input
)
2868 (edebug-outside-defining-kbd-macro defining-kbd-macro
)
2870 (edebug-outside-last-command last-command
)
2871 (edebug-outside-this-command this-command
)
2873 (edebug-outside-unread-command-char unread-command-char
) ; FIXME
2874 (edebug-outside-current-prefix-arg current-prefix-arg
)
2876 (edebug-outside-last-input-event last-input-event
)
2877 (edebug-outside-last-command-event last-command-event
)
2878 (edebug-outside-last-event-frame last-event-frame
)
2879 (edebug-outside-last-nonmenu-event last-nonmenu-event
)
2880 (edebug-outside-track-mouse track-mouse
)
2885 ;; Declare global values local but using the same global value.
2886 ;; We could set these to the values for previous edebug call.
2887 (last-command last-command
)
2888 (this-command this-command
)
2890 ;; Assume no edebug command sets unread-command-char.
2891 (unread-command-char -
1)
2892 (current-prefix-arg nil
)
2894 ;; More for Emacs 19
2895 (last-input-event nil
)
2896 (last-command-event nil
)
2897 (last-event-frame nil
)
2898 (last-nonmenu-event nil
)
2901 ;; Bind again to outside values.
2902 (debug-on-error edebug-outside-debug-on-error
)
2903 (debug-on-quit edebug-outside-debug-on-quit
)
2905 ;; Don't keep defining a kbd macro.
2907 (if edebug-continue-kbd-macro defining-kbd-macro
))
2912 (if (and (eq edebug-execution-mode
'go
)
2913 (not (memq edebug-arg-mode
'(after error
))))
2916 (setq buffer-read-only t
)
2917 (setq signal-hook-function nil
)
2921 (recursive-edit) ; <<<<<<<<<< Recursive edit
2923 ;; Do the following, even if quit occurs.
2924 (setq signal-hook-function
'edebug-signal
)
2925 (if edebug-backtrace-buffer
2926 (kill-buffer edebug-backtrace-buffer
))
2927 ;; Could be an option to keep eval display up.
2928 (if edebug-eval-buffer
(kill-buffer edebug-eval-buffer
))
2930 ;; Remember selected-window after recursive-edit.
2931 ;; (setq edebug-inside-window (selected-window))
2933 (set-match-data edebug-outside-match-data
)
2935 ;; Recursive edit may have changed buffers,
2936 ;; so set it back before exiting let.
2937 (if (buffer-name edebug-buffer
) ; if it still exists
2939 (set-buffer edebug-buffer
)
2940 (if (memq edebug-execution-mode
'(go Go-nonstop
))
2941 (edebug-overlay-arrow))
2942 (setq buffer-read-only edebug-buffer-read-only
)
2943 (use-local-map edebug-outside-map
)
2944 (remove-hook 'kill-buffer-hook
'edebug-kill-buffer t
)
2946 ;; gotta have a buffer to let its buffer local variables be set
2947 (get-buffer-create " bogus edebug buffer"))
2950 ;; Reset global vars to outside values, in case they have been changed.
2952 last-command-event edebug-outside-last-command-event
2953 last-command edebug-outside-last-command
2954 this-command edebug-outside-this-command
2955 unread-command-char edebug-outside-unread-command-char
2956 current-prefix-arg edebug-outside-current-prefix-arg
2957 last-input-event edebug-outside-last-input-event
2958 last-event-frame edebug-outside-last-event-frame
2959 last-nonmenu-event edebug-outside-last-nonmenu-event
2960 track-mouse edebug-outside-track-mouse
2962 standard-output edebug-outside-standard-output
2963 standard-input edebug-outside-standard-input
2964 defining-kbd-macro edebug-outside-defining-kbd-macro
2969 ;;; Display related functions
2971 (defun edebug-adjust-window (old-start)
2972 ;; If pos is not visible, adjust current window to fit following context.
2973 ;;; (message "window: %s old-start: %s window-start: %s pos: %s"
2974 ;;; (selected-window) old-start (window-start) (point)) (sit-for 5)
2975 (if (not (pos-visible-in-window-p))
2977 ;; First try old-start
2979 (set-window-start (selected-window) old-start
))
2980 (if (not (pos-visible-in-window-p))
2982 ;; (message "resetting window start") (sit-for 2)
2987 (if (< (point) (window-start)) -
1 ; one line before if in back
2988 (- (/ (window-height) 2)) ; center the line moving forward
2996 (defconst edebug-arrow-alist
2997 '((Continue-fast .
"=")
3004 (Go-nonstop .
"..") ; not used
3006 "Association list of arrows for each edebug mode.")
3008 (defun edebug-overlay-arrow ()
3009 ;; Set up the overlay arrow at beginning-of-line in current buffer.
3010 ;; The arrow string is derived from edebug-arrow-alist and
3011 ;; edebug-execution-mode.
3012 (let ((pos (save-excursion (beginning-of-line) (point))))
3013 (setq overlay-arrow-string
3014 (cdr (assq edebug-execution-mode edebug-arrow-alist
)))
3015 (setq overlay-arrow-position
(make-marker))
3016 (set-marker overlay-arrow-position pos
(current-buffer))))
3019 (defun edebug-toggle-save-all-windows ()
3020 "Toggle the saving and restoring of all windows.
3021 Also, each time you toggle it on, the inside and outside window
3022 configurations become the same as the current configuration."
3024 (setq edebug-save-windows
(not edebug-save-windows
))
3025 (if edebug-save-windows
3026 (setq edebug-inside-windows
3027 (setq edebug-outside-windows
3028 (edebug-current-windows
3029 edebug-save-windows
))))
3030 (message "Window saving is %s for all windows."
3031 (if edebug-save-windows
"on" "off")))
3033 (defmacro edebug-changing-windows
(&rest body
)
3034 `(let ((window (selected-window)))
3035 (setq edebug-inside-windows
(edebug-current-windows t
))
3036 (edebug-set-windows edebug-outside-windows
)
3037 ,@body
;; Code to change edebug-save-windows
3038 (setq edebug-outside-windows
(edebug-current-windows
3039 edebug-save-windows
))
3040 ;; Problem: what about outside windows that are deleted inside?
3041 (edebug-set-windows edebug-inside-windows
)))
3043 (defun edebug-toggle-save-selected-window ()
3044 "Toggle the saving and restoring of the selected window.
3045 Also, each time you toggle it on, the inside and outside window
3046 configurations become the same as the current configuration."
3049 ((eq t edebug-save-windows
)
3050 ;; Save all outside windows except the selected one.
3051 ;; Remove (selected-window) from outside-windows.
3052 (edebug-changing-windows
3053 (setq edebug-save-windows
(delq window
(edebug-window-list)))))
3055 ((memq (selected-window) edebug-save-windows
)
3056 (setq edebug-outside-windows
3057 (delq (assq (selected-window) edebug-outside-windows
)
3058 edebug-outside-windows
))
3059 (setq edebug-save-windows
3060 (delq (selected-window) edebug-save-windows
)))
3061 (t ; Save a new window.
3062 (edebug-changing-windows
3063 (setq edebug-save-windows
(cons window edebug-save-windows
)))))
3065 (message "Window saving is %s for %s."
3066 (if (memq (selected-window) edebug-save-windows
)
3070 (defun edebug-toggle-save-windows (arg)
3071 "Toggle the saving and restoring of windows.
3072 With prefix, toggle for just the selected window.
3073 Otherwise, toggle for all windows."
3076 (edebug-toggle-save-selected-window)
3077 (edebug-toggle-save-all-windows)))
3080 (defun edebug-where ()
3081 "Show the debug windows and where we stopped in the program."
3083 (if (not edebug-active
)
3084 (error "Edebug is not active"))
3085 ;; Restore the window configuration to what it last was inside.
3086 ;; But it is not always set. - experiment
3087 ;;(if edebug-inside-windows
3088 ;; (edebug-set-windows edebug-inside-windows))
3089 (edebug-pop-to-buffer edebug-buffer
)
3090 (goto-char edebug-point
))
3092 (defun edebug-view-outside ()
3093 "Change to the outside window configuration.
3094 Use `edebug-where' to return."
3096 (if (not edebug-active
)
3097 (error "Edebug is not active"))
3098 (setq edebug-inside-windows
3099 (edebug-current-windows edebug-save-windows
))
3100 (edebug-set-windows edebug-outside-windows
)
3101 (goto-char edebug-outside-point
)
3102 (message "Window configuration outside of Edebug. Return with %s"
3103 (substitute-command-keys "\\<global-map>\\[edebug-where]")))
3106 (defun edebug-bounce-point (arg)
3107 "Bounce the point in the outside current buffer.
3108 If prefix argument ARG is supplied, sit for that many seconds
3109 before returning. The default is one second."
3111 (if (not edebug-active
)
3112 (error "Edebug is not active"))
3114 ;; If the buffer's currently displayed, avoid set-window-configuration.
3115 (save-window-excursion
3116 (edebug-pop-to-buffer edebug-outside-buffer
)
3117 (goto-char edebug-outside-point
)
3118 (message "Current buffer: %s Point: %s Mark: %s"
3119 (current-buffer) (point)
3120 (if (marker-buffer (edebug-mark-marker))
3121 (marker-position (edebug-mark-marker)) "<not set>"))
3122 (edebug-sit-for arg
)
3123 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
)))))
3126 ;; Joe Wells, here is a start at your idea of adding a buffer to the internal
3127 ;; display list. Still need to use this list in edebug-display.
3129 '(defvar edebug-display-buffer-list nil
3130 "List of buffers that edebug will display when it is active.")
3132 '(defun edebug-display-buffer (buffer)
3133 "Toggle display of a buffer inside of edebug."
3134 (interactive "bBuffer: ")
3135 (let ((already-displaying (memq buffer edebug-display-buffer-list
)))
3136 (setq edebug-display-buffer-list
3137 (if already-displaying
3138 (delq buffer edebug-display-buffer-list
)
3139 (cons buffer edebug-display-buffer-list
)))
3140 (message "Displaying %s %s" buffer
3141 (if already-displaying
"off" "on"))))
3143 ;;; Breakpoint related functions
3145 (defun edebug-find-stop-point ()
3146 ;; Return (function . index) of the nearest edebug stop point.
3147 (let* ((edebug-def-name (edebug-form-data-symbol))
3149 (let ((data (get edebug-def-name
'edebug
)))
3150 (if (or (null data
) (markerp data
))
3151 (error "%s is not instrumented for Edebug" edebug-def-name
))
3152 data
)) ; we could do it automatically, if data is a marker.
3153 ;; pull out parts of edebug-data.
3154 (edebug-def-mark (car edebug-data
))
3155 ;; (edebug-breakpoints (car (cdr edebug-data)))
3157 (offset-vector (nth 2 edebug-data
))
3158 (offset (- (save-excursion
3159 (if (looking-at "[ \t]")
3160 ;; skip backwards until non-whitespace, or bol
3161 (skip-chars-backward " \t"))
3165 ;; the offsets are in order so we can do a linear search
3166 (setq len
(length offset-vector
))
3168 (while (and (< i len
) (> offset
(aref offset-vector i
)))
3171 (<= offset
(aref offset-vector i
)))
3172 ;; return the relevant info
3173 (cons edebug-def-name i
)
3174 (message "Point is not on an expression in %s."
3179 (defun edebug-next-breakpoint ()
3180 "Move point to the next breakpoint, or first if none past point."
3182 (let ((edebug-stop-point (edebug-find-stop-point)))
3183 (if edebug-stop-point
3184 (let* ((edebug-def-name (car edebug-stop-point
))
3185 (index (cdr edebug-stop-point
))
3186 (edebug-data (get edebug-def-name
'edebug
))
3188 ;; pull out parts of edebug-data
3189 (edebug-def-mark (car edebug-data
))
3190 (edebug-breakpoints (car (cdr edebug-data
)))
3191 (offset-vector (nth 2 edebug-data
))
3193 (if (not edebug-breakpoints
)
3194 (message "No breakpoints in this function.")
3195 (let ((breaks edebug-breakpoints
))
3197 (<= (car (car breaks
)) index
))
3198 (setq breaks
(cdr breaks
)))
3202 ;; goto the first breakpoint
3203 (car edebug-breakpoints
)))
3204 (goto-char (+ edebug-def-mark
3205 (aref offset-vector
(car breakpoint
))))
3208 (concat (if (nth 2 breakpoint
)
3210 (if (car (cdr breakpoint
))
3211 (format "Condition: %s"
3212 (edebug-safe-prin1-to-string
3213 (car (cdr breakpoint
))))
3218 (defun edebug-modify-breakpoint (flag &optional condition temporary
)
3219 "Modify the breakpoint for the form at point or after it.
3220 Set it if FLAG is non-nil, clear it otherwise. Then move to that point.
3221 If CONDITION or TEMPORARY are non-nil, add those attributes to
3223 (let ((edebug-stop-point (edebug-find-stop-point)))
3224 (if edebug-stop-point
3225 (let* ((edebug-def-name (car edebug-stop-point
))
3226 (index (cdr edebug-stop-point
))
3227 (edebug-data (get edebug-def-name
'edebug
))
3229 ;; pull out parts of edebug-data
3230 (edebug-def-mark (car edebug-data
))
3231 (edebug-breakpoints (car (cdr edebug-data
)))
3232 (offset-vector (nth 2 edebug-data
))
3234 ;; delete it either way
3235 (setq present
(assq index edebug-breakpoints
))
3236 (setq edebug-breakpoints
(delq present edebug-breakpoints
))
3239 ;; add it to the list and resort
3240 (setq edebug-breakpoints
3243 (list index condition temporary
)
3244 edebug-breakpoints
) '<))
3246 (message "Breakpoint set in %s with condition: %s"
3247 edebug-def-name condition
)
3248 (message "Breakpoint set in %s" edebug-def-name
)))
3250 (message "Breakpoint unset in %s" edebug-def-name
)
3251 (message "No breakpoint here")))
3253 (setcar (cdr edebug-data
) edebug-breakpoints
)
3254 (goto-char (+ edebug-def-mark
(aref offset-vector index
)))
3257 (defun edebug-set-breakpoint (arg)
3258 "Set the breakpoint of nearest sexp.
3259 With prefix argument, make it a temporary breakpoint."
3261 (edebug-modify-breakpoint t nil arg
))
3263 (defun edebug-unset-breakpoint ()
3264 "Clear the breakpoint of nearest sexp."
3266 (edebug-modify-breakpoint nil
))
3269 (defun edebug-set-global-break-condition (expression)
3270 "Set `edebug-global-break-condition' to EXPRESSION."
3273 (let ((initial (and edebug-global-break-condition
3274 (format "%s" edebug-global-break-condition
))))
3275 (read-from-minibuffer
3276 "Global Condition: " initial read-expression-map t
3277 (if (equal (car read-expression-history
) initial
)
3278 '(read-expression-history .
1)
3279 'read-expression-history
)))))
3280 (setq edebug-global-break-condition expression
))
3283 ;;; Mode switching functions
3285 (defun edebug-set-mode (mode shortmsg msg
)
3286 ;; Set the edebug mode to MODE.
3287 ;; Display SHORTMSG, or MSG if not within edebug.
3288 (if (eq (1+ edebug-recursion-depth
) (recursion-depth))
3290 (setq edebug-execution-mode mode
)
3291 (message "%s" shortmsg
)
3292 ;; Continue execution
3293 (exit-recursive-edit))
3294 ;; This is not terribly useful!!
3295 (setq edebug-next-execution-mode mode
)
3296 (message "%s" msg
)))
3299 (defalias 'edebug-step-through-mode
'edebug-step-mode
)
3301 (defun edebug-step-mode ()
3302 "Proceed to next stop point."
3304 (edebug-set-mode 'step
"" "Edebug will stop at next stop point."))
3306 (defun edebug-next-mode ()
3307 "Proceed to next `after' stop point."
3309 (edebug-set-mode 'next
"" "Edebug will stop after next eval."))
3311 (defun edebug-go-mode (arg)
3312 "Go, evaluating until break.
3313 With prefix ARG, set temporary break at current point and go."
3316 (edebug-set-breakpoint t
))
3317 (edebug-set-mode 'go
"Go..." "Edebug will go until break."))
3319 (defun edebug-Go-nonstop-mode ()
3320 "Go, evaluating without debugging.
3321 You can use `edebug-stop', or any editing command, to stop."
3323 (edebug-set-mode 'Go-nonstop
"Go-Nonstop..."
3324 "Edebug will not stop at breaks."))
3327 (defun edebug-trace-mode ()
3329 Pauses for `edebug-sit-for-seconds' at each stop point."
3331 (edebug-set-mode 'trace
"Tracing..." "Edebug will trace with pause."))
3333 (defun edebug-Trace-fast-mode ()
3334 "Trace with no wait at each step.
3335 Updates the display at each stop point, but does not pause."
3337 (edebug-set-mode 'Trace-fast
3338 "Trace fast..." "Edebug will trace without pause."))
3340 (defun edebug-continue-mode ()
3341 "Begin continue mode.
3342 Pauses for `edebug-sit-for-seconds' at each break point."
3344 (edebug-set-mode 'continue
"Continue..."
3345 "Edebug will pause at breakpoints."))
3347 (defun edebug-Continue-fast-mode ()
3348 "Trace with no wait at each step.
3349 Updates the display at each break point, but does not pause."
3351 (edebug-set-mode 'Continue-fast
"Continue fast..."
3352 "Edebug will stop and go at breakpoints."))
3354 ;; ------------------------------------------------------------
3355 ;; The following use the mode changing commands and breakpoints.
3358 (defun edebug-goto-here ()
3359 "Proceed to first stop-point at or after current position of point."
3364 (defun edebug-stop ()
3365 "Stop execution and do not continue.
3366 Useful for exiting from trace or continue loop."
3371 '(defun edebug-forward ()
3372 "Proceed to the exit of the next expression to be evaluated."
3376 "Edebug will stop after exiting the next expression."))
3379 (defun edebug-forward-sexp (arg)
3380 "Proceed from the current point to the end of the ARGth sexp ahead.
3381 If there are not ARG sexps ahead, then do `edebug-step-out'."
3384 (let ((parse-sexp-ignore-comments t
))
3385 ;; Call forward-sexp repeatedly until done or failure.
3392 (defun edebug-step-out ()
3393 "Proceed from the current point to the end of the containing sexp.
3394 If there is no containing sexp that is not the top level defun,
3395 go to the end of the last sexp, or if that is the same point, then step."
3398 (let ((parse-sexp-ignore-comments t
))
3401 ;; Is there still a containing expression?
3405 ;; At top level - 1, so first check if there are more sexps at this level.
3406 (let ((start-point (point)))
3409 (if (= (point) start-point
)
3410 (edebug-step-mode) ; No more at this level, so step.
3414 (defun edebug-instrument-function (func)
3415 ;; Func should be a function symbol.
3416 ;; Return the function symbol, or nil if not instrumented.
3417 (let ((func-marker (get func
'edebug
)))
3419 ((markerp func-marker
)
3420 ;; It is uninstrumented, so instrument it.
3421 (with-current-buffer (marker-buffer func-marker
)
3422 (goto-char func-marker
)
3423 (edebug-eval-top-level-form)
3425 ((consp func-marker
)
3426 (message "%s is already instrumented." func
)
3429 (let ((loc (find-function-noselect func
)))
3431 (error "Could not find the definition in its file"))
3432 (with-current-buffer (car loc
)
3433 (goto-char (cdr loc
))
3434 (edebug-eval-top-level-form)
3437 (defun edebug-instrument-callee ()
3438 "Instrument the definition of the function or macro about to be called.
3439 Do this when stopped before the form or it will be too late.
3440 One side effect of using this command is that the next time the
3441 function or macro is called, Edebug will be called there as well."
3443 (if (not (looking-at "\("))
3444 (error "You must be before a list form")
3448 (if (looking-at "\(")
3449 (edebug-form-data-name
3450 (edebug-get-form-data-entry (point)))
3451 (edebug-original-read (current-buffer))))))
3452 (edebug-instrument-function func
))))
3455 (defun edebug-step-in ()
3456 "Step into the definition of the function or macro about to be called.
3457 This first does `edebug-instrument-callee' to ensure that it is
3458 instrumented. Then it does `edebug-on-entry' and switches to `go' mode."
3460 (let ((func (edebug-instrument-callee)))
3463 (edebug-on-entry func
'temp
)
3464 (edebug-go-mode nil
)))))
3466 (defun edebug-on-entry (function &optional flag
)
3467 "Cause Edebug to stop when FUNCTION is called.
3468 With prefix argument, make this temporary so it is automatically
3469 cancelled the first time the function is entered."
3470 (interactive "aEdebug on entry to: \nP")
3471 ;; Could store this in the edebug data instead.
3472 (put function
'edebug-on-entry
(if flag
'temp t
)))
3474 (defun cancel-edebug-on-entry (function)
3475 (interactive "aEdebug on entry to: ")
3476 (put function
'edebug-on-entry nil
))
3479 (if (not (fboundp 'edebug-original-debug-on-entry
))
3480 (fset 'edebug-original-debug-on-entry
(symbol-function 'debug-on-entry
)))
3481 '(fset 'debug-on-entry
'edebug-debug-on-entry
) ;; Should we do this?
3482 ;; Also need edebug-cancel-debug-on-entry
3484 '(defun edebug-debug-on-entry (function)
3485 "Request FUNCTION to invoke debugger each time it is called.
3486 If the user continues, FUNCTION's execution proceeds.
3487 Works by modifying the definition of FUNCTION,
3488 which must be written in Lisp, not predefined.
3489 Use `cancel-debug-on-entry' to cancel the effect of this command.
3490 Redefining FUNCTION also does that.
3492 This version is from Edebug. If the function is instrumented for
3493 Edebug, it calls `edebug-on-entry'."
3494 (interactive "aDebug on entry (to function): ")
3495 (let ((func-data (get function
'edebug
)))
3496 (if (or (null func-data
) (markerp func-data
))
3497 (edebug-original-debug-on-entry function
)
3498 (edebug-on-entry function
))))
3501 (defun edebug-top-level-nonstop ()
3502 "Set mode to Go-nonstop, and exit to top-level.
3503 This is useful for exiting even if `unwind-protect' code may be executed."
3505 (setq edebug-execution-mode
'Go-nonstop
)
3509 ;;(defun edebug-exit-out ()
3510 ;; "Go until the current function exits."
3512 ;; (edebug-set-mode 'exiting "Exit..."))
3515 ;;; The following initial mode setting definitions are not used yet.
3517 '(defconst edebug-initial-mode-alist
3518 '((edebug-Continue-fast . Continue-fast
)
3519 (edebug-Trace-fast . Trace-fast
)
3520 (edebug-continue . continue
)
3521 (edebug-trace . trace
)
3523 (edebug-step-through . step
)
3524 (edebug-Go-nonstop . Go-nonstop
)
3526 "Association list between commands and the modes they set.")
3529 '(defun edebug-set-initial-mode ()
3530 "Ask for the initial mode of the enclosing function.
3531 The mode is requested via the key that would be used to set the mode in
3534 (let* ((this-function (edebug-which-function))
3535 (keymap (if (eq edebug-mode-map
(current-local-map))
3537 (old-mode (or (get this-function
'edebug-initial-mode
)
3538 edebug-initial-mode
))
3539 (key (read-key-sequence
3541 "Change initial edebug mode for %s from %s (%s) to (enter key): "
3545 (car (rassq old-mode edebug-initial-mode-alist
))
3548 (mode (cdr (assq (key-binding key
) edebug-initial-mode-alist
)))
3551 (or (get this-function
'edebug-initial-mode
)
3552 (not (eq mode edebug-initial-mode
))))
3554 (put this-function
'edebug-initial-mode mode
)
3555 (message "Initial mode for %s is now: %s"
3556 this-function mode
))
3557 (error "Key must map to one of the mode changing commands")
3560 ;;; Evaluation of expressions
3562 (def-edebug-spec edebug-outside-excursion t
)
3564 (defmacro edebug-outside-excursion
(&rest body
)
3565 "Evaluate an expression list in the outside context.
3566 Return the result of the last expression."
3567 `(save-excursion ; of current-buffer
3568 (if edebug-save-windows
3570 ;; After excursion, we will
3571 ;; restore to current window configuration.
3572 (setq edebug-inside-windows
3573 (edebug-current-windows edebug-save-windows
))
3574 ;; Restore outside windows.
3575 (edebug-set-windows edebug-outside-windows
)))
3577 (set-buffer edebug-buffer
) ; why?
3578 ;; (use-local-map edebug-outside-map)
3579 (set-match-data edebug-outside-match-data
)
3580 ;; Restore outside context.
3581 (let (;; (edebug-inside-map (current-local-map)) ;; restore map??
3582 (last-command-event edebug-outside-last-command-event
)
3583 (last-command edebug-outside-last-command
)
3584 (this-command edebug-outside-this-command
)
3585 (unread-command-char edebug-outside-unread-command-char
)
3586 (unread-command-events edebug-outside-unread-command-events
)
3587 (current-prefix-arg edebug-outside-current-prefix-arg
)
3588 (last-input-event edebug-outside-last-input-event
)
3589 (last-event-frame edebug-outside-last-event-frame
)
3590 (last-nonmenu-event edebug-outside-last-nonmenu-event
)
3591 (track-mouse edebug-outside-track-mouse
)
3592 (standard-output edebug-outside-standard-output
)
3593 (standard-input edebug-outside-standard-input
)
3595 (executing-kbd-macro edebug-outside-executing-macro
)
3596 (defining-kbd-macro edebug-outside-defining-kbd-macro
)
3597 ;; Get the values out of the saved statuses.
3598 (pre-command-hook (cdr edebug-outside-pre-command-hook
))
3599 (post-command-hook (cdr edebug-outside-post-command-hook
))
3601 ;; See edebug-display
3602 (overlay-arrow-position edebug-outside-o-a-p
)
3603 (overlay-arrow-string edebug-outside-o-a-s
)
3604 (cursor-in-echo-area edebug-outside-c-i-e-a
)
3606 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w
)
3608 (with-current-buffer edebug-outside-buffer
; of edebug-buffer
3609 (goto-char edebug-outside-point
)
3610 (if (marker-buffer (edebug-mark-marker))
3611 (set-marker (edebug-mark-marker) edebug-outside-mark
))
3614 ;; Back to edebug-buffer. Restore rest of inside context.
3615 ;; (use-local-map edebug-inside-map)
3616 (if edebug-save-windows
3617 ;; Restore inside windows.
3618 (edebug-set-windows edebug-inside-windows
))
3620 ;; Save values that may have been changed.
3622 edebug-outside-last-command-event last-command-event
3623 edebug-outside-last-command last-command
3624 edebug-outside-this-command this-command
3625 edebug-outside-unread-command-char unread-command-char
3626 edebug-outside-unread-command-events unread-command-events
3627 edebug-outside-current-prefix-arg current-prefix-arg
3628 edebug-outside-last-input-event last-input-event
3629 edebug-outside-last-event-frame last-event-frame
3630 edebug-outside-last-nonmenu-event last-nonmenu-event
3631 edebug-outside-track-mouse track-mouse
3632 edebug-outside-standard-output standard-output
3633 edebug-outside-standard-input standard-input
3635 edebug-outside-executing-macro executing-kbd-macro
3636 edebug-outside-defining-kbd-macro defining-kbd-macro
3638 edebug-outside-o-a-p overlay-arrow-position
3639 edebug-outside-o-a-s overlay-arrow-string
3640 edebug-outside-c-i-e-a cursor-in-echo-area
3641 edebug-outside-d-c-i-n-s-w
(default-value
3642 'cursor-in-non-selected-windows
)
3645 ;; Restore the outside saved values; don't alter
3646 ;; the outside binding loci.
3647 (setcdr edebug-outside-pre-command-hook pre-command-hook
)
3648 (setcdr edebug-outside-post-command-hook post-command-hook
)
3650 (setq-default cursor-in-non-selected-windows t
)
3654 (defvar cl-debug-env
) ; defined in cl; non-nil when lexical env used.
3656 (defun edebug-eval (edebug-expr)
3657 ;; Are there cl lexical variables active?
3658 (if (bound-and-true-p cl-debug-env
)
3659 (eval (cl-macroexpand-all edebug-expr cl-debug-env
))
3660 (eval edebug-expr
)))
3662 (defun edebug-safe-eval (edebug-expr)
3663 ;; Evaluate EXPR safely.
3664 ;; If there is an error, a string is returned describing the error.
3665 (condition-case edebug-err
3666 (edebug-eval edebug-expr
)
3667 (error (edebug-format "%s: %s" ;; could
3668 (get (car edebug-err
) 'error-message
)
3669 (car (cdr edebug-err
))))))
3674 (defun edebug-report-error (edebug-value)
3675 ;; Print an error message like command level does.
3676 ;; This also prints the error name if it has no error-message.
3678 (or (get (car edebug-value
) 'error-message
)
3679 (format "peculiar error (%s)" (car edebug-value
)))
3680 (mapconcat (function (lambda (edebug-arg)
3681 ;; continuing after an error may
3682 ;; complain about edebug-arg. why??
3683 (prin1-to-string edebug-arg
)))
3684 (cdr edebug-value
) ", ")))
3686 (defvar print-readably
) ; defined by lemacs
3687 ;; Alternatively, we could change the definition of
3688 ;; edebug-safe-prin1-to-string to only use these if defined.
3690 (defun edebug-safe-prin1-to-string (value)
3691 (let ((print-escape-newlines t
)
3692 (print-length (or edebug-print-length print-length
))
3693 (print-level (or edebug-print-level print-level
))
3694 (print-circle (or edebug-print-circle print-circle
))
3695 (print-readably nil
)) ; lemacs uses this.
3697 (edebug-prin1-to-string value
)
3698 (error "#Apparently circular structure#"))))
3700 (defun edebug-compute-previous-result (edebug-previous-value)
3701 (if edebug-unwrap-results
3702 (setq edebug-previous-value
3703 (edebug-unwrap* edebug-previous-value
)))
3704 (setq edebug-previous-result
3706 (edebug-safe-prin1-to-string edebug-previous-value
)
3707 (eval-expression-print-format edebug-previous-value
))))
3709 (defun edebug-previous-result ()
3710 "Print the previous result."
3712 (message "%s" edebug-previous-result
))
3714 ;;; Read, Eval and Print
3716 (defalias 'edebug-prin1
'prin1
)
3717 (defalias 'edebug-print
'print
)
3718 (defalias 'edebug-prin1-to-string
'prin1-to-string
)
3719 (defalias 'edebug-format
'format
)
3720 (defalias 'edebug-message
'message
)
3722 (defun edebug-eval-expression (edebug-expr)
3723 "Evaluate an expression in the outside environment.
3724 If interactive, prompt for the expression.
3725 Print result in minibuffer."
3726 (interactive (list (read-from-minibuffer
3727 "Eval: " nil read-expression-map t
3728 'read-expression-history
)))
3730 (edebug-outside-excursion
3731 (setq values
(cons (edebug-eval edebug-expr
) values
))
3732 (concat (edebug-safe-prin1-to-string (car values
))
3733 (eval-expression-print-format (car values
))))))
3735 (defun edebug-eval-last-sexp ()
3736 "Evaluate sexp before point in the outside environment.
3737 Print value in minibuffer."
3739 (edebug-eval-expression (edebug-last-sexp)))
3741 (defun edebug-eval-print-last-sexp ()
3742 "Evaluate sexp before point in outside environment; insert value.
3743 This prints the value into current buffer."
3745 (let* ((edebug-form (edebug-last-sexp))
3746 (edebug-result-string
3747 (edebug-outside-excursion
3748 (edebug-safe-prin1-to-string (edebug-safe-eval edebug-form
))))
3749 (standard-output (current-buffer)))
3751 ;; princ the string to get rid of quotes.
3752 (princ edebug-result-string
)
3756 ;;; Edebug Minor Mode
3759 (defvar gud-inhibit-global-bindings
3760 "*Non-nil means don't do global rebindings of C-x C-a subcommands.")
3762 ;; Global GUD bindings for all emacs-lisp-mode buffers.
3763 (unless gud-inhibit-global-bindings
3764 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-s" 'edebug-step-mode
)
3765 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-n" 'edebug-next-mode
)
3766 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-c" 'edebug-go-mode
)
3767 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-l" 'edebug-where
))
3769 (defvar edebug-mode-map
3770 (let ((map (copy-keymap emacs-lisp-mode-map
)))
3772 (define-key map
" " 'edebug-step-mode
)
3773 (define-key map
"n" 'edebug-next-mode
)
3774 (define-key map
"g" 'edebug-go-mode
)
3775 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3776 (define-key map
"t" 'edebug-trace-mode
)
3777 (define-key map
"T" 'edebug-Trace-fast-mode
)
3778 (define-key map
"c" 'edebug-continue-mode
)
3779 (define-key map
"C" 'edebug-Continue-fast-mode
)
3781 ;;(define-key map "f" 'edebug-forward) not implemented
3782 (define-key map
"f" 'edebug-forward-sexp
)
3783 (define-key map
"h" 'edebug-goto-here
)
3785 (define-key map
"I" 'edebug-instrument-callee
)
3786 (define-key map
"i" 'edebug-step-in
)
3787 (define-key map
"o" 'edebug-step-out
)
3789 ;; quitting and stopping
3790 (define-key map
"q" 'top-level
)
3791 (define-key map
"Q" 'edebug-top-level-nonstop
)
3792 (define-key map
"a" 'abort-recursive-edit
)
3793 (define-key map
"S" 'edebug-stop
)
3796 (define-key map
"b" 'edebug-set-breakpoint
)
3797 (define-key map
"u" 'edebug-unset-breakpoint
)
3798 (define-key map
"B" 'edebug-next-breakpoint
)
3799 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3800 (define-key map
"X" 'edebug-set-global-break-condition
)
3803 (define-key map
"r" 'edebug-previous-result
)
3804 (define-key map
"e" 'edebug-eval-expression
)
3805 (define-key map
"\C-x\C-e" 'edebug-eval-last-sexp
)
3806 (define-key map
"E" 'edebug-visit-eval-list
)
3809 (define-key map
"w" 'edebug-where
)
3810 (define-key map
"v" 'edebug-view-outside
) ;; maybe obsolete??
3811 (define-key map
"p" 'edebug-bounce-point
)
3812 (define-key map
"P" 'edebug-view-outside
) ;; same as v
3813 (define-key map
"W" 'edebug-toggle-save-windows
)
3816 (define-key map
"?" 'edebug-help
)
3817 (define-key map
"d" 'edebug-backtrace
)
3819 (define-key map
"-" 'negative-argument
)
3822 (define-key map
"=" 'edebug-temp-display-freq-count
)
3825 (define-key map
"\C-c\C-s" 'edebug-step-mode
)
3826 (define-key map
"\C-c\C-n" 'edebug-next-mode
)
3827 (define-key map
"\C-c\C-c" 'edebug-go-mode
)
3829 (define-key map
"\C-x " 'edebug-set-breakpoint
)
3830 (define-key map
"\C-c\C-d" 'edebug-unset-breakpoint
)
3831 (define-key map
"\C-c\C-t"
3832 (lambda () (interactive) (edebug-set-breakpoint t
)))
3833 (define-key map
"\C-c\C-l" 'edebug-where
)
3836 ;; Autoloading these global bindings doesn't make sense because
3837 ;; they cannot be used anyway unless Edebug is already loaded and active.
3839 (defvar global-edebug-prefix
"\^XX"
3840 "Prefix key for global edebug commands, available from any buffer.")
3842 (defvar global-edebug-map
3843 (let ((map (make-sparse-keymap)))
3845 (define-key map
" " 'edebug-step-mode
)
3846 (define-key map
"g" 'edebug-go-mode
)
3847 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3848 (define-key map
"t" 'edebug-trace-mode
)
3849 (define-key map
"T" 'edebug-Trace-fast-mode
)
3850 (define-key map
"c" 'edebug-continue-mode
)
3851 (define-key map
"C" 'edebug-Continue-fast-mode
)
3854 (define-key map
"b" 'edebug-set-breakpoint
)
3855 (define-key map
"u" 'edebug-unset-breakpoint
)
3856 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3857 (define-key map
"X" 'edebug-set-global-break-condition
)
3860 (define-key map
"w" 'edebug-where
)
3861 (define-key map
"W" 'edebug-toggle-save-windows
)
3864 (define-key map
"q" 'top-level
)
3865 (define-key map
"Q" 'edebug-top-level-nonstop
)
3866 (define-key map
"a" 'abort-recursive-edit
)
3869 (define-key map
"=" 'edebug-display-freq-count
)
3871 "Global map of edebug commands, available from any buffer.")
3873 (global-unset-key global-edebug-prefix
)
3874 (global-set-key global-edebug-prefix global-edebug-map
)
3877 (defun edebug-help ()
3878 "Describe `edebug-mode'."
3880 (describe-function 'edebug-mode
))
3882 (defun edebug-mode ()
3883 "Mode for Emacs Lisp buffers while in Edebug.
3885 In addition to all Emacs Lisp commands (except those that modify the
3886 buffer) there are local and global key bindings to several Edebug
3887 specific commands. E.g. `edebug-step-mode' is bound to \\[edebug-step-mode]
3888 in the Edebug buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3890 Also see bindings for the eval list buffer *edebug* in `edebug-eval-mode'.
3892 The edebug buffer commands:
3895 Global commands prefixed by `global-edebug-prefix':
3896 \\{global-edebug-map}
3903 edebug-save-displayed-buffer-points
3906 edebug-test-coverage
3907 edebug-continue-kbd-macro
3914 edebug-unwrap-results
3915 edebug-global-break-condition
3917 ;; If the user kills the buffer in which edebug is currently active,
3918 ;; exit to top level, because the edebug command loop can't usefully
3919 ;; continue running in such a case.
3920 (add-hook 'kill-buffer-hook
'edebug-kill-buffer nil t
)
3921 (use-local-map edebug-mode-map
))
3923 (defun edebug-kill-buffer ()
3924 "Used on `kill-buffer-hook' when Edebug is operating in a buffer of Lisp code."
3925 (let (kill-buffer-hook)
3926 (kill-buffer (current-buffer)))
3929 ;;; edebug eval list mode
3931 ;; A list of expressions and their evaluations is displayed in *edebug*.
3933 (defun edebug-eval-result-list ()
3934 "Return a list of evaluations of `edebug-eval-list'."
3935 ;; Assumes in outside environment.
3936 ;; Don't do any edebug things now.
3937 (let ((edebug-execution-mode 'Go-nonstop
)
3939 (mapcar 'edebug-safe-eval edebug-eval-list
)))
3941 (defun edebug-eval-display-list (edebug-eval-result-list)
3942 ;; Assumes edebug-eval-buffer exists.
3943 (let ((edebug-eval-list-temp edebug-eval-list
)
3944 (standard-output edebug-eval-buffer
)
3945 (edebug-comment-line
3946 (format ";%s\n" (make-string (- (window-width) 2) ?-
))))
3947 (set-buffer edebug-eval-buffer
)
3949 (while edebug-eval-list-temp
3950 (prin1 (car edebug-eval-list-temp
)) (terpri)
3951 (prin1 (car edebug-eval-result-list
)) (terpri)
3952 (princ edebug-comment-line
)
3953 (setq edebug-eval-list-temp
(cdr edebug-eval-list-temp
))
3954 (setq edebug-eval-result-list
(cdr edebug-eval-result-list
)))
3955 (edebug-pop-to-buffer edebug-eval-buffer
)
3958 (defun edebug-create-eval-buffer ()
3959 (if (not (and edebug-eval-buffer
(buffer-name edebug-eval-buffer
)))
3961 (set-buffer (setq edebug-eval-buffer
(get-buffer-create "*edebug*")))
3962 (edebug-eval-mode))))
3964 ;; Should generalize this to be callable outside of edebug
3965 ;; with calls in user functions, e.g. (edebug-eval-display)
3967 (defun edebug-eval-display (edebug-eval-result-list)
3968 "Display expressions and evaluations in EDEBUG-EVAL-RESULT-LIST.
3969 It modifies the context by popping up the eval display."
3970 (if edebug-eval-result-list
3972 (edebug-create-eval-buffer)
3973 (edebug-eval-display-list edebug-eval-result-list
)
3976 (defun edebug-eval-redisplay ()
3977 "Redisplay eval list in outside environment.
3978 May only be called from within `edebug-recursive-edit'."
3979 (edebug-create-eval-buffer)
3980 (edebug-outside-excursion
3981 (edebug-eval-display-list (edebug-eval-result-list))
3984 (defun edebug-visit-eval-list ()
3985 "Switch to the evaluation list buffer \"*edebug*\"."
3987 (edebug-eval-redisplay)
3988 (edebug-pop-to-buffer edebug-eval-buffer
))
3991 (defun edebug-update-eval-list ()
3992 "Replace the evaluation list with the sexps now in the eval buffer."
3994 (let ((starting-point (point))
3996 (goto-char (point-min))
3997 ;; get the first expression
3998 (edebug-skip-whitespace)
4002 (setq new-list
(cons (edebug-last-sexp) new-list
))))
4004 (while (re-search-forward "^;" nil t
)
4006 (skip-chars-forward " \t\n\r")
4007 (if (and (/= ?\
; (following-char))
4011 (setq new-list
(cons (edebug-last-sexp) new-list
)))))
4013 (setq edebug-eval-list
(nreverse new-list
))
4014 (edebug-eval-redisplay)
4015 (goto-char starting-point
)))
4018 (defun edebug-delete-eval-item ()
4019 "Delete the item under point and redisplay."
4020 ;; could add arg to do repeatedly
4022 (if (re-search-backward "^;" nil
'nofail
)
4025 (point) (progn (re-search-forward "^;" nil
'nofail
)
4028 (edebug-update-eval-list))
4032 (defvar edebug-eval-mode-map nil
4033 "Keymap for Edebug Eval mode. Superset of Lisp Interaction mode.")
4035 (unless edebug-eval-mode-map
4036 (setq edebug-eval-mode-map
(make-sparse-keymap))
4037 (set-keymap-parent edebug-eval-mode-map lisp-interaction-mode-map
)
4039 (define-key edebug-eval-mode-map
"\C-c\C-w" 'edebug-where
)
4040 (define-key edebug-eval-mode-map
"\C-c\C-d" 'edebug-delete-eval-item
)
4041 (define-key edebug-eval-mode-map
"\C-c\C-u" 'edebug-update-eval-list
)
4042 (define-key edebug-eval-mode-map
"\C-x\C-e" 'edebug-eval-last-sexp
)
4043 (define-key edebug-eval-mode-map
"\C-j" 'edebug-eval-print-last-sexp
))
4045 (put 'edebug-eval-mode
'mode-class
'special
)
4047 (define-derived-mode edebug-eval-mode lisp-interaction-mode
"Edebug Eval"
4048 "Mode for evaluation list buffer while in Edebug.
4050 In addition to all Interactive Emacs Lisp commands there are local and
4051 global key bindings to several Edebug specific commands. E.g.
4052 `edebug-step-mode' is bound to \\[edebug-step-mode] in the Edebug
4053 buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
4055 Eval list buffer commands:
4056 \\{edebug-eval-mode-map}
4058 Global commands prefixed by `global-edebug-prefix':
4059 \\{global-edebug-map}")
4061 ;;; Interface with standard debugger.
4063 ;; (setq debugger 'edebug) ; to use the edebug debugger
4064 ;; (setq debugger 'debug) ; use the standard debugger
4066 ;; Note that debug and its utilities must be byte-compiled to work,
4067 ;; since they depend on the backtrace looking a certain way. But
4068 ;; edebug is not dependent on this, yet.
4070 (defun edebug (&optional edebug-arg-mode
&rest debugger-args
)
4071 "Replacement for `debug'.
4072 If we are running an edebugged function, show where we last were.
4073 Otherwise call `debug' normally."
4074 ;; (message "entered: %s depth: %s edebug-recursion-depth: %s"
4075 ;; edebug-entered (recursion-depth) edebug-recursion-depth) (sit-for 1)
4076 (if (and edebug-entered
; anything active?
4077 (eq (recursion-depth) edebug-recursion-depth
))
4078 (let (;; Where were we before the error occurred?
4079 (edebug-offset-index (car edebug-offset-indices
))
4080 ;; Bind variables required by edebug-display
4081 (edebug-value (car debugger-args
))
4084 edebug-break-condition
4086 (edebug-break (null edebug-arg-mode
)) ;; if called explicitly
4089 (if (eq edebug-arg-mode
'error
)
4093 ;; Otherwise call debug normally.
4094 ;; Still need to remove extraneous edebug calls from stack.
4095 (apply 'debug edebug-arg-mode debugger-args
)
4099 (defun edebug-backtrace ()
4100 "Display a non-working backtrace. Better than nothing..."
4102 (if (or (not edebug-backtrace-buffer
)
4103 (null (buffer-name edebug-backtrace-buffer
)))
4104 (setq edebug-backtrace-buffer
4105 (generate-new-buffer "*Backtrace*"))
4106 ;; else, could just display edebug-backtrace-buffer
4108 (with-output-to-temp-buffer (buffer-name edebug-backtrace-buffer
)
4109 (setq edebug-backtrace-buffer standard-output
)
4110 (let ((print-escape-newlines t
)
4111 (print-length 50) ; FIXME cf edebug-safe-prin1-to-string
4115 ;; Clean up the backtrace.
4116 ;; Not quite right for current edebug scheme.
4117 (set-buffer edebug-backtrace-buffer
)
4118 (setq truncate-lines t
)
4119 (goto-char (point-min))
4120 (setq last-ok-point
(point))
4123 ;; Delete interspersed edebug internals.
4124 (while (re-search-forward "^ \(?edebug" nil t
)
4127 ((looking-at "^ \(edebug-after")
4128 ;; Previous lines may contain code, so just delete this line
4129 (setq last-ok-point
(point))
4131 (delete-region last-ok-point
(point)))
4133 ((looking-at "^ edebug")
4135 (delete-region last-ok-point
(point))
4142 (defun edebug-trace-display (buf-name fmt
&rest args
)
4143 "In buffer BUF-NAME, display FMT and ARGS at the end and make it visible.
4144 The buffer is created if it does not exist.
4145 You must include newlines in FMT to break lines, but one newline is appended."
4147 ;; (edebug-trace-display "*trace-point*"
4148 ;; "saving: point = %s window-start = %s"
4149 ;; (point) (window-start))
4150 (let* ((oldbuf (current-buffer))
4151 (selected-window (selected-window))
4152 (buffer (get-buffer-create buf-name
))
4154 ;; (message "before pop-to-buffer") (sit-for 1)
4155 (edebug-pop-to-buffer buffer
)
4156 (setq truncate-lines t
)
4157 (setq buf-window
(selected-window))
4158 (goto-char (point-max))
4159 (insert (apply 'edebug-format fmt args
) "\n")
4161 (vertical-motion (- 1 (window-height)))
4162 (set-window-start buf-window
(point))
4163 (goto-char (point-max))
4164 ;; (set-window-point buf-window (point))
4165 ;; (edebug-sit-for 0)
4166 (bury-buffer buffer
)
4167 (select-window selected-window
)
4168 (set-buffer oldbuf
))
4172 (defun edebug-trace (fmt &rest args
)
4173 "Convenience call to `edebug-trace-display' using `edebug-trace-buffer'."
4174 (apply 'edebug-trace-display edebug-trace-buffer fmt args
))
4177 ;;; Frequency count and coverage
4179 ;; FIXME should this use overlays instead?
4180 (defun edebug-display-freq-count ()
4181 "Display the frequency count data for each line of the current definition.
4182 The frequency counts are inserted as comment lines after each line,
4183 and you can undo all insertions with one `undo' command.
4185 The counts are inserted starting under the `(' before an expression
4186 or the `)' after an expression, or on the last char of a symbol.
4187 The counts are only displayed when they differ from previous counts on
4190 If coverage is being tested, whenever all known results of an expression
4191 are `eq', the char `=' will be appended after the count
4192 for that expression. Note that this is always the case for an
4193 expression only evaluated once.
4195 To clear the frequency count and coverage data for a definition,
4198 (let* ((function (edebug-form-data-symbol))
4199 (counts (get function
'edebug-freq-count
))
4200 (coverages (get function
'edebug-coverage
))
4201 (data (get function
'edebug
))
4202 (def-mark (car data
)) ; mark at def start
4203 (edebug-points (nth 2 data
))
4204 (i (1- (length edebug-points
)))
4208 (start-of-count-line)
4212 ;; Traverse in reverse order so offsets are correct.
4214 ;; Start at last expression in line.
4215 (goto-char (+ def-mark
(aref edebug-points i
)))
4217 (setq start-of-line
(- (point) def-mark
)
4220 ;; Find all indexes on same line.
4221 (while (and (<= 0 (setq i
(1- i
)))
4222 (<= start-of-line
(aref edebug-points i
))))
4223 ;; Insert all the indices for this line.
4225 (setq start-of-count-line
(point)
4226 first-index i
; really last index for line above this one.
4227 last-count -
1) ; cause first count to always appear.
4229 ;; i == first-index still
4230 (while (<= (setq i
(1+ i
)) last-index
)
4231 (let ((count (aref counts i
))
4232 (coverage (aref coverages i
))
4233 (col (save-excursion
4234 (goto-char (+ (aref edebug-points i
) def-mark
))
4236 (if (= ?\
( (following-char)) 0 1)))))
4237 (insert (make-string
4238 (max 0 (- col
(- (point) start-of-count-line
))) ?\s
)
4239 (if (and (< 0 count
)
4241 '(unknown ok-coverage
))))
4243 (if (= count last-count
) "" (int-to-string count
))
4245 (setq last-count count
)))
4247 (setq i first-index
)))))
4249 (defun edebug-temp-display-freq-count ()
4250 "Temporarily display the frequency count data for the current definition.
4251 It is removed when you hit any char."
4252 ;; This seems not to work with Emacs 18.59. It undoes too far.
4254 (let ((buffer-read-only nil
))
4256 (edebug-display-freq-count)
4257 (setq unread-command-char
(read-char))
4263 (defun edebug-toggle (variable)
4264 (set variable
(not (eval variable
)))
4265 (message "%s: %s" variable
(eval variable
)))
4267 ;; We have to require easymenu (even for Emacs 18) just so
4268 ;; the easy-menu-define macro call is compiled correctly.
4271 (defconst edebug-mode-menus
4273 ["Stop" edebug-stop t
]
4274 ["Step" edebug-step-mode t
]
4275 ["Next" edebug-next-mode t
]
4276 ["Trace" edebug-trace-mode t
]
4277 ["Trace Fast" edebug-Trace-fast-mode t
]
4278 ["Continue" edebug-continue-mode t
]
4279 ["Continue Fast" edebug-Continue-fast-mode t
]
4280 ["Go" edebug-go-mode t
]
4281 ["Go Nonstop" edebug-Go-nonstop-mode t
]
4283 ["Help" edebug-help t
]
4284 ["Abort" abort-recursive-edit t
]
4285 ["Quit to Top Level" top-level t
]
4286 ["Quit Nonstop" edebug-top-level-nonstop t
]
4289 ["Forward Sexp" edebug-forward-sexp t
]
4290 ["Step In" edebug-step-in t
]
4291 ["Step Out" edebug-step-out t
]
4292 ["Goto Here" edebug-goto-here t
])
4295 ["Set Breakpoint" edebug-set-breakpoint t
]
4296 ["Unset Breakpoint" edebug-unset-breakpoint t
]
4297 ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t
]
4298 ["Set Global Break Condition" edebug-set-global-break-condition t
]
4299 ["Show Next Breakpoint" edebug-next-breakpoint t
])
4302 ["Where am I?" edebug-where t
]
4303 ["Bounce to Current Point" edebug-bounce-point t
]
4304 ["View Outside Windows" edebug-view-outside t
]
4305 ["Previous Result" edebug-previous-result t
]
4306 ["Show Backtrace" edebug-backtrace t
]
4307 ["Display Freq Count" edebug-display-freq-count t
])
4310 ["Expression" edebug-eval-expression t
]
4311 ["Last Sexp" edebug-eval-last-sexp t
]
4312 ["Visit Eval List" edebug-visit-eval-list t
])
4315 ["Edebug All Defs" edebug-all-defs
4316 :style toggle
:selected edebug-all-defs
]
4317 ["Edebug All Forms" edebug-all-forms
4318 :style toggle
:selected edebug-all-forms
]
4320 ["Tracing" (edebug-toggle 'edebug-trace
)
4321 :style toggle
:selected edebug-trace
]
4322 ["Test Coverage" (edebug-toggle 'edebug-test-coverage
)
4323 :style toggle
:selected edebug-test-coverage
]
4324 ["Save Windows" edebug-toggle-save-windows
4325 :style toggle
:selected edebug-save-windows
]
4327 (edebug-toggle 'edebug-save-displayed-buffer-points
)
4328 :style toggle
:selected edebug-save-displayed-buffer-points
]
4330 "Menus for Edebug.")
4333 ;;; Emacs version specific code
4335 (defalias 'edebug-window-live-p
'window-live-p
)
4337 (defun edebug-mark ()
4340 (defun edebug-set-conditional-breakpoint (arg condition
)
4341 "Set a conditional breakpoint at nearest sexp.
4342 The condition is evaluated in the outside context.
4343 With prefix argument, make it a temporary breakpoint."
4344 ;; (interactive "P\nxCondition: ")
4348 ;; Read condition as follows; getting previous condition is cumbersome:
4349 (let ((edebug-stop-point (edebug-find-stop-point)))
4350 (if edebug-stop-point
4351 (let* ((edebug-def-name (car edebug-stop-point
))
4352 (index (cdr edebug-stop-point
))
4353 (edebug-data (get edebug-def-name
'edebug
))
4354 (edebug-breakpoints (car (cdr edebug-data
)))
4355 (edebug-break-data (assq index edebug-breakpoints
))
4356 (edebug-break-condition (car (cdr edebug-break-data
)))
4357 (initial (and edebug-break-condition
4358 (format "%s" edebug-break-condition
))))
4359 (read-from-minibuffer
4360 "Condition: " initial read-expression-map t
4361 (if (equal (car read-expression-history
) initial
)
4362 '(read-expression-history .
1)
4363 'read-expression-history
)))))))
4364 (edebug-modify-breakpoint t condition arg
))
4366 (easy-menu-define edebug-menu edebug-mode-map
"Edebug menus" edebug-mode-menus
)
4370 ;; Extension for bytecomp to resolve undefined function references.
4371 ;; Requires new byte compiler.
4373 ;; Reenable byte compiler warnings about unread-command-char and -event.
4374 ;; Disabled before edebug-recursive-edit.
4376 (if edebug-unread-command-char-warning
4377 (put 'unread-command-char
'byte-obsolete-variable
4378 edebug-unread-command-char-warning
)))
4381 ;; The body of eval-when-compile seems to get evaluated with eval-defun.
4382 ;; We only want to evaluate when actually byte compiling.
4383 ;; But it is OK to evaluate as long as byte-compiler has been loaded.
4384 (if (featurep 'byte-compile
) (progn
4386 (defun byte-compile-resolve-functions (funcs)
4387 "Say it is OK for the named functions to be unresolved."
4391 (setq byte-compile-unresolved-functions
4392 (delq (assq func byte-compile-unresolved-functions
)
4393 byte-compile-unresolved-functions
))))
4397 '(defun byte-compile-resolve-free-references (vars)
4398 "Say it is OK for the named variables to be referenced."
4402 (setq byte-compile-free-references
4403 (delq var byte-compile-free-references
))))
4407 '(defun byte-compile-resolve-free-assignments (vars)
4408 "Say it is OK for the named variables to be assigned."
4412 (setq byte-compile-free-assignments
4413 (delq var byte-compile-free-assignments
))))
4417 (byte-compile-resolve-functions
4418 '(reporter-submit-bug-report
4419 edebug-gensym
;; also in cl.el
4420 ;; Interfaces to standard functions.
4421 edebug-original-eval-defun
4422 edebug-original-read
4423 edebug-get-buffer-window
4426 edebug-input-pending-p
4428 edebug-prin1-to-string
4431 zmacs-deactivate-region
4435 ;; And believe it or not, the byte compiler doesn't know about:
4436 byte-compile-resolve-functions
4439 '(byte-compile-resolve-free-references
4440 '(read-expression-history
4441 read-expression-map
))
4443 '(byte-compile-resolve-free-assignments
4444 '(read-expression-history))
4449 ;;; Autoloading of Edebug accessories
4452 (add-hook 'edebug-setup-hook
4453 (function (lambda () (require 'cl-specs
))))
4454 ;; The following causes cl-specs to be loaded if you load cl.el.
4455 (add-hook 'cl-load-hook
4456 (function (lambda () (require 'cl-specs
)))))
4458 ;;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
4459 (if (featurep 'cl-read
)
4460 (add-hook 'edebug-setup-hook
4461 (function (lambda () (require 'edebug-cl-read
))))
4462 ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
4463 (add-hook 'cl-read-load-hooks
4464 (function (lambda () (require 'edebug-cl-read
)))))
4467 ;;; Finalize Loading
4469 ;;; Finally, hook edebug into the rest of Emacs.
4470 ;;; There are probably some other things that could go here.
4472 ;; Install edebug read and eval functions.
4473 (edebug-install-read-eval-functions)
4477 ;; arch-tag: 19c8d05c-4554-426e-ac72-e0fa1fcb0808
4478 ;;; edebug.el ends here