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