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