1 ;;; edebug.el --- a source-level debugger for Emacs Lisp
3 ;; Copyright (C) 1988,89,90,91,92,93,94,95,97,1999,2000,01,03,2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Daniel LaLiberte <liberte@holonexus.org>
8 ;; Keywords: lisp, tools, maint
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
29 ;; This minor mode allows programmers to step through Emacs Lisp
30 ;; source code while executing functions. You can also set
31 ;; breakpoints, trace (stopping at each expression), evaluate
32 ;; expressions as if outside Edebug, reevaluate and display a list of
33 ;; expressions, trap errors normally caught by debug, and display a
34 ;; debug style backtrace.
36 ;;; Minimal Instructions
37 ;; =====================
39 ;; First evaluate a defun with C-M-x, then run the function. Step
40 ;; through the code with SPC, mark breakpoints with b, go until a
41 ;; breakpoint is reached with g, and quit execution with q. Use the
42 ;; "?" command in edebug to describe other commands.
43 ;; See the Emacs Lisp Reference Manual for more details.
45 ;; If you wish to change the default edebug global command prefix, change:
46 ;; (setq edebug-global-prefix "\C-xX")
48 ;; Edebug was written by
53 ;; liberte@holonexus.org
59 (defalias 'edebug-submit-bug-report
'report-emacs-bug
)
64 "A source-level debugger for Emacs Lisp"
68 (defcustom edebug-setup-hook nil
69 "*Functions to call before edebug is used.
70 Each time it is set to a new value, Edebug will call those functions
71 once and then `edebug-setup-hook' is reset to nil. You could use this
72 to load up Edebug specifications associated with a package you are
73 using but only when you also use Edebug."
77 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
78 ;; because the byte compiler binds them; as a result, if edebug
79 ;; is first loaded for a require in a compilation, they will be left unbound.
82 (defcustom edebug-all-defs nil
83 "*If non-nil, evaluation of any defining forms will instrument for Edebug.
84 This applies to `eval-defun', `eval-region', `eval-buffer', and
85 `eval-current-buffer'. `eval-region' is also called by
86 `eval-last-sexp', and `eval-print-last-sexp'.
88 You can use the command `edebug-all-defs' to toggle the value of this
89 variable. You may wish to make it local to each buffer with
90 \(make-local-variable 'edebug-all-defs) in your
91 `emacs-lisp-mode-hook'."
95 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
96 ;; because the byte compiler binds them; as a result, if edebug
97 ;; is first loaded for a require in a compilation, they will be left unbound.
100 (defcustom edebug-all-forms nil
101 "*Non-nil evaluation of all forms will instrument for Edebug.
102 This doesn't apply to loading or evaluations in the minibuffer.
103 Use the command `edebug-all-forms' to toggle the value of this option."
107 (defcustom edebug-eval-macro-args nil
108 "*Non-nil means all macro call arguments may be evaluated.
109 If this variable is nil, the default, Edebug will *not* wrap
110 macro call arguments as if they will be evaluated.
111 For each macro, a `edebug-form-spec' overrides this option.
112 So to specify exceptions for macros that have some arguments evaluated
113 and some not, you should specify an `edebug-form-spec'."
117 (defcustom edebug-save-windows t
118 "*If non-nil, Edebug saves and restores the window configuration.
119 That takes some time, so if your program does not care what happens to
120 the window configurations, it is better to set this variable to nil.
122 If the value is a list, only the listed windows are saved and
125 `edebug-toggle-save-windows' may be used to change this variable."
126 :type
'(choice boolean
(repeat string
))
129 (defcustom edebug-save-displayed-buffer-points nil
130 "*If non-nil, save and restore point in all displayed buffers.
132 Saving and restoring point in other buffers is necessary if you are
133 debugging code that changes the point of a buffer which is displayed
134 in a non-selected window. If Edebug or the user then selects the
135 window, the buffer's point will be changed to the window's point.
137 Saving and restoring point in all buffers is expensive, since it
138 requires selecting each window twice, so enable this only if you need
143 (defcustom edebug-initial-mode
'step
144 "*Initial execution mode for Edebug, if non-nil. If this variable
145 is non-@code{nil}, it specifies the initial execution mode for Edebug
146 when it is first activated. Possible values are step, next, go,
147 Go-nonstop, trace, Trace-fast, continue, and Continue-fast."
148 :type
'(choice (const step
) (const next
) (const go
)
149 (const Go-nonstop
) (const trace
)
150 (const Trace-fast
) (const continue
)
151 (const Continue-fast
))
154 (defcustom edebug-trace nil
155 "*Non-nil means display a trace of function entry and exit.
156 Tracing output is displayed in a buffer named `*edebug-trace*', one
157 function entry or exit per line, indented by the recursion level.
159 You can customize by replacing functions `edebug-print-trace-before'
160 and `edebug-print-trace-after'."
164 (defcustom edebug-test-coverage nil
165 "*If non-nil, Edebug tests coverage of all expressions debugged.
166 This is done by comparing the result of each expression
167 with the previous result. Coverage is considered OK if two different
170 Use `edebug-display-freq-count' to display the frequency count and
171 coverage information for a definition."
175 (defcustom edebug-continue-kbd-macro nil
176 "*If non-nil, continue defining or executing any keyboard macro.
177 Use this with caution since it is not debugged."
182 (defcustom edebug-print-length
50
183 "*Default value of `print-length' to use while printing results in Edebug."
186 (defcustom edebug-print-level
50
187 "*Default value of `print-level' to use while printing results in Edebug."
190 (defcustom edebug-print-circle t
191 "*Default value of `print-circle' to use while printing results in Edebug."
195 (defcustom edebug-unwrap-results nil
196 "*Non-nil if Edebug should unwrap results of expressions.
197 This is useful when debugging macros where the results of expressions
198 are instrumented expressions. But don't do this when results might be
199 circular or an infinite loop will result."
203 (defcustom edebug-on-error t
204 "*Value bound to `debug-on-error' while Edebug is active.
206 If `debug-on-error' is non-nil, that value is still used.
208 If the value is a list of signal names, Edebug will stop when any of
209 these errors are signaled from Lisp code whether or not the signal is
210 handled by a `condition-case'. This option is useful for debugging
211 signals that *are* handled since they would otherwise be missed.
212 After execution is resumed, the error is signaled again."
213 :type
'(choice (const :tag
"off")
214 (repeat :menu-tag
"When"
216 (symbol :format
"%v"))
217 (const :tag
"always" t
))
220 (defcustom edebug-on-quit t
221 "*Value bound to `debug-on-quit' while Edebug is active."
225 (defcustom edebug-global-break-condition nil
226 "*If non-nil, an expression to test for at every stop point.
227 If the result is non-nil, then break. Errors are ignored."
231 (defcustom edebug-sit-for-seconds
1
232 "*Number of seconds to pause when execution mode is `trace'."
236 ;;; Form spec utilities.
239 (defmacro def-edebug-spec
(symbol spec
)
240 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.
241 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
242 \(naming a function), or a list."
243 `(put (quote ,symbol
) 'edebug-form-spec
(quote ,spec
)))
245 (defmacro def-edebug-form-spec
(symbol spec-form
)
246 "For compatibility with old version. Use `def-edebug-spec' instead."
247 (message "Obsolete: use def-edebug-spec instead.")
248 (def-edebug-spec symbol
(eval spec-form
)))
250 (defun get-edebug-spec (symbol)
251 ;; Get the spec of symbol resolving all indirection.
252 (let ((edebug-form-spec (get symbol
'edebug-form-spec
))
254 (while (and (symbolp edebug-form-spec
)
255 (setq indirect
(get edebug-form-spec
'edebug-form-spec
)))
256 ;; (edebug-trace "indirection: %s" edebug-form-spec)
257 (setq edebug-form-spec indirect
))
263 ;; Define edebug-gensym - from old cl.el
264 (defvar edebug-gensym-index
0
265 "Integer used by `edebug-gensym' to produce new names.")
267 (defun edebug-gensym (&optional prefix
)
268 "Generate a fresh uninterned symbol.
269 There is an optional argument, PREFIX. PREFIX is the
270 string that begins the new name. Most people take just the default,
271 except when debugging needs suggest otherwise."
274 (let ((newsymbol nil
)
276 (while (not newsymbol
)
277 (setq newname
(concat prefix
(int-to-string edebug-gensym-index
)))
278 (setq edebug-gensym-index
(+ edebug-gensym-index
1))
279 (if (not (intern-soft newname
))
280 (setq newsymbol
(make-symbol newname
))))
283 (defun edebug-lambda-list-keywordp (object)
284 "Return t if OBJECT is a lambda list keyword.
285 A lambda list keyword is a symbol that starts with `&'."
286 (and (symbolp object
)
287 (= ?
& (aref (symbol-name object
) 0))))
290 (defun edebug-last-sexp ()
291 ;; Return the last sexp before point in current buffer.
292 ;; Assumes Emacs Lisp syntax is active.
301 (defun edebug-window-list ()
302 "Return a list of windows, in order of `next-window'."
303 ;; This doesn't work for epoch.
305 (walk-windows (lambda (w) (push w window-list
)))
306 (nreverse window-list
)))
309 '(defun edebug-two-window-p ()
310 "Return t if there are two windows."
311 (and (not (one-window-p))
312 (eq (selected-window)
313 (next-window (next-window (selected-window))))))
315 (defsubst edebug-lookup-function
(object)
316 (while (and (symbolp object
) (fboundp object
))
317 (setq object
(symbol-function object
)))
320 (defun edebug-macrop (object)
321 "Return the macro named by OBJECT, or nil if it is not a macro."
322 (setq object
(edebug-lookup-function object
))
323 (if (and (listp object
)
324 (eq 'macro
(car object
))
325 (functionp (cdr object
)))
328 (defun edebug-sort-alist (alist function
)
329 ;; Return the ALIST sorted with comparison function FUNCTION.
330 ;; This uses 'sort so the sorting is destructive.
331 (sort alist
(function
333 (funcall function
(car e1
) (car e2
))))))
335 ;;(def-edebug-spec edebug-save-restriction t)
337 ;; Not used. If it is used, def-edebug-spec must be defined before use.
338 '(defmacro edebug-save-restriction
(&rest body
)
339 "Evaluate BODY while saving the current buffers restriction.
340 BODY may change buffer outside of current restriction, unlike
341 save-restriction. BODY may change the current buffer,
342 and the restriction will be restored to the original buffer,
343 and the current buffer remains current.
344 Return the result of the last expression in BODY."
345 `(let ((edebug:s-r-beg
(point-min-marker))
346 (edebug:s-r-end
(point-max-marker)))
350 (set-buffer (marker-buffer edebug
:s-r-beg
))
351 (narrow-to-region edebug
:s-r-beg edebug
:s-r-end
)))))
355 (defconst edebug-trace-buffer
"*edebug-trace*"
356 "Name of the buffer to put trace info in.")
358 (defun edebug-pop-to-buffer (buffer &optional window
)
359 ;; Like pop-to-buffer, but select window where BUFFER was last shown.
360 ;; Select WINDOW if it provided and it still exists. Otherwise,
361 ;; if buffer is currently shown in several windows, choose one.
362 ;; Otherwise, find a new window, possibly splitting one.
363 (setq window
(if (and (windowp window
) (edebug-window-live-p window
)
364 (eq (window-buffer window
) buffer
))
366 (if (eq (window-buffer (selected-window)) buffer
)
368 (edebug-get-buffer-window buffer
))))
370 (select-window window
)
373 ;; (message "next window: %s" (next-window)) (sit-for 1)
374 (if (eq (get-buffer-window edebug-trace-buffer
) (next-window))
375 ;; Don't select trace window
377 (select-window (next-window))))
378 (set-window-buffer (selected-window) buffer
)
379 (set-window-hscroll (selected-window) 0);; should this be??
380 ;; Selecting the window does not set the buffer until command loop.
381 ;;(set-buffer buffer)
385 (defun edebug-get-displayed-buffer-points ()
386 ;; Return a list of buffer point pairs, for all displayed buffers.
388 (walk-windows (lambda (w)
389 (unless (eq w
(selected-window))
390 (push (cons (window-buffer w
)
396 (defun edebug-set-buffer-points (buffer-points)
397 ;; Restore the buffer-points created by edebug-get-displayed-buffer-points.
399 (mapcar (lambda (buf-point)
400 (when (buffer-live-p (car buf-point
))
401 (set-buffer (car buf-point
))
402 (goto-char (cdr buf-point
))))
405 (defun edebug-current-windows (which-windows)
406 ;; Get either a full window configuration or some window information.
407 (if (listp which-windows
)
408 (mapcar (function (lambda (window)
409 (if (edebug-window-live-p window
)
411 (window-buffer window
)
412 (window-point window
)
413 (window-start window
)
414 (window-hscroll window
)))))
416 (current-window-configuration)))
418 (defun edebug-set-windows (window-info)
419 ;; Set either a full window configuration or some window information.
420 (if (listp window-info
)
422 (lambda (one-window-info)
425 (lambda (window buffer point start hscroll
)
426 (if (edebug-window-live-p window
)
428 (set-window-buffer window buffer
)
429 (set-window-point window point
)
430 (set-window-start window start
)
431 (set-window-hscroll window hscroll
)))))
434 (set-window-configuration window-info
)))
436 (defalias 'edebug-get-buffer-window
'get-buffer-window
)
437 (defalias 'edebug-sit-for
'sit-for
)
438 (defalias 'edebug-input-pending-p
'input-pending-p
)
441 ;;; Redefine read and eval functions
442 ;; read is redefined to maybe instrument forms.
443 ;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs.
445 ;; Save the original read function
446 (or (fboundp 'edebug-original-read
)
447 (defalias 'edebug-original-read
(symbol-function 'read
)))
449 (defun edebug-read (&optional stream
)
450 "Read one Lisp expression as text from STREAM, return as Lisp object.
451 If STREAM is nil, use the value of `standard-input' (which see).
452 STREAM or the value of `standard-input' may be:
453 a buffer (read from point and advance it)
454 a marker (read from where it points and advance it)
455 a function (call it with no arguments for each character,
456 call it with a char as argument to push a char back)
457 a string (takes text from string, starting at the beginning)
458 t (read text line using minibuffer and use it).
460 This version, from Edebug, maybe instruments the expression. But the
461 STREAM must be the current buffer to do so. Whether it instruments is
462 also dependent on the values of `edebug-all-defs' and
464 (or stream
(setq stream standard-input
))
465 (if (eq stream
(current-buffer))
466 (edebug-read-and-maybe-wrap-form)
467 (edebug-original-read stream
)))
469 (or (fboundp 'edebug-original-eval-defun
)
470 (defalias 'edebug-original-eval-defun
(symbol-function 'eval-defun
)))
472 ;; We should somehow arrange to be able to do this
473 ;; without actually replacing the eval-defun command.
474 (defun edebug-eval-defun (edebug-it)
475 "Evaluate the top-level form containing point, or after point.
477 If the current defun is actually a call to `defvar', then reset the
478 variable using its initial value expression even if the variable
479 already has some other value. (Normally `defvar' does not change the
480 variable's value if it already has a value.) Treat `defcustom'
481 similarly. Reinitialize the face according to `defface' specification.
483 With a prefix argument, instrument the code for Edebug.
485 Setting `edebug-all-defs' to a non-nil value reverses the meaning of
486 the prefix argument. Code is then instrumented when this function is
487 invoked without a prefix argument
489 If acting on a `defun' for FUNCTION, and the function was
490 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not
491 instrumented, just FUNCTION is printed.
493 If not acting on a `defun', the result of evaluation is displayed in
496 (let* ((edebugging (not (eq (not edebug-it
) (not edebug-all-defs
))))
499 (let ((edebug-all-forms edebugging
)
500 (edebug-all-defs (eq edebug-all-defs
(not edebug-it
))))
501 (edebug-read-top-level-form))))
502 ;; This should be consistent with `eval-defun-1', but not the
503 ;; same, since that gets a macroexpanded form.
504 (cond ((and (eq (car form
) 'defvar
)
505 (cdr-safe (cdr-safe form
)))
506 ;; Force variable to be bound.
507 (makunbound (nth 1 form
)))
508 ((and (eq (car form
) 'defcustom
)
509 (default-boundp (nth 1 form
)))
510 ;; Force variable to be bound.
511 (set-default (nth 1 form
) (eval (nth 2 form
))))
512 ((eq (car form
) 'defface
)
514 (put (nth 1 form
) 'face-defface-spec nil
)
515 (setq face-new-frame-defaults
516 (assq-delete-all (nth 1 form
) face-new-frame-defaults
))))
517 (setq edebug-result
(eval form
))
519 (princ edebug-result
)
524 (defalias 'edebug-defun
'edebug-eval-top-level-form
)
527 (defun edebug-eval-top-level-form ()
528 "Evaluate the top level form point is in, stepping through with Edebug.
529 This is like `eval-defun' except that it steps the code for Edebug
530 before evaluating it. It displays the value in the echo area
531 using `eval-expression' (which see).
533 If you do this on a function definition
534 such as a defun or defmacro, it defines the function and instruments
535 its definition for Edebug, so it will do Edebug stepping when called
536 later. It displays `Edebug: FUNCTION' in the echo area to indicate
537 that FUNCTION is now instrumented for Edebug.
539 If the current defun is actually a call to `defvar' or `defcustom',
540 evaluating it this way resets the variable using its initial value
541 expression even if the variable already has some other value.
542 \(Normally `defvar' and `defcustom' do not alter the value if there
546 ;; Bind edebug-all-forms only while reading, not while evalling
547 ;; but this causes problems while edebugging edebug.
548 (let ((edebug-all-forms t
)
550 (edebug-read-top-level-form))))
553 (defun edebug-read-top-level-form ()
554 (let ((starting-point (point)))
558 (edebug-read-and-maybe-wrap-form)
559 ;; Recover point, but only if no error occurred.
560 (goto-char starting-point
))))
563 ;; Compatibility with old versions.
564 (defalias 'edebug-all-defuns
'edebug-all-defs
)
566 (defun edebug-all-defs ()
567 "Toggle edebugging of all definitions."
569 (setq edebug-all-defs
(not edebug-all-defs
))
570 (message "Edebugging all definitions is %s."
571 (if edebug-all-defs
"on" "off")))
574 (defun edebug-all-forms ()
575 "Toggle edebugging of all forms."
577 (setq edebug-all-forms
(not edebug-all-forms
))
578 (message "Edebugging all forms is %s."
579 (if edebug-all-forms
"on" "off")))
582 (defun edebug-install-read-eval-functions ()
584 ;; Don't install if already installed.
585 (unless load-read-function
586 (setq load-read-function
'edebug-read
)
587 (defalias 'eval-defun
'edebug-eval-defun
)))
589 (defun edebug-uninstall-read-eval-functions ()
591 (setq load-read-function nil
)
592 (defalias 'eval-defun
(symbol-function 'edebug-original-eval-defun
)))
595 ;;; Edebug internal data
597 ;; The internal data that is needed for edebugging is kept in the
598 ;; buffer-local variable `edebug-form-data'.
600 (make-variable-buffer-local 'edebug-form-data
)
602 (defvar edebug-form-data nil
)
603 ;; A list of entries associating symbols with buffer regions.
604 ;; This is an automatic buffer local variable. Each entry looks like:
605 ;; @code{(@var{symbol} @var{begin-marker} @var{end-marker}). The markers
606 ;; are at the beginning and end of an entry level form and @var{symbol} is
607 ;; a symbol that holds all edebug related information for the form on its
610 ;; In the future, the symbol will be irrelevant and edebug data will
611 ;; be stored in the definitions themselves rather than in the property
614 (defun edebug-make-form-data-entry (symbol begin end
)
615 (list symbol begin end
))
617 (defsubst edebug-form-data-name
(entry)
620 (defsubst edebug-form-data-begin
(entry)
623 (defsubst edebug-form-data-end
(entry)
626 (defsubst edebug-set-form-data-entry
(entry name begin end
)
627 (setcar entry name
);; in case name is changed
628 (set-marker (nth 1 entry
) begin
)
629 (set-marker (nth 2 entry
) end
))
631 (defun edebug-get-form-data-entry (pnt &optional end-point
)
632 ;; Find the edebug form data entry which is closest to PNT.
633 ;; If END-POINT is supplied, match must be exact.
634 ;; Return `nil' if none found.
635 (let ((rest edebug-form-data
)
637 (closest-dist 999999)) ;; need maxint here
638 (while (and rest
(< 0 closest-dist
))
639 (let* ((entry (car rest
))
640 (begin (edebug-form-data-begin entry
))
641 (dist (- pnt begin
)))
642 (setq rest
(cdr rest
))
644 (< dist closest-dist
)
646 (= end-point
(edebug-form-data-end entry
)))
647 (<= pnt
(edebug-form-data-end entry
)))
648 (setq closest-dist dist
649 closest-entry entry
))))
652 ;; Also need to find all contained entries,
653 ;; and find an entry given a symbol, which should be just assq.
655 (defun edebug-form-data-symbol ()
656 ;; Return the edebug data symbol of the form where point is in.
657 ;; If point is not inside a edebuggable form, cause error.
658 (or (edebug-form-data-name (edebug-get-form-data-entry (point)))
659 (error "Not inside instrumented form")))
661 (defun edebug-make-top-form-data-entry (new-entry)
662 ;; Make NEW-ENTRY the first element in the `edebug-form-data' list.
663 (edebug-clear-form-data-entry new-entry
)
664 (setq edebug-form-data
(cons new-entry edebug-form-data
)))
666 (defun edebug-clear-form-data-entry (entry)
667 ;; If non-nil, clear ENTRY out of the form data.
668 ;; Maybe clear the markers and delete the symbol's edebug property?
671 ;; Instead of this, we could just find all contained forms.
672 ;; (put (car entry) 'edebug nil) ;
673 ;; (mapcar 'edebug-clear-form-data-entry ; dangerous
674 ;; (get (car entry) 'edebug-dependents))
675 ;; (set-marker (nth 1 entry) nil)
676 ;; (set-marker (nth 2 entry) nil)
677 (setq edebug-form-data
(delq entry edebug-form-data
)))))
681 (defun edebug-syntax-error (&rest args
)
682 ;; Signal an invalid-read-syntax with ARGS.
683 (signal 'invalid-read-syntax args
))
686 (defconst edebug-read-syntax-table
687 ;; Lookup table for significant characters indicating the class of the
688 ;; token that follows. This is not a \"real\" syntax table.
689 (let ((table (make-char-table 'syntax-table
'symbol
))
692 (aset table i
'space
)
694 (aset table ?\
( 'lparen
)
695 (aset table ?\
) 'rparen
)
696 (aset table ?
\' 'quote
)
697 (aset table ?\
` 'backquote
)
698 (aset table ?\
, 'comma
)
699 (aset table ?
\" 'string
)
700 (aset table ?
\? 'char
)
701 (aset table ?\
[ 'lbracket
)
702 (aset table ?\
] 'rbracket
)
703 (aset table ?\.
'dot
)
704 (aset table ?\
# 'hash
)
705 ;; We treat numbers as symbols, because of confusion with -, -1, and 1-.
706 ;; We don't care about any other chars since they won't be seen.
709 (defun edebug-next-token-class ()
710 ;; Move to the next token and return its class. We only care about
711 ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector,
713 (edebug-skip-whitespace)
714 (if (and (eq (following-char) ?.
)
717 (or (and (eq (aref edebug-read-syntax-table
(following-char))
719 (not (= (following-char) ?\
;)))
720 (memq (following-char) '(?\
, ?\.
)))))
722 (aref edebug-read-syntax-table
(following-char))))
725 (defun edebug-skip-whitespace ()
726 ;; Leave point before the next token, skipping white space and comments.
727 (skip-chars-forward " \t\r\n\f")
728 (while (= (following-char) ?\
;)
729 ;; \r is counted as a comment terminator to support selective display.
730 (skip-chars-forward "^\n\r") ; skip the comment
731 (skip-chars-forward " \t\r\n\f")))
734 ;; Mostly obsolete reader; still used in one case.
736 (defun edebug-read-sexp ()
737 ;; Read one sexp from the current buffer starting at point.
738 ;; Leave point immediately after it. A sexp can be a list or atom.
739 ;; An atom is a symbol (or number), character, string, or vector.
740 ;; This works for reading anything legitimate, but it
741 ;; is gummed up by parser inconsistencies (bugs?)
742 (let ((class (edebug-next-token-class)))
744 ;; read goes one too far if a (possibly quoted) string or symbol
745 ;; is immediately followed by non-whitespace.
746 ((eq class
'symbol
) (edebug-original-read (current-buffer)))
747 ((eq class
'string
) (edebug-original-read (current-buffer)))
748 ((eq class
'quote
) (forward-char 1)
749 (list 'quote
(edebug-read-sexp)))
750 ((eq class
'backquote
)
751 (list '\
` (edebug-read-sexp)))
753 (list '\
, (edebug-read-sexp)))
754 (t ; anything else, just read it.
755 (edebug-original-read (current-buffer))))))
757 ;;; Offsets for reader
759 ;; Define a structure to represent offset positions of expressions.
760 ;; Each offset structure looks like: (before . after) for constituents,
761 ;; or for structures that have elements: (before <subexpressions> . after)
762 ;; where the <subexpressions> are the offset structures for subexpressions
763 ;; including the head of a list.
764 (defvar edebug-offsets nil
)
766 ;; Stack of offset structures in reverse order of the nesting.
767 ;; This is used to get back to previous levels.
768 (defvar edebug-offsets-stack nil
)
769 (defvar edebug-current-offset nil
) ; Top of the stack, for convenience.
771 ;; We must store whether we just read a list with a dotted form that
772 ;; is itself a list. This structure will be condensed, so the offsets
773 ;; must also be condensed.
774 (defvar edebug-read-dotted-list nil
)
776 (defsubst edebug-initialize-offsets
()
777 ;; Reinitialize offset recording.
778 (setq edebug-current-offset nil
))
780 (defun edebug-store-before-offset (point)
781 ;; Add a new offset pair with POINT as the before offset.
782 (let ((new-offset (list point
)))
783 (if edebug-current-offset
784 (setcdr edebug-current-offset
785 (cons new-offset
(cdr edebug-current-offset
)))
786 ;; Otherwise, we are at the top level, so initialize.
787 (setq edebug-offsets new-offset
788 edebug-offsets-stack nil
789 edebug-read-dotted-list nil
))
790 ;; Cons the new offset to the front of the stack.
791 (setq edebug-offsets-stack
(cons new-offset edebug-offsets-stack
)
792 edebug-current-offset new-offset
)
795 (defun edebug-store-after-offset (point)
796 ;; Finalize the current offset struct by reversing it and
797 ;; store POINT as the after offset.
798 (if (not edebug-read-dotted-list
)
799 ;; Just reverse the offsets of all subexpressions.
800 (setcdr edebug-current-offset
(nreverse (cdr edebug-current-offset
)))
802 ;; We just read a list after a dot, which will be abbreviated out.
803 (setq edebug-read-dotted-list nil
)
804 ;; Drop the corresponding offset pair.
805 ;; That is, nconc the reverse of the rest of the offsets
806 ;; with the cdr of last offset.
807 (setcdr edebug-current-offset
808 (nconc (nreverse (cdr (cdr edebug-current-offset
)))
809 (cdr (car (cdr edebug-current-offset
))))))
811 ;; Now append the point using nconc.
812 (setq edebug-current-offset
(nconc edebug-current-offset point
))
814 (setq edebug-offsets-stack
(cdr edebug-offsets-stack
)
815 edebug-current-offset
(car edebug-offsets-stack
)))
817 (defun edebug-ignore-offset ()
818 ;; Ignore the last created offset pair.
819 (setcdr edebug-current-offset
(cdr (cdr edebug-current-offset
))))
821 (defmacro edebug-storing-offsets
(point &rest body
)
822 (declare (debug (form body
)) (indent 1))
825 (edebug-store-before-offset ,point
)
827 (edebug-store-after-offset (point))))
830 ;;; Reader for Emacs Lisp.
832 ;; Uses edebug-next-token-class (and edebug-skip-whitespace) above.
834 (defconst edebug-read-alist
835 '((symbol . edebug-read-symbol
)
836 (lparen . edebug-read-list
)
837 (string . edebug-read-string
)
838 (quote . edebug-read-quote
)
839 (backquote . edebug-read-backquote
)
840 (comma . edebug-read-comma
)
841 (lbracket . edebug-read-vector
)
842 (hash . edebug-read-function
)
845 (defun edebug-read-storing-offsets (stream)
846 (let (edebug-read-dotted-list) ; see edebug-store-after-offset
847 (edebug-storing-offsets (point)
849 (or (cdr (assq (edebug-next-token-class) edebug-read-alist
))
850 ;; anything else, just read it.
851 'edebug-original-read
)
854 (defun edebug-read-symbol (stream)
855 (edebug-original-read stream
))
857 (defun edebug-read-string (stream)
858 (edebug-original-read stream
))
860 (defun edebug-read-quote (stream)
861 ;; Turn 'thing into (quote thing)
864 (edebug-storing-offsets (1- (point)) 'quote
)
865 (edebug-read-storing-offsets stream
)))
867 (defvar edebug-read-backquote-level
0
868 "If non-zero, we're in a new-style backquote.
869 It should never be negative. This controls how we read comma constructs.")
871 (defun edebug-read-backquote (stream)
872 ;; Turn `thing into (\` thing)
875 (edebug-storing-offsets (1- (point)) '\
`)
876 (let ((edebug-read-backquote-level (1+ edebug-read-backquote-level
)))
877 (edebug-read-storing-offsets stream
))))
879 (defun edebug-read-comma (stream)
880 ;; Turn ,thing into (\, thing). Handle ,@ and ,. also.
881 (let ((opoint (point)))
884 (cond ((eq (following-char) ?\.
)
887 ((eq (following-char) ?\
@)
890 ;; Generate the same structure of offsets we would have
891 ;; if the resulting list appeared verbatim in the input text.
892 (if (zerop edebug-read-backquote-level
)
893 (edebug-storing-offsets opoint symbol
)
895 (edebug-storing-offsets opoint symbol
)
896 (let ((edebug-read-backquote-level (1- edebug-read-backquote-level
)))
897 (edebug-read-storing-offsets stream
)))))))
899 (defun edebug-read-function (stream)
900 ;; Turn #'thing into (function thing)
902 (cond ((eq ?
\' (following-char))
905 (edebug-storing-offsets (- (point) 2)
906 (if (featurep 'cl
) 'function
* 'function
))
907 (edebug-read-storing-offsets stream
)))
908 ((memq (following-char) '(?
: ?B ?O ?X ?b ?o ?x ?
1 ?
2 ?
3 ?
4 ?
5 ?
6
911 (edebug-original-read stream
))
912 (t (edebug-syntax-error "Bad char after #"))))
914 (defun edebug-read-list (stream)
915 (forward-char 1) ; skip \(
918 (while (not (memq (edebug-next-token-class) '(rparen dot
)))
919 (if (and (eq (edebug-next-token-class) 'backquote
)
921 (zerop edebug-read-backquote-level
))
923 ;; Old style backquote.
924 (forward-char 1) ; Skip backquote.
925 ;; Call edebug-storing-offsets here so that we
926 ;; produce the same offsets we would have had
927 ;; if the backquote were an ordinary symbol.
928 (push (edebug-storing-offsets (1- (point)) '\
`) elements
))
929 (push (edebug-read-storing-offsets stream
) elements
)))
930 (setq elements
(nreverse elements
))
931 (if (eq 'dot
(edebug-next-token-class))
933 (forward-char 1) ; skip \.
934 (setq dotted-form
(edebug-read-storing-offsets stream
))
935 elements
(nconc elements dotted-form
)
936 (if (not (eq (edebug-next-token-class) 'rparen
))
937 (edebug-syntax-error "Expected `)'"))
938 (setq edebug-read-dotted-list
(listp dotted-form
))
941 (forward-char 1) ; skip \)
944 (defun edebug-read-vector (stream)
945 (forward-char 1) ; skip \[
948 (while (not (eq 'rbracket
(edebug-next-token-class)))
949 (push (edebug-read-storing-offsets stream
) elements
))
950 (apply 'vector
(nreverse elements
)))
951 (forward-char 1) ; skip \]
954 ;;; Cursors for traversal of list and vector elements with offsets.
956 (defvar edebug-dotted-spec nil
)
958 (defun edebug-new-cursor (expressions offsets
)
959 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
960 (if (vectorp expressions
)
961 (setq expressions
(append expressions nil
)))
962 (cons expressions offsets
))
964 (defsubst edebug-set-cursor
(cursor expressions offsets
)
965 ;; Set the CURSOR's EXPRESSIONS and OFFSETS to the given.
966 ;; Return the cursor.
967 (setcar cursor expressions
)
968 (setcdr cursor offsets
)
971 (defun edebug-copy-cursor (cursor)
972 ;; Copy the cursor using the same object and offsets.
973 (cons (car cursor
) (cdr cursor
)))
975 (defsubst edebug-cursor-expressions
(cursor)
977 (defsubst edebug-cursor-offsets
(cursor)
980 (defsubst edebug-empty-cursor
(cursor)
981 ;; Return non-nil if CURSOR is empty - meaning no more elements.
984 (defsubst edebug-top-element
(cursor)
985 ;; Return the top element at the cursor.
986 ;; Assumes not empty.
989 (defun edebug-top-element-required (cursor &rest error
)
990 ;; Check if a dotted form is required.
991 (if edebug-dotted-spec
(edebug-no-match cursor
"Dot expected."))
992 ;; Check if there is at least one more argument.
993 (if (edebug-empty-cursor cursor
) (apply 'edebug-no-match cursor error
))
994 ;; Return that top element.
995 (edebug-top-element cursor
))
997 (defsubst edebug-top-offset
(cursor)
998 ;; Return the top offset pair corresponding to the top element.
1001 (defun edebug-move-cursor (cursor)
1002 ;; Advance and return the cursor to the next element and offset.
1003 ;; throw no-match if empty before moving.
1004 ;; This is a violation of the cursor encapsulation, but
1005 ;; there is plenty of that going on while matching.
1006 ;; The following test should always fail.
1007 (if (edebug-empty-cursor cursor
)
1008 (edebug-no-match cursor
"Not enough arguments."))
1009 (setcar cursor
(cdr (car cursor
)))
1010 (setcdr cursor
(cdr (cdr cursor
)))
1014 (defun edebug-before-offset (cursor)
1015 ;; Return the before offset of the cursor.
1016 ;; If there is nothing left in the offsets,
1017 ;; return one less than the offset itself,
1018 ;; which is the after offset for a list.
1019 (let ((offset (edebug-cursor-offsets cursor
)))
1024 (defun edebug-after-offset (cursor)
1025 ;; Return the after offset of the cursor object.
1026 (let ((offset (edebug-top-offset cursor
)))
1027 (while (consp offset
)
1028 (setq offset
(cdr offset
)))
1033 ;; The top level function for parsing forms is
1034 ;; edebug-read-and-maybe-wrap-form; it calls all the rest. It checks the
1035 ;; syntax a bit and leaves point at any error it finds, but otherwise
1036 ;; should appear to work like eval-defun.
1038 ;; The basic plan is to surround each expression with a call to
1039 ;; the edebug debugger together with indexes into a table of positions of
1040 ;; all expressions. Thus an expression "exp" becomes:
1042 ;; (edebug-after (edebug-before 1) 2 exp)
1044 ;; When this is evaluated, first point is moved to the beginning of
1045 ;; exp at offset 1 of the current function. The expression is
1046 ;; evaluated, which may cause more edebug calls, and then point is
1047 ;; moved to offset 2 after the end of exp.
1049 ;; The highest level expressions of the function are wrapped in a call to
1050 ;; edebug-enter, which supplies the function name and the actual
1051 ;; arguments to the function. See functions edebug-enter, edebug-before,
1052 ;; and edebug-after for more details.
1054 ;; Dynamically bound vars, left unbound, but globally declared.
1055 ;; This is to quiet the byte compiler.
1057 ;; Window data of the highest definition being wrapped.
1058 ;; This data is shared by all embedded definitions.
1059 (defvar edebug-top-window-data
)
1061 (defvar edebug-
&optional
)
1062 (defvar edebug-
&rest
)
1063 (defvar edebug-gate nil
) ;; whether no-match forces an error.
1065 (defvar edebug-def-name nil
) ; name of definition, used by interactive-form
1066 (defvar edebug-old-def-name nil
) ; previous name of containing definition.
1068 (defvar edebug-error-point nil
)
1069 (defvar edebug-best-error nil
)
1072 (defun edebug-read-and-maybe-wrap-form ()
1073 ;; Read a form and wrap it with edebug calls, if the conditions are right.
1074 ;; Here we just catch any no-match not caught below and signal an error.
1076 ;; Run the setup hook.
1077 ;; If it gets an error, make it nil.
1078 (let ((temp-hook edebug-setup-hook
))
1079 (setq edebug-setup-hook nil
)
1080 (run-hooks 'temp-hook
))
1083 edebug-top-window-data
1084 edebug-def-name
;; make sure it is locally nil
1085 ;; I don't like these here!!
1092 ;; Do this once here instead of several times.
1093 (max-lisp-eval-depth (+ 800 max-lisp-eval-depth
))
1094 (max-specpdl-size (+ 2000 max-specpdl-size
)))
1097 (setq result
(edebug-read-and-maybe-wrap-form1))
1100 (apply 'edebug-syntax-error no-match
))
1104 (defun edebug-read-and-maybe-wrap-form1 ()
1109 ;; These offset things don't belong here, but to support recursive
1110 ;; calls to edebug-read, they need to be here.
1112 edebug-offsets-stack
1113 edebug-current-offset
; reset to nil
1116 (if (and (eq 'lparen
(edebug-next-token-class))
1117 (eq 'symbol
(progn (forward-char 1) (edebug-next-token-class))))
1118 ;; Find out if this is a defining form from first symbol
1119 (setq def-kind
(edebug-original-read (current-buffer))
1120 spec
(and (symbolp def-kind
) (get-edebug-spec def-kind
))
1121 defining-form-p
(and (listp spec
)
1122 (eq '&define
(car spec
)))
1123 ;; This is incorrect in general!! But OK most of the time.
1124 def-name
(if (and defining-form-p
1125 (eq 'name
(car (cdr spec
)))
1126 (eq 'symbol
(edebug-next-token-class)))
1127 (edebug-original-read (current-buffer))))))
1128 ;;;(message "all defs: %s all forms: %s" edebug-all-defs edebug-all-forms)
1131 (if (or edebug-all-defs edebug-all-forms
)
1132 ;; If it is a defining form and we are edebugging defs,
1133 ;; then let edebug-list-form start it.
1134 (let ((cursor (edebug-new-cursor
1135 (list (edebug-read-storing-offsets (current-buffer)))
1136 (list edebug-offsets
))))
1138 (edebug-make-form-wrapper
1140 (edebug-before-offset cursor
)
1141 (1- (edebug-after-offset cursor
))
1142 (list (cons (symbol-name def-kind
) (cdr spec
))))))
1144 ;; Not edebugging this form, so reset the symbol's edebug
1145 ;; property to be just a marker at the definition's source code.
1146 ;; This only works for defs with simple names.
1147 (put def-name
'edebug
(point-marker))
1148 ;; Also nil out dependent defs.
1151 (put def-name
'edebug nil
)))
1152 (get def-name
'edebug-dependents
))
1153 (edebug-read-sexp)))
1155 ;; If all forms are being edebugged, explicitly wrap it.
1157 (let ((cursor (edebug-new-cursor
1158 (list (edebug-read-storing-offsets (current-buffer)))
1159 (list edebug-offsets
))))
1160 (edebug-make-form-wrapper
1162 (edebug-before-offset cursor
)
1163 (edebug-after-offset cursor
)
1166 ;; Not a defining form, and not edebugging.
1167 (t (edebug-read-sexp)))
1171 (defvar edebug-def-args
) ; args of defining form.
1172 (defvar edebug-def-interactive
) ; is it an emacs interactive function?
1173 (defvar edebug-inside-func
) ;; whether code is inside function context.
1174 ;; Currently def-form sets this to nil; def-body sets it to t.
1176 (defun edebug-interactive-p-name ()
1177 ;; Return a unique symbol for the variable used to store the
1178 ;; status of interactive-p for this function.
1179 (intern (format "edebug-%s-interactive-p" edebug-def-name
)))
1182 (defun edebug-wrap-def-body (forms)
1183 "Wrap the FORMS of a definition body."
1184 (if edebug-def-interactive
1185 `(let ((,(edebug-interactive-p-name)
1187 ,(edebug-make-enter-wrapper forms
))
1188 (edebug-make-enter-wrapper forms
)))
1191 (defun edebug-make-enter-wrapper (forms)
1192 ;; Generate the enter wrapper for some forms of a definition.
1193 ;; This is not to be used for the body of other forms, e.g. `while',
1194 ;; since it wraps the list of forms with a call to `edebug-enter'.
1195 ;; Uses the dynamically bound vars edebug-def-name and edebug-def-args.
1196 ;; Do this after parsing since that may find a name.
1197 (setq edebug-def-name
1198 (or edebug-def-name edebug-old-def-name
(edebug-gensym "edebug-anon")))
1200 (quote ,edebug-def-name
)
1201 ,(if edebug-inside-func
1203 ;; Doesn't work with more than one def-body!!
1204 ;; But the list will just be reversed.
1205 ,@(nreverse edebug-def-args
))
1207 (function (lambda () ,@forms
))
1211 (defvar edebug-form-begin-marker
) ; the mark for def being instrumented
1213 (defvar edebug-offset-index
) ; the next available offset index.
1214 (defvar edebug-offset-list
) ; the list of offset positions.
1216 (defun edebug-inc-offset (offset)
1217 ;; modifies edebug-offset-index and edebug-offset-list
1218 ;; accesses edebug-func-marc and buffer point
1221 (setq edebug-offset-list
(cons (- offset edebug-form-begin-marker
)
1223 edebug-offset-index
(1+ edebug-offset-index
))))
1226 (defun edebug-make-before-and-after-form (before-index form after-index
)
1227 ;; Return the edebug form for the current function at offset BEFORE-INDEX
1228 ;; given FORM. Looks like:
1229 ;; (edebug-after (edebug-before BEFORE-INDEX) AFTER-INDEX FORM)
1230 ;; Also increment the offset index for subsequent use.
1232 (list 'edebug-before before-index
)
1235 (defun edebug-make-after-form (form after-index
)
1236 ;; Like edebug-make-before-and-after-form, but only after.
1237 (list 'edebug-after
0 after-index form
))
1240 (defun edebug-unwrap (sexp)
1241 "Return the unwrapped SEXP or return it as is if it is not wrapped.
1242 The SEXP might be the result of wrapping a body, which is a list of
1243 expressions; a `progn' form will be returned enclosing these forms."
1246 ((eq 'edebug-after
(car sexp
))
1248 ((eq 'edebug-enter
(car sexp
))
1249 (let ((forms (nthcdr 2 (nth 1 (nth 3 sexp
)))))
1250 (if (> (length forms
) 1)
1251 (cons 'progn forms
) ;; could return (values forms) instead.
1253 (t sexp
);; otherwise it is not wrapped, so just return it.
1257 (defun edebug-unwrap* (sexp)
1258 "Return the sexp recursively unwrapped."
1259 (let ((new-sexp (edebug-unwrap sexp
)))
1260 (while (not (eq sexp new-sexp
))
1262 new-sexp
(edebug-unwrap sexp
)))
1263 (if (consp new-sexp
)
1264 (mapcar 'edebug-unwrap
* new-sexp
)
1268 (defun edebug-defining-form (cursor form-begin form-end speclist
)
1269 ;; Process the defining form, starting outside the form.
1270 ;; The speclist is a generated list spec that looks like:
1271 ;; (("def-symbol" defining-form-spec-sans-&define))
1272 ;; Skip the first offset.
1273 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1274 (cdr (edebug-cursor-offsets cursor
)))
1275 (edebug-make-form-wrapper
1277 form-begin
(1- form-end
)
1280 (defun edebug-make-form-wrapper (cursor form-begin form-end
1282 ;; Wrap a form, usually a defining form, but any evaluated one.
1283 ;; If speclist is non-nil, this is being called by edebug-defining-form.
1284 ;; Otherwise it is being called from edebug-read-and-maybe-wrap-form1.
1285 ;; This is a hack, but I havent figured out a simpler way yet.
1286 (let* ((form-data-entry (edebug-get-form-data-entry form-begin form-end
))
1287 ;; Set this marker before parsing.
1288 (edebug-form-begin-marker
1290 (edebug-form-data-begin form-data-entry
)
1291 ;; Buffer must be current-buffer for this to work:
1292 (set-marker (make-marker) form-begin
))))
1294 (let (edebug-offset-list
1295 (edebug-offset-index 0)
1298 ;; (edebug-containing-def-name edebug-def-name)
1299 ;; Get name from form-data, if any.
1300 (edebug-old-def-name (edebug-form-data-name form-data-entry
))
1303 edebug-def-interactive
1304 edebug-inside-func
;; whether wrapped code executes inside a function.
1309 (edebug-match cursor speclist
)
1311 ;; else wrap as an enter-form.
1312 (edebug-make-enter-wrapper (list (edebug-form cursor
)))))
1314 ;; Set the name here if it was not set by edebug-make-enter-wrapper.
1315 (setq edebug-def-name
1316 (or edebug-def-name edebug-old-def-name
(edebug-gensym "edebug-anon")))
1318 ;; Add this def as a dependent of containing def. Buggy.
1319 '(if (and edebug-containing-def-name
1320 (not (get edebug-containing-def-name
'edebug-dependents
)))
1321 (put edebug-containing-def-name
'edebug-dependents
1322 (cons edebug-def-name
1323 (get edebug-containing-def-name
1324 'edebug-dependents
))))
1326 ;; Create a form-data-entry or modify existing entry's markers.
1327 ;; In the latter case, pointers to the entry remain eq.
1328 (if (not form-data-entry
)
1329 (setq form-data-entry
1330 (edebug-make-form-data-entry
1332 edebug-form-begin-marker
1333 ;; Buffer must be current-buffer.
1334 (set-marker (make-marker) form-end
)
1336 (edebug-set-form-data-entry
1337 form-data-entry edebug-def-name
;; in case name is changed
1338 form-begin form-end
))
1340 ;; (message "defining: %s" edebug-def-name) (sit-for 2)
1341 (edebug-make-top-form-data-entry form-data-entry
)
1342 (message "Edebug: %s" edebug-def-name
)
1343 ;;(debug edebug-def-name)
1345 ;; Destructively reverse edebug-offset-list and make vector from it.
1346 (setq edebug-offset-list
(vconcat (nreverse edebug-offset-list
)))
1348 ;; Side effects on the property list of edebug-def-name.
1349 (edebug-clear-frequency-count edebug-def-name
)
1350 (edebug-clear-coverage edebug-def-name
)
1352 ;; Set up the initial window data.
1353 (if (not edebug-top-window-data
) ;; if not already set, do it now.
1354 (let ((window ;; Find the best window for this buffer.
1355 (or (get-buffer-window (current-buffer))
1356 (selected-window))))
1357 (setq edebug-top-window-data
1358 (cons window
(window-start window
)))))
1360 ;; Store the edebug data in symbol's property list.
1361 (put edebug-def-name
'edebug
1362 ;; A struct or vector would be better here!!
1363 (list edebug-form-begin-marker
1364 nil
; clear breakpoints
1366 edebug-top-window-data
1372 (defun edebug-clear-frequency-count (name)
1373 ;; Create initial frequency count vector.
1374 ;; For each stop point, the counter is incremented each time it is visited.
1375 (put name
'edebug-freq-count
1376 (make-vector (length edebug-offset-list
) 0)))
1379 (defun edebug-clear-coverage (name)
1380 ;; Create initial coverage vector.
1381 ;; Only need one per expression, but it is simpler to use stop points.
1382 (put name
'edebug-coverage
1383 (make-vector (length edebug-offset-list
) 'unknown
)))
1386 (defun edebug-form (cursor)
1387 ;; Return the instrumented form for the following form.
1388 ;; Add the point offsets to the edebug-offset-list for the form.
1389 (let* ((form (edebug-top-element-required cursor
"Expected form"))
1390 (offset (edebug-top-offset cursor
)))
1394 ;; The first offset for a list form is for the list form itself.
1395 (if (eq 'quote
(car form
))
1397 (let* ((head (car form
))
1398 (spec (and (symbolp head
) (get-edebug-spec head
)))
1399 (new-cursor (edebug-new-cursor form offset
)))
1400 ;; Find out if this is a defining form from first symbol.
1401 ;; An indirect spec would not work here, yet.
1402 (if (and (consp spec
) (eq '&define
(car spec
)))
1403 (edebug-defining-form
1405 (car offset
);; before the form
1406 (edebug-after-offset cursor
)
1407 (cons (symbol-name head
) (cdr spec
)))
1408 ;; Wrap a regular form.
1409 (edebug-make-before-and-after-form
1410 (edebug-inc-offset (car offset
))
1411 (edebug-list-form new-cursor
)
1412 ;; After processing the list form, the new-cursor is left
1413 ;; with the offset after the form.
1414 (edebug-inc-offset (edebug-cursor-offsets new-cursor
))))
1419 ;; Check for constant symbols that don't get wrapped.
1420 ((or (memq form
'(t nil
))
1424 (t ;; just a variable
1425 (edebug-make-after-form form
(edebug-inc-offset (cdr offset
))))))
1427 ;; Anything else is self-evaluating.
1429 (edebug-move-cursor cursor
))))
1432 (defsubst edebug-forms
(cursor) (edebug-match cursor
'(&rest form
)))
1433 (defsubst edebug-sexps
(cursor) (edebug-match cursor
'(&rest sexp
)))
1435 (defsubst edebug-list-form-args
(head cursor
)
1436 ;; Process the arguments of a list form given that head of form is a symbol.
1437 ;; Helper for edebug-list-form
1438 (let ((spec (get-edebug-spec head
)))
1443 ;; It is a speclist.
1444 (let (edebug-best-error
1445 edebug-error-point
);; This may not be needed.
1446 (edebug-match-sublist cursor spec
)))
1447 ((eq t spec
) (edebug-forms cursor
))
1448 ((eq 0 spec
) (edebug-sexps cursor
))
1449 ((symbolp spec
) (funcall spec cursor
));; Not used by edebug,
1450 ; but leave it in for compatibility.
1452 ;; No edebug-form-spec provided.
1453 ((edebug-macrop head
)
1454 (if edebug-eval-macro-args
1455 (edebug-forms cursor
)
1456 (edebug-sexps cursor
)))
1457 (t ;; Otherwise it is a function call.
1458 (edebug-forms cursor
)))))
1461 (defun edebug-list-form (cursor)
1462 ;; Return an instrumented form built from the list form.
1463 ;; The after offset will be left in the cursor after processing the form.
1464 (let ((head (edebug-top-element-required cursor
"Expected elements"))
1465 ;; Prevent backtracking whenever instrumenting.
1467 ;; A list form is never optional because it matches anything.
1468 (edebug-&optional nil
)
1470 ;; Skip the first offset.
1471 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1472 (cdr (edebug-cursor-offsets cursor
)))
1476 ((null head
) nil
) ; () is legal.
1477 ((eq head
'interactive-p
)
1478 ;; Special case: replace (interactive-p) with variable
1479 (setq edebug-def-interactive
'check-it
)
1480 (edebug-move-cursor cursor
)
1481 (edebug-interactive-p-name))
1483 (cons head
(edebug-list-form-args
1484 head
(edebug-move-cursor cursor
))))))
1487 (if (eq (car head
) ',)
1488 ;; The head of a form should normally be a symbol or a lambda
1489 ;; expression but it can also be an unquote form to be filled
1490 ;; before evaluation. We evaluate the arguments anyway, on the
1491 ;; assumption that the unquote form will place a proper function
1492 ;; name (rather than a macro name).
1493 (edebug-match cursor
'(("," def-form
) body
))
1494 ;; Process anonymous function and args.
1495 ;; This assumes no anonymous macros.
1496 (edebug-match-specs cursor
'(lambda-expr body
) 'edebug-match-specs
)))
1498 (t (edebug-syntax-error
1499 "Head of list form must be a symbol or lambda expression")))
1502 ;;; Matching of specs.
1504 (defvar edebug-after-dotted-spec nil
)
1506 (defvar edebug-matching-depth
0) ;; initial value
1507 (defconst edebug-max-depth
150) ;; maximum number of matching recursions.
1510 ;;; Failure to match
1512 ;; This throws to no-match, if there are higher alternatives.
1513 ;; Otherwise it signals an error. The place of the error is found
1514 ;; with the two before- and after-offset functions.
1516 (defun edebug-no-match (cursor &rest edebug-args
)
1517 ;; Throw a no-match, or signal an error immediately if gate is active.
1518 ;; Remember this point in case we need to report this error.
1519 (setq edebug-error-point
(or edebug-error-point
1520 (edebug-before-offset cursor
))
1521 edebug-best-error
(or edebug-best-error edebug-args
))
1522 (if (and edebug-gate
(not edebug-
&optional
))
1524 (if edebug-error-point
1525 (goto-char edebug-error-point
))
1526 (apply 'edebug-syntax-error edebug-args
))
1527 (funcall 'throw
'no-match edebug-args
)))
1530 (defun edebug-match (cursor specs
)
1531 ;; Top level spec matching function.
1532 ;; Used also at each lower level of specs.
1533 (let (edebug-&optional
1537 (edebug-gate edebug-gate
) ;; locally bound to limit effect
1539 (edebug-match-specs cursor specs
'edebug-match-specs
)))
1542 (defun edebug-match-one-spec (cursor spec
)
1543 ;; Match one spec, which is not a keyword &-spec.
1545 ((symbolp spec
) (edebug-match-symbol cursor spec
))
1546 ((vectorp spec
) (edebug-match cursor
(append spec nil
)))
1547 ((stringp spec
) (edebug-match-string cursor spec
))
1548 ((listp spec
) (edebug-match-list cursor spec
))
1552 (defun edebug-match-specs (cursor specs remainder-handler
)
1553 ;; Append results of matching the list of specs.
1554 ;; The first spec is handled and the remainder-handler handles the rest.
1555 (let ((edebug-matching-depth
1556 (if (> edebug-matching-depth edebug-max-depth
)
1557 (error "too deep - perhaps infinite loop in spec?")
1558 (1+ edebug-matching-depth
))))
1562 ;; Is the spec dotted?
1564 (let ((edebug-dotted-spec t
));; Containing spec list was dotted.
1565 (edebug-match-specs cursor
(list specs
) remainder-handler
)))
1567 ;; Is the form dotted?
1568 ((not (listp (edebug-cursor-expressions cursor
)));; allow nil
1569 (if (not edebug-dotted-spec
)
1570 (edebug-no-match cursor
"Dotted spec required."))
1571 ;; Cancel dotted spec and dotted form.
1572 (let ((edebug-dotted-spec)
1573 (this-form (edebug-cursor-expressions cursor
))
1574 (this-offset (edebug-cursor-offsets cursor
)))
1575 ;; Wrap the form in a list, (by changing the cursor??)...
1576 (edebug-set-cursor cursor
(list this-form
) this-offset
)
1577 ;; and process normally, then unwrap the result.
1578 (car (edebug-match-specs cursor specs remainder-handler
))))
1580 (t;; Process normally.
1581 (let* ((spec (car specs
))
1583 (first-char (and (symbolp spec
) (aref (symbol-name spec
) 0))))
1584 ;;(message "spec = %s first char = %s" spec first-char) (sit-for 1)
1587 ((eq ?
& first-char
);; "&" symbols take all following specs.
1588 (funcall (get-edebug-spec spec
) cursor
(cdr specs
)))
1589 ((eq ?
: first-char
);; ":" symbols take one following spec.
1590 (setq rest
(cdr (cdr specs
)))
1591 (funcall (get-edebug-spec spec
) cursor
(car (cdr specs
))))
1592 (t;; Any other normal spec.
1593 (setq rest
(cdr specs
))
1594 (edebug-match-one-spec cursor spec
)))
1595 (funcall remainder-handler cursor rest remainder-handler
)))))))
1598 ;; Define specs for all the symbol specs with functions used to process them.
1599 ;; Perhaps we shouldn't be doing this with edebug-form-specs since the
1600 ;; user may want to define macros or functions with the same names.
1601 ;; We could use an internal obarray for these primitive specs.
1603 (dolist (pair '((&optional . edebug-match-
&optional
)
1604 (&rest . edebug-match-
&rest
)
1605 (&or . edebug-match-
&or
)
1606 (form . edebug-match-form
)
1607 (sexp . edebug-match-sexp
)
1608 (body . edebug-match-body
)
1609 (&define . edebug-match-
&define
)
1610 (name . edebug-match-name
)
1611 (:name . edebug-match-colon-name
)
1612 (arg . edebug-match-arg
)
1613 (def-body . edebug-match-def-body
)
1614 (def-form . edebug-match-def-form
)
1615 ;; Less frequently used:
1616 ;; (function . edebug-match-function)
1617 (lambda-expr . edebug-match-lambda-expr
)
1618 (¬ . edebug-match-
¬
)
1619 (&key . edebug-match-
&key
)
1620 (place . edebug-match-place
)
1621 (gate . edebug-match-gate
)
1622 ;; (nil . edebug-match-nil) not this one - special case it.
1624 (put (car pair
) 'edebug-form-spec
(cdr pair
)))
1626 (defun edebug-match-symbol (cursor symbol
)
1627 ;; Match a symbol spec.
1628 (let* ((spec (get-edebug-spec symbol
)))
1632 ;; It is an indirect spec.
1633 (edebug-match cursor spec
)
1634 ;; Otherwise it should be the symbol name of a function.
1635 ;; There could be a bug here - maybe need to do edebug-match bindings.
1636 (funcall spec cursor
)))
1638 ((null symbol
) ;; special case this.
1639 (edebug-match-nil cursor
))
1641 ((fboundp symbol
) ; is it a predicate?
1642 (let ((sexp (edebug-top-element-required cursor
"Expected" symbol
)))
1643 ;; Special case for edebug-`.
1644 (if (and (listp sexp
) (eq (car sexp
) ',))
1645 (edebug-match cursor
'(("," def-form
)))
1646 (if (not (funcall symbol sexp
))
1647 (edebug-no-match cursor symbol
"failed"))
1648 (edebug-move-cursor cursor
)
1650 (t (error "%s is not a form-spec or function" symbol
))
1654 (defun edebug-match-sexp (cursor)
1655 (list (prog1 (edebug-top-element-required cursor
"Expected sexp")
1656 (edebug-move-cursor cursor
))))
1658 (defun edebug-match-form (cursor)
1659 (list (edebug-form cursor
)))
1661 (defalias 'edebug-match-place
'edebug-match-form
)
1662 ;; Currently identical to edebug-match-form.
1663 ;; This is for common lisp setf-style place arguments.
1665 (defsubst edebug-match-body
(cursor) (edebug-forms cursor
))
1667 (defun edebug-match-&optional
(cursor specs
)
1668 ;; Keep matching until one spec fails.
1669 (edebug-&optional-wrapper cursor specs
'edebug-
&optional-wrapper
))
1671 (defun edebug-&optional-wrapper
(cursor specs remainder-handler
)
1673 (edebug-&optional specs
)
1675 (this-form (edebug-cursor-expressions cursor
))
1676 (this-offset (edebug-cursor-offsets cursor
)))
1677 (if (null (catch 'no-match
1679 (edebug-match-specs cursor specs remainder-handler
))
1680 ;; Returning nil means no no-match was thrown.
1683 ;; no-match, but don't fail; just reset cursor and return nil.
1684 (edebug-set-cursor cursor this-form this-offset
)
1688 (defun edebug-&rest-wrapper
(cursor specs remainder-handler
)
1689 (if (null specs
) (setq specs edebug-
&rest
))
1690 ;; Reuse the &optional handler with this as the remainder handler.
1691 (edebug-&optional-wrapper cursor specs remainder-handler
))
1693 (defun edebug-match-&rest
(cursor specs
)
1694 ;; Repeatedly use specs until failure.
1695 (let ((edebug-&rest specs
) ;; remember these
1698 (edebug-&rest-wrapper cursor specs
'edebug-
&rest-wrapper
)))
1701 (defun edebug-match-&or
(cursor specs
)
1702 ;; Keep matching until one spec succeeds, and return its results.
1703 ;; If none match, fail.
1704 ;; This needs to be optimized since most specs spend time here.
1705 (let ((original-specs specs
)
1706 (this-form (edebug-cursor-expressions cursor
))
1707 (this-offset (edebug-cursor-offsets cursor
)))
1712 (let (edebug-gate ;; only while matching each spec
1715 ;; Doesn't support e.g. &or symbolp &rest form
1716 (edebug-match-one-spec cursor
(car specs
)))))
1717 ;; Match failed, so reset and try again.
1718 (setq specs
(cdr specs
))
1719 ;; Reset the cursor for the next match.
1720 (edebug-set-cursor cursor this-form this-offset
))
1722 (apply 'edebug-no-match cursor
"Expected one of" original-specs
))
1726 (defun edebug-match-¬
(cursor specs
)
1727 ;; If any specs match, then fail
1728 (if (null (catch 'no-match
1729 (let ((edebug-gate nil
))
1731 (edebug-match-&or cursor specs
)))
1733 ;; This means something matched, so it is a no match.
1734 (edebug-no-match cursor
"Unexpected"))
1735 ;; This means nothing matched, so it is OK.
1736 nil
) ;; So, return nothing
1739 (def-edebug-spec &key edebug-match-
&key
)
1741 (defun edebug-match-&key
(cursor specs
)
1742 ;; Following specs must look like (<name> <spec>) ...
1743 ;; where <name> is the name of a keyword, and spec is its spec.
1744 ;; This really doesn't save much over the expanded form and takes time.
1748 (mapcar (function (lambda (pair)
1749 (vector (format ":%s" (car pair
))
1754 (defun edebug-match-gate (cursor)
1755 ;; Simply set the gate to prevent backtracking at this level.
1756 (setq edebug-gate t
)
1760 (defun edebug-match-list (cursor specs
)
1761 ;; The spec is a list, but what kind of list, and what context?
1762 (if edebug-dotted-spec
1763 ;; After dotted spec but form did not contain dot,
1764 ;; so match list spec elements as if spliced in.
1766 (let ((edebug-dotted-spec))
1767 (edebug-match-specs cursor specs
'edebug-match-specs
))
1768 ;; If it matched, really clear the dotted-spec flag.
1769 (setq edebug-dotted-spec nil
))
1770 (let ((spec (car specs
))
1771 (form (edebug-top-element-required cursor
"Expected" specs
)))
1774 (let ((spec (car (cdr specs
))))
1777 ;; Special case: spec quotes a symbol to match.
1778 ;; Change in future. Use "..." instead.
1779 (if (not (eq spec form
))
1780 (edebug-no-match cursor
"Expected" spec
))
1781 (edebug-move-cursor cursor
)
1782 (setq edebug-gate t
)
1785 (error "Bad spec: %s" specs
)))))
1789 (list (edebug-match-sublist
1790 ;; First offset is for the list form itself.
1791 ;; Treat nil as empty list.
1792 (edebug-new-cursor form
(cdr (edebug-top-offset cursor
)))
1794 (edebug-move-cursor cursor
)))
1796 ((and (eq 'vector spec
) (vectorp form
))
1797 ;; Special case: match a vector with the specs.
1798 (let ((result (edebug-match-sublist
1800 form
(cdr (edebug-top-offset cursor
)))
1802 (edebug-move-cursor cursor
)
1803 (list (apply 'vector result
))))
1805 (t (edebug-no-match cursor
"Expected" specs
)))
1809 (defun edebug-match-sublist (cursor specs
)
1810 ;; Match a sublist of specs.
1811 (let (edebug-&optional
1813 ;;edebug-error-point
1816 ;; match with edebug-match-specs so edebug-best-error is not bound.
1817 (edebug-match-specs cursor specs
'edebug-match-specs
)
1818 (if (not (edebug-empty-cursor cursor
))
1819 (if edebug-best-error
1820 (apply 'edebug-no-match cursor edebug-best-error
)
1821 ;; A failed &rest or &optional spec may leave some args.
1822 (edebug-no-match cursor
"Failed matching" specs
)
1826 (defun edebug-match-string (cursor spec
)
1827 (let ((sexp (edebug-top-element-required cursor
"Expected" spec
)))
1828 (if (not (eq (intern spec
) sexp
))
1829 (edebug-no-match cursor
"Expected" spec
)
1830 ;; Since it matched, failure means immediate error, unless &optional.
1831 (setq edebug-gate t
)
1832 (edebug-move-cursor cursor
)
1836 (defun edebug-match-nil (cursor)
1837 ;; There must be nothing left to match a nil.
1838 (if (not (edebug-empty-cursor cursor
))
1839 (edebug-no-match cursor
"Unmatched argument(s)")
1843 (defun edebug-match-function (cursor)
1844 (error "Use function-form instead of function in edebug spec"))
1846 (defun edebug-match-&define
(cursor specs
)
1847 ;; Match a defining form.
1848 ;; Normally, &define is interpreted specially other places.
1849 ;; This should only be called inside of a spec list to match the remainder
1850 ;; of the current list. e.g. ("lambda" &define args def-body)
1851 (edebug-make-form-wrapper
1853 (edebug-before-offset cursor
)
1854 ;; Find the last offset in the list.
1855 (let ((offsets (edebug-cursor-offsets cursor
)))
1856 (while (consp offsets
) (setq offsets
(cdr offsets
)))
1860 (defun edebug-match-lambda-expr (cursor)
1861 ;; The expression must be a function.
1862 ;; This will match any list form that begins with a symbol
1863 ;; that has an edebug-form-spec beginning with &define. In
1864 ;; practice, only lambda expressions should be used.
1865 ;; I could add a &lambda specification to avoid confusion.
1866 (let* ((sexp (edebug-top-element-required
1867 cursor
"Expected lambda expression"))
1868 (offset (edebug-top-offset cursor
))
1869 (head (and (consp sexp
) (car sexp
)))
1870 (spec (and (symbolp head
) (get-edebug-spec head
)))
1871 (edebug-inside-func nil
))
1872 ;; Find out if this is a defining form from first symbol.
1873 (if (and (consp spec
) (eq '&define
(car spec
)))
1876 (edebug-defining-form
1877 (edebug-new-cursor sexp offset
)
1878 (car offset
);; before the sexp
1879 (edebug-after-offset cursor
)
1880 (cons (symbol-name head
) (cdr spec
))))
1881 (edebug-move-cursor cursor
))
1882 (edebug-no-match cursor
"Expected lambda expression")
1886 (defun edebug-match-name (cursor)
1887 ;; Set the edebug-def-name bound in edebug-defining-form.
1888 (let ((name (edebug-top-element-required cursor
"Expected name")))
1889 ;; Maybe strings and numbers could be used.
1890 (if (not (symbolp name
))
1891 (edebug-no-match cursor
"Symbol expected for name of definition"))
1892 (setq edebug-def-name
1894 ;; Construct a new name by appending to previous name.
1895 (intern (format "%s@%s" edebug-def-name name
))
1897 (edebug-move-cursor cursor
)
1900 (defun edebug-match-colon-name (cursor spec
)
1901 ;; Set the edebug-def-name to the spec.
1902 (setq edebug-def-name
1904 ;; Construct a new name by appending to previous name.
1905 (intern (format "%s@%s" edebug-def-name spec
))
1909 (defun edebug-match-arg (cursor)
1910 ;; set the def-args bound in edebug-defining-form
1911 (let ((edebug-arg (edebug-top-element-required cursor
"Expected arg")))
1912 (if (or (not (symbolp edebug-arg
))
1913 (edebug-lambda-list-keywordp edebug-arg
))
1914 (edebug-no-match cursor
"Bad argument:" edebug-arg
))
1915 (edebug-move-cursor cursor
)
1916 (setq edebug-def-args
(cons edebug-arg edebug-def-args
))
1919 (defun edebug-match-def-form (cursor)
1920 ;; Like form but the form is wrapped in edebug-enter form.
1921 ;; The form is assumed to be executing outside of the function context.
1922 ;; This is a hack for now, since a def-form might execute inside as well.
1923 ;; Not to be used otherwise.
1924 (let ((edebug-inside-func nil
))
1925 (list (edebug-make-enter-wrapper (list (edebug-form cursor
))))))
1927 (defun edebug-match-def-body (cursor)
1928 ;; Like body but body is wrapped in edebug-enter form.
1929 ;; The body is assumed to be executing inside of the function context.
1930 ;; Not to be used otherwise.
1931 (let ((edebug-inside-func t
))
1932 (list (edebug-wrap-def-body (edebug-forms cursor
)))))
1935 ;;;; Edebug Form Specs
1936 ;;; ==========================================================
1937 ;;; See cl-specs.el for common lisp specs.
1939 ;;;;* Spec for def-edebug-spec
1942 (defun edebug-spec-p (object)
1943 "Return non-nil if OBJECT is a symbol with an edebug-form-spec property."
1944 (and (symbolp object
)
1945 (get object
'edebug-form-spec
)))
1947 (def-edebug-spec def-edebug-spec
1948 ;; Top level is different from lower levels.
1949 (&define
:name edebug-spec name
1950 &or
"nil" edebug-spec-p
"t" "0" (&rest edebug-spec
)))
1952 (def-edebug-spec edebug-spec-list
1953 ;; A list must have something in it, or it is nil, a symbolp
1954 ((edebug-spec .
[&or nil edebug-spec
])))
1956 (def-edebug-spec edebug-spec
1958 (vector &rest edebug-spec
) ; matches a vector
1959 ("vector" &rest edebug-spec
) ; matches a vector spec
1963 [edebug-lambda-list-keywordp
&rest edebug-spec
]
1964 [keywordp gate edebug-spec
]
1965 edebug-spec-p
;; Including all the special ones e.g. form.
1966 symbolp
;; a predicate
1970 ;;;* Emacs special forms and some functions.
1972 ;; quote expects only one argument, although it allows any number.
1973 (def-edebug-spec quote sexp
)
1975 ;; The standard defining forms.
1976 (def-edebug-spec defconst defvar
)
1977 (def-edebug-spec defvar
(symbolp &optional form stringp
))
1979 (def-edebug-spec defun
1980 (&define name lambda-list
1982 [&optional
("interactive" interactive
)]
1984 (def-edebug-spec defmacro
1985 (&define name lambda-list
[&optional
("declare" &rest sexp
)] def-body
))
1987 (def-edebug-spec arglist lambda-list
) ;; deprecated - use lambda-list.
1989 (def-edebug-spec lambda-list
1991 [&optional
["&optional" arg
&rest arg
]]
1992 &optional
["&rest" arg
]
1995 (def-edebug-spec interactive
1996 (&optional
&or stringp def-form
))
1998 ;; A function-form is for an argument that may be a function or a form.
1999 ;; This specially recognizes anonymous functions quoted with quote.
2000 (def-edebug-spec function-form
2001 ;; form at the end could also handle "function",
2002 ;; but recognize it specially to avoid wrapping function forms.
2003 (&or
([&or
"quote" "function"] &or symbolp lambda-expr
) form
))
2005 ;; function expects a symbol or a lambda or macro expression
2006 ;; A macro is allowed by Emacs.
2007 (def-edebug-spec function
(&or symbolp lambda-expr
))
2009 ;; lambda is a macro in emacs 19.
2010 (def-edebug-spec lambda
(&define lambda-list
2012 [&optional
("interactive" interactive
)]
2015 ;; A macro expression is a lambda expression with "macro" prepended.
2016 (def-edebug-spec macro
(&define
"lambda" lambda-list def-body
))
2018 ;; (def-edebug-spec anonymous-form ((&or ["lambda" lambda] ["macro" macro])))
2020 ;; Standard functions that take function-forms arguments.
2021 (def-edebug-spec mapcar
(function-form form
))
2022 (def-edebug-spec mapconcat
(function-form form form
))
2023 (def-edebug-spec mapatoms
(function-form &optional form
))
2024 (def-edebug-spec apply
(function-form &rest form
))
2025 (def-edebug-spec funcall
(function-form &rest form
))
2027 (def-edebug-spec let
2028 ((&rest
&or
(symbolp &optional form
) symbolp
)
2031 (def-edebug-spec let
* let
)
2033 (def-edebug-spec setq
(&rest symbolp form
))
2034 (def-edebug-spec setq-default setq
)
2036 (def-edebug-spec cond
(&rest
(&rest form
)))
2038 (def-edebug-spec condition-case
2041 &rest
([&or symbolp
(&rest symbolp
)] body
)))
2044 (def-edebug-spec \
` (backquote-form))
2046 ;; Supports quotes inside backquotes,
2047 ;; but only at the top level inside unquotes.
2048 (def-edebug-spec backquote-form
2050 ([&or
"," ",@"] &or
("quote" backquote-form
) form
)
2051 ;; The simple version:
2052 ;; (backquote-form &rest backquote-form)
2053 ;; doesn't handle (a . ,b). The straightforward fix:
2054 ;; (backquote-form . [&or nil backquote-form])
2055 ;; uses up too much stack space.
2056 ;; Note that `(foo . ,@bar) is not legal, so we don't need to handle it.
2057 (backquote-form [&rest
[¬
","] backquote-form
]
2058 .
[&or nil backquote-form
])
2059 ;; If you use dotted forms in backquotes, replace the previous line
2060 ;; with the following. This takes quite a bit more stack space, however.
2061 ;; (backquote-form . [&or nil backquote-form])
2062 (vector &rest backquote-form
)
2065 ;; Special version of backquote that instruments backquoted forms
2066 ;; destined to be evaluated, usually as the result of a
2067 ;; macroexpansion. Backquoted code can only have unquotes (, and ,@)
2068 ;; in places where list forms are allowed, and predicates. If the
2069 ;; backquote is used in a macro, unquoted code that come from
2070 ;; arguments must be instrumented, if at all, with def-form not def-body.
2072 ;; We could assume that all forms (not nested in other forms)
2073 ;; in arguments of macros should be def-forms, whether or not the macros
2074 ;; are defined with edebug-` but this would be expensive.
2076 ;; ,@ might have some problems.
2078 (defalias 'edebug-\
` '\
`) ;; same macro as regular backquote.
2079 (def-edebug-spec edebug-\
` (def-form))
2081 ;; Assume immediate quote in unquotes mean backquote at next higher level.
2082 (def-edebug-spec , (&or
("quote" edebug-\
`) def-form
))
2083 (def-edebug-spec ,@ (&define
;; so (,@ form) is never wrapped.
2084 &or
("quote" edebug-\
`) def-form
))
2086 ;; New byte compiler.
2087 (def-edebug-spec defsubst defun
)
2088 (def-edebug-spec dont-compile t
)
2089 (def-edebug-spec eval-when-compile t
)
2090 (def-edebug-spec eval-and-compile t
)
2092 (def-edebug-spec save-selected-window t
)
2093 (def-edebug-spec save-current-buffer t
)
2094 (def-edebug-spec delay-mode-hooks t
)
2095 (def-edebug-spec with-temp-file t
)
2096 (def-edebug-spec with-temp-message t
)
2097 (def-edebug-spec with-syntax-table t
)
2098 (def-edebug-spec push
(form sexp
))
2099 (def-edebug-spec pop
(sexp))
2101 (def-edebug-spec 1value
(form))
2102 (def-edebug-spec noreturn
(form))
2108 ;; Some miscellaneous specs for macros in public packages.
2111 ;; advice.el by Hans Chalupsky (hans@cs.buffalo.edu)
2113 (def-edebug-spec ad-dolist
((symbolp form
&optional form
) body
))
2114 (def-edebug-spec defadvice
2115 (&define name
;; thing being advised.
2116 (name ;; class is [&or "before" "around" "after"
2117 ;; "activation" "deactivation"]
2118 name
;; name of advice
2119 &rest sexp
;; optional position and flags
2122 [&optional
("interactive" interactive
)]
2125 (def-edebug-spec easy-menu-define
(symbolp body
))
2127 (def-edebug-spec with-custom-print body
)
2129 (def-edebug-spec sregexq
(&rest sexp
))
2130 (def-edebug-spec rx
(&rest sexp
))
2132 ;;; The debugger itself
2134 (defvar edebug-active nil
) ;; Non-nil when edebug is active
2136 ;;; add minor-mode-alist entry
2137 (or (assq 'edebug-active minor-mode-alist
)
2138 (setq minor-mode-alist
(cons (list 'edebug-active
" *Debugging*")
2141 (defvar edebug-stack nil
)
2142 ;; Stack of active functions evaluated via edebug.
2143 ;; Should be nil at the top level.
2145 (defvar edebug-stack-depth -
1)
2146 ;; Index of last edebug-stack item.
2148 (defvar edebug-offset-indices nil
)
2149 ;; Stack of offset indices of visited edebug sexps.
2150 ;; Should be nil at the top level.
2151 ;; Each function adds one cons. Top is modified with setcar.
2154 (defvar edebug-entered nil
2155 ;; Non-nil if edebug has already been entered at this recursive edit level.
2156 ;; This should stay nil at the top level.
2159 ;; Should these be options?
2160 (defconst edebug-debugger
'edebug
2161 ;; Name of function to use for debugging when error or quit occurs.
2162 ;; Set this to 'debug if you want to debug edebug.
2166 ;; Dynamically bound variables, declared globally but left unbound.
2167 (defvar edebug-function
) ; the function being executed. change name!!
2168 (defvar edebug-args
) ; the arguments of the function
2169 (defvar edebug-data
) ; the edebug data for the function
2170 (defvar edebug-value
) ; the result of the expression
2171 (defvar edebug-after-index
)
2172 (defvar edebug-def-mark
) ; the mark for the definition
2173 (defvar edebug-freq-count
) ; the count of expression visits.
2174 (defvar edebug-coverage
) ; the coverage results of each expression of function.
2176 (defvar edebug-buffer
) ; which buffer the function is in.
2177 (defvar edebug-result
) ; the result of the function call returned by body
2178 (defvar edebug-outside-executing-macro
)
2179 (defvar edebug-outside-defining-kbd-macro
)
2181 (defvar edebug-execution-mode
'step
) ; Current edebug mode set by user.
2182 (defvar edebug-next-execution-mode nil
) ; Use once instead of initial mode.
2184 (defvar edebug-outside-debug-on-error
) ; the value of debug-on-error outside
2185 (defvar edebug-outside-debug-on-quit
) ; the value of debug-on-quit outside
2187 (defvar edebug-outside-overriding-local-map
)
2188 (defvar edebug-outside-overriding-terminal-local-map
)
2190 (defvar edebug-outside-pre-command-hook
)
2191 (defvar edebug-outside-post-command-hook
)
2193 (defvar cl-lexical-debug
) ;; Defined in cl.el
2195 ;;; Handling signals
2197 (defun edebug-signal (edebug-signal-name edebug-signal-data
)
2198 "Signal an error. Args are SIGNAL-NAME, and associated DATA.
2199 A signal name is a symbol with an `error-conditions' property
2200 that is a list of condition names.
2201 A handler for any of those names will get to handle this signal.
2202 The symbol `error' should always be one of them.
2204 DATA should be a list. Its elements are printed as part of the error message.
2205 If the signal is handled, DATA is made available to the handler.
2206 See `condition-case'.
2208 This is the Edebug replacement for the standard `signal'. It should
2209 only be active while Edebug is. It checks `debug-on-error' to see
2210 whether it should call the debugger. When execution is resumed, the
2211 error is signaled again."
2212 (if (and (listp debug-on-error
) (memq edebug-signal-name debug-on-error
))
2213 (edebug 'error
(cons edebug-signal-name edebug-signal-data
)))
2214 ;; If we reach here without another non-local exit, then send signal again.
2215 ;; i.e. the signal is not continuable, yet.
2216 ;; Avoid infinite recursion.
2217 (let ((signal-hook-function nil
))
2218 (signal edebug-signal-name edebug-signal-data
)))
2222 (defun edebug-enter (edebug-function edebug-args edebug-body
)
2223 ;; Entering FUNC. The arguments are ARGS, and the body is BODY.
2224 ;; Setup edebug variables and evaluate BODY. This function is called
2225 ;; when a function evaluated with edebug-eval-top-level-form is entered.
2226 ;; Return the result of BODY.
2228 ;; Is this the first time we are entering edebug since
2229 ;; lower-level recursive-edit command?
2230 ;; More precisely, this tests whether Edebug is currently active.
2231 (if (not edebug-entered
)
2232 (let ((edebug-entered t
)
2233 ;; Binding max-lisp-eval-depth here is OK,
2234 ;; but not inside an unwind-protect.
2235 ;; Doing it here also keeps it from growing too large.
2236 (max-lisp-eval-depth (+ 100 max-lisp-eval-depth
)) ; too much??
2237 (max-specpdl-size (+ 200 max-specpdl-size
))
2239 (debugger edebug-debugger
) ; only while edebug is active.
2240 (edebug-outside-debug-on-error debug-on-error
)
2241 (edebug-outside-debug-on-quit debug-on-quit
)
2242 ;; Binding these may not be the right thing to do.
2243 ;; We want to allow the global values to be changed.
2244 (debug-on-error (or debug-on-error edebug-on-error
))
2245 (debug-on-quit edebug-on-quit
)
2247 ;; Lexical bindings must be uncompiled for this to work.
2248 (cl-lexical-debug t
)
2250 (edebug-outside-overriding-local-map overriding-local-map
)
2251 (edebug-outside-overriding-terminal-local-map
2252 overriding-terminal-local-map
)
2254 ;; Save the outside value of executing macro. (here??)
2255 (edebug-outside-executing-macro executing-kbd-macro
)
2256 (edebug-outside-pre-command-hook
2257 (edebug-var-status 'pre-command-hook
))
2258 (edebug-outside-post-command-hook
2259 (edebug-var-status 'post-command-hook
)))
2261 (let (;; Don't keep reading from an executing kbd macro
2262 ;; within edebug unless edebug-continue-kbd-macro is
2263 ;; non-nil. Again, local binding may not be best.
2264 (executing-kbd-macro
2265 (if edebug-continue-kbd-macro executing-kbd-macro
))
2267 ;; Don't get confused by the user's keymap changes.
2268 (overriding-local-map nil
)
2269 (overriding-terminal-local-map nil
)
2271 (signal-hook-function 'edebug-signal
)
2273 ;; Disable command hooks. This is essential when
2274 ;; a hook function is instrumented - to avoid infinite loop.
2275 ;; This may be more than we need, however.
2276 (pre-command-hook nil
)
2277 (post-command-hook nil
))
2278 (setq edebug-execution-mode
(or edebug-next-execution-mode
2280 edebug-execution-mode
)
2281 edebug-next-execution-mode nil
)
2282 (edebug-enter edebug-function edebug-args edebug-body
))
2283 ;; Reset global variables in case outside value was changed.
2284 (setq executing-kbd-macro edebug-outside-executing-macro
)
2285 (edebug-restore-status
2286 'post-command-hook edebug-outside-post-command-hook
)
2287 (edebug-restore-status
2288 'pre-command-hook edebug-outside-pre-command-hook
)))
2290 (let* ((edebug-data (get edebug-function
'edebug
))
2291 (edebug-def-mark (car edebug-data
)) ; mark at def start
2292 (edebug-freq-count (get edebug-function
'edebug-freq-count
))
2293 (edebug-coverage (get edebug-function
'edebug-coverage
))
2294 (edebug-buffer (marker-buffer edebug-def-mark
))
2296 (edebug-stack (cons edebug-function edebug-stack
))
2297 (edebug-offset-indices (cons 0 edebug-offset-indices
))
2299 (if (get edebug-function
'edebug-on-entry
)
2301 (setq edebug-execution-mode
'step
)
2302 (if (eq (get edebug-function
'edebug-on-entry
) 'temp
)
2303 (put edebug-function
'edebug-on-entry nil
))))
2305 (edebug-enter-trace edebug-body
)
2306 (funcall edebug-body
))
2309 (defun edebug-var-status (var)
2310 "Return a cons cell describing the status of VAR's current binding.
2311 The purpose of this function is so you can properly undo
2312 subsequent changes to the same binding, by passing the status
2313 cons cell to `edebug-restore-status'. The status cons cell
2314 has the form (LOCUS . VALUE), where LOCUS can be a buffer
2315 \(for a buffer-local binding), a frame (for a frame-local binding),
2316 or nil (if the default binding is current)."
2317 (cons (variable-binding-locus var
)
2318 (symbol-value var
)))
2320 (defun edebug-restore-status (var status
)
2321 "Reset VAR based on STATUS.
2322 STATUS should be a list you got from `edebug-var-status'."
2323 (let ((locus (car status
))
2324 (value (cdr status
)))
2325 (cond ((bufferp locus
)
2326 (if (buffer-live-p locus
)
2327 (with-current-buffer locus
2330 (modify-frame-parameters locus
(list (cons var value
))))
2334 (defun edebug-enter-trace (edebug-body)
2335 (let ((edebug-stack-depth (1+ edebug-stack-depth
))
2337 (edebug-print-trace-before
2338 (format "%s args: %s" edebug-function edebug-args
))
2339 (prog1 (setq edebug-result
(funcall edebug-body
))
2340 (edebug-print-trace-after
2341 (format "%s result: %s" edebug-function edebug-result
)))))
2343 (def-edebug-spec edebug-tracing
(form body
))
2345 (defmacro edebug-tracing
(msg &rest body
)
2346 "Print MSG in *edebug-trace* before and after evaluating BODY.
2347 The result of BODY is also printed."
2348 `(let ((edebug-stack-depth (1+ edebug-stack-depth
))
2350 (edebug-print-trace-before ,msg
)
2351 (prog1 (setq edebug-result
(progn ,@body
))
2352 (edebug-print-trace-after
2353 (format "%s result: %s" ,msg edebug-result
)))))
2355 (defun edebug-print-trace-before (msg)
2356 "Function called to print trace info before expression evaluation.
2357 MSG is printed after `::::{ '."
2358 (edebug-trace-display
2359 edebug-trace-buffer
"%s{ %s" (make-string edebug-stack-depth ?\
:) msg
))
2361 (defun edebug-print-trace-after (msg)
2362 "Function called to print trace info after expression evaluation.
2363 MSG is printed after `::::} '."
2364 (edebug-trace-display
2365 edebug-trace-buffer
"%s} %s" (make-string edebug-stack-depth ?\
:) msg
))
2369 (defun edebug-slow-before (edebug-before-index)
2370 ;; Debug current function given BEFORE position.
2371 ;; Called from functions compiled with edebug-eval-top-level-form.
2372 ;; Return the before index.
2373 (setcar edebug-offset-indices edebug-before-index
)
2375 ;; Increment frequency count
2376 (aset edebug-freq-count edebug-before-index
2377 (1+ (aref edebug-freq-count edebug-before-index
)))
2379 (if (or (not (memq edebug-execution-mode
'(Go-nonstop next
)))
2380 (edebug-input-pending-p))
2381 (edebug-debugger edebug-before-index
'before nil
))
2382 edebug-before-index
)
2384 (defun edebug-fast-before (edebug-before-index)
2388 (defun edebug-slow-after (edebug-before-index edebug-after-index edebug-value
)
2389 ;; Debug current function given AFTER position and VALUE.
2390 ;; Called from functions compiled with edebug-eval-top-level-form.
2392 (setcar edebug-offset-indices edebug-after-index
)
2394 ;; Increment frequency count
2395 (aset edebug-freq-count edebug-after-index
2396 (1+ (aref edebug-freq-count edebug-after-index
)))
2397 (if edebug-test-coverage
(edebug-update-coverage))
2399 (if (and (eq edebug-execution-mode
'Go-nonstop
)
2400 (not (edebug-input-pending-p)))
2401 ;; Just return result.
2403 (edebug-debugger edebug-after-index
'after edebug-value
)
2406 (defun edebug-fast-after (edebug-before-index edebug-after-index edebug-value
)
2407 ;; Do nothing but return the value.
2410 (defun edebug-run-slow ()
2411 (defalias 'edebug-before
'edebug-slow-before
)
2412 (defalias 'edebug-after
'edebug-slow-after
))
2414 ;; This is not used, yet.
2415 (defun edebug-run-fast ()
2416 (defalias 'edebug-before
'edebug-fast-before
)
2417 (defalias 'edebug-after
'edebug-fast-after
))
2422 (defun edebug-update-coverage ()
2423 (let ((old-result (aref edebug-coverage edebug-after-index
)))
2425 ((eq 'ok-coverage old-result
))
2426 ((eq 'unknown old-result
)
2427 (aset edebug-coverage edebug-after-index edebug-value
))
2428 ;; Test if a different result.
2429 ((not (eq edebug-value old-result
))
2430 (aset edebug-coverage edebug-after-index
'ok-coverage
)))))
2433 ;; Dynamically declared unbound variables.
2434 (defvar edebug-arg-mode
) ; the mode, either before, after, or error
2435 (defvar edebug-breakpoints
)
2436 (defvar edebug-break-data
) ; break data for current function.
2437 (defvar edebug-break
) ; whether a break occurred.
2438 (defvar edebug-global-break
) ; whether a global break occurred.
2439 (defvar edebug-break-condition
) ; whether the breakpoint is conditional.
2441 (defvar edebug-break-result nil
)
2442 (defvar edebug-global-break-result nil
)
2445 (defun edebug-debugger (edebug-offset-index edebug-arg-mode edebug-value
)
2446 (if inhibit-redisplay
2447 ;; Don't really try to enter edebug within an eval from redisplay.
2449 ;; Check breakpoints and pending input.
2450 ;; If edebug display should be updated, call edebug-display.
2451 ;; Return edebug-value.
2452 (let* ( ;; This needs to be here since breakpoints may be changed.
2453 (edebug-breakpoints (car (cdr edebug-data
))) ; list of breakpoints
2454 (edebug-break-data (assq edebug-offset-index edebug-breakpoints
))
2455 (edebug-break-condition (car (cdr edebug-break-data
)))
2456 (edebug-global-break
2457 (if edebug-global-break-condition
2459 (setq edebug-global-break-result
2460 (eval edebug-global-break-condition
))
2464 ;;; (edebug-trace "exp: %s" edebug-value)
2465 ;; Test whether we should break.
2467 (or edebug-global-break
2468 (and edebug-break-data
2469 (or (not edebug-break-condition
)
2470 (setq edebug-break-result
2471 (eval edebug-break-condition
))))))
2472 (if (and edebug-break
2473 (nth 2 edebug-break-data
)) ; is it temporary?
2474 ;; Delete the breakpoint.
2476 (cons (delq edebug-break-data edebug-breakpoints
)
2477 (cdr (cdr edebug-data
)))))
2479 ;; Display if mode is not go, continue, or Continue-fast
2480 ;; or break, or input is pending,
2481 (if (or (not (memq edebug-execution-mode
'(go continue Continue-fast
)))
2483 (edebug-input-pending-p))
2484 (edebug-display)) ; <--------------- display
2490 ;; window-start now stored with each function.
2491 ;;(defvar edebug-window-start nil)
2492 ;; Remember where each buffers' window starts between edebug calls.
2493 ;; This is to avoid spurious recentering.
2494 ;; Does this still need to be buffer-local??
2495 ;;(setq-default edebug-window-start nil)
2496 ;;(make-variable-buffer-local 'edebug-window-start)
2499 ;; Dynamically declared unbound vars
2500 (defvar edebug-point
) ; the point in edebug buffer
2501 (defvar edebug-outside-buffer
) ; the current-buffer outside of edebug
2502 (defvar edebug-outside-point
) ; the point outside of edebug
2503 (defvar edebug-outside-mark
) ; the mark outside of edebug
2504 (defvar edebug-window-data
) ; window and window-start for current function
2505 (defvar edebug-outside-windows
) ; outside window configuration
2506 (defvar edebug-eval-buffer
) ; for the evaluation list.
2507 (defvar edebug-outside-o-a-p
) ; outside overlay-arrow-position
2508 (defvar edebug-outside-o-a-s
) ; outside overlay-arrow-string
2509 (defvar edebug-outside-c-i-e-a
) ; outside cursor-in-echo-area
2511 (defvar edebug-eval-list nil
) ;; List of expressions to evaluate.
2513 (defvar edebug-previous-result nil
) ;; Last result returned.
2515 ;; Emacs 19 adds an arg to mark and mark-marker.
2516 (defalias 'edebug-mark-marker
'mark-marker
)
2519 (defun edebug-display ()
2520 (unless (marker-position edebug-def-mark
)
2521 ;; The buffer holding the source has been killed.
2522 ;; Let's at least show a backtrace so the user can figure out
2523 ;; which function we're talking about.
2525 ;; Setup windows for edebug, determine mode, maybe enter recursive-edit.
2526 ;; Uses local variables of edebug-enter, edebug-before, edebug-after
2527 ;; and edebug-debugger.
2528 (let ((edebug-active t
) ; for minor mode alist
2529 edebug-stop
; should we enter recursive-edit
2530 (edebug-point (+ edebug-def-mark
2531 (aref (nth 2 edebug-data
) edebug-offset-index
)))
2532 edebug-buffer-outside-point
; current point in edebug-buffer
2533 ;; window displaying edebug-buffer
2534 (edebug-window-data (nth 3 edebug-data
))
2535 (edebug-outside-window (selected-window))
2536 (edebug-outside-buffer (current-buffer))
2537 (edebug-outside-point (point))
2538 (edebug-outside-mark (edebug-mark))
2539 edebug-outside-windows
; window or screen configuration
2540 edebug-buffer-points
2542 edebug-eval-buffer
; declared here so we can kill it below
2543 (edebug-eval-result-list (and edebug-eval-list
2544 (edebug-eval-result-list)))
2546 edebug-trace-window-start
2548 (edebug-outside-o-a-p overlay-arrow-position
)
2549 (edebug-outside-o-a-s overlay-arrow-string
)
2550 (edebug-outside-c-i-e-a cursor-in-echo-area
))
2552 (let ((overlay-arrow-position overlay-arrow-position
)
2553 (overlay-arrow-string overlay-arrow-string
)
2554 (cursor-in-echo-area nil
)
2557 (if (not (buffer-name edebug-buffer
))
2558 (let ((debug-on-error nil
))
2559 (error "Buffer defining %s not found" edebug-function
)))
2561 (if (eq 'after edebug-arg-mode
)
2562 ;; Compute result string now before windows are modified.
2563 (edebug-compute-previous-result edebug-value
))
2565 (if edebug-save-windows
2566 ;; Save windows now before we modify them.
2567 (setq edebug-outside-windows
2568 (edebug-current-windows edebug-save-windows
)))
2570 (if edebug-save-displayed-buffer-points
2571 (setq edebug-buffer-points
(edebug-get-displayed-buffer-points)))
2573 ;; First move the edebug buffer point to edebug-point
2574 ;; so that window start doesn't get changed when we display it.
2575 ;; I don't know if this is going to help.
2576 ;;(set-buffer edebug-buffer)
2577 ;;(goto-char edebug-point)
2579 ;; If edebug-buffer is not currently displayed,
2580 ;; first find a window for it.
2581 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
))
2582 (setcar edebug-window-data
(selected-window))
2584 ;; Now display eval list, if any.
2585 ;; This is done after the pop to edebug-buffer
2586 ;; so that buffer-window correspondence is correct after quitting.
2587 (edebug-eval-display edebug-eval-result-list
)
2588 ;; The evaluation list better not have deleted edebug-window-data.
2589 (select-window (car edebug-window-data
))
2590 (set-buffer edebug-buffer
)
2592 (setq edebug-buffer-outside-point
(point))
2593 (goto-char edebug-point
)
2595 (if (eq 'before edebug-arg-mode
)
2596 ;; Check whether positions are up-to-date.
2597 ;; This assumes point is never before symbol.
2598 (if (not (memq (following-char) '(?\
( ?\
# ?\
` )))
2599 (let ((debug-on-error nil
))
2600 (error "Source has changed - reevaluate definition of %s"
2604 (setcdr edebug-window-data
2605 (edebug-adjust-window (cdr edebug-window-data
)))
2607 ;; Test if there is input, not including keyboard macros.
2608 (if (edebug-input-pending-p)
2610 (setq edebug-execution-mode
'step
2613 ;; (discard-input) ; is this unfriendly??
2615 ;; Now display arrow based on mode.
2616 (edebug-overlay-arrow)
2619 ((eq 'error edebug-arg-mode
)
2620 ;; Display error message
2621 (setq edebug-execution-mode
'step
)
2622 (edebug-overlay-arrow)
2624 (if (eq 'quit
(car edebug-value
))
2626 (edebug-report-error edebug-value
)))
2629 (edebug-global-break
2630 (message "Global Break: %s => %s"
2631 edebug-global-break-condition
2632 edebug-global-break-result
))
2633 (edebug-break-condition
2634 (message "Break: %s => %s"
2635 edebug-break-condition
2636 edebug-break-result
))
2637 ((not (eq edebug-execution-mode
'Continue-fast
))
2643 (if (eq 'after edebug-arg-mode
)
2645 ;; Display result of previous evaluation.
2646 (if (and edebug-break
2647 (not (eq edebug-execution-mode
'Continue-fast
)))
2648 (sit-for 1)) ; Show break message.
2649 (edebug-previous-result)))
2654 ((eq edebug-execution-mode
'continue
) (edebug-sit-for 1))
2655 ((eq edebug-execution-mode
'Continue-fast
) (edebug-sit-for 0))
2656 (t (setq edebug-stop t
))))
2658 ((eq edebug-execution-mode
'trace
)
2659 (edebug-sit-for edebug-sit-for-seconds
)) ; Force update and pause.
2660 ((eq edebug-execution-mode
'Trace-fast
)
2661 (edebug-sit-for 0)) ; Force update and continue.
2666 (memq edebug-execution-mode
'(step next
))
2667 (eq edebug-arg-mode
'error
))
2669 ;; (setq edebug-execution-mode 'step)
2670 ;; (edebug-overlay-arrow) ; This doesn't always show up.
2671 (edebug-recursive-edit))) ; <---------- Recursive edit
2673 ;; Reset the edebug-window-data to whatever it is now.
2674 (let ((window (if (eq (window-buffer) edebug-buffer
)
2676 (edebug-get-buffer-window edebug-buffer
))))
2677 ;; Remember window-start for edebug-buffer, if still displayed.
2680 (setcar edebug-window-data window
)
2681 (setcdr edebug-window-data
(window-start window
)))))
2683 ;; Save trace window point before restoring outside windows.
2684 ;; Could generalize this for other buffers.
2685 (setq edebug-trace-window
(get-buffer-window edebug-trace-buffer
))
2686 (if edebug-trace-window
2687 (setq edebug-trace-window-start
2688 (and edebug-trace-window
2689 (window-start edebug-trace-window
))))
2691 ;; Restore windows before continuing.
2692 (if edebug-save-windows
2694 (edebug-set-windows edebug-outside-windows
)
2696 ;; Restore displayed buffer points.
2697 ;; Needed even if restoring windows because
2698 ;; window-points are not restored. (should they be??)
2699 (if edebug-save-displayed-buffer-points
2700 (edebug-set-buffer-points edebug-buffer-points
))
2702 ;; Unrestore trace window's window-point.
2703 (if edebug-trace-window
2704 (set-window-start edebug-trace-window
2705 edebug-trace-window-start
))
2707 ;; Unrestore edebug-buffer's window-start, if displayed.
2708 (let ((window (car edebug-window-data
)))
2709 (if (and window
(edebug-window-live-p window
)
2710 (eq (window-buffer) edebug-buffer
))
2712 (set-window-start window
(cdr edebug-window-data
)
2714 ;; Unrestore edebug-buffer's window-point.
2715 ;; Needed in addition to setting the buffer point
2716 ;; - otherwise quitting doesn't leave point as is.
2717 ;; But this causes point to not be restored at times.
2718 ;; Also, it may not be a visible window.
2719 ;; (set-window-point window edebug-point)
2722 ;; Unrestore edebug-buffer's point. Rerestored below.
2723 ;; (goto-char edebug-point) ;; in edebug-buffer
2725 ;; Since we may be in a save-excursion, in case of quit,
2726 ;; reselect the outside window only.
2727 ;; Only needed if we are not recovering windows??
2728 (if (edebug-window-live-p edebug-outside-window
)
2729 (select-window edebug-outside-window
))
2730 ) ; if edebug-save-windows
2732 ;; Restore current buffer always, in case application needs it.
2733 (set-buffer edebug-outside-buffer
)
2734 ;; Restore point, and mark.
2735 ;; Needed even if restoring windows because
2736 ;; that doesn't restore point and mark in the current buffer.
2737 ;; But don't restore point if edebug-buffer is current buffer.
2738 (if (not (eq edebug-buffer edebug-outside-buffer
))
2739 (goto-char edebug-outside-point
))
2740 (if (marker-buffer (edebug-mark-marker))
2741 ;; Does zmacs-regions need to be nil while doing set-marker?
2742 (set-marker (edebug-mark-marker) edebug-outside-mark
))
2744 ;; None of the following is done if quit or signal occurs.
2746 ;; Restore edebug-buffer's outside point.
2747 ;; (edebug-trace "restore edebug-buffer point: %s"
2748 ;; edebug-buffer-outside-point)
2749 (let ((current-buffer (current-buffer)))
2750 (set-buffer edebug-buffer
)
2751 (goto-char edebug-buffer-outside-point
)
2752 (set-buffer current-buffer
))
2753 ;; ... nothing more.
2755 ;; Reset global variables to outside values in case they were changed.
2757 overlay-arrow-position edebug-outside-o-a-p
2758 overlay-arrow-string edebug-outside-o-a-s
2759 cursor-in-echo-area edebug-outside-c-i-e-a
)
2763 (defvar edebug-number-of-recursions
0)
2764 ;; Number of recursive edits started by edebug.
2765 ;; Should be 0 at the top level.
2767 (defvar edebug-recursion-depth
0)
2768 ;; Value of recursion-depth when edebug was called.
2770 ;; Dynamically declared unbound vars
2771 (defvar edebug-outside-match-data
) ; match data outside of edebug
2772 (defvar edebug-backtrace-buffer
) ; each recursive edit gets its own
2773 (defvar edebug-inside-windows
)
2774 (defvar edebug-interactive-p
)
2776 (defvar edebug-outside-map
)
2777 (defvar edebug-outside-standard-output
)
2778 (defvar edebug-outside-standard-input
)
2779 (defvar edebug-outside-current-prefix-arg
)
2780 (defvar edebug-outside-last-command-char
)
2781 (defvar edebug-outside-last-command
)
2782 (defvar edebug-outside-this-command
)
2783 (defvar edebug-outside-last-input-char
)
2785 ;; Note: here we have defvars for variables that are
2786 ;; built-in in certain versions.
2787 ;; Each defvar makes a difference
2788 ;; in versions where the variable is *not* built-in.
2791 (defvar edebug-outside-unread-command-char
)
2794 (defvar edebug-outside-last-command-event
)
2795 (defvar edebug-outside-unread-command-events
)
2796 (defvar edebug-outside-last-input-event
)
2797 (defvar edebug-outside-last-event-frame
)
2798 (defvar edebug-outside-last-nonmenu-event
)
2799 (defvar edebug-outside-track-mouse
)
2801 ;; Disable byte compiler warnings about unread-command-char and -event
2802 ;; (maybe works with byte-compile-version 2.22 at least)
2803 (defvar edebug-unread-command-char-warning
)
2804 (defvar edebug-unread-command-event-warning
)
2806 (setq edebug-unread-command-char-warning
2807 (get 'unread-command-char
'byte-obsolete-variable
))
2808 (put 'unread-command-char
'byte-obsolete-variable nil
))
2810 (defun edebug-recursive-edit ()
2811 ;; Start up a recursive edit inside of edebug.
2812 ;; The current buffer is the edebug-buffer, which is put into edebug-mode.
2813 ;; Assume that none of the variables below are buffer-local.
2814 (let ((edebug-buffer-read-only buffer-read-only
)
2815 ;; match-data must be done in the outside buffer
2816 (edebug-outside-match-data
2817 (save-excursion ; might be unnecessary now??
2818 (set-buffer edebug-outside-buffer
) ; in case match buffer different
2821 ;;(edebug-number-of-recursions (1+ edebug-number-of-recursions))
2822 (edebug-recursion-depth (recursion-depth))
2823 edebug-entered
; bind locally to nil
2824 (edebug-interactive-p nil
) ; again non-interactive
2825 edebug-backtrace-buffer
; each recursive edit gets its own
2826 ;; The window configuration may be saved and restored
2827 ;; during a recursive-edit
2828 edebug-inside-windows
2830 (edebug-outside-map (current-local-map))
2832 (edebug-outside-standard-output standard-output
)
2833 (edebug-outside-standard-input standard-input
)
2834 (edebug-outside-defining-kbd-macro defining-kbd-macro
)
2836 (edebug-outside-last-command-char last-command-char
)
2837 (edebug-outside-last-command last-command
)
2838 (edebug-outside-this-command this-command
)
2839 (edebug-outside-last-input-char last-input-char
)
2841 (edebug-outside-unread-command-char unread-command-char
)
2842 (edebug-outside-current-prefix-arg current-prefix-arg
)
2844 (edebug-outside-last-input-event last-input-event
)
2845 (edebug-outside-last-command-event last-command-event
)
2846 (edebug-outside-unread-command-events unread-command-events
)
2847 (edebug-outside-last-event-frame last-event-frame
)
2848 (edebug-outside-last-nonmenu-event last-nonmenu-event
)
2849 (edebug-outside-track-mouse track-mouse
)
2854 ;; Declare global values local but using the same global value.
2855 ;; We could set these to the values for previous edebug call.
2856 (last-command-char last-command-char
)
2857 (last-command last-command
)
2858 (this-command this-command
)
2859 (last-input-char last-input-char
)
2861 ;; Assume no edebug command sets unread-command-char.
2862 (unread-command-char -
1)
2863 (current-prefix-arg nil
)
2865 ;; More for Emacs 19
2866 (last-input-event nil
)
2867 (last-command-event nil
)
2868 (unread-command-events nil
)
2869 (last-event-frame nil
)
2870 (last-nonmenu-event nil
)
2873 ;; Bind again to outside values.
2874 (debug-on-error edebug-outside-debug-on-error
)
2875 (debug-on-quit edebug-outside-debug-on-quit
)
2877 ;; Don't keep defining a kbd macro.
2879 (if edebug-continue-kbd-macro defining-kbd-macro
))
2884 (if (and (eq edebug-execution-mode
'go
)
2885 (not (memq edebug-arg-mode
'(after error
))))
2888 (setq buffer-read-only t
)
2889 (setq signal-hook-function nil
)
2893 (recursive-edit) ; <<<<<<<<<< Recursive edit
2895 ;; Do the following, even if quit occurs.
2896 (setq signal-hook-function
'edebug-signal
)
2897 (if edebug-backtrace-buffer
2898 (kill-buffer edebug-backtrace-buffer
))
2899 ;; Could be an option to keep eval display up.
2900 (if edebug-eval-buffer
(kill-buffer edebug-eval-buffer
))
2902 ;; Remember selected-window after recursive-edit.
2903 ;; (setq edebug-inside-window (selected-window))
2905 (set-match-data edebug-outside-match-data
)
2907 ;; Recursive edit may have changed buffers,
2908 ;; so set it back before exiting let.
2909 (if (buffer-name edebug-buffer
) ; if it still exists
2911 (set-buffer edebug-buffer
)
2912 (if (memq edebug-execution-mode
'(go Go-nonstop
))
2913 (edebug-overlay-arrow))
2914 (setq buffer-read-only edebug-buffer-read-only
)
2915 (use-local-map edebug-outside-map
)
2917 ;; gotta have a buffer to let its buffer local variables be set
2918 (get-buffer-create " bogus edebug buffer"))
2921 ;; Reset global vars to outside values, in case they have been changed.
2923 last-command-char edebug-outside-last-command-char
2924 last-command-event edebug-outside-last-command-event
2925 last-command edebug-outside-last-command
2926 this-command edebug-outside-this-command
2927 unread-command-char edebug-outside-unread-command-char
2928 unread-command-events edebug-outside-unread-command-events
2929 current-prefix-arg edebug-outside-current-prefix-arg
2930 last-input-char edebug-outside-last-input-char
2931 last-input-event edebug-outside-last-input-event
2932 last-event-frame edebug-outside-last-event-frame
2933 last-nonmenu-event edebug-outside-last-nonmenu-event
2934 track-mouse edebug-outside-track-mouse
2936 standard-output edebug-outside-standard-output
2937 standard-input edebug-outside-standard-input
2938 defining-kbd-macro edebug-outside-defining-kbd-macro
2943 ;;; Display related functions
2945 (defun edebug-adjust-window (old-start)
2946 ;; If pos is not visible, adjust current window to fit following context.
2947 ;;; (message "window: %s old-start: %s window-start: %s pos: %s"
2948 ;;; (selected-window) old-start (window-start) (point)) (sit-for 5)
2949 (if (not (pos-visible-in-window-p))
2951 ;; First try old-start
2953 (set-window-start (selected-window) old-start
))
2954 (if (not (pos-visible-in-window-p))
2956 ;; (message "resetting window start") (sit-for 2)
2961 (if (< (point) (window-start)) -
1 ; one line before if in back
2962 (- (/ (window-height) 2)) ; center the line moving forward
2970 (defconst edebug-arrow-alist
2971 '((Continue-fast .
"=")
2978 (Go-nonstop .
"..") ; not used
2980 "Association list of arrows for each edebug mode.")
2982 (defun edebug-overlay-arrow ()
2983 ;; Set up the overlay arrow at beginning-of-line in current buffer.
2984 ;; The arrow string is derived from edebug-arrow-alist and
2985 ;; edebug-execution-mode.
2986 (let ((pos (save-excursion (beginning-of-line) (point))))
2987 (setq overlay-arrow-string
2988 (cdr (assq edebug-execution-mode edebug-arrow-alist
)))
2989 (setq overlay-arrow-position
(make-marker))
2990 (set-marker overlay-arrow-position pos
(current-buffer))))
2993 (defun edebug-toggle-save-all-windows ()
2994 "Toggle the saving and restoring of all windows.
2995 Also, each time you toggle it on, the inside and outside window
2996 configurations become the same as the current configuration."
2998 (setq edebug-save-windows
(not edebug-save-windows
))
2999 (if edebug-save-windows
3000 (setq edebug-inside-windows
3001 (setq edebug-outside-windows
3002 (edebug-current-windows
3003 edebug-save-windows
))))
3004 (message "Window saving is %s for all windows."
3005 (if edebug-save-windows
"on" "off")))
3007 (defmacro edebug-changing-windows
(&rest body
)
3008 `(let ((window (selected-window)))
3009 (setq edebug-inside-windows
(edebug-current-windows t
))
3010 (edebug-set-windows edebug-outside-windows
)
3011 ,@body
;; Code to change edebug-save-windows
3012 (setq edebug-outside-windows
(edebug-current-windows
3013 edebug-save-windows
))
3014 ;; Problem: what about outside windows that are deleted inside?
3015 (edebug-set-windows edebug-inside-windows
)))
3017 (defun edebug-toggle-save-selected-window ()
3018 "Toggle the saving and restoring of the selected window.
3019 Also, each time you toggle it on, the inside and outside window
3020 configurations become the same as the current configuration."
3023 ((eq t edebug-save-windows
)
3024 ;; Save all outside windows except the selected one.
3025 ;; Remove (selected-window) from outside-windows.
3026 (edebug-changing-windows
3027 (setq edebug-save-windows
(delq window
(edebug-window-list)))))
3029 ((memq (selected-window) edebug-save-windows
)
3030 (setq edebug-outside-windows
3031 (delq (assq (selected-window) edebug-outside-windows
)
3032 edebug-outside-windows
))
3033 (setq edebug-save-windows
3034 (delq (selected-window) edebug-save-windows
)))
3035 (t ; Save a new window.
3036 (edebug-changing-windows
3037 (setq edebug-save-windows
(cons window edebug-save-windows
)))))
3039 (message "Window saving is %s for %s."
3040 (if (memq (selected-window) edebug-save-windows
)
3044 (defun edebug-toggle-save-windows (arg)
3045 "Toggle the saving and restoring of windows.
3046 With prefix, toggle for just the selected window.
3047 Otherwise, toggle for all windows."
3050 (edebug-toggle-save-selected-window)
3051 (edebug-toggle-save-all-windows)))
3054 (defun edebug-where ()
3055 "Show the debug windows and where we stopped in the program."
3057 (if (not edebug-active
)
3058 (error "Edebug is not active"))
3059 ;; Restore the window configuration to what it last was inside.
3060 ;; But it is not always set. - experiment
3061 ;;(if edebug-inside-windows
3062 ;; (edebug-set-windows edebug-inside-windows))
3063 (edebug-pop-to-buffer edebug-buffer
)
3064 (goto-char edebug-point
))
3066 (defun edebug-view-outside ()
3067 "Change to the outside window configuration."
3069 (if (not edebug-active
)
3070 (error "Edebug is not active"))
3071 (setq edebug-inside-windows
3072 (edebug-current-windows edebug-save-windows
))
3073 (edebug-set-windows edebug-outside-windows
)
3074 (goto-char edebug-outside-point
)
3075 (message "Window configuration outside of Edebug. Return with %s"
3076 (substitute-command-keys "\\<global-map>\\[edebug-where]")))
3079 (defun edebug-bounce-point (arg)
3080 "Bounce the point in the outside current buffer.
3081 If prefix arg is supplied, sit for that many seconds before returning.
3082 The default is one second."
3084 (if (not edebug-active
)
3085 (error "Edebug is not active"))
3087 ;; If the buffer's currently displayed, avoid set-window-configuration.
3088 (save-window-excursion
3089 (edebug-pop-to-buffer edebug-outside-buffer
)
3090 (goto-char edebug-outside-point
)
3091 (message "Current buffer: %s Point: %s Mark: %s"
3092 (current-buffer) (point)
3093 (if (marker-buffer (edebug-mark-marker))
3094 (marker-position (edebug-mark-marker)) "<not set>"))
3095 (edebug-sit-for arg
)
3096 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
)))))
3099 ;; Joe Wells, here is a start at your idea of adding a buffer to the internal
3100 ;; display list. Still need to use this list in edebug-display.
3102 '(defvar edebug-display-buffer-list nil
3103 "List of buffers that edebug will display when it is active.")
3105 '(defun edebug-display-buffer (buffer)
3106 "Toggle display of a buffer inside of edebug."
3107 (interactive "bBuffer: ")
3108 (let ((already-displaying (memq buffer edebug-display-buffer-list
)))
3109 (setq edebug-display-buffer-list
3110 (if already-displaying
3111 (delq buffer edebug-display-buffer-list
)
3112 (cons buffer edebug-display-buffer-list
)))
3113 (message "Displaying %s %s" buffer
3114 (if already-displaying
"off" "on"))))
3116 ;;; Breakpoint related functions
3118 (defun edebug-find-stop-point ()
3119 ;; Return (function . index) of the nearest edebug stop point.
3120 (let* ((edebug-def-name (edebug-form-data-symbol))
3122 (let ((data (get edebug-def-name
'edebug
)))
3123 (if (or (null data
) (markerp data
))
3124 (error "%s is not instrumented for Edebug" edebug-def-name
))
3125 data
)) ; we could do it automatically, if data is a marker.
3126 ;; pull out parts of edebug-data.
3127 (edebug-def-mark (car edebug-data
))
3128 ;; (edebug-breakpoints (car (cdr edebug-data)))
3130 (offset-vector (nth 2 edebug-data
))
3131 (offset (- (save-excursion
3132 (if (looking-at "[ \t]")
3133 ;; skip backwards until non-whitespace, or bol
3134 (skip-chars-backward " \t"))
3138 ;; the offsets are in order so we can do a linear search
3139 (setq len
(length offset-vector
))
3141 (while (and (< i len
) (> offset
(aref offset-vector i
)))
3144 (<= offset
(aref offset-vector i
)))
3145 ;; return the relevant info
3146 (cons edebug-def-name i
)
3147 (message "Point is not on an expression in %s."
3152 (defun edebug-next-breakpoint ()
3153 "Move point to the next breakpoint, or first if none past point."
3155 (let ((edebug-stop-point (edebug-find-stop-point)))
3156 (if edebug-stop-point
3157 (let* ((edebug-def-name (car edebug-stop-point
))
3158 (index (cdr edebug-stop-point
))
3159 (edebug-data (get edebug-def-name
'edebug
))
3161 ;; pull out parts of edebug-data
3162 (edebug-def-mark (car edebug-data
))
3163 (edebug-breakpoints (car (cdr edebug-data
)))
3164 (offset-vector (nth 2 edebug-data
))
3166 (if (not edebug-breakpoints
)
3167 (message "No breakpoints in this function.")
3168 (let ((breaks edebug-breakpoints
))
3170 (<= (car (car breaks
)) index
))
3171 (setq breaks
(cdr breaks
)))
3175 ;; goto the first breakpoint
3176 (car edebug-breakpoints
)))
3177 (goto-char (+ edebug-def-mark
3178 (aref offset-vector
(car breakpoint
))))
3181 (concat (if (nth 2 breakpoint
)
3183 (if (car (cdr breakpoint
))
3184 (format "Condition: %s"
3185 (edebug-safe-prin1-to-string
3186 (car (cdr breakpoint
))))
3191 (defun edebug-modify-breakpoint (flag &optional condition temporary
)
3192 "Modify the breakpoint for the form at point or after it according
3193 to FLAG: set if t, clear if nil. Then move to that point.
3194 If CONDITION or TEMPORARY are non-nil, add those attributes to
3196 (let ((edebug-stop-point (edebug-find-stop-point)))
3197 (if edebug-stop-point
3198 (let* ((edebug-def-name (car edebug-stop-point
))
3199 (index (cdr edebug-stop-point
))
3200 (edebug-data (get edebug-def-name
'edebug
))
3202 ;; pull out parts of edebug-data
3203 (edebug-def-mark (car edebug-data
))
3204 (edebug-breakpoints (car (cdr edebug-data
)))
3205 (offset-vector (nth 2 edebug-data
))
3207 ;; delete it either way
3208 (setq present
(assq index edebug-breakpoints
))
3209 (setq edebug-breakpoints
(delq present edebug-breakpoints
))
3212 ;; add it to the list and resort
3213 (setq edebug-breakpoints
3216 (list index condition temporary
)
3217 edebug-breakpoints
) '<))
3219 (message "Breakpoint set in %s with condition: %s"
3220 edebug-def-name condition
)
3221 (message "Breakpoint set in %s" edebug-def-name
)))
3223 (message "Breakpoint unset in %s" edebug-def-name
)
3224 (message "No breakpoint here")))
3226 (setcar (cdr edebug-data
) edebug-breakpoints
)
3227 (goto-char (+ edebug-def-mark
(aref offset-vector index
)))
3230 (defun edebug-set-breakpoint (arg)
3231 "Set the breakpoint of nearest sexp.
3232 With prefix argument, make it a temporary breakpoint."
3234 (edebug-modify-breakpoint t nil arg
))
3236 (defun edebug-unset-breakpoint ()
3237 "Clear the breakpoint of nearest sexp."
3239 (edebug-modify-breakpoint nil
))
3242 (defun edebug-set-global-break-condition (expression)
3245 (let ((initial (and edebug-global-break-condition
3246 (format "%s" edebug-global-break-condition
))))
3247 (read-from-minibuffer
3248 "Global Condition: " initial read-expression-map t
3249 (if (equal (car read-expression-history
) initial
)
3250 '(read-expression-history .
1)
3251 'read-expression-history
)))))
3252 (setq edebug-global-break-condition expression
))
3255 ;;; Mode switching functions
3257 (defun edebug-set-mode (mode shortmsg msg
)
3258 ;; Set the edebug mode to MODE.
3259 ;; Display SHORTMSG, or MSG if not within edebug.
3260 (if (eq (1+ edebug-recursion-depth
) (recursion-depth))
3262 (setq edebug-execution-mode mode
)
3264 ;; Continue execution
3265 (exit-recursive-edit))
3266 ;; This is not terribly useful!!
3267 (setq edebug-next-execution-mode mode
)
3271 (defalias 'edebug-step-through-mode
'edebug-step-mode
)
3273 (defun edebug-step-mode ()
3274 "Proceed to next stop point."
3276 (edebug-set-mode 'step
"" "Edebug will stop at next stop point."))
3278 (defun edebug-next-mode ()
3279 "Proceed to next `after' stop point."
3281 (edebug-set-mode 'next
"" "Edebug will stop after next eval."))
3283 (defun edebug-go-mode (arg)
3284 "Go, evaluating until break.
3285 With prefix ARG, set temporary break at current point and go."
3288 (edebug-set-breakpoint t
))
3289 (edebug-set-mode 'go
"Go..." "Edebug will go until break."))
3291 (defun edebug-Go-nonstop-mode ()
3292 "Go, evaluating without debugging."
3294 (edebug-set-mode 'Go-nonstop
"Go-Nonstop..."
3295 "Edebug will not stop at breaks."))
3298 (defun edebug-trace-mode ()
3301 (edebug-set-mode 'trace
"Tracing..." "Edebug will trace with pause."))
3303 (defun edebug-Trace-fast-mode ()
3304 "Trace with no wait at each step."
3306 (edebug-set-mode 'Trace-fast
3307 "Trace fast..." "Edebug will trace without pause."))
3309 (defun edebug-continue-mode ()
3310 "Begin continue mode."
3312 (edebug-set-mode 'continue
"Continue..."
3313 "Edebug will pause at breakpoints."))
3315 (defun edebug-Continue-fast-mode ()
3316 "Trace with no wait at each step."
3318 (edebug-set-mode 'Continue-fast
"Continue fast..."
3319 "Edebug will stop and go at breakpoints."))
3321 ;; ------------------------------------------------------------
3322 ;; The following use the mode changing commands and breakpoints.
3325 (defun edebug-goto-here ()
3326 "Proceed to this stop point."
3331 (defun edebug-stop ()
3332 "Stop execution and do not continue.
3333 Useful for exiting from trace or continue loop."
3338 '(defun edebug-forward ()
3339 "Proceed to the exit of the next expression to be evaluated."
3343 "Edebug will stop after exiting the next expression."))
3346 (defun edebug-forward-sexp (arg)
3347 "Proceed from the current point to the end of the ARGth sexp ahead.
3348 If there are not ARG sexps ahead, then do edebug-step-out."
3351 (let ((parse-sexp-ignore-comments t
))
3352 ;; Call forward-sexp repeatedly until done or failure.
3359 (defun edebug-step-out ()
3360 "Proceed from the current point to the end of the containing sexp.
3361 If there is no containing sexp that is not the top level defun,
3362 go to the end of the last sexp, or if that is the same point, then step."
3365 (let ((parse-sexp-ignore-comments t
))
3368 ;; Is there still a containing expression?
3372 ;; At top level - 1, so first check if there are more sexps at this level.
3373 (let ((start-point (point)))
3376 (if (= (point) start-point
)
3377 (edebug-step-mode) ; No more at this level, so step.
3381 (defun edebug-instrument-function (func)
3382 ;; Func should be a function symbol.
3383 ;; Return the function symbol, or nil if not instrumented.
3384 (let ((func-marker (get func
'edebug
)))
3386 ((markerp func-marker
)
3387 ;; It is uninstrumented, so instrument it.
3388 (with-current-buffer (marker-buffer func-marker
)
3389 (goto-char func-marker
)
3390 (edebug-eval-top-level-form)
3392 ((consp func-marker
)
3393 (message "%s is already instrumented." func
)
3396 (let ((loc (find-function-noselect func
)))
3397 (with-current-buffer (car loc
)
3398 (goto-char (cdr loc
))
3399 (edebug-eval-top-level-form)
3402 (defun edebug-instrument-callee ()
3403 "Instrument the definition of the function or macro about to be called.
3404 Do this when stopped before the form or it will be too late.
3405 One side effect of using this command is that the next time the
3406 function or macro is called, Edebug will be called there as well."
3408 (if (not (looking-at "\("))
3409 (error "You must be before a list form")
3413 (if (looking-at "\(")
3414 (edebug-form-data-name
3415 (edebug-get-form-data-entry (point)))
3416 (edebug-original-read (current-buffer))))))
3417 (edebug-instrument-function func
))))
3420 (defun edebug-step-in ()
3421 "Step into the definition of the function or macro about to be called.
3422 This first does `edebug-instrument-callee' to ensure that it is
3423 instrumented. Then it does `edebug-on-entry' and switches to `go' mode."
3425 (let ((func (edebug-instrument-callee)))
3428 (edebug-on-entry func
'temp
)
3429 (edebug-go-mode nil
)))))
3431 (defun edebug-on-entry (function &optional flag
)
3432 "Cause Edebug to stop when FUNCTION is called.
3433 With prefix argument, make this temporary so it is automatically
3434 cancelled the first time the function is entered."
3435 (interactive "aEdebug on entry to: \nP")
3436 ;; Could store this in the edebug data instead.
3437 (put function
'edebug-on-entry
(if flag
'temp t
)))
3439 (defun cancel-edebug-on-entry (function)
3440 (interactive "aEdebug on entry to: ")
3441 (put function
'edebug-on-entry nil
))
3444 (if (not (fboundp 'edebug-original-debug-on-entry
))
3445 (fset 'edebug-original-debug-on-entry
(symbol-function 'debug-on-entry
)))
3446 '(fset 'debug-on-entry
'edebug-debug-on-entry
) ;; Should we do this?
3447 ;; Also need edebug-cancel-debug-on-entry
3449 '(defun edebug-debug-on-entry (function)
3450 "Request FUNCTION to invoke debugger each time it is called.
3451 If the user continues, FUNCTION's execution proceeds.
3452 Works by modifying the definition of FUNCTION,
3453 which must be written in Lisp, not predefined.
3454 Use `cancel-debug-on-entry' to cancel the effect of this command.
3455 Redefining FUNCTION also does that.
3457 This version is from Edebug. If the function is instrumented for
3458 Edebug, it calls `edebug-on-entry'."
3459 (interactive "aDebug on entry (to function): ")
3460 (let ((func-data (get function
'edebug
)))
3461 (if (or (null func-data
) (markerp func-data
))
3462 (edebug-original-debug-on-entry function
)
3463 (edebug-on-entry function
))))
3466 (defun edebug-top-level-nonstop ()
3467 "Set mode to Go-nonstop, and exit to top-level.
3468 This is useful for exiting even if unwind-protect code may be executed."
3470 (setq edebug-execution-mode
'Go-nonstop
)
3474 ;;(defun edebug-exit-out ()
3475 ;; "Go until the current function exits."
3477 ;; (edebug-set-mode 'exiting "Exit..."))
3480 ;;; The following initial mode setting definitions are not used yet.
3482 '(defconst edebug-initial-mode-alist
3483 '((edebug-Continue-fast . Continue-fast
)
3484 (edebug-Trace-fast . Trace-fast
)
3485 (edebug-continue . continue
)
3486 (edebug-trace . trace
)
3488 (edebug-step-through . step
)
3489 (edebug-Go-nonstop . Go-nonstop
)
3491 "Association list between commands and the modes they set.")
3494 '(defun edebug-set-initial-mode ()
3495 "Ask for the initial mode of the enclosing function.
3496 The mode is requested via the key that would be used to set the mode in
3499 (let* ((this-function (edebug-which-function))
3500 (keymap (if (eq edebug-mode-map
(current-local-map))
3502 (old-mode (or (get this-function
'edebug-initial-mode
)
3503 edebug-initial-mode
))
3504 (key (read-key-sequence
3506 "Change initial edebug mode for %s from %s (%s) to (enter key): "
3510 (car (rassq old-mode edebug-initial-mode-alist
))
3513 (mode (cdr (assq (key-binding key
) edebug-initial-mode-alist
)))
3516 (or (get this-function
'edebug-initial-mode
)
3517 (not (eq mode edebug-initial-mode
))))
3519 (put this-function
'edebug-initial-mode mode
)
3520 (message "Initial mode for %s is now: %s"
3521 this-function mode
))
3522 (error "Key must map to one of the mode changing commands")
3525 ;;; Evaluation of expressions
3527 (def-edebug-spec edebug-outside-excursion t
)
3529 (defmacro edebug-outside-excursion
(&rest body
)
3530 "Evaluate an expression list in the outside context.
3531 Return the result of the last expression."
3532 `(save-excursion ; of current-buffer
3533 (if edebug-save-windows
3535 ;; After excursion, we will
3536 ;; restore to current window configuration.
3537 (setq edebug-inside-windows
3538 (edebug-current-windows edebug-save-windows
))
3539 ;; Restore outside windows.
3540 (edebug-set-windows edebug-outside-windows
)))
3542 (set-buffer edebug-buffer
) ; why?
3543 ;; (use-local-map edebug-outside-map)
3544 (set-match-data edebug-outside-match-data
)
3545 ;; Restore outside context.
3546 (let (;; (edebug-inside-map (current-local-map)) ;; restore map??
3547 (last-command-char edebug-outside-last-command-char
)
3548 (last-command-event edebug-outside-last-command-event
)
3549 (last-command edebug-outside-last-command
)
3550 (this-command edebug-outside-this-command
)
3551 (unread-command-char edebug-outside-unread-command-char
)
3552 (unread-command-events edebug-outside-unread-command-events
)
3553 (current-prefix-arg edebug-outside-current-prefix-arg
)
3554 (last-input-char edebug-outside-last-input-char
)
3555 (last-input-event edebug-outside-last-input-event
)
3556 (last-event-frame edebug-outside-last-event-frame
)
3557 (last-nonmenu-event edebug-outside-last-nonmenu-event
)
3558 (track-mouse edebug-outside-track-mouse
)
3559 (standard-output edebug-outside-standard-output
)
3560 (standard-input edebug-outside-standard-input
)
3562 (executing-kbd-macro edebug-outside-executing-macro
)
3563 (defining-kbd-macro edebug-outside-defining-kbd-macro
)
3564 ;; Get the values out of the saved statuses.
3565 (pre-command-hook (cdr edebug-outside-pre-command-hook
))
3566 (post-command-hook (cdr edebug-outside-post-command-hook
))
3568 ;; See edebug-display
3569 (overlay-arrow-position edebug-outside-o-a-p
)
3570 (overlay-arrow-string edebug-outside-o-a-s
)
3571 (cursor-in-echo-area edebug-outside-c-i-e-a
)
3574 (save-excursion ; of edebug-buffer
3575 (set-buffer edebug-outside-buffer
)
3576 (goto-char edebug-outside-point
)
3577 (if (marker-buffer (edebug-mark-marker))
3578 (set-marker (edebug-mark-marker) edebug-outside-mark
))
3581 ;; Back to edebug-buffer. Restore rest of inside context.
3582 ;; (use-local-map edebug-inside-map)
3583 (if edebug-save-windows
3584 ;; Restore inside windows.
3585 (edebug-set-windows edebug-inside-windows
))
3587 ;; Save values that may have been changed.
3589 edebug-outside-last-command-char last-command-char
3590 edebug-outside-last-command-event last-command-event
3591 edebug-outside-last-command last-command
3592 edebug-outside-this-command this-command
3593 edebug-outside-unread-command-char unread-command-char
3594 edebug-outside-unread-command-events unread-command-events
3595 edebug-outside-current-prefix-arg current-prefix-arg
3596 edebug-outside-last-input-char last-input-char
3597 edebug-outside-last-input-event last-input-event
3598 edebug-outside-last-event-frame last-event-frame
3599 edebug-outside-last-nonmenu-event last-nonmenu-event
3600 edebug-outside-track-mouse track-mouse
3601 edebug-outside-standard-output standard-output
3602 edebug-outside-standard-input standard-input
3604 edebug-outside-executing-macro executing-kbd-macro
3605 edebug-outside-defining-kbd-macro defining-kbd-macro
3607 edebug-outside-o-a-p overlay-arrow-position
3608 edebug-outside-o-a-s overlay-arrow-string
3609 edebug-outside-c-i-e-a cursor-in-echo-area
3612 ;; Restore the outside saved values; don't alter
3613 ;; the outside binding loci.
3614 (setcdr edebug-outside-pre-command-hook pre-command-hook
)
3615 (setcdr edebug-outside-post-command-hook post-command-hook
)
3620 (defvar cl-debug-env nil
) ;; defined in cl; non-nil when lexical env used.
3622 (defun edebug-eval (edebug-expr)
3623 ;; Are there cl lexical variables active?
3625 (eval (cl-macroexpand-all edebug-expr cl-debug-env
))
3626 (eval edebug-expr
)))
3628 (defun edebug-safe-eval (edebug-expr)
3629 ;; Evaluate EXPR safely.
3630 ;; If there is an error, a string is returned describing the error.
3631 (condition-case edebug-err
3632 (edebug-eval edebug-expr
)
3633 (error (edebug-format "%s: %s" ;; could
3634 (get (car edebug-err
) 'error-message
)
3635 (car (cdr edebug-err
))))))
3639 ;; Replace printing functions.
3642 (defalias 'edebug-install-custom-print-funcs
'edebug-install-custom-print
)
3643 (defalias 'edebug-reset-print-funcs
'edebug-uninstall-custom-print
)
3644 (defalias 'edebug-uninstall-custom-print-funcs
'edebug-uninstall-custom-print
)
3646 (defun edebug-install-custom-print ()
3647 "Replace print functions used by Edebug with custom versions."
3648 ;; Modifying the custom print functions, or changing print-length,
3649 ;; print-level, print-circle, custom-print-list or custom-print-vector
3650 ;; have immediate effect.
3652 (require 'cust-print
)
3653 (defalias 'edebug-prin1
'custom-prin1
)
3654 (defalias 'edebug-print
'custom-print
)
3655 (defalias 'edebug-prin1-to-string
'custom-prin1-to-string
)
3656 (defalias 'edebug-format
'custom-format
)
3657 (defalias 'edebug-message
'custom-message
)
3661 (defun edebug-uninstall-custom-print ()
3662 "Replace edebug custom print functions with internal versions."
3664 (defalias 'edebug-prin1
'prin1
)
3665 (defalias 'edebug-print
'print
)
3666 (defalias 'edebug-prin1-to-string
'prin1-to-string
)
3667 (defalias 'edebug-format
'format
)
3668 (defalias 'edebug-message
'message
)
3671 ;; Default print functions are the same as Emacs'.
3672 (edebug-uninstall-custom-print))
3675 (defun edebug-report-error (edebug-value)
3676 ;; Print an error message like command level does.
3677 ;; This also prints the error name if it has no error-message.
3679 (or (get (car edebug-value
) 'error-message
)
3680 (format "peculiar error (%s)" (car edebug-value
)))
3681 (mapconcat (function (lambda (edebug-arg)
3682 ;; continuing after an error may
3683 ;; complain about edebug-arg. why??
3684 (prin1-to-string edebug-arg
)))
3685 (cdr edebug-value
) ", ")))
3687 ;; Define here in case they are not already defined.
3688 (defvar print-level nil
)
3689 (defvar print-circle nil
)
3690 (defvar print-readably
) ;; defined by lemacs
3691 ;; Alternatively, we could change the definition of
3692 ;; edebug-safe-prin1-to-string to only use these if defined.
3694 (defun edebug-safe-prin1-to-string (value)
3695 (let ((print-escape-newlines t
)
3696 (print-length (or edebug-print-length print-length
))
3697 (print-level (or edebug-print-level print-level
))
3698 (print-circle (or edebug-print-circle print-circle
))
3699 (print-readably nil
)) ;; lemacs uses this.
3700 (edebug-prin1-to-string value
)))
3702 (defun edebug-compute-previous-result (edebug-previous-value)
3703 (if edebug-unwrap-results
3704 (setq edebug-previous-value
3705 (edebug-unwrap* edebug-previous-value
)))
3706 (setq edebug-previous-result
3708 (edebug-safe-prin1-to-string edebug-previous-value
)
3709 (eval-expression-print-format edebug-previous-value
))))
3711 (defun edebug-previous-result ()
3712 "Print the previous result."
3714 (message "%s" edebug-previous-result
))
3716 ;;; Read, Eval and Print
3718 (defun edebug-eval-expression (edebug-expr)
3719 "Evaluate an expression in the outside environment.
3720 If interactive, prompt for the expression.
3721 Print result in minibuffer."
3722 (interactive (list (read-from-minibuffer
3723 "Eval: " nil read-expression-map t
3724 'read-expression-history
)))
3726 (edebug-outside-excursion
3727 (setq values
(cons (edebug-eval edebug-expr
) values
))
3728 (concat (edebug-safe-prin1-to-string (car values
))
3729 (eval-expression-print-format (car values
))))))
3731 (defun edebug-eval-last-sexp ()
3732 "Evaluate sexp before point in the outside environment; value in minibuffer."
3734 (edebug-eval-expression (edebug-last-sexp)))
3736 (defun edebug-eval-print-last-sexp ()
3737 "Evaluate sexp before point in the outside environment; insert the value.
3738 This prints the value into current buffer."
3740 (let* ((edebug-form (edebug-last-sexp))
3741 (edebug-result-string
3742 (edebug-outside-excursion
3743 (edebug-safe-prin1-to-string (edebug-safe-eval edebug-form
))))
3744 (standard-output (current-buffer)))
3746 ;; princ the string to get rid of quotes.
3747 (princ edebug-result-string
)
3751 ;;; Edebug Minor Mode
3753 (defvar gud-inhibit-global-bindings
3754 "*Non-nil means don't do global rebindings of C-x C-a subcommands.")
3756 ;; Global GUD bindings for all emacs-lisp-mode buffers.
3757 (unless gud-inhibit-global-bindings
3758 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-s" 'edebug-step-mode
)
3759 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-n" 'edebug-next-mode
)
3760 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-c" 'edebug-go-mode
)
3761 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-l" 'edebug-where
))
3763 (defvar edebug-mode-map
3764 (let ((map (copy-keymap emacs-lisp-mode-map
)))
3766 (define-key map
" " 'edebug-step-mode
)
3767 (define-key map
"n" 'edebug-next-mode
)
3768 (define-key map
"g" 'edebug-go-mode
)
3769 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3770 (define-key map
"t" 'edebug-trace-mode
)
3771 (define-key map
"T" 'edebug-Trace-fast-mode
)
3772 (define-key map
"c" 'edebug-continue-mode
)
3773 (define-key map
"C" 'edebug-Continue-fast-mode
)
3775 ;;(define-key map "f" 'edebug-forward) not implemented
3776 (define-key map
"f" 'edebug-forward-sexp
)
3777 (define-key map
"h" 'edebug-goto-here
)
3779 (define-key map
"I" 'edebug-instrument-callee
)
3780 (define-key map
"i" 'edebug-step-in
)
3781 (define-key map
"o" 'edebug-step-out
)
3783 ;; quitting and stopping
3784 (define-key map
"q" 'top-level
)
3785 (define-key map
"Q" 'edebug-top-level-nonstop
)
3786 (define-key map
"a" 'abort-recursive-edit
)
3787 (define-key map
"S" 'edebug-stop
)
3790 (define-key map
"b" 'edebug-set-breakpoint
)
3791 (define-key map
"u" 'edebug-unset-breakpoint
)
3792 (define-key map
"B" 'edebug-next-breakpoint
)
3793 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3794 (define-key map
"X" 'edebug-set-global-break-condition
)
3797 (define-key map
"r" 'edebug-previous-result
)
3798 (define-key map
"e" 'edebug-eval-expression
)
3799 (define-key map
"\C-x\C-e" 'edebug-eval-last-sexp
)
3800 (define-key map
"E" 'edebug-visit-eval-list
)
3803 (define-key map
"w" 'edebug-where
)
3804 (define-key map
"v" 'edebug-view-outside
) ;; maybe obsolete??
3805 (define-key map
"p" 'edebug-bounce-point
)
3806 (define-key map
"P" 'edebug-view-outside
) ;; same as v
3807 (define-key map
"W" 'edebug-toggle-save-windows
)
3810 (define-key map
"?" 'edebug-help
)
3811 (define-key map
"d" 'edebug-backtrace
)
3813 (define-key map
"-" 'negative-argument
)
3816 (define-key map
"=" 'edebug-temp-display-freq-count
)
3819 (define-key map
"\C-c\C-s" 'edebug-step-mode
)
3820 (define-key map
"\C-c\C-n" 'edebug-next-mode
)
3821 (define-key map
"\C-c\C-c" 'edebug-go-mode
)
3823 (define-key map
"\C-x " 'edebug-set-breakpoint
)
3824 (define-key map
"\C-c\C-d" 'edebug-unset-breakpoint
)
3825 (define-key map
"\C-c\C-t"
3826 (lambda () (interactive) (edebug-set-breakpoint t
)))
3827 (define-key map
"\C-c\C-l" 'edebug-where
)
3830 ;; Autoloading these global bindings doesn't make sense because
3831 ;; they cannot be used anyway unless Edebug is already loaded and active.
3833 (defvar global-edebug-prefix
"\^XX"
3834 "Prefix key for global edebug commands, available from any buffer.")
3836 (defvar global-edebug-map
3837 (let ((map (make-sparse-keymap)))
3839 (define-key map
" " 'edebug-step-mode
)
3840 (define-key map
"g" 'edebug-go-mode
)
3841 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3842 (define-key map
"t" 'edebug-trace-mode
)
3843 (define-key map
"T" 'edebug-Trace-fast-mode
)
3844 (define-key map
"c" 'edebug-continue-mode
)
3845 (define-key map
"C" 'edebug-Continue-fast-mode
)
3848 (define-key map
"b" 'edebug-set-breakpoint
)
3849 (define-key map
"u" 'edebug-unset-breakpoint
)
3850 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3851 (define-key map
"X" 'edebug-set-global-break-condition
)
3854 (define-key map
"w" 'edebug-where
)
3855 (define-key map
"W" 'edebug-toggle-save-windows
)
3858 (define-key map
"q" 'top-level
)
3859 (define-key map
"Q" 'edebug-top-level-nonstop
)
3860 (define-key map
"a" 'abort-recursive-edit
)
3863 (define-key map
"=" 'edebug-display-freq-count
)
3865 "Global map of edebug commands, available from any buffer.")
3867 (global-unset-key global-edebug-prefix
)
3868 (global-set-key global-edebug-prefix global-edebug-map
)
3871 (defun edebug-help ()
3873 (describe-function 'edebug-mode
))
3875 (defun edebug-mode ()
3876 "Mode for Emacs Lisp buffers while in Edebug.
3878 In addition to all Emacs Lisp commands (except those that modify the
3879 buffer) there are local and global key bindings to several Edebug
3880 specific commands. E.g. `edebug-step-mode' is bound to \\[edebug-step-mode]
3881 in the Edebug buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3883 Also see bindings for the eval list buffer, *edebug*.
3885 The edebug buffer commands:
3888 Global commands prefixed by `global-edebug-prefix':
3889 \\{global-edebug-map}
3896 edebug-save-displayed-buffer-points
3899 edebug-test-coverage
3900 edebug-continue-kbd-macro
3907 edebug-unwrap-results
3908 edebug-global-break-condition
3910 (use-local-map edebug-mode-map
))
3912 ;;; edebug eval list mode
3914 ;; A list of expressions and their evaluations is displayed in *edebug*.
3916 (defun edebug-eval-result-list ()
3917 "Return a list of evaluations of edebug-eval-list"
3918 ;; Assumes in outside environment.
3919 ;; Don't do any edebug things now.
3920 (let ((edebug-execution-mode 'Go-nonstop
)
3922 (mapcar 'edebug-safe-eval edebug-eval-list
)))
3924 (defun edebug-eval-display-list (edebug-eval-result-list)
3925 ;; Assumes edebug-eval-buffer exists.
3926 (let ((edebug-eval-list-temp edebug-eval-list
)
3927 (standard-output edebug-eval-buffer
)
3928 (edebug-comment-line
3929 (format ";%s\n" (make-string (- (window-width) 2) ?-
))))
3930 (set-buffer edebug-eval-buffer
)
3932 (while edebug-eval-list-temp
3933 (prin1 (car edebug-eval-list-temp
)) (terpri)
3934 (prin1 (car edebug-eval-result-list
)) (terpri)
3935 (princ edebug-comment-line
)
3936 (setq edebug-eval-list-temp
(cdr edebug-eval-list-temp
))
3937 (setq edebug-eval-result-list
(cdr edebug-eval-result-list
)))
3938 (edebug-pop-to-buffer edebug-eval-buffer
)
3941 (defun edebug-create-eval-buffer ()
3942 (if (not (and edebug-eval-buffer
(buffer-name edebug-eval-buffer
)))
3944 (set-buffer (setq edebug-eval-buffer
(get-buffer-create "*edebug*")))
3945 (edebug-eval-mode))))
3947 ;; Should generalize this to be callable outside of edebug
3948 ;; with calls in user functions, e.g. (edebug-eval-display)
3950 (defun edebug-eval-display (edebug-eval-result-list)
3951 "Display expressions and evaluations in EVAL-LIST.
3952 It modifies the context by popping up the eval display."
3953 (if edebug-eval-result-list
3955 (edebug-create-eval-buffer)
3956 (edebug-eval-display-list edebug-eval-result-list
)
3959 (defun edebug-eval-redisplay ()
3960 "Redisplay eval list in outside environment.
3961 May only be called from within edebug-recursive-edit."
3962 (edebug-create-eval-buffer)
3963 (edebug-outside-excursion
3964 (edebug-eval-display-list (edebug-eval-result-list))
3967 (defun edebug-visit-eval-list ()
3969 (edebug-eval-redisplay)
3970 (edebug-pop-to-buffer edebug-eval-buffer
))
3973 (defun edebug-update-eval-list ()
3974 "Replace the evaluation list with the sexps now in the eval buffer."
3976 (let ((starting-point (point))
3978 (goto-char (point-min))
3979 ;; get the first expression
3980 (edebug-skip-whitespace)
3984 (setq new-list
(cons (edebug-last-sexp) new-list
))))
3986 (while (re-search-forward "^;" nil t
)
3988 (skip-chars-forward " \t\n\r")
3989 (if (and (/= ?\
; (following-char))
3993 (setq new-list
(cons (edebug-last-sexp) new-list
)))))
3995 (setq edebug-eval-list
(nreverse new-list
))
3996 (edebug-eval-redisplay)
3997 (goto-char starting-point
)))
4000 (defun edebug-delete-eval-item ()
4001 "Delete the item under point and redisplay."
4002 ;; could add arg to do repeatedly
4004 (if (re-search-backward "^;" nil
'nofail
)
4007 (point) (progn (re-search-forward "^;" nil
'nofail
)
4010 (edebug-update-eval-list))
4014 (defvar edebug-eval-mode-map nil
4015 "Keymap for Edebug Eval mode. Superset of Lisp Interaction mode.")
4017 (if edebug-eval-mode-map
4019 (setq edebug-eval-mode-map
(copy-keymap lisp-interaction-mode-map
))
4021 (define-key edebug-eval-mode-map
"\C-c\C-w" 'edebug-where
)
4022 (define-key edebug-eval-mode-map
"\C-c\C-d" 'edebug-delete-eval-item
)
4023 (define-key edebug-eval-mode-map
"\C-c\C-u" 'edebug-update-eval-list
)
4024 (define-key edebug-eval-mode-map
"\C-x\C-e" 'edebug-eval-last-sexp
)
4025 (define-key edebug-eval-mode-map
"\C-j" 'edebug-eval-print-last-sexp
)
4028 (put 'edebug-eval-mode
'mode-class
'special
)
4030 (defun edebug-eval-mode ()
4031 "Mode for evaluation list buffer while in Edebug.
4033 In addition to all Interactive Emacs Lisp commands there are local and
4034 global key bindings to several Edebug specific commands. E.g.
4035 `edebug-step-mode' is bound to \\[edebug-step-mode] in the Edebug
4036 buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
4038 Eval list buffer commands:
4039 \\{edebug-eval-mode-map}
4041 Global commands prefixed by global-edebug-prefix:
4042 \\{global-edebug-map}
4044 (lisp-interaction-mode)
4045 (setq major-mode
'edebug-eval-mode
)
4046 (setq mode-name
"Edebug Eval")
4047 (use-local-map edebug-eval-mode-map
))
4049 ;;; Interface with standard debugger.
4051 ;; (setq debugger 'edebug) ; to use the edebug debugger
4052 ;; (setq debugger 'debug) ; use the standard debugger
4054 ;; Note that debug and its utilities must be byte-compiled to work,
4055 ;; since they depend on the backtrace looking a certain way. But
4056 ;; edebug is not dependent on this, yet.
4058 (defun edebug (&optional edebug-arg-mode
&rest debugger-args
)
4059 "Replacement for debug.
4060 If we are running an edebugged function,
4061 show where we last were. Otherwise call debug normally."
4062 ;; (message "entered: %s depth: %s edebug-recursion-depth: %s"
4063 ;; edebug-entered (recursion-depth) edebug-recursion-depth) (sit-for 1)
4064 (if (and edebug-entered
; anything active?
4065 (eq (recursion-depth) edebug-recursion-depth
))
4066 (let (;; Where were we before the error occurred?
4067 (edebug-offset-index (car edebug-offset-indices
))
4068 ;; Bind variables required by edebug-display
4069 (edebug-value (car debugger-args
))
4072 edebug-break-condition
4074 (edebug-break (null edebug-arg-mode
)) ;; if called explicitly
4077 (if (eq edebug-arg-mode
'error
)
4081 ;; Otherwise call debug normally.
4082 ;; Still need to remove extraneous edebug calls from stack.
4083 (apply 'debug edebug-arg-mode debugger-args
)
4087 (defun edebug-backtrace ()
4088 "Display a non-working backtrace. Better than nothing..."
4090 (if (or (not edebug-backtrace-buffer
)
4091 (null (buffer-name edebug-backtrace-buffer
)))
4092 (setq edebug-backtrace-buffer
4093 (generate-new-buffer "*Backtrace*"))
4094 ;; else, could just display edebug-backtrace-buffer
4096 (with-output-to-temp-buffer (buffer-name edebug-backtrace-buffer
)
4097 (setq edebug-backtrace-buffer standard-output
)
4098 (let ((print-escape-newlines t
)
4103 ;; Clean up the backtrace.
4104 ;; Not quite right for current edebug scheme.
4105 (set-buffer edebug-backtrace-buffer
)
4106 (setq truncate-lines t
)
4107 (goto-char (point-min))
4108 (setq last-ok-point
(point))
4111 ;; Delete interspersed edebug internals.
4112 (while (re-search-forward "^ \(?edebug" nil t
)
4115 ((looking-at "^ \(edebug-after")
4116 ;; Previous lines may contain code, so just delete this line
4117 (setq last-ok-point
(point))
4119 (delete-region last-ok-point
(point)))
4121 ((looking-at "^ edebug")
4123 (delete-region last-ok-point
(point))
4130 (defun edebug-trace-display (buf-name fmt
&rest args
)
4131 "In buffer BUF-NAME, display FMT and ARGS at the end and make it visible.
4132 The buffer is created if it does not exist.
4133 You must include newlines in FMT to break lines, but one newline is appended."
4135 ;; (edebug-trace-display "*trace-point*"
4136 ;; "saving: point = %s window-start = %s"
4137 ;; (point) (window-start))
4138 (let* ((oldbuf (current-buffer))
4139 (selected-window (selected-window))
4140 (buffer (get-buffer-create buf-name
))
4142 ;; (message "before pop-to-buffer") (sit-for 1)
4143 (edebug-pop-to-buffer buffer
)
4144 (setq truncate-lines t
)
4145 (setq buf-window
(selected-window))
4146 (goto-char (point-max))
4147 (insert (apply 'edebug-format fmt args
) "\n")
4149 (vertical-motion (- 1 (window-height)))
4150 (set-window-start buf-window
(point))
4151 (goto-char (point-max))
4152 ;; (set-window-point buf-window (point))
4153 ;; (edebug-sit-for 0)
4154 (bury-buffer buffer
)
4155 (select-window selected-window
)
4156 (set-buffer oldbuf
))
4160 (defun edebug-trace (fmt &rest args
)
4161 "Convenience call to edebug-trace-display using edebug-trace-buffer"
4162 (apply 'edebug-trace-display edebug-trace-buffer fmt args
))
4165 ;;; Frequency count and coverage
4167 (defun edebug-display-freq-count ()
4168 "Display the frequency count data for each line of the current definition.
4169 The frequency counts are inserted as comment lines after
4170 each line, and you can undo all insertions with one `undo' command.
4172 The counts are inserted starting under the `(' before an expression
4173 or the `)' after an expression, or on the last char of a symbol.
4174 The counts are only displayed when they differ from previous counts on
4177 If coverage is being tested, whenever all known results of an expression
4178 are `eq', the char `=' will be appended after the count
4179 for that expression. Note that this is always the case for an
4180 expression only evaluated once.
4182 To clear the frequency count and coverage data for a definition,
4185 (let* ((function (edebug-form-data-symbol))
4186 (counts (get function
'edebug-freq-count
))
4187 (coverages (get function
'edebug-coverage
))
4188 (data (get function
'edebug
))
4189 (def-mark (car data
)) ; mark at def start
4190 (edebug-points (nth 2 data
))
4191 (i (1- (length edebug-points
)))
4195 (start-of-count-line)
4199 ;; Traverse in reverse order so offsets are correct.
4201 ;; Start at last expression in line.
4202 (goto-char (+ def-mark
(aref edebug-points i
)))
4204 (setq start-of-line
(- (point) def-mark
)
4207 ;; Find all indexes on same line.
4208 (while (and (<= 0 (setq i
(1- i
)))
4209 (<= start-of-line
(aref edebug-points i
))))
4210 ;; Insert all the indices for this line.
4212 (setq start-of-count-line
(point)
4213 first-index i
; really last index for line above this one.
4214 last-count -
1) ; cause first count to always appear.
4216 ;; i == first-index still
4217 (while (<= (setq i
(1+ i
)) last-index
)
4218 (let ((count (aref counts i
))
4219 (coverage (aref coverages i
))
4220 (col (save-excursion
4221 (goto-char (+ (aref edebug-points i
) def-mark
))
4223 (if (= ?\
( (following-char)) 0 1)))))
4224 (insert (make-string
4225 (max 0 (- col
(- (point) start-of-count-line
))) ?\
)
4226 (if (and (< 0 count
)
4228 '(unknown ok-coverage
))))
4230 (if (= count last-count
) "" (int-to-string count
))
4232 (setq last-count count
)))
4234 (setq i first-index
)))))
4236 (defun edebug-temp-display-freq-count ()
4237 "Temporarily display the frequency count data for the current definition.
4238 It is removed when you hit any char."
4239 ;; This seems not to work with Emacs 18.59. It undoes too far.
4241 (let ((buffer-read-only nil
))
4243 (edebug-display-freq-count)
4244 (setq unread-command-char
(read-char))
4250 (defun edebug-toggle (variable)
4251 (set variable
(not (eval variable
)))
4252 (message "%s: %s" variable
(eval variable
)))
4254 ;; We have to require easymenu (even for Emacs 18) just so
4255 ;; the easy-menu-define macro call is compiled correctly.
4258 (defconst edebug-mode-menus
4260 ["Stop" edebug-stop t
]
4261 ["Step" edebug-step-mode t
]
4262 ["Next" edebug-next-mode t
]
4263 ["Trace" edebug-trace-mode t
]
4264 ["Trace Fast" edebug-Trace-fast-mode t
]
4265 ["Continue" edebug-continue-mode t
]
4266 ["Continue Fast" edebug-Continue-fast-mode t
]
4267 ["Go" edebug-go-mode t
]
4268 ["Go Nonstop" edebug-Go-nonstop-mode t
]
4270 ["Help" edebug-help t
]
4271 ["Abort" abort-recursive-edit t
]
4272 ["Quit to Top Level" top-level t
]
4273 ["Quit Nonstop" edebug-top-level-nonstop t
]
4276 ["Forward Sexp" edebug-forward-sexp t
]
4277 ["Step In" edebug-step-in t
]
4278 ["Step Out" edebug-step-out t
]
4279 ["Goto Here" edebug-goto-here t
])
4282 ["Set Breakpoint" edebug-set-breakpoint t
]
4283 ["Unset Breakpoint" edebug-unset-breakpoint t
]
4284 ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t
]
4285 ["Set Global Break Condition" edebug-set-global-break-condition t
]
4286 ["Show Next Breakpoint" edebug-next-breakpoint t
])
4289 ["Where am I?" edebug-where t
]
4290 ["Bounce to Current Point" edebug-bounce-point t
]
4291 ["View Outside Windows" edebug-view-outside t
]
4292 ["Previous Result" edebug-previous-result t
]
4293 ["Show Backtrace" edebug-backtrace t
]
4294 ["Display Freq Count" edebug-display-freq-count t
])
4297 ["Expression" edebug-eval-expression t
]
4298 ["Last Sexp" edebug-eval-last-sexp t
]
4299 ["Visit Eval List" edebug-visit-eval-list t
])
4302 ["Edebug All Defs" edebug-all-defs
4303 :style toggle
:selected edebug-all-defs
]
4304 ["Edebug All Forms" edebug-all-forms
4305 :style toggle
:selected edebug-all-forms
]
4307 ["Tracing" (edebug-toggle 'edebug-trace
)
4308 :style toggle
:selected edebug-trace
]
4309 ["Test Coverage" (edebug-toggle 'edebug-test-coverage
)
4310 :style toggle
:selected edebug-test-coverage
]
4311 ["Save Windows" edebug-toggle-save-windows
4312 :style toggle
:selected edebug-save-windows
]
4314 (edebug-toggle 'edebug-save-displayed-buffer-points
)
4315 :style toggle
:selected edebug-save-displayed-buffer-points
]
4317 "Menus for Edebug.")
4320 ;;; Emacs version specific code
4322 (defalias 'edebug-window-live-p
'window-live-p
)
4324 (defun edebug-mark ()
4327 (defun edebug-set-conditional-breakpoint (arg condition
)
4328 "Set a conditional breakpoint at nearest sexp.
4329 The condition is evaluated in the outside context.
4330 With prefix argument, make it a temporary breakpoint."
4331 ;; (interactive "P\nxCondition: ")
4335 ;; Read condition as follows; getting previous condition is cumbersome:
4336 (let ((edebug-stop-point (edebug-find-stop-point)))
4337 (if edebug-stop-point
4338 (let* ((edebug-def-name (car edebug-stop-point
))
4339 (index (cdr edebug-stop-point
))
4340 (edebug-data (get edebug-def-name
'edebug
))
4341 (edebug-breakpoints (car (cdr edebug-data
)))
4342 (edebug-break-data (assq index edebug-breakpoints
))
4343 (edebug-break-condition (car (cdr edebug-break-data
)))
4344 (initial (and edebug-break-condition
4345 (format "%s" edebug-break-condition
))))
4346 (read-from-minibuffer
4347 "Condition: " initial read-expression-map t
4348 (if (equal (car read-expression-history
) initial
)
4349 '(read-expression-history .
1)
4350 'read-expression-history
)))))))
4351 (edebug-modify-breakpoint t condition arg
))
4353 (easy-menu-define edebug-menu edebug-mode-map
"Edebug menus" edebug-mode-menus
)
4357 ;; Extension for bytecomp to resolve undefined function references.
4358 ;; Requires new byte compiler.
4360 ;; Reenable byte compiler warnings about unread-command-char and -event.
4361 ;; Disabled before edebug-recursive-edit.
4363 (if edebug-unread-command-char-warning
4364 (put 'unread-command-char
'byte-obsolete-variable
4365 edebug-unread-command-char-warning
)))
4368 ;; The body of eval-when-compile seems to get evaluated with eval-defun.
4369 ;; We only want to evaluate when actually byte compiling.
4370 ;; But it is OK to evaluate as long as byte-compiler has been loaded.
4371 (if (featurep 'byte-compile
) (progn
4373 (defun byte-compile-resolve-functions (funcs)
4374 "Say it is OK for the named functions to be unresolved."
4378 (setq byte-compile-unresolved-functions
4379 (delq (assq func byte-compile-unresolved-functions
)
4380 byte-compile-unresolved-functions
))))
4384 '(defun byte-compile-resolve-free-references (vars)
4385 "Say it is OK for the named variables to be referenced."
4389 (setq byte-compile-free-references
4390 (delq var byte-compile-free-references
))))
4394 '(defun byte-compile-resolve-free-assignments (vars)
4395 "Say it is OK for the named variables to be assigned."
4399 (setq byte-compile-free-assignments
4400 (delq var byte-compile-free-assignments
))))
4404 (byte-compile-resolve-functions
4405 '(reporter-submit-bug-report
4406 edebug-gensym
;; also in cl.el
4407 ;; Interfaces to standard functions.
4408 edebug-original-eval-defun
4409 edebug-original-read
4410 edebug-get-buffer-window
4413 edebug-input-pending-p
4415 edebug-prin1-to-string
4418 zmacs-deactivate-region
4422 ;; And believe it or not, the byte compiler doesn't know about:
4423 byte-compile-resolve-functions
4426 '(byte-compile-resolve-free-references
4427 '(read-expression-history
4428 read-expression-map
))
4430 '(byte-compile-resolve-free-assignments
4431 '(read-expression-history))
4436 ;;; Autoloading of Edebug accessories
4439 (add-hook 'edebug-setup-hook
4440 (function (lambda () (require 'cl-specs
))))
4441 ;; The following causes cl-specs to be loaded if you load cl.el.
4442 (add-hook 'cl-load-hook
4443 (function (lambda () (require 'cl-specs
)))))
4445 ;;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
4446 (if (featurep 'cl-read
)
4447 (add-hook 'edebug-setup-hook
4448 (function (lambda () (require 'edebug-cl-read
))))
4449 ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
4450 (add-hook 'cl-read-load-hooks
4451 (function (lambda () (require 'edebug-cl-read
)))))
4454 ;;; Finalize Loading
4456 ;;; Finally, hook edebug into the rest of Emacs.
4457 ;;; There are probably some other things that could go here.
4459 ;; Install edebug read and eval functions.
4460 (edebug-install-read-eval-functions)
4464 ;;; arch-tag: 19c8d05c-4554-426e-ac72-e0fa1fcb0808
4465 ;;; edebug.el ends here