1 ;;;; predicate functions (EQUAL and friends, and type predicates)
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!IMPL")
14 ;;;; miscellaneous non-primitive predicates
16 #!-sb-fluid (declaim (inline streamp))
17 (defun streamp (stream)
18 (typep stream 'stream))
20 ;;; Is X a (VECTOR T)?
22 (or (simple-vector-p x)
23 (and (complex-vector-p x)
24 (do ((data (%array-data-vector x) (%array-data-vector data)))
25 ((not (array-header-p data)) (simple-vector-p data))))))
27 ;;;; primitive predicates. These must be supported directly by the
32 "Return T if X is NIL, otherwise return NIL."
35 ;;; All the primitive type predicate wrappers share a parallel form..
36 (macrolet ((def-type-predicate-wrapper (pred)
37 (let* ((name (symbol-name pred))
38 (stem (string-left-trim "%" (string-right-trim "P-" name)))
39 (article (if (position (schar name 0) "AEIOU") "an" "a")))
40 `(defun ,pred (object)
42 "Return true if OBJECT is ~A ~A, and NIL otherwise."
45 ;; (falling through to low-level implementation)
47 (def-type-predicate-wrapper array-header-p)
48 (def-type-predicate-wrapper arrayp)
49 (def-type-predicate-wrapper atom)
50 (def-type-predicate-wrapper base-char-p)
51 (def-type-predicate-wrapper base-string-p)
52 #!+sb-unicode (def-type-predicate-wrapper character-string-p)
53 (def-type-predicate-wrapper bignump)
54 (def-type-predicate-wrapper bit-vector-p)
55 (def-type-predicate-wrapper characterp)
56 (def-type-predicate-wrapper code-component-p)
57 (def-type-predicate-wrapper consp)
58 (def-type-predicate-wrapper compiled-function-p)
59 (def-type-predicate-wrapper complexp)
60 (def-type-predicate-wrapper complex-double-float-p)
61 (def-type-predicate-wrapper complex-float-p)
62 #!+long-float (def-type-predicate-wrapper complex-long-float-p)
63 (def-type-predicate-wrapper complex-rational-p)
64 (def-type-predicate-wrapper complex-single-float-p)
65 ;; (COMPLEX-VECTOR-P is not included here since it's awkward to express
66 ;; the type it tests for in the Common Lisp type system, and since it's
67 ;; only used in the implementation of a few specialized things.)
68 (def-type-predicate-wrapper double-float-p)
69 (def-type-predicate-wrapper extended-char-p)
70 (def-type-predicate-wrapper fdefn-p)
71 (def-type-predicate-wrapper fixnump)
72 (def-type-predicate-wrapper floatp)
73 (def-type-predicate-wrapper functionp)
74 (def-type-predicate-wrapper integerp)
75 (def-type-predicate-wrapper listp)
76 (def-type-predicate-wrapper long-float-p)
77 #!+(and sb-thread sb-lutex)
78 (def-type-predicate-wrapper lutexp)
79 (def-type-predicate-wrapper lra-p)
80 (def-type-predicate-wrapper null)
81 (def-type-predicate-wrapper numberp)
82 (def-type-predicate-wrapper rationalp)
83 (def-type-predicate-wrapper ratiop)
84 (def-type-predicate-wrapper realp)
85 (def-type-predicate-wrapper short-float-p)
86 (def-type-predicate-wrapper simple-array-p)
87 (def-type-predicate-wrapper simple-bit-vector-p)
88 (def-type-predicate-wrapper simple-base-string-p)
89 #!+sb-unicode (def-type-predicate-wrapper simple-character-string-p)
90 (def-type-predicate-wrapper simple-string-p)
91 (def-type-predicate-wrapper simple-vector-p)
92 (def-type-predicate-wrapper single-float-p)
93 (def-type-predicate-wrapper stringp)
94 (def-type-predicate-wrapper %instancep)
95 (def-type-predicate-wrapper symbolp)
96 (def-type-predicate-wrapper system-area-pointer-p)
97 (def-type-predicate-wrapper weak-pointer-p)
98 (def-type-predicate-wrapper vectorp)
99 #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
100 (def-type-predicate-wrapper unsigned-byte-32-p)
101 #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
102 (def-type-predicate-wrapper signed-byte-32-p)
103 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
104 (def-type-predicate-wrapper unsigned-byte-64-p)
105 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
106 (def-type-predicate-wrapper signed-byte-64-p)
107 (def-type-predicate-wrapper simple-array-nil-p)
108 (def-type-predicate-wrapper simple-array-unsigned-byte-2-p)
109 (def-type-predicate-wrapper simple-array-unsigned-byte-4-p)
110 (def-type-predicate-wrapper simple-array-unsigned-byte-8-p)
111 (def-type-predicate-wrapper simple-array-unsigned-byte-16-p)
112 (def-type-predicate-wrapper simple-array-unsigned-byte-32-p)
113 (def-type-predicate-wrapper simple-array-signed-byte-8-p)
114 (def-type-predicate-wrapper simple-array-signed-byte-16-p)
115 (def-type-predicate-wrapper simple-array-signed-byte-30-p)
116 (def-type-predicate-wrapper simple-array-signed-byte-32-p)
117 (def-type-predicate-wrapper simple-array-single-float-p)
118 (def-type-predicate-wrapper simple-array-double-float-p)
119 #!+long-float (def-type-predicate-wrapper simple-array-long-float-p)
120 (def-type-predicate-wrapper simple-array-complex-single-float-p)
121 (def-type-predicate-wrapper simple-array-complex-double-float-p)
122 #!+long-float (def-type-predicate-wrapper simple-array-complex-long-float-p)
123 (def-type-predicate-wrapper vector-nil-p))
125 ;;; Return the specifier for the type of object. This is not simply
126 ;;; (TYPE-SPECIFIER (CTYPE-OF OBJECT)) because CTYPE-OF has different
127 ;;; goals than TYPE-OF. In particular, speed is more important than
128 ;;; precision, and it is not permitted to return member types.
129 (defun type-of (object)
131 "Return the type of OBJECT."
135 ((<= 0 object 1) 'bit)
136 ((< object 0) 'fixnum)
137 (t '(integer 0 #.sb!xc:most-positive-fixnum))))
140 '(integer #.(1+ sb!xc:most-positive-fixnum))
142 (standard-char 'standard-char)
143 (base-char 'base-char)
144 (extended-char 'extended-char)
145 ((member t) 'boolean)
147 ((or array complex) (type-specifier (ctype-of object)))
149 (let* ((classoid (layout-classoid (layout-of object)))
150 (name (classoid-name classoid)))
151 (if (%instancep object)
153 (sb!alien-internals:alien-value
155 ,(sb!alien-internals:unparse-alien-type
156 (sb!alien-internals:alien-value-type object))))
158 (let ((pname (classoid-proper-name classoid)))
159 (if (classoid-p pname)
160 (classoid-pcl-class pname)
164 ;;;; equality predicates
166 ;;; This is real simple, 'cause the compiler takes care of it.
167 (defun eq (obj1 obj2)
169 "Return T if OBJ1 and OBJ2 are the same object, otherwise NIL."
172 (declaim (inline %eql))
173 (defun %eql (obj1 obj2)
175 "Return T if OBJ1 and OBJ2 represent the same object, otherwise NIL."
177 (if (or (typep obj2 'fixnum)
178 (not (typep obj2 'number)))
180 (macrolet ((foo (&rest stuff)
182 ,@(mapcar (lambda (foo)
183 (let ((type (car foo))
186 (and (typep obj1 ',type)
196 (zerop (bignum-compare x y))))
199 (and (eql (numerator x) (numerator y))
200 (eql (denominator x) (denominator y)))))
203 (and (eql (realpart x) (realpart y))
204 (eql (imagpart x) (imagpart y))))))))))
209 (defun bit-vector-= (x y)
210 (declare (type bit-vector x y))
211 (if (and (simple-bit-vector-p x)
212 (simple-bit-vector-p y))
213 (bit-vector-= x y) ; DEFTRANSFORM
214 (and (= (length x) (length y))
219 (unless (= (bit x i) (bit y i))
224 "Return T if X and Y are EQL or if they are structured components
225 whose elements are EQUAL. Strings and bit-vectors are EQUAL if they
226 are the same length and have identical components. Other arrays must be
228 ;; Non-tail self-recursion implemented with a local auxiliary function
229 ;; is a lot faster than doing it the straightforward way (at least
230 ;; on x86oids) due to calling convention differences. -- JES, 2005-12-30
231 (labels ((equal-aux (x y)
236 (equal-aux (car x) (car y))
237 (equal-aux (cdr x) (cdr y))))
239 (and (stringp y) (string= x y)))
241 (and (pathnamep y) (pathname= x y)))
243 (and (bit-vector-p y)
246 ;; Use MAYBE-INLINE to get the inline expansion only once (instead
247 ;; of 200 times with INLINE). -- JES, 2005-12-30
248 (declare (maybe-inline equal-aux))
251 ;;; EQUALP comparison of HASH-TABLE values
252 (defun hash-table-equalp (x y)
253 (declare (type hash-table x y))
255 (and (hash-table-p y)
256 (eql (hash-table-count x) (hash-table-count y))
257 (eql (hash-table-test x) (hash-table-test y))
258 (block comparison-of-entries
259 (maphash (lambda (key x-value)
260 (multiple-value-bind (y-value y-value-p)
262 (unless (and y-value-p (equalp x-value y-value))
263 (return-from comparison-of-entries nil))))
268 #+nil ; KLUDGE: If doc string, should be accurate: Talk about structures
270 "This is like EQUAL, except more liberal in several respects.
271 Numbers may be of different types, as long as the values are identical
272 after coercion. Characters may differ in alphabetic case. Vectors and
273 arrays must have identical dimensions and EQUALP elements, but may differ
274 in their type restriction."
276 ((characterp x) (and (characterp y) (char-equal x y)))
277 ((numberp x) (and (numberp y) (= x y)))
280 (equalp (car x) (car y))
281 (equalp (cdr x) (cdr y))))
283 (and (pathnamep y) (pathname= x y)))
285 (and (hash-table-p y)
286 (hash-table-equalp x y)))
288 (let* ((layout-x (%instance-layout x))
289 (len (layout-length layout-x)))
291 (eq layout-x (%instance-layout y))
292 (structure-classoid-p (layout-classoid layout-x))
296 (let ((x-el (%instance-ref x i))
297 (y-el (%instance-ref y i)))
298 (unless (or (eq x-el y-el)
302 (let ((length (length x)))
304 (= length (length y))
305 (dotimes (i length t)
306 (let ((x-el (aref x i))
308 (unless (or (eq x-el y-el)
313 (= (array-rank x) (array-rank y))
314 (dotimes (axis (array-rank x) t)
315 (unless (= (array-dimension x axis)
316 (array-dimension y axis))
318 (dotimes (index (array-total-size x) t)
319 (let ((x-el (row-major-aref x index))
320 (y-el (row-major-aref y index)))
321 (unless (or (eq x-el y-el)
326 (/show0 "about to do test cases in pred.lisp")
328 (let ((test-cases `((0.0 ,(load-time-value (make-unportable-float :single-float-negative-zero)) t)
330 (#c(1 0) #c(1.0 0) t)
331 (#c(1.1 0) #c(11/10 0) nil) ; due to roundoff error
333 ("Hello" #(#\h #\E #\l #\l #\o) t)
334 ("Hello" "goodbye" nil))))
335 (/show0 "TEST-CASES bound in pred.lisp")
336 (dolist (test-case test-cases)
337 (/show0 "about to do a TEST-CASE in pred.lisp")
338 (destructuring-bind (x y expected-result) test-case
339 (let* ((result (equalp x y))
340 (bresult (if result 1 0))
341 (expected-bresult (if expected-result 1 0)))
342 (unless (= bresult expected-bresult)
343 (/show0 "failing test in pred.lisp")
344 (error "failed test (EQUALP ~S ~S)" x y))))))
345 (/show0 "done with test cases in pred.lisp")