Signal floating-point-overflow from bignum-to-float.
[sbcl.git] / tests / coerce.pure.lisp
blob86090b753127547dc9749b20146f69736d5487c7
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; While most of SBCL is derived from the CMU CL system, the test
5 ;;;; files (like this one) were written from scratch after the fork
6 ;;;; from CMU CL.
7 ;;;;
8 ;;;; This software is in the public domain and is provided with
9 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
10 ;;;; more information.
12 (in-package "CL-USER")
14 (with-test (:name (coerce complex :numeric-types))
15 (labels ((function/optimized (type rationalp)
16 (checked-compile `(lambda (input)
17 (ignore-errors
18 (the ,(if rationalp
19 `(or ,type rational)
20 type)
21 (coerce input ',type))))))
22 (function/unoptimized (type)
23 (lambda (input)
24 (ignore-errors (coerce input type))))
25 (check-result (kind input result type rationalp expected)
26 (unless (eql result expected)
27 (error "~@<~S ~Sing ~S to type ~S produced ~S, not ~S.~@:>"
28 kind 'coerce input type result expected))
29 (when expected
30 (if rationalp
31 (assert (typep result `(or ,type rational)))
32 (assert (typep result type)))))
33 (test-case (input type expected &optional rationalp)
34 (let ((result/optimized
35 (funcall (function/optimized type rationalp) input))
36 (result/unoptimized
37 (funcall (function/unoptimized type) input)))
38 (check-result :optimized input result/optimized type rationalp expected)
39 (check-result :unoptmized input result/unoptimized type rationalp expected))))
41 (test-case 1 'complex 1 t)
42 (test-case 1 '(complex real) 1 t)
43 (test-case 1 '(complex (real 1)) 1 t)
44 (test-case 1 '(complex rational) 1 t)
45 (test-case 1 '(complex (rational 1)) 1 t)
46 (test-case 1 '(complex (or (rational -3 -2) (rational 1))) 1 t)
47 (test-case 1 '(complex float) #C(1.0e0 0.0e0))
48 (test-case 1 '(complex double-float) #C(1.0d0 0.0d0))
49 (test-case 1 '(complex single-float) #C(1.0f0 0.0f0))
50 (test-case 1 '(complex integer) 1 t)
51 (test-case 1 '(complex (or (real 1) (integer -1 0))) 1 t)
53 (test-case -2 'complex -2 t)
54 (test-case -2 '(complex real) -2 t)
55 (test-case -2 '(complex (real 1)) -2 t)
56 (test-case -2 '(complex rational) -2 t)
57 (test-case -2 '(complex (rational 1)) -2 t)
58 (test-case -2 '(complex (or (rational -3 -2) (rational 1))) -2 t)
59 (test-case -2 '(complex float) #C(-2.0e0 0.0e0))
60 (test-case -2 '(complex double-float) #C(-2.0d0 0.0d0))
61 (test-case -2 '(complex single-float) #C(-2.0f0 0.0f0))
62 (test-case -2 '(complex integer) -2 t)
63 (test-case -2 '(complex (or (real 1) (integer -1 0))) -2 t)
65 (test-case 1.1s0 'complex #C(1.1s0 .0s0) t)
66 (test-case 1.1s0 '(complex real) #C(1.1s0 .0s0) t)
67 (test-case 1.1s0 '(complex (real 1)) nil t)
68 (test-case 1.1s0 '(complex rational) nil t)
69 (test-case 1.1s0 '(complex (rational 1)) nil t)
70 (test-case 1.1s0 '(complex (or (rational -3 -2) (rational 1))) nil t)
71 (test-case 1.1s0 '(complex float) #C(1.1s0 .0s0))
72 (test-case 1.1s0 '(complex double-float) (coerce #C(1.1s0 .0s0) '(complex double-float)))
73 (test-case 1.1s0 '(complex single-float) #C(1.1s0 .0s0))
74 (test-case 1.1s0 '(complex integer) nil t)
75 (test-case 1.1s0 '(complex (or (real 1) (integer -1 0))) nil t)
77 (test-case 1/2 'complex 1/2 t)
78 (test-case 1/2 '(complex real) 1/2 t)
79 (test-case 1/2 '(complex (real 1)) 1/2 t)
80 (test-case 1/2 '(complex rational) 1/2 t)
81 (test-case 1/2 '(complex (rational 1)) 1/2 t)
82 (test-case 1/2 '(complex (or (rational -3 -2) (rational 1))) 1/2 t)
83 (test-case 1/2 '(complex float) #C(.5e0 0.0e0))
84 (test-case 1/2 '(complex double-float) #C(.5d0 0.0d0))
85 (test-case 1/2 '(complex single-float) #C(.5f0 0.0f0))
86 (test-case 1/2 '(complex integer) 1/2 t)
87 (test-case 1/2 '(complex (or (real 1) (integer -1 0))) 1/2 t)
89 ;; TODO fails with vanilla COERCE (i.e. without source transform)
90 ;; (test-case #C(1/2 .5e0) 'complex #C(1/2 .5e0) t)
91 ;; (test-case #C(1/2 .5e0) '(complex real) #C(1/2 .5e0) t)
92 ;; (test-case #C(1/2 .5e0) '(complex (real 1)) nil t)
93 ;; (test-case #C(1/2 .5e0) '(complex rational) nil t)
94 ;; (test-case #C(1/2 .5e0) '(complex (rational 1)) nil t)
95 ;; (test-case #C(1/2 .5e0) '(complex (or (rational -3 -2) (rational 1))) nil t)
96 ;; (test-case #C(1/2 .5e0) '(complex float) #C(.5e0 .5e0))
97 ;; (test-case #C(1/2 .5e0) '(complex double-float) #C(.5d0 .5d0))
98 ;; (test-case #C(1/2 .5e0) '(complex single-float) #C(.5f0 .5f0))
99 ;; (test-case #C(1/2 .5e0) '(complex integer) nil t)
100 ;; (test-case #C(1/2 .5e0) '(complex (or (real 1) (integer -1 0))) nil t)
104 (with-test (:name :coerce-symbol-to-fun)
105 (flet ((coerce-it (x)
106 (handler-case (sb-kernel:coerce-symbol-to-fun x)
107 (simple-error (c) (simple-condition-format-control c)))))
108 (assert (string= (coerce-it 'defun) "~S names a macro."))
109 (assert (string= (coerce-it 'progn) "~S names a special operator."))
110 (let ((foo (gensym)))
111 (eval `(defmacro ,foo () 5))
112 (setf (sb-int:info :function :kind foo) :function)
113 (assert (string= (coerce-it foo) "~S names a macro.")))
114 (let ((foo (gensym)))
115 (eval `(defun ,foo () 5))
116 (setf (sb-int:info :function :kind foo) :macro)
117 (assert (functionp (coerce-it foo))))))
119 (with-test (:name :no-coerce-macro-to-function)
120 ;; When compiled, we actually just pass the FDEFN-FUN
121 ;; of the FDEFN of AND even though AND is a standard macro
122 ;; (making this particularly stupid).
123 ;; But at least it's generally an improvement
124 ;; to fail earlier than later in many cases.
125 (multiple-value-bind (fun failure-p warnings)
126 (checked-compile '(lambda ()
127 (locally (declare (notinline sort))
128 (sort () #'< :key 'and)))
129 :allow-warnings t)
130 (declare (ignore failure-p))
131 (assert (= 1 (length warnings)))
132 (assert-error (funcall fun))))