Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / emacs-lisp / debug.el
CommitLineData
c0274f38
ER
1;;; debug.el --- debuggers and related commands for Emacs
2
3731a850 3;; Copyright (C) 1985, 1986, 1994, 2001, 2002, 2003, 2004,
8b72699e 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
9750e079 5
e5167999 6;; Maintainer: FSF
e9571d2a 7;; Keywords: lisp, tools, maint
e5167999 8
0231f2dc
JB
9;; This file is part of GNU Emacs.
10
d6cba7ae 11;; GNU Emacs is free software: you can redistribute it and/or modify
0231f2dc 12;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
0231f2dc
JB
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
d6cba7ae 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0231f2dc 23
e41b2db1
ER
24;;; Commentary:
25
07f3fdb1 26;; This is a major mode documented in the Emacs Lisp manual.
e41b2db1 27
e5167999 28;;; Code:
0231f2dc 29
bb9a622e
MB
30(require 'button)
31
666b9413
SE
32(defgroup debugger nil
33 "Debuggers and related commands for Emacs."
34 :prefix "debugger-"
35 :group 'debug)
8c1cd093 36
666b9413
SE
37(defcustom debugger-mode-hook nil
38 "*Hooks run when `debugger-mode' is turned on."
39 :type 'hook
cd32a7ba
DN
40 :group 'debugger
41 :version "20.3")
8c1cd093 42
63ca439e
GM
43(defcustom debugger-batch-max-lines 40
44 "*Maximum lines to show in debugger buffer in a noninteractive Emacs.
45When the debugger is entered and Emacs is running in batch mode,
46if the backtrace text has more than this many lines,
47the middle is discarded, and just the beginning and end are displayed."
48 :type 'integer
49 :group 'debugger
50 :version "21.1")
0231f2dc 51
15cf150d
LK
52(defvar debug-function-list nil
53 "List of functions currently set for debug on entry.")
54
55(defvar debugger-step-after-exit nil
56 "Non-nil means \"single-step\" after the debugger exits.")
2eeeb0d2
RS
57
58(defvar debugger-value nil
59 "This is the value for the debugger to return, when it returns.")
60
61(defvar debugger-old-buffer nil
62 "This is the buffer that was current when the debugger was entered.")
63
25c58854
RS
64(defvar debugger-previous-backtrace nil
65 "The contents of the previous backtrace (including text properties).
66This is to optimize `debugger-make-xrefs'.")
67
cf1c8cd9 68(defvar debugger-outer-match-data)
80ddb8ed
RS
69(defvar debugger-outer-load-read-function)
70(defvar debugger-outer-overriding-local-map)
29e2b496 71(defvar debugger-outer-overriding-terminal-local-map)
35cf010d
RS
72(defvar debugger-outer-track-mouse)
73(defvar debugger-outer-last-command)
74(defvar debugger-outer-this-command)
c82fbd0c
RS
75;; unread-command-char is obsolete,
76;; but we still save and restore it
77;; in case some user program still tries to set it.
35cf010d
RS
78(defvar debugger-outer-unread-command-char)
79(defvar debugger-outer-unread-command-events)
0359db82 80(defvar debugger-outer-unread-post-input-method-events)
35cf010d
RS
81(defvar debugger-outer-last-input-event)
82(defvar debugger-outer-last-command-event)
83(defvar debugger-outer-last-nonmenu-event)
84(defvar debugger-outer-last-event-frame)
85(defvar debugger-outer-standard-input)
86(defvar debugger-outer-standard-output)
bf90c2c0 87(defvar debugger-outer-inhibit-redisplay)
35cf010d 88(defvar debugger-outer-cursor-in-echo-area)
9b530428
SM
89(defvar debugger-will-be-back nil
90 "Non-nil if we expect to get back in the debugger soon.")
35cf010d 91
b6b77a90
LK
92(defvar inhibit-debug-on-entry nil
93 "Non-nil means that debug-on-entry is disabled.")
94
95(defvar debugger-jumping-flag nil
96 "Non-nil means that debug-on-entry is disabled.
9b54d453
LK
97This variable is used by `debugger-jump', `debugger-step-through',
98and `debugger-reenable' to temporarily disable debug-on-entry.")
cf9a1b69 99
d48f0f00 100(defvar inhibit-trace) ;Not yet implemented.
77932668 101
0231f2dc
JB
102;;;###autoload
103(setq debugger 'debug)
104;;;###autoload
105(defun debug (&rest debugger-args)
2512acba 106 "Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
0231f2dc
JB
107Arguments are mainly for use when this is called from the internals
108of the evaluator.
109
110You may call with no args, or you may pass nil as the first arg and
111any other args you like. In that case, the list of args after the
112first will be printed into the backtrace buffer."
73e78cf1 113 (interactive)
e734f584
RS
114 (if inhibit-redisplay
115 ;; Don't really try to enter debugger within an eval from redisplay.
116 debugger-value
117 (unless noninteractive
118 (message "Entering debugger..."))
119 (let (debugger-value
120 (debug-on-error nil)
121 (debug-on-quit nil)
122 (debugger-buffer (let ((default-major-mode 'fundamental-mode))
123 (get-buffer-create "*Backtrace*")))
124 (debugger-old-buffer (current-buffer))
125 (debugger-step-after-exit nil)
9b530428 126 (debugger-will-be-back nil)
e734f584
RS
127 ;; Don't keep reading from an executing kbd macro!
128 (executing-kbd-macro nil)
129 ;; Save the outer values of these vars for the `e' command
130 ;; before we replace the values.
131 (debugger-outer-match-data (match-data))
132 (debugger-outer-load-read-function load-read-function)
133 (debugger-outer-overriding-local-map overriding-local-map)
134 (debugger-outer-overriding-terminal-local-map
135 overriding-terminal-local-map)
136 (debugger-outer-track-mouse track-mouse)
137 (debugger-outer-last-command last-command)
138 (debugger-outer-this-command this-command)
12cf32ce
RS
139 (debugger-outer-unread-command-char
140 (with-no-warnings unread-command-char))
e734f584
RS
141 (debugger-outer-unread-command-events unread-command-events)
142 (debugger-outer-unread-post-input-method-events
143 unread-post-input-method-events)
144 (debugger-outer-last-input-event last-input-event)
145 (debugger-outer-last-command-event last-command-event)
146 (debugger-outer-last-nonmenu-event last-nonmenu-event)
147 (debugger-outer-last-event-frame last-event-frame)
148 (debugger-outer-standard-input standard-input)
149 (debugger-outer-standard-output standard-output)
150 (debugger-outer-inhibit-redisplay inhibit-redisplay)
385480e5
RS
151 (debugger-outer-cursor-in-echo-area cursor-in-echo-area)
152 (debugger-with-timeout-suspend (with-timeout-suspend)))
e734f584
RS
153 ;; Set this instead of binding it, so that `q'
154 ;; will not restore it.
155 (setq overriding-terminal-local-map nil)
156 ;; Don't let these magic variables affect the debugger itself.
157 (let ((last-command nil) this-command track-mouse
cf9a1b69
SM
158 (inhibit-trace t)
159 (inhibit-debug-on-entry t)
12cf32ce 160 unread-command-events
e734f584
RS
161 unread-post-input-method-events
162 last-input-event last-command-event last-nonmenu-event
163 last-event-frame
164 overriding-local-map
165 load-read-function
166 ;; If we are inside a minibuffer, allow nesting
167 ;; so that we don't get an error from the `e' command.
168 (enable-recursive-minibuffers
169 (or enable-recursive-minibuffers (> (minibuffer-depth) 0)))
170 (standard-input t) (standard-output t)
171 inhibit-redisplay
172 (cursor-in-echo-area nil))
173 (unwind-protect
174 (save-excursion
175 (save-window-excursion
12cf32ce 176 (with-no-warnings
c4fbcb01
LK
177 (setq unread-command-char -1))
178 (when (eq (car debugger-args) 'debug)
179 ;; Skip the frames for backtrace-debug, byte-code,
180 ;; and implement-debug-on-entry.
181 (backtrace-debug 4 t)
182 ;; Place an extra debug-on-exit for macro's.
183 (when (eq 'lambda (car-safe (cadr (backtrace-frame 4))))
184 (backtrace-debug 5 t)))
d48f0f00 185 (pop-to-buffer debugger-buffer)
e734f584
RS
186 (debugger-mode)
187 (debugger-setup-buffer debugger-args)
188 (when noninteractive
189 ;; If the backtrace is long, save the beginning
190 ;; and the end, but discard the middle.
191 (when (> (count-lines (point-min) (point-max))
192 debugger-batch-max-lines)
193 (goto-char (point-min))
194 (forward-line (/ 2 debugger-batch-max-lines))
195 (let ((middlestart (point)))
196 (goto-char (point-max))
197 (forward-line (- (/ 2 debugger-batch-max-lines)
198 debugger-batch-max-lines))
199 (delete-region middlestart (point)))
200 (insert "...\n"))
63ca439e 201 (goto-char (point-min))
2f74c84b 202 (message "%s" (buffer-string))
e734f584 203 (kill-emacs))
35cf010d 204 (message "")
cf9a1b69 205 (let ((standard-output nil)
e734f584
RS
206 (buffer-read-only t))
207 (message "")
208 ;; Make sure we unbind buffer-read-only in the right buffer.
209 (save-excursion
210 (recursive-edit)))))
211 ;; Kill or at least neuter the backtrace buffer, so that users
212 ;; don't try to execute debugger commands in an invalid context.
78d54dee 213 (if (get-buffer-window debugger-buffer 0)
e734f584
RS
214 ;; Still visible despite the save-window-excursion? Maybe it
215 ;; it's in a pop-up frame. It would be annoying to delete and
216 ;; recreate it every time the debugger stops, so instead we'll
532c188a 217 ;; erase it (and maybe hide it) but keep it alive.
78d54dee 218 (with-current-buffer debugger-buffer
e734f584 219 (erase-buffer)
78d54dee
SM
220 (fundamental-mode)
221 (with-selected-window (get-buffer-window debugger-buffer 0)
d48f0f00 222 (when (and (window-dedicated-p (selected-window))
9b530428 223 (not debugger-will-be-back))
532c188a
SM
224 ;; If the window is not dedicated, burying the buffer
225 ;; will mean that the frame created for it is left
d48f0f00 226 ;; around showing some random buffer, and next time we
532c188a
SM
227 ;; pop to the debugger buffer we'll create yet
228 ;; another frame.
9b530428 229 ;; If debugger-will-be-back is non-nil, the frame
d48f0f00
SM
230 ;; would need to be de-iconified anyway immediately
231 ;; after when we re-enter the debugger, so iconifying it
232 ;; here would cause flashing.
1cb64239
SM
233 ;; Drew Adams is not happy with this: he wants to frame
234 ;; to be left at the top-level, still working on how
235 ;; best to do that.
236 (bury-buffer))))
e734f584 237 (kill-buffer debugger-buffer))
385480e5 238 (with-timeout-unsuspend debugger-with-timeout-suspend)
e734f584
RS
239 (set-match-data debugger-outer-match-data)))
240 ;; Put into effect the modified values of these variables
241 ;; in case the user set them with the `e' command.
242 (setq load-read-function debugger-outer-load-read-function)
243 (setq overriding-local-map debugger-outer-overriding-local-map)
244 (setq overriding-terminal-local-map
245 debugger-outer-overriding-terminal-local-map)
246 (setq track-mouse debugger-outer-track-mouse)
247 (setq last-command debugger-outer-last-command)
248 (setq this-command debugger-outer-this-command)
12cf32ce 249 (with-no-warnings
c4fbcb01 250 (setq unread-command-char debugger-outer-unread-command-char))
e734f584
RS
251 (setq unread-command-events debugger-outer-unread-command-events)
252 (setq unread-post-input-method-events
253 debugger-outer-unread-post-input-method-events)
254 (setq last-input-event debugger-outer-last-input-event)
255 (setq last-command-event debugger-outer-last-command-event)
256 (setq last-nonmenu-event debugger-outer-last-nonmenu-event)
257 (setq last-event-frame debugger-outer-last-event-frame)
258 (setq standard-input debugger-outer-standard-input)
259 (setq standard-output debugger-outer-standard-output)
260 (setq inhibit-redisplay debugger-outer-inhibit-redisplay)
261 (setq cursor-in-echo-area debugger-outer-cursor-in-echo-area)
262 (setq debug-on-next-call debugger-step-after-exit)
263 debugger-value)))
0231f2dc 264\f
63ca439e
GM
265(defun debugger-setup-buffer (debugger-args)
266 "Initialize the `*Backtrace*' buffer for entry to the debugger.
267That buffer should be current already."
268 (setq buffer-read-only nil)
269 (erase-buffer)
270 (set-buffer-multibyte nil)
49c23b70 271 (setq buffer-undo-list t)
63ca439e
GM
272 (let ((standard-output (current-buffer))
273 (print-escape-newlines t)
274 (print-level 8)
275 (print-length 50))
276 (backtrace))
277 (goto-char (point-min))
278 (delete-region (point)
279 (progn
280 (search-forward "\n debug(")
439368ed 281 (forward-line (if (eq (car debugger-args) 'debug)
449808f7 282 2 ; Remove implement-debug-on-entry frame.
439368ed 283 1))
63ca439e
GM
284 (point)))
285 (insert "Debugger entered")
286 ;; lambda is for debug-on-call when a function call is next.
287 ;; debug is for debug-on-entry function called.
288 (cond ((memq (car debugger-args) '(lambda debug))
c4fbcb01 289 (insert "--entering a function:\n"))
63ca439e
GM
290 ;; Exiting a function.
291 ((eq (car debugger-args) 'exit)
292 (insert "--returning value: ")
293 (setq debugger-value (nth 1 debugger-args))
294 (prin1 debugger-value (current-buffer))
295 (insert ?\n)
296 (delete-char 1)
297 (insert ? )
298 (beginning-of-line))
299 ;; Debugger entered for an error.
300 ((eq (car debugger-args) 'error)
301 (insert "--Lisp error: ")
302 (prin1 (nth 1 debugger-args) (current-buffer))
303 (insert ?\n))
304 ;; debug-on-call, when the next thing is an eval.
305 ((eq (car debugger-args) t)
306 (insert "--beginning evaluation of function call form:\n"))
307 ;; User calls debug directly.
308 (t
309 (insert ": ")
310 (prin1 (if (eq (car debugger-args) 'nil)
311 (cdr debugger-args) debugger-args)
312 (current-buffer))
cc1bde62 313 (insert ?\n)))
27bde5f0
RS
314 ;; After any frame that uses eval-buffer,
315 ;; insert a line that states the buffer position it's reading at.
316 (save-excursion
245f0222
RS
317 (let ((tem eval-buffer-list))
318 (while (and tem
319 (re-search-forward "^ eval-\\(buffer\\|region\\)(" nil t))
320 (end-of-line)
321 (insert (format " ; Reading at buffer position %d"
322 ;; This will get the wrong result
323 ;; if there are two nested eval-region calls
324 ;; for the same buffer. That's not a very useful case.
325 (with-current-buffer (car tem)
326 (point))))
327 (pop tem))))
cc1bde62
SS
328 (debugger-make-xrefs))
329
330(defun debugger-make-xrefs (&optional buffer)
dc64809a 331 "Attach cross-references to function names in the `*Backtrace*' buffer."
cc1bde62
SS
332 (interactive "b")
333 (save-excursion
334 (set-buffer (or buffer (current-buffer)))
25c58854 335 (setq buffer (current-buffer))
9b530428 336 (let ((inhibit-read-only t)
6836bb69 337 (old-end (point-min)) (new-end (point-min)))
25c58854
RS
338 ;; If we saved an old backtrace, find the common part
339 ;; between the new and the old.
340 ;; Compare line by line, starting from the end,
341 ;; because that's the part that is likely to be unchanged.
342 (if debugger-previous-backtrace
343 (let (old-start new-start (all-match t))
344 (goto-char (point-max))
345 (with-temp-buffer
346 (insert debugger-previous-backtrace)
347 (while (and all-match (not (bobp)))
348 (setq old-end (point))
349 (forward-line -1)
350 (setq old-start (point))
351 (with-current-buffer buffer
352 (setq new-end (point))
353 (forward-line -1)
354 (setq new-start (point)))
355 (if (not (zerop
1fe3c8f5
SM
356 (let ((case-fold-search nil))
357 (compare-buffer-substrings
358 (current-buffer) old-start old-end
359 buffer new-start new-end))))
25c58854
RS
360 (setq all-match nil))))
361 ;; Now new-end is the position of the start of the
362 ;; unchanged part in the current buffer, and old-end is
363 ;; the position of that same text in the saved old
6836bb69 364 ;; backtrace. But we must subtract (point-min) since strings are
25c58854
RS
365 ;; indexed in origin 0.
366
367 ;; Replace the unchanged part of the backtrace
368 ;; with the text from debugger-previous-backtrace,
369 ;; since that already has the proper xrefs.
370 ;; With this optimization, we only need to scan
371 ;; the changed part of the backtrace.
372 (delete-region new-end (point-max))
373 (goto-char (point-max))
6836bb69
SM
374 (insert (substring debugger-previous-backtrace
375 (- old-end (point-min))))
25c58854
RS
376 ;; Make the unchanged part of the backtrace inaccessible
377 ;; so it won't be scanned.
378 (narrow-to-region (point-min) new-end)))
a1506d29 379
25c58854
RS
380 ;; Scan the new part of the backtrace, inserting xrefs.
381 (goto-char (point-min))
382 (while (progn
dc64809a 383 (goto-char (+ (point) 2))
25c58854
RS
384 (skip-syntax-forward "^w_")
385 (not (eobp)))
386 (let* ((beg (point))
387 (end (progn (skip-syntax-forward "w_") (point)))
388 (sym (intern-soft (buffer-substring-no-properties
389 beg end)))
654359e2 390 (file (and sym (symbol-file sym 'defun))))
25c58854
RS
391 (when file
392 (goto-char beg)
393 ;; help-xref-button needs to operate on something matched
394 ;; by a regexp, so set that up for it.
dc64809a
LK
395 (re-search-forward "\\(\\sw\\|\\s_\\)+")
396 (help-xref-button 0 'help-function-def sym file)))
f27b0335 397 (forward-line 1))
25c58854
RS
398 (widen))
399 (setq debugger-previous-backtrace (buffer-string))))
63ca439e 400\f
0231f2dc
JB
401(defun debugger-step-through ()
402 "Proceed, stepping through subexpressions of this expression.
403Enter another debugger on next entry to eval, apply or funcall."
404 (interactive)
405 (setq debugger-step-after-exit t)
9b54d453 406 (setq debugger-jumping-flag t)
9b530428 407 (setq debugger-will-be-back t)
9b54d453 408 (add-hook 'post-command-hook 'debugger-reenable)
0231f2dc
JB
409 (message "Proceeding, will debug on next eval or call.")
410 (exit-recursive-edit))
411
412(defun debugger-continue ()
413 "Continue, evaluating this expression without stopping."
414 (interactive)
094e0928
GM
415 (unless debugger-may-continue
416 (error "Cannot continue"))
0231f2dc 417 (message "Continuing.")
9b530428
SM
418 (save-excursion
419 ;; Check to see if we've flagged some frame for debug-on-exit, in which
420 ;; case we'll probably come back to the debugger soon.
421 (goto-char (point-min))
422 (if (re-search-forward "^\\* " nil t)
423 (setq debugger-will-be-back t)))
0231f2dc
JB
424 (exit-recursive-edit))
425
426(defun debugger-return-value (val)
427 "Continue, specifying value to return.
428This is only useful when the value returned from the debugger
429will be used, such as in a debug on exit from a frame."
430 (interactive "XReturn value (evaluated): ")
431 (setq debugger-value val)
432 (princ "Returning " t)
433 (prin1 debugger-value)
9b530428
SM
434 (save-excursion
435 ;; Check to see if we've flagged some frame for debug-on-exit, in which
436 ;; case we'll probably come back to the debugger soon.
437 (goto-char (point-min))
438 (if (re-search-forward "^\\* " nil t)
439 (setq debugger-will-be-back t)))
0231f2dc
JB
440 (exit-recursive-edit))
441
442(defun debugger-jump ()
443 "Continue to exit from this frame, with all debug-on-entry suspended."
444 (interactive)
27bde5f0 445 (debugger-frame)
b6b77a90
LK
446 (setq debugger-jumping-flag t)
447 (add-hook 'post-command-hook 'debugger-reenable)
0231f2dc 448 (message "Continuing through this frame")
9b530428 449 (setq debugger-will-be-back t)
0231f2dc
JB
450 (exit-recursive-edit))
451
452(defun debugger-reenable ()
b6b77a90
LK
453 "Turn all debug-on-entry functions back on.
454This function is put on `post-command-hook' by `debugger-jump' and
455removes itself from that hook."
456 (setq debugger-jumping-flag nil)
457 (remove-hook 'post-command-hook 'debugger-reenable))
0231f2dc
JB
458
459(defun debugger-frame-number ()
460 "Return number of frames in backtrace before the one point points at."
461 (save-excursion
462 (beginning-of-line)
463 (let ((opoint (point))
464 (count 0))
27bde5f0
RS
465 (while (not (eq (cadr (backtrace-frame count)) 'debug))
466 (setq count (1+ count)))
449808f7
LK
467 ;; Skip implement-debug-on-entry frame.
468 (when (eq 'implement-debug-on-entry (cadr (backtrace-frame (1+ count))))
439368ed 469 (setq count (1+ count)))
0231f2dc 470 (goto-char (point-min))
439368ed
LK
471 (when (looking-at "Debugger entered--\\(Lisp error\\|returning value\\):")
472 (goto-char (match-end 0))
473 (forward-sexp 1))
0231f2dc
JB
474 (forward-line 1)
475 (while (progn
476 (forward-char 2)
477 (if (= (following-char) ?\()
478 (forward-sexp 1)
479 (forward-sexp 2))
480 (forward-line 1)
481 (<= (point) opoint))
65fe45f2
RS
482 (if (looking-at " *;;;")
483 (forward-line 1))
0231f2dc
JB
484 (setq count (1+ count)))
485 count)))
486
0231f2dc
JB
487(defun debugger-frame ()
488 "Request entry to debugger when this frame exits.
489Applies to the frame whose line point is on in the backtrace."
490 (interactive)
fa5b1b57
RS
491 (save-excursion
492 (beginning-of-line)
493 (if (looking-at " *;;;\\|[a-z]")
494 (error "This line is not a function call")))
0231f2dc 495 (beginning-of-line)
27bde5f0 496 (backtrace-debug (debugger-frame-number) t)
0231f2dc 497 (if (= (following-char) ? )
9b530428 498 (let ((inhibit-read-only t))
0231f2dc
JB
499 (delete-char 1)
500 (insert ?*)))
501 (beginning-of-line))
502
503(defun debugger-frame-clear ()
c519f68f 504 "Do not enter debugger when this frame exits.
0231f2dc
JB
505Applies to the frame whose line point is on in the backtrace."
506 (interactive)
fa5b1b57
RS
507 (save-excursion
508 (beginning-of-line)
509 (if (looking-at " *;;;\\|[a-z]")
510 (error "This line is not a function call")))
0231f2dc 511 (beginning-of-line)
27bde5f0 512 (backtrace-debug (debugger-frame-number) nil)
0231f2dc 513 (if (= (following-char) ?*)
9b530428 514 (let ((inhibit-read-only t))
0231f2dc
JB
515 (delete-char 1)
516 (insert ? )))
517 (beginning-of-line))
518
8c1cd093
KH
519(put 'debugger-env-macro 'lisp-indent-function 0)
520(defmacro debugger-env-macro (&rest body)
521 "Run BODY in original environment."
6c2599ed
SS
522 `(save-excursion
523 (if (null (buffer-name debugger-old-buffer))
524 ;; old buffer deleted
525 (setq debugger-old-buffer (current-buffer)))
526 (set-buffer debugger-old-buffer)
527 (let ((load-read-function debugger-outer-load-read-function)
528 (overriding-terminal-local-map
529 debugger-outer-overriding-terminal-local-map)
530 (overriding-local-map debugger-outer-overriding-local-map)
531 (track-mouse debugger-outer-track-mouse)
532 (last-command debugger-outer-last-command)
533 (this-command debugger-outer-this-command)
6c2599ed
SS
534 (unread-command-events debugger-outer-unread-command-events)
535 (unread-post-input-method-events
536 debugger-outer-unread-post-input-method-events)
537 (last-input-event debugger-outer-last-input-event)
538 (last-command-event debugger-outer-last-command-event)
539 (last-nonmenu-event debugger-outer-last-nonmenu-event)
540 (last-event-frame debugger-outer-last-event-frame)
541 (standard-input debugger-outer-standard-input)
542 (standard-output debugger-outer-standard-output)
543 (inhibit-redisplay debugger-outer-inhibit-redisplay)
544 (cursor-in-echo-area debugger-outer-cursor-in-echo-area))
545 (set-match-data debugger-outer-match-data)
12cf32ce
RS
546 (prog1
547 (let ((save-ucc (with-no-warnings unread-command-char)))
548 (unwind-protect
549 (progn
550 (with-no-warnings
c4fbcb01 551 (setq unread-command-char debugger-outer-unread-command-char))
12cf32ce
RS
552 (prog1 (progn ,@body)
553 (with-no-warnings
c4fbcb01 554 (setq debugger-outer-unread-command-char unread-command-char))))
12cf32ce 555 (with-no-warnings
c4fbcb01 556 (setq unread-command-char save-ucc))))
6c2599ed
SS
557 (setq debugger-outer-match-data (match-data))
558 (setq debugger-outer-load-read-function load-read-function)
559 (setq debugger-outer-overriding-terminal-local-map
560 overriding-terminal-local-map)
561 (setq debugger-outer-overriding-local-map overriding-local-map)
562 (setq debugger-outer-track-mouse track-mouse)
563 (setq debugger-outer-last-command last-command)
564 (setq debugger-outer-this-command this-command)
6c2599ed
SS
565 (setq debugger-outer-unread-command-events unread-command-events)
566 (setq debugger-outer-unread-post-input-method-events
567 unread-post-input-method-events)
568 (setq debugger-outer-last-input-event last-input-event)
569 (setq debugger-outer-last-command-event last-command-event)
570 (setq debugger-outer-last-nonmenu-event last-nonmenu-event)
571 (setq debugger-outer-last-event-frame last-event-frame)
572 (setq debugger-outer-standard-input standard-input)
573 (setq debugger-outer-standard-output standard-output)
574 (setq debugger-outer-inhibit-redisplay inhibit-redisplay)
575 (setq debugger-outer-cursor-in-echo-area cursor-in-echo-area)
576 ))))
8c1cd093 577
0231f2dc 578(defun debugger-eval-expression (exp)
8782c06b
RS
579 "Eval an expression, in an environment like that outside the debugger."
580 (interactive
581 (list (read-from-minibuffer "Eval: "
582 nil read-expression-map t
583 'read-expression-history)))
8c1cd093 584 (debugger-env-macro (eval-expression exp)))
0231f2dc 585\f
78d54dee 586(defvar debugger-mode-map
b2371818
DN
587 (let ((map (make-keymap))
588 (menu-map (make-sparse-keymap)))
78d54dee
SM
589 (set-keymap-parent map button-buffer-map)
590 (suppress-keymap map)
591 (define-key map "-" 'negative-argument)
592 (define-key map "b" 'debugger-frame)
593 (define-key map "c" 'debugger-continue)
594 (define-key map "j" 'debugger-jump)
595 (define-key map "r" 'debugger-return-value)
596 (define-key map "u" 'debugger-frame-clear)
597 (define-key map "d" 'debugger-step-through)
598 (define-key map "l" 'debugger-list-functions)
599 (define-key map "h" 'describe-mode)
600 (define-key map "q" 'top-level)
601 (define-key map "e" 'debugger-eval-expression)
602 (define-key map " " 'next-line)
603 (define-key map "R" 'debugger-record-expression)
245f0222 604 (define-key map "\C-m" 'debug-help-follow)
78d54dee 605 (define-key map [mouse-2] 'push-button)
b2371818
DN
606 (define-key map [menu-bar debugger] (cons "Debugger" menu-map))
607 (define-key menu-map [deb-top]
608 '(menu-item "Quit" top-level
f6ec6415 609 :help "Quit debugging and return to top level"))
b2371818
DN
610 (define-key menu-map [deb-s0] '("--"))
611 (define-key menu-map [deb-descr]
612 '(menu-item "Describe Debugger Mode" describe-mode
613 :help "Display documentation for debugger-mode"))
614 (define-key menu-map [deb-hfol]
615 '(menu-item "Help Follow" debug-help-follow
616 :help "Follow cross-reference"))
617 (define-key menu-map [deb-nxt]
618 '(menu-item "Next Line" next-line
619 :help "Move cursor down"))
620 (define-key menu-map [deb-s1] '("--"))
621 (define-key menu-map [deb-lfunc]
622 '(menu-item "List debug on entry functions" debugger-list-functions
623 :help "Display a list of all the functions now set to debug on entry"))
624 (define-key menu-map [deb-fclear]
625 '(menu-item "Cancel debug frame" debugger-frame-clear
626 :help "Do not enter debugger when this frame exits"))
627 (define-key menu-map [deb-frame]
628 '(menu-item "Debug frame" debugger-frame
629 :help "Request entry to debugger when this frame exits"))
630 (define-key menu-map [deb-s2] '("--"))
631 (define-key menu-map [deb-ret]
632 '(menu-item "Return value..." debugger-return-value
633 :help "Continue, specifying value to return."))
634 (define-key menu-map [deb-rec]
635 '(menu-item "Display and Record Expression" debugger-record-expression
636 :help "Display a variable's value and record it in `*Backtrace-record*' buffer"))
637 (define-key menu-map [deb-eval]
638 '(menu-item "Eval Expression..." debugger-eval-expression
639 :help "Eval an expression, in an environment like that outside the debugger"))
640 (define-key menu-map [deb-jump]
641 '(menu-item "Jump" debugger-jump
642 :help "Continue to exit from this frame, with all debug-on-entry suspended"))
643 (define-key menu-map [deb-cont]
644 '(menu-item "Continue" debugger-continue
645 :help "Continue, evaluating this expression without stopping"))
646 (define-key menu-map [deb-step]
647 '(menu-item "Step through" debugger-step-through
648 :help "Proceed, stepping through subexpressions of this expression"))
78d54dee 649 map))
028d38a2
RS
650
651(put 'debugger-mode 'mode-class 'special)
652
653(defun debugger-mode ()
654 "Mode for backtrace buffers, selected in debugger.
655\\<debugger-mode-map>
656A line starts with `*' if exiting that frame will call the debugger.
657Type \\[debugger-frame] or \\[debugger-frame-clear] to set or remove the `*'.
658
659When in debugger due to frame being exited,
660use the \\[debugger-return-value] command to override the value
661being returned from that frame.
662
663Use \\[debug-on-entry] and \\[cancel-debug-on-entry] to control
664which functions will enter the debugger when called.
665
666Complete list of commands:
667\\{debugger-mode-map}"
668 (kill-all-local-variables)
669 (setq major-mode 'debugger-mode)
670 (setq mode-name "Debugger")
671 (setq truncate-lines t)
672 (set-syntax-table emacs-lisp-mode-syntax-table)
673 (use-local-map debugger-mode-map)
674 (run-mode-hooks 'debugger-mode-hook))
245f0222 675\f
666b9413
SE
676(defcustom debugger-record-buffer "*Debugger-record*"
677 "*Buffer name for expression values, for \\[debugger-record-expression]."
678 :type 'string
cd32a7ba
DN
679 :group 'debugger
680 :version "20.3")
8c1cd093
KH
681
682(defun debugger-record-expression (exp)
683 "Display a variable's value and record it in `*Backtrace-record*' buffer."
684 (interactive
685 (list (read-from-minibuffer
686 "Record Eval: "
687 nil
688 read-expression-map t
689 'read-expression-history)))
690 (let* ((buffer (get-buffer-create debugger-record-buffer))
691 (standard-output buffer))
692 (princ (format "Debugger Eval (%s): " exp))
693 (princ (debugger-eval-expression exp))
694 (terpri))
695
696 (with-current-buffer (get-buffer debugger-record-buffer)
8e71c318 697 (message "%s"
be940bc5
SM
698 (buffer-substring (line-beginning-position 0)
699 (line-end-position 0)))))
0231f2dc 700
245f0222
RS
701(defun debug-help-follow (&optional pos)
702 "Follow cross-reference at POS, defaulting to point.
703
704For the cross-reference format, see `help-make-xrefs'."
705 (interactive "d")
706 (require 'help-mode)
a5f1e154
LT
707 ;; Ideally we'd just do (call-interactively 'help-follow) except that this
708 ;; assumes we're already in a *Help* buffer and reuses it, so it ends up
709 ;; incorrectly "reusing" the *Backtrace* buffer to show the help info.
245f0222
RS
710 (unless pos
711 (setq pos (point)))
712 (unless (push-button pos)
713 ;; check if the symbol under point is a function or variable
714 (let ((sym
715 (intern
716 (save-excursion
717 (goto-char pos) (skip-syntax-backward "w_")
718 (buffer-substring (point)
719 (progn (skip-syntax-forward "w_")
720 (point)))))))
721 (when (or (boundp sym) (fboundp sym) (facep sym))
1fe3c8f5 722 (help-xref-interned sym)))))
0231f2dc 723\f
449808f7
LK
724;; When you change this, you may also need to change the number of
725;; frames that the debugger skips.
726(defun implement-debug-on-entry ()
727 "Conditionally call the debugger.
728A call to this function is inserted by `debug-on-entry' to cause
729functions to break on entry."
730 (if (or inhibit-debug-on-entry debugger-jumping-flag)
731 nil
732 (funcall debugger 'debug)))
733
ce5ce46d
LK
734(defun debugger-special-form-p (symbol)
735 "Return whether SYMBOL is a special form."
736 (and (fboundp symbol)
737 (subrp (symbol-function symbol))
738 (eq (cdr (subr-arity (symbol-function symbol))) 'unevalled)))
739
0231f2dc
JB
740;;;###autoload
741(defun debug-on-entry (function)
742 "Request FUNCTION to invoke debugger each time it is called.
8ac3941d 743
8e71c318 744When called interactively, prompt for FUNCTION in the minibuffer.
8ac3941d
LK
745
746This works by modifying the definition of FUNCTION. If you tell the
747debugger to continue, FUNCTION's execution proceeds. If FUNCTION is a
748normal function or a macro written in Lisp, you can also step through
749its execution. FUNCTION can also be a primitive that is not a special
750form, in which case stepping is not possible. Break-on-entry for
751primitive functions only works when that function is called from Lisp.
752
0231f2dc 753Use \\[cancel-debug-on-entry] to cancel the effect of this command.
2512acba 754Redefining FUNCTION also cancels it."
ce5ce46d
LK
755 (interactive
756 (let ((fn (function-called-at-point)) val)
757 (when (debugger-special-form-p fn)
758 (setq fn nil))
3731a850 759 (setq val (completing-read
ce5ce46d
LK
760 (if fn
761 (format "Debug on entry to function (default %s): " fn)
762 "Debug on entry to function: ")
763 obarray
764 #'(lambda (symbol)
765 (and (fboundp symbol)
766 (not (debugger-special-form-p symbol))))
767 t nil nil (symbol-name fn)))
768 (list (if (equal val "") fn (intern val)))))
769 (when (debugger-special-form-p function)
d7029908 770 (error "Function %s is a special form" function))
8e71c318 771 (if (or (symbolp (symbol-function function))
7473b6ad 772 (subrp (symbol-function function)))
d7029908
LK
773 ;; The function is built-in or aliased to another function.
774 ;; Create a wrapper in which we can add the debug call.
f9e899b6 775 (fset function `(lambda (&rest debug-on-entry-args)
7473b6ad 776 ,(interactive-form (symbol-function function))
8e71c318 777 (apply ',(symbol-function function)
d7029908
LK
778 debug-on-entry-args)))
779 (when (eq (car-safe (symbol-function function)) 'autoload)
780 ;; The function is autoloaded. Load its real definition.
781 (load (cadr (symbol-function function)) nil noninteractive nil t))
782 (when (or (not (consp (symbol-function function)))
783 (and (eq (car (symbol-function function)) 'macro)
784 (not (consp (cdr (symbol-function function))))))
785 ;; The function is byte-compiled. Create a wrapper in which
786 ;; we can add the debug call.
787 (debug-convert-byte-code function)))
788 (unless (consp (symbol-function function))
789 (error "Definition of %s is not a list" function))
449808f7 790 (fset function (debug-on-entry-1 function t))
d7029908
LK
791 (unless (memq function debug-function-list)
792 (push function debug-function-list))
0231f2dc
JB
793 function)
794
795;;;###autoload
796(defun cancel-debug-on-entry (&optional function)
797 "Undo effect of \\[debug-on-entry] on FUNCTION.
dd72a03a 798If FUNCTION is nil, cancel debug-on-entry for all functions.
8e71c318
LT
799When called interactively, prompt for FUNCTION in the minibuffer.
800To specify a nil argument interactively, exit with an empty minibuffer."
10a4c11f
JB
801 (interactive
802 (list (let ((name
922a9de3 803 (completing-read
5b76833f 804 "Cancel debug on entry to function (default all functions): "
922a9de3 805 (mapcar 'symbol-name debug-function-list) nil t)))
dd72a03a
LK
806 (when name
807 (unless (string= name "")
808 (intern name))))))
809 (if (and function
810 (not (string= function ""))) ; Pre 22.1 compatibility test.
0231f2dc 811 (progn
d7029908 812 (let ((defn (debug-on-entry-1 function nil)))
7473b6ad 813 (condition-case nil
d7029908
LK
814 (when (and (equal (nth 1 defn) '(&rest debug-on-entry-args))
815 (eq (car (nth 3 defn)) 'apply))
816 ;; `defn' is a wrapper introduced in debug-on-entry.
817 ;; Get rid of it since we don't need it any more.
818 (setq defn (nth 1 (nth 1 (nth 3 defn)))))
7473b6ad 819 (error nil))
d7029908 820 (fset function defn))
0231f2dc
JB
821 (setq debug-function-list (delq function debug-function-list))
822 function)
823 (message "Cancelling debug-on-entry for all functions")
824 (mapcar 'cancel-debug-on-entry debug-function-list)))
825
826(defun debug-convert-byte-code (function)
d7029908
LK
827 (let* ((defn (symbol-function function))
828 (macro (eq (car-safe defn) 'macro)))
829 (when macro (setq defn (cdr defn)))
830 (unless (consp defn)
831 ;; Assume a compiled code object.
832 (let* ((contents (append defn nil))
833 (body
834 (list (list 'byte-code (nth 1 contents)
835 (nth 2 contents) (nth 3 contents)))))
836 (if (nthcdr 5 contents)
837 (setq body (cons (list 'interactive (nth 5 contents)) body)))
838 (if (nth 4 contents)
839 ;; Use `documentation' here, to get the actual string,
840 ;; in case the compiled function has a reference
841 ;; to the .elc file.
842 (setq body (cons (documentation function) body)))
843 (setq defn (cons 'lambda (cons (car contents) body))))
844 (when macro (setq defn (cons 'macro defn)))
845 (fset function defn))))
0231f2dc 846
449808f7
LK
847(defun debug-on-entry-1 (function flag)
848 (let* ((defn (symbol-function function))
849 (tail defn))
8e71c318 850 (when (eq (car-safe tail) 'macro)
d7029908
LK
851 (setq tail (cdr tail)))
852 (if (not (eq (car-safe tail) 'lambda))
853 ;; Only signal an error when we try to set debug-on-entry.
854 ;; When we try to clear debug-on-entry, we are now done.
855 (when flag
856 (error "%s is not a user-defined Lisp function" function))
857 (setq tail (cdr tail))
a29cf450
SM
858 ;; Skip the docstring.
859 (when (and (stringp (cadr tail)) (cddr tail))
860 (setq tail (cdr tail)))
861 ;; Skip the interactive form.
862 (when (eq 'interactive (car-safe (cadr tail)))
863 (setq tail (cdr tail)))
449808f7 864 (unless (eq flag (equal (cadr tail) '(implement-debug-on-entry)))
a29cf450
SM
865 ;; Add/remove debug statement as needed.
866 (if flag
449808f7 867 (setcdr tail (cons '(implement-debug-on-entry) (cdr tail)))
d7029908
LK
868 (setcdr tail (cddr tail)))))
869 defn))
0231f2dc
JB
870
871(defun debugger-list-functions ()
872 "Display a list of all the functions now set to debug on entry."
873 (interactive)
78d54dee
SM
874 (require 'help-mode)
875 (help-setup-xref '(debugger-list-functions) (interactive-p))
876 (with-output-to-temp-buffer (help-buffer)
877 (with-current-buffer standard-output
878 (if (null debug-function-list)
879 (princ "No debug-on-entry functions now\n")
880 (princ "Functions set to debug on entry:\n\n")
881 (dolist (fun debug-function-list)
882 (make-text-button (point) (progn (prin1 fun) (point))
883 'type 'help-function
884 'help-args (list fun))
885 (terpri))
886 (terpri)
887 (princ "Note: if you have redefined a function, then it may no longer\n")
888 (princ "be set to debug on entry, even if it is in the list.")))))
c0274f38 889
896546cd
RS
890(provide 'debug)
891
78d54dee 892;; arch-tag: b6ec7047-f801-4103-9c63-d69322db9d3b
c0274f38 893;;; debug.el ends here