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