1.0.28.21: further array typechecking optimization
[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 generated tests passing imply
339 ;;; that 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              (values (unless (eq '* (car dims))
361                        `((= (vector-length ,obj) ,@dims)))
362                      nil))
363             (t
364              (values (unless (eq '* (car dims))
365                        `((if (array-header-p ,obj)
366                              (= (%array-dimension ,obj 0) ,@dims)
367                              (= (vector-length ,obj) ,@dims))))
368                      nil))))))
369
370 ;;; Return forms to test that OBJ has the element-type specified by type
371 ;;; specified by TYPE, where STYPE is the type we have checked against (which
372 ;;; is the same but for dimensions and element type). If HEADERP is true, OBJ
373 ;;; is guaranteed to be an array-header.
374 (defun test-array-element-type (obj type stype headerp)
375   (declare (type array-type type stype))
376   (let ((obj `(truly-the ,(type-specifier stype) ,obj))
377         (eltype (array-type-specialized-element-type type)))
378     (unless (or (type= eltype (array-type-specialized-element-type stype))
379                 (eq eltype *wild-type*))
380       (let ((typecode (sb!vm:saetp-typecode (find-saetp-by-ctype eltype))))
381         (with-unique-names (data)
382          (if (and headerp (not (array-type-complexp stype)))
383              ;; If we know OBJ is an array header, and that the array is
384              ;; simple, we also know there is exactly one indirection to
385              ;; follow.
386              `((eq (%other-pointer-widetag (%array-data-vector ,obj)) ,typecode))
387              `((do ((,data ,(if headerp `(%array-data-vector ,obj) obj)
388                            (%array-data-vector ,data)))
389                    ((not (array-header-p ,data))
390                     (eq (%other-pointer-widetag ,data) ,typecode))))))))))
391
392 ;;; If we can find a type predicate that tests for the type without
393 ;;; dimensions, then use that predicate and test for dimensions.
394 ;;; Otherwise, just do %TYPEP.
395 (defun source-transform-array-typep (obj type)
396   (multiple-value-bind (pred stype) (find-supertype-predicate type)
397     (if (and (array-type-p stype)
398              ;; (If the element type hasn't been defined yet, it's
399              ;; not safe to assume here that it will eventually
400              ;; have (UPGRADED-ARRAY-ELEMENT-TYPE type)=T, so punt.)
401              (not (unknown-type-p (array-type-element-type type)))
402              (eq (array-type-complexp stype) (array-type-complexp type)))
403           (once-only ((n-obj obj))
404             (multiple-value-bind (tests headerp)
405                 (test-array-dimensions n-obj type stype)
406               `(and (,pred ,n-obj)
407                     ,@tests
408                     ,@(test-array-element-type n-obj type stype headerp))))
409           `(%typep ,obj ',(type-specifier type)))))
410
411 ;;; Transform a type test against some instance type. The type test is
412 ;;; flushed if the result is known at compile time. If not properly
413 ;;; named, error. If sealed and has no subclasses, just test for
414 ;;; layout-EQ. If a structure then test for layout-EQ and then a
415 ;;; general test based on layout-inherits. If safety is important,
416 ;;; then we also check whether the layout for the object is invalid
417 ;;; and signal an error if so. Otherwise, look up the indirect
418 ;;; class-cell and call CLASS-CELL-TYPEP at runtime.
419 (deftransform %instance-typep ((object spec) (* *) * :node node)
420   (aver (constant-lvar-p spec))
421   (let* ((spec (lvar-value spec))
422          (class (specifier-type spec))
423          (name (classoid-name class))
424          (otype (lvar-type object))
425          (layout (let ((res (info :type :compiler-layout name)))
426                    (if (and res (not (layout-invalid res)))
427                        res
428                        nil))))
429     (cond
430       ;; Flush tests whose result is known at compile time.
431       ((not (types-equal-or-intersect otype class))
432        nil)
433       ((csubtypep otype class)
434        t)
435       ;; If not properly named, error.
436       ((not (and name (eq (find-classoid name) class)))
437        (compiler-error "can't compile TYPEP of anonymous or undefined ~
438                         class:~%  ~S"
439                        class))
440       (t
441        ;; Delay the type transform to give type propagation a chance.
442        (delay-ir1-transform node :constraint)
443
444        ;; Otherwise transform the type test.
445        (multiple-value-bind (pred get-layout)
446            (cond
447              ((csubtypep class (specifier-type 'funcallable-instance))
448               (values 'funcallable-instance-p '%funcallable-instance-layout))
449              ((csubtypep class (specifier-type 'instance))
450               (values '%instancep '%instance-layout))
451              (t
452               (values '(lambda (x) (declare (ignore x)) t) 'layout-of)))
453          (cond
454            ((and (eq (classoid-state class) :sealed) layout
455                  (not (classoid-subclasses class)))
456             ;; Sealed and has no subclasses.
457             (let ((n-layout (gensym)))
458               `(and (,pred object)
459                     (let ((,n-layout (,get-layout object)))
460                       ,@(when (policy *lexenv* (>= safety speed))
461                               `((when (layout-invalid ,n-layout)
462                                   (%layout-invalid-error object ',layout))))
463                       (eq ,n-layout ',layout)))))
464            ((and (typep class 'structure-classoid) layout)
465             ;; structure type tests; hierarchical layout depths
466             (let ((depthoid (layout-depthoid layout))
467                   (n-layout (gensym)))
468               `(and (,pred object)
469                     (let ((,n-layout (,get-layout object)))
470                       ;; we used to check for invalid layouts here,
471                       ;; but in fact that's both unnecessary and
472                       ;; wrong; it's unnecessary because structure
473                       ;; classes can't be redefined, and it's wrong
474                       ;; because it is quite legitimate to pass an
475                       ;; object with an invalid layout to a structure
476                       ;; type test.
477                       (if (eq ,n-layout ',layout)
478                           t
479                           (and (> (layout-depthoid ,n-layout)
480                                   ,depthoid)
481                                (locally (declare (optimize (safety 0)))
482                                  ;; Use DATA-VECTOR-REF directly,
483                                  ;; since that's what SVREF in a
484                                  ;; SAFETY 0 lexenv will eventually be
485                                  ;; transformed to. This can give a
486                                  ;; large compilation speedup, since
487                                  ;; %INSTANCE-TYPEPs are frequently
488                                  ;; created during GENERATE-TYPE-CHECKS,
489                                  ;; and the normal aref transformation path
490                                  ;; is pretty heavy.
491                                  (eq (data-vector-ref (layout-inherits ,n-layout)
492                                                       ,depthoid)
493                                      ',layout))))))))
494            ((and layout (>= (layout-depthoid layout) 0))
495             ;; hierarchical layout depths for other things (e.g.
496             ;; CONDITION, STREAM)
497             (let ((depthoid (layout-depthoid layout))
498                   (n-layout (gensym))
499                   (n-inherits (gensym)))
500               `(and (,pred object)
501                     (let ((,n-layout (,get-layout object)))
502                       (when (layout-invalid ,n-layout)
503                         (setq ,n-layout (update-object-layout-or-invalid
504                                          object ',layout)))
505                       (if (eq ,n-layout ',layout)
506                           t
507                           (let ((,n-inherits (layout-inherits ,n-layout)))
508                             (declare (optimize (safety 0)))
509                             (and (> (length ,n-inherits) ,depthoid)
510                                  ;; See above.
511                                  (eq (data-vector-ref ,n-inherits ,depthoid)
512                                      ',layout))))))))
513            (t
514             (/noshow "default case -- ,PRED and CLASS-CELL-TYPEP")
515             `(and (,pred object)
516                   (classoid-cell-typep (,get-layout object)
517                                        ',(find-classoid-cell name :create t)
518                                        object)))))))))
519
520 ;;; If the specifier argument is a quoted constant, then we consider
521 ;;; converting into a simple predicate or other stuff. If the type is
522 ;;; constant, but we can't transform the call, then we convert to
523 ;;; %TYPEP. We only pass when the type is non-constant. This allows us
524 ;;; to recognize between calls that might later be transformed
525 ;;; successfully when a constant type is discovered. We don't give an
526 ;;; efficiency note when we pass, since the IR1 transform will give
527 ;;; one if necessary and appropriate.
528 ;;;
529 ;;; If the type is TYPE= to a type that has a predicate, then expand
530 ;;; to that predicate. Otherwise, we dispatch off of the type's type.
531 ;;; These transformations can increase space, but it is hard to tell
532 ;;; when, so we ignore policy and always do them.
533 (defun source-transform-typep (object type)
534   (let ((ctype (careful-specifier-type type)))
535     (or (when (not ctype)
536           (compiler-warn "illegal type specifier for TYPEP: ~S" type)
537           (return-from source-transform-typep (values nil t)))
538         (let ((pred (cdr (assoc ctype *backend-type-predicates*
539                                 :test #'type=))))
540           (when pred `(,pred ,object)))
541         (typecase ctype
542           (hairy-type
543            (source-transform-hairy-typep object ctype))
544           (negation-type
545            (source-transform-negation-typep object ctype))
546           (union-type
547            (source-transform-union-typep object ctype))
548           (intersection-type
549            (source-transform-intersection-typep object ctype))
550           (member-type
551            `(if (member ,object ',(member-type-members ctype)) t))
552           (args-type
553            (compiler-warn "illegal type specifier for TYPEP: ~S" type)
554            (return-from source-transform-typep (values nil t)))
555           (t nil))
556         (typecase ctype
557           (numeric-type
558            (source-transform-numeric-typep object ctype))
559           (classoid
560            `(%instance-typep ,object ',type))
561           (array-type
562            (source-transform-array-typep object ctype))
563           (cons-type
564            (source-transform-cons-typep object ctype))
565           (character-set-type
566            (source-transform-character-set-typep object ctype))
567           (t nil))
568         `(%typep ,object ',type))))
569
570 (define-source-transform typep (object spec)
571   ;; KLUDGE: It looks bad to only do this on explicitly quoted forms,
572   ;; since that would overlook other kinds of constants. But it turns
573   ;; out that the DEFTRANSFORM for TYPEP detects any constant
574   ;; lvar, transforms it into a quoted form, and gives this
575   ;; source transform another chance, so it all works out OK, in a
576   ;; weird roundabout way. -- WHN 2001-03-18
577   (if (and (consp spec)
578            (eq (car spec) 'quote)
579            (or (not *allow-instrumenting*)
580                (policy *lexenv* (= store-coverage-data 0))))
581       (source-transform-typep object (cadr spec))
582       (values nil t)))
583 \f
584 ;;;; coercion
585
586 ;;; Constant-folding.
587 ;;;
588 #-sb-xc-host
589 (defoptimizer (coerce optimizer) ((x type) node)
590   (when (and (constant-lvar-p x) (constant-lvar-p type))
591     (let ((value (lvar-value x)))
592       (when (or (numberp value) (characterp value))
593         (constant-fold-call node)
594         t))))
595
596 (deftransform coerce ((x type) (* *) * :node node)
597   (unless (constant-lvar-p type)
598     (give-up-ir1-transform))
599   (let ((tspec (ir1-transform-specifier-type (lvar-value type))))
600     (if (csubtypep (lvar-type x) tspec)
601         'x
602         ;; Note: The THE here makes sure that specifiers like
603         ;; (SINGLE-FLOAT 0.0 1.0) can raise a TYPE-ERROR.
604         `(the ,(lvar-value type)
605            ,(cond
606              ((csubtypep tspec (specifier-type 'double-float))
607               '(%double-float x))
608              ;; FIXME: #!+long-float (t ,(error "LONG-FLOAT case needed"))
609              ((csubtypep tspec (specifier-type 'float))
610               '(%single-float x))
611              ((and (csubtypep tspec (specifier-type 'simple-vector))
612                    ;; Can we avoid checking for dimension issues like
613                    ;; (COERCE FOO '(SIMPLE-VECTOR 5)) returning a
614                    ;; vector of length 6?
615                    (or (policy node (< safety 3)) ; no need in unsafe code
616                        (and (array-type-p tspec) ; no need when no dimensions
617                             (equal (array-type-dimensions tspec) '(*)))))
618               `(if (simple-vector-p x)
619                    x
620                    (replace (make-array (length x)) x)))
621              ;; FIXME: other VECTOR types?
622              (t
623               (give-up-ir1-transform)))))))
624
625