0.8.10.35:
[sbcl.git] / tests / compiler.impure.lisp
1 ;;;; This file is for compiler tests which have side effects (e.g.
2 ;;;; executing DEFUN) but which don't need any special side-effecting
3 ;;;; environmental stuff (e.g. DECLAIM of particular optimization
4 ;;;; settings). Similar tests which *do* expect special settings may
5 ;;;; be in files compiler-1.impure.lisp, compiler-2.impure.lisp, etc.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; While most of SBCL is derived from the CMU CL system, the test
11 ;;;; files (like this one) were written from scratch after the fork
12 ;;;; from CMU CL.
13 ;;;; 
14 ;;;; This software is in the public domain and is provided with
15 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
16 ;;;; more information.
17
18 (load "assertoid.lisp")
19 (use-package "ASSERTOID")
20
21 ;;; Old CMU CL code assumed that the names of "keyword" arguments are
22 ;;; necessarily self-evaluating symbols, but ANSI Common Lisp allows
23 ;;; them to be any symbols, not necessarily keywords, and thus not
24 ;;; necessarily self-evaluating. Make sure that this works.
25 (defun newfangled-cons (&key ((left-thing x)) ((right-thing y)))
26   (cons x y))
27 (assert (equal (cons 1 2) (newfangled-cons 'right-thing 2 'left-thing 1)))
28
29 ;;; ANSI specifically says that duplicate keys are OK in lambda lists,
30 ;;; with no special exception for macro lambda lists. (As reported by
31 ;;; Pierre Mai on cmucl-imp 2001-03-30, Python didn't think so. The
32 ;;; rest of the thread had some entertainment value, at least for me
33 ;;; (WHN). The unbelievers were besmote and now even CMU CL will
34 ;;; conform to the spec in this regard. Who needs diplomacy when you
35 ;;; have brimstone?:-)
36 (defmacro ayup-duplicate-keys-are-ok-i-see-the-lite (&key k)
37   k)
38 (assert (equal (ayup-duplicate-keys-are-ok-i-see-the-lite :k 112) 112))
39 (assert (equal (ayup-duplicate-keys-are-ok-i-see-the-lite :k 'x :k 'y) 'x))
40
41 ;;; As reported by Alexey Dejneka (sbcl-devel 2002-01-30), in
42 ;;; sbcl-0.7.1 plus his patch (i.e. essentially sbcl-0.7.1.2), the
43 ;;; compiler barfed on this, blowing up in FIND-IN-PHYSENV looking for
44 ;;; the LAMBDA-VAR named NUM. That was fixed in sbcl-0.7.1.3.
45 (defun parse-num (index)
46   (let (num x)
47     (flet ((digs ()
48              (setq num index))
49            (z ()
50              (let ()
51                (setq x nil))))
52       (when (and (digs) (digs)) x))))
53
54 ;;; Bug 132: The compiler used to fail to compile INTEGER-valued CATCH
55 ;;; tags. This was fixed by Alexey Dejneka in sbcl-0.7.1.14. (INTEGER
56 ;;; catch tags are still a bad idea because EQ is used to compare
57 ;;; tags, and EQ comparison on INTEGERs is unportable; but now it's a
58 ;;; compiler warning instead of a failure to compile.)
59 (defun foo ()
60   (catch 0 (print 1331)))
61
62 ;;; Bug 150: In sbcl-0.7.1.15, compiling this code caused a failure in
63 ;;; SB-C::ADD-TEST-CONSTRAINTS:
64 ;;;    The value NIL is not of type SB-C::CONTINUATION.
65 ;;; This bug was fixed by APD in sbcl-0.7.1.30.
66 (defun bug150-test1 ()
67   (let* ()
68     (flet ((wufn () (glorp table1 4.9)))
69       (gleep *uustk* #'wufn "#1" (list)))
70     (if (eql (lo foomax 3.2))
71         (values)
72         (error "not ~S" '(eql (lo foomax 3.2))))
73     (values)))
74 ;;; A simpler test case for bug 150: The compiler died with the
75 ;;; same type error when trying to compile this.
76 (defun bug150-test2 ()
77   (let ()
78     (<)))
79
80 ;;; bug 147, fixed by APD 2002-04-28
81 ;;;
82 ;;; This test case used to crash the compiler, e.g. with
83 ;;;   failed AVER: "(= (LENGTH (BLOCK-SUCC CALL-BLOCK)) 1)"
84 (defun bug147 (string ind)
85   (flet ((digs ()
86            (let (old-index)
87              (if (and (< ind ind)
88                       (typep (char string ind) '(member #\1)))
89                  nil))))))
90
91 ;;; bug reported and fixed by Matthias Hoelzl sbcl-devel 2002-05-13
92 (defmacro foo-2002-05-13 () ''x)
93 (eval '(foo-2002-05-13))
94 (compile 'foo-2002-05-13)
95 (foo-2002-05-13) ; (The bug caused UNDEFINED-FUNCTION to be signalled here.)
96
97 ;;; floating point pain on the PPC.
98 ;;;
99 ;;; This test case used to fail to compile on most powerpcs prior to
100 ;;; sbcl-0.7.4.2x, as floating point traps were being incorrectly
101 ;;; masked.
102 (defun floating-point-pain (x)
103   (declare (single-float x))
104   (log x))
105
106 ;;; bug found and fixed ca. sbcl-0.7.5.12: The INTERSECTION-TYPE
107 ;;; here satisfies "is a subtype of ARRAY-TYPE", but can't be
108 ;;; accessed with ARRAY-TYPE accessors like
109 ;;; ARRAY-TYPE-SPECIALIZED-ELEMENT-TYPE, so ARRAY-related
110 ;;; DEFTRANSFORMs died with TYPE-ERROR at compile time when
111 ;;; compiling the DEFUN here.
112 (defun stupid-input-to-smart-array-deftransforms-0-7-5-12 (v)
113   (declare (type (and simple-vector fwd-type-ref) v))
114   (aref v 0))
115
116 ;;; Ca. sbcl-0.7.5.15 the compiler would fail an internal consistency
117 ;;; check on this code because it expected all calls to %INSTANCE-REF
118 ;;; to be transformed away, but its expectations were dashed by perverse
119 ;;; code containing app programmer errors like this.
120 (defstruct something-known-to-be-a-struct x y)
121 (multiple-value-bind (fun warnings-p failure-p)
122     (compile nil
123              '(lambda ()
124                 (labels ((a1 (a2 a3)
125                              (cond (t (a4 a2 a3))))
126                          (a4 (a2 a3 a5 a6)
127                              (declare (type (or simple-vector null) a5 a6))
128                              (something-known-to-be-a-struct-x a5))
129                          (a8 (a2 a3)
130                              (a9 #'a1 a10 a2 a3))
131                          (a11 (a2 a3)
132                               (cond ((and (funcall a12 a2)
133                                           (funcall a12 a3))
134                                      (funcall a13 a2 a3))
135                                     (t
136                                      (when a14
137                                      (let ((a15 (a1 a2 a3)))
138                                        ))
139                                      a16))))
140                   (values #'a17 #'a11))))
141   ;; Python sees the structure accessor on the known-not-to-be-a-struct
142   ;; A5 value and is very, very disappointed in you. (But it doesn't
143   ;; signal BUG any more.)
144   (assert failure-p))
145
146 ;;; On the SPARC, there was an erroneous definition of some VOPs used
147 ;;; to compile LOGANDs, which would lead to compilation of the
148 ;;; following function giving rise to a compile-time error (bug
149 ;;; spotted and fixed by Raymond Toy for CMUCL)
150 (defun logand-sparc-bogons (a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 a10)
151   (declare (type (unsigned-byte 32) a0)
152            (type (signed-byte 32) a1 a2 a3 a4 a5 a6 a7 a8 a9 a10)
153            ;; to ensure that the call is a candidate for
154            ;; transformation
155            (optimize (speed 3) (safety 0) (compilation-speed 0) (debug 0)))
156   (values
157    ;; the call that fails compilation
158    (logand a0 a10)
159    ;; a call to prevent the other arguments from being optimized away
160    (logand a1 a2 a3 a4 a5 a6 a7 a8 a9)))
161
162 ;;; bug 192, reported by Einar Floystad Dorum sbcl-devel 2002-08-14,
163 ;;; fixed in sbcl-0.7.6.26: Compiling this function in 0.7.6 caused
164 ;;; the compiler to try to constant-fold DATA-VECTOR-REF, which is OK,
165 ;;; except that there was no non-VOP definition of DATA-VECTOR-REF, so
166 ;;; it would fail.
167 (defun bug192 ()
168       (funcall 
169        (LAMBDA (TEXT I L )
170          (LABELS ((G908 (I)
171                     (LET ((INDEX
172                            (OR
173                             (IF (= I L)
174                                 NIL
175                                 (LET ((S TEXT)
176                                       (E (ELT TEXT I)))
177                                   (DECLARE (IGNORABLE S E))
178                                   (WHEN (EQL #\a E)
179                                     (G909 (1+ I))))))))
180                       INDEX))
181                   (G909 (I)
182                     (OR
183                      (IF (= I L)
184                          NIL
185                          (LET ((S TEXT)
186                                (E (ELT TEXT I)))
187                            (DECLARE (IGNORABLE S E))
188                            (WHEN (EQL #\b E) (G910 (1+ I)))))))
189                   (G910 (I)
190                     (LET ((INDEX
191                            (OR
192                             (IF NIL
193                                 NIL
194                                 (LET ((S TEXT))
195                                   (DECLARE (IGNORABLE S))
196                                   (WHEN T I))))))
197                       INDEX)))
198            (G908 I))) "abcdefg" 0 (length "abcdefg")))
199
200 ;;; bugs #65, #70, and #109, closed by APD's patch sbcl-devel 2002-08-17
201 ;;;
202 ;;; This was "YA code deletion bug" whose symptom was the failure of
203 ;;; the assertion
204 ;;;   (EQ (C::LAMBDA-TAIL-SET C::CALLER)
205 ;;;       (C::LAMBDA-TAIL-SET (C::LAMBDA-HOME C::CALLEE)))
206 ;;; at compile time.
207 (defun bug65-1 (termx termy) ; from Carl Witty on submit bugs list, debian.org
208   (labels
209     ((alpha-equal-bound-term-lists (listx listy)
210        (or (and (null listx) (null listy))
211            (and listx listy
212                 (let ((bindings-x (bindings-of-bound-term (car listx)))
213                       (bindings-y (bindings-of-bound-term (car listy))))
214                   (if (and (null bindings-x) (null bindings-y))
215                       (alpha-equal-terms (term-of-bound-term (car listx))
216                                          (term-of-bound-term (car listy)))
217                       (and (= (length bindings-x) (length bindings-y))
218                            (prog2
219                                (enter-binding-pairs (bindings-of-bound-term (car listx))
220                                                     (bindings-of-bound-term (car listy)))
221                                (alpha-equal-terms (term-of-bound-term (car listx))
222                                                   (term-of-bound-term (car listy)))
223                              (exit-binding-pairs (bindings-of-bound-term (car listx))
224                                                  (bindings-of-bound-term (car listy)))))))
225                 (alpha-equal-bound-term-lists (cdr listx) (cdr listy)))))
226
227      (alpha-equal-terms (termx termy)
228        (if (and (variable-p termx)
229                 (variable-p termy))
230            (equal-bindings (id-of-variable-term termx)
231                            (id-of-variable-term termy))
232            (and (equal-operators-p (operator-of-term termx) (operator-of-term termy))
233                 (alpha-equal-bound-term-lists (bound-terms-of-term termx)
234                                               (bound-terms-of-term termy))))))
235
236     (or (eq termx termy)
237         (and termx termy
238              (with-variable-invocation (alpha-equal-terms termx termy))))))
239 (defun bug65-2 () ; from Bob Rogers cmucl-imp 1999-07-28
240   ;; Given an FSSP alignment file named by the argument . . .
241   (labels ((get-fssp-char ()
242              (get-fssp-char))
243            (read-fssp-char ()
244              (get-fssp-char)))
245     ;; Stub body, enough to tickle the bug.
246     (list (read-fssp-char)
247           (read-fssp-char))))
248 (defun bug70 ; from David Young cmucl-help 30 Nov 2000
249     (item sequence &key (test #'eql))
250   (labels ((find-item (obj seq test &optional (val nil))
251                       (let ((item (first seq)))
252                         (cond ((null seq)
253                                (values nil nil))
254                               ((funcall test obj item)
255                                (values val seq))
256                               (t        
257                                (find-item obj
258                                           (rest seq)
259                                           test
260                                           (nconc val `(,item))))))))
261     (find-item item sequence test)))
262 (defun bug109 () ; originally from CMU CL bugs collection, reported as
263                  ; SBCL bug by MNA 2001-06-25
264   (labels 
265       ((eff (&key trouble)
266             (eff)
267             ;; nil
268             ;; Uncomment and it works
269             ))
270     (eff)))
271
272 ;;; bug 192a, fixed by APD "more strict type checking" patch
273 ;;; (sbcl-devel 2002-08-07)
274 (defun bug192a (x)
275   (declare (optimize (speed 0) (safety 3)))
276   ;; Even with bug 192a, this declaration was checked as an assertion.
277   (declare (real x))
278   (+ x
279      (locally
280        ;; Because of bug 192a, this declaration was trusted without checking.
281        (declare (single-float x))
282        (sin x))))
283 (assert (null (ignore-errors (bug192a nil))))
284 (multiple-value-bind (result error) (ignore-errors (bug192a 100))
285   (assert (null result))
286   (assert (equal (type-error-expected-type error) 'single-float)))
287
288 ;;; bug 194, fixed in part by APD "more strict type checking" patch
289 ;;; (sbcl-devel 2002-08-07)
290 (progn
291   (multiple-value-bind (result error)
292       (ignore-errors (multiple-value-prog1 (progn (the real '(1 2 3)))))
293     (assert (null result))
294     (assert (typep error 'type-error)))
295   (multiple-value-bind (result error)
296       (ignore-errors (the real '(1 2 3)))
297     (assert (null result))
298     (assert (typep error 'type-error))))
299
300 (defun bug194d ()
301   (null (ignore-errors
302           (let ((arg1 1)
303                 (arg2 (identity (the real #(1 2 3)))))
304             (if (< arg1 arg2) arg1 arg2)))))
305 (assert (eq (bug194d) t))
306
307 \f
308 ;;; BUG 48a. and b. (symbol-macrolet handling), fixed by Eric Marsden
309 ;;; and Raymond Toy for CMUCL, fix ported for sbcl-0.7.6.18.
310 (multiple-value-bind (function warnings-p failure-p)
311     (compile nil '(lambda () (symbol-macrolet ((t nil)) t)))
312   (assert failure-p)
313   (assert (raises-error? (funcall function) program-error)))
314 (multiple-value-bind (function warnings-p failure-p)
315     (compile nil
316              '(lambda ()
317                 (symbol-macrolet ((*standard-input* nil))
318                   *standard-input*)))
319   (assert failure-p)
320   (assert (raises-error? (funcall function) program-error)))
321 (multiple-value-bind (function warnings-p failure-p)
322     (compile nil '(lambda () (symbol-macrolet ((s nil)) (declare (special s)) s)))
323   (assert failure-p)
324   (assert (raises-error? (funcall function) program-error)))
325 \f
326 ;;; bug 120a: Turned out to be constraining code looking like (if foo
327 ;;; <X> <X>) where <X> was optimized by the compiler to be the exact
328 ;;; same block in both cases, but not turned into (PROGN FOO <X>).
329 ;;; Fixed by APD in sbcl-0.7.7.2, who provided this test:
330 (declaim (inline dont-constrain-if-too-much))
331 (defun dont-constrain-if-too-much (frame up-frame)
332   (declare (optimize (speed 3) (safety 1) (debug 1)))
333   (if (or (not frame) t)
334       frame
335       "bar"))
336 (defun dont-constrain-if-too-much-aux (x y)
337   (declare (optimize (speed 3) (safety 1) (debug 1)))
338   (if x t (if y t (dont-constrain-if-too-much x y))))
339
340 (assert (null (dont-constrain-if-too-much-aux nil nil)))  
341
342 ;;; TYPE-ERROR confusion ca. sbcl-0.7.7.24, reported and fixed by
343 ;;; APD sbcl-devel 2002-09-14
344 (defun exercise-0-7-7-24-bug (x)
345   (declare (integer x))
346   (let (y)
347     (setf y (the single-float (if (> x 0) x 3f0)))
348     (list y y)))
349 (multiple-value-bind (v e) (ignore-errors (exercise-0-7-7-24-bug 4))
350   (assert (null v))
351   (assert (typep e 'type-error)))
352 (assert (equal (exercise-0-7-7-24-bug -4) '(3f0 3f0)))
353
354 ;;; non-intersecting type declarations were DWIMing in a confusing
355 ;;; fashion until sbcl-0.7.7.28, when APD reported and fixed the
356 ;;; problem.
357 (defun non-intersecting-the (x)
358   (let (y)
359     (setf y (the single-float (the integer x)))
360     (list y y)))
361
362 (raises-error? (foo 3) type-error)
363 (raises-error? (foo 3f0) type-error)
364
365 ;;; until 0.8.2 SBCL did not check THEs in arguments
366 (defun the-in-arguments-aux (x)
367   x)
368 (defun the-in-arguments-1 (x)
369   (list x (the-in-arguments-aux (the (single-float 0s0) x))))
370 (defun the-in-arguments-2 (x)
371   (list x (the-in-arguments-aux (the single-float x))))
372
373 (multiple-value-bind (result condition)
374     (ignore-errors (the-in-arguments-1 1))
375   (assert (null result))
376   (assert (typep condition 'type-error)))
377 (multiple-value-bind (result condition)
378     (ignore-errors (the-in-arguments-2 1))
379   (assert (null result))
380   (assert (typep condition 'type-error)))
381
382 ;;; bug 153: a hole in a structure slot type checking
383 (declaim (optimize safety))
384 (defstruct foo153
385   (bla 0 :type fixnum))
386 (defun bug153-1 ()
387   (let ((foo (make-foo153)))
388     (setf (foo153-bla foo) '(1 . 1))
389     (format t "Is ~a of type ~a a cons? => ~a~%"
390             (foo153-bla foo)
391             (type-of (foo153-bla foo))
392             (consp (foo153-bla foo)))))
393 (defun bug153-2 (x)
394   (let ((foo (make-foo153)))
395     (setf (foo153-bla foo) x)
396     (format t "Is ~a of type ~a a cons? => ~a~%"
397             (foo153-bla foo)
398             (type-of (foo153-bla foo))
399             (consp (foo153-bla foo)))))
400
401 (multiple-value-bind (result condition)
402     (ignore-errors (bug153-1))
403   (declare (ignore result))
404   (assert (typep condition 'type-error)))
405 (multiple-value-bind (result condition)
406     (ignore-errors (bug153-2 '(1 . 1)))
407   (declare (ignore result))
408   (assert (typep condition 'type-error)))
409
410 ;;;; bug 110: the compiler flushed the argument type test and the default
411 ;;;; case in the cond.
412 ;
413 ;(locally (declare (optimize (safety 3) (speed 2)))
414 ;  (defun bug110 (x)
415 ;    (declare (optimize (safety 2) (speed 3)))
416 ;    (declare (type (or string stream) x))
417 ;    (cond ((typep x 'string) 'string)
418 ;          ((typep x 'stream) 'stream)
419 ;          (t
420 ;           'none))))
421 ;
422 ;(multiple-value-bind (result condition)
423 ;    (ignore-errors (bug110 0))
424 ;  (declare (ignore result))
425 ;  (assert (typep condition 'type-error)))
426
427 ;;; bug 202: the compiler failed to compile a function, which derived
428 ;;; type contradicted declared.
429 (declaim (ftype (function () null) bug202))
430 (defun bug202 ()
431   t)
432
433 ;;; bugs 178, 199: compiler failed to compile a call of a function
434 ;;; with a hairy type
435 (defun bug178 (x)
436       (funcall (the function (the standard-object x))))
437
438 (defun bug199-aux (f)
439   (eq nil (funcall f)))
440
441 (defun bug199 (f x)
442   (declare (type (and function (satisfies bug199-aux)) f))
443   (funcall f x))
444
445 ;;; check non-toplevel DEFMACRO
446 (defvar *defmacro-test-status* nil)
447
448 (defun defmacro-test ()
449   (fmakunbound 'defmacro-test-aux)
450   (let* ((src "defmacro-test.lisp")
451          (obj (compile-file-pathname src)))
452     (unwind-protect
453          (progn
454            (compile-file src)
455            (assert (equal *defmacro-test-status* '(function a)))
456            (setq *defmacro-test-status* nil)
457            (load obj)
458            (assert (equal *defmacro-test-status* nil))
459            (macroexpand '(defmacro-test-aux 'a))
460            (assert (equal *defmacro-test-status* '(macro 'a z-value)))
461            (eval '(defmacro-test-aux 'a))
462            (assert (equal *defmacro-test-status* '(expanded 'a z-value))))
463       (ignore-errors (delete-file obj)))))
464
465 (defmacro-test)
466
467 ;;; bug 204: EVAL-WHEN inside a local environment
468 (defvar *bug204-test-status*)
469
470 (defun bug204-test ()
471   (let* ((src "bug204-test.lisp")
472          (obj (compile-file-pathname src)))
473     (unwind-protect
474          (progn
475            (setq *bug204-test-status* nil)
476            (compile-file src)
477            (assert (equal *bug204-test-status* '((:expanded :load-toplevel)
478                                                  (:called :compile-toplevel)
479                                                  (:expanded :compile-toplevel))))
480            (setq *bug204-test-status* nil)
481            (load obj)
482            (assert (equal *bug204-test-status* '((:called :load-toplevel)))))
483       (ignore-errors (delete-file obj)))))
484
485 (bug204-test)
486
487 ;;; toplevel SYMBOL-MACROLET
488 (defvar *symbol-macrolet-test-status*)
489
490 (defun symbol-macrolet-test ()
491   (let* ((src "symbol-macrolet-test.lisp")
492          (obj (compile-file-pathname src)))
493     (unwind-protect
494          (progn
495            (setq *symbol-macrolet-test-status* nil)
496            (compile-file src)
497            (assert (equal *symbol-macrolet-test-status*
498                           '(2 1)))
499            (setq *symbol-macrolet-test-status* nil)
500            (load obj)
501            (assert (equal *symbol-macrolet-test-status* '(2))))
502       (ignore-errors (delete-file obj)))))
503
504 (symbol-macrolet-test)
505
506 ;;; On the x86, this code failed to compile until sbcl-0.7.8.37:
507 (defun x86-assembler-failure (x)
508   (declare (optimize (speed 3) (safety 0)))
509   (eq (setf (car x) 'a) nil))
510
511 ;;; bug 211: :ALLOW-OTHER-KEYS
512 (defun bug211d (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
513   (list x x-p y y-p))
514
515 (assert (equal (bug211d) '(:x nil :y nil)))
516 (assert (equal (bug211d :x 1) '(1 t :y nil)))
517 (assert (raises-error? (bug211d :y 2) program-error))
518 (assert (equal (bug211d :y 2 :allow-other-keys t :allow-other-keys nil)
519                '(:x nil t t)))
520 (assert (raises-error? (bug211d :y 2 :allow-other-keys nil) program-error))
521
522 (let ((failure-p
523        (nth-value
524         3
525         (compile 'bug211b
526                  '(lambda ()
527                    (flet ((test (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
528                             (list x x-p y y-p)))
529                      (assert (equal (test) '(:x nil :y nil)))
530                      (assert (equal (test :x 1) '(1 t :y nil)))
531                      (assert (equal (test :y 2 :allow-other-keys 11 :allow-other-keys nil)
532                                     '(:x nil 11 t)))))))))
533   (assert (not failure-p))
534   (bug211b))
535
536 (let ((failure-p
537        (nth-value
538         3
539         (compile 'bug211c
540                  '(lambda ()
541                    (flet ((test (&key (x :x x-p))
542                             (list x x-p)))
543                      (assert (equal (test) '(:x nil)))
544                      (assert (equal (test :x 1) '(1 t)))
545                      (assert (equal (test :y 2 :allow-other-keys 11 :allow-other-keys nil)
546                                     '(:x nil)))))))))
547   (assert (not failure-p))
548   (bug211c))
549
550 (dolist (form '((test :y 2)
551                 (test :y 2 :allow-other-keys nil)
552                 (test :y 2 :allow-other-keys nil :allow-other-keys t)))
553   (multiple-value-bind (result warnings-p failure-p)
554       (compile nil `(lambda ()
555                      (flet ((test (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
556                               (list x x-p y y-p)))
557                        ,form)))
558     (assert failure-p)
559     (assert (raises-error? (funcall result) program-error))))
560
561 ;;; bug 217: wrong type inference
562 (defun bug217-1 (x s)
563   (let ((f (etypecase x
564              (character #'write-char)
565              (integer #'write-byte))))
566     (funcall f x s)
567     (etypecase x
568       (character (write-char x s))
569       (integer (write-byte x s)))))
570 (bug217-1 #\1 *standard-output*)
571
572
573 ;;; bug 221: tried and died on CSUBTYPEP (not VALUES-SUBTYPEP) of the
574 ;;; function return types when inferring the type of the IF expression
575 (declaim (ftype (function (fixnum) (values package boolean)) bug221f1))
576 (declaim (ftype (function (t) (values package boolean)) bug221f2))
577 (defun bug221 (b x)
578   (funcall (if b #'bug221f1 #'bug221f2) x))
579 \f
580 ;;; bug 172: macro lambda lists were too permissive until 0.7.9.28
581 ;;; (fix provided by Matthew Danish) on sbcl-devel
582 (assert (null (ignore-errors
583                 (defmacro bug172 (&rest rest foo) `(list ,rest ,foo)))))
584
585 ;;; embedded THEs
586 (defun check-embedded-thes (policy1 policy2 x y)
587   (handler-case
588       (funcall (compile nil
589                         `(lambda (f)
590                            (declare (optimize (speed 2) (safety ,policy1)))
591                            (multiple-value-list
592                             (the (values (integer 2 3) t &optional)
593                               (locally (declare (optimize (safety ,policy2)))
594                                 (the (values t (single-float 2f0 3f0) &optional)
595                                   (funcall f)))))))
596                (lambda () (values x y)))
597     (type-error (error)
598       error)))
599
600 (assert (equal (check-embedded-thes 0 0  :a :b) '(:a :b)))
601
602 (assert (equal (check-embedded-thes 0 3  :a 2.5f0) '(:a 2.5f0)))
603 (assert (typep (check-embedded-thes 0 3  2 3.5f0) 'type-error))
604
605 (assert (equal (check-embedded-thes 0 1  :a 3.5f0) '(:a 3.5f0)))
606 (assert (typep (check-embedded-thes 0 1  2 2.5d0) 'type-error))
607
608 (assert (equal (check-embedded-thes 3 0  2 :a) '(2 :a)))
609 (assert (typep (check-embedded-thes 3 0  4 2.5f0) 'type-error))
610
611 (assert (equal (check-embedded-thes 1 0  4 :b) '(4 :b)))
612 (assert (typep (check-embedded-thes 1 0  1.0 2.5f0) 'type-error))
613
614
615 (assert (equal (check-embedded-thes 3 3  2 2.5f0) '(2 2.5f0)))
616 (assert (typep (check-embedded-thes 3 3  0 2.5f0) 'type-error))
617 (assert (typep (check-embedded-thes 3 3  2 3.5f0) 'type-error))
618 \f
619 ;;; INLINE inside MACROLET
620 (declaim (inline to-be-inlined))
621 (macrolet ((def (x) `(defun ,x (y) (+ y 1))))
622   (def to-be-inlined))
623 (defun call-inlined (z)
624   (to-be-inlined z))
625 (assert (= (call-inlined 3) 4))
626 (macrolet ((frob (x) `(+ ,x 3)))
627   (defun to-be-inlined (y)
628     (frob y)))
629 (assert (= (call-inlined 3)
630            ;; we should have inlined the previous definition, so the
631            ;; new one won't show up yet.
632            4))
633 (defun call-inlined (z)
634   (to-be-inlined z))
635 (assert (= (call-inlined 3) 6))
636 (defun to-be-inlined (y)
637   (+ y 5))
638 (assert (= (call-inlined 3) 6))
639 \f
640 ;;; DEFINE-COMPILER-MACRO to work as expected, not via weird magical
641 ;;; IR1 pseudo-:COMPILE-TOPLEVEL handling
642 (defvar *bug219-a-expanded-p* nil)
643 (defun bug219-a (x)
644   (+ x 1))
645 (define-compiler-macro bug219-a (&whole form y)
646   (setf *bug219-a-expanded-p* t)
647   (if (constantp y)
648       (+ (eval y) 2)
649       form))
650 (defun bug219-a-aux ()
651   (bug219-a 2))
652 (assert (= (bug219-a-aux)
653            (if *bug219-a-expanded-p* 4 3)))
654 (defvar *bug219-a-temp* 3)
655 (assert (= (bug219-a *bug219-a-temp*) 4))
656
657 (defvar *bug219-b-expanded-p* nil)
658 (defun bug219-b-aux1 (x)
659   (when x
660     (define-compiler-macro bug219-b (y)
661       (setf *bug219-b-expanded-p* t)
662       `(+ ,y 2))))
663 (defun bug219-b-aux2 (z)
664   (bug219-b z))
665 (assert (not *bug219-b-expanded-p*))
666 (assert (raises-error? (bug219-b-aux2 1) undefined-function))
667 (bug219-b-aux1 t)
668 (defun bug219-b-aux2 (z)
669   (bug219-b z))
670 (defun bug219-b (x)
671   x)
672 (assert (= (bug219-b-aux2 1)
673            (if *bug219-b-expanded-p* 3 1)))
674
675 ;;; bug 224: failure in unreachable code deletion
676 (defmacro do-optimizations (&body body)
677   `(dotimes (.speed. 4)
678      (dotimes (.space. 4)
679        (dotimes (.debug. 4)
680          (dotimes (.compilation-speed. 4)
681            (proclaim `(optimize (speed , .speed.) (space , .space.)
682                                 (debug , .debug.)
683                                 (compilation-speed , .compilation-speed.)))
684            ,@body)))))
685
686 (do-optimizations
687     (compile nil
688              (read-from-string
689               "(lambda () (#:localy (declare (optimize (safety 3)))
690                                     (ignore-errors (progn (values-list (car (list '(1 . 2)))) t))))")))
691
692 (do-optimizations
693     (compile nil '(lambda ()
694                    (labels ((ext ()
695                               (tagbody
696                                  (labels ((i1 () (list (i2) (i2)))
697                                           (i2 () (list (int) (i1)))
698                                           (int () (go :exit)))
699                                    (list (i1) (i1) (i1)))
700                                :exit (return-from ext)
701                                  )))
702                      (list (error "nih") (ext) (ext))))))
703
704 (do-optimizations
705   (compile nil '(lambda (x) (let ((y (error ""))) (list x y)))))
706
707 ;;; bug 223: invalid moving of global function name referencing
708 (defun bug223-int (n)
709   `(int ,n))
710
711 (defun bug223-wrap ()
712   (let ((old #'bug223-int))
713     (setf (fdefinition 'bug223-int)
714           (lambda (n)
715             (assert (> n 0))
716             `(ext ,@(funcall old (1- n)))))))
717 (compile 'bug223-wrap)
718
719 (assert (equal (bug223-int 4) '(int 4)))
720 (bug223-wrap)
721 (assert (equal (bug223-int 4) '(ext int 3)))
722 (bug223-wrap)
723 (assert (equal (bug223-int 4) '(ext ext int 2)))
724 \f
725 ;;; COERCE got its own DEFOPTIMIZER which has to reimplement most of
726 ;;; SPECIFIER-TYPE-NTH-ARG.  For a while, an illegal type would throw
727 ;;; you into the debugger on compilation.
728 (defun coerce-defopt1 (x)
729   ;; illegal, but should be compilable.
730   (coerce x '(values t)))
731 (defun coerce-defopt2 (x)
732   ;; illegal, but should be compilable.
733   (coerce x '(values t &optional)))
734 (assert (null (ignore-errors (coerce-defopt1 3))))
735 (assert (null (ignore-errors (coerce-defopt2 3))))
736 \f
737 ;;; Oops.  In part of the (CATCH ..) implementation of DEBUG-RETURN,
738 ;;; it was possible to confuse the type deriver of the compiler
739 ;;; sufficiently that compiler invariants were broken (explained by
740 ;;; APD sbcl-devel 2003-01-11).
741
742 ;;; WHN's original report
743 (defun debug-return-catch-break1 ()
744   (with-open-file (s "/tmp/foo"
745                      :direction :output
746                      :element-type (list
747                                     'signed-byte
748                                     (1+
749                                      (integer-length most-positive-fixnum))))
750     (read-byte s)
751     (read-byte s)
752     (read-byte s)
753     (read-byte s)))
754
755 ;;; APD's simplified test case
756 (defun debug-return-catch-break2 (x)
757   (declare (type (vector (unsigned-byte 8)) x))
758   (setq *y* (the (unsigned-byte 8) (aref x 4))))
759 \f
760 ;;; FUNCTION-LAMBDA-EXPRESSION should return something that's COMPILE
761 ;;; can understand.  Here's a simple test for that on a function
762 ;;; that's likely to return a hairier list than just a lambda:
763 (macrolet ((def (fn) `(progn
764                        (declaim (inline ,fn))
765                        (defun ,fn (x) (1+ x)))))
766   (def bug228))
767 (let ((x (function-lambda-expression #'bug228)))
768   (when x
769     (assert (= (funcall (compile nil x) 1) 2))))
770
771 ;;;
772 (defun bug192b (i)
773   (dotimes (j i)
774     (declare (type (mod 4) i))
775     (unless (< i 5)
776       (print j))))
777 (assert (raises-error? (bug192b 6) type-error))
778
779 (defun bug192c (x y)
780   (locally (declare (type fixnum x y))
781     (+ x (* 2 y))))
782 (assert (raises-error? (bug192c 1.1 2) type-error))
783
784 (assert (raises-error? (progn (the real (list 1)) t) type-error))
785
786 (defun bug236 (a f)
787   (declare (optimize (speed 2) (safety 0)))
788   (+ 1d0
789      (the double-float
790        (multiple-value-prog1
791            (svref a 0)
792          (unless f (return-from bug236 0))))))
793 (assert (eql (bug236 #(4) nil) 0))
794
795 ;;; Bug reported by reported by rif on c.l.l 2003-03-05
796 (defun test-type-of-special-1 (x)
797   (declare (special x)
798            (fixnum x)
799            (optimize (safety 3)))
800   (list x))
801 (defun test-type-of-special-2 (x)
802   (declare (special x)
803            (fixnum x)
804            (optimize (safety 3)))
805   (list x (setq x (/ x 2)) x))
806 (assert (raises-error? (test-type-of-special-1 3/2) type-error))
807 (assert (raises-error? (test-type-of-special-2 3) type-error))
808 (assert (equal (test-type-of-special-2 8) '(8 4 4)))
809
810 ;;; bug which existed in 0.8alpha.0.4 for several milliseconds before
811 ;;; APD fixed it in 0.8alpha.0.5
812 (defun frob8alpha04 (x y)
813   (+ x y))
814 (defun baz8alpha04 (this kids)
815   (flet ((n-i (&rest rest)
816            ;; Removing the #+NIL here makes the bug go away.
817            #+nil (format t "~&in N-I REST=~S~%" rest)
818            (apply #'frob8alpha04 this rest)))
819     (n-i kids)))
820 ;;; failed in 0.8alpha.0.4 with "The value 13 is not of type LIST."
821 (assert (= (baz8alpha04 12 13) 25))
822
823 ;;; evaluation order in structure slot writers
824 (defstruct sswo
825   a b)
826 (let* ((i 0)
827        (s (make-sswo :a (incf i) :b (incf i)))
828        (l (list s :v)))
829   (assert (= (sswo-a s) 1))
830   (assert (= (sswo-b s) 2))
831   (setf (sswo-a (pop l)) (pop l))
832   (assert (eq l nil))
833   (assert (eq (sswo-a s) :v)))
834
835 (defun bug249 (x)
836   (flet ((bar (y)
837            (declare (fixnum y))
838            (incf x)))
839     (list (bar x) (bar x) (bar x))))
840
841 (assert (raises-error? (bug249 1.0) type-error))
842
843 ;;; bug reported by ohler on #lisp 2003-07-10
844 (defun bug-ohler-2003-07-10 (a b)
845   (declare (optimize (speed 0) (safety 3) (space 0)
846                      (debug 1) (compilation-speed 0)))
847   (adjoin a b))
848
849 ;;; bug reported by Doug McNaught on sbcl-devel 2003-09-14:
850 ;;; COMPILE-FILE did not bind *READTABLE*
851 (let* ((source "bug-doug-mcnaught-20030914.lisp")
852        (fasl (compile-file-pathname source)))
853   (labels ((check ()
854              (assert (null (get-macro-character #\]))))
855            (full-check ()
856              (check)
857              (assert (typep *bug-doug-mcnaught-20030914*
858                             '(simple-array (unsigned-byte 4) (*))))
859              (assert (equalp *bug-doug-mcnaught-20030914* #(1 2 3)))
860              (makunbound '*bug-doug-mcnaught-20030914*)))
861     (compile-file source)
862     (check)
863     (load fasl)
864     (full-check)
865     (load source)
866     (full-check)
867     (delete-file fasl)))
868 \f
869 (defun expt-derive-type-bug (a b)
870   (unless (< a b)
871     (truncate (expt a b))))
872 (assert (equal (multiple-value-list (expt-derive-type-bug 1 1))
873                '(1 0)))
874
875 ;;; Problems with type checking in functions with EXPLICIT-CHECK
876 ;;; attribute (reported by Peter Graves)
877 (loop for (fun . args) in '((= a) (/= a)
878                             (< a) (<= a) (> a) (>= a))
879       do (assert (raises-error? (apply fun args) type-error)))
880
881 (defclass broken-input-stream (sb-gray:fundamental-input-stream) ())
882 (defmethod sb-gray:stream-read-char ((stream broken-input-stream))
883   (throw 'break :broken))
884 (assert (eql (block return
885                (handler-case
886                    (catch 'break
887                      (funcall (eval ''peek-char)
888                               1 (make-instance 'broken-input-stream))
889                      :test-broken)
890                  (type-error (c)
891                    (return-from return :good))))
892              :good))
893 \f
894 ;;;; MUFFLE-CONDITIONS test (corresponds to the test in the manual)
895 (defvar *compiler-note-count* 0)
896 #-alpha ; KLUDGE
897 (handler-bind ((sb-ext:compiler-note (lambda (c)
898                                        (declare (ignore c))
899                                        (incf *compiler-note-count*))))
900   (let ((fun
901          (compile nil
902                   '(lambda (x)
903                     (declare (optimize speed) (fixnum x))
904                     (declare (sb-ext:muffle-conditions sb-ext:compiler-note))
905                     (values (* x 5) ; no compiler note from this
906                      (locally
907                        (declare (sb-ext:unmuffle-conditions sb-ext:compiler-note))
908                        ;; this one gives a compiler note
909                        (* x -5)))))))
910     (assert (= *compiler-note-count* 1))
911     (assert (equal (multiple-value-list (funcall fun 1)) '(5 -5)))))
912 \f
913 ;;;; tests not in the problem domain, but of the consistency of the
914 ;;;; compiler machinery itself
915
916 (in-package "SB-C")
917
918 ;;; Hunt for wrong-looking things in fundamental compiler definitions,
919 ;;; and gripe about them.
920 ;;;
921 ;;; FIXME: It should be possible to (1) repair the things that this
922 ;;; code gripes about, and then (2) make the code signal errors
923 ;;; instead of just printing complaints to standard output, in order
924 ;;; to prevent the code from later falling back into disrepair.
925 (defun grovel-results (function)
926   (dolist (template (fun-info-templates (info :function :info function)))
927     (when (template-more-results-type template)
928       (format t "~&Template ~A has :MORE results, and translates ~A.~%"
929               (template-name template)
930               function)
931       (return nil))
932     (when (eq (template-result-types template) :conditional)
933       ;; dunno.
934       (return t))
935     (let ((types (template-result-types template))
936           (result-type (fun-type-returns (info :function :type function))))
937       (cond
938         ((values-type-p result-type)
939          (do ((ltypes (append (args-type-required result-type)
940                               (args-type-optional result-type))
941                       (rest ltypes))
942               (types types (rest types)))
943              ((null ltypes)
944               (unless (null types)
945                 (format t "~&More types than ltypes in ~A, translating ~A.~%"
946                         (template-name template)
947                         function)
948                 (return nil)))
949            (when (null types)
950              (unless (null ltypes)
951                (format t "~&More ltypes than types in ~A, translating ~A.~%"
952                        (template-name template)
953                        function)
954                (return nil)))))
955         ((eq result-type (specifier-type nil))
956          (unless (null types)
957            (format t "~&Template ~A returns values for function ~A with RESULT-TYPE NIL.~%"
958                    (template-name template)
959                    function)
960            (return nil)))
961         ((/= (length types) 1)
962          (format t "~&Template ~A isn't returning 1 value for ~A.~%"
963                  (template-name template)
964                  function)
965          (return nil))
966         (t t)))))
967 (defun identify-suspect-vops (&optional (env (first
968                                               (last *info-environment*))))
969   (do-info (env :class class :type type :name name :value value)
970     (when (and (eq class :function) (eq type :type))
971       ;; OK, so we have an entry in the INFO database. Now, if ...
972       (let* ((info (info :function :info name))
973              (templates (and info (fun-info-templates info))))
974         (when templates
975           ;; ... it has translators
976           (grovel-results name))))))
977 (identify-suspect-vops)
978 \f
979 ;;; success
980 (quit :unix-status 104)