0.9.13.35:
[sbcl.git] / src / code / debug.lisp
1 ;;;; the debugger
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!DEBUG")
13 \f
14 ;;;; variables and constants
15
16 ;;; things to consider when tweaking these values:
17 ;;;   * We're afraid to just default them to NIL and NIL, in case the
18 ;;;     user inadvertently causes a hairy data structure to be printed
19 ;;;     when he inadvertently enters the debugger.
20 ;;;   * We don't want to truncate output too much. These days anyone
21 ;;;     can easily run their Lisp in a windowing system or under Emacs,
22 ;;;     so it's not the end of the world even if the worst case is a
23 ;;;     few thousand lines of output.
24 ;;;   * As condition :REPORT methods are converted to use the pretty
25 ;;;     printer, they acquire *PRINT-LEVEL* constraints, so e.g. under
26 ;;;     sbcl-0.7.1.28's old value of *DEBUG-PRINT-LEVEL*=3, an
27 ;;;     ARG-COUNT-ERROR printed as
28 ;;;       error while parsing arguments to DESTRUCTURING-BIND:
29 ;;;         invalid number of elements in
30 ;;;           #
31 ;;;         to satisfy lambda list
32 ;;;           #:
33 ;;;         exactly 2 expected, but 5 found
34 (defvar *debug-print-variable-alist* nil
35   #!+sb-doc
36   "an association list describing new bindings for special variables
37 to be used within the debugger. Eg.
38
39  ((*PRINT-LENGTH* . 10) (*PRINT-LEVEL* . 6) (*PRINT-PRETTY* . NIL))
40
41 The variables in the CAR positions are bound to the values in the CDR
42 during the execution of some debug commands. When evaluating arbitrary
43 expressions in the debugger, the normal values of the printer control
44 variables are in effect.
45
46 Initially empty, *DEBUG-PRINT-VARIABLE-ALIST* is typically used to
47 provide bindings for printer control variables.")
48
49 (defvar *debug-readtable*
50   ;; KLUDGE: This can't be initialized in a cold toplevel form,
51   ;; because the *STANDARD-READTABLE* isn't initialized until after
52   ;; cold toplevel forms have run. So instead we initialize it
53   ;; immediately after *STANDARD-READTABLE*. -- WHN 20000205
54   nil
55   #!+sb-doc
56   "*READTABLE* for the debugger")
57
58 (defvar *in-the-debugger* nil
59   #!+sb-doc
60   "This is T while in the debugger.")
61
62 ;;; nestedness inside debugger command loops
63 (defvar *debug-command-level* 0)
64
65 ;;; If this is bound before the debugger is invoked, it is used as the
66 ;;; stack top by the debugger.
67 (defvar *stack-top-hint* nil)
68
69 (defvar *stack-top* nil)
70 (defvar *real-stack-top* nil)
71
72 (defvar *current-frame* nil)
73
74 ;;; Beginner-oriented help messages are important because you end up
75 ;;; in the debugger whenever something bad happens, or if you try to
76 ;;; get out of the system with Ctrl-C or (EXIT) or EXIT or whatever.
77 ;;; But after memorizing them the wasted screen space gets annoying..
78 (defvar *debug-beginner-help-p* t
79   "Should the debugger display beginner-oriented help messages?")
80
81 (defun debug-prompt (stream)
82   (sb!thread::get-foreground)
83   (format stream
84           "~%~W~:[~;[~W~]] "
85           (sb!di:frame-number *current-frame*)
86           (> *debug-command-level* 1)
87           *debug-command-level*))
88
89 (defparameter *debug-help-string*
90 "The debug prompt is square brackets, with number(s) indicating the current
91   control stack level and, if you've entered the debugger recursively, how
92   deeply recursed you are.
93 Any command -- including the name of a restart -- may be uniquely abbreviated.
94 The debugger rebinds various special variables for controlling i/o, sometimes
95   to defaults (much like WITH-STANDARD-IO-SYNTAX does) and sometimes to
96   its own special values, based on SB-EXT:*DEBUG-PRINT-VARIABLE-ALIST*.
97 Debug commands do not affect *, //, and similar variables, but evaluation in
98   the debug loop does affect these variables.
99 SB-DEBUG:*FLUSH-DEBUG-ERRORS* controls whether errors at the debug prompt
100   drop you deeper into the debugger. The default NIL allows recursive entry
101   to debugger.
102
103 Getting in and out of the debugger:
104   TOPLEVEL, TOP  exits debugger and returns to top level REPL
105   RESTART        invokes restart numbered as shown (prompt if not given).
106   ERROR          prints the error condition and restart cases.
107
108   The number of any restart, or its name, or a unique abbreviation for its
109    name, is a valid command, and is the same as using RESTART to invoke
110    that restart.
111
112 Changing frames:
113   UP     up frame         DOWN     down frame
114   BOTTOM bottom frame     FRAME n  frame n (n=0 for top frame)
115
116 Inspecting frames:
117   BACKTRACE [n]  shows n frames going down the stack.
118   LIST-LOCALS, L lists locals in current frame.
119   PRINT, P       displays function call for current frame.
120   SOURCE [n]     displays frame's source form with n levels of enclosing forms.
121
122 Stepping:
123   STEP  Selects the CONTINUE restart if one exists and starts
124         single-stepping. Single stepping affects only code compiled with
125         under high DEBUG optimization quality. See User Manual for details.
126
127 Function and macro commands:
128  (SB-DEBUG:ARG n)
129     Return the n'th argument in the current frame.
130  (SB-DEBUG:VAR string-or-symbol [id])
131     Returns the value of the specified variable in the current frame.
132
133 Other commands:
134   RETURN expr
135     Return the values resulting from evaluation of expr from the
136     current frame, if this frame was compiled with a sufficiently high
137     DEBUG optimization quality.
138
139   SLURP
140     Discard all pending input on *STANDARD-INPUT*. (This can be
141     useful when the debugger was invoked to handle an error in
142     deeply nested input syntax, and now the reader is confused.)")
143 \f
144
145 ;;; If LOC is an unknown location, then try to find the block start
146 ;;; location. Used by source printing to some information instead of
147 ;;; none for the user.
148 (defun maybe-block-start-location (loc)
149   (if (sb!di:code-location-unknown-p loc)
150       (let* ((block (sb!di:code-location-debug-block loc))
151              (start (sb!di:do-debug-block-locations (loc block)
152                       (return loc))))
153         (cond ((and (not (sb!di:debug-block-elsewhere-p block))
154                     start)
155                (format *debug-io* "~%unknown location: using block start~%")
156                start)
157               (t
158                loc)))
159       loc))
160 \f
161 ;;;; BACKTRACE
162
163 (defun backtrace (&optional (count most-positive-fixnum) (stream *debug-io*))
164   #!+sb-doc
165   "Show a listing of the call stack going down from the current frame.
166 In the debugger, the current frame is indicated by the prompt. COUNT
167 is how many frames to show."
168   (fresh-line stream)
169   (do ((frame (if *in-the-debugger* *current-frame* (sb!di:top-frame))
170               (sb!di:frame-down frame))
171        (count count (1- count)))
172       ((or (null frame) (zerop count)))
173     (print-frame-call frame stream :number t))
174   (fresh-line stream)
175   (values))
176
177 (defun backtrace-as-list (&optional (count most-positive-fixnum))
178   #!+sb-doc "Return a list representing the current BACKTRACE."
179   (do ((reversed-result nil)
180        (frame (if *in-the-debugger* *current-frame* (sb!di:top-frame))
181               (sb!di:frame-down frame))
182        (count count (1- count)))
183       ((or (null frame) (zerop count))
184        (nreverse reversed-result))
185     (push (frame-call-as-list frame) reversed-result)))
186
187 (defun frame-call-as-list (frame)
188   (multiple-value-bind (name args) (frame-call frame)
189     (cons name args)))
190 \f
191 ;;;; frame printing
192
193 (eval-when (:compile-toplevel :execute)
194
195 ;;; This is a convenient way to express what to do for each type of
196 ;;; lambda-list element.
197 (sb!xc:defmacro lambda-list-element-dispatch (element
198                                               &key
199                                               required
200                                               optional
201                                               rest
202                                               keyword
203                                               deleted)
204   `(etypecase ,element
205      (sb!di:debug-var
206       ,@required)
207      (cons
208       (ecase (car ,element)
209         (:optional ,@optional)
210         (:rest ,@rest)
211         (:keyword ,@keyword)))
212      (symbol
213       (aver (eq ,element :deleted))
214       ,@deleted)))
215
216 (sb!xc:defmacro lambda-var-dispatch (variable location deleted valid other)
217   (let ((var (gensym)))
218     `(let ((,var ,variable))
219        (cond ((eq ,var :deleted) ,deleted)
220              ((eq (sb!di:debug-var-validity ,var ,location) :valid)
221               ,valid)
222              (t ,other)))))
223
224 ) ; EVAL-WHEN
225
226 ;;; This is used in constructing arg lists for debugger printing when
227 ;;; the arg list is unavailable, some arg is unavailable or unused, etc.
228 (defstruct (unprintable-object
229             (:constructor make-unprintable-object (string))
230             (:print-object (lambda (x s)
231                              (print-unreadable-object (x s)
232                                (write-string (unprintable-object-string x)
233                                              s))))
234             (:copier nil))
235   string)
236
237 ;;; Extract the function argument values for a debug frame.
238 (defun frame-args-as-list (frame)
239   (let ((debug-fun (sb!di:frame-debug-fun frame))
240         (loc (sb!di:frame-code-location frame))
241         (reversed-result nil))
242     (handler-case
243         (progn
244           (dolist (ele (sb!di:debug-fun-lambda-list debug-fun))
245             (lambda-list-element-dispatch ele
246              :required ((push (frame-call-arg ele loc frame) reversed-result))
247              :optional ((push (frame-call-arg (second ele) loc frame)
248                               reversed-result))
249              :keyword ((push (second ele) reversed-result)
250                        (push (frame-call-arg (third ele) loc frame)
251                              reversed-result))
252              :deleted ((push (frame-call-arg ele loc frame) reversed-result))
253              :rest ((lambda-var-dispatch (second ele) loc
254                      nil
255                      (progn
256                        (setf reversed-result
257                              (append (reverse (sb!di:debug-var-value
258                                                (second ele) frame))
259                                      reversed-result))
260                        (return))
261                      (push (make-unprintable-object
262                             "unavailable &REST argument")
263                      reversed-result)))))
264           ;; As long as we do an ordinary return (as opposed to SIGNALing
265           ;; a CONDITION) from the DOLIST above:
266           (nreverse reversed-result))
267       (sb!di:lambda-list-unavailable
268        ()
269        (make-unprintable-object "unavailable lambda list")))))
270 (legal-fun-name-p '(lambda ()))
271 (defvar *show-entry-point-details* nil)
272
273 (defun clean-xep (name args)
274   (values (second name)
275           (if (consp args)
276               (let ((count (first args))
277                     (real-args (rest args)))
278                 (if (fixnump count)
279                     (subseq real-args 0
280                             (min count (length real-args)))
281                     real-args))
282               args)))
283
284 (defun clean-&more-processor (name args)
285   (values (second name)
286           (if (consp args)
287               (let* ((more (last args 2))
288                      (context (first more))
289                      (count (second more)))
290                 (append
291                  (butlast args 2)
292                  (if (fixnump count)
293                      (multiple-value-list
294                       (sb!c:%more-arg-values context 0 count))
295                      (list
296                       (make-unprintable-object "more unavailable arguments")))))
297               args)))
298
299 (defun frame-call (frame)
300   (labels ((clean-name-and-args (name args)
301              (if (and (consp name) (not *show-entry-point-details*))
302                  ;; FIXME: do we need to deal with
303                  ;; HAIRY-FUNCTION-ENTRY here? I can't make it or
304                  ;; &AUX-BINDINGS appear in backtraces, so they are
305                  ;; left alone for now. --NS 2005-02-28
306                  (case (first name)
307                    ((sb!c::xep sb!c::tl-xep)
308                     (clean-xep name args))
309                    ((sb!c::&more-processor)
310                     (clean-&more-processor name args))
311                    ((sb!c::hairy-arg-processor
312                      sb!c::varargs-entry sb!c::&optional-processor)
313                     (clean-name-and-args (second name) args))
314                    (t
315                     (values name args)))
316                  (values name args))))
317     (let ((debug-fun (sb!di:frame-debug-fun frame)))
318       (multiple-value-bind (name args)
319           (clean-name-and-args (sb!di:debug-fun-name debug-fun)
320                                 (frame-args-as-list frame))
321         (values name args
322                 (when *show-entry-point-details*
323                   (sb!di:debug-fun-kind debug-fun)))))))
324
325 (defun ensure-printable-object (object)
326   (handler-case
327       (with-open-stream (out (make-broadcast-stream))
328         (prin1 object out)
329         object)
330     (error (cond)
331       (declare (ignore cond))
332       (make-unprintable-object "error printing object"))))
333
334 (defun frame-call-arg (var location frame)
335   (lambda-var-dispatch var location
336     (make-unprintable-object "unused argument")
337     (sb!di:debug-var-value var frame)
338     (make-unprintable-object "unavailable argument")))
339
340 ;;; Prints a representation of the function call causing FRAME to
341 ;;; exist. VERBOSITY indicates the level of information to output;
342 ;;; zero indicates just printing the DEBUG-FUN's name, and one
343 ;;; indicates displaying call-like, one-liner format with argument
344 ;;; values.
345 (defun print-frame-call (frame stream &key (verbosity 1) (number nil))
346   (when number
347     (format stream "~&~S: " (sb!di:frame-number frame)))
348   (if (zerop verbosity)
349       (let ((*print-readably* nil))
350         (prin1 frame stream))
351       (multiple-value-bind (name args kind) (frame-call frame)
352         (pprint-logical-block (stream nil :prefix "(" :suffix ")")
353           ;; Since we go to some trouble to make nice informative function
354           ;; names like (PRINT-OBJECT :AROUND (CLOWN T)), let's make sure
355           ;; that they aren't truncated by *PRINT-LENGTH* and *PRINT-LEVEL*.
356           ;; For the function arguments, we can just print normally.
357           (let ((*print-length* nil)
358                 (*print-level* nil))
359             (prin1 (ensure-printable-object name) stream))
360           ;; If we hit a &REST arg, then print as many of the values as
361           ;; possible, punting the loop over lambda-list variables since any
362           ;; other arguments will be in the &REST arg's list of values.
363           (let ((args (ensure-printable-object args)))
364             (if (listp args)
365                 (format stream "~{ ~_~S~}" args)
366                 (format stream " ~S" args))))
367         (when kind
368           (format stream "[~S]" kind))))
369   (when (>= verbosity 2)
370     (let ((loc (sb!di:frame-code-location frame)))
371       (handler-case
372           (progn
373             ;; FIXME: Is this call really necessary here? If it is,
374             ;; then the reason for it should be unobscured.
375             (sb!di:code-location-debug-block loc)
376             (format stream "~%source: ")
377             (prin1 (code-location-source-form loc 0) stream))
378         (sb!di:debug-condition (ignore)
379           ignore)
380         (error (c)
381           (format stream "~&error finding source: ~A" c))))))
382 \f
383 ;;;; INVOKE-DEBUGGER
384
385 (defvar *debugger-hook* nil
386   #!+sb-doc
387   "This is either NIL or a function of two arguments, a condition and the value
388    of *DEBUGGER-HOOK*. This function can either handle the condition or return
389    which causes the standard debugger to execute. The system passes the value
390    of this variable to the function because it binds *DEBUGGER-HOOK* to NIL
391    around the invocation.")
392
393 (defvar *invoke-debugger-hook* nil
394   #!+sb-doc
395   "This is either NIL or a designator for a function of two arguments,
396    to be run when the debugger is about to be entered.  The function is
397    run with *INVOKE-DEBUGGER-HOOK* bound to NIL to minimize recursive
398    errors, and receives as arguments the condition that triggered
399    debugger entry and the previous value of *INVOKE-DEBUGGER-HOOK*
400
401    This mechanism is an SBCL extension similar to the standard *DEBUGGER-HOOK*.
402    In contrast to *DEBUGGER-HOOK*, it is observed by INVOKE-DEBUGGER even when
403    called by BREAK.")
404
405 ;;; These are bound on each invocation of INVOKE-DEBUGGER.
406 (defvar *debug-restarts*)
407 (defvar *debug-condition*)
408 (defvar *nested-debug-condition*)
409
410 ;;; Oh, what a tangled web we weave when we preserve backwards
411 ;;; compatibility with 1968-style use of global variables to control
412 ;;; per-stream i/o properties; there's really no way to get this
413 ;;; quite right, but we do what we can.
414 (defun funcall-with-debug-io-syntax (fun &rest rest)
415   (declare (type function fun))
416   ;; Try to force the other special variables into a useful state.
417   (let (;; Protect from WITH-STANDARD-IO-SYNTAX some variables where
418         ;; any default we might use is less useful than just reusing
419         ;; the global values.
420         (original-package *package*)
421         (original-print-pretty *print-pretty*))
422     (with-standard-io-syntax
423       (with-sane-io-syntax
424           (let (;; We want the printer and reader to be in a useful
425                 ;; state, regardless of where the debugger was invoked
426                 ;; in the program. WITH-STANDARD-IO-SYNTAX and
427                 ;; WITH-SANE-IO-SYNTAX do much of what we want, but
428                 ;;   * It doesn't affect our internal special variables
429                 ;;     like *CURRENT-LEVEL-IN-PRINT*.
430                 ;;   * It isn't customizable.
431                 ;;   * It sets *PACKAGE* to COMMON-LISP-USER, which is not
432                 ;;     helpful behavior for a debugger.
433                 ;;   * There's no particularly good debugger default for
434                 ;;     *PRINT-PRETTY*, since T is usually what you want
435                 ;;     -- except absolutely not what you want when you're
436                 ;;     debugging failures in PRINT-OBJECT logic.
437                 ;; We try to address all these issues with explicit
438                 ;; rebindings here.
439                 (sb!kernel:*current-level-in-print* 0)
440                 (*package* original-package)
441                 (*print-pretty* original-print-pretty)
442                 ;; Clear the circularity machinery to try to to reduce the
443                 ;; pain from sharing the circularity table across all
444                 ;; streams; if these are not rebound here, then setting
445                 ;; *PRINT-CIRCLE* within the debugger when debugging in a
446                 ;; state where something circular was being printed (e.g.,
447                 ;; because the debugger was entered on an error in a
448                 ;; PRINT-OBJECT method) makes a hopeless mess. Binding them
449                 ;; here does seem somewhat ugly because it makes it more
450                 ;; difficult to debug the printing-of-circularities code
451                 ;; itself; however, as far as I (WHN, 2004-05-29) can see,
452                 ;; that's almost entirely academic as long as there's one
453                 ;; shared *C-H-T* for all streams (i.e., it's already
454                 ;; unreasonably difficult to debug print-circle machinery
455                 ;; given the buggy crosstalk between the debugger streams
456                 ;; and the stream you're trying to watch), and any fix for
457                 ;; that buggy arrangement will likely let this hack go away
458                 ;; naturally.
459                 (sb!impl::*circularity-hash-table* . nil)
460                 (sb!impl::*circularity-counter* . nil)
461                 (*readtable* *debug-readtable*))
462             (progv
463                 ;; (Why NREVERSE? PROGV makes the later entries have
464                 ;; precedence over the earlier entries.
465                 ;; *DEBUG-PRINT-VARIABLE-ALIST* is called an alist, so it's
466                 ;; expected that its earlier entries have precedence. And
467                 ;; the earlier-has-precedence behavior is mostly more
468                 ;; convenient, so that programmers can use PUSH or LIST* to
469                 ;; customize *DEBUG-PRINT-VARIABLE-ALIST*.)
470                 (nreverse (mapcar #'car *debug-print-variable-alist*))
471                 (nreverse (mapcar #'cdr *debug-print-variable-alist*))
472               (apply fun rest)))))))
473
474 (defun invoke-debugger (condition)
475   #!+sb-doc
476   "Enter the debugger."
477
478   ;; call *INVOKE-DEBUGGER-HOOK* first, so that *DEBUGGER-HOOK* is not
479   ;; called when the debugger is disabled
480   (let ((old-hook *invoke-debugger-hook*))
481     (when old-hook
482       (let ((*invoke-debugger-hook* nil))
483         (funcall old-hook condition old-hook))))
484   (let ((old-hook *debugger-hook*))
485     (when old-hook
486       (let ((*debugger-hook* nil))
487         (funcall old-hook condition old-hook))))
488
489   ;; We definitely want *PACKAGE* to be of valid type.
490   ;;
491   ;; Elsewhere in the system, we use the SANE-PACKAGE function for
492   ;; this, but here causing an exception just as we're trying to handle
493   ;; an exception would be confusing, so instead we use a special hack.
494   (unless (and (packagep *package*)
495                (package-name *package*))
496     (setf *package* (find-package :cl-user))
497     (format *error-output*
498             "The value of ~S was not an undeleted PACKAGE. It has been
499 reset to ~S."
500             '*package* *package*))
501
502   ;; Before we start our own output, finish any pending output.
503   ;; Otherwise, if the user tried to track the progress of his program
504   ;; using PRINT statements, he'd tend to lose the last line of output
505   ;; or so, which'd be confusing.
506   (flush-standard-output-streams)
507
508   (funcall-with-debug-io-syntax #'%invoke-debugger condition))
509
510 (defun %print-debugger-invocation-reason (condition stream)
511   (format stream "~2&")
512   ;; Note: Ordinarily it's only a matter of taste whether to use
513   ;; FORMAT "~<...~:>" or to use PPRINT-LOGICAL-BLOCK directly, but
514   ;; until bug 403 is fixed, PPRINT-LOGICAL-BLOCK (STREAM NIL) is
515   ;; definitely preferred, because the FORMAT alternative was acting odd.
516   (pprint-logical-block (stream nil)
517     (format stream
518             "debugger invoked on a ~S~@[ in thread ~A~]: ~2I~_~A"
519             (type-of condition)
520             #!+sb-thread sb!thread:*current-thread*
521             #!-sb-thread nil
522             condition))
523   (terpri stream))
524
525 (defun %invoke-debugger (condition)
526
527   (let ((*debug-condition* condition)
528         (*debug-restarts* (compute-restarts condition))
529         (*nested-debug-condition* nil))
530     (handler-case
531         ;; (The initial output here goes to *ERROR-OUTPUT*, because the
532         ;; initial output is not interactive, just an error message, and
533         ;; when people redirect *ERROR-OUTPUT*, they could reasonably
534         ;; expect to see error messages logged there, regardless of what
535         ;; the debugger does afterwards.)
536         (%print-debugger-invocation-reason condition *error-output*)
537       (error (condition)
538         (setf *nested-debug-condition* condition)
539         (let ((ndc-type (type-of *nested-debug-condition*)))
540           (format *error-output*
541                   "~&~@<(A ~S was caught when trying to print ~S when ~
542                       entering the debugger. Printing was aborted and the ~
543                       ~S was stored in ~S.)~@:>~%"
544                   ndc-type
545                   '*debug-condition*
546                   ndc-type
547                   '*nested-debug-condition*))
548         (when (typep *nested-debug-condition* 'cell-error)
549           ;; what we really want to know when it's e.g. an UNBOUND-VARIABLE:
550           (format *error-output*
551                   "~&(CELL-ERROR-NAME ~S) = ~S~%"
552                   '*nested-debug-condition*
553                   (cell-error-name *nested-debug-condition*)))))
554
555     (let ((background-p (sb!thread::debugger-wait-until-foreground-thread
556                          *debug-io*)))
557
558       ;; After the initial error/condition/whatever announcement to
559       ;; *ERROR-OUTPUT*, we become interactive, and should talk on
560       ;; *DEBUG-IO* from now on. (KLUDGE: This is a normative
561       ;; statement, not a description of reality.:-| There's a lot of
562       ;; older debugger code which was written to do i/o on whatever
563       ;; stream was in fashion at the time, and not all of it has
564       ;; been converted to behave this way. -- WHN 2000-11-16)
565
566       (unwind-protect
567            (let (;; We used to bind *STANDARD-OUTPUT* to *DEBUG-IO*
568                  ;; here as well, but that is probably bogus since it
569                  ;; removes the users ability to do output to a redirected
570                  ;; *S-O*. Now we just rebind it so that users can temporarily
571                  ;; frob it. FIXME: This and other "what gets bound when"
572                  ;; behaviour should be documented in the manual.
573                  (*standard-output* *standard-output*)
574                  ;; This seems reasonable: e.g. if the user has redirected
575                  ;; *ERROR-OUTPUT* to some log file, it's probably wrong
576                  ;; to send errors which occur in interactive debugging to
577                  ;; that file, and right to send them to *DEBUG-IO*.
578                  (*error-output* *debug-io*))
579              (unless (typep condition 'step-condition)
580                (when *debug-beginner-help-p*
581                  (format *debug-io*
582                          "~%~@<Type HELP for debugger help, or ~
583                                (SB-EXT:QUIT) to exit from SBCL.~:@>~2%"))
584                (show-restarts *debug-restarts* *debug-io*))
585              (internal-debug))
586         (when background-p
587           (sb!thread::release-foreground))))))
588
589 ;;; this function is for use in *INVOKE-DEBUGGER-HOOK* when ordinary
590 ;;; ANSI behavior has been suppressed by the "--disable-debugger"
591 ;;; command-line option
592 (defun debugger-disabled-hook (condition me)
593   (declare (ignore me))
594   ;; There is no one there to interact with, so report the
595   ;; condition and terminate the program.
596   (flet ((failure-quit (&key recklessly-p)
597            (/show0 "in FAILURE-QUIT (in --disable-debugger debugger hook)")
598            (quit :unix-status 1 :recklessly-p recklessly-p)))
599     ;; This HANDLER-CASE is here mostly to stop output immediately
600     ;; (and fall through to QUIT) when there's an I/O error. Thus,
601     ;; when we're run under a shell script or something, we can die
602     ;; cleanly when the script dies (and our pipes are cut), instead
603     ;; of falling into ldb or something messy like that. Similarly, we
604     ;; can terminate cleanly even if BACKTRACE dies because of bugs in
605     ;; user PRINT-OBJECT methods.
606     (handler-case
607         (progn
608           (format *error-output*
609                   "~&~@<unhandled ~S~@[ in thread ~S~]: ~2I~_~A~:>~2%"
610                   (type-of condition)
611                   #!+sb-thread sb!thread:*current-thread*
612                   #!-sb-thread nil
613                   condition)
614           ;; Flush *ERROR-OUTPUT* even before the BACKTRACE, so that
615           ;; even if we hit an error within BACKTRACE (e.g. a bug in
616           ;; the debugger's own frame-walking code, or a bug in a user
617           ;; PRINT-OBJECT method) we'll at least have the CONDITION
618           ;; printed out before we die.
619           (finish-output *error-output*)
620           ;; (Where to truncate the BACKTRACE is of course arbitrary, but
621           ;; it seems as though we should at least truncate it somewhere.)
622           (sb!debug:backtrace 128 *error-output*)
623           (format
624            *error-output*
625            "~%unhandled condition in --disable-debugger mode, quitting~%")
626           (finish-output *error-output*)
627           (failure-quit))
628       (condition ()
629         ;; We IGNORE-ERRORS here because even %PRIMITIVE PRINT can
630         ;; fail when our output streams are blown away, as e.g. when
631         ;; we're running under a Unix shell script and it dies somehow
632         ;; (e.g. because of a SIGINT). In that case, we might as well
633         ;; just give it up for a bad job, and stop trying to notify
634         ;; the user of anything.
635         ;;
636         ;; Actually, the only way I've run across to exercise the
637         ;; problem is to have more than one layer of shell script.
638         ;; I have a shell script which does
639         ;;   time nice -10 sh make.sh "$1" 2>&1 | tee make.tmp
640         ;; and the problem occurs when I interrupt this with Ctrl-C
641         ;; under Linux 2.2.14-5.0 and GNU bash, version 1.14.7(1).
642         ;; I haven't figured out whether it's bash, time, tee, Linux, or
643         ;; what that is responsible, but that it's possible at all
644         ;; means that we should IGNORE-ERRORS here. -- WHN 2001-04-24
645         (ignore-errors
646          (%primitive print
647                      "Argh! error within --disable-debugger error handling"))
648         (failure-quit :recklessly-p t)))))
649
650 ;;; halt-on-failures and prompt-on-failures modes, suitable for
651 ;;; noninteractive and interactive use respectively
652 (defun disable-debugger ()
653   ;; Why conditionally? Why not disable it even if user has frobbed
654   ;; this hook? We could just save the old value in case of a later
655   ;; ENABLE-DEBUGGER.
656   (when (eql *invoke-debugger-hook* nil)
657     ;; *DEBUG-IO* used to be set here to *ERROR-OUTPUT* which is sort
658     ;; of unexpected but mostly harmless, but then ENABLE-DEBUGGER had
659     ;; to set it to a suitable value again and be very careful,
660     ;; especially if the user has also set it. -- MG 2005-07-15
661     (setf *invoke-debugger-hook* 'debugger-disabled-hook)
662     (sb!alien:alien-funcall (sb!alien:extern-alien "disable_lossage_handler" (function sb!alien:void)))))
663
664 (defun enable-debugger ()
665   (when (eql *invoke-debugger-hook* 'debugger-disabled-hook)
666     (setf *invoke-debugger-hook* nil)
667     (sb!alien:alien-funcall (sb!alien:extern-alien "enable_lossage_handler" (function sb!alien:void)))))
668
669 (defun show-restarts (restarts s)
670   (cond ((null restarts)
671          (format s
672                  "~&(no restarts: If you didn't do this on purpose, ~
673                   please report it as a bug.)~%"))
674         (t
675          (format s "~&restarts (invokable by number or by ~
676                     possibly-abbreviated name):~%")
677          (let ((count 0)
678                (names-used '(nil))
679                (max-name-len 0))
680            (dolist (restart restarts)
681              (let ((name (restart-name restart)))
682                (when name
683                  (let ((len (length (princ-to-string name))))
684                    (when (> len max-name-len)
685                      (setf max-name-len len))))))
686            (unless (zerop max-name-len)
687              (incf max-name-len 3))
688            (dolist (restart restarts)
689              (let ((name (restart-name restart)))
690                ;; FIXME: maybe it would be better to display later names
691                ;; in parens instead of brakets, not just omit them fully.
692                ;; Call BREAK, call BREAK in the debugger, and tell me
693                ;; it's not confusing looking. --NS 20050310
694                (cond ((member name names-used)
695                       (format s "~& ~2D: ~V@T~A~%" count max-name-len restart))
696                      (t
697                       (format s "~& ~2D: [~VA] ~A~%"
698                               count (- max-name-len 3) name restart)
699                       (push name names-used))))
700              (incf count))))))
701
702 (defvar *debug-loop-fun* #'debug-loop-fun
703   "a function taking no parameters that starts the low-level debug loop")
704
705 ;;; This calls DEBUG-LOOP, performing some simple initializations
706 ;;; before doing so. INVOKE-DEBUGGER calls this to actually get into
707 ;;; the debugger. SB!KERNEL::ERROR-ERROR calls this in emergencies
708 ;;; to get into a debug prompt as quickly as possible with as little
709 ;;; risk as possible for stepping on whatever is causing recursive
710 ;;; errors.
711 (defun internal-debug ()
712   (let ((*in-the-debugger* t)
713         (*read-suppress* nil))
714     (unless (typep *debug-condition* 'step-condition)
715       (clear-input *debug-io*))
716     (funcall *debug-loop-fun*)))
717 \f
718 ;;;; DEBUG-LOOP
719
720 ;;; Note: This defaulted to T in CMU CL. The changed default in SBCL
721 ;;; was motivated by desire to play nicely with ILISP.
722 (defvar *flush-debug-errors* nil
723   #!+sb-doc
724   "When set, avoid calling INVOKE-DEBUGGER recursively when errors occur while
725    executing in the debugger.")
726
727 (defun debug-read (stream)
728   (declare (type stream stream))
729   (let* ((eof-marker (cons nil nil))
730          (form (read stream nil eof-marker)))
731     (if (eq form eof-marker)
732         (abort)
733         form)))
734
735 (defun debug-loop-fun ()
736   (let* ((*debug-command-level* (1+ *debug-command-level*))
737          (*real-stack-top* (sb!di:top-frame))
738          (*stack-top* (or *stack-top-hint* *real-stack-top*))
739          (*stack-top-hint* nil)
740          (*current-frame* *stack-top*))
741     (handler-bind ((sb!di:debug-condition
742                     (lambda (condition)
743                       (princ condition *debug-io*)
744                       (/show0 "handling d-c by THROWing DEBUG-LOOP-CATCHER")
745                       (throw 'debug-loop-catcher nil))))
746       (terpri *debug-io*)
747       (print-frame-call *current-frame* *debug-io* :verbosity 2)
748       (loop
749        (catch 'debug-loop-catcher
750          (handler-bind ((error (lambda (condition)
751                                  (when *flush-debug-errors*
752                                    (clear-input *debug-io*)
753                                    (princ condition *debug-io*)
754                                    (format *debug-io*
755                                            "~&error flushed (because ~
756                                              ~S is set)"
757                                            '*flush-debug-errors*)
758                                    (/show0 "throwing DEBUG-LOOP-CATCHER")
759                                    (throw 'debug-loop-catcher nil)))))
760            ;; We have to bind LEVEL for the restart function created by
761            ;; WITH-SIMPLE-RESTART.
762            (let ((level *debug-command-level*)
763                  (restart-commands (make-restart-commands)))
764              (flush-standard-output-streams)
765              (debug-prompt *debug-io*)
766              (force-output *debug-io*)
767              (let* ((exp (debug-read *debug-io*))
768                     (cmd-fun (debug-command-p exp restart-commands)))
769                (with-simple-restart (abort
770                                      "~@<Reduce debugger level (to debug level ~W).~@:>"
771                                      level)
772                  (cond ((not cmd-fun)
773                         (debug-eval-print exp))
774                        ((consp cmd-fun)
775                         (format *debug-io*
776                                 "~&Your command, ~S, is ambiguous:~%"
777                                 exp)
778                         (dolist (ele cmd-fun)
779                           (format *debug-io* "   ~A~%" ele)))
780                        (t
781                         (funcall cmd-fun))))))))))))
782
783 (defun debug-eval-print (expr)
784   (/noshow "entering DEBUG-EVAL-PRINT" expr)
785   (let ((values (multiple-value-list (interactive-eval expr))))
786     (/noshow "done with EVAL in DEBUG-EVAL-PRINT")
787     (dolist (value values)
788       (fresh-line *debug-io*)
789       (prin1 value *debug-io*)))
790   (force-output *debug-io*))
791 \f
792 ;;;; debug loop functions
793
794 ;;; These commands are functions, not really commands, so that users
795 ;;; can get their hands on the values returned.
796
797 (eval-when (:execute :compile-toplevel)
798
799 (sb!xc:defmacro define-var-operation (ref-or-set &optional value-var)
800   `(let* ((temp (etypecase name
801                   (symbol (sb!di:debug-fun-symbol-vars
802                            (sb!di:frame-debug-fun *current-frame*)
803                            name))
804                   (simple-string (sb!di:ambiguous-debug-vars
805                                   (sb!di:frame-debug-fun *current-frame*)
806                                   name))))
807           (location (sb!di:frame-code-location *current-frame*))
808           ;; Let's only deal with valid variables.
809           (vars (remove-if-not (lambda (v)
810                                  (eq (sb!di:debug-var-validity v location)
811                                      :valid))
812                                temp)))
813      (declare (list vars))
814      (cond ((null vars)
815             (error "No known valid variables match ~S." name))
816            ((= (length vars) 1)
817             ,(ecase ref-or-set
818                (:ref
819                 '(sb!di:debug-var-value (car vars) *current-frame*))
820                (:set
821                 `(setf (sb!di:debug-var-value (car vars) *current-frame*)
822                        ,value-var))))
823            (t
824             ;; Since we have more than one, first see whether we have
825             ;; any variables that exactly match the specification.
826             (let* ((name (etypecase name
827                            (symbol (symbol-name name))
828                            (simple-string name)))
829                    ;; FIXME: REMOVE-IF-NOT is deprecated, use STRING/=
830                    ;; instead.
831                    (exact (remove-if-not (lambda (v)
832                                            (string= (sb!di:debug-var-symbol-name v)
833                                                     name))
834                                          vars))
835                    (vars (or exact vars)))
836               (declare (simple-string name)
837                        (list exact vars))
838               (cond
839                ;; Check now for only having one variable.
840                ((= (length vars) 1)
841                 ,(ecase ref-or-set
842                    (:ref
843                     '(sb!di:debug-var-value (car vars) *current-frame*))
844                    (:set
845                     `(setf (sb!di:debug-var-value (car vars) *current-frame*)
846                            ,value-var))))
847                ;; If there weren't any exact matches, flame about
848                ;; ambiguity unless all the variables have the same
849                ;; name.
850                ((and (not exact)
851                      (find-if-not
852                       (lambda (v)
853                         (string= (sb!di:debug-var-symbol-name v)
854                                  (sb!di:debug-var-symbol-name (car vars))))
855                       (cdr vars)))
856                 (error "specification ambiguous:~%~{   ~A~%~}"
857                        (mapcar #'sb!di:debug-var-symbol-name
858                                (delete-duplicates
859                                 vars :test #'string=
860                                 :key #'sb!di:debug-var-symbol-name))))
861                ;; All names are the same, so see whether the user
862                ;; ID'ed one of them.
863                (id-supplied
864                 (let ((v (find id vars :key #'sb!di:debug-var-id)))
865                   (unless v
866                     (error
867                      "invalid variable ID, ~W: should have been one of ~S"
868                      id
869                      (mapcar #'sb!di:debug-var-id vars)))
870                   ,(ecase ref-or-set
871                      (:ref
872                       '(sb!di:debug-var-value v *current-frame*))
873                      (:set
874                       `(setf (sb!di:debug-var-value v *current-frame*)
875                              ,value-var)))))
876                (t
877                 (error "Specify variable ID to disambiguate ~S. Use one of ~S."
878                        name
879                        (mapcar #'sb!di:debug-var-id vars)))))))))
880
881 ) ; EVAL-WHEN
882
883 ;;; FIXME: This doesn't work. It would be real nice we could make it
884 ;;; work! Alas, it doesn't seem to work in CMU CL X86 either..
885 (defun var (name &optional (id 0 id-supplied))
886   #!+sb-doc
887   "Return a variable's value if possible. NAME is a simple-string or symbol.
888    If it is a simple-string, it is an initial substring of the variable's name.
889    If name is a symbol, it has the same name and package as the variable whose
890    value this function returns. If the symbol is uninterned, then the variable
891    has the same name as the symbol, but it has no package.
892
893    If name is the initial substring of variables with different names, then
894    this return no values after displaying the ambiguous names. If name
895    determines multiple variables with the same name, then you must use the
896    optional id argument to specify which one you want. If you left id
897    unspecified, then this returns no values after displaying the distinguishing
898    id values.
899
900    The result of this function is limited to the availability of variable
901    information. This is SETF'able."
902   (define-var-operation :ref))
903 (defun (setf var) (value name &optional (id 0 id-supplied))
904   (define-var-operation :set value))
905
906 ;;; This returns the COUNT'th arg as the user sees it from args, the
907 ;;; result of SB!DI:DEBUG-FUN-LAMBDA-LIST. If this returns a
908 ;;; potential DEBUG-VAR from the lambda-list, then the second value is
909 ;;; T. If this returns a keyword symbol or a value from a rest arg,
910 ;;; then the second value is NIL.
911 ;;;
912 ;;; FIXME: There's probably some way to merge the code here with
913 ;;; FRAME-ARGS-AS-LIST. (A fair amount of logic is already shared
914 ;;; through LAMBDA-LIST-ELEMENT-DISPATCH, but I suspect more could be.)
915 (declaim (ftype (function (index list)) nth-arg))
916 (defun nth-arg (count args)
917   (let ((n count))
918     (dolist (ele args (error "The argument specification ~S is out of range."
919                              n))
920       (lambda-list-element-dispatch ele
921         :required ((if (zerop n) (return (values ele t))))
922         :optional ((if (zerop n) (return (values (second ele) t))))
923         :keyword ((cond ((zerop n)
924                          (return (values (second ele) nil)))
925                         ((zerop (decf n))
926                          (return (values (third ele) t)))))
927         :deleted ((if (zerop n) (return (values ele t))))
928         :rest ((let ((var (second ele)))
929                  (lambda-var-dispatch var (sb!di:frame-code-location
930                                            *current-frame*)
931                    (error "unused &REST argument before n'th argument")
932                    (dolist (value
933                             (sb!di:debug-var-value var *current-frame*)
934                             (error
935                              "The argument specification ~S is out of range."
936                              n))
937                      (if (zerop n)
938                          (return-from nth-arg (values value nil))
939                          (decf n)))
940                    (error "invalid &REST argument before n'th argument")))))
941       (decf n))))
942
943 (defun arg (n)
944   #!+sb-doc
945   "Return the N'th argument's value if possible. Argument zero is the first
946    argument in a frame's default printed representation. Count keyword/value
947    pairs as separate arguments."
948   (multiple-value-bind (var lambda-var-p)
949       (nth-arg n (handler-case (sb!di:debug-fun-lambda-list
950                                 (sb!di:frame-debug-fun *current-frame*))
951                    (sb!di:lambda-list-unavailable ()
952                      (error "No argument values are available."))))
953     (if lambda-var-p
954         (lambda-var-dispatch var (sb!di:frame-code-location *current-frame*)
955           (error "Unused arguments have no values.")
956           (sb!di:debug-var-value var *current-frame*)
957           (error "invalid argument value"))
958         var)))
959 \f
960 ;;;; machinery for definition of debug loop commands
961
962 (defvar *debug-commands* nil)
963
964 ;;; Interface to *DEBUG-COMMANDS*. No required arguments in args are
965 ;;; permitted.
966 (defmacro !def-debug-command (name args &rest body)
967   (let ((fun-name (symbolicate name "-DEBUG-COMMAND")))
968     `(progn
969        (setf *debug-commands*
970              (remove ,name *debug-commands* :key #'car :test #'string=))
971        (defun ,fun-name ,args
972          (unless *in-the-debugger*
973            (error "invoking debugger command while outside the debugger"))
974          ,@body)
975        (push (cons ,name #',fun-name) *debug-commands*)
976        ',fun-name)))
977
978 (defun !def-debug-command-alias (new-name existing-name)
979   (let ((pair (assoc existing-name *debug-commands* :test #'string=)))
980     (unless pair (error "unknown debug command name: ~S" existing-name))
981     (push (cons new-name (cdr pair)) *debug-commands*))
982   new-name)
983
984 ;;; This takes a symbol and uses its name to find a debugger command,
985 ;;; using initial substring matching. It returns the command function
986 ;;; if form identifies only one command, but if form is ambiguous,
987 ;;; this returns a list of the command names. If there are no matches,
988 ;;; this returns nil. Whenever the loop that looks for a set of
989 ;;; possibilities encounters an exact name match, we return that
990 ;;; command function immediately.
991 (defun debug-command-p (form &optional other-commands)
992   (if (or (symbolp form) (integerp form))
993       (let* ((name
994               (if (symbolp form)
995                   (symbol-name form)
996                   (format nil "~W" form)))
997              (len (length name))
998              (res nil))
999         (declare (simple-string name)
1000                  (fixnum len)
1001                  (list res))
1002
1003         ;; Find matching commands, punting if exact match.
1004         (flet ((match-command (ele)
1005                  (let* ((str (car ele))
1006                         (str-len (length str)))
1007                    (declare (simple-string str)
1008                             (fixnum str-len))
1009                    (cond ((< str-len len))
1010                          ((= str-len len)
1011                           (when (string= name str :end1 len :end2 len)
1012                             (return-from debug-command-p (cdr ele))))
1013                          ((string= name str :end1 len :end2 len)
1014                           (push ele res))))))
1015           (mapc #'match-command *debug-commands*)
1016           (mapc #'match-command other-commands))
1017
1018         ;; Return the right value.
1019         (cond ((not res) nil)
1020               ((= (length res) 1)
1021                (cdar res))
1022               (t ; Just return the names.
1023                (do ((cmds res (cdr cmds)))
1024                    ((not cmds) res)
1025                  (setf (car cmds) (caar cmds))))))))
1026
1027 ;;; Return a list of debug commands (in the same format as
1028 ;;; *DEBUG-COMMANDS*) that invoke each active restart.
1029 ;;;
1030 ;;; Two commands are made for each restart: one for the number, and
1031 ;;; one for the restart name (unless it's been shadowed by an earlier
1032 ;;; restart of the same name, or it is NIL).
1033 (defun make-restart-commands (&optional (restarts *debug-restarts*))
1034   (let ((commands)
1035         (num 0))                        ; better be the same as show-restarts!
1036     (dolist (restart restarts)
1037       (let ((name (string (restart-name restart))))
1038         (let ((restart-fun
1039                 (lambda ()
1040                   (/show0 "in restart-command closure, about to i-r-i")
1041                   (invoke-restart-interactively restart))))
1042           (push (cons (prin1-to-string num) restart-fun) commands)
1043           (unless (or (null (restart-name restart))
1044                       (find name commands :key #'car :test #'string=))
1045             (push (cons name restart-fun) commands))))
1046     (incf num))
1047   commands))
1048 \f
1049 ;;;; frame-changing commands
1050
1051 (!def-debug-command "UP" ()
1052   (let ((next (sb!di:frame-up *current-frame*)))
1053     (cond (next
1054            (setf *current-frame* next)
1055            (print-frame-call next *debug-io*))
1056           (t
1057            (format *debug-io* "~&Top of stack.")))))
1058
1059 (!def-debug-command "DOWN" ()
1060   (let ((next (sb!di:frame-down *current-frame*)))
1061     (cond (next
1062            (setf *current-frame* next)
1063            (print-frame-call next *debug-io*))
1064           (t
1065            (format *debug-io* "~&Bottom of stack.")))))
1066
1067 (!def-debug-command-alias "D" "DOWN")
1068
1069 (!def-debug-command "BOTTOM" ()
1070   (do ((prev *current-frame* lead)
1071        (lead (sb!di:frame-down *current-frame*) (sb!di:frame-down lead)))
1072       ((null lead)
1073        (setf *current-frame* prev)
1074        (print-frame-call prev *debug-io*))))
1075
1076 (!def-debug-command-alias "B" "BOTTOM")
1077
1078 (!def-debug-command "FRAME" (&optional
1079                              (n (read-prompting-maybe "frame number: ")))
1080   (setf *current-frame*
1081         (multiple-value-bind (next-frame-fun limit-string)
1082             (if (< n (sb!di:frame-number *current-frame*))
1083                 (values #'sb!di:frame-up "top")
1084               (values #'sb!di:frame-down "bottom"))
1085           (do ((frame *current-frame*))
1086               ((= n (sb!di:frame-number frame))
1087                frame)
1088             (let ((next-frame (funcall next-frame-fun frame)))
1089               (cond (next-frame
1090                      (setf frame next-frame))
1091                     (t
1092                      (format *debug-io*
1093                              "The ~A of the stack was encountered.~%"
1094                              limit-string)
1095                      (return frame)))))))
1096   (print-frame-call *current-frame* *debug-io*))
1097
1098 (!def-debug-command-alias "F" "FRAME")
1099 \f
1100 ;;;; commands for entering and leaving the debugger
1101
1102 (!def-debug-command "TOPLEVEL" ()
1103   (throw 'toplevel-catcher nil))
1104
1105 ;;; make T safe
1106 (!def-debug-command-alias "TOP" "TOPLEVEL")
1107
1108 (!def-debug-command "RESTART" ()
1109   (/show0 "doing RESTART debug-command")
1110   (let ((num (read-if-available :prompt)))
1111     (when (eq num :prompt)
1112       (show-restarts *debug-restarts* *debug-io*)
1113       (write-string "restart: " *debug-io*)
1114       (force-output *debug-io*)
1115       (setf num (read *debug-io*)))
1116     (let ((restart (typecase num
1117                      (unsigned-byte
1118                       (nth num *debug-restarts*))
1119                      (symbol
1120                       (find num *debug-restarts* :key #'restart-name
1121                             :test (lambda (sym1 sym2)
1122                                     (string= (symbol-name sym1)
1123                                              (symbol-name sym2)))))
1124                      (t
1125                       (format *debug-io* "~S is invalid as a restart name.~%"
1126                               num)
1127                       (return-from restart-debug-command nil)))))
1128       (/show0 "got RESTART")
1129       (if restart
1130           (invoke-restart-interactively restart)
1131           (princ "There is no such restart." *debug-io*)))))
1132 \f
1133 ;;;; information commands
1134
1135 (!def-debug-command "HELP" ()
1136   ;; CMU CL had a little toy pager here, but "if you aren't running
1137   ;; ILISP (or a smart windowing system, or something) you deserve to
1138   ;; lose", so we've dropped it in SBCL. However, in case some
1139   ;; desperate holdout is running this on a dumb terminal somewhere,
1140   ;; we tell him where to find the message stored as a string.
1141   (format *debug-io*
1142           "~&~A~2%(The HELP string is stored in ~S.)~%"
1143           *debug-help-string*
1144           '*debug-help-string*))
1145
1146 (!def-debug-command-alias "?" "HELP")
1147
1148 (!def-debug-command "ERROR" ()
1149   (format *debug-io* "~A~%" *debug-condition*)
1150   (show-restarts *debug-restarts* *debug-io*))
1151
1152 (!def-debug-command "BACKTRACE" ()
1153   (backtrace (read-if-available most-positive-fixnum)))
1154
1155 (!def-debug-command "PRINT" ()
1156   (print-frame-call *current-frame* *debug-io*))
1157
1158 (!def-debug-command-alias "P" "PRINT")
1159
1160 (!def-debug-command "LIST-LOCALS" ()
1161   (let ((d-fun (sb!di:frame-debug-fun *current-frame*)))
1162     (if (sb!di:debug-var-info-available d-fun)
1163         (let ((*standard-output* *debug-io*)
1164               (location (sb!di:frame-code-location *current-frame*))
1165               (prefix (read-if-available nil))
1166               (any-p nil)
1167               (any-valid-p nil))
1168           (dolist (v (sb!di:ambiguous-debug-vars
1169                         d-fun
1170                         (if prefix (string prefix) "")))
1171             (setf any-p t)
1172             (when (eq (sb!di:debug-var-validity v location) :valid)
1173               (setf any-valid-p t)
1174               (format *debug-io* "~S~:[#~W~;~*~]  =  ~S~%"
1175                       (sb!di:debug-var-symbol v)
1176                       (zerop (sb!di:debug-var-id v))
1177                       (sb!di:debug-var-id v)
1178                       (sb!di:debug-var-value v *current-frame*))))
1179
1180           (cond
1181            ((not any-p)
1182             (format *debug-io*
1183                     "There are no local variables ~@[starting with ~A ~]~
1184                     in the function."
1185                     prefix))
1186            ((not any-valid-p)
1187             (format *debug-io*
1188                     "All variables ~@[starting with ~A ~]currently ~
1189                     have invalid values."
1190                     prefix))))
1191         (write-line "There is no variable information available."
1192                     *debug-io*))))
1193
1194 (!def-debug-command-alias "L" "LIST-LOCALS")
1195
1196 (!def-debug-command "SOURCE" ()
1197   (print (code-location-source-form (sb!di:frame-code-location *current-frame*)
1198                                     (read-if-available 0))
1199          *debug-io*))
1200 \f
1201 ;;;; source location printing
1202
1203 ;;; We cache a stream to the last valid file debug source so that we
1204 ;;; won't have to repeatedly open the file.
1205 ;;;
1206 ;;; KLUDGE: This sounds like a bug, not a feature. Opening files is fast
1207 ;;; in the 1990s, so the benefit is negligible, less important than the
1208 ;;; potential of extra confusion if someone changes the source during
1209 ;;; a debug session and the change doesn't show up. And removing this
1210 ;;; would simplify the system, which I like. -- WHN 19990903
1211 (defvar *cached-debug-source* nil)
1212 (declaim (type (or sb!di:debug-source null) *cached-debug-source*))
1213 (defvar *cached-source-stream* nil)
1214 (declaim (type (or stream null) *cached-source-stream*))
1215
1216 ;;; To suppress the read-time evaluation #. macro during source read,
1217 ;;; *READTABLE* is modified. *READTABLE* is cached to avoid
1218 ;;; copying it each time, and invalidated when the
1219 ;;; *CACHED-DEBUG-SOURCE* has changed.
1220 (defvar *cached-readtable* nil)
1221 (declaim (type (or readtable null) *cached-readtable*))
1222
1223 ;;; Stuff to clean up before saving a core
1224 (defun debug-deinit ()
1225   (setf *cached-debug-source* nil
1226         *cached-source-stream* nil
1227         *cached-readtable* nil))
1228
1229 ;;; We also cache the last toplevel form that we printed a source for
1230 ;;; so that we don't have to do repeated reads and calls to
1231 ;;; FORM-NUMBER-TRANSLATIONS.
1232 (defvar *cached-toplevel-form-offset* nil)
1233 (declaim (type (or index null) *cached-toplevel-form-offset*))
1234 (defvar *cached-toplevel-form*)
1235 (defvar *cached-form-number-translations*)
1236
1237 ;;; Given a code location, return the associated form-number
1238 ;;; translations and the actual top level form. We check our cache ---
1239 ;;; if there is a miss, we dispatch on the kind of the debug source.
1240 (defun get-toplevel-form (location)
1241   (let ((d-source (sb!di:code-location-debug-source location)))
1242     (if (and (eq d-source *cached-debug-source*)
1243              (eql (sb!di:code-location-toplevel-form-offset location)
1244                   *cached-toplevel-form-offset*))
1245         (values *cached-form-number-translations* *cached-toplevel-form*)
1246         (let* ((offset (sb!di:code-location-toplevel-form-offset location))
1247                (res
1248                 (ecase (sb!di:debug-source-from d-source)
1249                   (:file (get-file-toplevel-form location))
1250                   (:lisp (svref (sb!di:debug-source-name d-source) offset)))))
1251           (setq *cached-toplevel-form-offset* offset)
1252           (values (setq *cached-form-number-translations*
1253                         (sb!di:form-number-translations res offset))
1254                   (setq *cached-toplevel-form* res))))))
1255
1256 ;;; Locate the source file (if it still exists) and grab the top level
1257 ;;; form. If the file is modified, we use the top level form offset
1258 ;;; instead of the recorded character offset.
1259 (defun get-file-toplevel-form (location)
1260   (let* ((d-source (sb!di:code-location-debug-source location))
1261          (tlf-offset (sb!di:code-location-toplevel-form-offset location))
1262          (local-tlf-offset (- tlf-offset
1263                               (sb!di:debug-source-root-number d-source)))
1264          (char-offset
1265           (aref (or (sb!di:debug-source-start-positions d-source)
1266                     (error "no start positions map"))
1267                 local-tlf-offset))
1268          (name (sb!di:debug-source-name d-source)))
1269     (unless (eq d-source *cached-debug-source*)
1270       (unless (and *cached-source-stream*
1271                    (equal (pathname *cached-source-stream*)
1272                           (pathname name)))
1273         (setq *cached-readtable* nil)
1274         (when *cached-source-stream* (close *cached-source-stream*))
1275         (setq *cached-source-stream* (open name :if-does-not-exist nil))
1276         (unless *cached-source-stream*
1277           (error "The source file no longer exists:~%  ~A" (namestring name)))
1278         (format *debug-io* "~%; file: ~A~%" (namestring name)))
1279
1280         (setq *cached-debug-source*
1281               (if (= (sb!di:debug-source-created d-source)
1282                      (file-write-date name))
1283                   d-source nil)))
1284
1285     (cond
1286      ((eq *cached-debug-source* d-source)
1287       (file-position *cached-source-stream* char-offset))
1288      (t
1289       (format *debug-io*
1290               "~%; File has been modified since compilation:~%;   ~A~@
1291                  ; Using form offset instead of character position.~%"
1292               (namestring name))
1293       (file-position *cached-source-stream* 0)
1294       (let ((*read-suppress* t))
1295         (dotimes (i local-tlf-offset)
1296           (read *cached-source-stream*)))))
1297     (unless *cached-readtable*
1298       (setq *cached-readtable* (copy-readtable))
1299       (set-dispatch-macro-character
1300        #\# #\.
1301        (lambda (stream sub-char &rest rest)
1302          (declare (ignore rest sub-char))
1303          (let ((token (read stream t nil t)))
1304            (format nil "#.~S" token)))
1305        *cached-readtable*))
1306     (let ((*readtable* *cached-readtable*))
1307       (read *cached-source-stream*))))
1308
1309 (defun code-location-source-form (location context)
1310   (let* ((location (maybe-block-start-location location))
1311          (form-num (sb!di:code-location-form-number location)))
1312     (multiple-value-bind (translations form) (get-toplevel-form location)
1313       (unless (< form-num (length translations))
1314         (error "The source path no longer exists."))
1315       (sb!di:source-path-context form
1316                                  (svref translations form-num)
1317                                  context))))
1318 \f
1319 ;;; step to the next steppable form
1320 (!def-debug-command "STEP" ()
1321   (let ((restart (find-restart 'continue *debug-condition*)))
1322     (cond (restart
1323            (setf *stepping* t
1324                  *step* t)
1325            (invoke-restart restart))
1326           (t
1327            (format *debug-io* "~&Non-continuable error, cannot step.~%")))))
1328
1329 ;;; miscellaneous commands
1330
1331 (!def-debug-command "DESCRIBE" ()
1332   (let* ((curloc (sb!di:frame-code-location *current-frame*))
1333          (debug-fun (sb!di:code-location-debug-fun curloc))
1334          (function (sb!di:debug-fun-fun debug-fun)))
1335     (if function
1336         (describe function)
1337         (format *debug-io* "can't figure out the function for this frame"))))
1338
1339 (!def-debug-command "SLURP" ()
1340   (loop while (read-char-no-hang *standard-input*)))
1341
1342 (!def-debug-command "RETURN" (&optional
1343                               (return (read-prompting-maybe
1344                                        "return: ")))
1345   (let ((tag (find-if (lambda (x)
1346                         (and (typep (car x) 'symbol)
1347                              (not (symbol-package (car x)))
1348                              (string= (car x) "SB-DEBUG-CATCH-TAG")))
1349                       (sb!di::frame-catches *current-frame*))))
1350     (if tag
1351         (throw (car tag)
1352           (funcall (sb!di:preprocess-for-eval
1353                     return
1354                     (sb!di:frame-code-location *current-frame*))
1355                    *current-frame*))
1356         (format *debug-io*
1357                 "~@<can't find a tag for this frame ~
1358                  ~2I~_(hint: try increasing the DEBUG optimization quality ~
1359                  and recompiling)~:@>"))))
1360 \f
1361 ;;;; debug loop command utilities
1362
1363 (defun read-prompting-maybe (prompt)
1364   (unless (sb!int:listen-skip-whitespace *debug-io*)
1365     (princ prompt *debug-io*)
1366     (force-output *debug-io*))
1367   (read *debug-io*))
1368
1369 (defun read-if-available (default)
1370   (if (sb!int:listen-skip-whitespace *debug-io*)
1371       (read *debug-io*)
1372       default))