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