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