0.6.11.45:
[sbcl.git] / src / compiler / ctype.lisp
index f094849..948c0df 100644 (file)
      (t
       (check-fixed-and-rest args (append required optional) rest)
       (when keyp
-       (check-keywords args max-args type))))
+       (check-key-args args max-args type))))
 
     (let* ((dtype (node-derived-type call))
           (return-type (function-type-returns type))
     (let ((ctype (continuation-type cont)))
       (multiple-value-bind (int win) (funcall *test-function* ctype type)
        (cond ((not win)
-              (note-slime "can't tell whether the ~:R argument is a ~S" n
-                          (type-specifier type))
+              (note-slime "can't tell whether the ~:R argument is a ~S"
+                          n (type-specifier type))
               nil)
              ((not int)
-              (note-lossage "The ~:R argument is a ~S, not a ~S." n
-                            (type-specifier ctype)
-                            (type-specifier type))
+              (note-lossage "The ~:R argument is a ~S, not a ~S."
+                            n (type-specifier ctype) (type-specifier type))
               nil)
              ((eq ctype *empty-type*)
               (note-slime "The ~:R argument never returns a value." n)
     (check-arg-type (car arg) (car type) n))
   (values))
 
-;;; Check that the keyword args are of the correct type. Each keyword
-;;; should be known and the corresponding argument should be of the
-;;; correct type. If the keyword isn't a constant, then we can't tell,
-;;; so we note slime.
-(declaim (ftype (function (list fixnum function-type) (values)) check-keywords))
-(defun check-keywords (args pre-key type)
+;;; Check that the &KEY args are of the correct type. Each key should
+;;; be known and the corresponding argument should be of the correct
+;;; type. If the key isn't a constant, then we can't tell, so we note
+;;; slime.
+(declaim (ftype (function (list fixnum function-type) (values)) check-key-args))
+(defun check-key-args (args pre-key type)
   (do ((key (nthcdr pre-key args) (cddr key))
        (n (1+ pre-key) (+ n 2)))
       ((null key))
                    (:required (req type))
                    (:optional (opt type))
                    (:keyword
-                    (keys (make-key-info :name (arg-info-keyword info)
+                    (keys (make-key-info :name (arg-info-key info)
                                          :type type)))
                    ((:rest :more-context)
                     (setq rest *universal-type*))
 ;;;; proclamation, we can check the actual type for compatibity with the
 ;;;; previous uses.
 
-(defstruct (approximate-function-type)
-  ;; The smallest and largest numbers of arguments that this function has been
-  ;; called with.
-  (min-args call-arguments-limit :type fixnum)
+(defstruct (approximate-function-type (:copier nil))
+  ;; the smallest and largest numbers of arguments that this function
+  ;; has been called with.
+  (min-args sb!xc:call-arguments-limit :type fixnum)
   (max-args 0 :type fixnum)
-  ;; A list of lists of the all the types that have been used in each argument
-  ;; position.
+  ;; a list of lists of the all the types that have been used in each
+  ;; argument position
   (types () :type list)
-  ;; A list of the Approximate-Key-Info structures describing all the things
-  ;; that looked like keyword arguments. There are distinct structures
-  ;; describing each argument position in which the keyword appeared.
+  ;; A list of APPROXIMATE-KEY-INFO structures describing all the
+  ;; things that looked like &KEY arguments. There are distinct
+  ;; structures describing each argument position in which the keyword
+  ;; appeared.
   (keys () :type list))
 
-(defstruct (approximate-key-info)
-  ;; The keyword name of this argument. Although keyword names don't have to
-  ;; be keywords, we only match on keywords when figuring an approximate type.
+(defstruct (approximate-key-info (:copier nil))
+  ;; The keyword name of this argument. Although keyword names don't
+  ;; have to be keywords, we only match on keywords when figuring an
+  ;; approximate type.
   (name (required-argument) :type keyword)
   ;; The position at which this keyword appeared. 0 if it appeared as the
   ;; first argument, etc.
   (position (required-argument) :type fixnum)
-  ;; A list of all the argument types that have been used with this keyword.
+  ;; a list of all the argument types that have been used with this keyword
   (types nil :type list)
-  ;; True if this keyword has appeared only in calls with an obvious
-  ;; :allow-other-keys.
+  ;; true if this keyword has appeared only in calls with an obvious
+  ;; :ALLOW-OTHER-KEYS
   (allowp nil :type (member t nil)))
 
 ;;; Return an APPROXIMATE-FUNCTION-TYPE representing the context of
                          (values boolean boolean))
                valid-approximate-type))
 (defun valid-approximate-type (call-type type &optional
-                                        (*test-function* #'types-intersect)
+                                        (*test-function*
+                                         #'types-equal-or-intersect)
                                         (*error-function*
                                          #'compiler-style-warning)
                                         (*warning-function* #'compiler-note))
 (defun try-type-intersections (vars types where)
   (declare (list vars types) (string where))
   (collect ((res))
-    (mapc #'(lambda (var type)
-             (let* ((vtype (leaf-type var))
-                    (int (type-intersection vtype type)))
-               (cond
-                ((eq int *empty-type*)
-                 (note-lossage
-                  "Definition's declared type for variable ~A:~%  ~S~@
+    (mapc (lambda (var type)
+           (let* ((vtype (leaf-type var))
+                  (int (type-approx-intersection2 vtype type)))
+             (cond
+              ((eq int *empty-type*)
+               (note-lossage
+                "Definition's declared type for variable ~A:~%  ~S~@
                   conflicts with this type from ~A:~%  ~S"
-                  (leaf-name var) (type-specifier vtype)
-                  where (type-specifier type))
-                 (return-from try-type-intersections (values nil nil)))
-                (t
-                 (res int)))))
+                (leaf-name var) (type-specifier vtype)
+                where (type-specifier type))
+               (return-from try-type-intersections (values nil nil)))
+              (t
+               (res int)))))
          vars types)
     (values vars (res))))
 
 ;;; Note that the variables in the returned list are the actual
 ;;; original variables (extracted from the optional dispatch arglist),
 ;;; rather than the variables that are arguments to the main entry.
-;;; This difference is significant only for keyword args with hairy
+;;; This difference is significant only for &KEY args with hairy
 ;;; defaults. Returning the actual vars allows us to use the right
 ;;; variable name in warnings.
 ;;;
     (flet ((frob (x y what)
             (unless (= x y)
               (note-lossage
-               "Definition has ~R ~A arg~P, but ~A has ~R."
+               "The definition has ~R ~A arg~P, but ~A has ~R."
                x what x where y))))
       (frob min (length req) "fixed")
       (frob (- (optional-dispatch-max-args od) min) (length opt) "optional"))
     (flet ((frob (x y what)
             (unless (eq x y)
               (note-lossage
-               "Definition ~:[doesn't have~;has~] ~A, but ~
+               "The definition ~:[doesn't have~;has~] ~A, but ~
                ~A ~:[doesn't~;does~]."
                x what where y))))
       (frob (optional-dispatch-keyp od) (function-type-keyp type)
-           "keyword args")
+           "&KEY arguments")
       (unless (optional-dispatch-keyp od)
        (frob (not (null (optional-dispatch-more-entry od)))
              (not (null (function-type-rest type)))
-             "rest args"))
+             "&REST arguments"))
       (frob (optional-dispatch-allowp od) (function-type-allowp type)
-           "&allow-other-keys"))
+           "&ALLOW-OTHER-KEYS"))
 
     (when *lossage-detected*
       (return-from find-optional-dispatch-types (values nil nil)))
                               (ctype-of (eval default)))))
              (ecase (arg-info-kind info)
                (:keyword
-                (let* ((key (arg-info-keyword info))
+                (let* ((key (arg-info-key info))
                        (kinfo (find key keys :key #'key-info-name)))
                   (cond
                    (kinfo
                        :key #'(lambda (x)
                                 (let ((info (lambda-var-arg-info x)))
                                   (when info
-                                    (arg-info-keyword info)))))
+                                    (arg-info-key info)))))
            (note-lossage
-            "The definition lacks the ~S keyword present in ~A."
+            "The definition lacks the ~S key present in ~A."
             (key-info-name key) where))))
 
       (try-type-intersections (vars) (res) where))))
             (note-lossage
              "The definition has no ~A, but the ~A did."
              what where))))
-    (frob (function-type-optional type) "optional args")
-    (frob (function-type-keyp type) "keyword args")
-    (frob (function-type-rest type) "rest arg"))
+    (frob (function-type-optional type) "&OPTIONAL arguments")
+    (frob (function-type-keyp type) "&KEY arguments")
+    (frob (function-type-rest type) "&REST argument"))
   (let* ((vars (lambda-vars lambda))
         (nvars (length vars))
         (req (function-type-required type))
             (atype (when return
                      (continuation-asserted-type (return-result return)))))
        (cond
-        ((and atype (not (values-types-intersect atype type-returns)))
+        ((and atype (not (values-types-equal-or-intersect atype
+                                                          type-returns)))
          (note-lossage
           "The result type from ~A:~%  ~S~@
           conflicts with the definition's result type assertion:~%  ~S"