Don't warn when #'(setf fun) is used in the presence of a setf-macro.
[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 (in-package :cl-user)
19
20 (when (eq sb-ext:*evaluator-mode* :interpret)
21   (sb-ext:exit :code 104))
22
23 (load "test-util.lisp")
24 (load "compiler-test-util.lisp")
25 (load "assertoid.lisp")
26 (use-package "TEST-UTIL")
27 (use-package "ASSERTOID")
28
29 ;;; Old CMU CL code assumed that the names of "keyword" arguments are
30 ;;; necessarily self-evaluating symbols, but ANSI Common Lisp allows
31 ;;; them to be any symbols, not necessarily keywords, and thus not
32 ;;; necessarily self-evaluating. Make sure that this works.
33 (defun newfangled-cons (&key ((left-thing x)) ((right-thing y)))
34   (cons x y))
35 (assert (equal (cons 1 2) (newfangled-cons 'right-thing 2 'left-thing 1)))
36
37 ;;; ANSI specifically says that duplicate keys are OK in lambda lists,
38 ;;; with no special exception for macro lambda lists. (As reported by
39 ;;; Pierre Mai on cmucl-imp 2001-03-30, Python didn't think so. The
40 ;;; rest of the thread had some entertainment value, at least for me
41 ;;; (WHN). The unbelievers were besmote and now even CMU CL will
42 ;;; conform to the spec in this regard. Who needs diplomacy when you
43 ;;; have brimstone?:-)
44 (defmacro ayup-duplicate-keys-are-ok-i-see-the-lite (&key k)
45   k)
46 (assert (equal (ayup-duplicate-keys-are-ok-i-see-the-lite :k 112) 112))
47 (assert (equal (ayup-duplicate-keys-are-ok-i-see-the-lite :k 'x :k 'y) 'x))
48
49 ;;; As reported by Alexey Dejneka (sbcl-devel 2002-01-30), in
50 ;;; sbcl-0.7.1 plus his patch (i.e. essentially sbcl-0.7.1.2), the
51 ;;; compiler barfed on this, blowing up in FIND-IN-PHYSENV looking for
52 ;;; the LAMBDA-VAR named NUM. That was fixed in sbcl-0.7.1.3.
53 (defun parse-num (index)
54   (let (num x)
55     (flet ((digs ()
56              (setq num index))
57            (z ()
58              (let ()
59                (setq x nil))))
60       (when (and (digs) (digs)) x))))
61
62 ;;; Bug 132: The compiler used to fail to compile INTEGER-valued CATCH
63 ;;; tags. This was fixed by Alexey Dejneka in sbcl-0.7.1.14. (INTEGER
64 ;;; catch tags are still a bad idea because EQ is used to compare
65 ;;; tags, and EQ comparison on INTEGERs is unportable; but now it's a
66 ;;; compiler warning instead of a failure to compile.)
67 (defun foo ()
68   (catch 0 (print 1331)))
69
70 ;;; Bug 150: In sbcl-0.7.1.15, compiling this code caused a failure in
71 ;;; SB-C::ADD-TEST-CONSTRAINTS:
72 ;;;    The value NIL is not of type SB-C::CONTINUATION.
73 ;;; This bug was fixed by APD in sbcl-0.7.1.30.
74 (defun bug150-test1 ()
75   (let* ()
76     (flet ((wufn () (glorp table1 4.9)))
77       (gleep *uustk* #'wufn "#1" (list)))
78     (if (eql (lo foomax 3.2))
79         (values)
80         (error "not ~S" '(eql (lo foomax 3.2))))
81     (values)))
82 ;;; A simpler test case for bug 150: The compiler died with the
83 ;;; same type error when trying to compile this.
84 (defun bug150-test2 ()
85   (let ()
86     (<)))
87
88 ;;; bug 147, fixed by APD 2002-04-28
89 ;;;
90 ;;; This test case used to crash the compiler, e.g. with
91 ;;;   failed AVER: "(= (LENGTH (BLOCK-SUCC CALL-BLOCK)) 1)"
92 (defun bug147 (string ind)
93   (flet ((digs ()
94            (let (old-index)
95              (if (and (< ind ind)
96                       (typep (char string ind) '(member #\1)))
97                  nil))))))
98
99 ;;; bug reported and fixed by Matthias Hoelzl sbcl-devel 2002-05-13
100 (defmacro foo-2002-05-13 () ''x)
101 (eval '(foo-2002-05-13))
102 (compile 'foo-2002-05-13)
103 (foo-2002-05-13) ; (The bug caused UNDEFINED-FUNCTION to be signalled here.)
104
105 ;;; floating point pain on the PPC.
106 ;;;
107 ;;; This test case used to fail to compile on most powerpcs prior to
108 ;;; sbcl-0.7.4.2x, as floating point traps were being incorrectly
109 ;;; masked.
110 (defun floating-point-pain (x)
111   (declare (single-float x))
112   (log x))
113
114 ;;; bug found and fixed ca. sbcl-0.7.5.12: The INTERSECTION-TYPE
115 ;;; here satisfies "is a subtype of ARRAY-TYPE", but can't be
116 ;;; accessed with ARRAY-TYPE accessors like
117 ;;; ARRAY-TYPE-SPECIALIZED-ELEMENT-TYPE, so ARRAY-related
118 ;;; DEFTRANSFORMs died with TYPE-ERROR at compile time when
119 ;;; compiling the DEFUN here.
120 (defun stupid-input-to-smart-array-deftransforms-0-7-5-12 (v)
121   (declare (type (and simple-vector fwd-type-ref) v))
122   (aref v 0))
123
124 ;;; Ca. sbcl-0.7.5.15 the compiler would fail an internal consistency
125 ;;; check on this code because it expected all calls to %INSTANCE-REF
126 ;;; to be transformed away, but its expectations were dashed by perverse
127 ;;; code containing app programmer errors like this.
128 (defstruct something-known-to-be-a-struct x y)
129 (multiple-value-bind (fun warnings-p failure-p)
130     (compile nil
131              '(lambda ()
132                 (labels ((a1 (a2 a3)
133                              (cond (t (a4 a2 a3))))
134                          (a4 (a2 a3 a5 a6)
135                              (declare (type (or simple-vector null) a5 a6))
136                              (something-known-to-be-a-struct-x a5))
137                          (a8 (a2 a3)
138                              (a9 #'a1 a10 a2 a3))
139                          (a11 (a2 a3)
140                               (cond ((and (funcall a12 a2)
141                                           (funcall a12 a3))
142                                      (funcall a13 a2 a3))
143                                     (t
144                                      (when a14
145                                      (let ((a15 (a1 a2 a3)))
146                                        ))
147                                      a16))))
148                   (values #'a17 #'a11))))
149   ;; Python sees the structure accessor on the known-not-to-be-a-struct
150   ;; A5 value and is very, very disappointed in you. (But it doesn't
151   ;; signal BUG any more.)
152   (assert failure-p))
153
154 ;;; On the SPARC, there was an erroneous definition of some VOPs used
155 ;;; to compile LOGANDs, which would lead to compilation of the
156 ;;; following function giving rise to a compile-time error (bug
157 ;;; spotted and fixed by Raymond Toy for CMUCL)
158 (defun logand-sparc-bogons (a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 a10)
159   (declare (type (unsigned-byte 32) a0)
160            (type (signed-byte 32) a1 a2 a3 a4 a5 a6 a7 a8 a9 a10)
161            ;; to ensure that the call is a candidate for
162            ;; transformation
163            (optimize (speed 3) (safety 0) (compilation-speed 0) (debug 0)))
164   (values
165    ;; the call that fails compilation
166    (logand a0 a10)
167    ;; a call to prevent the other arguments from being optimized away
168    (logand a1 a2 a3 a4 a5 a6 a7 a8 a9)))
169
170 ;;; bug 192, reported by Einar Floystad Dorum sbcl-devel 2002-08-14,
171 ;;; fixed in sbcl-0.7.6.26: Compiling this function in 0.7.6 caused
172 ;;; the compiler to try to constant-fold DATA-VECTOR-REF, which is OK,
173 ;;; except that there was no non-VOP definition of DATA-VECTOR-REF, so
174 ;;; it would fail.
175 (defun bug192 ()
176       (funcall
177        (LAMBDA (TEXT I L )
178          (LABELS ((G908 (I)
179                     (LET ((INDEX
180                            (OR
181                             (IF (= I L)
182                                 NIL
183                                 (LET ((S TEXT)
184                                       (E (ELT TEXT I)))
185                                   (DECLARE (IGNORABLE S E))
186                                   (WHEN (EQL #\a E)
187                                     (G909 (1+ I))))))))
188                       INDEX))
189                   (G909 (I)
190                     (OR
191                      (IF (= I L)
192                          NIL
193                          (LET ((S TEXT)
194                                (E (ELT TEXT I)))
195                            (DECLARE (IGNORABLE S E))
196                            (WHEN (EQL #\b E) (G910 (1+ I)))))))
197                   (G910 (I)
198                     (LET ((INDEX
199                            (OR
200                             (IF NIL
201                                 NIL
202                                 (LET ((S TEXT))
203                                   (DECLARE (IGNORABLE S))
204                                   (WHEN T I))))))
205                       INDEX)))
206            (G908 I))) "abcdefg" 0 (length "abcdefg")))
207
208 ;;; bugs #65, #70, and #109, closed by APD's patch sbcl-devel 2002-08-17
209 ;;;
210 ;;; This was "YA code deletion bug" whose symptom was the failure of
211 ;;; the assertion
212 ;;;   (EQ (C::LAMBDA-TAIL-SET C::CALLER)
213 ;;;       (C::LAMBDA-TAIL-SET (C::LAMBDA-HOME C::CALLEE)))
214 ;;; at compile time.
215 (defun bug65-1 (termx termy) ; from Carl Witty on submit bugs list, debian.org
216   (labels
217     ((alpha-equal-bound-term-lists (listx listy)
218        (or (and (null listx) (null listy))
219            (and listx listy
220                 (let ((bindings-x (bindings-of-bound-term (car listx)))
221                       (bindings-y (bindings-of-bound-term (car listy))))
222                   (if (and (null bindings-x) (null bindings-y))
223                       (alpha-equal-terms (term-of-bound-term (car listx))
224                                          (term-of-bound-term (car listy)))
225                       (and (= (length bindings-x) (length bindings-y))
226                            (prog2
227                                (enter-binding-pairs (bindings-of-bound-term (car listx))
228                                                     (bindings-of-bound-term (car listy)))
229                                (alpha-equal-terms (term-of-bound-term (car listx))
230                                                   (term-of-bound-term (car listy)))
231                              (exit-binding-pairs (bindings-of-bound-term (car listx))
232                                                  (bindings-of-bound-term (car listy)))))))
233                 (alpha-equal-bound-term-lists (cdr listx) (cdr listy)))))
234
235      (alpha-equal-terms (termx termy)
236        (if (and (variable-p termx)
237                 (variable-p termy))
238            (equal-bindings (id-of-variable-term termx)
239                            (id-of-variable-term termy))
240            (and (equal-operators-p (operator-of-term termx) (operator-of-term termy))
241                 (alpha-equal-bound-term-lists (bound-terms-of-term termx)
242                                               (bound-terms-of-term termy))))))
243
244     (or (eq termx termy)
245         (and termx termy
246              (with-variable-invocation (alpha-equal-terms termx termy))))))
247 (defun bug65-2 () ; from Bob Rogers cmucl-imp 1999-07-28
248   ;; Given an FSSP alignment file named by the argument . . .
249   (labels ((get-fssp-char ()
250              (get-fssp-char))
251            (read-fssp-char ()
252              (get-fssp-char)))
253     ;; Stub body, enough to tickle the bug.
254     (list (read-fssp-char)
255           (read-fssp-char))))
256 (defun bug70 ; from David Young cmucl-help 30 Nov 2000
257     (item sequence &key (test #'eql))
258   (labels ((find-item (obj seq test &optional (val nil))
259                       (let ((item (first seq)))
260                         (cond ((null seq)
261                                (values nil nil))
262                               ((funcall test obj item)
263                                (values val seq))
264                               (t
265                                (find-item obj
266                                           (rest seq)
267                                           test
268                                           (nconc val `(,item))))))))
269     (find-item item sequence test)))
270 (defun bug109 () ; originally from CMU CL bugs collection, reported as
271                  ; SBCL bug by MNA 2001-06-25
272   (labels
273       ((eff (&key trouble)
274             (eff)
275             ;; nil
276             ;; Uncomment and it works
277             ))
278     (eff)))
279
280 ;;; bug 192a, fixed by APD "more strict type checking" patch
281 ;;; (sbcl-devel 2002-08-07)
282 (defun bug192a (x)
283   (declare (optimize (speed 0) (safety 3)))
284   ;; Even with bug 192a, this declaration was checked as an assertion.
285   (declare (real x))
286   (+ x
287      (locally
288        ;; Because of bug 192a, this declaration was trusted without checking.
289        (declare (single-float x))
290        (sin x))))
291 (assert (null (ignore-errors (bug192a nil))))
292 (multiple-value-bind (result error) (ignore-errors (bug192a 100))
293   (assert (null result))
294   (assert (equal (type-error-expected-type error) 'single-float)))
295
296 ;;; bug 194, fixed in part by APD "more strict type checking" patch
297 ;;; (sbcl-devel 2002-08-07)
298 (progn
299   (multiple-value-bind (result error)
300       (ignore-errors (multiple-value-prog1 (progn (the real '(1 2 3)))))
301     (assert (null result))
302     (assert (typep error 'type-error)))
303   (multiple-value-bind (result error)
304       (ignore-errors (the real '(1 2 3)))
305     (assert (null result))
306     (assert (typep error 'type-error))))
307
308 (defun bug194d ()
309   (null (ignore-errors
310           (let ((arg1 1)
311                 (arg2 (identity (the real #(1 2 3)))))
312             (if (< arg1 arg2) arg1 arg2)))))
313 (assert (eq (bug194d) t))
314
315 \f
316 ;;; BUG 48a. and b. (symbol-macrolet handling), fixed by Eric Marsden
317 ;;; and Raymond Toy for CMUCL, fix ported for sbcl-0.7.6.18.
318 (multiple-value-bind (function warnings-p failure-p)
319     (compile nil '(lambda ()
320                    ;; not interested in the package lock violation here
321                    (declare (sb-ext:disable-package-locks t))
322                    (symbol-macrolet ((t nil)) t)))
323   (assert failure-p)
324   (assert (raises-error? (funcall function) program-error)))
325 (multiple-value-bind (function warnings-p failure-p)
326     (compile nil
327              '(lambda ()
328                ;; not interested in the package lock violation here
329                (declare (sb-ext:disable-package-locks *standard-input*))
330                 (symbol-macrolet ((*standard-input* nil))
331                   *standard-input*)))
332   (assert failure-p)
333   (assert (raises-error? (funcall function) program-error)))
334 (multiple-value-bind (function warnings-p failure-p)
335     (compile nil '(lambda () (symbol-macrolet ((s nil)) (declare (special s)) s)))
336   (assert failure-p)
337   (assert (raises-error? (funcall function) program-error)))
338 \f
339 ;;; bug 120a: Turned out to be constraining code looking like (if foo
340 ;;; <X> <X>) where <X> was optimized by the compiler to be the exact
341 ;;; same block in both cases, but not turned into (PROGN FOO <X>).
342 ;;; Fixed by APD in sbcl-0.7.7.2, who provided this test:
343 (declaim (inline dont-constrain-if-too-much))
344 (defun dont-constrain-if-too-much (frame up-frame)
345   (declare (optimize (speed 3) (safety 1) (debug 1)))
346   (if (or (not frame) t)
347       frame
348       "bar"))
349 (defun dont-constrain-if-too-much-aux (x y)
350   (declare (optimize (speed 3) (safety 1) (debug 1)))
351   (if x t (if y t (dont-constrain-if-too-much x y))))
352
353 (assert (null (dont-constrain-if-too-much-aux nil nil)))
354
355 ;;; TYPE-ERROR confusion ca. sbcl-0.7.7.24, reported and fixed by
356 ;;; APD sbcl-devel 2002-09-14
357 (defun exercise-0-7-7-24-bug (x)
358   (declare (integer x))
359   (let (y)
360     (setf y (the single-float (if (> x 0) x 3f0)))
361     (list y y)))
362 (multiple-value-bind (v e) (ignore-errors (exercise-0-7-7-24-bug 4))
363   (assert (null v))
364   (assert (typep e 'type-error)))
365 (assert (equal (exercise-0-7-7-24-bug -4) '(3f0 3f0)))
366
367 ;;; non-intersecting type declarations were DWIMing in a confusing
368 ;;; fashion until sbcl-0.7.7.28, when APD reported and fixed the
369 ;;; problem.
370 (defun non-intersecting-the (x)
371   (let (y)
372     (setf y (the single-float (the integer x)))
373     (list y y)))
374
375 (raises-error? (foo 3) type-error)
376 (raises-error? (foo 3f0) type-error)
377
378 ;;; until 0.8.2 SBCL did not check THEs in arguments
379 (defun the-in-arguments-aux (x)
380   x)
381 (defun the-in-arguments-1 (x)
382   (list x (the-in-arguments-aux (the (single-float 0s0) x))))
383 (defun the-in-arguments-2 (x)
384   (list x (the-in-arguments-aux (the single-float x))))
385
386 (multiple-value-bind (result condition)
387     (ignore-errors (the-in-arguments-1 1))
388   (assert (null result))
389   (assert (typep condition 'type-error)))
390 (multiple-value-bind (result condition)
391     (ignore-errors (the-in-arguments-2 1))
392   (assert (null result))
393   (assert (typep condition 'type-error)))
394
395 ;;; bug 153: a hole in a structure slot type checking
396 (declaim (optimize safety))
397 (defstruct foo153
398   (bla 0 :type fixnum))
399 (defun bug153-1 ()
400   (let ((foo (make-foo153)))
401     (setf (foo153-bla foo) '(1 . 1))
402     (format t "Is ~a of type ~a a cons? => ~a~%"
403             (foo153-bla foo)
404             (type-of (foo153-bla foo))
405             (consp (foo153-bla foo)))))
406 (defun bug153-2 (x)
407   (let ((foo (make-foo153)))
408     (setf (foo153-bla foo) x)
409     (format t "Is ~a of type ~a a cons? => ~a~%"
410             (foo153-bla foo)
411             (type-of (foo153-bla foo))
412             (consp (foo153-bla foo)))))
413
414 (multiple-value-bind (result condition)
415     (ignore-errors (bug153-1))
416   (declare (ignore result))
417   (assert (typep condition 'type-error)))
418 (multiple-value-bind (result condition)
419     (ignore-errors (bug153-2 '(1 . 1)))
420   (declare (ignore result))
421   (assert (typep condition 'type-error)))
422
423 ;;;; bug 110: the compiler flushed the argument type test and the default
424 ;;;; case in the cond.
425 ;
426 ;(locally (declare (optimize (safety 3) (speed 2)))
427 ;  (defun bug110 (x)
428 ;    (declare (optimize (safety 2) (speed 3)))
429 ;    (declare (type (or string stream) x))
430 ;    (cond ((typep x 'string) 'string)
431 ;          ((typep x 'stream) 'stream)
432 ;          (t
433 ;           'none))))
434 ;
435 ;(multiple-value-bind (result condition)
436 ;    (ignore-errors (bug110 0))
437 ;  (declare (ignore result))
438 ;  (assert (typep condition 'type-error)))
439
440 ;;; bug 202: the compiler failed to compile a function, which derived
441 ;;; type contradicted declared.
442 (declaim (ftype (function () null) bug202))
443 (defun bug202 ()
444   t)
445
446 ;;; bugs 178, 199: compiler failed to compile a call of a function
447 ;;; with a hairy type
448 (defun bug178 (x)
449       (funcall (the function (the standard-object x))))
450
451 (defun bug199-aux (f)
452   (eq nil (funcall f)))
453
454 (defun bug199 (f x)
455   (declare (type (and function (satisfies bug199-aux)) f))
456   (funcall f x))
457
458 ;;; check non-toplevel DEFMACRO
459 (defvar *defmacro-test-status* nil)
460
461 (defun defmacro-test ()
462   (fmakunbound 'defmacro-test-aux)
463   (let* ((src "defmacro-test.lisp")
464          (obj (compile-file-pathname src)))
465     (unwind-protect
466          (progn
467            (compile-file src)
468            (assert (equal *defmacro-test-status* '(function a)))
469            (setq *defmacro-test-status* nil)
470            (load obj)
471            (assert (equal *defmacro-test-status* nil))
472            (macroexpand '(defmacro-test-aux 'a))
473            (assert (equal *defmacro-test-status* '(macro 'a z-value)))
474            (eval '(defmacro-test-aux 'a))
475            (assert (equal *defmacro-test-status* '(expanded 'a z-value))))
476       (ignore-errors (delete-file obj)))))
477
478 (defmacro-test)
479
480 ;;; bug 204: EVAL-WHEN inside a local environment
481 (defvar *bug204-test-status*)
482
483 (defun bug204-test ()
484   (let* ((src "bug204-test.lisp")
485          (obj (compile-file-pathname src)))
486     (unwind-protect
487          (progn
488            (setq *bug204-test-status* nil)
489            (compile-file src)
490            (assert (equal *bug204-test-status* '((:expanded :load-toplevel)
491                                                  (:called :compile-toplevel)
492                                                  (:expanded :compile-toplevel))))
493            (setq *bug204-test-status* nil)
494            (load obj)
495            (assert (equal *bug204-test-status* '((:called :load-toplevel)))))
496       (ignore-errors (delete-file obj)))))
497
498 (bug204-test)
499
500 ;;; toplevel SYMBOL-MACROLET
501 (defvar *symbol-macrolet-test-status*)
502
503 (defun symbol-macrolet-test ()
504   (let* ((src "symbol-macrolet-test.lisp")
505          (obj (compile-file-pathname src)))
506     (unwind-protect
507          (progn
508            (setq *symbol-macrolet-test-status* nil)
509            (compile-file src)
510            (assert (equal *symbol-macrolet-test-status*
511                           '(2 1)))
512            (setq *symbol-macrolet-test-status* nil)
513            (load obj)
514            (assert (equal *symbol-macrolet-test-status* '(2))))
515       (ignore-errors (delete-file obj)))))
516
517 (symbol-macrolet-test)
518
519 ;;; On the x86, this code failed to compile until sbcl-0.7.8.37:
520 (defun x86-assembler-failure (x)
521   (declare (optimize (speed 3) (safety 0)))
522   (eq (setf (car x) 'a) nil))
523
524 ;;; bug 211: :ALLOW-OTHER-KEYS
525 (defun bug211d (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
526   (list x x-p y y-p))
527
528 (assert (equal (bug211d) '(:x nil :y nil)))
529 (assert (equal (bug211d :x 1) '(1 t :y nil)))
530 (assert (raises-error? (bug211d :y 2) program-error))
531 (assert (equal (bug211d :y 2 :allow-other-keys t :allow-other-keys nil)
532                '(:x nil t t)))
533 (assert (raises-error? (bug211d :y 2 :allow-other-keys nil) program-error))
534
535 (let ((failure-p
536        (nth-value
537         3
538         (compile 'bug211b
539                  '(lambda ()
540                    (flet ((test (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
541                             (list x x-p y y-p)))
542                      (assert (equal (test) '(:x nil :y nil)))
543                      (assert (equal (test :x 1) '(1 t :y nil)))
544                      (assert (equal (test :y 2 :allow-other-keys 11 :allow-other-keys nil)
545                                     '(:x nil 11 t)))))))))
546   (assert (not failure-p))
547   (bug211b))
548
549 (let ((failure-p
550        (nth-value
551         3
552         (compile 'bug211c
553                  '(lambda ()
554                    (flet ((test (&key (x :x x-p))
555                             (list x x-p)))
556                      (assert (equal (test) '(:x nil)))
557                      (assert (equal (test :x 1) '(1 t)))
558                      (assert (equal (test :y 2 :allow-other-keys 11 :allow-other-keys nil)
559                                     '(:x nil)))))))))
560   (assert (not failure-p))
561   (bug211c))
562
563 (dolist (form '((test :y 2)
564                 (test :y 2 :allow-other-keys nil)
565                 (test :y 2 :allow-other-keys nil :allow-other-keys t)))
566   (multiple-value-bind (result warnings-p failure-p)
567       (compile nil `(lambda ()
568                      (flet ((test (&key (x :x x-p) ((:allow-other-keys y) :y y-p))
569                               (list x x-p y y-p)))
570                        ,form)))
571     (assert failure-p)
572     (assert (raises-error? (funcall result) program-error))))
573
574 ;;; bug 217: wrong type inference
575 (defun bug217-1 (x s)
576   (let ((f (etypecase x
577              (character #'write-char)
578              (integer #'write-byte))))
579     (funcall f x s)
580     (etypecase x
581       (character (write-char x s))
582       (integer (write-byte x s)))))
583 (bug217-1 #\1 *standard-output*)
584
585
586 ;;; bug 221: tried and died on CSUBTYPEP (not VALUES-SUBTYPEP) of the
587 ;;; function return types when inferring the type of the IF expression
588 (declaim (ftype (function (fixnum) (values package boolean)) bug221f1))
589 (declaim (ftype (function (t) (values package boolean)) bug221f2))
590 (defun bug221 (b x)
591   (funcall (if b #'bug221f1 #'bug221f2) x))
592 \f
593 ;;; bug 172: macro lambda lists were too permissive until 0.7.9.28
594 ;;; (fix provided by Matthew Danish) on sbcl-devel
595 (assert (null (ignore-errors
596                 (defmacro bug172 (&rest rest foo) `(list ,rest ,foo)))))
597
598 ;;; embedded THEs
599 (defun check-embedded-thes (policy1 policy2 x y)
600   (handler-case
601       (funcall (compile nil
602                         `(lambda (f)
603                            (declare (optimize (speed 2) (safety ,policy1)))
604                            (multiple-value-list
605                             (the (values (integer 2 3) t &optional)
606                               (locally (declare (optimize (safety ,policy2)))
607                                 (the (values t (single-float 2f0 3f0) &optional)
608                                   (funcall f)))))))
609                (lambda () (values x y)))
610     (type-error (error)
611       error)))
612
613 (assert (equal (check-embedded-thes 0 0  :a :b) '(:a :b)))
614
615 (assert (equal (check-embedded-thes 0 3  :a 2.5f0) '(:a 2.5f0)))
616 (assert (typep (check-embedded-thes 0 3  2 3.5f0) 'type-error))
617
618 (assert (equal (check-embedded-thes 0 1  :a 3.5f0) '(:a 3.5f0)))
619 (assert (typep (check-embedded-thes 0 1  2 2.5d0) 'type-error))
620
621 (assert (equal (check-embedded-thes 3 0  2 :a) '(2 :a)))
622 (assert (typep (check-embedded-thes 3 0  4 2.5f0) 'type-error))
623
624 (assert (equal (check-embedded-thes 1 0  3 :b) '(3 :b)))
625 (assert (typep (check-embedded-thes 1 0  1.0 2.5f0) 'type-error))
626
627
628 (assert (equal (check-embedded-thes 3 3  2 2.5f0) '(2 2.5f0)))
629 (assert (typep (check-embedded-thes 3 3  0 2.5f0) 'type-error))
630 (assert (typep (check-embedded-thes 3 3  2 3.5f0) 'type-error))
631 \f
632 ;;; INLINE inside MACROLET
633 (declaim (inline to-be-inlined))
634 (macrolet ((def (x) `(defun ,x (y) (+ y 1))))
635   (def to-be-inlined))
636 (defun call-inlined (z)
637   (to-be-inlined z))
638 (assert (= (call-inlined 3) 4))
639 (macrolet ((frob (x) `(+ ,x 3)))
640   (defun to-be-inlined (y)
641     (frob y)))
642 (assert (= (call-inlined 3)
643            ;; we should have inlined the previous definition, so the
644            ;; new one won't show up yet.
645            4))
646 (defun call-inlined (z)
647   (to-be-inlined z))
648 (assert (= (call-inlined 3) 6))
649 (defun to-be-inlined (y)
650   (+ y 5))
651 (assert (= (call-inlined 3) 6))
652 \f
653 ;;; DEFINE-COMPILER-MACRO to work as expected, not via weird magical
654 ;;; IR1 pseudo-:COMPILE-TOPLEVEL handling
655 (defvar *bug219-a-expanded-p* nil)
656 (defun bug219-a (x)
657   (+ x 1))
658 (define-compiler-macro bug219-a (&whole form y)
659   (setf *bug219-a-expanded-p* t)
660   (if (constantp y)
661       (+ (eval y) 2)
662       form))
663 (defun bug219-a-aux ()
664   (bug219-a 2))
665 (assert (= (bug219-a-aux)
666            (if *bug219-a-expanded-p* 4 3)))
667 (defvar *bug219-a-temp* 3)
668 (assert (= (bug219-a *bug219-a-temp*) 4))
669
670 (defvar *bug219-b-expanded-p* nil)
671 (defun bug219-b-aux1 (x)
672   (when x
673     (define-compiler-macro bug219-b (y)
674       (setf *bug219-b-expanded-p* t)
675       `(+ ,y 2))))
676 (defun bug219-b-aux2 (z)
677   (bug219-b z))
678 (assert (not *bug219-b-expanded-p*))
679 (assert (raises-error? (bug219-b-aux2 1) undefined-function))
680 (bug219-b-aux1 t)
681 (defun bug219-b-aux2 (z)
682   (bug219-b z))
683 (defun bug219-b (x)
684   x)
685 (assert (= (bug219-b-aux2 1)
686            (if *bug219-b-expanded-p* 3 1)))
687
688 ;;; bug 224: failure in unreachable code deletion
689 (defmacro do-optimizations (&body body)
690   `(dotimes (.speed. 4)
691      (dotimes (.space. 4)
692        (dotimes (.debug. 4)
693          (dotimes (.compilation-speed. 4)
694            (proclaim `(optimize (speed , .speed.) (space , .space.)
695                                 (debug , .debug.)
696                                 (compilation-speed , .compilation-speed.)))
697            ,@body)))))
698
699 (do-optimizations
700     (compile nil
701              (read-from-string
702               "(lambda () (#:localy (declare (optimize (safety 3)))
703                                     (ignore-errors (progn (values-list (car (list '(1 . 2)))) t))))")))
704
705 (do-optimizations
706     (compile nil '(lambda ()
707                    (labels ((ext ()
708                               (tagbody
709                                  (labels ((i1 () (list (i2) (i2)))
710                                           (i2 () (list (int) (i1)))
711                                           (int () (go :exit)))
712                                    (list (i1) (i1) (i1)))
713                                :exit (return-from ext)
714                                  )))
715                      (list (error "nih") (ext) (ext))))))
716
717 (do-optimizations
718   (compile nil '(lambda (x) (let ((y (error ""))) (list x y)))))
719
720 ;;; bug 223: invalid moving of global function name referencing
721 (defun bug223-int (n)
722   `(int ,n))
723
724 (defun bug223-wrap ()
725   (let ((old #'bug223-int))
726     (setf (fdefinition 'bug223-int)
727           (lambda (n)
728             (assert (> n 0))
729             `(ext ,@(funcall old (1- n)))))))
730 (compile 'bug223-wrap)
731
732 (assert (equal (bug223-int 4) '(int 4)))
733 (bug223-wrap)
734 (assert (equal (bug223-int 4) '(ext int 3)))
735 (bug223-wrap)
736 (assert (equal (bug223-int 4) '(ext ext int 2)))
737 \f
738 ;;; COERCE got its own DEFOPTIMIZER which has to reimplement most of
739 ;;; SPECIFIER-TYPE-NTH-ARG.  For a while, an illegal type would throw
740 ;;; you into the debugger on compilation.
741 (defun coerce-defopt1 (x)
742   ;; illegal, but should be compilable.
743   (coerce x '(values t)))
744 (defun coerce-defopt2 (x)
745   ;; illegal, but should be compilable.
746   (coerce x '(values t &optional)))
747 (assert (null (ignore-errors (coerce-defopt1 3))))
748 (assert (null (ignore-errors (coerce-defopt2 3))))
749 \f
750 ;;; Oops.  In part of the (CATCH ..) implementation of DEBUG-RETURN,
751 ;;; it was possible to confuse the type deriver of the compiler
752 ;;; sufficiently that compiler invariants were broken (explained by
753 ;;; APD sbcl-devel 2003-01-11).
754
755 ;;; WHN's original report
756 (defun debug-return-catch-break1 ()
757   (with-open-file (s "/tmp/foo"
758                      :direction :output
759                      :element-type (list
760                                     'signed-byte
761                                     (1+
762                                      (integer-length most-positive-fixnum))))
763     (read-byte s)
764     (read-byte s)
765     (read-byte s)
766     (read-byte s)))
767
768 ;;; APD's simplified test case
769 (defun debug-return-catch-break2 (x)
770   (declare (type (vector (unsigned-byte 8)) x))
771   (setq *y* (the (unsigned-byte 8) (aref x 4))))
772 \f
773 ;;; FUNCTION-LAMBDA-EXPRESSION should return something that's COMPILE
774 ;;; can understand.  Here's a simple test for that on a function
775 ;;; that's likely to return a hairier list than just a lambda:
776 (macrolet ((def (fn) `(progn
777                        (declaim (inline ,fn))
778                        (defun ,fn (x) (1+ x)))))
779   (def bug228))
780 (let ((x (function-lambda-expression #'bug228)))
781   (when x
782     (assert (= (funcall (compile nil x) 1) 2))))
783
784 ;;;
785 (defun bug192b (i)
786   (dotimes (j i)
787     (declare (type (mod 4) i))
788     (unless (< i 5)
789       (print j))))
790 (assert (raises-error? (bug192b 6) type-error))
791
792 (defun bug192c (x y)
793   (locally (declare (type fixnum x y))
794     (+ x (* 2 y))))
795 (assert (raises-error? (bug192c 1.1 2) type-error))
796
797 (assert (raises-error? (progn (the real (list 1)) t) type-error))
798
799 (defun bug236 (a f)
800   (declare (optimize (speed 2) (safety 0)))
801   (+ 1d0
802      (the double-float
803        (multiple-value-prog1
804            (svref a 0)
805          (unless f (return-from bug236 0))))))
806 (assert (eql (bug236 #(4) nil) 0))
807
808 ;;; Bug reported by reported by rif on c.l.l 2003-03-05
809 (defun test-type-of-special-1 (x)
810   (declare (special x)
811            (fixnum x)
812            (optimize (safety 3)))
813   (list x))
814 (defun test-type-of-special-2 (x)
815   (declare (special x)
816            (fixnum x)
817            (optimize (safety 3)))
818   (list x (setq x (/ x 2)) x))
819 (assert (raises-error? (test-type-of-special-1 3/2) type-error))
820 (assert (raises-error? (test-type-of-special-2 3) type-error))
821 (assert (equal (test-type-of-special-2 8) '(8 4 4)))
822
823 ;;; bug which existed in 0.8alpha.0.4 for several milliseconds before
824 ;;; APD fixed it in 0.8alpha.0.5
825 (defun frob8alpha04 (x y)
826   (+ x y))
827 (defun baz8alpha04 (this kids)
828   (flet ((n-i (&rest rest)
829            ;; Removing the #+NIL here makes the bug go away.
830            #+nil (format t "~&in N-I REST=~S~%" rest)
831            (apply #'frob8alpha04 this rest)))
832     (n-i kids)))
833 ;;; failed in 0.8alpha.0.4 with "The value 13 is not of type LIST."
834 (assert (= (baz8alpha04 12 13) 25))
835
836 ;;; evaluation order in structure slot writers
837 (defstruct sswo
838   a b)
839 (let* ((i 0)
840        (s (make-sswo :a (incf i) :b (incf i)))
841        (l (list s :v)))
842   (assert (= (sswo-a s) 1))
843   (assert (= (sswo-b s) 2))
844   (setf (sswo-a (pop l)) (pop l))
845   (assert (eq l nil))
846   (assert (eq (sswo-a s) :v)))
847
848 (defun bug249 (x)
849   (flet ((bar (y)
850            (declare (fixnum y))
851            (incf x)))
852     (list (bar x) (bar x) (bar x))))
853
854 (assert (raises-error? (bug249 1.0) type-error))
855
856 ;;; bug reported by ohler on #lisp 2003-07-10
857 (defun bug-ohler-2003-07-10 (a b)
858   (declare (optimize (speed 0) (safety 3) (space 0)
859                      (debug 1) (compilation-speed 0)))
860   (adjoin a b))
861
862 ;;; bug reported by Doug McNaught on sbcl-devel 2003-09-14:
863 ;;; COMPILE-FILE did not bind *READTABLE*
864 (let* ((source "bug-doug-mcnaught-20030914.lisp")
865        (fasl (compile-file-pathname source)))
866   (labels ((check ()
867              (assert (null (get-macro-character #\]))))
868            (full-check ()
869              (check)
870              (assert (typep *bug-doug-mcnaught-20030914*
871                             '(simple-array (unsigned-byte 4) (*))))
872              (assert (equalp *bug-doug-mcnaught-20030914* #(1 2 3)))
873              (makunbound '*bug-doug-mcnaught-20030914*)))
874     (compile-file source)
875     (check)
876     (load fasl)
877     (full-check)
878     (load source)
879     (full-check)
880     (delete-file fasl)))
881 \f
882 (defun expt-derive-type-bug (a b)
883   (unless (< a b)
884     (truncate (expt a b))))
885 (assert (equal (multiple-value-list (expt-derive-type-bug 1 1))
886                '(1 0)))
887
888 ;;; Problems with type checking in functions with EXPLICIT-CHECK
889 ;;; attribute (reported by Peter Graves)
890 (loop for (fun . args) in '((= a) (/= a)
891                             (< a) (<= a) (> a) (>= a))
892       do (assert (raises-error? (apply fun args) type-error)))
893
894 (defclass broken-input-stream (sb-gray:fundamental-input-stream) ())
895 (defmethod sb-gray:stream-read-char ((stream broken-input-stream))
896   (throw 'break :broken))
897 (assert (eql (block return
898                (handler-case
899                    (catch 'break
900                      (funcall (eval ''peek-char)
901                               1 (make-instance 'broken-input-stream))
902                      :test-broken)
903                  (type-error (c)
904                    (return-from return :good))))
905              :good))
906 \f
907 ;;;; MUFFLE-CONDITIONS test (corresponds to the test in the manual)
908 (defvar *compiler-note-count* 0)
909 #-(or alpha x86-64) ; FIXME: make a better test!
910 (handler-bind ((sb-ext:compiler-note (lambda (c)
911                                        (declare (ignore c))
912                                        (incf *compiler-note-count*))))
913   (let ((fun
914          (compile nil
915                   '(lambda (x)
916                     (declare (optimize speed) (fixnum x))
917                     (declare (sb-ext:muffle-conditions sb-ext:compiler-note))
918                     (values (* x 5) ; no compiler note from this
919                      (locally
920                        (declare (sb-ext:unmuffle-conditions sb-ext:compiler-note))
921                        ;; this one gives a compiler note
922                        (* x -5)))))))
923     (assert (= *compiler-note-count* 1))
924     (assert (equal (multiple-value-list (funcall fun 1)) '(5 -5)))))
925 \f
926 (handler-case
927     (eval '(flet ((%f (&key) nil)) (%f nil nil)))
928   (error (c) :good)
929   (:no-error (val) (error "no error: ~S" val)))
930 (handler-case
931     (eval '(labels ((%f (&key x) x)) (%f nil nil)))
932   (error (c) :good)
933   (:no-error (val) (error "no error: ~S" val)))
934
935 ;;; PROGV must not bind constants, or violate declared types -- ditto for SET.
936 (assert (raises-error? (set pi 3)))
937 (assert (raises-error? (progv '(pi s) '(3 pi) (symbol-value x))))
938 (declaim (cons *special-cons*))
939 (assert (raises-error? (set '*special-cons* "nope") type-error))
940 (assert (raises-error? (progv '(*special-cons*) '("no hope") (car *special-cons*)) type-error))
941
942 ;;; No bogus warnings for calls to functions with complex lambda-lists.
943 (defun complex-function-signature (&optional x &rest y &key z1 z2)
944   (cons x y))
945 (with-test (:name :complex-call-doesnt-warn)
946   (handler-bind ((warning #'error))
947     (compile nil '(lambda (x) (complex-function-signature x :z1 1 :z2 2)))))
948
949 (with-test (:name :non-required-args-update-info)
950   (let ((name (gensym "NON-REQUIRE-ARGS-TEST"))
951         (*evaluator-mode* :compile))
952     (eval `(defun ,name (x) x))
953     (assert (equal '(function (t) (values t &optional))
954                    (sb-kernel:type-specifier (sb-int:info :function :type name))))
955     (eval `(defun ,name (x &optional y) (or x y)))
956     (assert (equal '(function (t &optional t) (values t &optional))
957                    (sb-kernel:type-specifier (sb-int:info :function :type name))))))
958
959 ;;;; inline & maybe inline nested calls
960
961 (defun quux-marker (x) x)
962 (declaim (inline foo-inline))
963 (defun foo-inline (x) (quux-marker x))
964 (declaim (maybe-inline foo-maybe-inline))
965 (defun foo-maybe-inline (x) (quux-marker x))
966
967 (with-test (:name :nested-inline-calls)
968   (let ((fun (compile nil `(lambda (x)
969                              (foo-inline (foo-inline (foo-inline x)))))))
970     (assert (= 0 (ctu:count-full-calls "FOO-INLINE" fun)))
971     (assert (= 3 (ctu:count-full-calls "QUUX-MARKER" fun)))))
972
973 (with-test (:name :nested-maybe-inline-calls)
974   (let ((fun (compile nil `(lambda (x)
975                              (declare (optimize (space 0)))
976                              (foo-maybe-inline (foo-maybe-inline (foo-maybe-inline x)))))))
977     (assert (= 0 (ctu:count-full-calls "FOO-MAYBE-INLINE" fun)))
978     (assert (= 1 (ctu:count-full-calls "QUUX-MARKER" fun)))))
979
980 (with-test (:name :inline-calls)
981   (let ((fun (compile nil `(lambda (x)
982                              (list (foo-inline x)
983                                    (foo-inline x)
984                                    (foo-inline x))))))
985     (assert (= 0 (ctu:count-full-calls "FOO-INLINE" fun)))
986     (assert (= 3 (ctu:count-full-calls "QUUX-MARKER" fun)))))
987
988 (with-test (:name :maybe-inline-calls)
989   (let ((fun (compile nil `(lambda (x)
990                              (declare (optimize (space 0)))
991                              (list (foo-maybe-inline x)
992                                    (foo-maybe-inline x)
993                                    (foo-maybe-inline x))))))
994     (assert (= 0 (ctu:count-full-calls "FOO-MAYBE-INLINE" fun)))
995     (assert (= 1 (ctu:count-full-calls "QUUX-MARKER" fun)))))
996
997 (with-test (:name :bug-405)
998   ;; These used to break with a TYPE-ERROR
999   ;;     The value NIL is not of type SB-C::PHYSENV.
1000   ;; in MERGE-LETS.
1001   (ctu:file-compile
1002    '((LET (outer-let-var)
1003        (lambda ()
1004          (print outer-let-var)
1005          (MULTIPLE-VALUE-CALL 'some-function
1006            (MULTIPLE-VALUE-CALL (LAMBDA (a) 'foo)
1007              1))))))
1008   (ctu:file-compile
1009    '((declaim (optimize (debug 3)))
1010      (defstruct bug-405-foo bar)
1011      (let ()
1012        (flet ((i (x) (frob x (bug-405-foo-bar foo))))
1013          (i :five))))))
1014
1015 ;;; bug 235a
1016 (declaim (ftype (function (cons) number) bug-235a-aux))
1017 (declaim (inline bug-235a-aux))
1018 (defun bug-235a-aux (c)
1019   (the number (car c)))
1020 (with-test (:name :bug-235a)
1021   (let ((fun (compile nil
1022                       `(lambda (x y)
1023                          (values (locally (declare (optimize (safety 0)))
1024                                    (bug-235a-aux x))
1025                                  (locally (declare (optimize (safety 3)))
1026                                    (bug-235a-aux y)))))))
1027     (assert
1028      (eq :error
1029          (handler-case
1030              (funcall fun '(:one) '(:two))
1031            (type-error (e)
1032              (assert (eq :two (type-error-datum e)))
1033              (assert (eq 'number (type-error-expected-type e)))
1034              :error))))))
1035
1036 (with-test (:name :compiled-debug-funs-leak)
1037   (sb-ext:gc :full t)
1038   (let ((usage-before (sb-kernel::dynamic-usage)))
1039     (dotimes (x 10000)
1040       (let ((f (compile nil '(lambda ()
1041                                (error "X")))))
1042         (handler-case
1043             (funcall f)
1044           (error () nil))))
1045     (sb-ext:gc :full t)
1046     (let ((usage-after (sb-kernel::dynamic-usage)))
1047       (when (< (+ usage-before 2000000) usage-after)
1048         (error "Leak")))))
1049
1050 ;;; PROGV compilation and type checking when the declared type
1051 ;;; includes a FUNCTION subtype.
1052 (declaim (type (or (function (t) (values boolean &optional)) string)
1053                *hairy-progv-var*))
1054 (defvar *hairy-progv-var* #'null)
1055 (with-test (:name :hairy-progv-type-checking)
1056   (assert (eq :error
1057               (handler-case
1058                   (progv '(*hairy-progv-var*) (list (eval 42))
1059                     *hairy-progv-var*)
1060                 (type-error () :error))))
1061   (assert (equal "GOOD!"
1062                  (progv '(*hairy-progv-var*) (list (eval "GOOD!"))
1063                     *hairy-progv-var*))))
1064
1065 (with-test (:name :fill-complex-single-float)
1066   (assert (every (lambda (x) (eql x #c(-1.0 -2.0)))
1067                  (funcall
1068                   (lambda ()
1069                     (make-array 2
1070                                 :element-type '(complex single-float)
1071                                 :initial-element #c(-1.0 -2.0)))))))
1072
1073 (with-test (:name :make-array-symbol-as-initial-element)
1074   (assert (every (lambda (x) (eq x 'a))
1075                  (funcall
1076                   (compile nil
1077                            `(lambda ()
1078                               (make-array 12 :initial-element 'a)))))))
1079
1080 ;;; This non-minimal test-case catches a nasty error when loading
1081 ;;; inline constants.
1082 (deftype matrix ()
1083   `(simple-array single-float (16)))
1084 (declaim (ftype (sb-int:sfunction (single-float single-float single-float single-float
1085                                    single-float single-float single-float single-float
1086                                    single-float single-float single-float single-float
1087                                    single-float single-float single-float single-float)
1088                                   matrix)
1089                 matrix)
1090          (inline matrix))
1091 (defun matrix (m11 m12 m13 m14
1092                m21 m22 m23 m24
1093                m31 m32 m33 m34
1094                m41 m42 m43 m44)
1095   (make-array 16
1096               :element-type 'single-float
1097               :initial-contents (list m11 m21 m31 m41
1098                                       m12 m22 m32 m42
1099                                       m13 m23 m33 m43
1100                                       m14 m24 m34 m44)))
1101 (declaim (ftype (sb-int:sfunction ((simple-array single-float (3)) single-float) matrix)
1102                 rotate-around))
1103 (defun rotate-around (a radians)
1104   (let ((c (cos radians))
1105         (s (sin radians))
1106         ;; The 1.0 here was misloaded on x86-64.
1107         (g (- 1.0 (cos radians))))
1108     (let* ((x (aref a 0))
1109            (y (aref a 1))
1110            (z (aref a 2))
1111            (gxx (* g x x)) (gxy (* g x y)) (gxz (* g x z))
1112            (gyy (* g y y)) (gyz (* g y z)) (gzz (* g z z)))
1113       (matrix
1114        (+ gxx c)        (- gxy (* s z))  (+ gxz (* s y)) 0.0
1115        (+ gxy (* s z))  (+ gyy c)        (- gyz (* s x)) 0.0
1116        (- gxz (* s y))  (+ gyz (* s x))  (+ gzz c)       0.0
1117        0.0              0.0              0.0             1.0))))
1118 (with-test (:name :regression-1.0.29.54)
1119   (assert (every #'=
1120                  '(-1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 1.0)
1121                  (rotate-around
1122                   (make-array 3 :element-type 'single-float) (coerce pi 'single-float))))
1123   ;; Same bug manifests in COMPLEX-ATANH as well.
1124   (assert (= (atanh #C(-0.7d0 1.1d0)) #C(-0.28715567731069275d0 0.9394245539093365d0))))
1125
1126 (with-test (:name :slot-value-on-structure)
1127   (let ((f (compile nil `(lambda (x a b)
1128                            (declare (something-known-to-be-a-struct x))
1129                            (setf (slot-value x 'x) a
1130                                  (slot-value x 'y) b)
1131                            (list (slot-value x 'x)
1132                                  (slot-value x 'y))))))
1133     (assert (equal '(#\x #\y)
1134                    (funcall f
1135                             (make-something-known-to-be-a-struct :x "X" :y "Y")
1136                             #\x #\y)))
1137     (assert (not (ctu:find-named-callees f)))))
1138
1139 (defclass some-slot-thing ()
1140   ((slot :initarg :slot)))
1141 (with-test (:name :with-slots-the)
1142   (let ((x (make-instance 'some-slot-thing :slot "foo")))
1143     (with-slots (slot) (the some-slot-thing x)
1144       (assert (equal "foo" slot)))))
1145
1146 ;;; Missing &REST type in proclamation causing a miscompile.
1147 (declaim (ftype
1148           (function
1149            (sequence unsigned-byte
1150                      &key (:initial-element t) (:initial-contents sequence))
1151            (values sequence &optional))
1152           bug-458354))
1153 (defun bug-458354
1154     (sequence length
1155      &rest keys
1156      &key (initial-element nil iep) (initial-contents nil icp))
1157   (declare (sb-ext:unmuffle-conditions style-warning))
1158   (declare (ignorable keys initial-element iep initial-contents icp))
1159   (apply #'sb-sequence:make-sequence-like sequence length keys))
1160 (with-test (:name :bug-458354)
1161   (assert (equalp #((a b) (a b)) (bug-458354 #(1 2) 2 :initial-element '(a b)))))
1162
1163 (with-test (:name :bug-542807)
1164   (handler-bind ((style-warning #'error))
1165     (eval '(defstruct bug-542807 slot)))
1166   (let (conds)
1167     (handler-bind ((style-warning (lambda (c)
1168                                     (push c conds))))
1169       (eval '(defstruct bug-542807 slot)))
1170     (assert (= 1 (length conds)))
1171     (assert (typep (car conds) 'sb-kernel::redefinition-with-defun))))
1172
1173 (with-test (:name :defmacro-not-list-lambda-list)
1174   (assert (raises-error? (eval `(defmacro ,(gensym) "foo"))
1175                          type-error)))
1176
1177 (with-test (:name :bug-308951)
1178   (let ((x 1))
1179     (dotimes (y 10)
1180       (let ((y y))
1181         (when (funcall (eval #'(lambda (x) (eql x 2))) y)
1182           (defun bug-308951-foo (z)
1183             (incf x (incf y z))))))
1184     (defun bug-308951-bar (z)
1185       (bug-308951-foo z)
1186       (values x)))
1187   (assert (= 4 (bug-308951-bar 1))))
1188
1189 (declaim (inline bug-308914-storage))
1190 (defun bug-308914-storage (x)
1191   (the (simple-array flt (*)) (bug-308914-unknown x)))
1192
1193 (with-test (:name :bug-308914-workaround)
1194   ;; This used to hang in ORDER-UVL-SETS.
1195   (handler-case
1196       (with-timeout 10
1197         (compile nil
1198                  `(lambda (lumps &key cg)
1199                     (let ((nodes (map 'list (lambda (lump)
1200                                               (bug-308914-storage lump))
1201                                       lumps)))
1202                       (setf (aref nodes 0) 2)
1203                       (assert (every #'~= (apply #'concatenate 'list nodes) '(2 3 6 9)))))))
1204     (sb-ext:timeout ()
1205       (error "Hang in ORDER-UVL-SETS?"))))
1206
1207 (declaim (inline inlined-function-in-source-path))
1208 (defun inlined-function-in-source-path (x)
1209   (+ x x))
1210
1211 (with-test (:name :inlined-function-in-source-path)
1212   (let ((output
1213          (with-output-to-string (*error-output*)
1214            (compile nil `(lambda (x)
1215                            (declare (optimize speed))
1216                            (funcall #'inlined-function-in-source-path x))))))
1217     ;; We want the name
1218     (assert (search "INLINED-FUNCTION-IN-SOURCE-PATH" output))
1219     ;; ...not the leaf.
1220     (assert (not (search "DEFINED-FUN" output)))))
1221
1222 (defmacro bug-795705 ()
1223   t)
1224
1225 (with-test (:name :bug-795705)
1226   (assert (macro-function 'bug-795705))
1227   (fmakunbound 'bug-795705)
1228   (assert (not (macro-function 'bug-795705))))
1229
1230 (with-test (:name (load-time-value :type-derivation))
1231   (let ((name 'load-time-value-type-derivation-test))
1232     (labels ((funtype (fun)
1233                (sb-kernel:type-specifier
1234                 (sb-kernel:single-value-type
1235                  (sb-kernel:fun-type-returns
1236                   (sb-kernel:specifier-type
1237                    (sb-kernel:%simple-fun-type fun))))))
1238              (test (type1 type2 form value-cell-p)
1239              (let* ((lambda-form `(lambda ()
1240                                     (load-time-value ,form)))
1241                     (core-fun (compile nil lambda-form))
1242                     (core-type (funtype core-fun))
1243                     (core-cell (ctu:find-value-cell-values core-fun))
1244                     (defun-form `(defun ,name ()
1245                                    (load-time-value ,form)))
1246                     (file-fun (progn
1247                                 (ctu:file-compile (list defun-form) :load t)
1248                                 (symbol-function name)))
1249                     (file-type (funtype file-fun))
1250                     (file-cell (ctu:find-value-cell-values file-fun)))
1251                (if value-cell-p
1252                    (assert (and core-cell file-cell))
1253                    (assert (not (or core-cell file-cell))))
1254                (unless (subtypep core-type type1)
1255                  (error "core: wanted ~S, got ~S" type1 core-type))
1256                (unless (subtypep file-type type2)
1257                  (error "file: wanted ~S, got ~S" type2 file-type)))))
1258       (let ((* 10))
1259         (test '(integer 11 11) 'number
1260               '(+ * 1) nil))
1261       (let ((* "fooo"))
1262         (test '(integer 4 4) 'unsigned-byte
1263               '(length *) nil))
1264       (test '(integer 10 10) '(integer 10 10) 10 nil)
1265       (test 'cons 'cons '(cons t t) t))))
1266
1267 (with-test (:name (load-time-value :errors))
1268   (multiple-value-bind (warn fail)
1269       (ctu:file-compile
1270        `((defvar *load-time-value-error-value* 10)
1271          (declaim (fixnum *load-time-value-error-value*))
1272          (defun load-time-value-error-test-1 ()
1273            (the list (load-time-value *load-time-value-error-value*))))
1274        :load t)
1275     (assert warn)
1276     (assert fail))
1277   (handler-case (load-time-value-error-test-1)
1278     (type-error (e)
1279       (and (eql 10 (type-error-datum e))
1280            (eql 'list (type-error-expected-type e)))))
1281   (multiple-value-bind (warn2 fail2)
1282       (ctu:file-compile
1283        `((defun load-time-value-error-test-2 ()
1284            (the list (load-time-value 10))))
1285        :load t)
1286     (assert warn2)
1287     (assert fail2))
1288   (handler-case (load-time-value-error-test-2)
1289     (type-error (e)
1290       (and (eql 10 (type-error-datum e))
1291            (eql 'list (type-error-expected-type e))))))
1292
1293 ;;;; tests for compiler output
1294 (with-test (:name :unexpected-compiler-output)
1295   (let* ((*error-output* (make-string-output-stream))
1296          (output (with-output-to-string (*standard-output*)
1297                    (compile-file "compiler-output-test.lisp"
1298                                  :print nil :verbose nil))))
1299     (unless (zerop (length output))
1300       (error "Unexpected output: ~S" output))))
1301
1302 (with-test (:name :bug-493380)
1303   (flet ((test (forms)
1304            (catch 'debug
1305              (let ((*debugger-hook* (lambda (condition if)
1306                                       (throw 'debug
1307                                         (if (typep condition 'serious-condition)
1308                                             :debug
1309                                             :oops)))))
1310                (multiple-value-bind (warned failed) (ctu:file-compile forms)
1311                  (when (and warned failed)
1312                    :failed))))))
1313     (assert (eq :failed (test "(defun")))
1314     (assert (eq :failed (test "(defun no-pkg::foo ())")))
1315     (assert (eq :failed (test "(cl:no-such-sym)")))
1316     (assert (eq :failed (test "...")))))
1317
1318 (defun cmacro-signals-error () :fun)
1319 (define-compiler-macro cmacro-signals-error () (error "oops"))
1320
1321 (with-test (:name :cmacro-signals-error)
1322   (multiple-value-bind (fun warn fail)
1323       (compile nil `(lambda () (cmacro-signals-error)))
1324     (assert (and fun warn fail))
1325     (assert (eq :fun (funcall fun)))))
1326
1327 (defun cmacro-with-simple-key (&key a)
1328   (format nil "fun=~A" a))
1329 (define-compiler-macro cmacro-with-simple-key (&whole form &key a)
1330   (if (constantp a)
1331       (format nil "cmacro=~A" (eval a))
1332       form))
1333
1334 (with-test (:name (:cmacro-with-simple-key :no-key))
1335   (multiple-value-bind (fun warn fail)
1336       (compile nil `(lambda () (cmacro-with-simple-key)))
1337     (assert (and (not warn) (not fail)))
1338     (assert (string= "cmacro=NIL" (funcall fun)))))
1339
1340 (with-test (:name (:cmacro-with-simple-key :constant-key))
1341   (multiple-value-bind (fun warn fail)
1342       (compile nil `(lambda () (cmacro-with-simple-key :a 42)))
1343     (assert (and (not warn) (not fail)))
1344     (assert (string= "cmacro=42" (funcall fun)))))
1345
1346 (with-test (:name (:cmacro-with-simple-key :variable-key))
1347   (multiple-value-bind (fun warn fail)
1348       (compile nil `(lambda (x) (cmacro-with-simple-key x 42)))
1349     (assert (and (not warn) (not fail)))
1350     (assert (string= "fun=42" (funcall fun :a)))))
1351
1352 (defun cmacro-with-nasty-key (&key ((nasty-key var)))
1353   (format nil "fun=~A" var))
1354 (define-compiler-macro cmacro-with-nasty-key (&whole form &key ((nasty-key var)))
1355   (if (constantp var)
1356       (format nil "cmacro=~A" (eval var))
1357       form))
1358
1359 (with-test (:name (:cmacro-with-nasty-key :no-key))
1360   (multiple-value-bind (fun warn fail)
1361       (compile nil `(lambda () (cmacro-with-nasty-key)))
1362     (assert (and (not warn) (not fail)))
1363     (assert (string= "cmacro=NIL" (funcall fun)))))
1364
1365 (with-test (:name (:cmacro-with-nasty-key :constant-key))
1366   ;; This bogosity is thanks to cmacro lambda lists being /macro/ lambda
1367   ;; lists.
1368   (multiple-value-bind (fun warn fail)
1369       (compile nil `(lambda () (cmacro-with-nasty-key 'nasty-key 42)))
1370     (assert (and (not warn) (not fail)))
1371     (assert (string= "fun=42" (funcall fun)))))
1372
1373 (with-test (:name (:cmacro-with-nasty-key :variable-key))
1374   (multiple-value-bind (fun warn fail)
1375       (compile nil `(lambda (nasty-key) (cmacro-with-nasty-key nasty-key 42)))
1376     (assert (and (not warn) (not fail)))
1377     (assert (string= "fun=42" (funcall fun 'nasty-key)))))
1378
1379 (defconstant tricky-key 'tricky-key)
1380 (defun cmacro-with-tricky-key (&key ((tricky-key var)))
1381   (format nil "fun=~A" var))
1382 (define-compiler-macro cmacro-with-tricky-key (&whole form &key ((tricky-key var)))
1383   (if (constantp var)
1384       (format nil "cmacro=~A" (eval var))
1385       form))
1386
1387 (with-test (:name (:cmacro-with-tricky-key :no-key))
1388   (multiple-value-bind (fun warn fail)
1389       (compile nil `(lambda () (cmacro-with-tricky-key)))
1390     (assert (and (not warn) (not fail)))
1391     (assert (string= "cmacro=NIL" (funcall fun)))))
1392
1393 (with-test (:name (:cmacro-with-tricky-key :constant-quoted-key))
1394   ;; This bogosity is thanks to cmacro lambda lists being /macro/ lambda
1395   ;; lists.
1396   (multiple-value-bind (fun warn fail)
1397       (compile nil `(lambda () (cmacro-with-tricky-key 'tricky-key 42)))
1398     (assert (and (not warn) (not fail)))
1399     (assert (string= "fun=42" (funcall fun)))))
1400
1401 (with-test (:name (:cmacro-with-tricky-key :constant-unquoted-key))
1402   (multiple-value-bind (fun warn fail)
1403       (compile nil `(lambda () (cmacro-with-tricky-key tricky-key 42)))
1404     (assert (and (not warn) (not fail)))
1405     (assert (string= "cmacro=42" (funcall fun)))))
1406
1407 (with-test (:name (:cmacro-with-tricky-key :variable-key))
1408   (multiple-value-bind (fun warn fail)
1409       (compile nil `(lambda (x) (cmacro-with-tricky-key x 42)))
1410     (assert (and (not warn) (not fail)))
1411     (assert (string= "fun=42" (funcall fun 'tricky-key)))))
1412
1413 (defun test-function-983 (x) x)
1414 (define-compiler-macro test-function-983 (x) x)
1415
1416 (with-test (:name :funcall-compiler-macro)
1417   (assert
1418    (handler-case
1419        (and (compile nil
1420                      `(lambda ()
1421                         (funcall (function test-function-983 junk) 1)))
1422             nil)
1423      (sb-c:compiler-error () t))))
1424
1425 (defsetf test-984 %test-984)
1426
1427 (with-test (:name :setf-function-with-setf-expander)
1428   (assert
1429    (handler-case
1430        (and
1431         (defun (setf test-984) ())
1432         nil)
1433      (style-warning () t)))
1434   (assert
1435    (handler-case
1436        (and
1437         (compile nil `(lambda () #'(setf test-984)))
1438         t)
1439      (warning () nil))))
1440
1441 (with-test (:name :compile-setf-function)
1442   (defun (setf compile-setf) ())
1443   (assert (equal (compile '(setf compile-setf))
1444                  '(setf compile-setf))))
1445
1446 \f
1447 ;;;; tests not in the problem domain, but of the consistency of the
1448 ;;;; compiler machinery itself
1449
1450 (in-package "SB-C")
1451
1452 ;;; Hunt for wrong-looking things in fundamental compiler definitions,
1453 ;;; and gripe about them.
1454 ;;;
1455 ;;; FIXME: It should be possible to (1) repair the things that this
1456 ;;; code gripes about, and then (2) make the code signal errors
1457 ;;; instead of just printing complaints to standard output, in order
1458 ;;; to prevent the code from later falling back into disrepair.
1459 (defun grovel-results (function)
1460   (dolist (template (fun-info-templates (info :function :info function)))
1461     (when (template-more-results-type template)
1462       (format t "~&Template ~A has :MORE results, and translates ~A.~%"
1463               (template-name template)
1464               function)
1465       (return nil))
1466     (when (eq (template-result-types template) :conditional)
1467       ;; dunno.
1468       (return t))
1469     (let ((types (template-result-types template))
1470           (result-type (fun-type-returns (info :function :type function))))
1471       (cond
1472         ((values-type-p result-type)
1473          (do ((ltypes (append (args-type-required result-type)
1474                               (args-type-optional result-type))
1475                       (rest ltypes))
1476               (types types (rest types)))
1477              ((null ltypes)
1478               (unless (null types)
1479                 (format t "~&More types than ltypes in ~A, translating ~A.~%"
1480                         (template-name template)
1481                         function)
1482                 (return nil)))
1483            (when (null types)
1484              (unless (null ltypes)
1485                (format t "~&More ltypes than types in ~A, translating ~A.~%"
1486                        (template-name template)
1487                        function)
1488                (return nil)))))
1489         ((eq result-type (specifier-type nil))
1490          (unless (null types)
1491            (format t "~&Template ~A returns values for function ~A with RESULT-TYPE NIL.~%"
1492                    (template-name template)
1493                    function)
1494            (return nil)))
1495         ((/= (length types) 1)
1496          (format t "~&Template ~A isn't returning 1 value for ~A.~%"
1497                  (template-name template)
1498                  function)
1499          (return nil))
1500         (t t)))))
1501 (defun identify-suspect-vops (&optional (env (first
1502                                               (last *info-environment*))))
1503   (do-info (env :class class :type type :name name :value value)
1504     (when (and (eq class :function) (eq type :type))
1505       ;; OK, so we have an entry in the INFO database. Now, if ...
1506       (let* ((info (info :function :info name))
1507              (templates (and info (fun-info-templates info))))
1508         (when templates
1509           ;; ... it has translators
1510           (grovel-results name))))))
1511 (identify-suspect-vops)
1512 \f
1513 ;;;; bug 305: INLINE/NOTINLINE causing local ftype to be lost
1514
1515 (define-condition optimization-error (error) ())
1516
1517 (labels ((compile-lambda (type sense)
1518            (handler-bind ((compiler-note (lambda (_)
1519                                            (declare (ignore _))
1520                                            (error 'optimization-error))))
1521              (values
1522               (compile
1523                nil
1524                `(lambda ()
1525                   (declare
1526                    ,@(when type '((ftype (function () (integer 0 10)) bug-305)))
1527                    (,sense bug-305)
1528                    (optimize speed))
1529                   (1+ (bug-305))))
1530               nil)))
1531          (expect-error (sense)
1532            (multiple-value-bind (f e)  (ignore-errors (compile-lambda nil sense))
1533              (assert (not f))
1534              (assert (typep e 'optimization-error))))
1535          (expect-pass (sense)
1536            (multiple-value-bind (f e)  (ignore-errors (compile-lambda t sense))
1537              (assert f)
1538              (assert (not e)))))
1539   (expect-error 'inline)
1540   (expect-error 'notinline)
1541   (expect-pass 'inline)
1542   (expect-pass 'notinline))
1543
1544 ;;; bug 211e: bogus style warning from duplicated keyword argument to
1545 ;;; a local function.
1546 (handler-bind ((style-warning #'error))
1547   (let ((f (compile nil '(lambda ()
1548                           (flet ((foo (&key y) (list y)))
1549                             (list (foo :y 1 :y 2)))))))
1550     (assert (equal '((1)) (funcall f)))))
1551
1552 ;;; check that EQL is optimized when other argument is (OR SYMBOL FIXNUM).
1553 (handler-bind ((compiler-note #'error))
1554   (let ((f1 (compile nil '(lambda (x1 y1)
1555                            (declare (type (or symbol fixnum) x1)
1556                                     (optimize speed))
1557                            (eql x1 y1))))
1558         (f2 (compile nil '(lambda (x2 y2)
1559                            (declare (type (or symbol fixnum) y2)
1560                                     (optimize speed))
1561                            (eql x2 y2)))))
1562     (let ((fix (random most-positive-fixnum))
1563           (sym (gensym))
1564           (e-count 0))
1565       (assert (funcall f1 fix fix))
1566       (assert (funcall f2 fix fix))
1567       (assert (funcall f1 sym sym))
1568       (assert (funcall f2 sym sym))
1569       (handler-bind ((type-error (lambda (c)
1570                                    (incf e-count)
1571                                    (continue c))))
1572         (flet ((test (f x y)
1573                  (with-simple-restart (continue "continue with next test")
1574                    (funcall f x y)
1575                    (error "fell through with (~S ~S ~S)" f x y))))
1576           (test f1 "oops" 42)
1577           (test f1 (1+ most-positive-fixnum) 42)
1578           (test f2 42 "oops")
1579           (test f2 42 (1+ most-positive-fixnum))))
1580       (assert (= e-count 4)))))
1581
1582 ;;; bug #389 (Rick Taube sbcl-devel)
1583 (defun bes-jn (unn ux)
1584    (let ((nn unn) (x ux))
1585      (let* ((n (floor (abs nn)))
1586             (besn
1587              (if (= n 0)
1588                  (bes-j0 x)
1589                  (if (= n 1)
1590                      (bes-j1 x)
1591                      (if (zerop x)
1592                          0.0
1593                          (let ((iacc 40)
1594                                (ans 0.0)
1595                                (bigno 1.0e+10)
1596                                (bigni 1.0e-10))
1597                            (if (> (abs x) n)
1598                                (do ((tox (/ 2.0 (abs x)))
1599                                     (bjm (bes-j0 (abs x)))
1600                                     (bj (bes-j1 (abs x)))
1601                                     (j 1 (+ j 1))
1602                                     (bjp 0.0))
1603                                    ((= j n) (setf ans bj))
1604                                  (setf bjp (- (* j tox bj) bjm))
1605                                  (setf bjm bj)
1606                                  (setf bj bjp))
1607                                (let ((tox (/ 2.0 (abs x)))
1608                                      (m
1609                                       (* 2
1610                                          (floor
1611                                           (/ (+ n (sqrt (* iacc n)))
1612                                              2))))
1613                                      (jsum 0.0)
1614                                      (bjm 0.0)
1615                                      (sum 0.0)
1616                                      (bjp 0.0)
1617                                      (bj 1.0))
1618                                  (do ((j m (- j 1)))
1619                                      ((= j 0))
1620                                    (setf bjm (- (* j tox bj) bjp))
1621                                    (setf bjp bj)
1622                                    (setf bj bjm)
1623                                    (when (> (abs bj) bigno)
1624                                      (setf bj (* bj bigni))
1625                                      (setf bjp (* bjp bigni))
1626                                      (setf ans (* ans bigni))
1627                                      (setf sum (* sum bigni)))
1628                                    (if (not (= 0 jsum)) (incf sum bj))
1629                                    (setf jsum (- 1 jsum))
1630                                    (if (= j n) (setf ans bjp)))
1631                                  (setf sum (- (* 2.0 sum) bj))
1632                                  (setf ans (/ ans sum))))
1633                            (if (and (minusp x) (oddp n))
1634                                (- ans)
1635                                ans)))))))
1636        (if (and (minusp nn) (oddp nn)) (- besn) besn))))
1637
1638
1639 ;;; bug 233b: lvar lambda-var equality in constraint propagation
1640
1641 ;; Put this in a separate function.
1642 (defun test-constraint-propagation/ref ()
1643   (let ((x nil))
1644     (if (multiple-value-prog1 x (setq x t))
1645         1
1646         x)))
1647
1648 (test-util:with-test (:name (:compiler :constraint-propagation :ref))
1649   (assert (eq t (test-constraint-propagation/ref))))
1650
1651 ;; Put this in a separate function.
1652 (defun test-constraint-propagation/typep (x y)
1653   (if (typep (multiple-value-prog1 x (setq x y))
1654              'double-float)
1655       (+ x 1d0)
1656       (+ x 2)))
1657
1658 (test-util:with-test (:name (:compiler :constraint-propagation :typep))
1659   (assert (= 6.0d0 (test-constraint-propagation/typep 1d0 5))))
1660
1661 (test-util:with-test (:name (:compiler :constraint-propagation :eq/eql))
1662   (assert (eq :right (let ((c :wrong))
1663                        (if (eq (let ((x c))
1664                                  (setq c :right)
1665                                  x)
1666                                :wrong)
1667                            c
1668                            0)))))
1669
1670 ;;; Put this in a separate function.
1671 (defun test-constraint-propagation/cast (x)
1672   (when (the double-float (multiple-value-prog1
1673                               x
1674                             (setq x (1+ x))))
1675     x))
1676
1677 (test-util:with-test (:name (:compiler :constraint-propagation :cast))
1678   (assert (assertoid:raises-error?
1679            (test-constraint-propagation/cast 1) type-error)))
1680
1681 ;;; bug #399
1682 (let ((result (make-array 50000 :fill-pointer 0 :adjustable t)))
1683   (defun string->html (string &optional (max-length nil))
1684     (when (and (numberp max-length)
1685                (> max-length (array-dimension result 0)))
1686       (setf result (make-array max-length :fill-pointer 0 :adjustable t)))
1687     (let ((index 0)
1688           (left-quote? t))
1689       (labels ((add-char (it)
1690                  (setf (aref result index) it)
1691                  (incf index))
1692                (add-string (it)
1693                  (loop for ch across it do
1694                        (add-char ch))))
1695         (loop for char across string do
1696               (cond ((char= char #\<)
1697                      (add-string "&lt;"))
1698                     ((char= char #\>)
1699                      (add-string "&gt;"))
1700                     ((char= char #\&)
1701                      (add-string "&amp;"))
1702                     ((char= char #\')
1703                      (add-string "&#39;"))
1704                     ((char= char #\newline)
1705                      (add-string "<br>"))
1706                     ((char= char #\")
1707                      (if left-quote? (add-string "&#147;") (add-string "&#148;"))
1708                      (setf left-quote? (not left-quote?)))
1709                     (t
1710                      (add-char char))))
1711         (setf (fill-pointer result) index)
1712         (coerce result 'string)))))
1713
1714 ;;; Callign thru constant symbols
1715 (require :sb-introspect)
1716
1717 (declaim (inline target-fun))
1718 (defun target-fun (arg0 arg1)
1719   (+ arg0 arg1))
1720 (declaim (notinline target-fun))
1721
1722 (defun test-target-fun-called (fun res)
1723   (assert (member #'target-fun
1724                   (sb-introspect:find-function-callees #'caller-fun-1)))
1725   (assert (equal (funcall fun) res)))
1726
1727 (defun caller-fun-1 ()
1728   (funcall 'target-fun 1 2))
1729 (test-target-fun-called #'caller-fun-1 3)
1730
1731 (defun caller-fun-2 ()
1732   (declare (inline target-fun))
1733   (apply 'target-fun 1 '(3)))
1734 (test-target-fun-called #'caller-fun-2 4)
1735
1736 (defun caller-fun-3 ()
1737   (flet ((target-fun (a b)
1738            (- a b)))
1739     (list (funcall #'target-fun 1 4) (funcall 'target-fun 1 4))))
1740 (test-target-fun-called #'caller-fun-3 (list -3 5))
1741
1742 ;;; Reported by NIIMI Satoshi
1743 ;;; Subject: [Sbcl-devel] compilation error with optimization
1744 ;;; Date: Sun, 09 Apr 2006 17:36:05 +0900
1745 (defun test-minimal-debug-info-for-unstored-but-used-parameter (n a)
1746   (declare (optimize (speed 3)
1747                      (debug 1)))
1748   (if (= n 0)
1749       0
1750       (test-minimal-debug-info-for-unstored-but-used-parameter (1- n) a)))
1751
1752 ;;; &KEY arguments with non-constant defaults.
1753 (declaim (notinline opaque-identity))
1754 (defun opaque-identity (x) x)
1755 (defstruct tricky-defaults
1756   (fun #'identity :type function)
1757   (num (opaque-identity 3) :type fixnum))
1758 (macrolet ((frob (form expected-expected-type)
1759              `(handler-case ,form
1760                (type-error (c) (assert (eq (type-error-expected-type c)
1761                                            ',expected-expected-type)))
1762                (:no-error (&rest vals) (error "~S returned values: ~S" ',form vals)))))
1763   (frob (make-tricky-defaults :fun 3) function)
1764   (frob (make-tricky-defaults :num #'identity) fixnum))
1765
1766 (let ((fun (compile nil '(lambda (&key (key (opaque-identity 3)))
1767                           (declare (optimize safety) (type integer key))
1768                           key))))
1769   (assert (= (funcall fun) 3))
1770   (assert (= (funcall fun :key 17) 17))
1771   (handler-case (funcall fun :key t)
1772     (type-error (c) (assert (eq (type-error-expected-type c) 'integer)))
1773     (:no-error (&rest vals) (error "no error"))))
1774
1775 ;;; Basic compiler-macro expansion
1776 (define-compiler-macro test-cmacro-0 () ''expanded)
1777
1778 (assert (eq 'expanded (funcall (lambda () (test-cmacro-0)))))
1779
1780 ;;; FUNCALL forms in compiler macros, lambda-list parsing
1781 (define-compiler-macro test-cmacro-1
1782     (&whole whole a (a2) &optional b &rest c &key d)
1783   (list whole a a2 b c d))
1784
1785 (macrolet ((test (form a a2 b c d)
1786              `(let ((form ',form))
1787                 (destructuring-bind (whole a a2 b c d)
1788                     (funcall (compiler-macro-function 'test-cmacro-1) form nil)
1789                   (assert (equal whole form))
1790                   (assert (eql a ,a))
1791                   (assert (eql a2 ,a2))
1792                   (assert (eql b ,b))
1793                   (assert (equal c ,c))
1794                   (assert (eql d ,d))))) )
1795   (test (funcall 'test-cmacro-1 1 (x) 2 :d 3) 1 'x 2 '(:d 3) 3)
1796   (test (test-cmacro-1 11 (y) 12 :d 13) 11 'y 12 '(:d 13) 13))
1797
1798 ;;; FUNCALL forms in compiler macros, expansions
1799 (define-compiler-macro test-cmacro-2 () ''ok)
1800
1801 (assert (eq 'ok (funcall (lambda () (funcall 'test-cmacro-2)))))
1802 (assert (eq 'ok (funcall (lambda () (funcall #'test-cmacro-2)))))
1803
1804 ;;; Shadowing of compiler-macros by local functions
1805 (define-compiler-macro test-cmacro-3 () ''global)
1806
1807 (defmacro find-cmacro-3 (&environment env)
1808   (compiler-macro-function 'test-cmacro-3 env))
1809
1810 (assert (funcall (lambda () (find-cmacro-3))))
1811 (assert (not (funcall (lambda () (flet ((test-cmacro-3 ()))
1812                                    (find-cmacro-3))))))
1813 (assert (eq 'local (funcall (lambda () (flet ((test-cmacro-3 () 'local))
1814                                          (test-cmacro-3))))))
1815 (assert (eq 'local (funcall (lambda () (flet ((test-cmacro-3 () 'local))
1816                                          (funcall #'test-cmacro-3))))))
1817 (assert (eq 'global (funcall (lambda () (flet ((test-cmacro-3 () 'local))
1818                                           (funcall 'test-cmacro-3))))))
1819
1820 ;;; Local NOTINLINE & INLINE
1821 (defun test-cmacro-4 () 'fun)
1822 (define-compiler-macro test-cmacro-4 () ''macro)
1823
1824 (assert (eq 'fun (funcall (lambda ()
1825                             (declare (notinline test-cmacro-4))
1826                             (test-cmacro-4)))))
1827
1828 (assert (eq 'macro (funcall (lambda ()
1829                               (declare (inline test-cmacro-4))
1830                               (test-cmacro-4)))))
1831
1832 ;;; SETF function compiler macros
1833 (define-compiler-macro (setf test-cmacro-4) (&whole form value) ''ok)
1834
1835 (assert (eq 'ok (funcall (lambda () (setf (test-cmacro-4) 'zot)))))
1836 (assert (eq 'ok (funcall (lambda () (funcall #'(setf test-cmacro-4) 'zot)))))
1837
1838 ;;; Step instrumentation breaking type-inference
1839 (handler-bind ((warning #'error))
1840   (assert (= 42 (funcall (compile nil '(lambda (v x)
1841                                         (declare (optimize sb-c:insert-step-conditions))
1842                                         (if (typep (the function x) 'fixnum)
1843                                             (svref v (the function x))
1844                                             (funcall x))))
1845                          nil (constantly 42)))))
1846
1847 ;;; bug 368: array type intersections in the compiler
1848 (defstruct e368)
1849 (defstruct i368)
1850 (defstruct g368
1851   (i368s (make-array 0 :fill-pointer t) :type (or (vector i368) null)))
1852 (defstruct s368
1853   (g368 (error "missing :G368") :type g368 :read-only t))
1854 (declaim (ftype (function (fixnum (vector i368) e368) t) r368))
1855 (declaim (ftype (function (fixnum (vector e368)) t) h368))
1856 (defparameter *h368-was-called-p* nil)
1857 (defun nsu (vertices e368)
1858   (let ((i368s (g368-i368s (make-g368))))
1859     (let ((fuis (r368 0 i368s e368)))
1860       (format t "~&FUIS=~S~%" fuis)
1861       (or fuis (h368 0 i368s)))))
1862 (defun r368 (w x y)
1863   (declare (ignore w x y))
1864   nil)
1865 (defun h368 (w x)
1866   (declare (ignore w x))
1867   (setf *h368-was-called-p* t)
1868   (make-s368 :g368 (make-g368)))
1869 (let ((nsu (nsu #() (make-e368))))
1870   (format t "~&NSU returned ~S~%" nsu)
1871   (format t "~&*H368-WAS-CALLED-P*=~S~%" *h368-was-called-p*)
1872   (assert (s368-p nsu))
1873   (assert *h368-was-called-p*))
1874
1875 ;;; bug 367: array type intersections in the compiler
1876 (defstruct e367)
1877 (defstruct i367)
1878 (defstruct g367
1879   (i367s (make-array 0 :fill-pointer t) :type (or (vector i367) null)))
1880 (defstruct s367
1881   (g367 (error "missing :G367") :type g367 :read-only t))
1882 (declaim (ftype (function ((vector i367) e367) (or s367 null)) r367))
1883 (declaim (ftype (function ((vector e367)) (values)) h367))
1884 (defun frob-367 (v w)
1885   (let ((x (g367-i367s (make-g367))))
1886     (let* ((y (or (r367 x w)
1887                   (h367 x)))
1888            (z (s367-g367 y)))
1889       (format t "~&Y=~S Z=~S~%" y z)
1890       (g367-i367s z))))
1891 (defun r367 (x y) (declare (ignore x y)) nil)
1892 (defun h367 (x) (declare (ignore x)) (values))
1893 (multiple-value-bind (res err) (ignore-errors (frob-367 0 (make-e367)))
1894   (assert (not res))
1895   (assert (typep err 'type-error)))
1896
1897 (handler-case
1898     (delete-file (compile-file "circ-tree-test.lisp"))
1899   (storage-condition (e)
1900     (error e)))
1901
1902 ;;; warnings due to step-insturmentation
1903 (defclass debug-test-class () ())
1904 (handler-case
1905     (compile nil '(lambda ()
1906                    (declare (optimize (debug 3)))
1907                    (defmethod print-object ((x debug-test-class) s)
1908                      (call-next-method))))
1909   ((and (not style-warning) warning) (e)
1910     (error e)))
1911
1912 ;;; program-error from bad lambda-list keyword
1913 (assert (eq :ok
1914             (handler-case
1915                 (funcall (lambda (&whole x)
1916                            (list &whole x)))
1917               (program-error ()
1918                 :ok))))
1919 #+sb-eval
1920 (assert (eq :ok
1921             (handler-case
1922                 (let ((*evaluator-mode* :interpret))
1923                   (funcall (eval '(lambda (&whole x)
1924                                    (list &whole x)))))
1925               (program-error ()
1926                 :ok))))
1927
1928 ;;; ignore &environment
1929 (handler-bind ((style-warning #'error))
1930   (compile nil '(lambda ()
1931                  (defmacro macro-ignore-env (&environment env)
1932                    (declare (ignore env))
1933                    :foo)))
1934   (compile nil '(lambda ()
1935                  (defmacro macro-no-env ()
1936                    :foo))))
1937
1938 (dolist (*evaluator-mode* '(#+sb-eval :interpret :compile))
1939   (disassemble (eval '(defun disassemble-source-form-bug (x y z)
1940                        (declare (optimize debug))
1941                        (list x y z)))))
1942
1943 ;;; long-standing bug in defaulting unknown values on the x86-64,
1944 ;;; since changing the calling convention (test case by Christopher
1945 ;;; Laux sbcl-help 30-06-2007)
1946
1947 (defun default-values-bug-demo-sub ()
1948   (format t "test")
1949   nil)
1950 (compile 'default-values-bug-demo-sub)
1951
1952 (defun default-values-bug-demo-main ()
1953   (multiple-value-bind (a b c d e f g h)
1954       (default-values-bug-demo-sub)
1955     (if a (+ a b c d e f g h) t)))
1956 (compile 'default-values-bug-demo-main)
1957
1958 (assert (default-values-bug-demo-main))
1959
1960 ;;; copy propagation bug reported by Paul Khuong
1961
1962 (defun local-copy-prop-bug-with-move-arg (x)
1963   (labels ((inner ()
1964              (values 1 0)))
1965     (if x
1966         (inner)
1967         (multiple-value-bind (a b)
1968             (inner)
1969           (values b a)))))
1970
1971 (assert (equal '(0 1) (multiple-value-list (local-copy-prop-bug-with-move-arg nil))))
1972 (assert (equal '(1 0) (multiple-value-list (local-copy-prop-bug-with-move-arg t))))
1973
1974 ;;;; with-pinned-objects & unwind-protect, using all non-tail conventions
1975
1976 (defun wpo-quux () (list 1 2 3))
1977 (defvar *wpo-quux* #'wpo-quux)
1978
1979 (defun wpo-call ()
1980   (unwind-protect
1981        (sb-sys:with-pinned-objects (*wpo-quux*)
1982          (values (funcall *wpo-quux*)))))
1983 (assert (equal '(1 2 3) (wpo-call)))
1984
1985 (defun wpo-multiple-call ()
1986   (unwind-protect
1987        (sb-sys:with-pinned-objects (*wpo-quux*)
1988          (funcall *wpo-quux*))))
1989 (assert (equal '(1 2 3) (wpo-multiple-call)))
1990
1991 (defun wpo-call-named ()
1992   (unwind-protect
1993        (sb-sys:with-pinned-objects (*wpo-quux*)
1994          (values (wpo-quux)))))
1995 (assert (equal '(1 2 3) (wpo-call-named)))
1996
1997 (defun wpo-multiple-call-named ()
1998   (unwind-protect
1999        (sb-sys:with-pinned-objects (*wpo-quux*)
2000          (wpo-quux))))
2001 (assert (equal '(1 2 3) (wpo-multiple-call-named)))
2002
2003 (defun wpo-call-variable (&rest args)
2004   (unwind-protect
2005        (sb-sys:with-pinned-objects (*wpo-quux*)
2006          (values (apply *wpo-quux* args)))))
2007 (assert (equal '(1 2 3) (wpo-call-variable)))
2008
2009 (defun wpo-multiple-call-variable (&rest args)
2010   (unwind-protect
2011        (sb-sys:with-pinned-objects (*wpo-quux*)
2012          (apply #'wpo-quux args))))
2013 (assert (equal '(1 2 3) (wpo-multiple-call-named)))
2014
2015 (defun wpo-multiple-call-local ()
2016   (flet ((quux ()
2017            (wpo-quux)))
2018     (unwind-protect
2019          (sb-sys:with-pinned-objects (*wpo-quux*)
2020            (quux)))))
2021 (assert (equal '(1 2 3) (wpo-multiple-call-local)))
2022
2023 ;;; bug 417: toplevel NIL confusing source path logic
2024 (handler-case
2025     (delete-file (compile-file "bug-417.lisp"))
2026   (sb-ext:code-deletion-note (e)
2027     (error e)))
2028
2029 ;;; unknown values return convention getting disproportionate
2030 ;;; amounts of values.
2031 (declaim (notinline one-value two-values))
2032 (defun one-value (x)
2033   (not x))
2034 (defun two-values (x y)
2035   (values y x))
2036 (defun wants-many-values (x y)
2037   (multiple-value-bind (a b c d e f)
2038       (one-value y)
2039     (assert (and (eql (not y) a)
2040                  (not (or b c d e f)))))
2041   (multiple-value-bind (a b c d e f)
2042       (two-values y x)
2043     (assert (and (eql a x) (eql b y)
2044                  (not (or c d e f)))))
2045   (multiple-value-bind (a b c d e f g h i)
2046       (one-value y)
2047     (assert (and (eql (not y) a)
2048                  (not (or b c d e f g h i)))))
2049   (multiple-value-bind (a b c d e f g h i)
2050       (two-values y x)
2051     (assert (and (eql a x) (eql b y)
2052                  (not (or c d e f g h i)))))
2053   (multiple-value-bind (a b c d e f g h i j k l m n o p q r s)
2054       (one-value y)
2055     (assert (and (eql (not y) a)
2056                  (not (or b c d e f g h i j k l m n o p q r s)))))
2057   (multiple-value-bind (a b c d e f g h i j k l m n o p q r s)
2058       (two-values y x)
2059     (assert (and (eql a x) (eql b y)
2060                  (not (or c d e f g h i j k l m n o p q r s))))))
2061 (wants-many-values 1 42)
2062
2063 ;;; constant coalescing
2064
2065 (defun count-code-constants (x f)
2066   (let ((code (sb-kernel:fun-code-header f))
2067         (n 0))
2068     (loop for i from sb-vm::code-constants-offset below (sb-kernel:get-header-data code)
2069           do (when (equal x (sb-kernel:code-header-ref code i))
2070                (incf n)))
2071     n))
2072
2073 (defvar *lambda*)
2074
2075 (defun compile2 (lambda)
2076   (let* ((lisp "compiler-impure-tmp.lisp")
2077          (fasl (compile-file-pathname lisp)))
2078     (unwind-protect
2079          (progn
2080            (with-open-file (f lisp :direction :output)
2081              (prin1 `(setf *lambda* ,lambda) f))
2082            (multiple-value-bind (fasl warn fail) (compile-file lisp)
2083              (declare (ignore warn))
2084              (when fail
2085                (error "File-compiling ~S failed." lambda))
2086              (let ((*lambda* nil))
2087                (load fasl)
2088                (values *lambda* (compile nil lambda)))))
2089       (ignore-errors (delete-file lisp))
2090       (ignore-errors (delete-file fasl)))))
2091
2092 ;; named and unnamed
2093 (defconstant +born-to-coalesce+ '.born-to-coalesce.)
2094 (multiple-value-bind (file-fun core-fun)
2095     (compile2 '(lambda ()
2096                 (let ((x (cons +born-to-coalesce+ nil))
2097                       (y (cons '.born-to-coalesce. nil)))
2098                   (list x y))))
2099   (assert (= 1 (count-code-constants '.born-to-coalesce. file-fun)))
2100   (assert (= 1 (count-code-constants '.born-to-coalesce. core-fun))))
2101
2102 ;; some things must retain identity under COMPILE, but we want to coalesce them under COMPILE-FILE
2103 (defun assert-coalescing (constant)
2104   (let ((value (copy-seq (symbol-value constant))))
2105     (multiple-value-bind (file-fun core-fun)
2106         (compile2 `(lambda ()
2107                      (let ((x (cons ,constant nil))
2108                            (y (cons ',value nil)))
2109                        (list x y))))
2110       (assert (= 1 (count-code-constants value file-fun)))
2111       (assert (= 2 (count-code-constants value core-fun)))
2112       (let* ((l (funcall file-fun))
2113              (a (car (first l)))
2114              (b (car (second l))))
2115         (assert (and (equal value a)
2116                      (equal a b)
2117                      (eq a b))))
2118       (let* ((l (funcall core-fun))
2119              (a (car (first l)))
2120              (b (car (second l))))
2121         (assert (and (equal value a)
2122                      (equal a b)
2123                      (not (eq a b))))))))
2124
2125 (defconstant +born-to-coalesce2+ "maybe coalesce me!")
2126 (assert-coalescing '+born-to-coalesce2+)
2127
2128 (defconstant +born-to-coalesce3+ #*01101001011101110100011)
2129 (assert-coalescing '+born-to-coalesce3+)
2130
2131 (defconstant +born-to-coalesce4+ '(foo bar "zot" 123 (nested "quux") #*0101110010))
2132 (assert-coalescing '+born-to-coalesce4+)
2133
2134 (defclass some-constant-thing () ())
2135
2136 ;;; correct handling of nested things loaded via SYMBOL-VALUE
2137 (defvar *sneaky-nested-thing* (list (make-instance 'some-constant-thing)))
2138 (defconstant +sneaky-nested-thing+ *sneaky-nested-thing*)
2139 (multiple-value-bind (file-fun core-fun) (compile2 '(lambda () +sneaky-nested-thing+))
2140   (assert (equal *sneaky-nested-thing* (funcall file-fun)))
2141   (assert (equal *sneaky-nested-thing* (funcall core-fun))))
2142
2143 ;;; catch constant modifications thru undefined variables
2144 (defun sneak-set-dont-set-me (x)
2145   (ignore-errors (setq dont-set-me x)))
2146 (defconstant dont-set-me 42)
2147 (assert (not (sneak-set-dont-set-me 13)))
2148 (assert (= 42 dont-set-me))
2149 (defun sneak-set-dont-set-me2 (x)
2150   (ignore-errors (setq dont-set-me2 x)))
2151 (defconstant dont-set-me2 (make-instance 'some-constant-thing))
2152 (assert (not (sneak-set-dont-set-me2 13)))
2153 (assert (typep dont-set-me2 'some-constant-thing))
2154
2155 ;;; check that non-trivial constants are EQ across different files: this is
2156 ;;; not something ANSI either guarantees or requires, but we want to do it
2157 ;;; anyways.
2158 (defconstant +share-me-1+ #-inline-constants 123.456d0 #+inline-constants nil)
2159 (defconstant +share-me-2+ "a string to share")
2160 (defconstant +share-me-3+ (vector 1 2 3))
2161 (defconstant +share-me-4+ (* 2 most-positive-fixnum))
2162 (multiple-value-bind (f1 c1) (compile2 '(lambda () (values +share-me-1+
2163                                                            +share-me-2+
2164                                                            +share-me-3+
2165                                                            +share-me-4+
2166                                                            #-inline-constants pi)))
2167   (multiple-value-bind (f2 c2) (compile2 '(lambda () (values +share-me-1+
2168                                                              +share-me-2+
2169                                                              +share-me-3+
2170                                                              +share-me-4+
2171                                                              #-inline-constants pi)))
2172     (flet ((test (fa fb)
2173              (mapc (lambda (a b)
2174                      (assert (eq a b)))
2175                    (multiple-value-list (funcall fa))
2176                    (multiple-value-list (funcall fb)))))
2177       (test f1 c1)
2178       (test f1 f2)
2179       (test f1 c2))))
2180
2181 ;;; user-defined satisfies-types cannot be folded
2182 (deftype mystery () '(satisfies mysteryp))
2183 (defvar *mystery* nil)
2184 (defun mysteryp (x) (eq x *mystery*))
2185 (defstruct thing (slot (error "missing") :type mystery))
2186 (defun test-mystery (m) (when (eq :mystery (thing-slot m)) :ok))
2187 (setf *mystery* :mystery)
2188 (assert (eq :ok (test-mystery (make-thing :slot :mystery))))
2189
2190 ;;; Singleton types can also be constant.
2191 (test-util:with-test (:name :propagate-singleton-types-to-eql)
2192   (macrolet ((test (type value &aux (fun (gensym "FUN")))
2193                `(progn
2194                   (declaim (ftype (function () (values ,type &optional)) ,fun))
2195                   (defun ,fun ()
2196                     ',value)
2197                   (lambda (x)
2198                     (if (eql x (,fun))
2199                         nil
2200                         (eql x (,fun)))))))
2201     (values
2202       (test (eql foo) foo)
2203       (test (integer 0 0) 0)
2204       (test (double-float 0d0 0d0) 0d0)
2205       (test (eql #\c) #\c))))
2206
2207 (declaim (ftype (function () (integer 42 42)) bug-655581))
2208 (defun bug-655581 ()
2209   42)
2210 (declaim (notinline bug-655581))
2211 (test-util:with-test (:name :bug-655581)
2212   (multiple-value-bind (type derived)
2213       (funcall (compile nil `(lambda ()
2214                                (ctu:compiler-derived-type (bug-655581)))))
2215     (assert derived)
2216     (assert (equal '(integer 42 42) type))))
2217
2218 (test-util:with-test (:name :clear-derived-types-on-set-fdefn)
2219   (let ((*evaluator-mode* :compile)
2220         (*derive-function-types* t))
2221     (eval `(progn
2222              (defun clear-derived-types-on-set-fdefn-1 ()
2223                "foo")
2224              (setf (symbol-function 'clear-derived-types-on-set-fdefn-1)
2225                    (constantly "foobar"))
2226              (defun clear-derived-types-on-set-fdefn-2 ()
2227                (length (clear-derived-types-on-set-fdefn-1)))))
2228     (assert (= 6 (clear-derived-types-on-set-fdefn-2)))))
2229
2230 (test-util:with-test (:name (:bug-655126 :derive-function-types t))
2231   (let ((*evaluator-mode* :compile)
2232         (*derive-function-types* t))
2233     (eval `(defun bug-655126 (x) x))
2234     ;; Full warnings are ok due to *derive-function-types* = T.
2235     (assert (eq :full-warning
2236                 (handler-case
2237                     (eval `(defun bug-655126-2 ()
2238                              (bug-655126)))
2239                   ((and warning (not style-warning)) ()
2240                     :full-warning))))
2241     (assert (eq 'bug-655126
2242                 (handler-case
2243                     (eval `(defun bug-655126 (x y)
2244                              (cons x y)))
2245                   ((and warning (not sb-kernel:redefinition-warning)) ()
2246                     :oops))))
2247     (assert (eq :full-warning
2248                 (handler-case
2249                     (eval `(defun bug-655126 (x)
2250                              (bug-655126 x y)))
2251                   ((and warning
2252                     (not style-warning)
2253                     (not sb-kernel:redefinition-warning)) ()
2254                     :full-warning))))))
2255
2256 (test-util:with-test (:name (:bug-655126 :derive-function-types nil))
2257   (let ((*evaluator-mode* :compile))
2258     (eval `(defun bug-655126/b (x) x))
2259     ;; Just style-warning here.
2260     (assert (eq :style-warning
2261                 (handler-case
2262                     (eval `(defun bug-655126-2/b ()
2263                              (bug-655126/b)))
2264                   (style-warning ()
2265                     :style-warning))))
2266     (assert (eq 'bug-655126/b
2267                 (handler-case
2268                     (eval `(defun bug-655126/b (x y)
2269                              (cons x y)))
2270                   ((and warning (not sb-kernel:redefinition-warning)) ()
2271                     :oops))))
2272     ;; Bogus self-call is always worth a full one.
2273     (assert (eq :full-warning
2274                 (handler-case
2275                     (eval `(defun bug-655126/b (x)
2276                              (bug-655126/b x y)))
2277                   ((and warning
2278                     (not style-warning)
2279                     (not sb-kernel:redefinition-warning)) ()
2280                     :full-warning))))))
2281
2282 (test-util:with-test (:name :bug-657499)
2283   ;; Don't trust derived types within the compilation unit.
2284   (ctu:file-compile
2285    `((declaim (optimize safety))
2286      (defun bug-657499-foo ()
2287        (cons t t))
2288      (defun bug-657499-bar ()
2289        (let ((cons (bug-657499-foo)))
2290          (setf (car cons) 3)
2291          cons)))
2292    :load t)
2293   (locally (declare (optimize safety))
2294     (setf (symbol-function 'bug-657499-foo) (constantly "foobar"))
2295     (assert (eq :type-error
2296                 (handler-case
2297                     (funcall 'bug-657499-bar)
2298                   (type-error (e)
2299                     (assert (eq 'cons (type-error-expected-type e)))
2300                     (assert (equal "foobar" (type-error-datum e)))
2301                     :type-error))))))
2302
2303 (declaim (unsigned-byte *symbol-value-test-var*))
2304 (defvar *symbol-value-test-var*)
2305
2306 (declaim (unsigned-byte **global-symbol-value-test-var**))
2307 (defglobal **global-symbol-value-test-var** 0)
2308
2309 (test-util:with-test (:name :symbol-value-type-derivation)
2310   (let ((fun (compile
2311               nil
2312               `(lambda ()
2313                  *symbol-value-test-var*))))
2314     (assert (equal '(function () (values unsigned-byte &optional))
2315                    (%simple-fun-type fun))))
2316   (let ((fun (compile
2317               nil
2318               `(lambda ()
2319                  **global-symbol-value-test-var**))))
2320     (assert (equal '(function () (values unsigned-byte &optional))
2321                    (%simple-fun-type fun))))
2322   (let ((fun (compile
2323               nil
2324               `(lambda (*symbol-value-test-var*)
2325                  (declare (fixnum *symbol-value-test-var*))
2326                  (symbol-value '*symbol-value-test-var*))))
2327         (ufix (type-specifier (specifier-type `(and unsigned-byte fixnum)))))
2328     (assert (equal `(function (,ufix) (values ,ufix &optional))
2329                    (%simple-fun-type fun))))
2330   (let ((fun (compile
2331               nil
2332               `(lambda ()
2333                  (declare (fixnum **global-symbol-value-test-var**))
2334                  (symbol-global-value '**global-symbol-value-test-var**))))
2335         (ufix (type-specifier (specifier-type `(and unsigned-byte fixnum)))))
2336     (assert (equal `(function () (values ,ufix &optional))
2337                    (%simple-fun-type fun)))))
2338
2339 (test-util:with-test (:name :mv-bind-to-let-type-propagation)
2340   (let ((f (compile nil `(lambda (x)
2341                            (declare (optimize speed)
2342                                     (type (integer 20 50) x))
2343                            (< (truncate x 10) 1))))
2344         (g (compile nil `(lambda (x)
2345                            (declare (optimize speed)
2346                                     (type (integer 20 50) x))
2347                            (< (nth-value 1 (truncate x 10)) 10))))
2348         (h (compile nil `(lambda (x)
2349                            (declare (optimize speed)
2350                                     (type (integer 20 50) x))
2351                            (multiple-value-bind (q r)
2352                                (truncate x 10)
2353                              (declare (ignore r))
2354                              (< q 1)))))
2355         (type0 '(function ((integer 20 50)) (values null &optional)))
2356         (type1 '(function ((integer 20 50)) (values (member t) &optional))))
2357     (assert (equal type0 (sb-kernel:%simple-fun-type f)))
2358     (assert (equal type1 (sb-kernel:%simple-fun-type g)))
2359     (assert (equal type0 (sb-kernel:%simple-fun-type h)))))
2360
2361 (test-util:with-test (:name :bug-308921)
2362   (let ((*check-consistency* t))
2363     (ctu:file-compile
2364      `((let ((exported-symbols-alist
2365                (loop for symbol being the external-symbols of :cl
2366                      collect (cons symbol
2367                                    (concatenate 'string
2368                                                 "#"
2369                                                 (string-downcase symbol))))))
2370          (defun hyperdoc-lookup (symbol)
2371            (cdr (assoc symbol exported-symbols-alist)))))
2372      :load nil)))
2373
2374 (test-util:with-test (:name :bug-308941)
2375   (multiple-value-bind (warn fail)
2376       (let ((*check-consistency* t))
2377         (ctu:file-compile
2378          "(eval-when (:compile-toplevel :load-toplevel :execute)
2379             (defstruct foo3))
2380           (defstruct bar
2381             (foo #.(make-foo3)))"
2382          :load nil))
2383     ;; ...but the compiler should not break.
2384     (assert (and warn fail))))
2385
2386 (test-util:with-test (:name :bug-903821)
2387   (let* ((fun (compile nil '(lambda (x n)
2388                              (declare (sb-ext:word x)
2389                               (type (integer 0 #.(1- sb-vm:n-word-bits)) n)
2390                               (optimize speed))
2391                              (logandc2 x (ash -1 n)))))
2392          (trace-output
2393           (with-output-to-string (*trace-output*)
2394             (eval `(trace ,(intern (format nil "ASH-LEFT-MOD~D" sb-vm::n-word-bits) "SB-VM")))
2395             (assert (= 7 (funcall fun 15 3))))))
2396     (assert (string= "" trace-output))))
2397
2398 (test-util:with-test (:name :bug-997528)
2399   (let ((fun (compile nil '(lambda (x)
2400                             (declare (optimize (speed 0) (space 0))
2401                              (type (integer -228645653448155482 -228645653447928749) x))
2402                             (floor 1.0 (the (integer -228645653448151677 -228645653448150900) x))))))
2403     (multiple-value-bind (quo rem)
2404         (funcall fun -228645653448151381)
2405       (assert (= quo -1))
2406       (assert (= rem (float -228645653448151381))))))
2407
2408 (defmacro def-many-code-constants ()
2409   `(defun many-code-constants ()
2410      ,@(loop for i from 0 below 1000
2411           collect `(print ,(format nil "hi-~d" i)))))
2412
2413 (test-util:with-test (:name :many-code-constants)
2414   (def-many-code-constants)
2415   (assert (search "hi-999"
2416                   (with-output-to-string (*standard-output*)
2417                     (many-code-constants)))))
2418
2419 (test-util:with-test (:name :bug-943953)
2420   ;; we sometimes splice compiler structures like clambda in
2421   ;; source, and our error reporting would happily use that
2422   ;; as source forms.
2423   (let* ((src "bug-943953.lisp")
2424          (obj (compile-file-pathname src)))
2425     (unwind-protect (compile-file src)
2426       (ignore-errors (delete-file obj)))))
2427
2428 (declaim (inline vec-1177703))
2429 (defstruct (vec-1177703 (:constructor vec-1177703 (&optional x)))
2430   (x 0.0d0 :type double-float))
2431
2432 (declaim (inline norm-1177703))
2433 (defun norm-1177703 (v)
2434   (vec-1177703 (sqrt (vec-1177703-x v))))
2435
2436 (test-util:with-test (:name :bug-1177703)
2437   (compile nil `(lambda (x)
2438                   (norm-1177703 (vec-1177703 x)))))
2439
2440 (declaim (inline call-1035721))
2441 (defun call-1035721 (function)
2442   (lambda (x)
2443     (funcall function x)))
2444
2445 (declaim (inline identity-1035721))
2446 (defun identity-1035721 (x)
2447   x)
2448
2449 (test-util:with-test (:name :bug-1035721)
2450   (compile nil `(lambda ()
2451                   (list
2452                    (call-1035721 #'identity-1035721)
2453                    (lambda (x)
2454                      (identity-1035721 x))))))
2455
2456 (test-util:with-test (:name :expt-type-derivation-and-method-redefinition)
2457   (defmethod expt-type-derivation ((x list) &optional (y 0.0))
2458     (declare (type float y))
2459     (expt 2 y))
2460   ;; the redefinition triggers a type lookup of the old
2461   ;; fast-method-function's type, which had a bogus type specifier of
2462   ;; the form (double-float 0) from EXPT type derivation
2463   (defmethod expt-type-derivation ((x list) &optional (y 0.0))
2464     (declare (type float y))
2465     (expt 2 y)))
2466 ;;; success