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