1 ;;;; This file contains the definition of non-CLASS types (e.g.
2 ;;;; subtypes of interesting BUILT-IN-CLASSes) and the interfaces to
3 ;;;; the type system. Common Lisp type specifiers are parsed into a
4 ;;;; somewhat canonical internal type representation that supports
5 ;;;; type union, intersection, etc. (Except that ALIEN types have
8 ;;;; This software is part of the SBCL system. See the README file for
11 ;;;; This software is derived from the CMU CL system, which was
12 ;;;; written at Carnegie Mellon University and released into the
13 ;;;; public domain. The software is in the public domain and is
14 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
15 ;;;; files for more information.
17 (in-package "SB!KERNEL")
19 (/show0
"late-type.lisp 19")
21 (!begin-collecting-cold-init-forms
)
23 ;;; ### Remaining incorrectnesses:
25 ;;; There are all sorts of nasty problems with open bounds on FLOAT
26 ;;; types (and probably FLOAT types in general.)
28 ;;; This condition is signalled whenever we make a UNKNOWN-TYPE so that
29 ;;; compiler warnings can be emitted as appropriate.
30 (define-condition parse-unknown-type
(condition)
31 ((specifier :reader parse-unknown-type-specifier
:initarg
:specifier
)))
33 ;;; FIXME: This really should go away. Alas, it doesn't seem to be so
34 ;;; simple to make it go away.. (See bug 123 in BUGS file.)
35 (defvar *use-implementation-types
* t
; actually initialized in cold init
37 "*USE-IMPLEMENTATION-TYPES* is a semi-public flag which determines how
38 restrictive we are in determining type membership. If two types are the
39 same in the implementation, then we will consider them them the same when
40 this switch is on. When it is off, we try to be as restrictive as the
41 language allows, allowing us to detect more errors. Currently, this only
42 affects array types.")
43 (!cold-init-forms
(setq *use-implementation-types
* t
))
45 ;;; These functions are used as method for types which need a complex
46 ;;; subtypep method to handle some superclasses, but cover a subtree
47 ;;; of the type graph (i.e. there is no simple way for any other type
48 ;;; class to be a subtype.) There are always still complex ways,
49 ;;; namely UNION and MEMBER types, so we must give TYPE1's method a
50 ;;; chance to run, instead of immediately returning NIL, T.
51 (defun delegate-complex-subtypep-arg2 (type1 type2
)
53 (type-class-complex-subtypep-arg1
54 (type-class-info type1
))))
56 (funcall subtypep-arg1 type1 type2
)
58 (defun delegate-complex-intersection2 (type1 type2
)
59 (let ((method (type-class-complex-intersection2 (type-class-info type1
))))
60 (if (and method
(not (eq method
#'delegate-complex-intersection2
)))
61 (funcall method type2 type1
)
62 (hierarchical-intersection2 type1 type2
))))
64 ;;; This is used by !DEFINE-SUPERCLASSES to define the SUBTYPE-ARG1
65 ;;; method. INFO is a list of conses
66 ;;; (SUPERCLASS-CLASS . {GUARD-TYPE-SPECIFIER | NIL}).
67 (defun !has-superclasses-complex-subtypep-arg1
(type1 type2 info
)
68 ;; If TYPE2 might be concealing something related to our class
70 (if (type-might-contain-other-types-p type2
)
71 ;; too confusing, gotta punt
73 ;; ordinary case expected by old CMU CL code, where the taxonomy
74 ;; of TYPE2's representation accurately reflects the taxonomy of
77 ;; FIXME: This old CMU CL code probably deserves a comment
78 ;; explaining to us mere mortals how it works...
79 (and (sb!xc
:typep type2
'classoid
)
81 (when (or (not (cdr x
))
82 (csubtypep type1
(specifier-type (cdr x
))))
84 (or (eq type2
(car x
))
85 (let ((inherits (layout-inherits
86 (classoid-layout (car x
)))))
87 (dotimes (i (length inherits
) nil
)
88 (when (eq type2
(layout-classoid (svref inherits i
)))
92 ;;; This function takes a list of specs, each of the form
93 ;;; (SUPERCLASS-NAME &OPTIONAL GUARD).
94 ;;; Consider one spec (with no guard): any instance of the named
95 ;;; TYPE-CLASS is also a subtype of the named superclass and of any of
96 ;;; its superclasses. If there are multiple specs, then some will have
97 ;;; guards. We choose the first spec whose guard is a supertype of
98 ;;; TYPE1 and use its superclass. In effect, a sequence of guards
101 ;;; G0,(and G1 (not G0)), (and G2 (not (or G0 G1))).
103 ;;; WHEN controls when the forms are executed.
104 (defmacro !define-superclasses
(type-class-name specs when
)
105 (with-unique-names (type-class info
)
107 (let ((,type-class
(type-class-or-lose ',type-class-name
))
108 (,info
(mapcar (lambda (spec)
110 (super &optional guard
)
112 (cons (find-classoid super
) guard
)))
114 (setf (type-class-complex-subtypep-arg1 ,type-class
)
115 (lambda (type1 type2
)
116 (!has-superclasses-complex-subtypep-arg1 type1 type2
,info
)))
117 (setf (type-class-complex-subtypep-arg2 ,type-class
)
118 #'delegate-complex-subtypep-arg2
)
119 (setf (type-class-complex-intersection2 ,type-class
)
120 #'delegate-complex-intersection2
)))))
122 ;;;; FUNCTION and VALUES types
124 ;;;; Pretty much all of the general type operations are illegal on
125 ;;;; VALUES types, since we can't discriminate using them, do
126 ;;;; SUBTYPEP, etc. FUNCTION types are acceptable to the normal type
127 ;;;; operations, but are generally considered to be equivalent to
128 ;;;; FUNCTION. These really aren't true types in any type theoretic
129 ;;;; sense, but we still parse them into CTYPE structures for two
132 ;;;; -- Parsing and unparsing work the same way, and indeed we can't
133 ;;;; tell whether a type is a function or values type without
135 ;;;; -- Many of the places that can be annotated with real types can
136 ;;;; also be annotated with function or values types.
138 ;;; the description of a &KEY argument
139 (defstruct (key-info #-sb-xc-host
(:pure t
)
141 ;; the key (not necessarily a keyword in ANSI Common Lisp)
142 (name (missing-arg) :type symbol
)
143 ;; the type of the argument value
144 (type (missing-arg) :type ctype
))
146 (!define-type-method
(values :simple-subtypep
:complex-subtypep-arg1
)
148 (declare (ignore type2
))
149 ;; FIXME: should be TYPE-ERROR, here and in next method
150 (error "SUBTYPEP is illegal on this type:~% ~S" (type-specifier type1
)))
152 (!define-type-method
(values :complex-subtypep-arg2
)
154 (declare (ignore type1
))
155 (error "SUBTYPEP is illegal on this type:~% ~S" (type-specifier type2
)))
157 (!define-type-method
(values :negate
) (type)
158 (error "NOT VALUES too confusing on ~S" (type-specifier type
)))
160 (!define-type-method
(values :unparse
) (type)
162 (let ((unparsed (unparse-args-types type
)))
163 (if (or (values-type-optional type
)
164 (values-type-rest type
)
165 (values-type-allowp type
))
167 (nconc unparsed
'(&optional
))))))
169 ;;; Return true if LIST1 and LIST2 have the same elements in the same
170 ;;; positions according to TYPE=. We return NIL, NIL if there is an
171 ;;; uncertain comparison.
172 (defun type=-list
(list1 list2
)
173 (declare (list list1 list2
))
174 (do ((types1 list1
(cdr types1
))
175 (types2 list2
(cdr types2
)))
176 ((or (null types1
) (null types2
))
177 (if (or types1 types2
)
180 (multiple-value-bind (val win
)
181 (type= (first types1
) (first types2
))
183 (return (values nil nil
)))
185 (return (values nil t
))))))
187 (!define-type-method
(values :simple-
=) (type1 type2
)
188 (type=-args type1 type2
))
190 (!define-type-class function
)
192 ;;; a flag that we can bind to cause complex function types to be
193 ;;; unparsed as FUNCTION. This is useful when we want a type that we
194 ;;; can pass to TYPEP.
195 (defvar *unparse-fun-type-simplify
*)
196 (!cold-init-forms
(setq *unparse-fun-type-simplify
* nil
))
198 (!define-type-method
(function :negate
) (type)
199 (error "NOT FUNCTION too confusing on ~S" (type-specifier type
)))
201 (!define-type-method
(function :unparse
) (type)
202 (if *unparse-fun-type-simplify
*
205 (if (fun-type-wild-args type
)
207 (unparse-args-types type
))
209 (fun-type-returns type
)))))
211 ;;; The meaning of this is a little confused. On the one hand, all
212 ;;; function objects are represented the same way regardless of the
213 ;;; arglists and return values, and apps don't get to ask things like
214 ;;; (TYPEP #'FOO (FUNCTION (FIXNUM) *)) in any meaningful way. On the
215 ;;; other hand, Python wants to reason about function types. So...
216 (!define-type-method
(function :simple-subtypep
) (type1 type2
)
217 (flet ((fun-type-simple-p (type)
218 (not (or (fun-type-rest type
)
219 (fun-type-keyp type
))))
220 (every-csubtypep (types1 types2
)
224 do
(multiple-value-bind (res sure-p
)
226 (unless res
(return (values res sure-p
))))
227 finally
(return (values t t
)))))
228 (and/type
(values-subtypep (fun-type-returns type1
)
229 (fun-type-returns type2
))
230 (cond ((fun-type-wild-args type2
) (values t t
))
231 ((fun-type-wild-args type1
)
232 (cond ((fun-type-keyp type2
) (values nil nil
))
233 ((not (fun-type-rest type2
)) (values nil t
))
234 ((not (null (fun-type-required type2
)))
236 (t (and/type
(type= *universal-type
*
237 (fun-type-rest type2
))
242 ((not (and (fun-type-simple-p type1
)
243 (fun-type-simple-p type2
)))
245 (t (multiple-value-bind (min1 max1
) (fun-type-nargs type1
)
246 (multiple-value-bind (min2 max2
) (fun-type-nargs type2
)
247 (cond ((or (> max1 max2
) (< min1 min2
))
249 ((and (= min1 min2
) (= max1 max2
))
250 (and/type
(every-csubtypep
251 (fun-type-required type1
)
252 (fun-type-required type2
))
254 (fun-type-optional type1
)
255 (fun-type-optional type2
))))
258 (fun-type-required type1
)
259 (fun-type-optional type1
))
261 (fun-type-required type2
)
262 (fun-type-optional type2
))))))))))))
264 (!define-superclasses function
((function)) !cold-init-forms
)
266 ;;; The union or intersection of two FUNCTION types is FUNCTION.
267 (!define-type-method
(function :simple-union2
) (type1 type2
)
268 (declare (ignore type1 type2
))
269 (specifier-type 'function
))
270 (!define-type-method
(function :simple-intersection2
) (type1 type2
)
271 (let ((ftype (specifier-type 'function
)))
272 (cond ((eq type1 ftype
) type2
)
273 ((eq type2 ftype
) type1
)
274 (t (let ((rtype (values-type-intersection (fun-type-returns type1
)
275 (fun-type-returns type2
))))
276 (flet ((change-returns (ftype rtype
)
277 (declare (type fun-type ftype
) (type ctype rtype
))
278 (make-fun-type :required
(fun-type-required ftype
)
279 :optional
(fun-type-optional ftype
)
280 :keyp
(fun-type-keyp ftype
)
281 :keywords
(fun-type-keywords ftype
)
282 :allowp
(fun-type-allowp ftype
)
285 ((fun-type-wild-args type1
)
286 (if (fun-type-wild-args type2
)
287 (make-fun-type :wild-args t
289 (change-returns type2 rtype
)))
290 ((fun-type-wild-args type2
)
291 (change-returns type1 rtype
))
292 (t (multiple-value-bind (req opt rest
)
293 (args-type-op type1 type2
#'type-intersection
#'max
)
294 (make-fun-type :required req
298 :allowp
(and (fun-type-allowp type1
)
299 (fun-type-allowp type2
))
300 :returns rtype
))))))))))
302 ;;; The union or intersection of a subclass of FUNCTION with a
303 ;;; FUNCTION type is somewhat complicated.
304 (!define-type-method
(function :complex-intersection2
) (type1 type2
)
306 ((type= type1
(specifier-type 'function
)) type2
)
307 ((csubtypep type1
(specifier-type 'function
)) nil
)
308 (t :call-other-method
)))
309 (!define-type-method
(function :complex-union2
) (type1 type2
)
310 (declare (ignore type2
))
311 ;; TYPE2 is a FUNCTION type. If TYPE1 is a classoid type naming
312 ;; FUNCTION, then it is the union of the two; otherwise, there is no
315 ((type= type1
(specifier-type 'function
)) type1
)
318 (!define-type-method
(function :simple-
=) (type1 type2
)
319 (macrolet ((compare (comparator field
)
320 (let ((reader (symbolicate '#:fun-type- field
)))
321 `(,comparator
(,reader type1
) (,reader type2
)))))
322 (and/type
(compare type
= returns
)
323 (cond ((neq (fun-type-wild-args type1
) (fun-type-wild-args type2
))
325 ((eq (fun-type-wild-args type1
) t
)
327 (t (type=-args type1 type2
))))))
329 (!define-type-class constant
:inherits values
)
331 (!define-type-method
(constant :negate
) (type)
332 (error "NOT CONSTANT too confusing on ~S" (type-specifier type
)))
334 (!define-type-method
(constant :unparse
) (type)
335 `(constant-arg ,(type-specifier (constant-type-type type
))))
337 (!define-type-method
(constant :simple-
=) (type1 type2
)
338 (type= (constant-type-type type1
) (constant-type-type type2
)))
340 (!def-type-translator constant-arg
(type)
341 (make-constant-type :type
(single-value-specifier-type type
)))
343 ;;; Return the lambda-list-like type specification corresponding
345 (declaim (ftype (function (args-type) list
) unparse-args-types
))
346 (defun unparse-args-types (type)
349 (dolist (arg (args-type-required type
))
350 (result (type-specifier arg
)))
352 (when (args-type-optional type
)
354 (dolist (arg (args-type-optional type
))
355 (result (type-specifier arg
))))
357 (when (args-type-rest type
)
359 (result (type-specifier (args-type-rest type
))))
361 (when (args-type-keyp type
)
363 (dolist (key (args-type-keywords type
))
364 (result (list (key-info-name key
)
365 (type-specifier (key-info-type key
))))))
367 (when (args-type-allowp type
)
368 (result '&allow-other-keys
))
372 (!def-type-translator function
(&optional
(args '*) (result '*))
373 (make-fun-type :args args
374 :returns
(coerce-to-values (values-specifier-type result
))))
376 (!def-type-translator values
(&rest values
)
377 (make-values-type :args values
))
379 ;;;; VALUES types interfaces
381 ;;;; We provide a few special operations that can be meaningfully used
382 ;;;; on VALUES types (as well as on any other type).
384 (defun type-single-value-p (type)
385 (and (values-type-p type
)
386 (not (values-type-rest type
))
387 (null (values-type-optional type
))
388 (singleton-p (values-type-required type
))))
390 ;;; Return the type of the first value indicated by TYPE. This is used
391 ;;; by people who don't want to have to deal with VALUES types.
392 #!-sb-fluid
(declaim (freeze-type values-type
))
393 ; (inline single-value-type))
394 (defun single-value-type (type)
395 (declare (type ctype type
))
396 (cond ((eq type
*wild-type
*)
398 ((eq type
*empty-type
*)
400 ((not (values-type-p type
))
402 (t (or (car (args-type-required type
))
403 (car (args-type-optional type
))
404 (args-type-rest type
)
405 (specifier-type 'null
)))))
407 ;;; Return the minimum number of arguments that a function can be
408 ;;; called with, and the maximum number or NIL. If not a function
409 ;;; type, return NIL, NIL.
410 (defun fun-type-nargs (type)
411 (declare (type ctype type
))
412 (if (and (fun-type-p type
) (not (fun-type-wild-args type
)))
413 (let ((fixed (length (args-type-required type
))))
414 (if (or (args-type-rest type
)
415 (args-type-keyp type
)
416 (args-type-allowp type
))
418 (values fixed
(+ fixed
(length (args-type-optional type
))))))
421 ;;; Determine whether TYPE corresponds to a definite number of values.
422 ;;; The first value is a list of the types for each value, and the
423 ;;; second value is the number of values. If the number of values is
424 ;;; not fixed, then return NIL and :UNKNOWN.
425 (defun values-types (type)
426 (declare (type ctype type
))
427 (cond ((or (eq type
*wild-type
*) (eq type
*empty-type
*))
428 (values nil
:unknown
))
429 ((or (args-type-optional type
)
430 (args-type-rest type
))
431 (values nil
:unknown
))
433 (let ((req (args-type-required type
)))
434 (values req
(length req
))))))
436 ;;; Return two values:
437 ;;; 1. A list of all the positional (fixed and optional) types.
438 ;;; 2. The &REST type (if any). If no &REST, then the DEFAULT-TYPE.
439 (defun values-type-types (type &optional
(default-type *empty-type
*))
440 (declare (type ctype type
))
441 (if (eq type
*wild-type
*)
442 (values nil
*universal-type
*)
443 (values (append (args-type-required type
)
444 (args-type-optional type
))
445 (cond ((args-type-rest type
))
448 ;;; types of values in (the <type> (values o_1 ... o_n))
449 (defun values-type-out (type count
)
450 (declare (type ctype type
) (type unsigned-byte count
))
451 (if (eq type
*wild-type
*)
452 (make-list count
:initial-element
*universal-type
*)
454 (flet ((process-types (types)
455 (loop for type in types
459 (process-types (values-type-required type
))
460 (process-types (values-type-optional type
))
462 (loop with rest
= (the ctype
(values-type-rest type
))
467 ;;; types of variable in (m-v-bind (v_1 ... v_n) (the <type> ...
468 (defun values-type-in (type count
)
469 (declare (type ctype type
) (type unsigned-byte count
))
470 (if (eq type
*wild-type
*)
471 (make-list count
:initial-element
*universal-type
*)
473 (let ((null-type (specifier-type 'null
)))
474 (loop for type in
(values-type-required type
)
478 (loop for type in
(values-type-optional type
)
481 do
(res (type-union type null-type
)))
483 (loop with rest
= (acond ((values-type-rest type
)
484 (type-union it null-type
))
490 ;;; Return a list of OPERATION applied to the types in TYPES1 and
491 ;;; TYPES2, padding with REST2 as needed. TYPES1 must not be shorter
492 ;;; than TYPES2. The second value is T if OPERATION always returned a
493 ;;; true second value.
494 (defun fixed-values-op (types1 types2 rest2 operation
)
495 (declare (list types1 types2
) (type ctype rest2
) (type function operation
))
497 (values (mapcar (lambda (t1 t2
)
498 (multiple-value-bind (res win
)
499 (funcall operation t1 t2
)
505 (make-list (- (length types1
) (length types2
))
506 :initial-element rest2
)))
509 ;;; If TYPE isn't a values type, then make it into one.
510 (defun-cached (%coerce-to-values
512 :hash-function
(lambda (type)
513 (logand (type-hash-value type
)
516 (cond ((multiple-value-bind (res sure
)
517 (csubtypep (specifier-type 'null
) type
)
518 (and (not res
) sure
))
519 ;; FIXME: What should we do with (NOT SURE)?
520 (make-values-type :required
(list type
) :rest
*universal-type
*))
522 (make-values-type :optional
(list type
) :rest
*universal-type
*))))
524 (defun coerce-to-values (type)
525 (declare (type ctype type
))
526 (cond ((or (eq type
*universal-type
*)
527 (eq type
*wild-type
*))
529 ((values-type-p type
)
531 (t (%coerce-to-values type
))))
533 ;;; Return type, corresponding to ANSI short form of VALUES type
535 (defun make-short-values-type (types)
536 (declare (list types
))
537 (let ((last-required (position-if
539 (not/type
(csubtypep (specifier-type 'null
) type
)))
543 (make-values-type :required
(subseq types
0 (1+ last-required
))
544 :optional
(subseq types
(1+ last-required
))
545 :rest
*universal-type
*)
546 (make-values-type :optional types
:rest
*universal-type
*))))
548 (defun make-single-value-type (type)
549 (make-values-type :required
(list type
)))
551 ;;; Do the specified OPERATION on TYPE1 and TYPE2, which may be any
552 ;;; type, including VALUES types. With VALUES types such as:
555 ;;; we compute the more useful result
556 ;;; (VALUES (<operation> a0 b0) (<operation> a1 b1))
557 ;;; rather than the precise result
558 ;;; (<operation> (values a0 a1) (values b0 b1))
559 ;;; This has the virtue of always keeping the VALUES type specifier
560 ;;; outermost, and retains all of the information that is really
561 ;;; useful for static type analysis. We want to know what is always
562 ;;; true of each value independently. It is worthless to know that if
563 ;;; the first value is B0 then the second will be B1.
565 ;;; If the VALUES count signatures differ, then we produce a result with
566 ;;; the required VALUE count chosen by NREQ when applied to the number
567 ;;; of required values in TYPE1 and TYPE2. Any &KEY values become
568 ;;; &REST T (anyone who uses keyword values deserves to lose.)
570 ;;; The second value is true if the result is definitely empty or if
571 ;;; OPERATION returned true as its second value each time we called
572 ;;; it. Since we approximate the intersection of VALUES types, the
573 ;;; second value being true doesn't mean the result is exact.
574 (defun args-type-op (type1 type2 operation nreq
)
575 (declare (type ctype type1 type2
)
576 (type function operation nreq
))
577 (when (eq type1 type2
)
579 (multiple-value-bind (types1 rest1
)
580 (values-type-types type1
)
581 (multiple-value-bind (types2 rest2
)
582 (values-type-types type2
)
583 (multiple-value-bind (rest rest-exact
)
584 (funcall operation rest1 rest2
)
585 (multiple-value-bind (res res-exact
)
586 (if (< (length types1
) (length types2
))
587 (fixed-values-op types2 types1 rest1 operation
)
588 (fixed-values-op types1 types2 rest2 operation
))
589 (let* ((req (funcall nreq
590 (length (args-type-required type1
))
591 (length (args-type-required type2
))))
592 (required (subseq res
0 req
))
593 (opt (subseq res req
)))
594 (values required opt rest
595 (and rest-exact res-exact
))))))))
597 (defun values-type-op (type1 type2 operation nreq
)
598 (multiple-value-bind (required optional rest exactp
)
599 (args-type-op type1 type2 operation nreq
)
600 (values (make-values-type :required required
605 (defun type=-args
(type1 type2
)
606 (macrolet ((compare (comparator field
)
607 (let ((reader (symbolicate '#:args-type- field
)))
608 `(,comparator
(,reader type1
) (,reader type2
)))))
610 (cond ((null (args-type-rest type1
))
611 (values (null (args-type-rest type2
)) t
))
612 ((null (args-type-rest type2
))
615 (compare type
= rest
)))
616 (and/type
(and/type
(compare type
=-list required
)
617 (compare type
=-list optional
))
618 (if (or (args-type-keyp type1
) (args-type-keyp type2
))
622 ;;; Do a union or intersection operation on types that might be values
623 ;;; types. The result is optimized for utility rather than exactness,
624 ;;; but it is guaranteed that it will be no smaller (more restrictive)
625 ;;; than the precise result.
627 ;;; The return convention seems to be analogous to
628 ;;; TYPES-EQUAL-OR-INTERSECT. -- WHN 19990910.
629 (defun-cached (values-type-union :hash-function type-cache-hash
632 :init-wrapper
!cold-init-forms
)
633 ((type1 eq
) (type2 eq
))
634 (declare (type ctype type1 type2
))
635 (cond ((or (eq type1
*wild-type
*) (eq type2
*wild-type
*)) *wild-type
*)
636 ((eq type1
*empty-type
*) type2
)
637 ((eq type2
*empty-type
*) type1
)
639 (values (values-type-op type1 type2
#'type-union
#'min
)))))
641 (defun-cached (values-type-intersection :hash-function type-cache-hash
643 :default
(values nil
)
644 :init-wrapper
!cold-init-forms
)
645 ((type1 eq
) (type2 eq
))
646 (declare (type ctype type1 type2
))
647 (cond ((eq type1
*wild-type
*)
648 (coerce-to-values type2
))
649 ((or (eq type2
*wild-type
*) (eq type2
*universal-type
*))
651 ((or (eq type1
*empty-type
*) (eq type2
*empty-type
*))
653 ((and (not (values-type-p type2
))
654 (values-type-required type1
))
655 (let ((req1 (values-type-required type1
)))
656 (make-values-type :required
(cons (type-intersection (first req1
) type2
)
658 :optional
(values-type-optional type1
)
659 :rest
(values-type-rest type1
)
660 :allowp
(values-type-allowp type1
))))
662 (values (values-type-op type1
(coerce-to-values type2
)
666 ;;; This is like TYPES-EQUAL-OR-INTERSECT, except that it sort of
667 ;;; works on VALUES types. Note that due to the semantics of
668 ;;; VALUES-TYPE-INTERSECTION, this might return (VALUES T T) when
669 ;;; there isn't really any intersection.
670 (defun values-types-equal-or-intersect (type1 type2
)
671 (cond ((or (eq type1
*empty-type
*) (eq type2
*empty-type
*))
673 ((or (eq type1
*wild-type
*) (eq type2
*wild-type
*))
676 (let ((res (values-type-intersection type1 type2
)))
677 (values (not (eq res
*empty-type
*))
680 ;;; a SUBTYPEP-like operation that can be used on any types, including
682 (defun-cached (values-subtypep :hash-function type-cache-hash
685 :default
(values nil
:empty
)
686 :init-wrapper
!cold-init-forms
)
687 ((type1 eq
) (type2 eq
))
688 (declare (type ctype type1 type2
))
689 (cond ((or (eq type2
*wild-type
*) (eq type2
*universal-type
*)
690 (eq type1
*empty-type
*))
692 ((eq type1
*wild-type
*)
693 (values (eq type2
*wild-type
*) t
))
694 ((or (eq type2
*empty-type
*)
695 (not (values-types-equal-or-intersect type1 type2
)))
697 ((and (not (values-type-p type2
))
698 (values-type-required type1
))
699 (csubtypep (first (values-type-required type1
))
701 (t (setq type2
(coerce-to-values type2
))
702 (multiple-value-bind (types1 rest1
) (values-type-types type1
)
703 (multiple-value-bind (types2 rest2
) (values-type-types type2
)
704 (cond ((< (length (values-type-required type1
))
705 (length (values-type-required type2
)))
707 ((< (length types1
) (length types2
))
710 (do ((t1 types1
(rest t1
))
711 (t2 types2
(rest t2
)))
713 (csubtypep rest1 rest2
))
714 (multiple-value-bind (res win-p
)
715 (csubtypep (first t1
) (first t2
))
717 (return (values nil nil
)))
719 (return (values nil t
))))))))))))
721 ;;;; type method interfaces
723 ;;; like SUBTYPEP, only works on CTYPE structures
724 (defun-cached (csubtypep :hash-function type-cache-hash
727 :default
(values nil
:empty
)
728 :init-wrapper
!cold-init-forms
)
729 ((type1 eq
) (type2 eq
))
730 (declare (type ctype type1 type2
))
731 (cond ((or (eq type1 type2
)
732 (eq type1
*empty-type
*)
733 (eq type2
*universal-type
*))
736 ((eq type1
*universal-type
*)
739 (!invoke-type-method
:simple-subtypep
:complex-subtypep-arg2
741 :complex-arg1
:complex-subtypep-arg1
))))
743 ;;; Just parse the type specifiers and call CSUBTYPE.
744 (defun sb!xc
:subtypep
(type1 type2
&optional environment
)
746 "Return two values indicating the relationship between type1 and type2.
747 If values are T and T, type1 definitely is a subtype of type2.
748 If values are NIL and T, type1 definitely is not a subtype of type2.
749 If values are NIL and NIL, it couldn't be determined."
750 (declare (ignore environment
))
751 (csubtypep (specifier-type type1
) (specifier-type type2
)))
753 ;;; If two types are definitely equivalent, return true. The second
754 ;;; value indicates whether the first value is definitely correct.
755 ;;; This should only fail in the presence of HAIRY types.
756 (defun-cached (type= :hash-function type-cache-hash
759 :default
(values nil
:empty
)
760 :init-wrapper
!cold-init-forms
)
761 ((type1 eq
) (type2 eq
))
762 (declare (type ctype type1 type2
))
765 (!invoke-type-method
:simple-
= :complex-
= type1 type2
)))
767 ;;; Not exactly the negation of TYPE=, since when the relationship is
768 ;;; uncertain, we still return NIL, NIL. This is useful in cases where
769 ;;; the conservative assumption is =.
770 (defun type/= (type1 type2
)
771 (declare (type ctype type1 type2
))
772 (multiple-value-bind (res win
) (type= type1 type2
)
777 ;;; the type method dispatch case of TYPE-UNION2
778 (defun %type-union2
(type1 type2
)
779 ;; As in %TYPE-INTERSECTION2, it seems to be a good idea to give
780 ;; both argument orders a chance at COMPLEX-INTERSECTION2. Unlike
781 ;; %TYPE-INTERSECTION2, though, I don't have a specific case which
782 ;; demonstrates this is actually necessary. Also unlike
783 ;; %TYPE-INTERSECTION2, there seems to be no need to distinguish
784 ;; between not finding a method and having a method return NIL.
786 (!invoke-type-method
:simple-union2
:complex-union2
789 (declare (inline 1way
))
790 (or (1way type1 type2
)
791 (1way type2 type1
))))
793 ;;; Find a type which includes both types. Any inexactness is
794 ;;; represented by the fuzzy element types; we return a single value
795 ;;; that is precise to the best of our knowledge. This result is
796 ;;; simplified into the canonical form, thus is not a UNION-TYPE
797 ;;; unless we find no other way to represent the result.
798 (defun-cached (type-union2 :hash-function type-cache-hash
800 :init-wrapper
!cold-init-forms
)
801 ((type1 eq
) (type2 eq
))
802 ;; KLUDGE: This was generated from TYPE-INTERSECTION2 by Ye Olde Cut And
803 ;; Paste technique of programming. If it stays around (as opposed to
804 ;; e.g. fading away in favor of some CLOS solution) the shared logic
805 ;; should probably become shared code. -- WHN 2001-03-16
806 (declare (type ctype type1 type2
))
807 (cond ((eq type1 type2
)
809 ((csubtypep type1 type2
) type2
)
810 ((csubtypep type2 type1
) type1
)
811 ((or (union-type-p type1
)
812 (union-type-p type2
))
813 ;; Unions of UNION-TYPE should have the UNION-TYPE-TYPES
814 ;; values broken out and united separately. The full TYPE-UNION
815 ;; function knows how to do this, so let it handle it.
816 (type-union type1 type2
))
818 ;; the ordinary case: we dispatch to type methods
819 (%type-union2 type1 type2
))))
821 ;;; the type method dispatch case of TYPE-INTERSECTION2
822 (defun %type-intersection2
(type1 type2
)
823 ;; We want to give both argument orders a chance at
824 ;; COMPLEX-INTERSECTION2. Without that, the old CMU CL type
825 ;; methods could give noncommutative results, e.g.
826 ;; (TYPE-INTERSECTION2 *EMPTY-TYPE* SOME-HAIRY-TYPE)
828 ;; (TYPE-INTERSECTION2 SOME-HAIRY-TYPE *EMPTY-TYPE*)
829 ;; => #<NAMED-TYPE NIL>, T
830 ;; We also need to distinguish between the case where we found a
831 ;; type method, and it returned NIL, and the case where we fell
832 ;; through without finding any type method. An example of the first
833 ;; case is the intersection of a HAIRY-TYPE with some ordinary type.
834 ;; An example of the second case is the intersection of two
835 ;; completely-unrelated types, e.g. CONS and NUMBER, or SYMBOL and
838 ;; (Why yes, CLOS probably *would* be nicer..)
840 (!invoke-type-method
:simple-intersection2
:complex-intersection2
842 :default
:call-other-method
)))
843 (declare (inline 1way
))
844 (let ((xy (1way type1 type2
)))
845 (or (and (not (eql xy
:call-other-method
)) xy
)
846 (let ((yx (1way type2 type1
)))
847 (or (and (not (eql yx
:call-other-method
)) yx
)
848 (cond ((and (eql xy
:call-other-method
)
849 (eql yx
:call-other-method
))
852 (aver (and (not xy
) (not yx
))) ; else handled above
855 (defun-cached (type-intersection2 :hash-function type-cache-hash
859 :init-wrapper
!cold-init-forms
)
860 ((type1 eq
) (type2 eq
))
861 (declare (type ctype type1 type2
))
862 (cond ((eq type1 type2
)
863 ;; FIXME: For some reason, this doesn't catch e.g. type1 =
864 ;; type2 = (SPECIFIER-TYPE
865 ;; 'SOME-UNKNOWN-TYPE). Investigate. - CSR, 2002-04-10
867 ((or (intersection-type-p type1
)
868 (intersection-type-p type2
))
869 ;; Intersections of INTERSECTION-TYPE should have the
870 ;; INTERSECTION-TYPE-TYPES values broken out and intersected
871 ;; separately. The full TYPE-INTERSECTION function knows how
872 ;; to do that, so let it handle it.
873 (type-intersection type1 type2
))
875 ;; the ordinary case: we dispatch to type methods
876 (%type-intersection2 type1 type2
))))
878 ;;; Return as restrictive and simple a type as we can discover that is
879 ;;; no more restrictive than the intersection of TYPE1 and TYPE2. At
880 ;;; worst, we arbitrarily return one of the arguments as the first
881 ;;; value (trying not to return a hairy type).
882 (defun type-approx-intersection2 (type1 type2
)
883 (cond ((type-intersection2 type1 type2
))
884 ((hairy-type-p type1
) type2
)
887 ;;; a test useful for checking whether a derived type matches a
890 ;;; The first value is true unless the types don't intersect and
891 ;;; aren't equal. The second value is true if the first value is
892 ;;; definitely correct. NIL is considered to intersect with any type.
893 ;;; If T is a subtype of either type, then we also return T, T. This
894 ;;; way we recognize that hairy types might intersect with T.
895 (defun types-equal-or-intersect (type1 type2
)
896 (declare (type ctype type1 type2
))
897 (if (or (eq type1
*empty-type
*) (eq type2
*empty-type
*))
899 (let ((intersection2 (type-intersection2 type1 type2
)))
900 (cond ((not intersection2
)
901 (if (or (csubtypep *universal-type
* type1
)
902 (csubtypep *universal-type
* type2
))
905 ((eq intersection2
*empty-type
*) (values nil t
))
908 ;;; Return a Common Lisp type specifier corresponding to the TYPE
910 (defun type-specifier (type)
911 (declare (type ctype type
))
912 (funcall (type-class-unparse (type-class-info type
)) type
))
914 (defun-cached (type-negation :hash-function
(lambda (type)
915 (logand (type-hash-value type
)
920 :init-wrapper
!cold-init-forms
)
922 (declare (type ctype type
))
923 (funcall (type-class-negate (type-class-info type
)) type
))
925 ;;; (VALUES-SPECIFIER-TYPE and SPECIFIER-TYPE moved from here to
926 ;;; early-type.lisp by WHN ca. 19990201.)
928 ;;; Take a list of type specifiers, computing the translation of each
929 ;;; specifier and defining it as a builtin type.
930 (declaim (ftype (function (list) (values)) precompute-types
))
931 (defun precompute-types (specs)
933 (let ((res (specifier-type spec
)))
934 (unless (unknown-type-p res
)
935 (setf (info :type
:builtin spec
) res
)
936 ;; KLUDGE: the three copies of this idiom in this file (and
937 ;; the one in class.lisp as at sbcl-0.7.4.1x) should be
938 ;; coalesced, or perhaps the error-detecting code that
939 ;; disallows redefinition of :PRIMITIVE types should be
940 ;; rewritten to use *TYPE-SYSTEM-FINALIZED* (rather than
941 ;; *TYPE-SYSTEM-INITIALIZED*). The effect of this is not to
942 ;; cause redefinition errors when precompute-types is called
943 ;; for a second time while building the target compiler using
944 ;; the cross-compiler. -- CSR, trying to explain why this
945 ;; isn't completely wrong, 2002-06-07
946 (setf (info :type
:kind spec
) #+sb-xc-host
:defined
#-sb-xc-host
:primitive
))))
949 ;;;; general TYPE-UNION and TYPE-INTERSECTION operations
951 ;;;; These are fully general operations on CTYPEs: they'll always
952 ;;;; return a CTYPE representing the result.
954 ;;; shared logic for unions and intersections: Return a list of
955 ;;; types representing the same types as INPUT-TYPES, but with
956 ;;; COMPOUND-TYPEs satisfying %COMPOUND-TYPE-P broken up into their
957 ;;; component types, and with any SIMPLY2 simplifications applied.
959 ((def (name compound-type-p simplify2
)
960 `(defun ,name
(types)
962 (multiple-value-bind (first rest
)
963 (if (,compound-type-p
(car types
))
964 (values (car (compound-type-types (car types
)))
965 (append (cdr (compound-type-types (car types
)))
967 (values (car types
) (cdr types
)))
968 (let ((rest (,name rest
)) u
)
969 (dolist (r rest
(cons first rest
))
970 (when (setq u
(,simplify2 first r
))
971 (return (,name
(nsubstitute u r rest
)))))))))))
972 (def simplify-intersections intersection-type-p type-intersection2
)
973 (def simplify-unions union-type-p type-union2
))
975 (defun maybe-distribute-one-union (union-type types
)
976 (let* ((intersection (apply #'type-intersection types
))
977 (union (mapcar (lambda (x) (type-intersection x intersection
))
978 (union-type-types union-type
))))
979 (if (notany (lambda (x) (or (hairy-type-p x
)
980 (intersection-type-p x
)))
985 (defun type-intersection (&rest input-types
)
986 (%type-intersection input-types
))
987 (defun-cached (%type-intersection
:hash-bits
8
988 :hash-function
(lambda (x)
989 (logand (sxhash x
) #xff
)))
990 ((input-types equal
))
991 (let ((simplified-types (simplify-intersections input-types
)))
992 (declare (type list simplified-types
))
993 ;; We want to have a canonical representation of types (or failing
994 ;; that, punt to HAIRY-TYPE). Canonical representation would have
995 ;; intersections inside unions but not vice versa, since you can
996 ;; always achieve that by the distributive rule. But we don't want
997 ;; to just apply the distributive rule, since it would be too easy
998 ;; to end up with unreasonably huge type expressions. So instead
999 ;; we try to generate a simple type by distributing the union; if
1000 ;; the type can't be made simple, we punt to HAIRY-TYPE.
1001 (if (and (cdr simplified-types
) (some #'union-type-p simplified-types
))
1002 (let* ((first-union (find-if #'union-type-p simplified-types
))
1003 (other-types (coerce (remove first-union simplified-types
)
1005 (distributed (maybe-distribute-one-union first-union
1008 (apply #'type-union distributed
)
1010 :specifier
`(and ,@(map 'list
1012 simplified-types
)))))
1014 ((null simplified-types
) *universal-type
*)
1015 ((null (cdr simplified-types
)) (car simplified-types
))
1016 (t (%make-intersection-type
1017 (some #'type-enumerable simplified-types
)
1018 simplified-types
))))))
1020 (defun type-union (&rest input-types
)
1021 (%type-union input-types
))
1022 (defun-cached (%type-union
:hash-bits
8
1023 :hash-function
(lambda (x)
1024 (logand (sxhash x
) #xff
)))
1025 ((input-types equal
))
1026 (let ((simplified-types (simplify-unions input-types
)))
1028 ((null simplified-types
) *empty-type
*)
1029 ((null (cdr simplified-types
)) (car simplified-types
))
1031 (every #'type-enumerable simplified-types
)
1032 simplified-types
)))))
1036 (!define-type-class named
)
1039 (macrolet ((frob (name var
)
1041 (setq ,var
(make-named-type :name
',name
))
1042 (setf (info :type
:kind
',name
)
1043 #+sb-xc-host
:defined
#-sb-xc-host
:primitive
)
1044 (setf (info :type
:builtin
',name
) ,var
))))
1045 ;; KLUDGE: In ANSI, * isn't really the name of a type, it's just a
1046 ;; special symbol which can be stuck in some places where an
1047 ;; ordinary type can go, e.g. (ARRAY * 1) instead of (ARRAY T 1).
1048 ;; In SBCL it also used to denote universal VALUES type.
1049 (frob * *wild-type
*)
1050 (frob nil
*empty-type
*)
1051 (frob t
*universal-type
*))
1052 (setf *universal-fun-type
*
1053 (make-fun-type :wild-args t
1054 :returns
*wild-type
*)))
1056 (!define-type-method
(named :simple-
=) (type1 type2
)
1057 ;;(aver (not (eq type1 *wild-type*))) ; * isn't really a type.
1058 (values (eq type1 type2
) t
))
1060 (!define-type-method
(named :complex-
=) (type1 type2
)
1062 ((and (eq type2
*empty-type
*)
1063 (intersection-type-p type1
)
1064 ;; not allowed to be unsure on these... FIXME: keep the list
1065 ;; of CL types that are intersection types once and only
1067 (not (or (type= type1
(specifier-type 'ratio
))
1068 (type= type1
(specifier-type 'keyword
)))))
1069 ;; things like (AND (EQL 0) (SATISFIES ODDP)) or (AND FUNCTION
1070 ;; STREAM) can get here. In general, we can't really tell
1071 ;; whether these are equal to NIL or not, so
1073 ((type-might-contain-other-types-p type1
)
1074 (invoke-complex-=-other-method type1 type2
))
1075 (t (values nil t
))))
1077 (!define-type-method
(named :simple-subtypep
) (type1 type2
)
1078 (aver (not (eq type1
*wild-type
*))) ; * isn't really a type.
1079 (values (or (eq type1
*empty-type
*) (eq type2
*wild-type
*)) t
))
1081 (!define-type-method
(named :complex-subtypep-arg1
) (type1 type2
)
1082 ;; This AVER causes problems if we write accurate methods for the
1083 ;; union (and possibly intersection) types which then delegate to
1084 ;; us; while a user shouldn't get here, because of the odd status of
1085 ;; *wild-type* a type-intersection executed by the compiler can. -
1088 ;; (aver (not (eq type1 *wild-type*))) ; * isn't really a type.
1089 (cond ((eq type1
*empty-type
*)
1091 (;; When TYPE2 might be the universal type in disguise
1092 (type-might-contain-other-types-p type2
)
1093 ;; Now that the UNION and HAIRY COMPLEX-SUBTYPEP-ARG2 methods
1094 ;; can delegate to us (more or less as CALL-NEXT-METHOD) when
1095 ;; they're uncertain, we can't just barf on COMPOUND-TYPE and
1096 ;; HAIRY-TYPEs as we used to. Instead we deal with the
1097 ;; problem (where at least part of the problem is cases like
1098 ;; (SUBTYPEP T '(SATISFIES FOO))
1100 ;; (SUBTYPEP T '(AND (SATISFIES FOO) (SATISFIES BAR)))
1101 ;; where the second type is a hairy type like SATISFIES, or
1102 ;; is a compound type which might contain a hairy type) by
1103 ;; returning uncertainty.
1106 ;; By elimination, TYPE1 is the universal type.
1107 (aver (eq type1
*universal-type
*))
1108 ;; This case would have been picked off by the SIMPLE-SUBTYPEP
1109 ;; method, and so shouldn't appear here.
1110 (aver (not (eq type2
*universal-type
*)))
1111 ;; Since TYPE2 is not EQ *UNIVERSAL-TYPE* and is not the
1112 ;; universal type in disguise, TYPE2 is not a superset of TYPE1.
1115 (!define-type-method
(named :complex-subtypep-arg2
) (type1 type2
)
1116 (aver (not (eq type2
*wild-type
*))) ; * isn't really a type.
1117 (cond ((eq type2
*universal-type
*)
1119 ((type-might-contain-other-types-p type1
)
1120 ;; those types can be *EMPTY-TYPE* or *UNIVERSAL-TYPE* in
1121 ;; disguise. So we'd better delegate.
1122 (invoke-complex-subtypep-arg1-method type1 type2
))
1124 ;; FIXME: This seems to rely on there only being 2 or 3
1125 ;; NAMED-TYPE values, and the exclusion of various
1126 ;; possibilities above. It would be good to explain it and/or
1127 ;; rewrite it so that it's clearer.
1128 (values (not (eq type2
*empty-type
*)) t
))))
1130 (!define-type-method
(named :complex-intersection2
) (type1 type2
)
1131 ;; FIXME: This assertion failed when I added it in sbcl-0.6.11.13.
1132 ;; Perhaps when bug 85 is fixed it can be reenabled.
1133 ;;(aver (not (eq type2 *wild-type*))) ; * isn't really a type.
1134 (hierarchical-intersection2 type1 type2
))
1136 (!define-type-method
(named :complex-union2
) (type1 type2
)
1137 ;; Perhaps when bug 85 is fixed this can be reenabled.
1138 ;;(aver (not (eq type2 *wild-type*))) ; * isn't really a type.
1139 (hierarchical-union2 type1 type2
))
1141 (!define-type-method
(named :negate
) (x)
1142 (aver (not (eq x
*wild-type
*)))
1144 ((eq x
*universal-type
*) *empty-type
*)
1145 ((eq x
*empty-type
*) *universal-type
*)
1146 (t (bug "NAMED type not universal, wild or empty: ~S" x
))))
1148 (!define-type-method
(named :unparse
) (x)
1149 (named-type-name x
))
1151 ;;;; hairy and unknown types
1153 (!define-type-method
(hairy :negate
) (x)
1154 (make-negation-type :type x
))
1156 (!define-type-method
(hairy :unparse
) (x)
1157 (hairy-type-specifier x
))
1159 (!define-type-method
(hairy :simple-subtypep
) (type1 type2
)
1160 (let ((hairy-spec1 (hairy-type-specifier type1
))
1161 (hairy-spec2 (hairy-type-specifier type2
)))
1162 (cond ((equal-but-no-car-recursion hairy-spec1 hairy-spec2
)
1165 (values nil nil
)))))
1167 (!define-type-method
(hairy :complex-subtypep-arg2
) (type1 type2
)
1168 (invoke-complex-subtypep-arg1-method type1 type2
))
1170 (!define-type-method
(hairy :complex-subtypep-arg1
) (type1 type2
)
1171 (declare (ignore type1 type2
))
1174 (!define-type-method
(hairy :complex-
=) (type1 type2
)
1175 (if (and (unknown-type-p type2
)
1176 (let* ((specifier2 (unknown-type-specifier type2
))
1177 (name2 (if (consp specifier2
)
1180 (info :type
:kind name2
)))
1181 (let ((type2 (specifier-type (unknown-type-specifier type2
))))
1182 (if (unknown-type-p type2
)
1184 (type= type1 type2
)))
1187 (!define-type-method
(hairy :simple-intersection2
:complex-intersection2
)
1189 (if (type= type1 type2
)
1193 (!define-type-method
(hairy :simple-union2
)
1195 (if (type= type1 type2
)
1199 (!define-type-method
(hairy :simple-
=) (type1 type2
)
1200 (if (equal-but-no-car-recursion (hairy-type-specifier type1
)
1201 (hairy-type-specifier type2
))
1205 (!def-type-translator satisfies
(&whole whole fun
)
1206 (declare (ignore fun
))
1207 ;; Check legality of arguments.
1208 (destructuring-bind (satisfies predicate-name
) whole
1209 (declare (ignore satisfies
))
1210 (unless (symbolp predicate-name
)
1211 (error 'simple-type-error
1212 :datum predicate-name
1213 :expected-type
'symbol
1214 :format-control
"The SATISFIES predicate name is not a symbol: ~S"
1215 :format-arguments
(list predicate-name
))))
1217 (make-hairy-type :specifier whole
))
1221 (!define-type-method
(negation :negate
) (x)
1222 (negation-type-type x
))
1224 (!define-type-method
(negation :unparse
) (x)
1225 (if (type= (negation-type-type x
) (specifier-type 'cons
))
1227 `(not ,(type-specifier (negation-type-type x
)))))
1229 (!define-type-method
(negation :simple-subtypep
) (type1 type2
)
1230 (csubtypep (negation-type-type type2
) (negation-type-type type1
)))
1232 (!define-type-method
(negation :complex-subtypep-arg2
) (type1 type2
)
1233 (let* ((complement-type2 (negation-type-type type2
))
1234 (intersection2 (type-intersection2 type1
1237 ;; FIXME: if uncertain, maybe try arg1?
1238 (type= intersection2
*empty-type
*)
1239 (invoke-complex-subtypep-arg1-method type1 type2
))))
1241 (!define-type-method
(negation :complex-subtypep-arg1
) (type1 type2
)
1242 ;; "Incrementally extended heuristic algorithms tend inexorably toward the
1243 ;; incomprehensible." -- http://www.unlambda.com/~james/lambda/lambda.txt
1245 ;; You may not believe this. I couldn't either. But then I sat down
1246 ;; and drew lots of Venn diagrams. Comments involving a and b refer
1247 ;; to the call (subtypep '(not a) 'b) -- CSR, 2002-02-27.
1249 ;; (Several logical truths in this block are true as long as
1250 ;; b/=T. As of sbcl-0.7.1.28, it seems impossible to construct a
1251 ;; case with b=T where we actually reach this type method, but
1252 ;; we'll test for and exclude this case anyway, since future
1253 ;; maintenance might make it possible for it to end up in this
1255 (multiple-value-bind (equal certain
)
1256 (type= type2
*universal-type
*)
1258 (return (values nil nil
)))
1260 (return (values t t
))))
1261 (let ((complement-type1 (negation-type-type type1
)))
1262 ;; Do the special cases first, in order to give us a chance if
1263 ;; subtype/supertype relationships are hairy.
1264 (multiple-value-bind (equal certain
)
1265 (type= complement-type1 type2
)
1266 ;; If a = b, ~a is not a subtype of b (unless b=T, which was
1269 (return (values nil nil
)))
1271 (return (values nil t
))))
1272 ;; KLUDGE: ANSI requires that the SUBTYPEP result between any
1273 ;; two built-in atomic type specifiers never be uncertain. This
1274 ;; is hard to do cleanly for the built-in types whose
1275 ;; definitions include (NOT FOO), i.e. CONS and RATIO. However,
1276 ;; we can do it with this hack, which uses our global knowledge
1277 ;; that our implementation of the type system uses disjoint
1278 ;; implementation types to represent disjoint sets (except when
1279 ;; types are contained in other types). (This is a KLUDGE
1280 ;; because it's fragile. Various changes in internal
1281 ;; representation in the type system could make it start
1282 ;; confidently returning incorrect results.) -- WHN 2002-03-08
1283 (unless (or (type-might-contain-other-types-p complement-type1
)
1284 (type-might-contain-other-types-p type2
))
1285 ;; Because of the way our types which don't contain other
1286 ;; types are disjoint subsets of the space of possible values,
1287 ;; (SUBTYPEP '(NOT AA) 'B)=NIL when AA and B are simple (and B
1288 ;; is not T, as checked above).
1289 (return (values nil t
)))
1290 ;; The old (TYPE= TYPE1 TYPE2) branch would never be taken, as
1291 ;; TYPE1 and TYPE2 will only be equal if they're both NOT types,
1292 ;; and then the :SIMPLE-SUBTYPEP method would be used instead.
1293 ;; But a CSUBTYPEP relationship might still hold:
1294 (multiple-value-bind (equal certain
)
1295 (csubtypep complement-type1 type2
)
1296 ;; If a is a subtype of b, ~a is not a subtype of b (unless
1297 ;; b=T, which was excluded above).
1299 (return (values nil nil
)))
1301 (return (values nil t
))))
1302 (multiple-value-bind (equal certain
)
1303 (csubtypep type2 complement-type1
)
1304 ;; If b is a subtype of a, ~a is not a subtype of b. (FIXME:
1305 ;; That's not true if a=T. Do we know at this point that a is
1308 (return (values nil nil
)))
1310 (return (values nil t
))))
1311 ;; old CSR comment ca. 0.7.2, now obsoleted by the SIMPLE-CTYPE?
1312 ;; KLUDGE case above: Other cases here would rely on being able
1313 ;; to catch all possible cases, which the fragility of this type
1314 ;; system doesn't inspire me; for instance, if a is type= to ~b,
1315 ;; then we want T, T; if this is not the case and the types are
1316 ;; disjoint (have an intersection of *empty-type*) then we want
1317 ;; NIL, T; else if the union of a and b is the *universal-type*
1318 ;; then we want T, T. So currently we still claim to be unsure
1319 ;; about e.g. (subtypep '(not fixnum) 'single-float).
1321 ;; OTOH we might still get here:
1324 (!define-type-method
(negation :complex-
=) (type1 type2
)
1325 ;; (NOT FOO) isn't equivalent to anything that's not a negation
1326 ;; type, except possibly a type that might contain it in disguise.
1327 (declare (ignore type2
))
1328 (if (type-might-contain-other-types-p type1
)
1332 (!define-type-method
(negation :simple-intersection2
) (type1 type2
)
1333 (let ((not1 (negation-type-type type1
))
1334 (not2 (negation-type-type type2
)))
1336 ((csubtypep not1 not2
) type2
)
1337 ((csubtypep not2 not1
) type1
)
1338 ;; Why no analagous clause to the disjoint in the SIMPLE-UNION2
1339 ;; method, below? The clause would read
1341 ;; ((EQ (TYPE-UNION NOT1 NOT2) *UNIVERSAL-TYPE*) *EMPTY-TYPE*)
1343 ;; but with proper canonicalization of negation types, there's
1344 ;; no way of constructing two negation types with union of their
1345 ;; negations being the universal type.
1347 (aver (not (eq (type-union not1 not2
) *universal-type
*)))
1350 (!define-type-method
(negation :complex-intersection2
) (type1 type2
)
1352 ((csubtypep type1
(negation-type-type type2
)) *empty-type
*)
1353 ((eq (type-intersection type1
(negation-type-type type2
)) *empty-type
*)
1357 (!define-type-method
(negation :simple-union2
) (type1 type2
)
1358 (let ((not1 (negation-type-type type1
))
1359 (not2 (negation-type-type type2
)))
1361 ((csubtypep not1 not2
) type1
)
1362 ((csubtypep not2 not1
) type2
)
1363 ((eq (type-intersection not1 not2
) *empty-type
*)
1367 (!define-type-method
(negation :complex-union2
) (type1 type2
)
1369 ((csubtypep (negation-type-type type2
) type1
) *universal-type
*)
1370 ((eq (type-intersection type1
(negation-type-type type2
)) *empty-type
*)
1374 (!define-type-method
(negation :simple-
=) (type1 type2
)
1375 (type= (negation-type-type type1
) (negation-type-type type2
)))
1377 (!def-type-translator not
(typespec)
1378 (type-negation (specifier-type typespec
)))
1382 (!define-type-class number
)
1384 (declaim (inline numeric-type-equal
))
1385 (defun numeric-type-equal (type1 type2
)
1386 (and (eq (numeric-type-class type1
) (numeric-type-class type2
))
1387 (eq (numeric-type-format type1
) (numeric-type-format type2
))
1388 (eq (numeric-type-complexp type1
) (numeric-type-complexp type2
))))
1390 (!define-type-method
(number :simple-
=) (type1 type2
)
1392 (and (numeric-type-equal type1 type2
)
1393 (equalp (numeric-type-low type1
) (numeric-type-low type2
))
1394 (equalp (numeric-type-high type1
) (numeric-type-high type2
)))
1397 (!define-type-method
(number :negate
) (type)
1398 (if (and (null (numeric-type-low type
)) (null (numeric-type-high type
)))
1399 (make-negation-type :type type
)
1402 :type
(modified-numeric-type type
:low nil
:high nil
))
1404 ((null (numeric-type-low type
))
1405 (modified-numeric-type
1407 :low
(let ((h (numeric-type-high type
)))
1408 (if (consp h
) (car h
) (list h
)))
1410 ((null (numeric-type-high type
))
1411 (modified-numeric-type
1414 :high
(let ((l (numeric-type-low type
)))
1415 (if (consp l
) (car l
) (list l
)))))
1417 (modified-numeric-type
1420 :high
(let ((l (numeric-type-low type
)))
1421 (if (consp l
) (car l
) (list l
))))
1422 (modified-numeric-type
1424 :low
(let ((h (numeric-type-high type
)))
1425 (if (consp h
) (car h
) (list h
)))
1428 (!define-type-method
(number :unparse
) (type)
1429 (let* ((complexp (numeric-type-complexp type
))
1430 (low (numeric-type-low type
))
1431 (high (numeric-type-high type
))
1432 (base (case (numeric-type-class type
)
1434 (rational 'rational
)
1435 (float (or (numeric-type-format type
) 'float
))
1438 (cond ((and (eq base
'integer
) high low
)
1439 (let ((high-count (logcount high
))
1440 (high-length (integer-length high
)))
1442 (cond ((= high
0) '(integer 0 0))
1444 ((and (= high-count high-length
)
1445 (plusp high-length
))
1446 `(unsigned-byte ,high-length
))
1448 `(mod ,(1+ high
)))))
1449 ((and (= low sb
!xc
:most-negative-fixnum
)
1450 (= high sb
!xc
:most-positive-fixnum
))
1452 ((and (= low
(lognot high
))
1453 (= high-count high-length
)
1455 `(signed-byte ,(1+ high-length
)))
1457 `(integer ,low
,high
)))))
1458 (high `(,base
,(or low
'*) ,high
))
1460 (if (and (eq base
'integer
) (= low
0))
1468 (aver (neq base
+bounds
'real
))
1469 `(complex ,base
+bounds
))
1471 (aver (eq base
+bounds
'real
))
1474 ;;; Return true if X is "less than or equal" to Y, taking open bounds
1475 ;;; into consideration. CLOSED is the predicate used to test the bound
1476 ;;; on a closed interval (e.g. <=), and OPEN is the predicate used on
1477 ;;; open bounds (e.g. <). Y is considered to be the outside bound, in
1478 ;;; the sense that if it is infinite (NIL), then the test succeeds,
1479 ;;; whereas if X is infinite, then the test fails (unless Y is also
1482 ;;; This is for comparing bounds of the same kind, e.g. upper and
1483 ;;; upper. Use NUMERIC-BOUND-TEST* for different kinds of bounds.
1484 (defmacro numeric-bound-test
(x y closed open
)
1489 (,closed
(car ,x
) (car ,y
))
1490 (,closed
(car ,x
) ,y
)))
1496 ;;; This is used to compare upper and lower bounds. This is different
1497 ;;; from the same-bound case:
1498 ;;; -- Since X = NIL is -infinity, whereas y = NIL is +infinity, we
1499 ;;; return true if *either* arg is NIL.
1500 ;;; -- an open inner bound is "greater" and also squeezes the interval,
1501 ;;; causing us to use the OPEN test for those cases as well.
1502 (defmacro numeric-bound-test
* (x y closed open
)
1507 (,open
(car ,x
) (car ,y
))
1508 (,open
(car ,x
) ,y
)))
1514 ;;; Return whichever of the numeric bounds X and Y is "maximal"
1515 ;;; according to the predicates CLOSED (e.g. >=) and OPEN (e.g. >).
1516 ;;; This is only meaningful for maximizing like bounds, i.e. upper and
1517 ;;; upper. If MAX-P is true, then we return NIL if X or Y is NIL,
1518 ;;; otherwise we return the other arg.
1519 (defmacro numeric-bound-max
(x y closed open max-p
)
1522 `(cond ((not ,n-x
) ,(if max-p nil n-y
))
1523 ((not ,n-y
) ,(if max-p nil n-x
))
1526 (if (,closed
(car ,n-x
) (car ,n-y
)) ,n-x
,n-y
)
1527 (if (,open
(car ,n-x
) ,n-y
) ,n-x
,n-y
)))
1530 (if (,open
(car ,n-y
) ,n-x
) ,n-y
,n-x
)
1531 (if (,closed
,n-y
,n-x
) ,n-y
,n-x
))))))
1533 (!define-type-method
(number :simple-subtypep
) (type1 type2
)
1534 (let ((class1 (numeric-type-class type1
))
1535 (class2 (numeric-type-class type2
))
1536 (complexp2 (numeric-type-complexp type2
))
1537 (format2 (numeric-type-format type2
))
1538 (low1 (numeric-type-low type1
))
1539 (high1 (numeric-type-high type1
))
1540 (low2 (numeric-type-low type2
))
1541 (high2 (numeric-type-high type2
)))
1542 ;; If one is complex and the other isn't, they are disjoint.
1543 (cond ((not (or (eq (numeric-type-complexp type1
) complexp2
)
1546 ;; If the classes are specified and different, the types are
1547 ;; disjoint unless type2 is RATIONAL and type1 is INTEGER.
1548 ;; [ or type1 is INTEGER and type2 is of the form (RATIONAL
1549 ;; X X) for integral X, but this is dealt with in the
1550 ;; canonicalization inside MAKE-NUMERIC-TYPE ]
1551 ((not (or (eq class1 class2
)
1553 (and (eq class1
'integer
) (eq class2
'rational
))))
1555 ;; If the float formats are specified and different, the types
1557 ((not (or (eq (numeric-type-format type1
) format2
)
1560 ;; Check the bounds.
1561 ((and (numeric-bound-test low1 low2
>= >)
1562 (numeric-bound-test high1 high2
<= <))
1567 (!define-superclasses number
((number)) !cold-init-forms
)
1569 ;;; If the high bound of LOW is adjacent to the low bound of HIGH,
1570 ;;; then return true, otherwise NIL.
1571 (defun numeric-types-adjacent (low high
)
1572 (let ((low-bound (numeric-type-high low
))
1573 (high-bound (numeric-type-low high
)))
1574 (cond ((not (and low-bound high-bound
)) nil
)
1575 ((and (consp low-bound
) (consp high-bound
)) nil
)
1577 (let ((low-value (car low-bound
)))
1578 (or (eql low-value high-bound
)
1580 (load-time-value (make-unportable-float
1581 :single-float-negative-zero
)))
1582 (eql high-bound
0f0
))
1583 (and (eql low-value
0f0
)
1585 (load-time-value (make-unportable-float
1586 :single-float-negative-zero
))))
1588 (load-time-value (make-unportable-float
1589 :double-float-negative-zero
)))
1590 (eql high-bound
0d0
))
1591 (and (eql low-value
0d0
)
1593 (load-time-value (make-unportable-float
1594 :double-float-negative-zero
)))))))
1596 (let ((high-value (car high-bound
)))
1597 (or (eql high-value low-bound
)
1598 (and (eql high-value
1599 (load-time-value (make-unportable-float
1600 :single-float-negative-zero
)))
1601 (eql low-bound
0f0
))
1602 (and (eql high-value
0f0
)
1604 (load-time-value (make-unportable-float
1605 :single-float-negative-zero
))))
1606 (and (eql high-value
1607 (load-time-value (make-unportable-float
1608 :double-float-negative-zero
)))
1609 (eql low-bound
0d0
))
1610 (and (eql high-value
0d0
)
1612 (load-time-value (make-unportable-float
1613 :double-float-negative-zero
)))))))
1614 ((and (eq (numeric-type-class low
) 'integer
)
1615 (eq (numeric-type-class high
) 'integer
))
1616 (eql (1+ low-bound
) high-bound
))
1620 ;;; Return a numeric type that is a supertype for both TYPE1 and TYPE2.
1622 ;;; Old comment, probably no longer applicable:
1624 ;;; ### Note: we give up early to keep from dropping lots of
1625 ;;; information on the floor by returning overly general types.
1626 (!define-type-method
(number :simple-union2
) (type1 type2
)
1627 (declare (type numeric-type type1 type2
))
1628 (cond ((csubtypep type1 type2
) type2
)
1629 ((csubtypep type2 type1
) type1
)
1631 (let ((class1 (numeric-type-class type1
))
1632 (format1 (numeric-type-format type1
))
1633 (complexp1 (numeric-type-complexp type1
))
1634 (class2 (numeric-type-class type2
))
1635 (format2 (numeric-type-format type2
))
1636 (complexp2 (numeric-type-complexp type2
)))
1638 ((and (eq class1 class2
)
1639 (eq format1 format2
)
1640 (eq complexp1 complexp2
)
1641 (or (numeric-types-intersect type1 type2
)
1642 (numeric-types-adjacent type1 type2
)
1643 (numeric-types-adjacent type2 type1
)))
1648 :low
(numeric-bound-max (numeric-type-low type1
)
1649 (numeric-type-low type2
)
1651 :high
(numeric-bound-max (numeric-type-high type1
)
1652 (numeric-type-high type2
)
1654 ;; FIXME: These two clauses are almost identical, and the
1655 ;; consequents are in fact identical in every respect.
1656 ((and (eq class1
'rational
)
1657 (eq class2
'integer
)
1658 (eq format1 format2
)
1659 (eq complexp1 complexp2
)
1660 (integerp (numeric-type-low type2
))
1661 (integerp (numeric-type-high type2
))
1662 (= (numeric-type-low type2
) (numeric-type-high type2
))
1663 (or (numeric-types-adjacent type1 type2
)
1664 (numeric-types-adjacent type2 type1
)))
1669 :low
(numeric-bound-max (numeric-type-low type1
)
1670 (numeric-type-low type2
)
1672 :high
(numeric-bound-max (numeric-type-high type1
)
1673 (numeric-type-high type2
)
1675 ((and (eq class1
'integer
)
1676 (eq class2
'rational
)
1677 (eq format1 format2
)
1678 (eq complexp1 complexp2
)
1679 (integerp (numeric-type-low type1
))
1680 (integerp (numeric-type-high type1
))
1681 (= (numeric-type-low type1
) (numeric-type-high type1
))
1682 (or (numeric-types-adjacent type1 type2
)
1683 (numeric-types-adjacent type2 type1
)))
1688 :low
(numeric-bound-max (numeric-type-low type1
)
1689 (numeric-type-low type2
)
1691 :high
(numeric-bound-max (numeric-type-high type1
)
1692 (numeric-type-high type2
)
1698 (setf (info :type
:kind
'number
)
1699 #+sb-xc-host
:defined
#-sb-xc-host
:primitive
)
1700 (setf (info :type
:builtin
'number
)
1701 (make-numeric-type :complexp nil
)))
1703 (!def-type-translator complex
(&optional
(typespec '*))
1704 (if (eq typespec
'*)
1705 (specifier-type '(complex real
))
1706 (labels ((not-numeric ()
1707 (error "The component type for COMPLEX is not numeric: ~S"
1710 (error "The component type for COMPLEX is not a subtype of REAL: ~S"
1712 (complex1 (component-type)
1713 (unless (numeric-type-p component-type
)
1715 (when (eq (numeric-type-complexp component-type
) :complex
)
1717 (if (csubtypep component-type
(specifier-type '(eql 0)))
1719 (modified-numeric-type component-type
1720 :complexp
:complex
))))
1721 (let ((ctype (specifier-type typespec
)))
1723 ((eq ctype
*empty-type
*) *empty-type
*)
1724 ((eq ctype
*universal-type
*) (not-real))
1725 ((typep ctype
'numeric-type
) (complex1 ctype
))
1726 ((typep ctype
'union-type
)
1728 ;; FIXME: This code could suffer from (admittedly
1729 ;; very obscure) cases of bug 145 e.g. when TYPE
1731 ;; (OR (AND INTEGER (SATISFIES ODDP))
1732 ;; (AND FLOAT (SATISFIES FOO))
1733 ;; and not even report the problem very well.
1734 (mapcar #'complex1
(union-type-types ctype
))))
1735 ((typep ctype
'member-type
)
1737 (mapcar (lambda (x) (complex1 (ctype-of x
)))
1738 (member-type-members ctype
))))
1740 (multiple-value-bind (subtypep certainly
)
1741 (csubtypep ctype
(specifier-type 'real
))
1742 (if (and (not subtypep
) certainly
)
1744 ;; ANSI just says that TYPESPEC is any subtype of
1745 ;; type REAL, not necessarily a NUMERIC-TYPE. In
1746 ;; particular, at this point TYPESPEC could legally be
1747 ;; an intersection type like (AND REAL (SATISFIES ODDP)),
1748 ;; in which case we fall through the logic above and
1749 ;; end up here, stumped.
1750 (bug "~@<(known bug #145): The type ~S is too hairy to be
1751 used for a COMPLEX component.~:@>"
1754 ;;; If X is *, return NIL, otherwise return the bound, which must be a
1755 ;;; member of TYPE or a one-element list of a member of TYPE.
1756 #!-sb-fluid
(declaim (inline canonicalized-bound
))
1757 (defun canonicalized-bound (bound type
)
1758 (cond ((eq bound
'*) nil
)
1759 ((or (sb!xc
:typep bound type
)
1761 (sb!xc
:typep
(car bound
) type
)
1762 (null (cdr bound
))))
1765 (error "Bound is not ~S, a ~S or a list of a ~S: ~S"
1771 (!def-type-translator integer
(&optional
(low '*) (high '*))
1772 (let* ((l (canonicalized-bound low
'integer
))
1773 (lb (if (consp l
) (1+ (car l
)) l
))
1774 (h (canonicalized-bound high
'integer
))
1775 (hb (if (consp h
) (1- (car h
)) h
)))
1776 (if (and hb lb
(< hb lb
))
1778 (make-numeric-type :class
'integer
1780 :enumerable
(not (null (and l h
)))
1784 (defmacro !def-bounded-type
(type class format
)
1785 `(!def-type-translator
,type
(&optional
(low '*) (high '*))
1786 (let ((lb (canonicalized-bound low
',type
))
1787 (hb (canonicalized-bound high
',type
)))
1788 (if (not (numeric-bound-test* lb hb
<= <))
1790 (make-numeric-type :class
',class
1795 (!def-bounded-type rational rational nil
)
1797 ;;; Unlike CMU CL, we represent the types FLOAT and REAL as
1798 ;;; UNION-TYPEs of more primitive types, in order to make
1799 ;;; type representation more unique, avoiding problems in the
1800 ;;; simplification of things like
1801 ;;; (subtypep '(or (single-float -1.0 1.0) (single-float 0.1))
1802 ;;; '(or (real -1 7) (single-float 0.1) (single-float -1.0 1.0)))
1803 ;;; When we allowed REAL to remain as a separate NUMERIC-TYPE,
1804 ;;; it was too easy for the first argument to be simplified to
1805 ;;; '(SINGLE-FLOAT -1.0), and for the second argument to be simplified
1806 ;;; to '(OR (REAL -1 7) (SINGLE-FLOAT 0.1)) and then for the
1807 ;;; SUBTYPEP to fail (returning NIL,T instead of T,T) because
1808 ;;; the first argument can't be seen to be a subtype of any of the
1809 ;;; terms in the second argument.
1811 ;;; The old CMU CL way was:
1812 ;;; (!def-bounded-type float float nil)
1813 ;;; (!def-bounded-type real nil nil)
1815 ;;; FIXME: If this new way works for a while with no weird new
1816 ;;; problems, we can go back and rip out support for separate FLOAT
1817 ;;; and REAL flavors of NUMERIC-TYPE. The new way was added in
1818 ;;; sbcl-0.6.11.22, 2001-03-21.
1820 ;;; FIXME: It's probably necessary to do something to fix the
1821 ;;; analogous problem with INTEGER and RATIONAL types. Perhaps
1822 ;;; bounded RATIONAL types should be represented as (OR RATIO INTEGER).
1823 (defun coerce-bound (bound type inner-coerce-bound-fun
)
1824 (declare (type function inner-coerce-bound-fun
))
1825 (cond ((eql bound
'*)
1828 (destructuring-bind (inner-bound) bound
1829 (list (funcall inner-coerce-bound-fun inner-bound type
))))
1831 (funcall inner-coerce-bound-fun bound type
))))
1832 (defun inner-coerce-real-bound (bound type
)
1834 (rational (rationalize bound
))
1835 (float (if (floatp bound
)
1837 ;; Coerce to the widest float format available, to
1838 ;; avoid unnecessary loss of precision:
1839 (coerce bound
'long-float
)))))
1840 (defun coerced-real-bound (bound type
)
1841 (coerce-bound bound type
#'inner-coerce-real-bound
))
1842 (defun coerced-float-bound (bound type
)
1843 (coerce-bound bound type
#'coerce
))
1844 (!def-type-translator real
(&optional
(low '*) (high '*))
1845 (specifier-type `(or (float ,(coerced-real-bound low
'float
)
1846 ,(coerced-real-bound high
'float
))
1847 (rational ,(coerced-real-bound low
'rational
)
1848 ,(coerced-real-bound high
'rational
)))))
1849 (!def-type-translator float
(&optional
(low '*) (high '*))
1851 `(or (single-float ,(coerced-float-bound low
'single-float
)
1852 ,(coerced-float-bound high
'single-float
))
1853 (double-float ,(coerced-float-bound low
'double-float
)
1854 ,(coerced-float-bound high
'double-float
))
1855 #!+long-float
,(error "stub: no long float support yet"))))
1857 (defmacro !define-float-format
(f)
1858 `(!def-bounded-type
,f float
,f
))
1860 (!define-float-format short-float
)
1861 (!define-float-format single-float
)
1862 (!define-float-format double-float
)
1863 (!define-float-format long-float
)
1865 (defun numeric-types-intersect (type1 type2
)
1866 (declare (type numeric-type type1 type2
))
1867 (let* ((class1 (numeric-type-class type1
))
1868 (class2 (numeric-type-class type2
))
1869 (complexp1 (numeric-type-complexp type1
))
1870 (complexp2 (numeric-type-complexp type2
))
1871 (format1 (numeric-type-format type1
))
1872 (format2 (numeric-type-format type2
))
1873 (low1 (numeric-type-low type1
))
1874 (high1 (numeric-type-high type1
))
1875 (low2 (numeric-type-low type2
))
1876 (high2 (numeric-type-high type2
)))
1877 ;; If one is complex and the other isn't, then they are disjoint.
1878 (cond ((not (or (eq complexp1 complexp2
)
1879 (null complexp1
) (null complexp2
)))
1881 ;; If either type is a float, then the other must either be
1882 ;; specified to be a float or unspecified. Otherwise, they
1884 ((and (eq class1
'float
)
1885 (not (member class2
'(float nil
)))) nil
)
1886 ((and (eq class2
'float
)
1887 (not (member class1
'(float nil
)))) nil
)
1888 ;; If the float formats are specified and different, the
1889 ;; types are disjoint.
1890 ((not (or (eq format1 format2
) (null format1
) (null format2
)))
1893 ;; Check the bounds. This is a bit odd because we must
1894 ;; always have the outer bound of the interval as the
1896 (if (numeric-bound-test high1 high2
<= <)
1897 (or (and (numeric-bound-test low1 low2
>= >)
1898 (numeric-bound-test* low1 high2
<= <))
1899 (and (numeric-bound-test low2 low1
>= >)
1900 (numeric-bound-test* low2 high1
<= <)))
1901 (or (and (numeric-bound-test* low2 high1
<= <)
1902 (numeric-bound-test low2 low1
>= >))
1903 (and (numeric-bound-test high2 high1
<= <)
1904 (numeric-bound-test* high2 low1
>= >))))))))
1906 ;;; Take the numeric bound X and convert it into something that can be
1907 ;;; used as a bound in a numeric type with the specified CLASS and
1908 ;;; FORMAT. If UP-P is true, then we round up as needed, otherwise we
1909 ;;; round down. UP-P true implies that X is a lower bound, i.e. (N) > N.
1911 ;;; This is used by NUMERIC-TYPE-INTERSECTION to mash the bound into
1912 ;;; the appropriate type number. X may only be a float when CLASS is
1915 ;;; ### Note: it is possible for the coercion to a float to overflow
1916 ;;; or underflow. This happens when the bound doesn't fit in the
1917 ;;; specified format. In this case, we should really return the
1918 ;;; appropriate {Most | Least}-{Positive | Negative}-XXX-Float float
1919 ;;; of desired format. But these conditions aren't currently signalled
1920 ;;; in any useful way.
1922 ;;; Also, when converting an open rational bound into a float we
1923 ;;; should probably convert it to a closed bound of the closest float
1924 ;;; in the specified format. KLUDGE: In general, open float bounds are
1925 ;;; screwed up. -- (comment from original CMU CL)
1926 (defun round-numeric-bound (x class format up-p
)
1928 (let ((cx (if (consp x
) (car x
) x
)))
1932 (if (and (consp x
) (integerp cx
))
1933 (if up-p
(1+ cx
) (1- cx
))
1934 (if up-p
(ceiling cx
) (floor cx
))))
1936 (let ((res (if format
(coerce cx format
) (float cx
))))
1937 (if (consp x
) (list res
) res
)))))
1940 ;;; Handle the case of type intersection on two numeric types. We use
1941 ;;; TYPES-EQUAL-OR-INTERSECT to throw out the case of types with no
1942 ;;; intersection. If an attribute in TYPE1 is unspecified, then we use
1943 ;;; TYPE2's attribute, which must be at least as restrictive. If the
1944 ;;; types intersect, then the only attributes that can be specified
1945 ;;; and different are the class and the bounds.
1947 ;;; When the class differs, we use the more restrictive class. The
1948 ;;; only interesting case is RATIONAL/INTEGER, since RATIONAL includes
1951 ;;; We make the result lower (upper) bound the maximum (minimum) of
1952 ;;; the argument lower (upper) bounds. We convert the bounds into the
1953 ;;; appropriate numeric type before maximizing. This avoids possible
1954 ;;; confusion due to mixed-type comparisons (but I think the result is
1956 (!define-type-method
(number :simple-intersection2
) (type1 type2
)
1957 (declare (type numeric-type type1 type2
))
1958 (if (numeric-types-intersect type1 type2
)
1959 (let* ((class1 (numeric-type-class type1
))
1960 (class2 (numeric-type-class type2
))
1961 (class (ecase class1
1963 ((integer float
) class1
)
1964 (rational (if (eq class2
'integer
)
1967 (format (or (numeric-type-format type1
)
1968 (numeric-type-format type2
))))
1972 :complexp
(or (numeric-type-complexp type1
)
1973 (numeric-type-complexp type2
))
1974 :low
(numeric-bound-max
1975 (round-numeric-bound (numeric-type-low type1
)
1977 (round-numeric-bound (numeric-type-low type2
)
1980 :high
(numeric-bound-max
1981 (round-numeric-bound (numeric-type-high type1
)
1983 (round-numeric-bound (numeric-type-high type2
)
1988 ;;; Given two float formats, return the one with more precision. If
1989 ;;; either one is null, return NIL.
1990 (defun float-format-max (f1 f2
)
1992 (dolist (f *float-formats
* (error "bad float format: ~S" f1
))
1993 (when (or (eq f f1
) (eq f f2
))
1996 ;;; Return the result of an operation on TYPE1 and TYPE2 according to
1997 ;;; the rules of numeric contagion. This is always NUMBER, some float
1998 ;;; format (possibly complex) or RATIONAL. Due to rational
1999 ;;; canonicalization, there isn't much we can do here with integers or
2000 ;;; rational complex numbers.
2002 ;;; If either argument is not a NUMERIC-TYPE, then return NUMBER. This
2003 ;;; is useful mainly for allowing types that are technically numbers,
2004 ;;; but not a NUMERIC-TYPE.
2005 (defun numeric-contagion (type1 type2
)
2006 (if (and (numeric-type-p type1
) (numeric-type-p type2
))
2007 (let ((class1 (numeric-type-class type1
))
2008 (class2 (numeric-type-class type2
))
2009 (format1 (numeric-type-format type1
))
2010 (format2 (numeric-type-format type2
))
2011 (complexp1 (numeric-type-complexp type1
))
2012 (complexp2 (numeric-type-complexp type2
)))
2013 (cond ((or (null complexp1
)
2015 (specifier-type 'number
))
2019 :format
(ecase class2
2020 (float (float-format-max format1 format2
))
2021 ((integer rational
) format1
)
2023 ;; A double-float with any real number is a
2026 (if (eq format1
'double-float
)
2029 ;; A long-float with any real number is a
2032 (if (eq format1
'long-float
)
2035 :complexp
(if (or (eq complexp1
:complex
)
2036 (eq complexp2
:complex
))
2039 ((eq class2
'float
) (numeric-contagion type2 type1
))
2040 ((and (eq complexp1
:real
) (eq complexp2
:real
))
2042 :class
(and class1 class2
'rational
)
2045 (specifier-type 'number
))))
2046 (specifier-type 'number
)))
2050 (!define-type-class array
)
2052 ;;; What this does depends on the setting of the
2053 ;;; *USE-IMPLEMENTATION-TYPES* switch. If true, return the specialized
2054 ;;; element type, otherwise return the original element type.
2055 (defun specialized-element-type-maybe (type)
2056 (declare (type array-type type
))
2057 (if *use-implementation-types
*
2058 (array-type-specialized-element-type type
)
2059 (array-type-element-type type
)))
2061 (!define-type-method
(array :simple-
=) (type1 type2
)
2062 (if (or (unknown-type-p (array-type-element-type type1
))
2063 (unknown-type-p (array-type-element-type type2
)))
2064 (multiple-value-bind (equalp certainp
)
2065 (type= (array-type-element-type type1
)
2066 (array-type-element-type type2
))
2067 ;; By its nature, the call to TYPE= should never return NIL,
2068 ;; T, as we don't know what the UNKNOWN-TYPE will grow up to
2069 ;; be. -- CSR, 2002-08-19
2070 (aver (not (and (not equalp
) certainp
)))
2071 (values equalp certainp
))
2072 (values (and (equal (array-type-dimensions type1
)
2073 (array-type-dimensions type2
))
2074 (eq (array-type-complexp type1
)
2075 (array-type-complexp type2
))
2076 (type= (specialized-element-type-maybe type1
)
2077 (specialized-element-type-maybe type2
)))
2080 (!define-type-method
(array :negate
) (type)
2081 ;; FIXME (and hint to PFD): we're vulnerable here to attacks of the
2082 ;; form "are (AND ARRAY (NOT (ARRAY T))) and (OR (ARRAY BIT) (ARRAY
2083 ;; NIL) (ARRAY CHAR) ...) equivalent?" -- CSR, 2003-12-10
2084 (make-negation-type :type type
))
2086 (!define-type-method
(array :unparse
) (type)
2087 (let ((dims (array-type-dimensions type
))
2088 (eltype (type-specifier (array-type-element-type type
)))
2089 (complexp (array-type-complexp type
)))
2092 (if complexp
'array
'simple-array
)
2093 (if complexp
`(array ,eltype
) `(simple-array ,eltype
))))
2094 ((= (length dims
) 1)
2096 (if (eq (car dims
) '*)
2099 (base-char 'base-string
)
2101 (t `(vector ,eltype
)))
2103 (bit `(bit-vector ,(car dims
)))
2104 (base-char `(base-string ,(car dims
)))
2105 (t `(vector ,eltype
,(car dims
)))))
2106 (if (eq (car dims
) '*)
2108 (bit 'simple-bit-vector
)
2109 (base-char 'simple-base-string
)
2110 ((t) 'simple-vector
)
2111 (t `(simple-array ,eltype
(*))))
2113 (bit `(simple-bit-vector ,(car dims
)))
2114 (base-char `(simple-base-string ,(car dims
)))
2115 ((t) `(simple-vector ,(car dims
)))
2116 (t `(simple-array ,eltype
,dims
))))))
2119 `(array ,eltype
,dims
)
2120 `(simple-array ,eltype
,dims
))))))
2122 (!define-type-method
(array :simple-subtypep
) (type1 type2
)
2123 (let ((dims1 (array-type-dimensions type1
))
2124 (dims2 (array-type-dimensions type2
))
2125 (complexp2 (array-type-complexp type2
)))
2126 (cond (;; not subtypep unless dimensions are compatible
2127 (not (or (eq dims2
'*)
2128 (and (not (eq dims1
'*))
2129 ;; (sbcl-0.6.4 has trouble figuring out that
2130 ;; DIMS1 and DIMS2 must be lists at this
2131 ;; point, and knowing that is important to
2132 ;; compiling EVERY efficiently.)
2133 (= (length (the list dims1
))
2134 (length (the list dims2
)))
2135 (every (lambda (x y
)
2136 (or (eq y
'*) (eql x y
)))
2138 (the list dims2
)))))
2140 ;; not subtypep unless complexness is compatible
2141 ((not (or (eq complexp2
:maybe
)
2142 (eq (array-type-complexp type1
) complexp2
)))
2144 ;; Since we didn't fail any of the tests above, we win
2145 ;; if the TYPE2 element type is wild.
2146 ((eq (array-type-element-type type2
) *wild-type
*)
2148 (;; Since we didn't match any of the special cases above, we
2149 ;; can't give a good answer unless both the element types
2150 ;; have been defined.
2151 (or (unknown-type-p (array-type-element-type type1
))
2152 (unknown-type-p (array-type-element-type type2
)))
2154 (;; Otherwise, the subtype relationship holds iff the
2155 ;; types are equal, and they're equal iff the specialized
2156 ;; element types are identical.
2158 (values (type= (specialized-element-type-maybe type1
)
2159 (specialized-element-type-maybe type2
))
2162 ;;; FIXME: is this dead?
2163 (!define-superclasses array
2164 ((base-string base-string
)
2169 (defun array-types-intersect (type1 type2
)
2170 (declare (type array-type type1 type2
))
2171 (let ((dims1 (array-type-dimensions type1
))
2172 (dims2 (array-type-dimensions type2
))
2173 (complexp1 (array-type-complexp type1
))
2174 (complexp2 (array-type-complexp type2
)))
2175 ;; See whether dimensions are compatible.
2176 (cond ((not (or (eq dims1
'*) (eq dims2
'*)
2177 (and (= (length dims1
) (length dims2
))
2178 (every (lambda (x y
)
2179 (or (eq x
'*) (eq y
'*) (= x y
)))
2182 ;; See whether complexpness is compatible.
2183 ((not (or (eq complexp1
:maybe
)
2184 (eq complexp2
:maybe
)
2185 (eq complexp1 complexp2
)))
2189 ;; If either element type is wild, then they intersect.
2190 ;; Otherwise, the types must be identical.
2192 ;; FIXME: There seems to have been a fair amount of
2193 ;; confusion about the distinction between requested element
2194 ;; type and specialized element type; here is one of
2195 ;; them. If we request an array to hold objects of an
2196 ;; unknown type, we can do no better than represent that
2197 ;; type as an array specialized on wild-type. We keep the
2198 ;; requested element-type in the -ELEMENT-TYPE slot, and
2199 ;; *WILD-TYPE* in the -SPECIALIZED-ELEMENT-TYPE. So, here,
2200 ;; we must test for the SPECIALIZED slot being *WILD-TYPE*,
2201 ;; not just the ELEMENT-TYPE slot. Maybe the return value
2202 ;; in that specific case should be T, NIL? Or maybe this
2203 ;; function should really be called
2204 ;; ARRAY-TYPES-COULD-POSSIBLY-INTERSECT? In any case, this
2205 ;; was responsible for bug #123, and this whole issue could
2206 ;; do with a rethink and/or a rewrite. -- CSR, 2002-08-21
2207 ((or (eq (array-type-specialized-element-type type1
) *wild-type
*)
2208 (eq (array-type-specialized-element-type type2
) *wild-type
*)
2209 (type= (specialized-element-type-maybe type1
)
2210 (specialized-element-type-maybe type2
)))
2216 (!define-type-method
(array :simple-intersection2
) (type1 type2
)
2217 (declare (type array-type type1 type2
))
2218 (if (array-types-intersect type1 type2
)
2219 (let ((dims1 (array-type-dimensions type1
))
2220 (dims2 (array-type-dimensions type2
))
2221 (complexp1 (array-type-complexp type1
))
2222 (complexp2 (array-type-complexp type2
))
2223 (eltype1 (array-type-element-type type1
))
2224 (eltype2 (array-type-element-type type2
)))
2225 (specialize-array-type
2227 :dimensions
(cond ((eq dims1
'*) dims2
)
2228 ((eq dims2
'*) dims1
)
2230 (mapcar (lambda (x y
) (if (eq x
'*) y x
))
2232 :complexp
(if (eq complexp1
:maybe
) complexp2 complexp1
)
2234 ((eq eltype1
*wild-type
*) eltype2
)
2235 ((eq eltype2
*wild-type
*) eltype1
)
2236 (t (type-intersection eltype1 eltype2
))))))
2239 ;;; Check a supplied dimension list to determine whether it is legal,
2240 ;;; and return it in canonical form (as either '* or a list).
2241 (defun canonical-array-dimensions (dims)
2246 (error "Arrays can't have a negative number of dimensions: ~S" dims
))
2247 (when (>= dims sb
!xc
:array-rank-limit
)
2248 (error "array type with too many dimensions: ~S" dims
))
2249 (make-list dims
:initial-element
'*))
2251 (when (>= (length dims
) sb
!xc
:array-rank-limit
)
2252 (error "array type with too many dimensions: ~S" dims
))
2255 (unless (and (integerp dim
)
2257 (< dim sb
!xc
:array-dimension-limit
))
2258 (error "bad dimension in array type: ~S" dim
))))
2261 (error "Array dimensions is not a list, integer or *:~% ~S" dims
))))
2265 (!define-type-class member
)
2267 (!define-type-method
(member :negate
) (type)
2268 (let ((members (member-type-members type
)))
2269 (if (some #'floatp members
)
2271 (dolist (pair `((0.0f0 .
,(load-time-value (make-unportable-float :single-float-negative-zero
)))
2272 (0.0d0 .
,(load-time-value (make-unportable-float :double-float-negative-zero
)))
2274 (0.0l0 .
,(load-time-value (make-unportable-float :long-float-negative-zero
)))))
2275 (when (member (car pair
) members
)
2276 (aver (not (member (cdr pair
) members
)))
2277 (push (cdr pair
) floats
)
2278 (setf members
(remove (car pair
) members
)))
2279 (when (member (cdr pair
) members
)
2280 (aver (not (member (car pair
) members
)))
2281 (push (car pair
) floats
)
2282 (setf members
(remove (cdr pair
) members
))))
2283 (apply #'type-intersection
2287 :type
(make-member-type :members members
)))
2290 (let ((type (ctype-of x
)))
2293 :type
(modified-numeric-type type
2294 :low nil
:high nil
))
2295 (modified-numeric-type type
2296 :low nil
:high
(list x
))
2297 (make-member-type :members
(list x
))
2298 (modified-numeric-type type
2299 :low
(list x
) :high nil
))))
2301 (make-negation-type :type type
))))
2303 (!define-type-method
(member :unparse
) (type)
2304 (let ((members (member-type-members type
)))
2306 ((equal members
'(nil)) 'null
)
2307 ((type= type
(specifier-type 'standard-char
)) 'standard-char
)
2308 (t `(member ,@members
)))))
2310 (!define-type-method
(member :simple-subtypep
) (type1 type2
)
2311 (values (subsetp (member-type-members type1
) (member-type-members type2
))
2314 (!define-type-method
(member :complex-subtypep-arg1
) (type1 type2
)
2315 (every/type
(swapped-args-fun #'ctypep
)
2317 (member-type-members type1
)))
2319 ;;; We punt if the odd type is enumerable and intersects with the
2320 ;;; MEMBER type. If not enumerable, then it is definitely not a
2321 ;;; subtype of the MEMBER type.
2322 (!define-type-method
(member :complex-subtypep-arg2
) (type1 type2
)
2323 (cond ((not (type-enumerable type1
)) (values nil t
))
2324 ((types-equal-or-intersect type1 type2
)
2325 (invoke-complex-subtypep-arg1-method type1 type2
))
2326 (t (values nil t
))))
2328 (!define-type-method
(member :simple-intersection2
) (type1 type2
)
2329 (let ((mem1 (member-type-members type1
))
2330 (mem2 (member-type-members type2
)))
2331 (cond ((subsetp mem1 mem2
) type1
)
2332 ((subsetp mem2 mem1
) type2
)
2334 (let ((res (intersection mem1 mem2
)))
2336 (make-member-type :members res
)
2339 (!define-type-method
(member :complex-intersection2
) (type1 type2
)
2341 (collect ((members))
2342 (let ((mem2 (member-type-members type2
)))
2343 (dolist (member mem2
)
2344 (multiple-value-bind (val win
) (ctypep member type1
)
2346 (return-from punt nil
))
2347 (when val
(members member
))))
2348 (cond ((subsetp mem2
(members)) type2
)
2349 ((null (members)) *empty-type
*)
2351 (make-member-type :members
(members))))))))
2353 ;;; We don't need a :COMPLEX-UNION2, since the only interesting case is
2354 ;;; a union type, and the member/union interaction is handled by the
2355 ;;; union type method.
2356 (!define-type-method
(member :simple-union2
) (type1 type2
)
2357 (let ((mem1 (member-type-members type1
))
2358 (mem2 (member-type-members type2
)))
2359 (cond ((subsetp mem1 mem2
) type2
)
2360 ((subsetp mem2 mem1
) type1
)
2362 (make-member-type :members
(union mem1 mem2
))))))
2364 (!define-type-method
(member :simple-
=) (type1 type2
)
2365 (let ((mem1 (member-type-members type1
))
2366 (mem2 (member-type-members type2
)))
2367 (values (and (subsetp mem1 mem2
)
2368 (subsetp mem2 mem1
))
2371 (!define-type-method
(member :complex-
=) (type1 type2
)
2372 (if (type-enumerable type1
)
2373 (multiple-value-bind (val win
) (csubtypep type2 type1
)
2374 (if (or val
(not win
))
2379 (!def-type-translator member
(&rest members
)
2382 (dolist (m (remove-duplicates members
))
2384 (float (if (zerop m
)
2386 (push (ctype-of m
) numbers
)))
2387 (real (push (ctype-of m
) numbers
))
2391 (make-member-type :members ms
)
2393 (nreverse numbers
)))
2396 ;;;; intersection types
2398 ;;;; Until version 0.6.10.6, SBCL followed the original CMU CL approach
2399 ;;;; of punting on all AND types, not just the unreasonably complicated
2400 ;;;; ones. The change was motivated by trying to get the KEYWORD type
2401 ;;;; to behave sensibly:
2402 ;;;; ;; reasonable definition
2403 ;;;; (DEFTYPE KEYWORD () '(AND SYMBOL (SATISFIES KEYWORDP)))
2404 ;;;; ;; reasonable behavior
2405 ;;;; (AVER (SUBTYPEP 'KEYWORD 'SYMBOL))
2406 ;;;; Without understanding a little about the semantics of AND, we'd
2407 ;;;; get (SUBTYPEP 'KEYWORD 'SYMBOL)=>NIL,NIL and, for entirely
2408 ;;;; parallel reasons, (SUBTYPEP 'RATIO 'NUMBER)=>NIL,NIL. That's
2411 ;;;; We still follow the example of CMU CL to some extent, by punting
2412 ;;;; (to the opaque HAIRY-TYPE) on sufficiently complicated types
2415 (!define-type-class intersection
)
2417 (!define-type-method
(intersection :negate
) (type)
2419 (mapcar #'type-negation
(intersection-type-types type
))))
2421 ;;; A few intersection types have special names. The others just get
2422 ;;; mechanically unparsed.
2423 (!define-type-method
(intersection :unparse
) (type)
2424 (declare (type ctype type
))
2425 (or (find type
'(ratio keyword
) :key
#'specifier-type
:test
#'type
=)
2426 `(and ,@(mapcar #'type-specifier
(intersection-type-types type
)))))
2428 ;;; shared machinery for type equality: true if every type in the set
2429 ;;; TYPES1 matches a type in the set TYPES2 and vice versa
2430 (defun type=-set
(types1 types2
)
2431 (flet ((type<=-set
(x y
)
2432 (declare (type list x y
))
2433 (every/type
(lambda (x y-element
)
2434 (any/type
#'type
= y-element x
))
2436 (and/type
(type<=-set types1 types2
)
2437 (type<=-set types2 types1
))))
2439 ;;; Two intersection types are equal if their subtypes are equal sets.
2441 ;;; FIXME: Might it be better to use
2442 ;;; (AND (SUBTYPEP X Y) (SUBTYPEP Y X))
2443 ;;; instead, since SUBTYPEP is the usual relationship that we care
2444 ;;; most about, so it would be good to leverage any ingenuity there
2445 ;;; in this more obscure method?
2446 (!define-type-method
(intersection :simple-
=) (type1 type2
)
2447 (type=-set
(intersection-type-types type1
)
2448 (intersection-type-types type2
)))
2450 (defun %intersection-complex-subtypep-arg1
(type1 type2
)
2451 (type= type1
(type-intersection type1 type2
)))
2453 (defun %intersection-simple-subtypep
(type1 type2
)
2454 (every/type
#'%intersection-complex-subtypep-arg1
2456 (intersection-type-types type2
)))
2458 (!define-type-method
(intersection :simple-subtypep
) (type1 type2
)
2459 (%intersection-simple-subtypep type1 type2
))
2461 (!define-type-method
(intersection :complex-subtypep-arg1
) (type1 type2
)
2462 (%intersection-complex-subtypep-arg1 type1 type2
))
2464 (defun %intersection-complex-subtypep-arg2
(type1 type2
)
2465 (every/type
#'csubtypep type1
(intersection-type-types type2
)))
2467 (!define-type-method
(intersection :complex-subtypep-arg2
) (type1 type2
)
2468 (%intersection-complex-subtypep-arg2 type1 type2
))
2470 ;;; FIXME: This will look eeriely familiar to readers of the UNION
2471 ;;; :SIMPLE-INTERSECTION2 :COMPLEX-INTERSECTION2 method. That's
2472 ;;; because it was generated by cut'n'paste methods. Given that
2473 ;;; intersections and unions have all sorts of symmetries known to
2474 ;;; mathematics, it shouldn't be beyond the ken of some programmers to
2475 ;;; reflect those symmetries in code in a way that ties them together
2476 ;;; more strongly than having two independent near-copies :-/
2477 (!define-type-method
(intersection :simple-union2
:complex-union2
)
2479 ;; Within this method, type2 is guaranteed to be an intersection
2481 (aver (intersection-type-p type2
))
2482 ;; Make sure to call only the applicable methods...
2483 (cond ((and (intersection-type-p type1
)
2484 (%intersection-simple-subtypep type1 type2
)) type2
)
2485 ((and (intersection-type-p type1
)
2486 (%intersection-simple-subtypep type2 type1
)) type1
)
2487 ((and (not (intersection-type-p type1
))
2488 (%intersection-complex-subtypep-arg2 type1 type2
))
2490 ((and (not (intersection-type-p type1
))
2491 (%intersection-complex-subtypep-arg1 type2 type1
))
2493 ;; KLUDGE: This special (and somewhat hairy) magic is required
2494 ;; to deal with the RATIONAL/INTEGER special case. The UNION
2495 ;; of (INTEGER * -1) and (AND (RATIONAL * -1/2) (NOT INTEGER))
2496 ;; should be (RATIONAL * -1/2) -- CSR, 2003-02-28
2497 ((and (csubtypep type2
(specifier-type 'ratio
))
2498 (numeric-type-p type1
)
2499 (csubtypep type1
(specifier-type 'integer
))
2504 :low
(if (null (numeric-type-low type1
))
2506 (list (1- (numeric-type-low type1
))))
2507 :high
(if (null (numeric-type-high type1
))
2509 (list (1+ (numeric-type-high type1
)))))))
2511 (apply #'type-intersection
2512 (remove (specifier-type '(not integer
))
2513 (intersection-type-types type2
)
2516 (let ((accumulator *universal-type
*))
2517 (do ((t2s (intersection-type-types type2
) (cdr t2s
)))
2518 ((null t2s
) accumulator
)
2519 (let ((union (type-union type1
(car t2s
))))
2520 (when (union-type-p union
)
2521 ;; we have to give up here -- there are all sorts of
2522 ;; ordering worries, but it's better than before.
2523 ;; Doing exactly the same as in the UNION
2524 ;; :SIMPLE/:COMPLEX-INTERSECTION2 method causes stack
2525 ;; overflow with the mutual recursion never bottoming
2527 (if (and (eq accumulator
*universal-type
*)
2529 ;; KLUDGE: if we get here, we have a partially
2530 ;; simplified result. While this isn't by any
2531 ;; means a universal simplification, including
2532 ;; this logic here means that we can get (OR
2533 ;; KEYWORD (NOT KEYWORD)) canonicalized to T.
2537 (type-intersection accumulator union
))))))))
2539 (!def-type-translator and
(&whole whole
&rest type-specifiers
)
2540 (apply #'type-intersection
2541 (mapcar #'specifier-type type-specifiers
)))
2545 (!define-type-class union
)
2547 (!define-type-method
(union :negate
) (type)
2548 (declare (type ctype type
))
2549 (apply #'type-intersection
2550 (mapcar #'type-negation
(union-type-types type
))))
2552 ;;; The LIST, FLOAT and REAL types have special names. Other union
2553 ;;; types just get mechanically unparsed.
2554 (!define-type-method
(union :unparse
) (type)
2555 (declare (type ctype type
))
2557 ((type= type
(specifier-type 'list
)) 'list
)
2558 ((type= type
(specifier-type 'float
)) 'float
)
2559 ((type= type
(specifier-type 'real
)) 'real
)
2560 ((type= type
(specifier-type 'sequence
)) 'sequence
)
2561 ((type= type
(specifier-type 'bignum
)) 'bignum
)
2562 ((type= type
(specifier-type 'simple-string
)) 'simple-string
)
2563 ((type= type
(specifier-type 'string
)) 'string
)
2564 ((type= type
(specifier-type 'complex
)) 'complex
)
2565 (t `(or ,@(mapcar #'type-specifier
(union-type-types type
))))))
2567 ;;; Two union types are equal if they are each subtypes of each
2568 ;;; other. We need to be this clever because our complex subtypep
2569 ;;; methods are now more accurate; we don't get infinite recursion
2570 ;;; because the simple-subtypep method delegates to complex-subtypep
2571 ;;; of the individual types of type1. - CSR, 2002-04-09
2573 ;;; Previous comment, now obsolete, but worth keeping around because
2574 ;;; it is true, though too strong a condition:
2576 ;;; Two union types are equal if their subtypes are equal sets.
2577 (!define-type-method
(union :simple-
=) (type1 type2
)
2578 (multiple-value-bind (subtype certain?
)
2579 (csubtypep type1 type2
)
2581 (csubtypep type2 type1
)
2582 ;; we might as well become as certain as possible.
2585 (multiple-value-bind (subtype certain?
)
2586 (csubtypep type2 type1
)
2587 (declare (ignore subtype
))
2588 (values nil certain?
))))))
2590 (!define-type-method
(union :complex-
=) (type1 type2
)
2591 (declare (ignore type1
))
2592 (if (some #'type-might-contain-other-types-p
2593 (union-type-types type2
))
2597 ;;; Similarly, a union type is a subtype of another if and only if
2598 ;;; every element of TYPE1 is a subtype of TYPE2.
2599 (defun union-simple-subtypep (type1 type2
)
2600 (every/type
(swapped-args-fun #'union-complex-subtypep-arg2
)
2602 (union-type-types type1
)))
2604 (!define-type-method
(union :simple-subtypep
) (type1 type2
)
2605 (union-simple-subtypep type1 type2
))
2607 (defun union-complex-subtypep-arg1 (type1 type2
)
2608 (every/type
(swapped-args-fun #'csubtypep
)
2610 (union-type-types type1
)))
2612 (!define-type-method
(union :complex-subtypep-arg1
) (type1 type2
)
2613 (union-complex-subtypep-arg1 type1 type2
))
2615 (defun union-complex-subtypep-arg2 (type1 type2
)
2616 (multiple-value-bind (sub-value sub-certain?
)
2617 ;; was: (any/type #'csubtypep type1 (union-type-types type2)),
2618 ;; which turns out to be too restrictive, causing bug 91.
2620 ;; the following reimplementation might look dodgy. It is
2621 ;; dodgy. It depends on the union :complex-= method not doing
2622 ;; very much work -- certainly, not using subtypep. Reasoning:
2624 ;; At this stage, we know that type2 is a union type and type1
2625 ;; isn't. We might as well check this, though:
2626 (aver (union-type-p type2
))
2627 (aver (not (union-type-p type1
)))
2628 ;; A is a subset of (B1 u B2)
2629 ;; <=> A n (B1 u B2) = A
2630 ;; <=> (A n B1) u (A n B2) = A
2632 ;; But, we have to be careful not to delegate this type= to
2633 ;; something that could invoke subtypep, which might get us
2634 ;; back here -> stack explosion. We therefore ensure that the
2635 ;; second type (which is the one that's dispatched on) is
2636 ;; either a union type (where we've ensured that the complex-=
2637 ;; method will not call subtypep) or something with no union
2638 ;; types involved, in which case we'll never come back here.
2640 ;; If we don't do this, then e.g.
2641 ;; (SUBTYPEP '(MEMBER 3) '(OR (SATISFIES FOO) (SATISFIES BAR)))
2642 ;; would loop infinitely, as the member :complex-= method is
2643 ;; implemented in terms of subtypep.
2645 ;; Ouch. - CSR, 2002-04-10
2648 (mapcar (lambda (x) (type-intersection type1 x
))
2649 (union-type-types type2
)))))
2651 (values sub-value sub-certain?
)
2652 ;; The ANY/TYPE expression above is a sufficient condition for
2653 ;; subsetness, but not a necessary one, so we might get a more
2654 ;; certain answer by this CALL-NEXT-METHOD-ish step when the
2655 ;; ANY/TYPE expression is uncertain.
2656 (invoke-complex-subtypep-arg1-method type1 type2
))))
2658 (!define-type-method
(union :complex-subtypep-arg2
) (type1 type2
)
2659 (union-complex-subtypep-arg2 type1 type2
))
2661 (!define-type-method
(union :simple-intersection2
:complex-intersection2
)
2663 ;; The CSUBTYPEP clauses here let us simplify e.g.
2664 ;; (TYPE-INTERSECTION2 (SPECIFIER-TYPE 'LIST)
2665 ;; (SPECIFIER-TYPE '(OR LIST VECTOR)))
2666 ;; (where LIST is (OR CONS NULL)).
2668 ;; The tests are more or less (CSUBTYPEP TYPE1 TYPE2) and vice
2669 ;; versa, but it's important that we pre-expand them into
2670 ;; specialized operations on individual elements of
2671 ;; UNION-TYPE-TYPES, instead of using the ordinary call to
2672 ;; CSUBTYPEP, in order to avoid possibly invoking any methods which
2673 ;; might in turn invoke (TYPE-INTERSECTION2 TYPE1 TYPE2) and thus
2674 ;; cause infinite recursion.
2676 ;; Within this method, type2 is guaranteed to be a union type:
2677 (aver (union-type-p type2
))
2678 ;; Make sure to call only the applicable methods...
2679 (cond ((and (union-type-p type1
)
2680 (union-simple-subtypep type1 type2
)) type1
)
2681 ((and (union-type-p type1
)
2682 (union-simple-subtypep type2 type1
)) type2
)
2683 ((and (not (union-type-p type1
))
2684 (union-complex-subtypep-arg2 type1 type2
))
2686 ((and (not (union-type-p type1
))
2687 (union-complex-subtypep-arg1 type2 type1
))
2690 ;; KLUDGE: This code accumulates a sequence of TYPE-UNION2
2691 ;; operations in a particular order, and gives up if any of
2692 ;; the sub-unions turn out not to be simple. In other cases
2693 ;; ca. sbcl-0.6.11.15, that approach to taking a union was a
2694 ;; bad idea, since it can overlook simplifications which
2695 ;; might occur if the terms were accumulated in a different
2696 ;; order. It's possible that that will be a problem here too.
2697 ;; However, I can't think of a good example to demonstrate
2698 ;; it, and without an example to demonstrate it I can't write
2699 ;; test cases, and without test cases I don't want to
2700 ;; complicate the code to address what's still a hypothetical
2701 ;; problem. So I punted. -- WHN 2001-03-20
2702 (let ((accumulator *empty-type
*))
2703 (dolist (t2 (union-type-types type2
) accumulator
)
2705 (type-union accumulator
2706 (type-intersection type1 t2
))))))))
2708 (!def-type-translator or
(&rest type-specifiers
)
2710 (mapcar #'specifier-type
2715 (!define-type-class cons
)
2717 (!def-type-translator cons
(&optional
(car-type-spec '*) (cdr-type-spec '*))
2718 (let ((car-type (single-value-specifier-type car-type-spec
))
2719 (cdr-type (single-value-specifier-type cdr-type-spec
)))
2720 (make-cons-type car-type cdr-type
)))
2722 (!define-type-method
(cons :negate
) (type)
2723 (if (and (eq (cons-type-car-type type
) *universal-type
*)
2724 (eq (cons-type-cdr-type type
) *universal-type
*))
2725 (make-negation-type :type type
)
2727 (make-negation-type :type
(specifier-type 'cons
))
2729 ((and (not (eq (cons-type-car-type type
) *universal-type
*))
2730 (not (eq (cons-type-cdr-type type
) *universal-type
*)))
2733 (type-negation (cons-type-car-type type
))
2737 (type-negation (cons-type-cdr-type type
)))))
2738 ((not (eq (cons-type-car-type type
) *universal-type
*))
2740 (type-negation (cons-type-car-type type
))
2742 ((not (eq (cons-type-cdr-type type
) *universal-type
*))
2745 (type-negation (cons-type-cdr-type type
))))
2746 (t (bug "Weird CONS type ~S" type
))))))
2748 (!define-type-method
(cons :unparse
) (type)
2749 (let ((car-eltype (type-specifier (cons-type-car-type type
)))
2750 (cdr-eltype (type-specifier (cons-type-cdr-type type
))))
2751 (if (and (member car-eltype
'(t *))
2752 (member cdr-eltype
'(t *)))
2754 `(cons ,car-eltype
,cdr-eltype
))))
2756 (!define-type-method
(cons :simple-
=) (type1 type2
)
2757 (declare (type cons-type type1 type2
))
2758 (and (type= (cons-type-car-type type1
) (cons-type-car-type type2
))
2759 (type= (cons-type-cdr-type type1
) (cons-type-cdr-type type2
))))
2761 (!define-type-method
(cons :simple-subtypep
) (type1 type2
)
2762 (declare (type cons-type type1 type2
))
2763 (multiple-value-bind (val-car win-car
)
2764 (csubtypep (cons-type-car-type type1
) (cons-type-car-type type2
))
2765 (multiple-value-bind (val-cdr win-cdr
)
2766 (csubtypep (cons-type-cdr-type type1
) (cons-type-cdr-type type2
))
2767 (if (and val-car val-cdr
)
2768 (values t
(and win-car win-cdr
))
2769 (values nil
(or win-car win-cdr
))))))
2771 ;;; Give up if a precise type is not possible, to avoid returning
2772 ;;; overly general types.
2773 (!define-type-method
(cons :simple-union2
) (type1 type2
)
2774 (declare (type cons-type type1 type2
))
2775 (let ((car-type1 (cons-type-car-type type1
))
2776 (car-type2 (cons-type-car-type type2
))
2777 (cdr-type1 (cons-type-cdr-type type1
))
2778 (cdr-type2 (cons-type-cdr-type type2
))
2781 ;; UGH. -- CSR, 2003-02-24
2782 (macrolet ((frob-car (car1 car2 cdr1 cdr2
2783 &optional
(not1 nil not1p
))
2785 (make-cons-type ,car1
(type-union ,cdr1
,cdr2
))
2787 (type-intersection ,car2
2790 `(type-negation ,car1
)))
2792 (cond ((type= car-type1 car-type2
)
2793 (make-cons-type car-type1
2794 (type-union cdr-type1 cdr-type2
)))
2795 ((type= cdr-type1 cdr-type2
)
2796 (make-cons-type (type-union car-type1 car-type2
)
2798 ((csubtypep car-type1 car-type2
)
2799 (frob-car car-type1 car-type2 cdr-type1 cdr-type2
))
2800 ((csubtypep car-type2 car-type1
)
2801 (frob-car car-type2 car-type1 cdr-type2 cdr-type1
))
2802 ;; more general case of the above, but harder to compute
2804 (setf car-not1
(type-negation car-type1
))
2805 (not (csubtypep car-type2 car-not1
)))
2806 (frob-car car-type1 car-type2 cdr-type1 cdr-type2 car-not1
))
2808 (setf car-not2
(type-negation car-type2
))
2809 (not (csubtypep car-type1 car-not2
)))
2810 (frob-car car-type2 car-type1 cdr-type2 cdr-type1 car-not2
))
2811 ;; Don't put these in -- consider the effect of taking the
2812 ;; union of (CONS (INTEGER 0 2) (INTEGER 5 7)) and
2813 ;; (CONS (INTEGER 0 3) (INTEGER 5 6)).
2815 ((csubtypep cdr-type1 cdr-type2
)
2816 (frob-cdr car-type1 car-type2 cdr-type1 cdr-type2
))
2818 ((csubtypep cdr-type2 cdr-type1
)
2819 (frob-cdr car-type2 car-type1 cdr-type2 cdr-type1
))))))
2821 (!define-type-method
(cons :simple-intersection2
) (type1 type2
)
2822 (declare (type cons-type type1 type2
))
2823 (let ((car-int2 (type-intersection2 (cons-type-car-type type1
)
2824 (cons-type-car-type type2
)))
2825 (cdr-int2 (type-intersection2 (cons-type-cdr-type type1
)
2826 (cons-type-cdr-type type2
))))
2828 ((and car-int2 cdr-int2
) (make-cons-type car-int2 cdr-int2
))
2829 (car-int2 (make-cons-type car-int2
2831 (cons-type-cdr-type type1
)
2832 (cons-type-cdr-type type2
))))
2833 (cdr-int2 (make-cons-type
2834 (type-intersection (cons-type-car-type type1
)
2835 (cons-type-car-type type2
))
2838 ;;; Return the type that describes all objects that are in X but not
2839 ;;; in Y. If we can't determine this type, then return NIL.
2841 ;;; For now, we only are clever dealing with union and member types.
2842 ;;; If either type is not a union type, then we pretend that it is a
2843 ;;; union of just one type. What we do is remove from X all the types
2844 ;;; that are a subtype any type in Y. If any type in X intersects with
2845 ;;; a type in Y but is not a subtype, then we give up.
2847 ;;; We must also special-case any member type that appears in the
2848 ;;; union. We remove from X's members all objects that are TYPEP to Y.
2849 ;;; If Y has any members, we must be careful that none of those
2850 ;;; members are CTYPEP to any of Y's non-member types. We give up in
2851 ;;; this case, since to compute that difference we would have to break
2852 ;;; the type from X into some collection of types that represents the
2853 ;;; type without that particular element. This seems too hairy to be
2854 ;;; worthwhile, given its low utility.
2855 (defun type-difference (x y
)
2856 (let ((x-types (if (union-type-p x
) (union-type-types x
) (list x
)))
2857 (y-types (if (union-type-p y
) (union-type-types y
) (list y
))))
2859 (dolist (x-type x-types
)
2860 (if (member-type-p x-type
)
2861 (collect ((members))
2862 (dolist (mem (member-type-members x-type
))
2863 (multiple-value-bind (val win
) (ctypep mem y
)
2864 (unless win
(return-from type-difference nil
))
2868 (res (make-member-type :members
(members)))))
2869 (dolist (y-type y-types
(res x-type
))
2870 (multiple-value-bind (val win
) (csubtypep x-type y-type
)
2871 (unless win
(return-from type-difference nil
))
2873 (when (types-equal-or-intersect x-type y-type
)
2874 (return-from type-difference nil
))))))
2875 (let ((y-mem (find-if #'member-type-p y-types
)))
2877 (let ((members (member-type-members y-mem
)))
2878 (dolist (x-type x-types
)
2879 (unless (member-type-p x-type
)
2880 (dolist (member members
)
2881 (multiple-value-bind (val win
) (ctypep member x-type
)
2882 (when (or (not win
) val
)
2883 (return-from type-difference nil
)))))))))
2884 (apply #'type-union
(res)))))
2886 (!def-type-translator array
(&optional
(element-type '*)
2888 (specialize-array-type
2889 (make-array-type :dimensions
(canonical-array-dimensions dimensions
)
2891 :element-type
(if (eq element-type
'*)
2893 (specifier-type element-type
)))))
2895 (!def-type-translator simple-array
(&optional
(element-type '*)
2897 (specialize-array-type
2898 (make-array-type :dimensions
(canonical-array-dimensions dimensions
)
2900 :element-type
(if (eq element-type
'*)
2902 (specifier-type element-type
)))))
2904 ;;;; utilities shared between cross-compiler and target system
2906 ;;; Does the type derived from compilation of an actual function
2907 ;;; definition satisfy declarations of a function's type?
2908 (defun defined-ftype-matches-declared-ftype-p (defined-ftype declared-ftype
)
2909 (declare (type ctype defined-ftype declared-ftype
))
2910 (flet ((is-built-in-class-function-p (ctype)
2911 (and (built-in-classoid-p ctype
)
2912 (eq (built-in-classoid-name ctype
) 'function
))))
2913 (cond (;; DECLARED-FTYPE could certainly be #<BUILT-IN-CLASS FUNCTION>;
2914 ;; that's what happens when we (DECLAIM (FTYPE FUNCTION FOO)).
2915 (is-built-in-class-function-p declared-ftype
)
2916 ;; In that case, any definition satisfies the declaration.
2918 (;; It's not clear whether or how DEFINED-FTYPE might be
2919 ;; #<BUILT-IN-CLASS FUNCTION>, but it's not obviously
2920 ;; invalid, so let's handle that case too, just in case.
2921 (is-built-in-class-function-p defined-ftype
)
2922 ;; No matter what DECLARED-FTYPE might be, we can't prove
2923 ;; that an object of type FUNCTION doesn't satisfy it, so
2924 ;; we return success no matter what.
2926 (;; Otherwise both of them must be FUN-TYPE objects.
2928 ;; FIXME: For now we only check compatibility of the return
2929 ;; type, not argument types, and we don't even check the
2930 ;; return type very precisely (as per bug 94a). It would be
2931 ;; good to do a better job. Perhaps to check the
2932 ;; compatibility of the arguments, we should (1) redo
2933 ;; VALUES-TYPES-EQUAL-OR-INTERSECT as
2934 ;; ARGS-TYPES-EQUAL-OR-INTERSECT, and then (2) apply it to
2935 ;; the ARGS-TYPE slices of the FUN-TYPEs. (ARGS-TYPE
2936 ;; is a base class both of VALUES-TYPE and of FUN-TYPE.)
2937 (values-types-equal-or-intersect
2938 (fun-type-returns defined-ftype
)
2939 (fun-type-returns declared-ftype
))))))
2941 ;;; This messy case of CTYPE for NUMBER is shared between the
2942 ;;; cross-compiler and the target system.
2943 (defun ctype-of-number (x)
2944 (let ((num (if (complexp x
) (realpart x
) x
)))
2945 (multiple-value-bind (complexp low high
)
2947 (let ((imag (imagpart x
)))
2948 (values :complex
(min num imag
) (max num imag
)))
2949 (values :real num num
))
2950 (make-numeric-type :class
(etypecase num
2952 (rational 'rational
)
2954 :format
(and (floatp num
) (float-format-name num
))
2960 ;; Why SAFETY 0? To suppress the is-it-the-right-structure-type
2961 ;; checking for declarations in structure accessors. Otherwise we
2962 ;; can get caught in a chicken-and-egg bootstrapping problem, whose
2963 ;; symptom on x86 OpenBSD sbcl-0.pre7.37.flaky5.22 is an illegal
2964 ;; instruction trap. I haven't tracked it down, but I'm guessing it
2965 ;; has to do with setting LAYOUTs when the LAYOUT hasn't been set
2967 (declare (optimize (safety 0)))
2968 (!defun-from-collected-cold-init-forms
!late-type-cold-init
))
2970 (/show0
"late-type.lisp end of file")