1 ;;;; This file is for testing debugging functionality, using
2 ;;;; test machinery which might have side effects (e.g.
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; While most of SBCL is derived from the CMU CL system, the test
9 ;;;; files (like this one) were written from scratch after the fork
12 ;;;; This software is in the public domain and is provided with
13 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
14 ;;;; more information.
16 (cl:in-package :cl-user)
18 ;;;; Check that we get debug arglists right.
20 ;;; FIXME: This should use some get-argslist like functionality that
21 ;;; we actually export.
23 ;;; Return the debug arglist of the function object FUN as a list, or
24 ;;; punt with :UNKNOWN.
25 (defun get-arglist (fun)
26 (declare (type function fun))
27 ;; The Lisp-level type FUNCTION can conceal a multitude of sins..
28 (case (sb-kernel:widetag-of fun)
29 (#.sb-vm:simple-fun-header-widetag
30 (sb-kernel:%simple-fun-arglist fun))
31 (#.sb-vm:closure-header-widetag (get-arglist
32 (sb-kernel:%closure-fun fun)))
33 ;; In code/describe.lisp, ll. 227 (%describe-fun), we use a scheme
34 ;; like above, and it seems to work. -- MNA 2001-06-12
36 ;; (There might be other cases with arglist info also.
37 ;; SIMPLE-FUN-HEADER-WIDETAG and CLOSURE-HEADER-WIDETAG just
38 ;; happen to be the two case that I had my nose rubbed in when
39 ;; debugging a GC problem caused by applying %SIMPLE-FUN-ARGLIST to
40 ;; a closure. -- WHN 2001-06-05)
43 (defun zoop (zeep &key beep)
45 (assert (equal (get-arglist #'zoop) '(zeep &key beep)))
47 ;;; Check some predefined functions too.
49 ;;; (We don't know exactly what the arguments are, e.g. the first
50 ;;; argument of PRINT might be SB-IMPL::OBJECT or SB-KERNEL::OBJ or
51 ;;; whatever. But we do know the general structure that a correct
52 ;;; answer should have, so we can safely do a lot of checks.)
53 (destructuring-bind (object-sym &optional-sym stream-sym) (get-arglist #'print)
54 (assert (symbolp object-sym))
55 (assert (eql &optional-sym '&optional))
56 (assert (symbolp stream-sym)))
57 (destructuring-bind (dest-sym control-sym &rest-sym format-args-sym)
58 (get-arglist #'format)
59 (assert (symbolp dest-sym))
60 (assert (symbolp control-sym))
61 (assert (eql &rest-sym '&rest))
62 (assert (symbolp format-args-sym)))
64 ;;; Check for backtraces generally being correct. Ensure that the
65 ;;; actual backtrace finishes (doesn't signal any errors on its own),
66 ;;; and that it contains the frames we expect, doesn't contain any
67 ;;; "bogus stack frame"s, and contains the appropriate toplevel call
68 ;;; and hasn't been cut off anywhere.
69 (defun verify-backtrace (test-function frame-specs &key (allow-stunted nil))
70 (labels ((args-equal (want real)
71 (cond ((eq '&rest (car want))
75 ((or (eq '? (car want)) (equal (car want) (car real)))
76 (args-equal (cdr want) (cdr real)))
82 ((error (lambda (condition)
83 ;; find the part of the backtrace we're interested in
84 (let ((backtrace (progn
86 (member (caar frame-specs)
87 (sb-debug:backtrace-as-list)
91 (setf result condition)
94 (print :missing-backtrace)
97 ;; check that we have all the frames we wanted
100 (unless (or (not spec)
101 (and (equal (car spec) (car frame))
102 (args-equal (cdr spec)
104 (print (list :mismatch spec frame))
109 ;; Make sure the backtrace isn't stunted in
110 ;; any way. (Depends on running in the main
112 (let ((end (last backtrace 2)))
113 (unless (equal (caar end)
114 (if *show-entry-point-details*
115 '(sb-c::tl-xep sb-impl::toplevel-init)
116 'sb-impl::toplevel-init))
117 (print (list :backtrace-stunted (caar end)))
119 (return-from outer-handler)))))
120 (funcall test-function)))
123 (defvar *undefined-function-frame*
125 '(#+(or x86 x86-64) "bogus stack frame"
126 #-(or x86 x86-64) "undefined function"))
128 ;;; Test for "undefined function" (undefined_tramp) working properly.
129 ;;; Try it with and without tail call elimination, since they can have
130 ;;; different effects. (Specifically, if undefined_tramp is incorrect
131 ;;; a stunted stack can result from the tail call variant.)
133 (declare (optimize (speed 2) (debug 1))) ; tail call elimination
134 (#:undefined-function 42))
136 (declare (optimize (speed 1) (debug 2))) ; no tail call elimination
137 (#:undefined-function 42))
139 (declare (optimize (speed 1) (debug 2))) ; no tail call elimination
142 (with-test (:fails-on '(or :alpha)) ; bug 346
143 (assert (verify-backtrace
144 (lambda () (test #'optimized))
145 (list *undefined-function-frame*
146 (list '(flet test) #'optimized)))))
148 ;; bug 353: This test fails at least most of the time for x86/linux
149 ;; ca. 0.8.20.16. -- WHN
150 (with-test (:fails-on '(or (and :x86 :linux) :alpha))
151 (assert (verify-backtrace
152 (lambda () (test #'not-optimized))
153 (list *undefined-function-frame*
154 (list '(flet not-optimized))
155 (list '(flet test) #'not-optimized))))))
157 ;;; Division by zero was a common error on PPC. It depended on the
158 ;;; return function either being before INTEGER-/-INTEGER in memory,
159 ;;; or more than MOST-POSITIVE-FIXNUM bytes ahead. It also depends on
160 ;;; INTEGER-/-INTEGER calling SIGNED-TRUNCATE. I believe Raymond Toy
161 ;;; says that the Sparc backend (at least for CMUCL) inlines this, so
162 ;;; if SBCL does the same this test is probably not good for the
165 ;;; Disabling tail call elimination on this will probably ensure that
166 ;;; the return value (to the flet or the enclosing top level form) is
167 ;;; more than MOST-POSITIVE-FIXNUM with the current spaces on OS X.
168 ;;; Enabling it might catch other problems, so do it anyway.
170 (declare (optimize (speed 2) (debug 1))) ; tail call elimination
173 (declare (optimize (speed 1) (debug 2))) ; no tail call elimination
176 (declare (optimize (speed 1) (debug 2))) ; no tail call elimination
178 (with-test (:fails-on '(or :alpha)) ; bug 346
179 (assert (verify-backtrace (lambda () (test #'optimized))
181 (list '(flet test) #'optimized)))))
182 (with-test (:fails-on '(or :alpha)) ; bug 346
183 (assert (verify-backtrace (lambda () (test #'not-optimized))
185 '((flet not-optimized))
186 (list '(flet test) #'not-optimized))))))
188 (with-test (:fails-on '(or (and :x86 :linux) :alpha))
191 (throw 'no-such-tag t))
192 (assert (verify-backtrace #'throw-test '((throw-test))))))
194 ;;; test entry point handling in backtraces
199 (defmacro defbt (n ll &body body)
202 (defun ,(intern (format nil "BT.~A.1" n)) ,ll
204 ;; no arguments saved
205 (defun ,(intern (format nil "BT.~A.2" n)) ,ll
206 (declare (optimize (debug 1) (speed 3)))
208 ;; no lambda-list saved
209 (defun ,(intern (format nil "BT.~A.3" n)) ,ll
210 (declare (optimize (debug 0)))
219 (defbt 3 (&key (key (oops)))
222 ;;; ERROR instead of OOPS so that tail call elimination doesn't happen
223 (defbt 4 (&optional opt)
224 (list (error "error")))
226 (defbt 5 (&optional (opt (oops)))
229 (with-test (:fails-on '(and :x86 :linux))
230 (macrolet ((with-details (bool &body body)
231 `(let ((sb-debug:*show-entry-point-details* ,bool))
237 (assert (verify-backtrace #'namestring
238 '(((sb-c::tl-xep namestring) 0 ?)))))
240 (assert (verify-backtrace #'namestring
246 (assert (verify-backtrace (lambda () (bt.1.1 :key))
247 '(((sb-c::&more-processor bt.1.1) &rest))))
248 (assert (verify-backtrace (lambda () (bt.1.2 :key))
249 '(((sb-c::&more-processor bt.1.2) &rest))))
250 (assert (verify-backtrace (lambda () (bt.1.3 :key))
251 '(((sb-c::&more-processor bt.1.3) &rest)))))
253 (assert (verify-backtrace (lambda () (bt.1.1 :key))
255 (assert (verify-backtrace (lambda () (bt.1.2 :key))
257 (assert (verify-backtrace (lambda () (bt.1.3 :key))
263 (assert (verify-backtrace #'bt.2.1
264 '(((sb-c::xep bt.2.1) 0 ?))))
265 (assert (verify-backtrace #'bt.2.2
266 '(((sb-c::xep bt.2.2) &rest))))
267 (assert (verify-backtrace #'bt.2.3
268 '(((sb-c::xep bt.2.3) &rest)))))
270 (assert (verify-backtrace #'bt.2.1
272 (assert (verify-backtrace #'bt.2.2
274 (assert (verify-backtrace #'bt.2.3
278 (print :varargs-entry)
280 (assert (verify-backtrace #'bt.3.1
281 '(((sb-c::varargs-entry bt.3.1) :key nil))))
282 (assert (verify-backtrace #'bt.3.2
283 '(((sb-c::varargs-entry bt.3.2) :key ?))))
284 (assert (verify-backtrace #'bt.3.3
285 '(((sb-c::varargs-entry bt.3.3) &rest)))))
287 (assert (verify-backtrace #'bt.3.1
288 '((bt.3.1 :key nil))))
289 (assert (verify-backtrace #'bt.3.2
291 (assert (verify-backtrace #'bt.3.3
294 ;; HAIRY-ARG-PROCESSOR
295 (print :hairy-args-processor)
297 (assert (verify-backtrace #'bt.4.1
298 '(((sb-c::hairy-arg-processor bt.4.1) ?))))
299 (assert (verify-backtrace #'bt.4.2
300 '(((sb-c::hairy-arg-processor bt.4.2) ?))))
301 (assert (verify-backtrace #'bt.4.3
302 '(((sb-c::hairy-arg-processor bt.4.3) &rest)))))
304 (assert (verify-backtrace #'bt.4.1
306 (assert (verify-backtrace #'bt.4.2
308 (assert (verify-backtrace #'bt.4.3
311 ;; &OPTIONAL-PROCESSOR
312 (print :optional-processor)
314 (assert (verify-backtrace #'bt.5.1
315 '(((sb-c::&optional-processor bt.5.1)))))
316 (assert (verify-backtrace #'bt.5.2
317 '(((sb-c::&optional-processor bt.5.2) &rest))))
318 (assert (verify-backtrace #'bt.5.3
319 '(((sb-c::&optional-processor bt.5.3) &rest)))))
321 (assert (verify-backtrace #'bt.5.1
323 (assert (verify-backtrace #'bt.5.2
325 (assert (verify-backtrace #'bt.5.3
326 '((bt.5.3 &rest)))))))
333 (let ((out (with-output-to-string (*trace-output*)
335 (assert (eq 'ok (trace-this)))
337 (assert (search "TRACE-THIS" out))
338 (assert (search "returned OK" out)))
342 (let ((out (with-output-to-string (*trace-output*)
343 (trace trace-this :encapsulate nil)
344 (assert (eq 'ok (trace-this)))
346 (assert (search "TRACE-THIS" out))
347 (assert (search "returned OK" out)))
349 ;;;; test infinite error protection
351 (defmacro nest-errors (n-levels error-form)
353 `(handler-bind ((error (lambda (condition)
354 (declare (ignore condition))
356 (nest-errors ,(1- n-levels) ,error-form))
359 (defun erroring-debugger-hook (condition old-debugger-hook)
360 (let ((*debugger-hook* old-debugger-hook))
361 (format t "recursive condition: ~A~%" condition) (force-output)
362 (error "recursive condition: ~A" condition)))
364 (defun test-inifinite-error-protection ()
365 ;; after 50 successful throws to SB-IMPL::TOPLEVEL-CATCHER sbcl used
366 ;; to halt, it produces so much garbage that's hard to suppress that
367 ;; it is tested only once
368 (let ((*debugger-hook* #'erroring-debugger-hook))
370 (let ((error-counter 0)
371 (*terminal-io* (make-broadcast-stream)))
375 (catch 'sb-impl::toplevel-catcher
376 (nest-errors 20 (error "infinite error ~s"
377 (incf error-counter)))
382 (test-inifinite-error-protection)
385 (let ((thread (sb-thread:make-thread #'test-inifinite-error-protection)))
386 (loop while (sb-thread:thread-alive-p thread)))