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