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