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