1.0.30.17: generalize the previous COERCE optimization a bit
[sbcl.git] / src / compiler / typetran.lisp
1 ;;;; This file contains stuff that implements the portable IR1
2 ;;;; semantics of type tests and coercion. The main thing we do is
3 ;;;; convert complex type operations into simpler code that can be
4 ;;;; compiled inline.
5
6 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; more information.
8 ;;;;
9 ;;;; This software is derived from the CMU CL system, which was
10 ;;;; written at Carnegie Mellon University and released into the
11 ;;;; public domain. The software is in the public domain and is
12 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
13 ;;;; files for more information.
14
15 (in-package "SB!C")
16 \f
17 ;;;; type predicate translation
18 ;;;;
19 ;;;; We maintain a bidirectional association between type predicates
20 ;;;; and the tested type. The presence of a predicate in this
21 ;;;; association implies that it is desirable to implement tests of
22 ;;;; this type using the predicate. These are either predicates that
23 ;;;; the back end is likely to have special knowledge about, or
24 ;;;; predicates so complex that the only reasonable implentation is
25 ;;;; via function call.
26 ;;;;
27 ;;;; Some standard types (such as ATOM) are best tested by letting the
28 ;;;; TYPEP source transform do its thing with the expansion. These
29 ;;;; types (and corresponding predicates) are not maintained in this
30 ;;;; association. In this case, there need not be any predicate
31 ;;;; function unless it is required by the Common Lisp specification.
32 ;;;;
33 ;;;; The mapping between predicates and type structures is considered
34 ;;;; part of the backend; different backends can support different
35 ;;;; sets of predicates.
36
37 ;;; Establish an association between the type predicate NAME and the
38 ;;; corresponding TYPE. This causes the type predicate to be
39 ;;; recognized for purposes of optimization.
40 (defmacro define-type-predicate (name type)
41   `(%define-type-predicate ',name ',type))
42 (defun %define-type-predicate (name specifier)
43   (let ((type (specifier-type specifier)))
44     (setf (gethash name *backend-predicate-types*) type)
45     (setf *backend-type-predicates*
46           (cons (cons type name)
47                 (remove name *backend-type-predicates*
48                         :key #'cdr)))
49     (%deftransform name '(function (t) *) #'fold-type-predicate)
50     name))
51 \f
52 ;;;; IR1 transforms
53
54 ;;; If we discover the type argument is constant during IR1
55 ;;; optimization, then give the source transform another chance. The
56 ;;; source transform can't pass, since we give it an explicit
57 ;;; constant. At worst, it will convert to %TYPEP, which will prevent
58 ;;; spurious attempts at transformation (and possible repeated
59 ;;; warnings.)
60 (deftransform typep ((object type) * * :node node)
61   (unless (constant-lvar-p type)
62     (give-up-ir1-transform "can't open-code test of non-constant type"))
63   (multiple-value-bind (expansion fail-p)
64       (source-transform-typep 'object (lvar-value type))
65     (if fail-p
66         (abort-ir1-transform)
67         expansion)))
68
69 ;;; If the lvar OBJECT definitely is or isn't of the specified
70 ;;; type, then return T or NIL as appropriate. Otherwise quietly
71 ;;; GIVE-UP-IR1-TRANSFORM.
72 (defun ir1-transform-type-predicate (object type)
73   (declare (type lvar object) (type ctype type))
74   (let ((otype (lvar-type object)))
75     (cond ((not (types-equal-or-intersect otype type))
76            nil)
77           ((csubtypep otype type)
78            t)
79           ((eq type *empty-type*)
80            nil)
81           (t
82            (give-up-ir1-transform)))))
83
84 ;;; Flush %TYPEP tests whose result is known at compile time.
85 (deftransform %typep ((object type))
86   (unless (constant-lvar-p type)
87     (give-up-ir1-transform))
88   (ir1-transform-type-predicate
89    object
90    (ir1-transform-specifier-type (lvar-value type))))
91
92 ;;; This is the IR1 transform for simple type predicates. It checks
93 ;;; whether the single argument is known to (not) be of the
94 ;;; appropriate type, expanding to T or NIL as appropriate.
95 (deftransform fold-type-predicate ((object) * * :node node :defun-only t)
96   (let ((ctype (gethash (leaf-source-name
97                          (ref-leaf
98                           (lvar-uses
99                            (basic-combination-fun node))))
100                         *backend-predicate-types*)))
101     (aver ctype)
102     (ir1-transform-type-predicate object ctype)))
103
104 ;;; If FIND-CLASSOID is called on a constant class, locate the
105 ;;; CLASSOID-CELL at load time.
106 (deftransform find-classoid ((name) ((constant-arg symbol)) *)
107   (let* ((name (lvar-value name))
108          (cell (find-classoid-cell name :create t)))
109     `(or (classoid-cell-classoid ',cell)
110          (error "class not yet defined: ~S" name))))
111 \f
112 ;;;; standard type predicates, i.e. those defined in package COMMON-LISP,
113 ;;;; plus at least one oddball (%INSTANCEP)
114 ;;;;
115 ;;;; Various other type predicates (e.g. low-level representation
116 ;;;; stuff like SIMPLE-ARRAY-SINGLE-FLOAT-P) are defined elsewhere.
117
118 ;;; FIXME: This function is only called once, at top level. Why not
119 ;;; just expand all its operations into toplevel code?
120 (defun !define-standard-type-predicates ()
121   (define-type-predicate arrayp array)
122   ; (The ATOM predicate is handled separately as (NOT CONS).)
123   (define-type-predicate bit-vector-p bit-vector)
124   (define-type-predicate characterp character)
125   (define-type-predicate compiled-function-p compiled-function)
126   (define-type-predicate complexp complex)
127   (define-type-predicate complex-rational-p (complex rational))
128   (define-type-predicate complex-float-p (complex float))
129   (define-type-predicate consp cons)
130   (define-type-predicate floatp float)
131   (define-type-predicate functionp function)
132   (define-type-predicate integerp integer)
133   (define-type-predicate keywordp keyword)
134   (define-type-predicate listp list)
135   (define-type-predicate null null)
136   (define-type-predicate numberp number)
137   (define-type-predicate rationalp rational)
138   (define-type-predicate realp real)
139   (define-type-predicate sequencep sequence)
140   (define-type-predicate extended-sequence-p extended-sequence)
141   (define-type-predicate simple-bit-vector-p simple-bit-vector)
142   (define-type-predicate simple-string-p simple-string)
143   (define-type-predicate simple-vector-p simple-vector)
144   (define-type-predicate stringp string)
145   (define-type-predicate %instancep instance)
146   (define-type-predicate funcallable-instance-p funcallable-instance)
147   (define-type-predicate symbolp symbol)
148   (define-type-predicate vectorp vector))
149 (!define-standard-type-predicates)
150 \f
151 ;;;; transforms for type predicates not implemented primitively
152 ;;;;
153 ;;;; See also VM dependent transforms.
154
155 (define-source-transform atom (x)
156   `(not (consp ,x)))
157 #!+sb-unicode
158 (define-source-transform base-char-p (x)
159   `(typep ,x 'base-char))
160 \f
161 ;;;; TYPEP source transform
162
163 ;;; Return a form that tests the variable N-OBJECT for being in the
164 ;;; binds specified by TYPE. BASE is the name of the base type, for
165 ;;; declaration. We make SAFETY locally 0 to inhibit any checking of
166 ;;; this assertion.
167 (defun transform-numeric-bound-test (n-object type base)
168   (declare (type numeric-type type))
169   (let ((low (numeric-type-low type))
170         (high (numeric-type-high type)))
171     `(locally
172        (declare (optimize (safety 0)))
173        (and ,@(when low
174                 (if (consp low)
175                     `((> (truly-the ,base ,n-object) ,(car low)))
176                     `((>= (truly-the ,base ,n-object) ,low))))
177             ,@(when high
178                 (if (consp high)
179                     `((< (truly-the ,base ,n-object) ,(car high)))
180                     `((<= (truly-the ,base ,n-object) ,high))))))))
181
182 ;;; Do source transformation of a test of a known numeric type. We can
183 ;;; assume that the type doesn't have a corresponding predicate, since
184 ;;; those types have already been picked off. In particular, CLASS
185 ;;; must be specified, since it is unspecified only in NUMBER and
186 ;;; COMPLEX. Similarly, we assume that COMPLEXP is always specified.
187 ;;;
188 ;;; For non-complex types, we just test that the number belongs to the
189 ;;; base type, and then test that it is in bounds. When CLASS is
190 ;;; INTEGER, we check to see whether the range is no bigger than
191 ;;; FIXNUM. If so, we check for FIXNUM instead of INTEGER. This allows
192 ;;; us to use fixnum comparison to test the bounds.
193 ;;;
194 ;;; For complex types, we must test for complex, then do the above on
195 ;;; both the real and imaginary parts. When CLASS is float, we need
196 ;;; only check the type of the realpart, since the format of the
197 ;;; realpart and the imagpart must be the same.
198 (defun source-transform-numeric-typep (object type)
199   (let* ((class (numeric-type-class type))
200          (base (ecase class
201                  (integer (containing-integer-type
202                            (if (numeric-type-complexp type)
203                                (modified-numeric-type type
204                                                       :complexp :real)
205                                type)))
206                  (rational 'rational)
207                  (float (or (numeric-type-format type) 'float))
208                  ((nil) 'real))))
209     (once-only ((n-object object))
210       (ecase (numeric-type-complexp type)
211         (:real
212          `(and (typep ,n-object ',base)
213                ,(transform-numeric-bound-test n-object type base)))
214         (:complex
215          `(and (complexp ,n-object)
216                ,(once-only ((n-real `(realpart (truly-the complex ,n-object)))
217                             (n-imag `(imagpart (truly-the complex ,n-object))))
218                   `(progn
219                      ,n-imag ; ignorable
220                      (and (typep ,n-real ',base)
221                           ,@(when (eq class 'integer)
222                               `((typep ,n-imag ',base)))
223                           ,(transform-numeric-bound-test n-real type base)
224                           ,(transform-numeric-bound-test n-imag type
225                                                          base))))))))))
226
227 ;;; Do the source transformation for a test of a hairy type. AND,
228 ;;; SATISFIES and NOT are converted into the obvious code. We convert
229 ;;; unknown types to %TYPEP, emitting an efficiency note if
230 ;;; appropriate.
231 (defun source-transform-hairy-typep (object type)
232   (declare (type hairy-type type))
233   (let ((spec (hairy-type-specifier type)))
234     (cond ((unknown-type-p type)
235            (when (policy *lexenv* (> speed inhibit-warnings))
236              (compiler-notify "can't open-code test of unknown type ~S"
237                               (type-specifier type)))
238            `(%typep ,object ',spec))
239           (t
240            (ecase (first spec)
241              (satisfies `(if (funcall #',(second spec) ,object) t nil))
242              ((not and)
243               (once-only ((n-obj object))
244                 `(,(first spec) ,@(mapcar (lambda (x)
245                                             `(typep ,n-obj ',x))
246                                           (rest spec))))))))))
247
248 (defun source-transform-negation-typep (object type)
249   (declare (type negation-type type))
250   (let ((spec (type-specifier (negation-type-type type))))
251     `(not (typep ,object ',spec))))
252
253 ;;; Do source transformation for TYPEP of a known union type. If a
254 ;;; union type contains LIST, then we pull that out and make it into a
255 ;;; single LISTP call.  Note that if SYMBOL is in the union, then LIST
256 ;;; will be a subtype even without there being any (member NIL).  We
257 ;;; currently just drop through to the general code in this case,
258 ;;; rather than trying to optimize it (but FIXME CSR 2004-04-05: it
259 ;;; wouldn't be hard to optimize it after all).
260 (defun source-transform-union-typep (object type)
261   (let* ((types (union-type-types type))
262          (type-cons (specifier-type 'cons))
263          (mtype (find-if #'member-type-p types))
264          (members (when mtype (member-type-members mtype))))
265     (if (and mtype
266              (memq nil members)
267              (memq type-cons types))
268         (once-only ((n-obj object))
269           `(or (listp ,n-obj)
270                (typep ,n-obj
271                       '(or ,@(mapcar #'type-specifier
272                                      (remove type-cons
273                                              (remove mtype types)))
274                         (member ,@(remove nil members))))))
275         (once-only ((n-obj object))
276           `(or ,@(mapcar (lambda (x)
277                            `(typep ,n-obj ',(type-specifier x)))
278                          types))))))
279
280 ;;; Do source transformation for TYPEP of a known intersection type.
281 (defun source-transform-intersection-typep (object type)
282   (once-only ((n-obj object))
283     `(and ,@(mapcar (lambda (x)
284                       `(typep ,n-obj ',(type-specifier x)))
285                     (intersection-type-types type)))))
286
287 ;;; If necessary recurse to check the cons type.
288 (defun source-transform-cons-typep (object type)
289   (let* ((car-type (cons-type-car-type type))
290          (cdr-type (cons-type-cdr-type type)))
291     (let ((car-test-p (not (type= car-type *universal-type*)))
292           (cdr-test-p (not (type= cdr-type *universal-type*))))
293       (if (and (not car-test-p) (not cdr-test-p))
294           `(consp ,object)
295           (once-only ((n-obj object))
296             `(and (consp ,n-obj)
297                   ,@(if car-test-p
298                         `((typep (car ,n-obj)
299                                  ',(type-specifier car-type))))
300                   ,@(if cdr-test-p
301                         `((typep (cdr ,n-obj)
302                                  ',(type-specifier cdr-type))))))))))
303
304 (defun source-transform-character-set-typep (object type)
305   (let ((pairs (character-set-type-pairs type)))
306     (if (and (= (length pairs) 1)
307             (= (caar pairs) 0)
308             (= (cdar pairs) (1- sb!xc:char-code-limit)))
309        `(characterp ,object)
310        (once-only ((n-obj object))
311          (let ((n-code (gensym "CODE")))
312            `(and (characterp ,n-obj)
313                  (let ((,n-code (sb!xc:char-code ,n-obj)))
314                    (or
315                     ,@(loop for pair in pairs
316                             collect
317                             `(<= ,(car pair) ,n-code ,(cdr pair)))))))))))
318
319 ;;; Return the predicate and type from the most specific entry in
320 ;;; *TYPE-PREDICATES* that is a supertype of TYPE.
321 (defun find-supertype-predicate (type)
322   (declare (type ctype type))
323   (let ((res nil)
324         (res-type nil))
325     (dolist (x *backend-type-predicates*)
326       (let ((stype (car x)))
327         (when (and (csubtypep type stype)
328                    (or (not res-type)
329                        (csubtypep stype res-type)))
330           (setq res-type stype)
331           (setq res (cdr x)))))
332     (values res res-type)))
333
334 ;;; Return forms to test that OBJ has the rank and dimensions
335 ;;; specified by TYPE, where STYPE is the type we have checked against
336 ;;; (which is the same but for dimensions and element type).
337 ;;;
338 ;;; Secondary return value is true if passing the generated tests implies that
339 ;;; the array has a header.
340 (defun test-array-dimensions (obj type stype)
341   (declare (type array-type type stype))
342   (let ((obj `(truly-the ,(type-specifier stype) ,obj))
343         (dims (array-type-dimensions type)))
344     (unless (or (eq dims '*)
345                 (equal dims (array-type-dimensions stype)))
346       (cond ((cdr dims)
347              (values `((array-header-p ,obj)
348                        ,@(when (eq (array-type-dimensions stype) '*)
349                                `((= (%array-rank ,obj) ,(length dims))))
350                        ,@(loop for d in dims
351                                for i from 0
352                                unless (eq '* d)
353                                collect `(= (%array-dimension ,obj ,i) ,d)))
354                      t))
355             ((not dims)
356              (values `((array-header-p ,obj)
357                        (= (%array-rank ,obj) 0))
358                      t))
359             ((not (array-type-complexp type))
360              (if (csubtypep stype (specifier-type 'vector))
361                  (values (unless (eq '* (car dims))
362                            `((= (vector-length ,obj) ,@dims)))
363                          nil)
364                  (values (if (eq '* (car dims))
365                              `((not (array-header-p ,obj)))
366                              `((not (array-header-p ,obj))
367                                (= (vector-length ,obj) ,@dims)))
368                          nil)))
369             (t
370              (values (unless (eq '* (car dims))
371                        `((if (array-header-p ,obj)
372                              (= (%array-dimension ,obj 0) ,@dims)
373                              (= (vector-length ,obj) ,@dims))))
374                      nil))))))
375
376 ;;; Return forms to test that OBJ has the element-type specified by type
377 ;;; specified by TYPE, where STYPE is the type we have checked against (which
378 ;;; is the same but for dimensions and element type). If HEADERP is true, OBJ
379 ;;; is guaranteed to be an array-header.
380 (defun test-array-element-type (obj type stype headerp)
381   (declare (type array-type type stype))
382   (let ((obj `(truly-the ,(type-specifier stype) ,obj))
383         (eltype (array-type-specialized-element-type type)))
384     (unless (or (type= eltype (array-type-specialized-element-type stype))
385                 (eq eltype *wild-type*))
386       (let ((typecode (sb!vm:saetp-typecode (find-saetp-by-ctype eltype))))
387         (with-unique-names (data)
388          (if (and headerp (not (array-type-complexp stype)))
389              ;; If we know OBJ is an array header, and that the array is
390              ;; simple, we also know there is exactly one indirection to
391              ;; follow.
392              `((eq (%other-pointer-widetag (%array-data-vector ,obj)) ,typecode))
393              `((do ((,data ,(if headerp `(%array-data-vector ,obj) obj)
394                            (%array-data-vector ,data)))
395                    ((not (array-header-p ,data))
396                     (eq (%other-pointer-widetag ,data) ,typecode))))))))))
397
398 ;;; If we can find a type predicate that tests for the type without
399 ;;; dimensions, then use that predicate and test for dimensions.
400 ;;; Otherwise, just do %TYPEP.
401 (defun source-transform-array-typep (obj type)
402   (multiple-value-bind (pred stype) (find-supertype-predicate type)
403     (if (and (array-type-p stype)
404              ;; (If the element type hasn't been defined yet, it's
405              ;; not safe to assume here that it will eventually
406              ;; have (UPGRADED-ARRAY-ELEMENT-TYPE type)=T, so punt.)
407              (not (unknown-type-p (array-type-element-type type)))
408              (eq (array-type-complexp stype) (array-type-complexp type)))
409           (once-only ((n-obj obj))
410             (multiple-value-bind (tests headerp)
411                 (test-array-dimensions n-obj type stype)
412               `(and (,pred ,n-obj)
413                     ,@tests
414                     ,@(test-array-element-type n-obj type stype headerp))))
415           `(%typep ,obj ',(type-specifier type)))))
416
417 ;;; Transform a type test against some instance type. The type test is
418 ;;; flushed if the result is known at compile time. If not properly
419 ;;; named, error. If sealed and has no subclasses, just test for
420 ;;; layout-EQ. If a structure then test for layout-EQ and then a
421 ;;; general test based on layout-inherits. If safety is important,
422 ;;; then we also check whether the layout for the object is invalid
423 ;;; and signal an error if so. Otherwise, look up the indirect
424 ;;; class-cell and call CLASS-CELL-TYPEP at runtime.
425 (deftransform %instance-typep ((object spec) (* *) * :node node)
426   (aver (constant-lvar-p spec))
427   (let* ((spec (lvar-value spec))
428          (class (specifier-type spec))
429          (name (classoid-name class))
430          (otype (lvar-type object))
431          (layout (let ((res (info :type :compiler-layout name)))
432                    (if (and res (not (layout-invalid res)))
433                        res
434                        nil))))
435     (cond
436       ;; Flush tests whose result is known at compile time.
437       ((not (types-equal-or-intersect otype class))
438        nil)
439       ((csubtypep otype class)
440        t)
441       ;; If not properly named, error.
442       ((not (and name (eq (find-classoid name) class)))
443        (compiler-error "can't compile TYPEP of anonymous or undefined ~
444                         class:~%  ~S"
445                        class))
446       (t
447        ;; Delay the type transform to give type propagation a chance.
448        (delay-ir1-transform node :constraint)
449
450        ;; Otherwise transform the type test.
451        (multiple-value-bind (pred get-layout)
452            (cond
453              ((csubtypep class (specifier-type 'funcallable-instance))
454               (values 'funcallable-instance-p '%funcallable-instance-layout))
455              ((csubtypep class (specifier-type 'instance))
456               (values '%instancep '%instance-layout))
457              (t
458               (values '(lambda (x) (declare (ignore x)) t) 'layout-of)))
459          (cond
460            ((and (eq (classoid-state class) :sealed) layout
461                  (not (classoid-subclasses class)))
462             ;; Sealed and has no subclasses.
463             (let ((n-layout (gensym)))
464               `(and (,pred object)
465                     (let ((,n-layout (,get-layout object)))
466                       ,@(when (policy *lexenv* (>= safety speed))
467                               `((when (layout-invalid ,n-layout)
468                                   (%layout-invalid-error object ',layout))))
469                       (eq ,n-layout ',layout)))))
470            ((and (typep class 'structure-classoid) layout)
471             ;; structure type tests; hierarchical layout depths
472             (let ((depthoid (layout-depthoid layout))
473                   (n-layout (gensym)))
474               `(and (,pred object)
475                     (let ((,n-layout (,get-layout object)))
476                       ;; we used to check for invalid layouts here,
477                       ;; but in fact that's both unnecessary and
478                       ;; wrong; it's unnecessary because structure
479                       ;; classes can't be redefined, and it's wrong
480                       ;; because it is quite legitimate to pass an
481                       ;; object with an invalid layout to a structure
482                       ;; type test.
483                       (if (eq ,n-layout ',layout)
484                           t
485                           (and (> (layout-depthoid ,n-layout)
486                                   ,depthoid)
487                                (locally (declare (optimize (safety 0)))
488                                  ;; Use DATA-VECTOR-REF directly,
489                                  ;; since that's what SVREF in a
490                                  ;; SAFETY 0 lexenv will eventually be
491                                  ;; transformed to. This can give a
492                                  ;; large compilation speedup, since
493                                  ;; %INSTANCE-TYPEPs are frequently
494                                  ;; created during GENERATE-TYPE-CHECKS,
495                                  ;; and the normal aref transformation path
496                                  ;; is pretty heavy.
497                                  (eq (data-vector-ref (layout-inherits ,n-layout)
498                                                       ,depthoid)
499                                      ',layout))))))))
500            ((and layout (>= (layout-depthoid layout) 0))
501             ;; hierarchical layout depths for other things (e.g.
502             ;; CONDITION, STREAM)
503             (let ((depthoid (layout-depthoid layout))
504                   (n-layout (gensym))
505                   (n-inherits (gensym)))
506               `(and (,pred object)
507                     (let ((,n-layout (,get-layout object)))
508                       (when (layout-invalid ,n-layout)
509                         (setq ,n-layout (update-object-layout-or-invalid
510                                          object ',layout)))
511                       (if (eq ,n-layout ',layout)
512                           t
513                           (let ((,n-inherits (layout-inherits ,n-layout)))
514                             (declare (optimize (safety 0)))
515                             (and (> (length ,n-inherits) ,depthoid)
516                                  ;; See above.
517                                  (eq (data-vector-ref ,n-inherits ,depthoid)
518                                      ',layout))))))))
519            (t
520             (/noshow "default case -- ,PRED and CLASS-CELL-TYPEP")
521             `(and (,pred object)
522                   (classoid-cell-typep (,get-layout object)
523                                        ',(find-classoid-cell name :create t)
524                                        object)))))))))
525
526 ;;; If the specifier argument is a quoted constant, then we consider
527 ;;; converting into a simple predicate or other stuff. If the type is
528 ;;; constant, but we can't transform the call, then we convert to
529 ;;; %TYPEP. We only pass when the type is non-constant. This allows us
530 ;;; to recognize between calls that might later be transformed
531 ;;; successfully when a constant type is discovered. We don't give an
532 ;;; efficiency note when we pass, since the IR1 transform will give
533 ;;; one if necessary and appropriate.
534 ;;;
535 ;;; If the type is TYPE= to a type that has a predicate, then expand
536 ;;; to that predicate. Otherwise, we dispatch off of the type's type.
537 ;;; These transformations can increase space, but it is hard to tell
538 ;;; when, so we ignore policy and always do them.
539 (defun source-transform-typep (object type)
540   (let ((ctype (careful-specifier-type type)))
541     (or (when (not ctype)
542           (compiler-warn "illegal type specifier for TYPEP: ~S" type)
543           (return-from source-transform-typep (values nil t)))
544         (let ((pred (cdr (assoc ctype *backend-type-predicates*
545                                 :test #'type=))))
546           (when pred `(,pred ,object)))
547         (typecase ctype
548           (hairy-type
549            (source-transform-hairy-typep object ctype))
550           (negation-type
551            (source-transform-negation-typep object ctype))
552           (union-type
553            (source-transform-union-typep object ctype))
554           (intersection-type
555            (source-transform-intersection-typep object ctype))
556           (member-type
557            `(if (member ,object ',(member-type-members ctype)) t))
558           (args-type
559            (compiler-warn "illegal type specifier for TYPEP: ~S" type)
560            (return-from source-transform-typep (values nil t)))
561           (t nil))
562         (typecase ctype
563           (numeric-type
564            (source-transform-numeric-typep object ctype))
565           (classoid
566            `(%instance-typep ,object ',type))
567           (array-type
568            (source-transform-array-typep object ctype))
569           (cons-type
570            (source-transform-cons-typep object ctype))
571           (character-set-type
572            (source-transform-character-set-typep object ctype))
573           (t nil))
574         `(%typep ,object ',type))))
575
576 (define-source-transform typep (object spec)
577   ;; KLUDGE: It looks bad to only do this on explicitly quoted forms,
578   ;; since that would overlook other kinds of constants. But it turns
579   ;; out that the DEFTRANSFORM for TYPEP detects any constant
580   ;; lvar, transforms it into a quoted form, and gives this
581   ;; source transform another chance, so it all works out OK, in a
582   ;; weird roundabout way. -- WHN 2001-03-18
583   (if (and (consp spec)
584            (eq (car spec) 'quote)
585            (or (not *allow-instrumenting*)
586                (policy *lexenv* (= store-coverage-data 0))))
587       (source-transform-typep object (cadr spec))
588       (values nil t)))
589 \f
590 ;;;; coercion
591
592 ;;; Constant-folding.
593 ;;;
594 #-sb-xc-host
595 (defoptimizer (coerce optimizer) ((x type) node)
596   (when (and (constant-lvar-p x) (constant-lvar-p type))
597     (let ((value (lvar-value x)))
598       (when (or (numberp value) (characterp value))
599         (constant-fold-call node)
600         t))))
601
602 (deftransform coerce ((x type) (* *) * :node node)
603   (unless (constant-lvar-p type)
604     (give-up-ir1-transform))
605   (let* ((tval (lvar-value type))
606          (tspec (ir1-transform-specifier-type tval)))
607     (if (csubtypep (lvar-type x) tspec)
608         'x
609         ;; Note: The THE here makes sure that specifiers like
610         ;; (SINGLE-FLOAT 0.0 1.0) can raise a TYPE-ERROR.
611         `(the ,(lvar-value type)
612            ,(cond
613              ((csubtypep tspec (specifier-type 'double-float))
614               '(%double-float x))
615              ;; FIXME: #!+long-float (t ,(error "LONG-FLOAT case needed"))
616              ((csubtypep tspec (specifier-type 'float))
617               '(%single-float x))
618              ;; Special case STRING and SIMPLE-STRING as they are union types
619              ;; in SBCL.
620              ((member tval '(string simple-string))
621               `(if (typep x ',tval)
622                    x
623                    (replace (make-array (length x) :element-type 'character) x)))
624              ;; Handle specialized element types for 1D arrays.
625              ((csubtypep tspec (specifier-type '(array * (*))))
626               ;; Can we avoid checking for dimension issues like (COERCE FOO
627               ;; '(SIMPLE-VECTOR 5)) returning a vector of length 6?
628               (if (or (policy node (< safety 3)) ; no need in unsafe code
629                       (and (array-type-p tspec)  ; no need when no dimensions
630                            (equal (array-type-dimensions tspec) '(*))))
631                   ;; We can!
632                   (let ((array-type
633                          (if (csubtypep tspec (specifier-type 'simple-array))
634                              'simple-array
635                              'array)))
636                     (dolist (etype
637                               #+sb-xc-host '(t bit character)
638                               #-sb-xc-host sb!kernel::*specialized-array-element-types*
639                              (give-up-ir1-transform))
640                       (when etype
641                         (let ((spec `(,array-type ,etype (*))))
642                           (when (csubtypep tspec (specifier-type spec))
643                             ;; Is the result required to be non-simple?
644                             (let ((result-simple
645                                    (or (eq 'simple-array array-type)
646                                        (neq *empty-type*
647                                             (type-intersection
648                                              tspec (specifier-type 'simple-array))))))
649                               (return
650                                 `(if (typep x ',spec)
651                                      x
652                                      (replace
653                                       (make-array (length x) :element-type ',etype
654                                                   ,@(unless result-simple
655                                                             (list :fill-pointer t
656                                                                   :adjustable t)))
657                                       x)))))))))
658                   ;; No, duh. Dimension checking required.
659                   (give-up-ir1-transform
660                    "~@<~S specifies dimensions other than (*) in safe code.~:@>"
661                    tval)))
662              (t
663               (give-up-ir1-transform
664                "~@<open coding coercion to ~S not implemented.~:@>"
665                tval)))))))