Skip to content
Snippets Groups Projects
Commit 5d43b3b1 authored by pmai's avatar pmai
Browse files

Added limited handling of subtypep for hairy and types, so that we can

report meaningful subtype information for types like ratio, which are
internally expanded to hairy and types, but where the standard
requires us to return valid subtype relationships with other built-in
types, like e.g. rational.
parent e27ba80a
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.39 2001/11/22 13:39:15 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.40 2002/02/23 01:48:57 pmai Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1013,16 +1013,35 @@ ...@@ -1013,16 +1013,35 @@
(define-type-method (hairy :complex-subtypep-arg2) (type1 type2) (define-type-method (hairy :complex-subtypep-arg2) (type1 type2)
(let ((hairy-spec (hairy-type-specifier type2))) (let ((hairy-spec (hairy-type-specifier type2)))
(cond ((and (consp hairy-spec) (eq (car hairy-spec) 'not)) (cond
(multiple-value-bind (val win) ((and (consp hairy-spec) (eq (car hairy-spec) 'not))
(type-intersection type1 (specifier-type (cadr hairy-spec))) (multiple-value-bind (val win)
(if win (type-intersection type1 (specifier-type (cadr hairy-spec)))
(values (eq val *empty-type*) t) (if win
(values nil nil)))) (values (eq val *empty-type*) t)
(t (values nil nil))))
(values nil nil))))) ((and (consp hairy-spec) (eq (car hairy-spec) 'and))
(block PUNT
(define-type-method (hairy :complex-subtypep-arg1 :complex-=) (type1 type2) (values (every-type-op csubtypep type1
(mapcar #'specifier-type (cdr hairy-spec)))
t)))
(t
(values nil nil)))))
(define-type-method (hairy :complex-subtypep-arg1) (type1 type2)
(let ((hairy-spec (hairy-type-specifier type1)))
(cond
((and (consp hairy-spec) (eq (car hairy-spec) 'and))
(block PUNT
(if (any-type-op csubtypep type2
(mapcar #'specifier-type (cdr hairy-spec))
:list-first t)
(values t t)
(values nil nil))))
(t
(values nil nil)))))
(define-type-method (hairy :complex-=) (type1 type2)
(declare (ignore type1 type2)) (declare (ignore type1 type2))
(values nil nil)) (values nil nil))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment