Merge from emacs-24; up to 2013-01-03T01:56:56Z!rgm@gnu.org
[bpt/emacs.git] / lisp / emacs-lisp / edebug.el
1 ;;; edebug.el --- a source-level debugger for Emacs Lisp -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 1988-1995, 1997, 1999-2013 Free Software Foundation,
4 ;; Inc.
5
6 ;; Author: Daniel LaLiberte <liberte@holonexus.org>
7 ;; Maintainer: FSF
8 ;; Keywords: lisp, tools, maint
9
10 ;; This file is part of GNU Emacs.
11
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 3 of the License, or
15 ;; (at your option) any later version.
16
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.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; This minor mode allows programmers to step through Emacs Lisp
28 ;; source code while executing functions. You can also set
29 ;; breakpoints, trace (stopping at each expression), evaluate
30 ;; expressions as if outside Edebug, reevaluate and display a list of
31 ;; expressions, trap errors normally caught by debug, and display a
32 ;; debug style backtrace.
33
34 ;;; Minimal Instructions
35 ;; =====================
36
37 ;; First evaluate a defun with C-M-x, then run the function. Step
38 ;; through the code with SPC, mark breakpoints with b, go until a
39 ;; breakpoint is reached with g, and quit execution with q. Use the
40 ;; "?" command in edebug to describe other commands.
41 ;; See the Emacs Lisp Reference Manual for more details.
42
43 ;; If you wish to change the default edebug global command prefix, change:
44 ;; (setq edebug-global-prefix "\C-xX")
45
46 ;; Edebug was written by
47 ;; Daniel LaLiberte
48 ;; GTE Labs
49 ;; 40 Sylvan Rd
50 ;; Waltham, MA 02254
51 ;; liberte@holonexus.org
52
53 ;;; Code:
54
55 (require 'macroexp)
56 (require 'cl-lib)
57 (eval-when-compile (require 'pcase))
58
59 ;;; Options
60
61 (defgroup edebug nil
62 "A source-level debugger for Emacs Lisp."
63 :group 'lisp)
64
65
66 (defcustom edebug-setup-hook nil
67 "Functions to call before edebug is used.
68 Each time it is set to a new value, Edebug will call those functions
69 once and then reset `edebug-setup-hook' to nil. You could use this
70 to load up Edebug specifications associated with a package you are
71 using, but only when you also use Edebug."
72 :type 'hook
73 :group 'edebug)
74
75 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
76 ;; because the byte compiler binds them; as a result, if edebug
77 ;; is first loaded for a require in a compilation, they will be left unbound.
78
79 ;;;###autoload
80 (defcustom edebug-all-defs nil
81 "If non-nil, evaluating defining forms instruments for Edebug.
82 This applies to `eval-defun', `eval-region', `eval-buffer', and
83 `eval-current-buffer'. `eval-region' is also called by
84 `eval-last-sexp', and `eval-print-last-sexp'.
85
86 You can use the command `edebug-all-defs' to toggle the value of this
87 variable. You may wish to make it local to each buffer with
88 \(make-local-variable 'edebug-all-defs) in your
89 `emacs-lisp-mode-hook'."
90 :type 'boolean
91 :group 'edebug)
92
93 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
94 ;; because the byte compiler binds them; as a result, if edebug
95 ;; is first loaded for a require in a compilation, they will be left unbound.
96
97 ;;;###autoload
98 (defcustom edebug-all-forms nil
99 "Non-nil means evaluation of all forms will instrument for Edebug.
100 This doesn't apply to loading or evaluations in the minibuffer.
101 Use the command `edebug-all-forms' to toggle the value of this option."
102 :type 'boolean
103 :group 'edebug)
104
105 (defcustom edebug-eval-macro-args nil
106 "Non-nil means all macro call arguments may be evaluated.
107 If this variable is nil, the default, Edebug will *not* wrap
108 macro call arguments as if they will be evaluated.
109 For each macro, an `edebug-form-spec' overrides this option.
110 So to specify exceptions for macros that have some arguments evaluated
111 and some not, use `def-edebug-spec' to specify an `edebug-form-spec'."
112 :type 'boolean
113 :group 'edebug)
114
115 (defcustom edebug-save-windows t
116 "If non-nil, Edebug saves and restores the window configuration.
117 That takes some time, so if your program does not care what happens to
118 the window configurations, it is better to set this variable to nil.
119
120 If the value is a list, only the listed windows are saved and
121 restored.
122
123 `edebug-toggle-save-windows' may be used to change this variable."
124 :type '(choice boolean (repeat string))
125 :group 'edebug)
126
127 (defcustom edebug-save-displayed-buffer-points nil
128 "If non-nil, save and restore point in all displayed buffers.
129
130 Saving and restoring point in other buffers is necessary if you are
131 debugging code that changes the point of a buffer that is displayed
132 in a non-selected window. If Edebug or the user then selects the
133 window, the buffer's point will be changed to the window's point.
134
135 Saving and restoring point in all buffers is expensive, since it
136 requires selecting each window twice, so enable this only if you
137 need it."
138 :type 'boolean
139 :group 'edebug)
140
141 (defcustom edebug-initial-mode 'step
142 "Initial execution mode for Edebug, if non-nil.
143 If this variable is non-nil, it specifies the initial execution mode
144 for Edebug when it is first activated. Possible values are step, next,
145 go, Go-nonstop, trace, Trace-fast, continue, and Continue-fast."
146 :type '(choice (const step) (const next) (const go)
147 (const Go-nonstop) (const trace)
148 (const Trace-fast) (const continue)
149 (const Continue-fast))
150 :group 'edebug)
151
152 (defcustom edebug-trace nil
153 "Non-nil means display a trace of function entry and exit.
154 Tracing output is displayed in a buffer named `*edebug-trace*', one
155 function entry or exit per line, indented by the recursion level.
156
157 You can customize by replacing functions `edebug-print-trace-before'
158 and `edebug-print-trace-after'."
159 :type 'boolean
160 :group 'edebug)
161
162 (defcustom edebug-test-coverage nil
163 "If non-nil, Edebug tests coverage of all expressions debugged.
164 This is done by comparing the result of each expression with the
165 previous result. Coverage is considered OK if two different
166 results are found.
167
168 Use `edebug-display-freq-count' to display the frequency count and
169 coverage information for a definition."
170 :type 'boolean
171 :group 'edebug)
172
173 (defcustom edebug-continue-kbd-macro nil
174 "If non-nil, continue defining or executing any keyboard macro.
175 Use this with caution since it is not debugged."
176 :type 'boolean
177 :group 'edebug)
178
179
180 (defcustom edebug-print-length 50
181 "If non-nil, default value of `print-length' for printing results in Edebug."
182 :type 'integer
183 :group 'edebug)
184 (defcustom edebug-print-level 50
185 "If non-nil, default value of `print-level' for printing results in Edebug."
186 :type 'integer
187 :group 'edebug)
188 (defcustom edebug-print-circle t
189 "If non-nil, default value of `print-circle' for printing results in Edebug."
190 :type 'boolean
191 :group 'edebug)
192
193 (defcustom edebug-unwrap-results nil
194 "Non-nil if Edebug should unwrap results of expressions.
195 That is, Edebug will try to remove its own instrumentation from the result.
196 This is useful when debugging macros where the results of expressions
197 are instrumented expressions. But don't do this when results might be
198 circular or an infinite loop will result."
199 :type 'boolean
200 :group 'edebug)
201
202 (defcustom edebug-on-error t
203 "Value bound to `debug-on-error' while Edebug is active.
204
205 If `debug-on-error' is non-nil, that value is still used.
206
207 If the value is a list of signal names, Edebug will stop when any of
208 these errors are signaled from Lisp code whether or not the signal is
209 handled by a `condition-case'. This option is useful for debugging
210 signals that *are* handled since they would otherwise be missed.
211 After execution is resumed, the error is signaled again."
212 :type '(choice (const :tag "off")
213 (repeat :menu-tag "When"
214 :value (nil)
215 (symbol :format "%v"))
216 (const :tag "always" t))
217 :group 'edebug)
218
219 (defcustom edebug-on-quit t
220 "Value bound to `debug-on-quit' while Edebug is active."
221 :type 'boolean
222 :group 'edebug)
223
224 (defcustom edebug-global-break-condition nil
225 "If non-nil, an expression to test for at every stop point.
226 If the result is non-nil, then break. Errors are ignored."
227 :type 'sexp
228 :group 'edebug)
229
230 (defcustom edebug-sit-for-seconds 1
231 "Number of seconds to pause when execution mode is `trace' or `continue'."
232 :type 'number
233 :group 'edebug)
234
235 ;;; Form spec utilities.
236
237 (defun get-edebug-spec (symbol)
238 ;; Get the spec of symbol resolving all indirection.
239 (let ((spec nil)
240 (indirect symbol))
241 (while
242 (progn
243 (and (symbolp indirect)
244 (setq indirect
245 (function-get indirect 'edebug-form-spec 'macro))))
246 ;; (edebug-trace "indirection: %s" edebug-form-spec)
247 (setq spec indirect))
248 spec))
249
250 ;;;###autoload
251 (defun edebug-basic-spec (spec)
252 "Return t if SPEC uses only extant spec symbols.
253 An extant spec symbol is a symbol that is not a function and has a
254 `edebug-form-spec' property."
255 (cond ((listp spec)
256 (catch 'basic
257 (while spec
258 (unless (edebug-basic-spec (car spec)) (throw 'basic nil))
259 (setq spec (cdr spec)))
260 t))
261 ((symbolp spec)
262 (unless (functionp spec) (function-get spec 'edebug-form-spec)))))
263
264 ;;; Utilities
265
266 (defun edebug-lambda-list-keywordp (object)
267 "Return t if OBJECT is a lambda list keyword.
268 A lambda list keyword is a symbol that starts with `&'."
269 (and (symbolp object)
270 (= ?& (aref (symbol-name object) 0))))
271
272
273 (defun edebug-last-sexp ()
274 ;; Return the last sexp before point in current buffer.
275 ;; Assumes Emacs Lisp syntax is active.
276 (car
277 (read-from-string
278 (buffer-substring
279 (save-excursion
280 (forward-sexp -1)
281 (point))
282 (point)))))
283
284 (defun edebug-window-list ()
285 "Return a list of windows, in order of `next-window'."
286 ;; This doesn't work for epoch.
287 (let (window-list)
288 (walk-windows (lambda (w) (push w window-list)))
289 (nreverse window-list)))
290
291 ;; Not used.
292 '(defun edebug-two-window-p ()
293 "Return t if there are two windows."
294 (and (not (one-window-p))
295 (eq (selected-window)
296 (next-window (next-window)))))
297
298 (defun edebug-sort-alist (alist function)
299 ;; Return the ALIST sorted with comparison function FUNCTION.
300 ;; This uses 'sort so the sorting is destructive.
301 (sort alist (function
302 (lambda (e1 e2)
303 (funcall function (car e1) (car e2))))))
304
305 ;; Not used.
306 '(defmacro edebug-save-restriction (&rest body)
307 "Evaluate BODY while saving the current buffers restriction.
308 BODY may change buffer outside of current restriction, unlike
309 save-restriction. BODY may change the current buffer,
310 and the restriction will be restored to the original buffer,
311 and the current buffer remains current.
312 Return the result of the last expression in BODY."
313 (declare (debug t))
314 `(let ((edebug:s-r-beg (point-min-marker))
315 (edebug:s-r-end (point-max-marker)))
316 (unwind-protect
317 (progn ,@body)
318 (with-current-buffer (marker-buffer edebug:s-r-beg)
319 (narrow-to-region edebug:s-r-beg edebug:s-r-end)))))
320
321 ;;; Display
322
323 (defconst edebug-trace-buffer "*edebug-trace*"
324 "Name of the buffer to put trace info in.")
325
326 (defun edebug-pop-to-buffer (buffer &optional window)
327 ;; Like pop-to-buffer, but select window where BUFFER was last shown.
328 ;; Select WINDOW if it is provided and still exists. Otherwise,
329 ;; if buffer is currently shown in several windows, choose one.
330 ;; Otherwise, find a new window, possibly splitting one.
331 ;; FIXME: We should probably just be using `pop-to-buffer'.
332 (setq window
333 (cond
334 ((and (edebug-window-live-p window)
335 (eq (window-buffer window) buffer))
336 window)
337 ((eq (window-buffer) buffer)
338 ;; Selected window already displays BUFFER.
339 (selected-window))
340 ((get-buffer-window buffer 0))
341 ((one-window-p 'nomini)
342 ;; When there's one window only, split it.
343 (split-window (minibuffer-selected-window)))
344 ((let ((trace-window (get-buffer-window edebug-trace-buffer)))
345 (catch 'found
346 (dolist (elt (window-list nil 'nomini))
347 (unless (or (eq elt (selected-window)) (eq elt trace-window)
348 (window-dedicated-p elt))
349 ;; Found a non-dedicated window not showing
350 ;; `edebug-trace-buffer', use it.
351 (throw 'found elt))))))
352 ;; All windows are dedicated or show `edebug-trace-buffer', split
353 ;; selected one.
354 (t (split-window (minibuffer-selected-window)))))
355 (set-window-buffer window buffer)
356 (select-window window)
357 (set-window-hscroll window 0)) ;; should this be??
358
359 (defun edebug-get-displayed-buffer-points ()
360 ;; Return a list of buffer point pairs, for all displayed buffers.
361 (let (list)
362 (walk-windows (lambda (w)
363 (unless (eq w (selected-window))
364 (push (cons (window-buffer w)
365 (window-point w))
366 list))))
367 list))
368
369
370 (defun edebug-set-buffer-points (buffer-points)
371 ;; Restore the buffer-points created by edebug-get-displayed-buffer-points.
372 (save-current-buffer
373 (mapcar (lambda (buf-point)
374 (when (buffer-live-p (car buf-point))
375 (set-buffer (car buf-point))
376 (goto-char (cdr buf-point))))
377 buffer-points)))
378
379 (defun edebug-current-windows (which-windows)
380 ;; Get either a full window configuration or some window information.
381 (if (listp which-windows)
382 (mapcar (function (lambda (window)
383 (if (edebug-window-live-p window)
384 (list window
385 (window-buffer window)
386 (window-point window)
387 (window-start window)
388 (window-hscroll window)))))
389 which-windows)
390 (current-window-configuration)))
391
392 (defun edebug-set-windows (window-info)
393 ;; Set either a full window configuration or some window information.
394 (if (listp window-info)
395 (mapcar (function
396 (lambda (one-window-info)
397 (if one-window-info
398 (apply (function
399 (lambda (window buffer point start hscroll)
400 (if (edebug-window-live-p window)
401 (progn
402 (set-window-buffer window buffer)
403 (set-window-point window point)
404 (set-window-start window start)
405 (set-window-hscroll window hscroll)))))
406 one-window-info))))
407 window-info)
408 (set-window-configuration window-info)))
409
410 ;;; Redefine read and eval functions
411 ;; read is redefined to maybe instrument forms.
412 ;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs.
413
414 ;; Save the original read function
415 (defalias 'edebug-original-read
416 (symbol-function (if (fboundp 'edebug-original-read)
417 'edebug-original-read 'read)))
418
419 (defun edebug-read (&optional stream)
420 "Read one Lisp expression as text from STREAM, return as Lisp object.
421 If STREAM is nil, use the value of `standard-input' (which see).
422 STREAM or the value of `standard-input' may be:
423 a buffer (read from point and advance it)
424 a marker (read from where it points and advance it)
425 a function (call it with no arguments for each character,
426 call it with a char as argument to push a char back)
427 a string (takes text from string, starting at the beginning)
428 t (read text line using minibuffer and use it).
429
430 This version, from Edebug, maybe instruments the expression. But the
431 STREAM must be the current buffer to do so. Whether it instruments is
432 also dependent on the values of the option `edebug-all-defs' and
433 the option `edebug-all-forms'."
434 (or stream (setq stream standard-input))
435 (if (eq stream (current-buffer))
436 (edebug-read-and-maybe-wrap-form)
437 (edebug-original-read stream)))
438
439 (or (fboundp 'edebug-original-eval-defun)
440 (defalias 'edebug-original-eval-defun (symbol-function 'eval-defun)))
441
442 (defvar edebug-result) ; The result of the function call returned by body.
443
444 ;; We should somehow arrange to be able to do this
445 ;; without actually replacing the eval-defun command.
446 (defun edebug-eval-defun (edebug-it)
447 "Evaluate the top-level form containing point, or after point.
448
449 If the current defun is actually a call to `defvar', then reset the
450 variable using its initial value expression even if the variable
451 already has some other value. (Normally `defvar' does not change the
452 variable's value if it already has a value.) Treat `defcustom'
453 similarly. Reinitialize the face according to `defface' specification.
454
455 With a prefix argument, instrument the code for Edebug.
456
457 Setting option `edebug-all-defs' to a non-nil value reverses the meaning
458 of the prefix argument. Code is then instrumented when this function is
459 invoked without a prefix argument.
460
461 If acting on a `defun' for FUNCTION, and the function was instrumented,
462 `Edebug: FUNCTION' is printed in the minibuffer. If not instrumented,
463 just FUNCTION is printed.
464
465 If not acting on a `defun', the result of evaluation is displayed in
466 the minibuffer."
467 (interactive "P")
468 (let* ((edebugging (not (eq (not edebug-it) (not edebug-all-defs))))
469 (edebug-result)
470 (form
471 (let ((edebug-all-forms edebugging)
472 (edebug-all-defs (eq edebug-all-defs (not edebug-it))))
473 (edebug-read-top-level-form))))
474 ;; This should be consistent with `eval-defun-1', but not the
475 ;; same, since that gets a macroexpanded form.
476 (cond ((and (eq (car form) 'defvar)
477 (cdr-safe (cdr-safe form)))
478 ;; Force variable to be bound.
479 (makunbound (nth 1 form)))
480 ((and (eq (car form) 'defcustom)
481 (default-boundp (nth 1 form)))
482 ;; Force variable to be bound.
483 ;; FIXME: Shouldn't this use the :setter or :initializer?
484 (set-default (nth 1 form) (eval (nth 2 form) lexical-binding)))
485 ((eq (car form) 'defface)
486 ;; Reset the face.
487 (setq face-new-frame-defaults
488 (assq-delete-all (nth 1 form) face-new-frame-defaults))
489 (put (nth 1 form) 'face-defface-spec nil)
490 (put (nth 1 form) 'face-documentation (nth 3 form))
491 ;; See comments in `eval-defun-1' for purpose of code below
492 (setq form (prog1 `(prog1 ,form
493 (put ',(nth 1 form) 'saved-face
494 ',(get (nth 1 form) 'saved-face))
495 (put ',(nth 1 form) 'customized-face
496 ,(nth 2 form)))
497 (put (nth 1 form) 'saved-face nil)))))
498 (setq edebug-result (eval (eval-sexp-add-defvars form) lexical-binding))
499 (if (not edebugging)
500 (princ edebug-result)
501 edebug-result)))
502
503
504 ;;;###autoload
505 (defalias 'edebug-defun 'edebug-eval-top-level-form)
506
507 ;;;###autoload
508 (defun edebug-eval-top-level-form ()
509 "Evaluate the top level form point is in, stepping through with Edebug.
510 This is like `eval-defun' except that it steps the code for Edebug
511 before evaluating it. It displays the value in the echo area
512 using `eval-expression' (which see).
513
514 If you do this on a function definition such as a defun or defmacro,
515 it defines the function and instruments its definition for Edebug,
516 so it will do Edebug stepping when called later. It displays
517 `Edebug: FUNCTION' in the echo area to indicate that FUNCTION is now
518 instrumented for Edebug.
519
520 If the current defun is actually a call to `defvar' or `defcustom',
521 evaluating it this way resets the variable using its initial value
522 expression even if the variable already has some other value.
523 \(Normally `defvar' and `defcustom' do not alter the value if there
524 already is one.)"
525 (interactive)
526 (eval-expression
527 ;; Bind edebug-all-forms only while reading, not while evalling
528 ;; but this causes problems while edebugging edebug.
529 (let ((edebug-all-forms t)
530 (edebug-all-defs t))
531 (eval-sexp-add-defvars
532 (edebug-read-top-level-form)))))
533
534
535 (defun edebug-read-top-level-form ()
536 (let ((starting-point (point)))
537 (end-of-defun)
538 (beginning-of-defun)
539 (prog1
540 (edebug-read-and-maybe-wrap-form)
541 ;; Recover point, but only if no error occurred.
542 (goto-char starting-point))))
543
544
545 ;; Compatibility with old versions.
546 (defalias 'edebug-all-defuns 'edebug-all-defs)
547
548 ;;;###autoload
549 (defun edebug-all-defs ()
550 "Toggle edebugging of all definitions."
551 (interactive)
552 (setq edebug-all-defs (not edebug-all-defs))
553 (message "Edebugging all definitions is %s."
554 (if edebug-all-defs "on" "off")))
555
556
557 ;;;###autoload
558 (defun edebug-all-forms ()
559 "Toggle edebugging of all forms."
560 (interactive)
561 (setq edebug-all-forms (not edebug-all-forms))
562 (message "Edebugging all forms is %s."
563 (if edebug-all-forms "on" "off")))
564
565
566 (defun edebug-install-read-eval-functions ()
567 (interactive)
568 ;; Don't install if already installed.
569 (unless load-read-function
570 (setq load-read-function 'edebug-read)
571 (defalias 'eval-defun 'edebug-eval-defun)))
572
573 (defun edebug-uninstall-read-eval-functions ()
574 (interactive)
575 (setq load-read-function nil)
576 (defalias 'eval-defun (symbol-function 'edebug-original-eval-defun)))
577
578
579 ;;; Edebug internal data
580
581 ;; The internal data that is needed for edebugging is kept in the
582 ;; buffer-local variable `edebug-form-data'.
583
584 (defvar-local edebug-form-data nil
585 "A list of entries associating symbols with buffer regions.
586 Each entry is an `edebug--form-data' struct with fields:
587 SYMBOL, BEGIN-MARKER, and END-MARKER. The markers
588 are at the beginning and end of an entry level form and SYMBOL is
589 a symbol that holds all edebug related information for the form on its
590 property list.
591
592 In the future (haha!), the symbol will be irrelevant and edebug data will
593 be stored in the definitions themselves rather than in the property
594 list of a symbol.")
595
596 (cl-defstruct (edebug--form-data
597 ;; Some callers expect accessors to return nil when passed nil.
598 (:type list)
599 (:constructor edebug--make-form-data-entry (name begin end))
600 (:predicate nil) (:constructor nil) (:copier nil))
601 name begin end)
602
603 (defsubst edebug-set-form-data-entry (entry name begin end)
604 (setf (edebug--form-data-name entry) name) ;; In case name is changed.
605 (set-marker (edebug--form-data-begin entry) begin)
606 (set-marker (edebug--form-data-end entry) end))
607
608 (defun edebug-get-form-data-entry (pnt &optional end-point)
609 ;; Find the edebug form data entry which is closest to PNT.
610 ;; If END-POINT is supplied, match must be exact.
611 ;; Return `nil' if none found.
612 (let ((rest edebug-form-data)
613 closest-entry
614 (closest-dist 999999)) ;; Need maxint here.
615 (while (and rest (< 0 closest-dist))
616 (let* ((entry (car rest))
617 (begin (edebug--form-data-begin entry))
618 (dist (- pnt begin)))
619 (setq rest (cdr rest))
620 (if (and (<= 0 dist)
621 (< dist closest-dist)
622 (or (not end-point)
623 (= end-point (edebug--form-data-end entry)))
624 (<= pnt (edebug--form-data-end entry)))
625 (setq closest-dist dist
626 closest-entry entry))))
627 closest-entry))
628
629 ;; Also need to find all contained entries,
630 ;; and find an entry given a symbol, which should be just assq.
631
632 (defun edebug-form-data-symbol ()
633 "Return the edebug data symbol of the form where point is in.
634 If point is not inside a edebuggable form, cause error."
635 (or (edebug--form-data-name (edebug-get-form-data-entry (point)))
636 (error "Not inside instrumented form")))
637
638 (defun edebug-make-top-form-data-entry (new-entry)
639 ;; Make NEW-ENTRY the first element in the `edebug-form-data' list.
640 (edebug-clear-form-data-entry new-entry)
641 (push new-entry edebug-form-data))
642
643 (defun edebug-clear-form-data-entry (entry)
644 "If non-nil, clear ENTRY out of the form data.
645 Maybe clear the markers and delete the symbol's edebug property?"
646 (if entry
647 (progn
648 ;; Instead of this, we could just find all contained forms.
649 ;; (put (car entry) 'edebug nil) ;
650 ;; (mapcar 'edebug-clear-form-data-entry ; dangerous
651 ;; (get (car entry) 'edebug-dependents))
652 ;; (set-marker (nth 1 entry) nil)
653 ;; (set-marker (nth 2 entry) nil)
654 (setq edebug-form-data (delq entry edebug-form-data)))))
655
656 ;;; Parser utilities
657
658 (defun edebug-syntax-error (&rest args)
659 ;; Signal an invalid-read-syntax with ARGS.
660 (signal 'invalid-read-syntax args))
661
662
663 (defconst edebug-read-syntax-table
664 ;; Lookup table for significant characters indicating the class of the
665 ;; token that follows. This is not a \"real\" syntax table.
666 (let ((table (make-char-table 'syntax-table 'symbol))
667 (i 0))
668 (while (< i ?!)
669 (aset table i 'space)
670 (setq i (1+ i)))
671 (aset table ?\( 'lparen)
672 (aset table ?\) 'rparen)
673 (aset table ?\' 'quote)
674 (aset table ?\` 'backquote)
675 (aset table ?\, 'comma)
676 (aset table ?\" 'string)
677 (aset table ?\? 'char)
678 (aset table ?\[ 'lbracket)
679 (aset table ?\] 'rbracket)
680 (aset table ?\. 'dot)
681 (aset table ?\# 'hash)
682 ;; We treat numbers as symbols, because of confusion with -, -1, and 1-.
683 ;; We don't care about any other chars since they won't be seen.
684 table))
685
686 (defun edebug-next-token-class ()
687 ;; Move to the next token and return its class. We only care about
688 ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector,
689 ;; or symbol.
690 (edebug-skip-whitespace)
691 (if (and (eq (following-char) ?.)
692 (save-excursion
693 (forward-char 1)
694 (or (and (eq (aref edebug-read-syntax-table (following-char))
695 'symbol)
696 (not (= (following-char) ?\;)))
697 (memq (following-char) '(?\, ?\.)))))
698 'symbol
699 (aref edebug-read-syntax-table (following-char))))
700
701
702 (defun edebug-skip-whitespace ()
703 ;; Leave point before the next token, skipping white space and comments.
704 (skip-chars-forward " \t\r\n\f")
705 (while (= (following-char) ?\;)
706 (skip-chars-forward "^\n") ; skip the comment
707 (skip-chars-forward " \t\r\n\f")))
708
709
710 ;; Mostly obsolete reader; still used in one case.
711
712 (defun edebug-read-sexp ()
713 ;; Read one sexp from the current buffer starting at point.
714 ;; Leave point immediately after it. A sexp can be a list or atom.
715 ;; An atom is a symbol (or number), character, string, or vector.
716 ;; This works for reading anything legitimate, but it
717 ;; is gummed up by parser inconsistencies (bugs?)
718 (let ((class (edebug-next-token-class)))
719 (cond
720 ;; read goes one too far if a (possibly quoted) string or symbol
721 ;; is immediately followed by non-whitespace.
722 ((eq class 'symbol) (edebug-original-read (current-buffer)))
723 ((eq class 'string) (edebug-original-read (current-buffer)))
724 ((eq class 'quote) (forward-char 1)
725 (list 'quote (edebug-read-sexp)))
726 ((eq class 'backquote)
727 (list '\` (edebug-read-sexp)))
728 ((eq class 'comma)
729 (list '\, (edebug-read-sexp)))
730 (t ; anything else, just read it.
731 (edebug-original-read (current-buffer))))))
732
733 ;;; Offsets for reader
734
735 ;; Define a structure to represent offset positions of expressions.
736 ;; Each offset structure looks like: (before . after) for constituents,
737 ;; or for structures that have elements: (before <subexpressions> . after)
738 ;; where the <subexpressions> are the offset structures for subexpressions
739 ;; including the head of a list.
740 (defvar edebug-offsets nil)
741
742 ;; Stack of offset structures in reverse order of the nesting.
743 ;; This is used to get back to previous levels.
744 (defvar edebug-offsets-stack nil)
745 (defvar edebug-current-offset nil) ; Top of the stack, for convenience.
746
747 ;; We must store whether we just read a list with a dotted form that
748 ;; is itself a list. This structure will be condensed, so the offsets
749 ;; must also be condensed.
750 (defvar edebug-read-dotted-list nil)
751
752 (defsubst edebug-initialize-offsets ()
753 ;; Reinitialize offset recording.
754 (setq edebug-current-offset nil))
755
756 (defun edebug-store-before-offset (point)
757 ;; Add a new offset pair with POINT as the before offset.
758 (let ((new-offset (list point)))
759 (if edebug-current-offset
760 (setcdr edebug-current-offset
761 (cons new-offset (cdr edebug-current-offset)))
762 ;; Otherwise, we are at the top level, so initialize.
763 (setq edebug-offsets new-offset
764 edebug-offsets-stack nil
765 edebug-read-dotted-list nil))
766 ;; Cons the new offset to the front of the stack.
767 (setq edebug-offsets-stack (cons new-offset edebug-offsets-stack)
768 edebug-current-offset new-offset)
769 ))
770
771 (defun edebug-store-after-offset (point)
772 ;; Finalize the current offset struct by reversing it and
773 ;; store POINT as the after offset.
774 (if (not edebug-read-dotted-list)
775 ;; Just reverse the offsets of all subexpressions.
776 (setcdr edebug-current-offset (nreverse (cdr edebug-current-offset)))
777
778 ;; We just read a list after a dot, which will be abbreviated out.
779 (setq edebug-read-dotted-list nil)
780 ;; Drop the corresponding offset pair.
781 ;; That is, nconc the reverse of the rest of the offsets
782 ;; with the cdr of last offset.
783 (setcdr edebug-current-offset
784 (nconc (nreverse (cdr (cdr edebug-current-offset)))
785 (cdr (car (cdr edebug-current-offset))))))
786
787 ;; Now append the point using nconc.
788 (setq edebug-current-offset (nconc edebug-current-offset point))
789 ;; Pop the stack.
790 (setq edebug-offsets-stack (cdr edebug-offsets-stack)
791 edebug-current-offset (car edebug-offsets-stack)))
792
793 (defun edebug-ignore-offset ()
794 ;; Ignore the last created offset pair.
795 (setcdr edebug-current-offset (cdr (cdr edebug-current-offset))))
796
797 (defmacro edebug-storing-offsets (point &rest body)
798 (declare (debug (form body)) (indent 1))
799 `(unwind-protect
800 (progn
801 (edebug-store-before-offset ,point)
802 ,@body)
803 (edebug-store-after-offset (point))))
804
805
806 ;;; Reader for Emacs Lisp.
807
808 ;; Uses edebug-next-token-class (and edebug-skip-whitespace) above.
809
810 (defconst edebug-read-alist
811 '((symbol . edebug-read-symbol)
812 (lparen . edebug-read-list)
813 (string . edebug-read-string)
814 (quote . edebug-read-quote)
815 (backquote . edebug-read-backquote)
816 (comma . edebug-read-comma)
817 (lbracket . edebug-read-vector)
818 (hash . edebug-read-function)
819 ))
820
821 (defun edebug-read-storing-offsets (stream)
822 (let (edebug-read-dotted-list) ; see edebug-store-after-offset
823 (edebug-storing-offsets (point)
824 (funcall
825 (or (cdr (assq (edebug-next-token-class) edebug-read-alist))
826 ;; anything else, just read it.
827 'edebug-original-read)
828 stream))))
829
830 (defun edebug-read-symbol (stream)
831 (edebug-original-read stream))
832
833 (defun edebug-read-string (stream)
834 (edebug-original-read stream))
835
836 (defun edebug-read-quote (stream)
837 ;; Turn 'thing into (quote thing)
838 (forward-char 1)
839 (list
840 (edebug-storing-offsets (1- (point)) 'quote)
841 (edebug-read-storing-offsets stream)))
842
843 (defun edebug-read-backquote (stream)
844 ;; Turn `thing into (\` thing)
845 (forward-char 1)
846 (list
847 (edebug-storing-offsets (1- (point)) '\`)
848 (edebug-read-storing-offsets stream)))
849
850 (defun edebug-read-comma (stream)
851 ;; Turn ,thing into (\, thing). Handle ,@ and ,. also.
852 (let ((opoint (point)))
853 (forward-char 1)
854 (let ((symbol '\,))
855 (cond ((eq (following-char) ?\.)
856 (setq symbol '\,\.)
857 (forward-char 1))
858 ((eq (following-char) ?\@)
859 (setq symbol '\,@)
860 (forward-char 1)))
861 ;; Generate the same structure of offsets we would have
862 ;; if the resulting list appeared verbatim in the input text.
863 (list
864 (edebug-storing-offsets opoint symbol)
865 (edebug-read-storing-offsets stream)))))
866
867 (defun edebug-read-function (stream)
868 ;; Turn #'thing into (function thing)
869 (forward-char 1)
870 (cond ((eq ?\' (following-char))
871 (forward-char 1)
872 (list
873 (edebug-storing-offsets (- (point) 2) 'function)
874 (edebug-read-storing-offsets stream)))
875 ((memq (following-char) '(?: ?B ?O ?X ?b ?o ?x ?1 ?2 ?3 ?4 ?5 ?6
876 ?7 ?8 ?9 ?0))
877 (backward-char 1)
878 (edebug-original-read stream))
879 (t (edebug-syntax-error "Bad char after #"))))
880
881 (defun edebug-read-list (stream)
882 (forward-char 1) ; skip \(
883 (prog1
884 (let ((elements))
885 (while (not (memq (edebug-next-token-class) '(rparen dot)))
886 (push (edebug-read-storing-offsets stream) elements))
887 (setq elements (nreverse elements))
888 (if (eq 'dot (edebug-next-token-class))
889 (let (dotted-form)
890 (forward-char 1) ; skip \.
891 (setq dotted-form (edebug-read-storing-offsets stream))
892 elements (nconc elements dotted-form)
893 (if (not (eq (edebug-next-token-class) 'rparen))
894 (edebug-syntax-error "Expected `)'"))
895 (setq edebug-read-dotted-list (listp dotted-form))
896 ))
897 elements)
898 (forward-char 1) ; skip \)
899 ))
900
901 (defun edebug-read-vector (stream)
902 (forward-char 1) ; skip \[
903 (prog1
904 (let ((elements))
905 (while (not (eq 'rbracket (edebug-next-token-class)))
906 (push (edebug-read-storing-offsets stream) elements))
907 (apply 'vector (nreverse elements)))
908 (forward-char 1) ; skip \]
909 ))
910
911 ;;; Cursors for traversal of list and vector elements with offsets.
912
913 (defvar edebug-dotted-spec nil)
914
915 (defun edebug-new-cursor (expressions offsets)
916 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
917 (if (vectorp expressions)
918 (setq expressions (append expressions nil)))
919 (cons expressions offsets))
920
921 (defsubst edebug-set-cursor (cursor expressions offsets)
922 ;; Set the CURSOR's EXPRESSIONS and OFFSETS to the given.
923 ;; Return the cursor.
924 (setcar cursor expressions)
925 (setcdr cursor offsets)
926 cursor)
927
928 (defun edebug-copy-cursor (cursor)
929 ;; Copy the cursor using the same object and offsets.
930 (cons (car cursor) (cdr cursor)))
931
932 (defsubst edebug-cursor-expressions (cursor)
933 (car cursor))
934 (defsubst edebug-cursor-offsets (cursor)
935 (cdr cursor))
936
937 (defsubst edebug-empty-cursor (cursor)
938 ;; Return non-nil if CURSOR is empty - meaning no more elements.
939 (null (car cursor)))
940
941 (defsubst edebug-top-element (cursor)
942 ;; Return the top element at the cursor.
943 ;; Assumes not empty.
944 (car (car cursor)))
945
946 (defun edebug-top-element-required (cursor &rest error)
947 ;; Check if a dotted form is required.
948 (if edebug-dotted-spec (edebug-no-match cursor "Dot expected."))
949 ;; Check if there is at least one more argument.
950 (if (edebug-empty-cursor cursor) (apply 'edebug-no-match cursor error))
951 ;; Return that top element.
952 (edebug-top-element cursor))
953
954 (defsubst edebug-top-offset (cursor)
955 ;; Return the top offset pair corresponding to the top element.
956 (car (cdr cursor)))
957
958 (defun edebug-move-cursor (cursor)
959 ;; Advance and return the cursor to the next element and offset.
960 ;; throw no-match if empty before moving.
961 ;; This is a violation of the cursor encapsulation, but
962 ;; there is plenty of that going on while matching.
963 ;; The following test should always fail.
964 (if (edebug-empty-cursor cursor)
965 (edebug-no-match cursor "Not enough arguments."))
966 (setcar cursor (cdr (car cursor)))
967 (setcdr cursor (cdr (cdr cursor)))
968 cursor)
969
970
971 (defun edebug-before-offset (cursor)
972 ;; Return the before offset of the cursor.
973 ;; If there is nothing left in the offsets,
974 ;; return one less than the offset itself,
975 ;; which is the after offset for a list.
976 (let ((offset (edebug-cursor-offsets cursor)))
977 (if (consp offset)
978 (car (car offset))
979 (1- offset))))
980
981 (defun edebug-after-offset (cursor)
982 ;; Return the after offset of the cursor object.
983 (let ((offset (edebug-top-offset cursor)))
984 (while (consp offset)
985 (setq offset (cdr offset)))
986 offset))
987
988 ;;; The Parser
989
990 ;; The top level function for parsing forms is
991 ;; edebug-read-and-maybe-wrap-form; it calls all the rest. It checks the
992 ;; syntax a bit and leaves point at any error it finds, but otherwise
993 ;; should appear to work like eval-defun.
994
995 ;; The basic plan is to surround each expression with a call to
996 ;; the edebug debugger together with indexes into a table of positions of
997 ;; all expressions. Thus an expression "exp" becomes:
998
999 ;; (edebug-after (edebug-before 1) 2 exp)
1000
1001 ;; When this is evaluated, first point is moved to the beginning of
1002 ;; exp at offset 1 of the current function. The expression is
1003 ;; evaluated, which may cause more edebug calls, and then point is
1004 ;; moved to offset 2 after the end of exp.
1005
1006 ;; The highest level expressions of the function are wrapped in a call to
1007 ;; edebug-enter, which supplies the function name and the actual
1008 ;; arguments to the function. See functions edebug-enter, edebug-before,
1009 ;; and edebug-after for more details.
1010
1011 ;; Dynamically bound vars, left unbound, but globally declared.
1012 ;; This is to quiet the byte compiler.
1013
1014 ;; Window data of the highest definition being wrapped.
1015 ;; This data is shared by all embedded definitions.
1016 (defvar edebug-top-window-data)
1017
1018 (defvar edebug-&optional)
1019 (defvar edebug-&rest)
1020 (defvar edebug-gate nil) ;; whether no-match forces an error.
1021
1022 (defvar edebug-def-name nil) ; name of definition, used by interactive-form
1023 (defvar edebug-old-def-name nil) ; previous name of containing definition.
1024
1025 (defvar edebug-error-point nil)
1026 (defvar edebug-best-error nil)
1027
1028
1029 (defun edebug-read-and-maybe-wrap-form ()
1030 ;; Read a form and wrap it with edebug calls, if the conditions are right.
1031 ;; Here we just catch any no-match not caught below and signal an error.
1032
1033 ;; Run the setup hook.
1034 ;; If it gets an error, make it nil.
1035 (let ((temp-hook edebug-setup-hook))
1036 (setq edebug-setup-hook nil)
1037 (if (functionp temp-hook) (funcall temp-hook)
1038 (mapc #'funcall temp-hook)))
1039
1040 (let (result
1041 edebug-top-window-data
1042 edebug-def-name;; make sure it is locally nil
1043 ;; I don't like these here!!
1044 edebug-&optional
1045 edebug-&rest
1046 edebug-gate
1047 edebug-best-error
1048 edebug-error-point
1049 no-match
1050 ;; Do this once here instead of several times.
1051 (max-lisp-eval-depth (+ 800 max-lisp-eval-depth))
1052 (max-specpdl-size (+ 2000 max-specpdl-size)))
1053 (setq no-match
1054 (catch 'no-match
1055 (setq result (edebug-read-and-maybe-wrap-form1))
1056 nil))
1057 (if no-match
1058 (apply 'edebug-syntax-error no-match))
1059 result))
1060
1061
1062 (defun edebug-read-and-maybe-wrap-form1 ()
1063 (let (spec
1064 def-kind
1065 defining-form-p
1066 def-name
1067 ;; These offset things don't belong here, but to support recursive
1068 ;; calls to edebug-read, they need to be here.
1069 edebug-offsets
1070 edebug-offsets-stack
1071 edebug-current-offset ; reset to nil
1072 )
1073 (save-excursion
1074 (if (and (eq 'lparen (edebug-next-token-class))
1075 (eq 'symbol (progn (forward-char 1) (edebug-next-token-class))))
1076 ;; Find out if this is a defining form from first symbol
1077 (setq def-kind (edebug-original-read (current-buffer))
1078 spec (and (symbolp def-kind) (get-edebug-spec def-kind))
1079 defining-form-p (and (listp spec)
1080 (eq '&define (car spec)))
1081 ;; This is incorrect in general!! But OK most of the time.
1082 def-name (if (and defining-form-p
1083 (eq 'name (car (cdr spec)))
1084 (eq 'symbol (edebug-next-token-class)))
1085 (edebug-original-read (current-buffer))))))
1086 ;;;(message "all defs: %s all forms: %s" edebug-all-defs edebug-all-forms)
1087 (cond
1088 (defining-form-p
1089 (if (or edebug-all-defs edebug-all-forms)
1090 ;; If it is a defining form and we are edebugging defs,
1091 ;; then let edebug-list-form start it.
1092 (let ((cursor (edebug-new-cursor
1093 (list (edebug-read-storing-offsets (current-buffer)))
1094 (list edebug-offsets))))
1095 (car
1096 (edebug-make-form-wrapper
1097 cursor
1098 (edebug-before-offset cursor)
1099 (1- (edebug-after-offset cursor))
1100 (list (cons (symbol-name def-kind) (cdr spec))))))
1101
1102 ;; Not edebugging this form, so reset the symbol's edebug
1103 ;; property to be just a marker at the definition's source code.
1104 ;; This only works for defs with simple names.
1105 (put def-name 'edebug (point-marker))
1106 ;; Also nil out dependent defs.
1107 '(mapcar (function
1108 (lambda (def)
1109 (put def-name 'edebug nil)))
1110 (get def-name 'edebug-dependents))
1111 (edebug-read-sexp)))
1112
1113 ;; If all forms are being edebugged, explicitly wrap it.
1114 (edebug-all-forms
1115 (let ((cursor (edebug-new-cursor
1116 (list (edebug-read-storing-offsets (current-buffer)))
1117 (list edebug-offsets))))
1118 (edebug-make-form-wrapper
1119 cursor
1120 (edebug-before-offset cursor)
1121 (edebug-after-offset cursor)
1122 nil)))
1123
1124 ;; Not a defining form, and not edebugging.
1125 (t (edebug-read-sexp)))
1126 ))
1127
1128
1129 (defvar edebug-def-args) ; args of defining form.
1130 (defvar edebug-def-interactive) ; is it an emacs interactive function?
1131 (defvar edebug-inside-func) ;; whether code is inside function context.
1132 ;; Currently def-form sets this to nil; def-body sets it to t.
1133
1134 (defun edebug-interactive-p-name ()
1135 ;; Return a unique symbol for the variable used to store the
1136 ;; status of interactive-p for this function.
1137 (intern (format "edebug-%s-interactive-p" edebug-def-name)))
1138
1139
1140 (defun edebug-wrap-def-body (forms)
1141 "Wrap the FORMS of a definition body."
1142 (if edebug-def-interactive
1143 `(let ((,(edebug-interactive-p-name)
1144 (interactive-p)))
1145 ,(edebug-make-enter-wrapper forms))
1146 (edebug-make-enter-wrapper forms)))
1147
1148
1149 (defun edebug-make-enter-wrapper (forms)
1150 ;; Generate the enter wrapper for some forms of a definition.
1151 ;; This is not to be used for the body of other forms, e.g. `while',
1152 ;; since it wraps the list of forms with a call to `edebug-enter'.
1153 ;; Uses the dynamically bound vars edebug-def-name and edebug-def-args.
1154 ;; Do this after parsing since that may find a name.
1155 (setq edebug-def-name
1156 (or edebug-def-name edebug-old-def-name (cl-gensym "edebug-anon")))
1157 `(edebug-enter
1158 (quote ,edebug-def-name)
1159 ,(if edebug-inside-func
1160 `(list
1161 ;; Doesn't work with more than one def-body!!
1162 ;; But the list will just be reversed.
1163 ,@(nreverse edebug-def-args))
1164 'nil)
1165 (function (lambda () ,@forms))
1166 ))
1167
1168
1169 (defvar edebug-form-begin-marker) ; the mark for def being instrumented
1170
1171 (defvar edebug-offset-index) ; the next available offset index.
1172 (defvar edebug-offset-list) ; the list of offset positions.
1173
1174 (defun edebug-inc-offset (offset)
1175 ;; Modifies edebug-offset-index and edebug-offset-list
1176 ;; accesses edebug-func-marc and buffer point.
1177 (prog1
1178 edebug-offset-index
1179 (setq edebug-offset-list (cons (- offset edebug-form-begin-marker)
1180 edebug-offset-list)
1181 edebug-offset-index (1+ edebug-offset-index))))
1182
1183
1184 (defun edebug-make-before-and-after-form (before-index form after-index)
1185 ;; Return the edebug form for the current function at offset BEFORE-INDEX
1186 ;; given FORM. Looks like:
1187 ;; (edebug-after (edebug-before BEFORE-INDEX) AFTER-INDEX FORM)
1188 ;; Also increment the offset index for subsequent use.
1189 `(edebug-after (edebug-before ,before-index) ,after-index ,form))
1190
1191 (defun edebug-make-after-form (form after-index)
1192 ;; Like edebug-make-before-and-after-form, but only after.
1193 `(edebug-after 0 ,after-index ,form))
1194
1195
1196 (defun edebug-unwrap (sexp)
1197 "Return the unwrapped SEXP or return it as is if it is not wrapped.
1198 The SEXP might be the result of wrapping a body, which is a list of
1199 expressions; a `progn' form will be returned enclosing these forms."
1200 (if (consp sexp)
1201 (cond
1202 ((eq 'edebug-after (car sexp))
1203 (nth 3 sexp))
1204 ((eq 'edebug-enter (car sexp))
1205 (macroexp-progn (nthcdr 2 (nth 1 (nth 3 sexp)))))
1206 (t sexp);; otherwise it is not wrapped, so just return it.
1207 )
1208 sexp))
1209
1210 (defun edebug-unwrap* (sexp)
1211 "Return the SEXP recursively unwrapped."
1212 (let ((new-sexp (edebug-unwrap sexp)))
1213 (while (not (eq sexp new-sexp))
1214 (setq sexp new-sexp
1215 new-sexp (edebug-unwrap sexp)))
1216 (if (consp new-sexp)
1217 (mapcar 'edebug-unwrap* new-sexp)
1218 new-sexp)))
1219
1220
1221 (defun edebug-defining-form (cursor form-begin form-end speclist)
1222 ;; Process the defining form, starting outside the form.
1223 ;; The speclist is a generated list spec that looks like:
1224 ;; (("def-symbol" defining-form-spec-sans-&define))
1225 ;; Skip the first offset.
1226 (edebug-set-cursor cursor (edebug-cursor-expressions cursor)
1227 (cdr (edebug-cursor-offsets cursor)))
1228 (edebug-make-form-wrapper
1229 cursor
1230 form-begin (1- form-end)
1231 speclist))
1232
1233 (defun edebug-make-form-wrapper (cursor form-begin form-end
1234 &optional speclist)
1235 ;; Wrap a form, usually a defining form, but any evaluated one.
1236 ;; If speclist is non-nil, this is being called by edebug-defining-form.
1237 ;; Otherwise it is being called from edebug-read-and-maybe-wrap-form1.
1238 ;; This is a hack, but I haven't figured out a simpler way yet.
1239 (let* ((form-data-entry (edebug-get-form-data-entry form-begin form-end))
1240 ;; Set this marker before parsing.
1241 (edebug-form-begin-marker
1242 (if form-data-entry
1243 (edebug--form-data-begin form-data-entry)
1244 ;; Buffer must be current-buffer for this to work:
1245 (set-marker (make-marker) form-begin))))
1246
1247 (let (edebug-offset-list
1248 (edebug-offset-index 0)
1249 result
1250 ;; For definitions.
1251 ;; (edebug-containing-def-name edebug-def-name)
1252 ;; Get name from form-data, if any.
1253 (edebug-old-def-name (edebug--form-data-name form-data-entry))
1254 edebug-def-name
1255 edebug-def-args
1256 edebug-def-interactive
1257 edebug-inside-func;; whether wrapped code executes inside a function.
1258 )
1259
1260 (setq result
1261 (if speclist
1262 (edebug-match cursor speclist)
1263
1264 ;; else wrap as an enter-form.
1265 (edebug-make-enter-wrapper (list (edebug-form cursor)))))
1266
1267 ;; Set the name here if it was not set by edebug-make-enter-wrapper.
1268 (setq edebug-def-name
1269 (or edebug-def-name edebug-old-def-name (cl-gensym "edebug-anon")))
1270
1271 ;; Add this def as a dependent of containing def. Buggy.
1272 '(if (and edebug-containing-def-name
1273 (not (get edebug-containing-def-name 'edebug-dependents)))
1274 (put edebug-containing-def-name 'edebug-dependents
1275 (cons edebug-def-name
1276 (get edebug-containing-def-name
1277 'edebug-dependents))))
1278
1279 ;; Create a form-data-entry or modify existing entry's markers.
1280 ;; In the latter case, pointers to the entry remain eq.
1281 (if (not form-data-entry)
1282 (setq form-data-entry
1283 (edebug--make-form-data-entry
1284 edebug-def-name
1285 edebug-form-begin-marker
1286 ;; Buffer must be current-buffer.
1287 (set-marker (make-marker) form-end)
1288 ))
1289 (edebug-set-form-data-entry
1290 form-data-entry edebug-def-name ;; in case name is changed
1291 form-begin form-end))
1292
1293 ;; (message "defining: %s" edebug-def-name) (sit-for 2)
1294 (edebug-make-top-form-data-entry form-data-entry)
1295 (message "Edebug: %s" edebug-def-name)
1296 ;;(debug edebug-def-name)
1297
1298 ;; Destructively reverse edebug-offset-list and make vector from it.
1299 (setq edebug-offset-list (vconcat (nreverse edebug-offset-list)))
1300
1301 ;; Side effects on the property list of edebug-def-name.
1302 (edebug-clear-frequency-count edebug-def-name)
1303 (edebug-clear-coverage edebug-def-name)
1304
1305 ;; Set up the initial window data.
1306 (if (not edebug-top-window-data) ;; if not already set, do it now.
1307 (let ((window ;; Find the best window for this buffer.
1308 (or (get-buffer-window (current-buffer))
1309 (selected-window))))
1310 (setq edebug-top-window-data
1311 (cons window (window-start window)))))
1312
1313 ;; Store the edebug data in symbol's property list.
1314 (put edebug-def-name 'edebug
1315 ;; A struct or vector would be better here!!
1316 (list edebug-form-begin-marker
1317 nil ; clear breakpoints
1318 edebug-offset-list
1319 edebug-top-window-data
1320 ))
1321 result
1322 )))
1323
1324
1325 (defun edebug-clear-frequency-count (name)
1326 ;; Create initial frequency count vector.
1327 ;; For each stop point, the counter is incremented each time it is visited.
1328 (put name 'edebug-freq-count
1329 (make-vector (length edebug-offset-list) 0)))
1330
1331
1332 (defun edebug-clear-coverage (name)
1333 ;; Create initial coverage vector.
1334 ;; Only need one per expression, but it is simpler to use stop points.
1335 (put name 'edebug-coverage
1336 (make-vector (length edebug-offset-list) 'unknown)))
1337
1338
1339 (defun edebug-form (cursor)
1340 ;; Return the instrumented form for the following form.
1341 ;; Add the point offsets to the edebug-offset-list for the form.
1342 (let* ((form (edebug-top-element-required cursor "Expected form"))
1343 (offset (edebug-top-offset cursor)))
1344 (prog1
1345 (cond
1346 ((consp form)
1347 ;; The first offset for a list form is for the list form itself.
1348 (if (eq 'quote (car form))
1349 form
1350 (let* ((head (car form))
1351 (spec (and (symbolp head) (get-edebug-spec head)))
1352 (new-cursor (edebug-new-cursor form offset)))
1353 ;; Find out if this is a defining form from first symbol.
1354 ;; An indirect spec would not work here, yet.
1355 (if (and (consp spec) (eq '&define (car spec)))
1356 (edebug-defining-form
1357 new-cursor
1358 (car offset);; before the form
1359 (edebug-after-offset cursor)
1360 (cons (symbol-name head) (cdr spec)))
1361 ;; Wrap a regular form.
1362 (edebug-make-before-and-after-form
1363 (edebug-inc-offset (car offset))
1364 (edebug-list-form new-cursor)
1365 ;; After processing the list form, the new-cursor is left
1366 ;; with the offset after the form.
1367 (edebug-inc-offset (edebug-cursor-offsets new-cursor))))
1368 )))
1369
1370 ((symbolp form)
1371 (cond
1372 ;; Check for constant symbols that don't get wrapped.
1373 ((or (memq form '(t nil))
1374 (keywordp form))
1375 form)
1376
1377 (t ;; just a variable
1378 (edebug-make-after-form form (edebug-inc-offset (cdr offset))))))
1379
1380 ;; Anything else is self-evaluating.
1381 (t form))
1382 (edebug-move-cursor cursor))))
1383
1384
1385 (defsubst edebug-forms (cursor) (edebug-match cursor '(&rest form)))
1386 (defsubst edebug-sexps (cursor) (edebug-match cursor '(&rest sexp)))
1387
1388 (defsubst edebug-list-form-args (head cursor)
1389 ;; Process the arguments of a list form given that head of form is a symbol.
1390 ;; Helper for edebug-list-form
1391 (let ((spec (get-edebug-spec head)))
1392 (cond
1393 (spec
1394 (cond
1395 ((consp spec)
1396 ;; It is a speclist.
1397 (let (edebug-best-error
1398 edebug-error-point);; This may not be needed.
1399 (edebug-match-sublist cursor spec)))
1400 ((eq t spec) (edebug-forms cursor))
1401 ((eq 0 spec) (edebug-sexps cursor))
1402 ((symbolp spec) (funcall spec cursor));; Not used by edebug,
1403 ; but leave it in for compatibility.
1404 ))
1405 ;; No edebug-form-spec provided.
1406 ((macrop head)
1407 (if edebug-eval-macro-args
1408 (edebug-forms cursor)
1409 (edebug-sexps cursor)))
1410 (t ;; Otherwise it is a function call.
1411 (edebug-forms cursor)))))
1412
1413
1414 (defun edebug-list-form (cursor)
1415 ;; Return an instrumented form built from the list form.
1416 ;; The after offset will be left in the cursor after processing the form.
1417 (let ((head (edebug-top-element-required cursor "Expected elements"))
1418 ;; Prevent backtracking whenever instrumenting.
1419 (edebug-gate t)
1420 ;; A list form is never optional because it matches anything.
1421 (edebug-&optional nil)
1422 (edebug-&rest nil))
1423 ;; Skip the first offset.
1424 (edebug-set-cursor cursor (edebug-cursor-expressions cursor)
1425 (cdr (edebug-cursor-offsets cursor)))
1426 (cond
1427 ((symbolp head)
1428 (cond
1429 ((null head) nil) ; () is valid.
1430 ((eq head 'interactive-p)
1431 ;; Special case: replace (interactive-p) with variable
1432 (setq edebug-def-interactive 'check-it)
1433 (edebug-move-cursor cursor)
1434 (edebug-interactive-p-name))
1435 (t
1436 (cons head (edebug-list-form-args
1437 head (edebug-move-cursor cursor))))))
1438
1439 ((consp head)
1440 (if (eq (car head) '\,)
1441 ;; The head of a form should normally be a symbol or a lambda
1442 ;; expression but it can also be an unquote form to be filled
1443 ;; before evaluation. We evaluate the arguments anyway, on the
1444 ;; assumption that the unquote form will place a proper function
1445 ;; name (rather than a macro name).
1446 (edebug-match cursor '(("," def-form) body))
1447 ;; Process anonymous function and args.
1448 ;; This assumes no anonymous macros.
1449 (edebug-match-specs cursor '(lambda-expr body) 'edebug-match-specs)))
1450
1451 (t (edebug-syntax-error
1452 "Head of list form must be a symbol or lambda expression")))
1453 ))
1454
1455 ;;; Matching of specs.
1456
1457 (defvar edebug-after-dotted-spec nil)
1458
1459 (defvar edebug-matching-depth 0) ;; initial value
1460 (defconst edebug-max-depth 150) ;; maximum number of matching recursions.
1461
1462
1463 ;;; Failure to match
1464
1465 ;; This throws to no-match, if there are higher alternatives.
1466 ;; Otherwise it signals an error. The place of the error is found
1467 ;; with the two before- and after-offset functions.
1468
1469 (defun edebug-no-match (cursor &rest args)
1470 ;; Throw a no-match, or signal an error immediately if gate is active.
1471 ;; Remember this point in case we need to report this error.
1472 (setq edebug-error-point (or edebug-error-point
1473 (edebug-before-offset cursor))
1474 edebug-best-error (or edebug-best-error args))
1475 (if (and edebug-gate (not edebug-&optional))
1476 (progn
1477 (if edebug-error-point
1478 (goto-char edebug-error-point))
1479 (apply 'edebug-syntax-error args))
1480 (throw 'no-match args)))
1481
1482
1483 (defun edebug-match (cursor specs)
1484 ;; Top level spec matching function.
1485 ;; Used also at each lower level of specs.
1486 (let (edebug-&optional
1487 edebug-&rest
1488 edebug-best-error
1489 edebug-error-point
1490 (edebug-gate edebug-gate) ;; locally bound to limit effect
1491 )
1492 (edebug-match-specs cursor specs 'edebug-match-specs)))
1493
1494
1495 (defun edebug-match-one-spec (cursor spec)
1496 ;; Match one spec, which is not a keyword &-spec.
1497 (cond
1498 ((symbolp spec) (edebug-match-symbol cursor spec))
1499 ((vectorp spec) (edebug-match cursor (append spec nil)))
1500 ((stringp spec) (edebug-match-string cursor spec))
1501 ((listp spec) (edebug-match-list cursor spec))
1502 ))
1503
1504
1505 (defun edebug-match-specs (cursor specs remainder-handler)
1506 ;; Append results of matching the list of specs.
1507 ;; The first spec is handled and the remainder-handler handles the rest.
1508 (let ((edebug-matching-depth
1509 (if (> edebug-matching-depth edebug-max-depth)
1510 (error "Too deep - perhaps infinite loop in spec?")
1511 (1+ edebug-matching-depth))))
1512 (cond
1513 ((null specs) nil)
1514
1515 ;; Is the spec dotted?
1516 ((atom specs)
1517 (let ((edebug-dotted-spec t));; Containing spec list was dotted.
1518 (edebug-match-specs cursor (list specs) remainder-handler)))
1519
1520 ;; Is the form dotted?
1521 ((not (listp (edebug-cursor-expressions cursor)));; allow nil
1522 (if (not edebug-dotted-spec)
1523 (edebug-no-match cursor "Dotted spec required."))
1524 ;; Cancel dotted spec and dotted form.
1525 (let ((edebug-dotted-spec)
1526 (this-form (edebug-cursor-expressions cursor))
1527 (this-offset (edebug-cursor-offsets cursor)))
1528 ;; Wrap the form in a list, (by changing the cursor??)...
1529 (edebug-set-cursor cursor (list this-form) this-offset)
1530 ;; and process normally, then unwrap the result.
1531 (car (edebug-match-specs cursor specs remainder-handler))))
1532
1533 (t;; Process normally.
1534 (let* ((spec (car specs))
1535 (rest)
1536 (first-char (and (symbolp spec) (aref (symbol-name spec) 0))))
1537 ;;(message "spec = %s first char = %s" spec first-char) (sit-for 1)
1538 (nconc
1539 (cond
1540 ((eq ?& first-char);; "&" symbols take all following specs.
1541 (funcall (get-edebug-spec spec) cursor (cdr specs)))
1542 ((eq ?: first-char);; ":" symbols take one following spec.
1543 (setq rest (cdr (cdr specs)))
1544 (funcall (get-edebug-spec spec) cursor (car (cdr specs))))
1545 (t;; Any other normal spec.
1546 (setq rest (cdr specs))
1547 (edebug-match-one-spec cursor spec)))
1548 (funcall remainder-handler cursor rest remainder-handler)))))))
1549
1550
1551 ;; Define specs for all the symbol specs with functions used to process them.
1552 ;; Perhaps we shouldn't be doing this with edebug-form-specs since the
1553 ;; user may want to define macros or functions with the same names.
1554 ;; We could use an internal obarray for these primitive specs.
1555
1556 (dolist (pair '((&optional . edebug-match-&optional)
1557 (&rest . edebug-match-&rest)
1558 (&or . edebug-match-&or)
1559 (form . edebug-match-form)
1560 (sexp . edebug-match-sexp)
1561 (body . edebug-match-body)
1562 (&define . edebug-match-&define)
1563 (name . edebug-match-name)
1564 (:name . edebug-match-colon-name)
1565 (arg . edebug-match-arg)
1566 (def-body . edebug-match-def-body)
1567 (def-form . edebug-match-def-form)
1568 ;; Less frequently used:
1569 ;; (function . edebug-match-function)
1570 (lambda-expr . edebug-match-lambda-expr)
1571 (&not . edebug-match-&not)
1572 (&key . edebug-match-&key)
1573 (place . edebug-match-place)
1574 (gate . edebug-match-gate)
1575 ;; (nil . edebug-match-nil) not this one - special case it.
1576 ))
1577 (put (car pair) 'edebug-form-spec (cdr pair)))
1578
1579 (defun edebug-match-symbol (cursor symbol)
1580 ;; Match a symbol spec.
1581 (let* ((spec (get-edebug-spec symbol)))
1582 (cond
1583 (spec
1584 (if (consp spec)
1585 ;; It is an indirect spec.
1586 (edebug-match cursor spec)
1587 ;; Otherwise it should be the symbol name of a function.
1588 ;; There could be a bug here - maybe need to do edebug-match bindings.
1589 (funcall spec cursor)))
1590
1591 ((null symbol) ;; special case this.
1592 (edebug-match-nil cursor))
1593
1594 ((fboundp symbol) ; is it a predicate?
1595 (let ((sexp (edebug-top-element-required cursor "Expected" symbol)))
1596 ;; Special case for edebug-`.
1597 (if (and (listp sexp) (eq (car sexp) '\,))
1598 (edebug-match cursor '(("," def-form)))
1599 (if (not (funcall symbol sexp))
1600 (edebug-no-match cursor symbol "failed"))
1601 (edebug-move-cursor cursor)
1602 (list sexp))))
1603 (t (error "%s is not a form-spec or function" symbol))
1604 )))
1605
1606
1607 (defun edebug-match-sexp (cursor)
1608 (list (prog1 (edebug-top-element-required cursor "Expected sexp")
1609 (edebug-move-cursor cursor))))
1610
1611 (defun edebug-match-form (cursor)
1612 (list (edebug-form cursor)))
1613
1614 (defalias 'edebug-match-place 'edebug-match-form)
1615 ;; Currently identical to edebug-match-form.
1616 ;; This is for common lisp setf-style place arguments.
1617
1618 (defsubst edebug-match-body (cursor) (edebug-forms cursor))
1619
1620 (defun edebug-match-&optional (cursor specs)
1621 ;; Keep matching until one spec fails.
1622 (edebug-&optional-wrapper cursor specs 'edebug-&optional-wrapper))
1623
1624 (defun edebug-&optional-wrapper (cursor specs remainder-handler)
1625 (let (result
1626 (edebug-&optional specs)
1627 (edebug-gate nil)
1628 (this-form (edebug-cursor-expressions cursor))
1629 (this-offset (edebug-cursor-offsets cursor)))
1630 (if (null (catch 'no-match
1631 (setq result
1632 (edebug-match-specs cursor specs remainder-handler))
1633 ;; Returning nil means no no-match was thrown.
1634 nil))
1635 result
1636 ;; no-match, but don't fail; just reset cursor and return nil.
1637 (edebug-set-cursor cursor this-form this-offset)
1638 nil)))
1639
1640
1641 (defun edebug-&rest-wrapper (cursor specs remainder-handler)
1642 (if (null specs) (setq specs edebug-&rest))
1643 ;; Reuse the &optional handler with this as the remainder handler.
1644 (edebug-&optional-wrapper cursor specs remainder-handler))
1645
1646 (defun edebug-match-&rest (cursor specs)
1647 ;; Repeatedly use specs until failure.
1648 (let ((edebug-&rest specs) ;; remember these
1649 edebug-best-error
1650 edebug-error-point)
1651 (edebug-&rest-wrapper cursor specs 'edebug-&rest-wrapper)))
1652
1653
1654 (defun edebug-match-&or (cursor specs)
1655 ;; Keep matching until one spec succeeds, and return its results.
1656 ;; If none match, fail.
1657 ;; This needs to be optimized since most specs spend time here.
1658 (let ((original-specs specs)
1659 (this-form (edebug-cursor-expressions cursor))
1660 (this-offset (edebug-cursor-offsets cursor)))
1661 (catch 'matched
1662 (while specs
1663 (catch 'no-match
1664 (throw 'matched
1665 (let (edebug-gate ;; only while matching each spec
1666 edebug-best-error
1667 edebug-error-point)
1668 ;; Doesn't support e.g. &or symbolp &rest form
1669 (edebug-match-one-spec cursor (car specs)))))
1670 ;; Match failed, so reset and try again.
1671 (setq specs (cdr specs))
1672 ;; Reset the cursor for the next match.
1673 (edebug-set-cursor cursor this-form this-offset))
1674 ;; All failed.
1675 (apply 'edebug-no-match cursor "Expected one of" original-specs))
1676 ))
1677
1678
1679 (defun edebug-match-&not (cursor specs)
1680 ;; If any specs match, then fail
1681 (if (null (catch 'no-match
1682 (let ((edebug-gate nil))
1683 (save-excursion
1684 (edebug-match-&or cursor specs)))
1685 nil))
1686 ;; This means something matched, so it is a no match.
1687 (edebug-no-match cursor "Unexpected"))
1688 ;; This means nothing matched, so it is OK.
1689 nil) ;; So, return nothing
1690
1691
1692 (def-edebug-spec &key edebug-match-&key)
1693
1694 (defun edebug-match-&key (cursor specs)
1695 ;; Following specs must look like (<name> <spec>) ...
1696 ;; where <name> is the name of a keyword, and spec is its spec.
1697 ;; This really doesn't save much over the expanded form and takes time.
1698 (edebug-match-&rest
1699 cursor
1700 (cons '&or
1701 (mapcar (function (lambda (pair)
1702 (vector (format ":%s" (car pair))
1703 (car (cdr pair)))))
1704 specs))))
1705
1706
1707 (defun edebug-match-gate (_cursor)
1708 ;; Simply set the gate to prevent backtracking at this level.
1709 (setq edebug-gate t)
1710 nil)
1711
1712
1713 (defun edebug-match-list (cursor specs)
1714 ;; The spec is a list, but what kind of list, and what context?
1715 (if edebug-dotted-spec
1716 ;; After dotted spec but form did not contain dot,
1717 ;; so match list spec elements as if spliced in.
1718 (prog1
1719 (let ((edebug-dotted-spec))
1720 (edebug-match-specs cursor specs 'edebug-match-specs))
1721 ;; If it matched, really clear the dotted-spec flag.
1722 (setq edebug-dotted-spec nil))
1723 (let ((spec (car specs))
1724 (form (edebug-top-element-required cursor "Expected" specs)))
1725 (cond
1726 ((eq 'quote spec)
1727 (let ((spec (car (cdr specs))))
1728 (cond
1729 ((symbolp spec)
1730 ;; Special case: spec quotes a symbol to match.
1731 ;; Change in future. Use "..." instead.
1732 (if (not (eq spec form))
1733 (edebug-no-match cursor "Expected" spec))
1734 (edebug-move-cursor cursor)
1735 (setq edebug-gate t)
1736 form)
1737 (t
1738 (error "Bad spec: %s" specs)))))
1739
1740 ((listp form)
1741 (prog1
1742 (list (edebug-match-sublist
1743 ;; First offset is for the list form itself.
1744 ;; Treat nil as empty list.
1745 (edebug-new-cursor form (cdr (edebug-top-offset cursor)))
1746 specs))
1747 (edebug-move-cursor cursor)))
1748
1749 ((and (eq 'vector spec) (vectorp form))
1750 ;; Special case: match a vector with the specs.
1751 (let ((result (edebug-match-sublist
1752 (edebug-new-cursor
1753 form (cdr (edebug-top-offset cursor)))
1754 (cdr specs))))
1755 (edebug-move-cursor cursor)
1756 (list (apply 'vector result))))
1757
1758 (t (edebug-no-match cursor "Expected" specs)))
1759 )))
1760
1761
1762 (defun edebug-match-sublist (cursor specs)
1763 ;; Match a sublist of specs.
1764 (let (edebug-&optional
1765 ;;edebug-best-error
1766 ;;edebug-error-point
1767 )
1768 (prog1
1769 ;; match with edebug-match-specs so edebug-best-error is not bound.
1770 (edebug-match-specs cursor specs 'edebug-match-specs)
1771 (if (not (edebug-empty-cursor cursor))
1772 (if edebug-best-error
1773 (apply 'edebug-no-match cursor edebug-best-error)
1774 ;; A failed &rest or &optional spec may leave some args.
1775 (edebug-no-match cursor "Failed matching" specs)
1776 )))))
1777
1778
1779 (defun edebug-match-string (cursor spec)
1780 (let ((sexp (edebug-top-element-required cursor "Expected" spec)))
1781 (if (not (eq (intern spec) sexp))
1782 (edebug-no-match cursor "Expected" spec)
1783 ;; Since it matched, failure means immediate error, unless &optional.
1784 (setq edebug-gate t)
1785 (edebug-move-cursor cursor)
1786 (list sexp)
1787 )))
1788
1789 (defun edebug-match-nil (cursor)
1790 ;; There must be nothing left to match a nil.
1791 (if (not (edebug-empty-cursor cursor))
1792 (edebug-no-match cursor "Unmatched argument(s)")
1793 nil))
1794
1795
1796 (defun edebug-match-function (_cursor)
1797 (error "Use function-form instead of function in edebug spec"))
1798
1799 (defun edebug-match-&define (cursor specs)
1800 ;; Match a defining form.
1801 ;; Normally, &define is interpreted specially other places.
1802 ;; This should only be called inside of a spec list to match the remainder
1803 ;; of the current list. e.g. ("lambda" &define args def-body)
1804 (edebug-make-form-wrapper
1805 cursor
1806 (edebug-before-offset cursor)
1807 ;; Find the last offset in the list.
1808 (let ((offsets (edebug-cursor-offsets cursor)))
1809 (while (consp offsets) (setq offsets (cdr offsets)))
1810 offsets)
1811 specs))
1812
1813 (defun edebug-match-lambda-expr (cursor)
1814 ;; The expression must be a function.
1815 ;; This will match any list form that begins with a symbol
1816 ;; that has an edebug-form-spec beginning with &define. In
1817 ;; practice, only lambda expressions should be used.
1818 ;; I could add a &lambda specification to avoid confusion.
1819 (let* ((sexp (edebug-top-element-required
1820 cursor "Expected lambda expression"))
1821 (offset (edebug-top-offset cursor))
1822 (head (and (consp sexp) (car sexp)))
1823 (spec (and (symbolp head) (get-edebug-spec head)))
1824 (edebug-inside-func nil))
1825 ;; Find out if this is a defining form from first symbol.
1826 (if (and (consp spec) (eq '&define (car spec)))
1827 (prog1
1828 (list
1829 (edebug-defining-form
1830 (edebug-new-cursor sexp offset)
1831 (car offset);; before the sexp
1832 (edebug-after-offset cursor)
1833 (cons (symbol-name head) (cdr spec))))
1834 (edebug-move-cursor cursor))
1835 (edebug-no-match cursor "Expected lambda expression")
1836 )))
1837
1838
1839 (defun edebug-match-name (cursor)
1840 ;; Set the edebug-def-name bound in edebug-defining-form.
1841 (let ((name (edebug-top-element-required cursor "Expected name")))
1842 ;; Maybe strings and numbers could be used.
1843 (if (not (symbolp name))
1844 (edebug-no-match cursor "Symbol expected for name of definition"))
1845 (setq edebug-def-name
1846 (if edebug-def-name
1847 ;; Construct a new name by appending to previous name.
1848 (intern (format "%s@%s" edebug-def-name name))
1849 name))
1850 (edebug-move-cursor cursor)
1851 (list name)))
1852
1853 (defun edebug-match-colon-name (_cursor spec)
1854 ;; Set the edebug-def-name to the spec.
1855 (setq edebug-def-name
1856 (if edebug-def-name
1857 ;; Construct a new name by appending to previous name.
1858 (intern (format "%s@%s" edebug-def-name spec))
1859 spec))
1860 nil)
1861
1862 (defun edebug-match-arg (cursor)
1863 ;; set the def-args bound in edebug-defining-form
1864 (let ((edebug-arg (edebug-top-element-required cursor "Expected arg")))
1865 (if (or (not (symbolp edebug-arg))
1866 (edebug-lambda-list-keywordp edebug-arg))
1867 (edebug-no-match cursor "Bad argument:" edebug-arg))
1868 (edebug-move-cursor cursor)
1869 (setq edebug-def-args (cons edebug-arg edebug-def-args))
1870 (list edebug-arg)))
1871
1872 (defun edebug-match-def-form (cursor)
1873 ;; Like form but the form is wrapped in edebug-enter form.
1874 ;; The form is assumed to be executing outside of the function context.
1875 ;; This is a hack for now, since a def-form might execute inside as well.
1876 ;; Not to be used otherwise.
1877 (let ((edebug-inside-func nil))
1878 (list (edebug-make-enter-wrapper (list (edebug-form cursor))))))
1879
1880 (defun edebug-match-def-body (cursor)
1881 ;; Like body but body is wrapped in edebug-enter form.
1882 ;; The body is assumed to be executing inside of the function context.
1883 ;; Not to be used otherwise.
1884 (let ((edebug-inside-func t))
1885 (list (edebug-wrap-def-body (edebug-forms cursor)))))
1886
1887
1888 ;;;; Edebug Form Specs
1889 ;;; ==========================================================
1890
1891 ;;;;* Spec for def-edebug-spec
1892 ;;; Out of date.
1893
1894 (defun edebug-spec-p (object)
1895 "Return non-nil if OBJECT is a symbol with an edebug-form-spec property."
1896 (and (symbolp object)
1897 (get object 'edebug-form-spec)))
1898
1899 (def-edebug-spec def-edebug-spec
1900 ;; Top level is different from lower levels.
1901 (&define :name edebug-spec name
1902 &or "nil" edebug-spec-p "t" "0" (&rest edebug-spec)))
1903
1904 (def-edebug-spec edebug-spec-list
1905 ;; A list must have something in it, or it is nil, a symbolp
1906 ((edebug-spec . [&or nil edebug-spec])))
1907
1908 (def-edebug-spec edebug-spec
1909 (&or
1910 (vector &rest edebug-spec) ; matches a vector
1911 ("vector" &rest edebug-spec) ; matches a vector spec
1912 ("quote" symbolp)
1913 edebug-spec-list
1914 stringp
1915 [edebug-lambda-list-keywordp &rest edebug-spec]
1916 [keywordp gate edebug-spec]
1917 edebug-spec-p ;; Including all the special ones e.g. form.
1918 symbolp;; a predicate
1919 ))
1920
1921
1922 ;;;* Emacs special forms and some functions.
1923
1924 ;; quote expects only one argument, although it allows any number.
1925 (def-edebug-spec quote sexp)
1926
1927 ;; The standard defining forms.
1928 (def-edebug-spec defconst defvar)
1929 (def-edebug-spec defvar (symbolp &optional form stringp))
1930
1931 (def-edebug-spec defun
1932 (&define name lambda-list
1933 [&optional stringp]
1934 [&optional ("interactive" interactive)]
1935 def-body))
1936 ;; FIXME? Isn't this missing the doc-string? Cf defun.
1937 (def-edebug-spec defmacro
1938 ;; FIXME: Improve `declare' so we can Edebug gv-expander and
1939 ;; gv-setter declarations.
1940 (&define name lambda-list [&optional ("declare" &rest sexp)] def-body))
1941
1942 (def-edebug-spec arglist lambda-list) ;; deprecated - use lambda-list.
1943
1944 (def-edebug-spec lambda-list
1945 (([&rest arg]
1946 [&optional ["&optional" arg &rest arg]]
1947 &optional ["&rest" arg]
1948 )))
1949
1950 (def-edebug-spec interactive
1951 (&optional &or stringp def-form))
1952
1953 ;; A function-form is for an argument that may be a function or a form.
1954 ;; This specially recognizes anonymous functions quoted with quote.
1955 (def-edebug-spec function-form
1956 ;; form at the end could also handle "function",
1957 ;; but recognize it specially to avoid wrapping function forms.
1958 (&or ([&or "quote" "function"] &or symbolp lambda-expr) form))
1959
1960 ;; function expects a symbol or a lambda or macro expression
1961 ;; A macro is allowed by Emacs.
1962 (def-edebug-spec function (&or symbolp lambda-expr))
1963
1964 ;; A macro expression is a lambda expression with "macro" prepended.
1965 (def-edebug-spec macro (&define "lambda" lambda-list def-body))
1966
1967 ;; (def-edebug-spec anonymous-form ((&or ["lambda" lambda] ["macro" macro])))
1968
1969 ;; Standard functions that take function-forms arguments.
1970
1971 ;; FIXME? The manual uses this form (maybe that's just for illustration?):
1972 ;; (def-edebug-spec let
1973 ;; ((&rest &or symbolp (gate symbolp &optional form))
1974 ;; body))
1975 (def-edebug-spec let
1976 ((&rest &or (symbolp &optional form) symbolp)
1977 body))
1978
1979 (def-edebug-spec let* let)
1980
1981 (def-edebug-spec setq (&rest symbolp form))
1982 (def-edebug-spec setq-default setq)
1983
1984 (def-edebug-spec cond (&rest (&rest form)))
1985
1986 (def-edebug-spec condition-case
1987 (symbolp
1988 form
1989 &rest ([&or symbolp (&rest symbolp)] body)))
1990
1991
1992 (def-edebug-spec \` (backquote-form))
1993
1994 ;; Supports quotes inside backquotes,
1995 ;; but only at the top level inside unquotes.
1996 (def-edebug-spec backquote-form
1997 (&or
1998 ([&or "," ",@"] &or ("quote" backquote-form) form)
1999 ;; The simple version:
2000 ;; (backquote-form &rest backquote-form)
2001 ;; doesn't handle (a . ,b). The straightforward fix:
2002 ;; (backquote-form . [&or nil backquote-form])
2003 ;; uses up too much stack space.
2004 ;; Note that `(foo . ,@bar) is not valid, so we don't need to handle it.
2005 (backquote-form [&rest [&not ","] backquote-form]
2006 . [&or nil backquote-form])
2007 ;; If you use dotted forms in backquotes, replace the previous line
2008 ;; with the following. This takes quite a bit more stack space, however.
2009 ;; (backquote-form . [&or nil backquote-form])
2010 (vector &rest backquote-form)
2011 sexp))
2012
2013 ;; Special version of backquote that instruments backquoted forms
2014 ;; destined to be evaluated, usually as the result of a
2015 ;; macroexpansion. Backquoted code can only have unquotes (, and ,@)
2016 ;; in places where list forms are allowed, and predicates. If the
2017 ;; backquote is used in a macro, unquoted code that come from
2018 ;; arguments must be instrumented, if at all, with def-form not def-body.
2019
2020 ;; We could assume that all forms (not nested in other forms)
2021 ;; in arguments of macros should be def-forms, whether or not the macros
2022 ;; are defined with edebug-` but this would be expensive.
2023
2024 ;; ,@ might have some problems.
2025
2026 (defalias 'edebug-\` '\`) ;; same macro as regular backquote.
2027 (def-edebug-spec edebug-\` (def-form))
2028
2029 ;; Assume immediate quote in unquotes mean backquote at next higher level.
2030 (def-edebug-spec \, (&or ("quote" edebug-\`) def-form))
2031 (def-edebug-spec \,@ (&define ;; so (,@ form) is never wrapped.
2032 &or ("quote" edebug-\`) def-form))
2033
2034 ;; New byte compiler.
2035
2036 (def-edebug-spec save-selected-window t)
2037 (def-edebug-spec save-current-buffer t)
2038
2039 ;; Anything else?
2040
2041 ;;; The debugger itself
2042
2043 (defvar edebug-active nil) ;; Non-nil when edebug is active
2044
2045 (defvar edebug-stack nil)
2046 ;; Stack of active functions evaluated via edebug.
2047 ;; Should be nil at the top level.
2048
2049 (defvar edebug-stack-depth -1)
2050 ;; Index of last edebug-stack item.
2051
2052 (defvar edebug-offset-indices nil)
2053 ;; Stack of offset indices of visited edebug sexps.
2054 ;; Should be nil at the top level.
2055 ;; Each function adds one cons. Top is modified with setcar.
2056
2057
2058 (defvar edebug-entered nil
2059 ;; Non-nil if edebug has already been entered at this recursive edit level.
2060 ;; This should stay nil at the top level.
2061 )
2062
2063 ;; Should these be options?
2064 (defconst edebug-debugger 'edebug
2065 ;; Name of function to use for debugging when error or quit occurs.
2066 ;; Set this to 'debug if you want to debug edebug.
2067 )
2068
2069
2070 ;; Dynamically bound variables, declared globally but left unbound.
2071 (defvar edebug-function) ; the function being executed. change name!!
2072 (defvar edebug-data) ; the edebug data for the function
2073 (defvar edebug-def-mark) ; the mark for the definition
2074 (defvar edebug-freq-count) ; the count of expression visits.
2075 (defvar edebug-coverage) ; the coverage results of each expression of function.
2076
2077 (defvar edebug-buffer) ; which buffer the function is in.
2078
2079 (defvar edebug-execution-mode 'step) ; Current edebug mode set by user.
2080 (defvar edebug-next-execution-mode nil) ; Use once instead of initial mode.
2081
2082 (defvar edebug-outside-debug-on-error) ; the value of debug-on-error outside
2083 (defvar edebug-outside-debug-on-quit) ; the value of debug-on-quit outside
2084
2085 ;;; Handling signals
2086
2087 (defun edebug-signal (signal-name signal-data)
2088 "Signal an error. Args are SIGNAL-NAME, and associated DATA.
2089 A signal name is a symbol with an `error-conditions' property
2090 that is a list of condition names.
2091 A handler for any of those names will get to handle this signal.
2092 The symbol `error' should always be one of them.
2093
2094 DATA should be a list. Its elements are printed as part of the error message.
2095 If the signal is handled, DATA is made available to the handler.
2096 See `condition-case'.
2097
2098 This is the Edebug replacement for the standard `signal'. It should
2099 only be active while Edebug is. It checks `debug-on-error' to see
2100 whether it should call the debugger. When execution is resumed, the
2101 error is signaled again."
2102 (if (and (listp debug-on-error) (memq signal-name debug-on-error))
2103 (edebug 'error (cons signal-name signal-data)))
2104 ;; If we reach here without another non-local exit, then send signal again.
2105 ;; i.e. the signal is not continuable, yet.
2106 ;; Avoid infinite recursion.
2107 (let ((signal-hook-function nil))
2108 (signal signal-name signal-data)))
2109
2110 ;;; Entering Edebug
2111
2112 (defun edebug-enter (function args body)
2113 ;; Entering FUNC. The arguments are ARGS, and the body is BODY.
2114 ;; Setup edebug variables and evaluate BODY. This function is called
2115 ;; when a function evaluated with edebug-eval-top-level-form is entered.
2116 ;; Return the result of BODY.
2117
2118 ;; Is this the first time we are entering edebug since
2119 ;; lower-level recursive-edit command?
2120 ;; More precisely, this tests whether Edebug is currently active.
2121 (let ((edebug-function function))
2122 (if (not edebug-entered)
2123 (let ((edebug-entered t)
2124 ;; Binding max-lisp-eval-depth here is OK,
2125 ;; but not inside an unwind-protect.
2126 ;; Doing it here also keeps it from growing too large.
2127 (max-lisp-eval-depth (+ 100 max-lisp-eval-depth)) ; too much??
2128 (max-specpdl-size (+ 200 max-specpdl-size))
2129
2130 (debugger edebug-debugger) ; only while edebug is active.
2131 (edebug-outside-debug-on-error debug-on-error)
2132 (edebug-outside-debug-on-quit debug-on-quit)
2133 ;; Binding these may not be the right thing to do.
2134 ;; We want to allow the global values to be changed.
2135 (debug-on-error (or debug-on-error edebug-on-error))
2136 (debug-on-quit edebug-on-quit))
2137 (unwind-protect
2138 (let ((signal-hook-function 'edebug-signal))
2139 (setq edebug-execution-mode (or edebug-next-execution-mode
2140 edebug-initial-mode
2141 edebug-execution-mode)
2142 edebug-next-execution-mode nil)
2143 (edebug-enter function args body))))
2144
2145 (let* ((edebug-data (get function 'edebug))
2146 (edebug-def-mark (car edebug-data)) ; mark at def start
2147 (edebug-freq-count (get function 'edebug-freq-count))
2148 (edebug-coverage (get function 'edebug-coverage))
2149 (edebug-buffer (marker-buffer edebug-def-mark))
2150
2151 (edebug-stack (cons function edebug-stack))
2152 (edebug-offset-indices (cons 0 edebug-offset-indices))
2153 )
2154 (if (get function 'edebug-on-entry)
2155 (progn
2156 (setq edebug-execution-mode 'step)
2157 (if (eq (get function 'edebug-on-entry) 'temp)
2158 (put function 'edebug-on-entry nil))))
2159 (if edebug-trace
2160 (edebug--enter-trace function args body)
2161 (funcall body))
2162 ))))
2163
2164 (defun edebug-var-status (var)
2165 "Return a cons cell describing the status of VAR's current binding.
2166 The purpose of this function is so you can properly undo
2167 subsequent changes to the same binding, by passing the status
2168 cons cell to `edebug-restore-status'. The status cons cell
2169 has the form (LOCUS . VALUE), where LOCUS can be a buffer
2170 \(for a buffer-local binding), a frame (for a frame-local binding),
2171 or nil (if the default binding is current)."
2172 (cons (variable-binding-locus var)
2173 (symbol-value var)))
2174
2175 (defun edebug-restore-status (var status)
2176 "Reset VAR based on STATUS.
2177 STATUS should be a list returned by `edebug-var-status'."
2178 (let ((locus (car status))
2179 (value (cdr status)))
2180 (cond ((bufferp locus)
2181 (if (buffer-live-p locus)
2182 (with-current-buffer locus
2183 (set var value))))
2184 ((framep locus)
2185 (modify-frame-parameters locus (list (cons var value))))
2186 (t
2187 (set var value)))))
2188
2189 (defun edebug--enter-trace (function args body)
2190 (let ((edebug-stack-depth (1+ edebug-stack-depth))
2191 edebug-result)
2192 (edebug-print-trace-before
2193 (format "%s args: %s" function args))
2194 (prog1 (setq edebug-result (funcall body))
2195 (edebug-print-trace-after
2196 (format "%s result: %s" function edebug-result)))))
2197
2198 (def-edebug-spec edebug-tracing (form body))
2199
2200 (defmacro edebug-tracing (msg &rest body)
2201 "Print MSG in *edebug-trace* before and after evaluating BODY.
2202 The result of BODY is also printed."
2203 `(let ((edebug-stack-depth (1+ edebug-stack-depth))
2204 edebug-result)
2205 (edebug-print-trace-before ,msg)
2206 (prog1 (setq edebug-result (progn ,@body))
2207 (edebug-print-trace-after
2208 (format "%s result: %s" ,msg edebug-result)))))
2209
2210 (defun edebug-print-trace-before (msg)
2211 "Function called to print trace info before expression evaluation.
2212 MSG is printed after `::::{ '."
2213 (edebug-trace-display
2214 edebug-trace-buffer "%s{ %s" (make-string edebug-stack-depth ?\:) msg))
2215
2216 (defun edebug-print-trace-after (msg)
2217 "Function called to print trace info after expression evaluation.
2218 MSG is printed after `::::} '."
2219 (edebug-trace-display
2220 edebug-trace-buffer "%s} %s" (make-string edebug-stack-depth ?\:) msg))
2221
2222
2223
2224 (defun edebug-slow-before (before-index)
2225 (unless edebug-active
2226 ;; Debug current function given BEFORE position.
2227 ;; Called from functions compiled with edebug-eval-top-level-form.
2228 ;; Return the before index.
2229 (setcar edebug-offset-indices before-index)
2230
2231 ;; Increment frequency count
2232 (aset edebug-freq-count before-index
2233 (1+ (aref edebug-freq-count before-index)))
2234
2235 (if (or (not (memq edebug-execution-mode '(Go-nonstop next)))
2236 (input-pending-p))
2237 (edebug-debugger before-index 'before nil)))
2238 before-index)
2239
2240 (defun edebug-fast-before (_before-index)
2241 ;; Do nothing.
2242 )
2243
2244 (defun edebug-slow-after (_before-index after-index value)
2245 (if edebug-active
2246 value
2247 ;; Debug current function given AFTER position and VALUE.
2248 ;; Called from functions compiled with edebug-eval-top-level-form.
2249 ;; Return VALUE.
2250 (setcar edebug-offset-indices after-index)
2251
2252 ;; Increment frequency count
2253 (aset edebug-freq-count after-index
2254 (1+ (aref edebug-freq-count after-index)))
2255 (if edebug-test-coverage (edebug--update-coverage after-index value))
2256
2257 (if (and (eq edebug-execution-mode 'Go-nonstop)
2258 (not (input-pending-p)))
2259 ;; Just return result.
2260 value
2261 (edebug-debugger after-index 'after value)
2262 )))
2263
2264 (defun edebug-fast-after (_before-index _after-index value)
2265 ;; Do nothing but return the value.
2266 value)
2267
2268 (defun edebug-run-slow ()
2269 (defalias 'edebug-before 'edebug-slow-before)
2270 (defalias 'edebug-after 'edebug-slow-after))
2271
2272 ;; This is not used, yet.
2273 (defun edebug-run-fast ()
2274 (defalias 'edebug-before 'edebug-fast-before)
2275 (defalias 'edebug-after 'edebug-fast-after))
2276
2277 (edebug-run-slow)
2278
2279
2280 (defun edebug--update-coverage (after-index value)
2281 (let ((old-result (aref edebug-coverage after-index)))
2282 (cond
2283 ((eq 'ok-coverage old-result))
2284 ((eq 'unknown old-result)
2285 (aset edebug-coverage after-index value))
2286 ;; Test if a different result.
2287 ((not (eq value old-result))
2288 (aset edebug-coverage after-index 'ok-coverage)))))
2289
2290
2291 ;; Dynamically declared unbound variables.
2292 (defvar edebug-breakpoints)
2293 (defvar edebug-break-data) ; break data for current function.
2294 (defvar edebug-break) ; whether a break occurred.
2295 (defvar edebug-global-break) ; whether a global break occurred.
2296 (defvar edebug-break-condition) ; whether the breakpoint is conditional.
2297
2298 (defvar edebug-break-result nil)
2299 (defvar edebug-global-break-result nil)
2300
2301
2302 (defun edebug-debugger (offset-index arg-mode value)
2303 (if inhibit-redisplay
2304 ;; Don't really try to enter edebug within an eval from redisplay.
2305 value
2306 ;; Check breakpoints and pending input.
2307 ;; If edebug display should be updated, call edebug--display.
2308 ;; Return value.
2309 (let* ( ;; This needs to be here since breakpoints may be changed.
2310 (edebug-breakpoints (car (cdr edebug-data))) ; list of breakpoints
2311 (edebug-break-data (assq offset-index edebug-breakpoints))
2312 (edebug-break-condition (car (cdr edebug-break-data)))
2313 (edebug-global-break
2314 (if edebug-global-break-condition
2315 (condition-case nil
2316 (setq edebug-global-break-result
2317 (edebug-eval edebug-global-break-condition))
2318 (error nil))))
2319 (edebug-break))
2320
2321 ;;(edebug-trace "exp: %s" value)
2322 ;; Test whether we should break.
2323 (setq edebug-break
2324 (or edebug-global-break
2325 (and edebug-break-data
2326 (or (not edebug-break-condition)
2327 (setq edebug-break-result
2328 (edebug-eval edebug-break-condition))))))
2329 (if (and edebug-break
2330 (nth 2 edebug-break-data)) ; is it temporary?
2331 ;; Delete the breakpoint.
2332 (setcdr edebug-data
2333 (cons (delq edebug-break-data edebug-breakpoints)
2334 (cdr (cdr edebug-data)))))
2335
2336 ;; Display if mode is not go, continue, or Continue-fast
2337 ;; or break, or input is pending,
2338 (if (or (not (memq edebug-execution-mode '(go continue Continue-fast)))
2339 edebug-break
2340 (input-pending-p))
2341 (edebug--display value offset-index arg-mode)) ; <---------- display
2342
2343 value)))
2344
2345
2346 ;; window-start now stored with each function.
2347 ;;(defvar edebug-window-start nil)
2348 ;; Remember where each buffers' window starts between edebug calls.
2349 ;; This is to avoid spurious recentering.
2350 ;; Does this still need to be buffer-local??
2351 ;;(setq-default edebug-window-start nil)
2352 ;;(make-variable-buffer-local 'edebug-window-start)
2353
2354
2355 ;; Dynamically declared unbound vars
2356 (defvar edebug-point) ; the point in edebug buffer
2357 (defvar edebug-outside-buffer) ; the current-buffer outside of edebug
2358 (defvar edebug-outside-point) ; the point outside of edebug
2359 (defvar edebug-outside-mark) ; the mark outside of edebug
2360 (defvar edebug-window-data) ; window and window-start for current function
2361 (defvar edebug-outside-windows) ; outside window configuration
2362 (defvar edebug-eval-buffer) ; for the evaluation list.
2363 (defvar edebug-outside-d-c-i-n-s-w) ; outside default-cursor-in-non-selected-windows
2364
2365 (defvar edebug-eval-list nil) ;; List of expressions to evaluate.
2366
2367 (defvar edebug-previous-result nil) ;; Last result returned.
2368
2369 ;; Emacs 19 adds an arg to mark and mark-marker.
2370 (defalias 'edebug-mark-marker 'mark-marker)
2371
2372 (defun edebug--display (value offset-index arg-mode)
2373 (unless (marker-position edebug-def-mark)
2374 ;; The buffer holding the source has been killed.
2375 ;; Let's at least show a backtrace so the user can figure out
2376 ;; which function we're talking about.
2377 (debug))
2378 ;; Setup windows for edebug, determine mode, maybe enter recursive-edit.
2379 ;; Uses local variables of edebug-enter, edebug-before, edebug-after
2380 ;; and edebug-debugger.
2381 (let ((edebug-active t) ; For minor mode alist.
2382 (edebug-with-timeout-suspend (with-timeout-suspend))
2383 edebug-stop ; Should we enter recursive-edit?
2384 (edebug-point (+ edebug-def-mark
2385 (aref (nth 2 edebug-data) offset-index)))
2386 edebug-buffer-outside-point ; current point in edebug-buffer
2387 ;; window displaying edebug-buffer
2388 (edebug-window-data (nth 3 edebug-data))
2389 (edebug-outside-window (selected-window))
2390 (edebug-outside-buffer (current-buffer))
2391 (edebug-outside-point (point))
2392 (edebug-outside-mark (edebug-mark))
2393 edebug-outside-windows ; Window or screen configuration.
2394 edebug-buffer-points
2395
2396 edebug-eval-buffer ; Declared here so we can kill it below.
2397 (eval-result-list (and edebug-eval-list
2398 (edebug-eval-result-list)))
2399 edebug-trace-window
2400 edebug-trace-window-start
2401
2402 (edebug-outside-d-c-i-n-s-w
2403 (default-value 'cursor-in-non-selected-windows)))
2404 (unwind-protect
2405 (let ((overlay-arrow-position overlay-arrow-position)
2406 (overlay-arrow-string overlay-arrow-string)
2407 (cursor-in-echo-area nil)
2408 (unread-command-events nil)
2409 ;; any others??
2410 )
2411 (setq-default cursor-in-non-selected-windows t)
2412 (if (not (buffer-name edebug-buffer))
2413 (user-error "Buffer defining %s not found" edebug-function))
2414
2415 (if (eq 'after arg-mode)
2416 ;; Compute result string now before windows are modified.
2417 (edebug-compute-previous-result value))
2418
2419 (if edebug-save-windows
2420 ;; Save windows now before we modify them.
2421 (setq edebug-outside-windows
2422 (edebug-current-windows edebug-save-windows)))
2423
2424 (if edebug-save-displayed-buffer-points
2425 (setq edebug-buffer-points (edebug-get-displayed-buffer-points)))
2426
2427 ;; First move the edebug buffer point to edebug-point
2428 ;; so that window start doesn't get changed when we display it.
2429 ;; I don't know if this is going to help.
2430 ;;(set-buffer edebug-buffer)
2431 ;;(goto-char edebug-point)
2432
2433 ;; If edebug-buffer is not currently displayed,
2434 ;; first find a window for it.
2435 (edebug-pop-to-buffer edebug-buffer (car edebug-window-data))
2436 (setcar edebug-window-data (selected-window))
2437
2438 ;; Now display eval list, if any.
2439 ;; This is done after the pop to edebug-buffer
2440 ;; so that buffer-window correspondence is correct after quitting.
2441 (edebug-eval-display eval-result-list)
2442 ;; The evaluation list better not have deleted edebug-window-data.
2443 (select-window (car edebug-window-data))
2444 (set-buffer edebug-buffer)
2445
2446 (setq edebug-buffer-outside-point (point))
2447 (goto-char edebug-point)
2448
2449 (if (eq 'before arg-mode)
2450 ;; Check whether positions are up-to-date.
2451 ;; This assumes point is never before symbol.
2452 (if (not (memq (following-char) '(?\( ?\# ?\` )))
2453 (user-error "Source has changed - reevaluate definition of %s"
2454 edebug-function)
2455 ))
2456
2457 (setcdr edebug-window-data
2458 (edebug-adjust-window (cdr edebug-window-data)))
2459
2460 ;; Test if there is input, not including keyboard macros.
2461 (if (input-pending-p)
2462 (progn
2463 (setq edebug-execution-mode 'step
2464 edebug-stop t)
2465 (edebug-stop)
2466 ;; (discard-input) ; is this unfriendly??
2467 ))
2468 ;; Now display arrow based on mode.
2469 (edebug-overlay-arrow)
2470
2471 (cond
2472 ((eq 'error arg-mode)
2473 ;; Display error message
2474 (setq edebug-execution-mode 'step)
2475 (edebug-overlay-arrow)
2476 (beep)
2477 (if (eq 'quit (car value))
2478 (message "Quit")
2479 (edebug-report-error value)))
2480 (edebug-break
2481 (cond
2482 (edebug-global-break
2483 (message "Global Break: %s => %s"
2484 edebug-global-break-condition
2485 edebug-global-break-result))
2486 (edebug-break-condition
2487 (message "Break: %s => %s"
2488 edebug-break-condition
2489 edebug-break-result))
2490 ((not (eq edebug-execution-mode 'Continue-fast))
2491 (message "Break"))
2492 (t)))
2493
2494 (t (message "")))
2495
2496 (if (eq 'after arg-mode)
2497 (progn
2498 ;; Display result of previous evaluation.
2499 (if (and edebug-break
2500 (not (eq edebug-execution-mode 'Continue-fast)))
2501 (sit-for edebug-sit-for-seconds)) ; Show message.
2502 (edebug-previous-result)))
2503
2504 (cond
2505 (edebug-break
2506 (cond
2507 ((eq edebug-execution-mode 'continue)
2508 (sit-for edebug-sit-for-seconds))
2509 ((eq edebug-execution-mode 'Continue-fast) (sit-for 0))
2510 (t (setq edebug-stop t))))
2511 ;; not edebug-break
2512 ((eq edebug-execution-mode 'trace)
2513 (sit-for edebug-sit-for-seconds)) ; Force update and pause.
2514 ((eq edebug-execution-mode 'Trace-fast)
2515 (sit-for 0))) ; Force update and continue.
2516
2517 (unwind-protect
2518 (if (or edebug-stop
2519 (memq edebug-execution-mode '(step next))
2520 (eq arg-mode 'error))
2521 (progn
2522 ;; (setq edebug-execution-mode 'step)
2523 ;; (edebug-overlay-arrow) ; This doesn't always show up.
2524 (edebug--recursive-edit arg-mode))) ; <----- Recursive edit
2525
2526 ;; Reset the edebug-window-data to whatever it is now.
2527 (let ((window (if (eq (window-buffer) edebug-buffer)
2528 (selected-window)
2529 (get-buffer-window edebug-buffer))))
2530 ;; Remember window-start for edebug-buffer, if still displayed.
2531 (if window
2532 (progn
2533 (setcar edebug-window-data window)
2534 (setcdr edebug-window-data (window-start window)))))
2535
2536 ;; Save trace window point before restoring outside windows.
2537 ;; Could generalize this for other buffers.
2538 (setq edebug-trace-window (get-buffer-window edebug-trace-buffer))
2539 (if edebug-trace-window
2540 (setq edebug-trace-window-start
2541 (and edebug-trace-window
2542 (window-start edebug-trace-window))))
2543
2544 ;; Restore windows before continuing.
2545 (if edebug-save-windows
2546 (progn
2547 (edebug-set-windows edebug-outside-windows)
2548
2549 ;; Restore displayed buffer points.
2550 ;; Needed even if restoring windows because
2551 ;; window-points are not restored. (should they be??)
2552 (if edebug-save-displayed-buffer-points
2553 (edebug-set-buffer-points edebug-buffer-points))
2554
2555 ;; Unrestore trace window's window-point.
2556 (if edebug-trace-window
2557 (set-window-start edebug-trace-window
2558 edebug-trace-window-start))
2559
2560 ;; Unrestore edebug-buffer's window-start, if displayed.
2561 (let ((window (car edebug-window-data)))
2562 (if (and (edebug-window-live-p window)
2563 (eq (window-buffer) edebug-buffer))
2564 (progn
2565 (set-window-start window (cdr edebug-window-data)
2566 'no-force)
2567 ;; Unrestore edebug-buffer's window-point.
2568 ;; Needed in addition to setting the buffer point
2569 ;; - otherwise quitting doesn't leave point as is.
2570 ;; But this causes point to not be restored at times.
2571 ;; Also, it may not be a visible window.
2572 ;; (set-window-point window edebug-point)
2573 )))
2574
2575 ;; Unrestore edebug-buffer's point. Rerestored below.
2576 ;; (goto-char edebug-point) ;; in edebug-buffer
2577 )
2578 ;; Since we may be in a save-excursion, in case of quit,
2579 ;; reselect the outside window only.
2580 ;; Only needed if we are not recovering windows??
2581 (if (edebug-window-live-p edebug-outside-window)
2582 (select-window edebug-outside-window))
2583 ) ; if edebug-save-windows
2584
2585 ;; Restore current buffer always, in case application needs it.
2586 (if (buffer-name edebug-outside-buffer)
2587 (set-buffer edebug-outside-buffer))
2588 ;; Restore point, and mark.
2589 ;; Needed even if restoring windows because
2590 ;; that doesn't restore point and mark in the current buffer.
2591 ;; But don't restore point if edebug-buffer is current buffer.
2592 (if (not (eq edebug-buffer edebug-outside-buffer))
2593 (goto-char edebug-outside-point))
2594 (if (marker-buffer (edebug-mark-marker))
2595 ;; Does zmacs-regions need to be nil while doing set-marker?
2596 (set-marker (edebug-mark-marker) edebug-outside-mark))
2597 ) ; unwind-protect
2598 ;; None of the following is done if quit or signal occurs.
2599
2600 ;; Restore edebug-buffer's outside point.
2601 ;; (edebug-trace "restore edebug-buffer point: %s"
2602 ;; edebug-buffer-outside-point)
2603 (with-current-buffer edebug-buffer
2604 (goto-char edebug-buffer-outside-point))
2605 ;; ... nothing more.
2606 )
2607 ;; Could be an option to keep eval display up.
2608 (if edebug-eval-buffer (kill-buffer edebug-eval-buffer))
2609 (with-timeout-unsuspend edebug-with-timeout-suspend)
2610 ;; Reset global variables to outside values in case they were changed.
2611 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w)
2612 )))
2613
2614
2615 (defvar edebug-number-of-recursions 0)
2616 ;; Number of recursive edits started by edebug.
2617 ;; Should be 0 at the top level.
2618
2619 (defvar edebug-recursion-depth 0)
2620 ;; Value of recursion-depth when edebug was called.
2621
2622 ;; Dynamically declared unbound vars
2623 (defvar edebug-outside-match-data) ; match data outside of edebug
2624 (defvar edebug-backtrace-buffer) ; each recursive edit gets its own
2625 (defvar edebug-inside-windows)
2626 (defvar edebug-interactive-p)
2627
2628 (defun edebug--recursive-edit (arg-mode)
2629 ;; Start up a recursive edit inside of edebug.
2630 ;; The current buffer is the edebug-buffer, which is put into edebug-mode.
2631 ;; Assume that none of the variables below are buffer-local.
2632 (let (;; match-data must be done in the outside buffer
2633 (edebug-outside-match-data
2634 (with-current-buffer edebug-outside-buffer ; in case match buffer different
2635 (match-data)))
2636
2637 ;;(edebug-number-of-recursions (1+ edebug-number-of-recursions))
2638 (edebug-recursion-depth (recursion-depth))
2639 edebug-entered ; bind locally to nil
2640 (edebug-interactive-p nil) ; again non-interactive
2641 edebug-backtrace-buffer ; each recursive edit gets its own
2642 ;; The window configuration may be saved and restored
2643 ;; during a recursive-edit
2644 edebug-inside-windows
2645 )
2646
2647 (unwind-protect
2648 (let (
2649 ;; Declare global values local but using the same global value.
2650 ;; We could set these to the values for previous edebug call.
2651 (last-command last-command)
2652 (this-command this-command)
2653 (current-prefix-arg nil)
2654
2655 ;; More for Emacs 19
2656 (last-input-event nil)
2657 (last-command-event nil)
2658 (last-event-frame nil)
2659 (last-nonmenu-event nil)
2660 (track-mouse nil)
2661
2662 (standard-output t)
2663 (standard-input t)
2664
2665 ;; Don't keep reading from an executing kbd macro
2666 ;; within edebug unless edebug-continue-kbd-macro is
2667 ;; non-nil. Again, local binding may not be best.
2668 (executing-kbd-macro
2669 (if edebug-continue-kbd-macro executing-kbd-macro))
2670
2671 ;; Don't get confused by the user's keymap changes.
2672 (overriding-local-map nil)
2673 (overriding-terminal-local-map nil)
2674
2675 ;; Bind again to outside values.
2676 (debug-on-error edebug-outside-debug-on-error)
2677 (debug-on-quit edebug-outside-debug-on-quit)
2678
2679 ;; Don't keep defining a kbd macro.
2680 (defining-kbd-macro
2681 (if edebug-continue-kbd-macro defining-kbd-macro))
2682
2683 ;; Disable command hooks. This is essential when
2684 ;; a hook function is instrumented - to avoid infinite loop.
2685 ;; This may be more than we need, however.
2686 (pre-command-hook nil)
2687 (post-command-hook nil)
2688
2689 ;; others??
2690 )
2691
2692 (if (and (eq edebug-execution-mode 'go)
2693 (not (memq arg-mode '(after error))))
2694 (message "Break"))
2695
2696 (setq signal-hook-function nil)
2697
2698 (edebug-mode 1)
2699 (unwind-protect
2700 (recursive-edit) ; <<<<<<<<<< Recursive edit
2701
2702 ;; Do the following, even if quit occurs.
2703 (setq signal-hook-function 'edebug-signal)
2704 (if edebug-backtrace-buffer
2705 (kill-buffer edebug-backtrace-buffer))
2706
2707 ;; Remember selected-window after recursive-edit.
2708 ;; (setq edebug-inside-window (selected-window))
2709
2710 (set-match-data edebug-outside-match-data)
2711
2712 ;; Recursive edit may have changed buffers,
2713 ;; so set it back before exiting let.
2714 (if (buffer-name edebug-buffer) ; if it still exists
2715 (progn
2716 (set-buffer edebug-buffer)
2717 (if (memq edebug-execution-mode '(go Go-nonstop))
2718 (edebug-overlay-arrow))
2719 (edebug-mode -1))
2720 ;; gotta have a buffer to let its buffer local variables be set
2721 (get-buffer-create " bogus edebug buffer"))
2722 ));; inner let
2723 )))
2724
2725
2726 ;;; Display related functions
2727
2728 (defun edebug-adjust-window (old-start)
2729 ;; If pos is not visible, adjust current window to fit following context.
2730 ;; (message "window: %s old-start: %s window-start: %s pos: %s"
2731 ;; (selected-window) old-start (window-start) (point)) (sit-for 5)
2732 (if (not (pos-visible-in-window-p))
2733 (progn
2734 ;; First try old-start
2735 (if old-start
2736 (set-window-start (selected-window) old-start))
2737 (if (not (pos-visible-in-window-p))
2738 (progn
2739 ;; (message "resetting window start") (sit-for 2)
2740 (set-window-start
2741 (selected-window)
2742 (save-excursion
2743 (forward-line
2744 (if (< (point) (window-start)) -1 ; one line before if in back
2745 (- (/ (window-height) 2)) ; center the line moving forward
2746 ))
2747 (beginning-of-line)
2748 (point)))))))
2749 (window-start))
2750
2751
2752
2753 (defconst edebug-arrow-alist
2754 '((Continue-fast . "=")
2755 (Trace-fast . "-")
2756 (continue . ">")
2757 (trace . "->")
2758 (step . "=>")
2759 (next . "=>")
2760 (go . "<>")
2761 (Go-nonstop . "..") ; not used
2762 )
2763 "Association list of arrows for each edebug mode.")
2764
2765 (defun edebug-overlay-arrow ()
2766 ;; Set up the overlay arrow at beginning-of-line in current buffer.
2767 ;; The arrow string is derived from edebug-arrow-alist and
2768 ;; edebug-execution-mode.
2769 (let ((pos (line-beginning-position)))
2770 (setq overlay-arrow-string
2771 (cdr (assq edebug-execution-mode edebug-arrow-alist)))
2772 (setq overlay-arrow-position (make-marker))
2773 (set-marker overlay-arrow-position pos (current-buffer))))
2774
2775
2776 (defun edebug-toggle-save-all-windows ()
2777 "Toggle the saving and restoring of all windows.
2778 Also, each time you toggle it on, the inside and outside window
2779 configurations become the same as the current configuration."
2780 (interactive)
2781 (setq edebug-save-windows (not edebug-save-windows))
2782 (if edebug-save-windows
2783 (setq edebug-inside-windows
2784 (setq edebug-outside-windows
2785 (edebug-current-windows
2786 edebug-save-windows))))
2787 (message "Window saving is %s for all windows."
2788 (if edebug-save-windows "on" "off")))
2789
2790 (defmacro edebug-changing-windows (&rest body)
2791 `(let ((window (selected-window)))
2792 (setq edebug-inside-windows (edebug-current-windows t))
2793 (edebug-set-windows edebug-outside-windows)
2794 ,@body;; Code to change edebug-save-windows
2795 (setq edebug-outside-windows (edebug-current-windows
2796 edebug-save-windows))
2797 ;; Problem: what about outside windows that are deleted inside?
2798 (edebug-set-windows edebug-inside-windows)))
2799
2800 (defun edebug-toggle-save-selected-window ()
2801 "Toggle the saving and restoring of the selected window.
2802 Also, each time you toggle it on, the inside and outside window
2803 configurations become the same as the current configuration."
2804 (interactive)
2805 (cond
2806 ((eq t edebug-save-windows)
2807 ;; Save all outside windows except the selected one.
2808 ;; Remove (selected-window) from outside-windows.
2809 (edebug-changing-windows
2810 (setq edebug-save-windows (delq window (edebug-window-list)))))
2811
2812 ((memq (selected-window) edebug-save-windows)
2813 (setq edebug-outside-windows
2814 (delq (assq (selected-window) edebug-outside-windows)
2815 edebug-outside-windows))
2816 (setq edebug-save-windows
2817 (delq (selected-window) edebug-save-windows)))
2818 (t ; Save a new window.
2819 (edebug-changing-windows
2820 (setq edebug-save-windows (cons window edebug-save-windows)))))
2821
2822 (message "Window saving is %s for %s."
2823 (if (memq (selected-window) edebug-save-windows)
2824 "on" "off")
2825 (selected-window)))
2826
2827 (defun edebug-toggle-save-windows (arg)
2828 "Toggle the saving and restoring of windows.
2829 With prefix, toggle for just the selected window.
2830 Otherwise, toggle for all windows."
2831 (interactive "P")
2832 (if arg
2833 (edebug-toggle-save-selected-window)
2834 (edebug-toggle-save-all-windows)))
2835
2836 (defun edebug-where ()
2837 "Show the debug windows and where we stopped in the program."
2838 (interactive)
2839 (if (not edebug-active)
2840 (error "Edebug is not active"))
2841 ;; Restore the window configuration to what it last was inside.
2842 ;; But it is not always set. - experiment
2843 ;;(if edebug-inside-windows
2844 ;; (edebug-set-windows edebug-inside-windows))
2845 (edebug-pop-to-buffer edebug-buffer)
2846 (goto-char edebug-point))
2847
2848 (defun edebug-view-outside ()
2849 "Change to the outside window configuration.
2850 Use `edebug-where' to return."
2851 (interactive)
2852 (if (not edebug-active)
2853 (error "Edebug is not active"))
2854 (setq edebug-inside-windows
2855 (edebug-current-windows edebug-save-windows))
2856 (edebug-set-windows edebug-outside-windows)
2857 (goto-char edebug-outside-point)
2858 (message "Window configuration outside of Edebug. Return with %s"
2859 (substitute-command-keys "\\<global-map>\\[edebug-where]")))
2860
2861
2862 (defun edebug-bounce-point (arg)
2863 "Bounce the point in the outside current buffer.
2864 If prefix argument ARG is supplied, sit for that many seconds
2865 before returning. The default is one second."
2866 (interactive "p")
2867 (if (not edebug-active)
2868 (error "Edebug is not active"))
2869 (save-excursion
2870 ;; If the buffer's currently displayed, avoid set-window-configuration.
2871 (save-window-excursion
2872 (edebug-pop-to-buffer edebug-outside-buffer)
2873 (goto-char edebug-outside-point)
2874 (message "Current buffer: %s Point: %s Mark: %s"
2875 (current-buffer) (point)
2876 (if (marker-buffer (edebug-mark-marker))
2877 (marker-position (edebug-mark-marker)) "<not set>"))
2878 (sit-for arg)
2879 (edebug-pop-to-buffer edebug-buffer (car edebug-window-data)))))
2880
2881
2882 ;; Joe Wells, here is a start at your idea of adding a buffer to the internal
2883 ;; display list. Still need to use this list in edebug--display.
2884
2885 '(defvar edebug-display-buffer-list nil
2886 "List of buffers that edebug will display when it is active.")
2887
2888 '(defun edebug-display-buffer (buffer)
2889 "Toggle display of a buffer inside of edebug."
2890 (interactive "bBuffer: ")
2891 (let ((already-displaying (memq buffer edebug-display-buffer-list)))
2892 (setq edebug-display-buffer-list
2893 (if already-displaying
2894 (delq buffer edebug-display-buffer-list)
2895 (cons buffer edebug-display-buffer-list)))
2896 (message "Displaying %s %s" buffer
2897 (if already-displaying "off" "on"))))
2898
2899 ;;; Breakpoint related functions
2900
2901 (defun edebug-find-stop-point ()
2902 ;; Return (function . index) of the nearest edebug stop point.
2903 (let* ((edebug-def-name (edebug-form-data-symbol))
2904 (edebug-data
2905 (let ((data (get edebug-def-name 'edebug)))
2906 (if (or (null data) (markerp data))
2907 (error "%s is not instrumented for Edebug" edebug-def-name))
2908 data)) ; we could do it automatically, if data is a marker.
2909 ;; pull out parts of edebug-data.
2910 (edebug-def-mark (car edebug-data))
2911 ;; (edebug-breakpoints (car (cdr edebug-data)))
2912
2913 (offset-vector (nth 2 edebug-data))
2914 (offset (- (save-excursion
2915 (if (looking-at "[ \t]")
2916 ;; skip backwards until non-whitespace, or bol
2917 (skip-chars-backward " \t"))
2918 (point))
2919 edebug-def-mark))
2920 len i)
2921 ;; the offsets are in order so we can do a linear search
2922 (setq len (length offset-vector))
2923 (setq i 0)
2924 (while (and (< i len) (> offset (aref offset-vector i)))
2925 (setq i (1+ i)))
2926 (if (and (< i len)
2927 (<= offset (aref offset-vector i)))
2928 ;; return the relevant info
2929 (cons edebug-def-name i)
2930 (message "Point is not on an expression in %s."
2931 edebug-def-name)
2932 )))
2933
2934
2935 (defun edebug-next-breakpoint ()
2936 "Move point to the next breakpoint, or first if none past point."
2937 (interactive)
2938 (let ((edebug-stop-point (edebug-find-stop-point)))
2939 (if edebug-stop-point
2940 (let* ((edebug-def-name (car edebug-stop-point))
2941 (index (cdr edebug-stop-point))
2942 (edebug-data (get edebug-def-name 'edebug))
2943
2944 ;; pull out parts of edebug-data
2945 (edebug-def-mark (car edebug-data))
2946 (edebug-breakpoints (car (cdr edebug-data)))
2947 (offset-vector (nth 2 edebug-data))
2948 breakpoint)
2949 (if (not edebug-breakpoints)
2950 (message "No breakpoints in this function.")
2951 (let ((breaks edebug-breakpoints))
2952 (while (and breaks
2953 (<= (car (car breaks)) index))
2954 (setq breaks (cdr breaks)))
2955 (setq breakpoint
2956 (if breaks
2957 (car breaks)
2958 ;; goto the first breakpoint
2959 (car edebug-breakpoints)))
2960 (goto-char (+ edebug-def-mark
2961 (aref offset-vector (car breakpoint))))
2962
2963 (message "%s"
2964 (concat (if (nth 2 breakpoint)
2965 "Temporary " "")
2966 (if (car (cdr breakpoint))
2967 (format "Condition: %s"
2968 (edebug-safe-prin1-to-string
2969 (car (cdr breakpoint))))
2970 "")))
2971 ))))))
2972
2973
2974 (defun edebug-modify-breakpoint (flag &optional condition temporary)
2975 "Modify the breakpoint for the form at point or after it.
2976 Set it if FLAG is non-nil, clear it otherwise. Then move to that point.
2977 If CONDITION or TEMPORARY are non-nil, add those attributes to
2978 the breakpoint."
2979 (let ((edebug-stop-point (edebug-find-stop-point)))
2980 (if edebug-stop-point
2981 (let* ((edebug-def-name (car edebug-stop-point))
2982 (index (cdr edebug-stop-point))
2983 (edebug-data (get edebug-def-name 'edebug))
2984
2985 ;; pull out parts of edebug-data
2986 (edebug-def-mark (car edebug-data))
2987 (edebug-breakpoints (car (cdr edebug-data)))
2988 (offset-vector (nth 2 edebug-data))
2989 present)
2990 ;; delete it either way
2991 (setq present (assq index edebug-breakpoints))
2992 (setq edebug-breakpoints (delq present edebug-breakpoints))
2993 (if flag
2994 (progn
2995 ;; add it to the list and resort
2996 (setq edebug-breakpoints
2997 (edebug-sort-alist
2998 (cons
2999 (list index condition temporary)
3000 edebug-breakpoints) '<))
3001 (if condition
3002 (message "Breakpoint set in %s with condition: %s"
3003 edebug-def-name condition)
3004 (message "Breakpoint set in %s" edebug-def-name)))
3005 (if present
3006 (message "Breakpoint unset in %s" edebug-def-name)
3007 (message "No breakpoint here")))
3008
3009 (setcar (cdr edebug-data) edebug-breakpoints)
3010 (goto-char (+ edebug-def-mark (aref offset-vector index)))
3011 ))))
3012
3013 (defun edebug-set-breakpoint (arg)
3014 "Set the breakpoint of nearest sexp.
3015 With prefix argument, make it a temporary breakpoint."
3016 (interactive "P")
3017 (edebug-modify-breakpoint t nil arg))
3018
3019 (defun edebug-unset-breakpoint ()
3020 "Clear the breakpoint of nearest sexp."
3021 (interactive)
3022 (edebug-modify-breakpoint nil))
3023
3024
3025 (defun edebug-set-global-break-condition (expression)
3026 "Set `edebug-global-break-condition' to EXPRESSION."
3027 (interactive
3028 (list
3029 (let ((initial (and edebug-global-break-condition
3030 (format "%s" edebug-global-break-condition))))
3031 (read-from-minibuffer
3032 "Global Condition: " initial read-expression-map t
3033 (if (equal (car read-expression-history) initial)
3034 '(read-expression-history . 1)
3035 'read-expression-history)))))
3036 (setq edebug-global-break-condition expression))
3037
3038
3039 ;;; Mode switching functions
3040
3041 (defun edebug-set-mode (mode shortmsg msg)
3042 ;; Set the edebug mode to MODE.
3043 ;; Display SHORTMSG, or MSG if not within edebug.
3044 (if (eq (1+ edebug-recursion-depth) (recursion-depth))
3045 (progn
3046 (setq edebug-execution-mode mode)
3047 (message "%s" shortmsg)
3048 ;; Continue execution
3049 (exit-recursive-edit))
3050 ;; This is not terribly useful!!
3051 (setq edebug-next-execution-mode mode)
3052 (message "%s" msg)))
3053
3054
3055 (defalias 'edebug-step-through-mode 'edebug-step-mode)
3056
3057 (defun edebug-step-mode ()
3058 "Proceed to next stop point."
3059 (interactive)
3060 (edebug-set-mode 'step "" "Edebug will stop at next stop point."))
3061
3062 (defun edebug-next-mode ()
3063 "Proceed to next `after' stop point."
3064 (interactive)
3065 (edebug-set-mode 'next "" "Edebug will stop after next eval."))
3066
3067 (defun edebug-go-mode (arg)
3068 "Go, evaluating until break.
3069 With prefix ARG, set temporary break at current point and go."
3070 (interactive "P")
3071 (if arg
3072 (edebug-set-breakpoint t))
3073 (edebug-set-mode 'go "Go..." "Edebug will go until break."))
3074
3075 (defun edebug-Go-nonstop-mode ()
3076 "Go, evaluating without debugging.
3077 You can use `edebug-stop', or any editing command, to stop."
3078 (interactive)
3079 (edebug-set-mode 'Go-nonstop "Go-Nonstop..."
3080 "Edebug will not stop at breaks."))
3081
3082
3083 (defun edebug-trace-mode ()
3084 "Begin trace mode.
3085 Pauses for `edebug-sit-for-seconds' at each stop point."
3086 (interactive)
3087 (edebug-set-mode 'trace "Tracing..." "Edebug will trace with pause."))
3088
3089 (defun edebug-Trace-fast-mode ()
3090 "Trace with no wait at each step.
3091 Updates the display at each stop point, but does not pause."
3092 (interactive)
3093 (edebug-set-mode 'Trace-fast
3094 "Trace fast..." "Edebug will trace without pause."))
3095
3096 (defun edebug-continue-mode ()
3097 "Begin continue mode.
3098 Pauses for `edebug-sit-for-seconds' at each break point."
3099 (interactive)
3100 (edebug-set-mode 'continue "Continue..."
3101 "Edebug will pause at breakpoints."))
3102
3103 (defun edebug-Continue-fast-mode ()
3104 "Trace with no wait at each step.
3105 Updates the display at each break point, but does not pause."
3106 (interactive)
3107 (edebug-set-mode 'Continue-fast "Continue fast..."
3108 "Edebug will stop and go at breakpoints."))
3109
3110 ;; ------------------------------------------------------------
3111 ;; The following use the mode changing commands and breakpoints.
3112
3113
3114 (defun edebug-goto-here ()
3115 "Proceed to first stop-point at or after current position of point."
3116 (interactive)
3117 (edebug-go-mode t))
3118
3119
3120 (defun edebug-stop ()
3121 "Stop execution and do not continue.
3122 Useful for exiting from trace or continue loop."
3123 (interactive)
3124 (message "Stop"))
3125
3126
3127 '(defun edebug-forward ()
3128 "Proceed to the exit of the next expression to be evaluated."
3129 (interactive)
3130 (edebug-set-mode
3131 'forward "Forward"
3132 "Edebug will stop after exiting the next expression."))
3133
3134
3135 (defun edebug-forward-sexp (arg)
3136 "Proceed from the current point to the end of the ARGth sexp ahead.
3137 If there are not ARG sexps ahead, then do `edebug-step-out'."
3138 (interactive "p")
3139 (condition-case nil
3140 (let ((parse-sexp-ignore-comments t))
3141 ;; Call forward-sexp repeatedly until done or failure.
3142 (forward-sexp arg)
3143 (edebug-go-mode t))
3144 (error
3145 (edebug-step-out)
3146 )))
3147
3148 (defun edebug-step-out ()
3149 "Proceed from the current point to the end of the containing sexp.
3150 If there is no containing sexp that is not the top level defun,
3151 go to the end of the last sexp, or if that is the same point, then step."
3152 (interactive)
3153 (condition-case nil
3154 (let ((parse-sexp-ignore-comments t))
3155 (up-list 1)
3156 (save-excursion
3157 ;; Is there still a containing expression?
3158 (up-list 1))
3159 (edebug-go-mode t))
3160 (error
3161 ;; At top level - 1, so first check if there are more sexps at this level.
3162 (let ((start-point (point)))
3163 ;; (up-list 1)
3164 (down-list -1)
3165 (if (= (point) start-point)
3166 (edebug-step-mode) ; No more at this level, so step.
3167 (edebug-go-mode t)
3168 )))))
3169
3170 (defun edebug-instrument-function (func)
3171 ;; Func should be a function symbol.
3172 ;; Return the function symbol, or nil if not instrumented.
3173 (let ((func-marker (get func 'edebug)))
3174 (cond
3175 ((and (markerp func-marker) (marker-buffer func-marker))
3176 ;; It is uninstrumented, so instrument it.
3177 (with-current-buffer (marker-buffer func-marker)
3178 (goto-char func-marker)
3179 (edebug-eval-top-level-form)
3180 func))
3181 ((consp func-marker)
3182 (message "%s is already instrumented." func)
3183 func)
3184 (t
3185 (let ((loc (find-function-noselect func t)))
3186 (unless (cdr loc)
3187 (error "Could not find the definition in its file"))
3188 (with-current-buffer (car loc)
3189 (goto-char (cdr loc))
3190 (edebug-eval-top-level-form)
3191 func))))))
3192
3193 (defun edebug-instrument-callee ()
3194 "Instrument the definition of the function or macro about to be called.
3195 Do this when stopped before the form or it will be too late.
3196 One side effect of using this command is that the next time the
3197 function or macro is called, Edebug will be called there as well."
3198 (interactive)
3199 (if (not (looking-at "\("))
3200 (error "You must be before a list form")
3201 (let ((func
3202 (save-excursion
3203 (down-list 1)
3204 (if (looking-at "\(")
3205 (edebug--form-data-name
3206 (edebug-get-form-data-entry (point)))
3207 (edebug-original-read (current-buffer))))))
3208 (edebug-instrument-function func))))
3209
3210
3211 (defun edebug-step-in ()
3212 "Step into the definition of the function or macro about to be called.
3213 This first does `edebug-instrument-callee' to ensure that it is
3214 instrumented. Then it does `edebug-on-entry' and switches to `go' mode."
3215 (interactive)
3216 (let ((func (edebug-instrument-callee)))
3217 (if func
3218 (progn
3219 (edebug-on-entry func 'temp)
3220 (edebug-go-mode nil)))))
3221
3222 (defun edebug-on-entry (function &optional flag)
3223 "Cause Edebug to stop when FUNCTION is called.
3224 With prefix argument, make this temporary so it is automatically
3225 canceled the first time the function is entered."
3226 (interactive "aEdebug on entry to: \nP")
3227 ;; Could store this in the edebug data instead.
3228 (put function 'edebug-on-entry (if flag 'temp t)))
3229
3230 (defun cancel-edebug-on-entry (function)
3231 (interactive "aEdebug on entry to: ")
3232 (put function 'edebug-on-entry nil))
3233
3234
3235 (if (not (fboundp 'edebug-original-debug-on-entry))
3236 (fset 'edebug-original-debug-on-entry (symbol-function 'debug-on-entry)))
3237 '(fset 'debug-on-entry 'edebug-debug-on-entry) ;; Should we do this?
3238 ;; Also need edebug-cancel-debug-on-entry
3239
3240 '(defun edebug-debug-on-entry (function)
3241 "Request FUNCTION to invoke debugger each time it is called.
3242 If the user continues, FUNCTION's execution proceeds.
3243 Works by modifying the definition of FUNCTION,
3244 which must be written in Lisp, not predefined.
3245 Use `cancel-debug-on-entry' to cancel the effect of this command.
3246 Redefining FUNCTION also does that.
3247
3248 This version is from Edebug. If the function is instrumented for
3249 Edebug, it calls `edebug-on-entry'."
3250 (interactive "aDebug on entry (to function): ")
3251 (let ((func-data (get function 'edebug)))
3252 (if (or (null func-data) (markerp func-data))
3253 (edebug-original-debug-on-entry function)
3254 (edebug-on-entry function))))
3255
3256
3257 (defun edebug-top-level-nonstop ()
3258 "Set mode to Go-nonstop, and exit to top-level.
3259 This is useful for exiting even if `unwind-protect' code may be executed."
3260 (interactive)
3261 (setq edebug-execution-mode 'Go-nonstop)
3262 (top-level))
3263
3264
3265 ;;(defun edebug-exit-out ()
3266 ;; "Go until the current function exits."
3267 ;; (interactive)
3268 ;; (edebug-set-mode 'exiting "Exit..."))
3269
3270
3271 ;;; The following initial mode setting definitions are not used yet.
3272
3273 '(defconst edebug-initial-mode-alist
3274 '((edebug-Continue-fast . Continue-fast)
3275 (edebug-Trace-fast . Trace-fast)
3276 (edebug-continue . continue)
3277 (edebug-trace . trace)
3278 (edebug-go . go)
3279 (edebug-step-through . step)
3280 (edebug-Go-nonstop . Go-nonstop)
3281 )
3282 "Association list between commands and the modes they set.")
3283
3284
3285 '(defun edebug-set-initial-mode ()
3286 "Ask for the initial mode of the enclosing function.
3287 The mode is requested via the key that would be used to set the mode in
3288 edebug-mode."
3289 (interactive)
3290 (let* ((this-function (edebug-which-function))
3291 (keymap (if (eq edebug-mode-map (current-local-map))
3292 edebug-mode-map))
3293 (old-mode (or (get this-function 'edebug-initial-mode)
3294 edebug-initial-mode))
3295 (key (read-key-sequence
3296 (format
3297 "Change initial edebug mode for %s from %s (%s) to (enter key): "
3298 this-function
3299 old-mode
3300 (where-is-internal
3301 (car (rassq old-mode edebug-initial-mode-alist))
3302 keymap 'firstonly
3303 ))))
3304 (mode (cdr (assq (key-binding key) edebug-initial-mode-alist)))
3305 )
3306 (if (and mode
3307 (or (get this-function 'edebug-initial-mode)
3308 (not (eq mode edebug-initial-mode))))
3309 (progn
3310 (put this-function 'edebug-initial-mode mode)
3311 (message "Initial mode for %s is now: %s"
3312 this-function mode))
3313 (error "Key must map to one of the mode changing commands")
3314 )))
3315
3316 ;;; Evaluation of expressions
3317
3318 (defmacro edebug-outside-excursion (&rest body)
3319 "Evaluate an expression list in the outside context.
3320 Return the result of the last expression."
3321 ;; Only restores the non-variables context since all the variables let-bound
3322 ;; by Edebug will be properly reset to the appropriate context's value by
3323 ;; backtrace-eval.
3324 (declare (debug t))
3325 `(save-excursion ; of current-buffer
3326 (if edebug-save-windows
3327 (progn
3328 ;; After excursion, we will
3329 ;; restore to current window configuration.
3330 (setq edebug-inside-windows
3331 (edebug-current-windows edebug-save-windows))
3332 ;; Restore outside windows.
3333 (edebug-set-windows edebug-outside-windows)))
3334
3335 (set-buffer edebug-buffer) ; why?
3336 (set-match-data edebug-outside-match-data)
3337 ;; Restore outside context.
3338 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w)
3339 (unwind-protect
3340 (with-current-buffer edebug-outside-buffer ; of edebug-buffer
3341 (goto-char edebug-outside-point)
3342 (if (marker-buffer (edebug-mark-marker))
3343 (set-marker (edebug-mark-marker) edebug-outside-mark))
3344 ,@body)
3345
3346 ;; Back to edebug-buffer. Restore rest of inside context.
3347 ;; (use-local-map edebug-inside-map)
3348 (if edebug-save-windows
3349 ;; Restore inside windows.
3350 (edebug-set-windows edebug-inside-windows))
3351
3352 ;; Save values that may have been changed.
3353 (setq edebug-outside-d-c-i-n-s-w
3354 (default-value 'cursor-in-non-selected-windows))
3355
3356 ;; Restore the outside saved values; don't alter
3357 ;; the outside binding loci.
3358 (setq-default cursor-in-non-selected-windows t))))
3359
3360 (defun edebug-eval (expr)
3361 (backtrace-eval expr 0 'edebug-after))
3362
3363 (defun edebug-safe-eval (expr)
3364 ;; Evaluate EXPR safely.
3365 ;; If there is an error, a string is returned describing the error.
3366 (condition-case edebug-err
3367 (edebug-eval expr)
3368 (error (edebug-format "%s: %s" ;; could
3369 (get (car edebug-err) 'error-message)
3370 (car (cdr edebug-err))))))
3371
3372 ;;; Printing
3373
3374
3375 (defun edebug-report-error (value)
3376 ;; Print an error message like command level does.
3377 ;; This also prints the error name if it has no error-message.
3378 (message "%s: %s"
3379 (or (get (car value) 'error-message)
3380 (format "peculiar error (%s)" (car value)))
3381 (mapconcat (function (lambda (edebug-arg)
3382 ;; continuing after an error may
3383 ;; complain about edebug-arg. why??
3384 (prin1-to-string edebug-arg)))
3385 (cdr value) ", ")))
3386
3387 (defvar print-readably) ; defined by lemacs
3388 ;; Alternatively, we could change the definition of
3389 ;; edebug-safe-prin1-to-string to only use these if defined.
3390
3391 (defun edebug-safe-prin1-to-string (value)
3392 (let ((print-escape-newlines t)
3393 (print-length (or edebug-print-length print-length))
3394 (print-level (or edebug-print-level print-level))
3395 (print-circle (or edebug-print-circle print-circle))
3396 (print-readably nil)) ; lemacs uses this.
3397 (condition-case nil
3398 (edebug-prin1-to-string value)
3399 (error "#Apparently circular structure#"))))
3400
3401 (defun edebug-compute-previous-result (previous-value)
3402 (if edebug-unwrap-results
3403 (setq previous-value
3404 (edebug-unwrap* previous-value)))
3405 (setq edebug-previous-result
3406 (concat "Result: "
3407 (edebug-safe-prin1-to-string previous-value)
3408 (eval-expression-print-format previous-value))))
3409
3410 (defun edebug-previous-result ()
3411 "Print the previous result."
3412 (interactive)
3413 (message "%s" edebug-previous-result))
3414
3415 ;;; Read, Eval and Print
3416
3417 (defalias 'edebug-prin1 'prin1)
3418 (defalias 'edebug-print 'print)
3419 (defalias 'edebug-prin1-to-string 'prin1-to-string)
3420 (defalias 'edebug-format 'format)
3421 (defalias 'edebug-message 'message)
3422
3423 (defun edebug-eval-expression (expr)
3424 "Evaluate an expression in the outside environment.
3425 If interactive, prompt for the expression.
3426 Print result in minibuffer."
3427 (interactive (list (read-from-minibuffer
3428 "Eval: " nil read-expression-map t
3429 'read-expression-history)))
3430 (princ
3431 (edebug-outside-excursion
3432 (setq values (cons (edebug-eval expr) values))
3433 (concat (edebug-safe-prin1-to-string (car values))
3434 (eval-expression-print-format (car values))))))
3435
3436 (defun edebug-eval-last-sexp ()
3437 "Evaluate sexp before point in the outside environment.
3438 Print value in minibuffer."
3439 (interactive)
3440 (edebug-eval-expression (edebug-last-sexp)))
3441
3442 (defun edebug-eval-print-last-sexp ()
3443 "Evaluate sexp before point in outside environment; insert value.
3444 This prints the value into current buffer."
3445 (interactive)
3446 (let* ((form (edebug-last-sexp))
3447 (result-string
3448 (edebug-outside-excursion
3449 (edebug-safe-prin1-to-string (edebug-safe-eval form))))
3450 (standard-output (current-buffer)))
3451 (princ "\n")
3452 ;; princ the string to get rid of quotes.
3453 (princ result-string)
3454 (princ "\n")
3455 ))
3456
3457 ;;; Edebug Minor Mode
3458
3459 (defvar edebug-inhibit-emacs-lisp-mode-bindings nil
3460 "If non-nil, inhibit Edebug bindings on the C-x C-a key.
3461 By default, loading the `edebug' library causes these bindings to
3462 be installed in `emacs-lisp-mode-map'.")
3463
3464 (define-obsolete-variable-alias 'gud-inhibit-global-bindings
3465 'edebug-inhibit-emacs-lisp-mode-bindings "24.3")
3466
3467 ;; Global GUD bindings for all emacs-lisp-mode buffers.
3468 (unless edebug-inhibit-emacs-lisp-mode-bindings
3469 (define-key emacs-lisp-mode-map "\C-x\C-a\C-s" 'edebug-step-mode)
3470 (define-key emacs-lisp-mode-map "\C-x\C-a\C-n" 'edebug-next-mode)
3471 (define-key emacs-lisp-mode-map "\C-x\C-a\C-c" 'edebug-go-mode)
3472 (define-key emacs-lisp-mode-map "\C-x\C-a\C-l" 'edebug-where))
3473
3474 (defvar edebug-mode-map
3475 (let ((map (copy-keymap emacs-lisp-mode-map)))
3476 ;; control
3477 (define-key map " " 'edebug-step-mode)
3478 (define-key map "n" 'edebug-next-mode)
3479 (define-key map "g" 'edebug-go-mode)
3480 (define-key map "G" 'edebug-Go-nonstop-mode)
3481 (define-key map "t" 'edebug-trace-mode)
3482 (define-key map "T" 'edebug-Trace-fast-mode)
3483 (define-key map "c" 'edebug-continue-mode)
3484 (define-key map "C" 'edebug-Continue-fast-mode)
3485
3486 ;;(define-key map "f" 'edebug-forward) not implemented
3487 (define-key map "f" 'edebug-forward-sexp)
3488 (define-key map "h" 'edebug-goto-here)
3489
3490 (define-key map "I" 'edebug-instrument-callee)
3491 (define-key map "i" 'edebug-step-in)
3492 (define-key map "o" 'edebug-step-out)
3493
3494 ;; quitting and stopping
3495 (define-key map "q" 'top-level)
3496 (define-key map "Q" 'edebug-top-level-nonstop)
3497 (define-key map "a" 'abort-recursive-edit)
3498 (define-key map "S" 'edebug-stop)
3499
3500 ;; breakpoints
3501 (define-key map "b" 'edebug-set-breakpoint)
3502 (define-key map "u" 'edebug-unset-breakpoint)
3503 (define-key map "B" 'edebug-next-breakpoint)
3504 (define-key map "x" 'edebug-set-conditional-breakpoint)
3505 (define-key map "X" 'edebug-set-global-break-condition)
3506
3507 ;; evaluation
3508 (define-key map "r" 'edebug-previous-result)
3509 (define-key map "e" 'edebug-eval-expression)
3510 (define-key map "\C-x\C-e" 'edebug-eval-last-sexp)
3511 (define-key map "E" 'edebug-visit-eval-list)
3512
3513 ;; views
3514 (define-key map "w" 'edebug-where)
3515 (define-key map "v" 'edebug-view-outside) ;; maybe obsolete??
3516 (define-key map "p" 'edebug-bounce-point)
3517 (define-key map "P" 'edebug-view-outside) ;; same as v
3518 (define-key map "W" 'edebug-toggle-save-windows)
3519
3520 ;; misc
3521 (define-key map "?" 'edebug-help)
3522 (define-key map "d" 'edebug-backtrace)
3523
3524 (define-key map "-" 'negative-argument)
3525
3526 ;; statistics
3527 (define-key map "=" 'edebug-temp-display-freq-count)
3528
3529 ;; GUD bindings
3530 (define-key map "\C-c\C-s" 'edebug-step-mode)
3531 (define-key map "\C-c\C-n" 'edebug-next-mode)
3532 (define-key map "\C-c\C-c" 'edebug-go-mode)
3533
3534 (define-key map "\C-x " 'edebug-set-breakpoint)
3535 (define-key map "\C-c\C-d" 'edebug-unset-breakpoint)
3536 (define-key map "\C-c\C-t"
3537 (lambda () (interactive) (edebug-set-breakpoint t)))
3538 (define-key map "\C-c\C-l" 'edebug-where)
3539 map))
3540
3541 ;; Autoloading these global bindings doesn't make sense because
3542 ;; they cannot be used anyway unless Edebug is already loaded and active.
3543
3544 (defvar global-edebug-prefix "\^XX"
3545 "Prefix key for global edebug commands, available from any buffer.")
3546
3547 (defvar global-edebug-map
3548 (let ((map (make-sparse-keymap)))
3549
3550 (define-key map " " 'edebug-step-mode)
3551 (define-key map "g" 'edebug-go-mode)
3552 (define-key map "G" 'edebug-Go-nonstop-mode)
3553 (define-key map "t" 'edebug-trace-mode)
3554 (define-key map "T" 'edebug-Trace-fast-mode)
3555 (define-key map "c" 'edebug-continue-mode)
3556 (define-key map "C" 'edebug-Continue-fast-mode)
3557
3558 ;; breakpoints
3559 (define-key map "b" 'edebug-set-breakpoint)
3560 (define-key map "u" 'edebug-unset-breakpoint)
3561 (define-key map "x" 'edebug-set-conditional-breakpoint)
3562 (define-key map "X" 'edebug-set-global-break-condition)
3563
3564 ;; views
3565 (define-key map "w" 'edebug-where)
3566 (define-key map "W" 'edebug-toggle-save-windows)
3567
3568 ;; quitting
3569 (define-key map "q" 'top-level)
3570 (define-key map "Q" 'edebug-top-level-nonstop)
3571 (define-key map "a" 'abort-recursive-edit)
3572
3573 ;; statistics
3574 (define-key map "=" 'edebug-display-freq-count)
3575 map)
3576 "Global map of edebug commands, available from any buffer.")
3577
3578 (global-unset-key global-edebug-prefix)
3579 (global-set-key global-edebug-prefix global-edebug-map)
3580
3581
3582 (defun edebug-help ()
3583 "Describe `edebug-mode'."
3584 (interactive)
3585 (describe-function 'edebug-mode))
3586
3587 (defvar edebug--mode-saved-vars nil)
3588
3589 (define-minor-mode edebug-mode
3590 "Mode for Emacs Lisp buffers while in Edebug.
3591
3592 In addition to all Emacs Lisp commands (except those that modify the
3593 buffer) there are local and global key bindings to several Edebug
3594 specific commands. E.g. `edebug-step-mode' is bound to \\[edebug-step-mode]
3595 in the Edebug buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3596
3597 Also see bindings for the eval list buffer *edebug* in `edebug-eval-mode'.
3598
3599 The edebug buffer commands:
3600 \\{edebug-mode-map}
3601
3602 Global commands prefixed by `global-edebug-prefix':
3603 \\{global-edebug-map}
3604
3605 Options:
3606 `edebug-setup-hook'
3607 `edebug-all-defs'
3608 `edebug-all-forms'
3609 `edebug-save-windows'
3610 `edebug-save-displayed-buffer-points'
3611 `edebug-initial-mode'
3612 `edebug-trace'
3613 `edebug-test-coverage'
3614 `edebug-continue-kbd-macro'
3615 `edebug-print-length'
3616 `edebug-print-level'
3617 `edebug-print-circle'
3618 `edebug-on-error'
3619 `edebug-on-quit'
3620 `edebug-on-signal'
3621 `edebug-unwrap-results'
3622 `edebug-global-break-condition'"
3623 :lighter " *Debugging*"
3624 :keymap edebug-mode-map
3625 ;; If the user kills the buffer in which edebug is currently active,
3626 ;; exit to top level, because the edebug command loop can't usefully
3627 ;; continue running in such a case.
3628 ;;
3629 (if (not edebug-mode)
3630 (progn
3631 (while edebug--mode-saved-vars
3632 (let ((setting (pop edebug--mode-saved-vars)))
3633 (if (consp setting)
3634 (set (car setting) (cdr setting))
3635 (kill-local-variable setting))))
3636 (remove-hook 'kill-buffer-hook 'edebug-kill-buffer t))
3637 (pcase-dolist (`(,var . ,val) '((buffer-read-only . t)))
3638 (push
3639 (if (local-variable-p var) (cons var (symbol-value var)) var)
3640 edebug--mode-saved-vars)
3641 (set (make-local-variable var) val))
3642 ;; Append `edebug-kill-buffer' to the hook to avoid interfering with
3643 ;; other entries that are unguarded against deleted buffer.
3644 (add-hook 'kill-buffer-hook 'edebug-kill-buffer t t)))
3645
3646 (defun edebug-kill-buffer ()
3647 "Used on `kill-buffer-hook' when Edebug is operating in a buffer of Lisp code."
3648 (run-with-timer 0 nil #'top-level))
3649
3650 ;;; edebug eval list mode
3651
3652 ;; A list of expressions and their evaluations is displayed in *edebug*.
3653
3654 (defun edebug-eval-result-list ()
3655 "Return a list of evaluations of `edebug-eval-list'."
3656 ;; Assumes in outside environment.
3657 ;; Don't do any edebug things now.
3658 (let ((edebug-execution-mode 'Go-nonstop)
3659 (edebug-trace nil))
3660 (mapcar 'edebug-safe-eval edebug-eval-list)))
3661
3662 (defun edebug-eval-display-list (eval-result-list)
3663 ;; Assumes edebug-eval-buffer exists.
3664 (let ((standard-output edebug-eval-buffer)
3665 (edebug-comment-line
3666 (format ";%s\n" (make-string (- (window-width) 2) ?-))))
3667 (set-buffer edebug-eval-buffer)
3668 (erase-buffer)
3669 (dolist (exp edebug-eval-list)
3670 (prin1 exp) (terpri)
3671 (prin1 (pop eval-result-list)) (terpri)
3672 (princ edebug-comment-line))
3673 (edebug-pop-to-buffer edebug-eval-buffer)
3674 ))
3675
3676 (defun edebug-create-eval-buffer ()
3677 (unless (and edebug-eval-buffer (buffer-name edebug-eval-buffer))
3678 (set-buffer (setq edebug-eval-buffer (get-buffer-create "*edebug*")))
3679 (edebug-eval-mode)))
3680
3681 ;; Should generalize this to be callable outside of edebug
3682 ;; with calls in user functions, e.g. (edebug-eval-display)
3683
3684 (defun edebug-eval-display (eval-result-list)
3685 "Display expressions and evaluations in EVAL-RESULT-LIST.
3686 It modifies the context by popping up the eval display."
3687 (when eval-result-list
3688 (edebug-create-eval-buffer)
3689 (edebug-eval-display-list eval-result-list)))
3690
3691 (defun edebug-eval-redisplay ()
3692 "Redisplay eval list in outside environment.
3693 May only be called from within `edebug--recursive-edit'."
3694 (edebug-create-eval-buffer)
3695 (edebug-outside-excursion
3696 (edebug-eval-display-list (edebug-eval-result-list))
3697 ))
3698
3699 (defun edebug-visit-eval-list ()
3700 "Switch to the evaluation list buffer \"*edebug*\"."
3701 (interactive)
3702 (edebug-eval-redisplay)
3703 (edebug-pop-to-buffer edebug-eval-buffer))
3704
3705
3706 (defun edebug-update-eval-list ()
3707 "Replace the evaluation list with the sexps now in the eval buffer."
3708 (interactive)
3709 (let ((starting-point (point))
3710 new-list)
3711 (goto-char (point-min))
3712 ;; get the first expression
3713 (edebug-skip-whitespace)
3714 (if (not (eobp))
3715 (progn
3716 (forward-sexp 1)
3717 (push (edebug-last-sexp) new-list)))
3718
3719 (while (re-search-forward "^;" nil t)
3720 (forward-line 1)
3721 (skip-chars-forward " \t\n\r")
3722 (if (and (/= ?\; (following-char))
3723 (not (eobp)))
3724 (progn
3725 (forward-sexp 1)
3726 (push (edebug-last-sexp) new-list))))
3727
3728 (setq edebug-eval-list (nreverse new-list))
3729 (edebug-eval-redisplay)
3730 (goto-char starting-point)))
3731
3732
3733 (defun edebug-delete-eval-item ()
3734 "Delete the item under point and redisplay."
3735 ;; could add arg to do repeatedly
3736 (interactive)
3737 (if (re-search-backward "^;" nil 'nofail)
3738 (forward-line 1))
3739 (delete-region
3740 (point) (progn (re-search-forward "^;" nil 'nofail)
3741 (beginning-of-line)
3742 (point)))
3743 (edebug-update-eval-list))
3744
3745
3746
3747 (defvar edebug-eval-mode-map
3748 (let ((map (make-sparse-keymap)))
3749 (set-keymap-parent map lisp-interaction-mode-map)
3750 (define-key map "\C-c\C-w" 'edebug-where)
3751 (define-key map "\C-c\C-d" 'edebug-delete-eval-item)
3752 (define-key map "\C-c\C-u" 'edebug-update-eval-list)
3753 (define-key map "\C-x\C-e" 'edebug-eval-last-sexp)
3754 (define-key map "\C-j" 'edebug-eval-print-last-sexp)
3755 map)
3756 "Keymap for Edebug Eval mode. Superset of Lisp Interaction mode.")
3757
3758 (put 'edebug-eval-mode 'mode-class 'special)
3759
3760 (define-derived-mode edebug-eval-mode lisp-interaction-mode "Edebug Eval"
3761 "Mode for evaluation list buffer while in Edebug.
3762
3763 In addition to all Interactive Emacs Lisp commands there are local and
3764 global key bindings to several Edebug specific commands. E.g.
3765 `edebug-step-mode' is bound to \\[edebug-step-mode] in the Edebug
3766 buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3767
3768 Eval list buffer commands:
3769 \\{edebug-eval-mode-map}
3770
3771 Global commands prefixed by `global-edebug-prefix':
3772 \\{global-edebug-map}")
3773
3774 ;;; Interface with standard debugger.
3775
3776 ;; (setq debugger 'edebug) ; to use the edebug debugger
3777 ;; (setq debugger 'debug) ; use the standard debugger
3778
3779 ;; Note that debug and its utilities must be byte-compiled to work,
3780 ;; since they depend on the backtrace looking a certain way. But
3781 ;; edebug is not dependent on this, yet.
3782
3783 (defun edebug (&optional arg-mode &rest args)
3784 "Replacement for `debug'.
3785 If we are running an edebugged function, show where we last were.
3786 Otherwise call `debug' normally."
3787 ;;(message "entered: %s depth: %s edebug-recursion-depth: %s"
3788 ;; edebug-entered (recursion-depth) edebug-recursion-depth) (sit-for 1)
3789 (if (and edebug-entered ; anything active?
3790 (eq (recursion-depth) edebug-recursion-depth))
3791 (let (;; Where were we before the error occurred?
3792 (offset-index (car edebug-offset-indices))
3793 (value (car args))
3794 ;; Bind variables required by edebug--display.
3795 edebug-breakpoints
3796 edebug-break-data
3797 edebug-break-condition
3798 edebug-global-break
3799 (edebug-break (null arg-mode)) ;; If called explicitly.
3800 )
3801 (edebug--display value offset-index arg-mode)
3802 (if (eq arg-mode 'error)
3803 nil
3804 value))
3805
3806 ;; Otherwise call debug normally.
3807 ;; Still need to remove extraneous edebug calls from stack.
3808 (apply 'debug arg-mode args)
3809 ))
3810
3811
3812 (defun edebug-backtrace ()
3813 "Display a non-working backtrace. Better than nothing..."
3814 (interactive)
3815 (if (or (not edebug-backtrace-buffer)
3816 (null (buffer-name edebug-backtrace-buffer)))
3817 (setq edebug-backtrace-buffer
3818 (generate-new-buffer "*Backtrace*"))
3819 ;; Else, could just display edebug-backtrace-buffer.
3820 )
3821 (with-output-to-temp-buffer (buffer-name edebug-backtrace-buffer)
3822 (setq edebug-backtrace-buffer standard-output)
3823 (let ((print-escape-newlines t)
3824 (print-length 50) ; FIXME cf edebug-safe-prin1-to-string
3825 last-ok-point)
3826 (backtrace)
3827
3828 ;; Clean up the backtrace.
3829 ;; Not quite right for current edebug scheme.
3830 (set-buffer edebug-backtrace-buffer)
3831 (setq truncate-lines t)
3832 (goto-char (point-min))
3833 (setq last-ok-point (point))
3834 (if t (progn
3835
3836 ;; Delete interspersed edebug internals.
3837 (while (re-search-forward "^ \(?edebug" nil t)
3838 (beginning-of-line)
3839 (cond
3840 ((looking-at "^ \(edebug-after")
3841 ;; Previous lines may contain code, so just delete this line.
3842 (setq last-ok-point (point))
3843 (forward-line 1)
3844 (delete-region last-ok-point (point)))
3845
3846 ((looking-at "^ edebug")
3847 (forward-line 1)
3848 (delete-region last-ok-point (point))
3849 )))
3850 )))))
3851
3852 \f
3853 ;;; Trace display
3854
3855 (defun edebug-trace-display (buf-name fmt &rest args)
3856 "In buffer BUF-NAME, display FMT and ARGS at the end and make it visible.
3857 The buffer is created if it does not exist.
3858 You must include newlines in FMT to break lines, but one newline is appended."
3859 ;; e.g.
3860 ;; (edebug-trace-display "*trace-point*"
3861 ;; "saving: point = %s window-start = %s"
3862 ;; (point) (window-start))
3863 (let* ((oldbuf (current-buffer))
3864 (selected-window (selected-window))
3865 (buffer (get-buffer-create buf-name))
3866 buf-window)
3867 ;; (message "before pop-to-buffer") (sit-for 1)
3868 (edebug-pop-to-buffer buffer)
3869 (setq truncate-lines t)
3870 (setq buf-window (selected-window))
3871 (goto-char (point-max))
3872 (insert (apply 'edebug-format fmt args) "\n")
3873 ;; Make it visible.
3874 (vertical-motion (- 1 (window-height)))
3875 (set-window-start buf-window (point))
3876 (goto-char (point-max))
3877 ;; (set-window-point buf-window (point))
3878 ;; (sit-for 0)
3879 (bury-buffer buffer)
3880 (select-window selected-window)
3881 (set-buffer oldbuf))
3882 buf-name)
3883
3884
3885 (defun edebug-trace (fmt &rest args)
3886 "Convenience call to `edebug-trace-display' using `edebug-trace-buffer'."
3887 (apply 'edebug-trace-display edebug-trace-buffer fmt args))
3888
3889 \f
3890 ;;; Frequency count and coverage
3891
3892 ;; FIXME should this use overlays instead?
3893 ;; Definitely, IMO. The current business with undo in
3894 ;; edebug-temp-display-freq-count is horrid.
3895 (defun edebug-display-freq-count ()
3896 "Display the frequency count data for each line of the current definition.
3897 The frequency counts are inserted as comment lines after each line,
3898 and you can undo all insertions with one `undo' command.
3899
3900 The counts are inserted starting under the `(' before an expression
3901 or the `)' after an expression, or on the last char of a symbol.
3902 The counts are only displayed when they differ from previous counts on
3903 the same line.
3904
3905 If coverage is being tested, whenever all known results of an expression
3906 are `eq', the char `=' will be appended after the count
3907 for that expression. Note that this is always the case for an
3908 expression only evaluated once.
3909
3910 To clear the frequency count and coverage data for a definition,
3911 reinstrument it."
3912 (interactive)
3913 (let* ((function (edebug-form-data-symbol))
3914 (counts (get function 'edebug-freq-count))
3915 (coverages (get function 'edebug-coverage))
3916 (data (get function 'edebug))
3917 (def-mark (car data)) ; mark at def start
3918 (edebug-points (nth 2 data))
3919 (i (1- (length edebug-points)))
3920 (last-index)
3921 (first-index)
3922 (start-of-line)
3923 (start-of-count-line)
3924 (last-count)
3925 )
3926 (save-excursion
3927 ;; Traverse in reverse order so offsets are correct.
3928 (while (<= 0 i)
3929 ;; Start at last expression in line.
3930 (goto-char (+ def-mark (aref edebug-points i)))
3931 (beginning-of-line)
3932 (setq start-of-line (- (point) def-mark)
3933 last-index i)
3934
3935 ;; Find all indexes on same line.
3936 (while (and (<= 0 (setq i (1- i)))
3937 (<= start-of-line (aref edebug-points i))))
3938 ;; Insert all the indices for this line.
3939 (forward-line 1)
3940 (setq start-of-count-line (point)
3941 first-index i ; Really, last index for line above this one.
3942 last-count -1) ; Cause first count to always appear.
3943 (insert ";#")
3944 ;; i == first-index still
3945 (while (<= (setq i (1+ i)) last-index)
3946 (let ((count (aref counts i))
3947 (coverage (aref coverages i))
3948 (col (save-excursion
3949 (goto-char (+ (aref edebug-points i) def-mark))
3950 (- (current-column)
3951 (if (= ?\( (following-char)) 0 1)))))
3952 (insert (make-string
3953 (max 0 (- col (- (point) start-of-count-line))) ?\s)
3954 (if (and (< 0 count)
3955 (not (memq coverage
3956 '(unknown ok-coverage))))
3957 "=" "")
3958 (if (= count last-count) "" (int-to-string count))
3959 " ")
3960 (setq last-count count)))
3961 (insert "\n")
3962 (setq i first-index)))))
3963
3964 ;; FIXME this does not work very well. Eg if you press an arrow key,
3965 ;; or make a mouse-click, it fails with "Non-character input-event".
3966 (defun edebug-temp-display-freq-count ()
3967 "Temporarily display the frequency count data for the current definition.
3968 It is removed when you hit any char."
3969 ;; This seems not to work with Emacs 18.59. It undoes too far.
3970 (interactive)
3971 (let ((inhibit-read-only t))
3972 (undo-boundary)
3973 (edebug-display-freq-count)
3974 (setq unread-command-events
3975 (append unread-command-events (list (read-event))))
3976 ;; Yuck! This doesn't seem to work at all for me.
3977 (undo)))
3978
3979 \f
3980 ;;; Menus
3981
3982 (defun edebug-toggle (variable)
3983 (set variable (not (symbol-value variable)))
3984 (message "%s: %s" variable (symbol-value variable)))
3985
3986 ;; We have to require easymenu (even for Emacs 18) just so
3987 ;; the easy-menu-define macro call is compiled correctly.
3988 (require 'easymenu)
3989
3990 (defconst edebug-mode-menus
3991 '("Edebug"
3992 ["Stop" edebug-stop t]
3993 ["Step" edebug-step-mode t]
3994 ["Next" edebug-next-mode t]
3995 ["Trace" edebug-trace-mode t]
3996 ["Trace Fast" edebug-Trace-fast-mode t]
3997 ["Continue" edebug-continue-mode t]
3998 ["Continue Fast" edebug-Continue-fast-mode t]
3999 ["Go" edebug-go-mode t]
4000 ["Go Nonstop" edebug-Go-nonstop-mode t]
4001 "----"
4002 ["Help" edebug-help t]
4003 ["Abort" abort-recursive-edit t]
4004 ["Quit to Top Level" top-level t]
4005 ["Quit Nonstop" edebug-top-level-nonstop t]
4006 "----"
4007 ("Jumps"
4008 ["Forward Sexp" edebug-forward-sexp t]
4009 ["Step In" edebug-step-in t]
4010 ["Step Out" edebug-step-out t]
4011 ["Goto Here" edebug-goto-here t])
4012
4013 ("Breaks"
4014 ["Set Breakpoint" edebug-set-breakpoint t]
4015 ["Unset Breakpoint" edebug-unset-breakpoint t]
4016 ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t]
4017 ["Set Global Break Condition" edebug-set-global-break-condition t]
4018 ["Show Next Breakpoint" edebug-next-breakpoint t])
4019
4020 ("Views"
4021 ["Where am I?" edebug-where t]
4022 ["Bounce to Current Point" edebug-bounce-point t]
4023 ["View Outside Windows" edebug-view-outside t]
4024 ["Previous Result" edebug-previous-result t]
4025 ["Show Backtrace" edebug-backtrace t]
4026 ["Display Freq Count" edebug-display-freq-count t])
4027
4028 ("Eval"
4029 ["Expression" edebug-eval-expression t]
4030 ["Last Sexp" edebug-eval-last-sexp t]
4031 ["Visit Eval List" edebug-visit-eval-list t])
4032
4033 ("Options"
4034 ["Edebug All Defs" edebug-all-defs
4035 :style toggle :selected edebug-all-defs]
4036 ["Edebug All Forms" edebug-all-forms
4037 :style toggle :selected edebug-all-forms]
4038 "----"
4039 ["Tracing" (edebug-toggle 'edebug-trace)
4040 :style toggle :selected edebug-trace]
4041 ["Test Coverage" (edebug-toggle 'edebug-test-coverage)
4042 :style toggle :selected edebug-test-coverage]
4043 ["Save Windows" edebug-toggle-save-windows
4044 :style toggle :selected edebug-save-windows]
4045 ["Save Point"
4046 (edebug-toggle 'edebug-save-displayed-buffer-points)
4047 :style toggle :selected edebug-save-displayed-buffer-points]
4048 ))
4049 "Menus for Edebug.")
4050
4051 \f
4052 ;;; Emacs version specific code
4053
4054 (defalias 'edebug-window-live-p 'window-live-p)
4055
4056 (defun edebug-mark ()
4057 (mark t))
4058
4059 (defun edebug-set-conditional-breakpoint (arg condition)
4060 "Set a conditional breakpoint at nearest sexp.
4061 The condition is evaluated in the outside context.
4062 With prefix argument, make it a temporary breakpoint."
4063 ;; (interactive "P\nxCondition: ")
4064 (interactive
4065 (list
4066 current-prefix-arg
4067 ;; Read condition as follows; getting previous condition is cumbersome:
4068 (let ((edebug-stop-point (edebug-find-stop-point)))
4069 (if edebug-stop-point
4070 (let* ((edebug-def-name (car edebug-stop-point))
4071 (index (cdr edebug-stop-point))
4072 (edebug-data (get edebug-def-name 'edebug))
4073 (edebug-breakpoints (car (cdr edebug-data)))
4074 (edebug-break-data (assq index edebug-breakpoints))
4075 (edebug-break-condition (car (cdr edebug-break-data)))
4076 (initial (and edebug-break-condition
4077 (format "%s" edebug-break-condition))))
4078 (read-from-minibuffer
4079 "Condition: " initial read-expression-map t
4080 (if (equal (car read-expression-history) initial)
4081 '(read-expression-history . 1)
4082 'read-expression-history)))))))
4083 (edebug-modify-breakpoint t condition arg))
4084
4085 (easy-menu-define edebug-menu edebug-mode-map "Edebug menus" edebug-mode-menus)
4086 \f
4087 ;;; Autoloading of Edebug accessories
4088
4089 ;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
4090 (defun edebug--require-cl-read ()
4091 (require 'edebug-cl-read))
4092
4093 (if (featurep 'cl-read)
4094 (add-hook 'edebug-setup-hook #'edebug--require-cl-read)
4095 ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
4096 (add-hook 'cl-read-load-hooks #'edebug--require-cl-read))
4097
4098 \f
4099 ;;; Finalize Loading
4100
4101 ;; When edebugging a function, some of the sub-expressions are
4102 ;; wrapped in (edebug-enter (lambda () ..)), so we need to teach
4103 ;; called-interactively-p that calls within the inner lambda should refer to
4104 ;; the outside function.
4105 (add-hook 'called-interactively-p-functions
4106 #'edebug--called-interactively-skip)
4107 (defun edebug--called-interactively-skip (i frame1 frame2)
4108 (when (and (eq (car-safe (nth 1 frame1)) 'lambda)
4109 (eq (nth 1 (nth 1 frame1)) '())
4110 (eq (nth 1 frame2) 'edebug-enter))
4111 ;; `edebug-enter' calls itself on its first invocation.
4112 (if (eq (nth 1 (backtrace-frame i 'called-interactively-p))
4113 'edebug-enter)
4114 2 1)))
4115
4116 ;; Finally, hook edebug into the rest of Emacs.
4117 ;; There are probably some other things that could go here.
4118
4119 ;; Install edebug read and eval functions.
4120 (edebug-install-read-eval-functions)
4121
4122 (defun edebug-unload-function ()
4123 "Unload the Edebug source level debugger."
4124 (when edebug-active
4125 (setq edebug-active nil)
4126 (unwind-protect
4127 (abort-recursive-edit)
4128 ;; We still want to run unload-feature to completion
4129 (run-with-idle-timer 0 nil #'(lambda () (unload-feature 'edebug)))))
4130 (remove-hook 'called-interactively-p-functions
4131 'edebug--called-interactively-skip)
4132 (remove-hook 'cl-read-load-hooks 'edebug--require-cl-read)
4133 (edebug-uninstall-read-eval-functions)
4134 ;; continue standard unloading
4135 nil)
4136
4137 (provide 'edebug)
4138
4139 ;;; edebug.el ends here