d5750cdf3a0168fea32aa802afa2f53e0bcce3f3
[sbcl.git] / src / compiler / generic / vm-type.lisp
1 ;;;; This file contains implementation-dependent parts of the type
2 ;;;; support code. This is stuff which deals with the mapping from
3 ;;;; types defined in Common Lisp to types actually supported by an
4 ;;;; implementation.
5
6 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; more information.
8 ;;;;
9 ;;;; This software is derived from the CMU CL system, which was
10 ;;;; written at Carnegie Mellon University and released into the
11 ;;;; public domain. The software is in the public domain and is
12 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
13 ;;;; files for more information.
14
15 (in-package "SB!KERNEL")
16
17 ;;;; FIXME: I'm not sure where to put this. -- WHN 19990817
18
19 (def!type sb!vm:word () `(unsigned-byte ,sb!vm:n-word-bits))
20 (def!type sb!vm:signed-word () `(signed-byte ,sb!vm:n-word-bits))
21
22 \f
23 ;;;; implementation-dependent DEFTYPEs
24
25 ;;; Make DOUBLE-FLOAT a synonym for LONG-FLOAT, SINGLE-FLOAT for
26 ;;; SHORT-FLOAT. This is expanded before the translator gets a chance,
27 ;;; so we will get precedence.
28 #!-long-float
29 (setf (info :type :kind 'long-float) :defined)
30 #!-long-float
31 (sb!xc:deftype long-float (&optional low high)
32   `(double-float ,low ,high))
33 (setf (info :type :kind 'short-float) :defined)
34 (sb!xc:deftype short-float (&optional low high)
35   `(single-float ,low ,high))
36
37 ;;; an index into an integer
38 (sb!xc:deftype bit-index () `(integer 0 ,sb!xc:most-positive-fixnum))
39
40 ;;; worst-case values for float attributes
41 (sb!xc:deftype float-exponent ()
42   #!-long-float 'double-float-exponent
43   #!+long-float 'long-float-exponent)
44 (sb!xc:deftype float-digits ()
45   #!-long-float `(integer 0 ,sb!vm:double-float-digits)
46   #!+long-float `(integer 0 ,sb!vm:long-float-digits))
47 (sb!xc:deftype float-radix () '(integer 2 2))
48 (sb!xc:deftype float-int-exponent ()
49   #!-long-float 'double-float-int-exponent
50   #!+long-float 'long-float-int-exponent)
51
52 ;;; a code for BOOLE
53 (sb!xc:deftype boole-code () '(unsigned-byte 4))
54
55 ;;; a byte specifier (as generated by BYTE)
56 (sb!xc:deftype byte-specifier () 'cons)
57
58 ;;; result of CHAR-INT
59 (sb!xc:deftype char-int () 'char-code)
60
61 ;;; PATHNAME pieces, as returned by the PATHNAME-xxx functions
62 (sb!xc:deftype pathname-host () '(or sb!impl::host null))
63 (sb!xc:deftype pathname-device ()
64   '(or simple-string (member nil :unspecific :unc)))
65 (sb!xc:deftype pathname-directory () 'list)
66 (sb!xc:deftype pathname-name ()
67   '(or simple-string sb!impl::pattern (member nil :unspecific :wild)))
68 (sb!xc:deftype pathname-type ()
69   '(or simple-string sb!impl::pattern (member nil :unspecific :wild)))
70 (sb!xc:deftype pathname-version ()
71   '(or integer (member nil :newest :wild :unspecific)))
72
73 ;;; internal time format. (Note: not a FIXNUM, ouch..)
74 (sb!xc:deftype internal-time () 'unsigned-byte)
75
76 (sb!xc:deftype bignum-element-type () `(unsigned-byte ,sb!vm:n-word-bits))
77 (sb!xc:deftype bignum-type () 'bignum)
78 ;;; FIXME: see also DEFCONSTANT MAXIMUM-BIGNUM-LENGTH in
79 ;;; src/code/bignum.lisp.  -- CSR, 2004-07-19
80 (sb!xc:deftype bignum-index ()
81   '(integer 0 #.(1- (ash 1 (- sb!vm:n-word-bits sb!vm:n-widetag-bits)))))
82 \f
83 ;;;; hooks into the type system
84
85 (sb!xc:deftype unboxed-array (&optional dims)
86   (collect ((types (list 'or)))
87     (dolist (type *specialized-array-element-types*)
88       (when (subtypep type '(or integer character float (complex float)))
89         (types `(array ,type ,dims))))
90     (types)))
91
92 (sb!xc:deftype simple-unboxed-array (&optional dims)
93   (collect ((types (list 'or)))
94     (dolist (type *specialized-array-element-types*)
95       (when (subtypep type '(or integer character float (complex float)))
96         (types `(simple-array ,type ,dims))))
97     (types)))
98
99 (sb!xc:deftype complex-vector (&optional element-type length)
100   `(and (vector ,element-type ,length) (not simple-array)))
101
102 ;;; Return the symbol that describes the format of FLOAT.
103 (declaim (ftype (function (float) symbol) float-format-name))
104 (defun float-format-name (x)
105   (etypecase x
106     (single-float 'single-float)
107     (double-float 'double-float)
108     #!+long-float (long-float 'long-float)))
109
110 ;;; This function is called when the type code wants to find out how
111 ;;; an array will actually be implemented. We set the
112 ;;; SPECIALIZED-ELEMENT-TYPE to correspond to the actual
113 ;;; specialization used in this implementation.
114 (declaim (ftype (function (array-type) array-type) specialize-array-type))
115 (defun specialize-array-type (type)
116   (let ((eltype (array-type-element-type type)))
117     (setf (array-type-specialized-element-type type)
118           (if (or (eq eltype *wild-type*)
119                   ;; This is slightly dubious, but not as dubious as
120                   ;; assuming that the upgraded-element-type should be
121                   ;; equal to T, given the way that the AREF
122                   ;; DERIVE-TYPE optimizer works.  -- CSR, 2002-08-19
123                   (unknown-type-p eltype))
124               *wild-type*
125               (dolist (stype-name *specialized-array-element-types*
126                                   *universal-type*)
127                 ;; FIXME: Mightn't it be better to have
128                 ;; *SPECIALIZED-ARRAY-ELEMENT-TYPES* be stored as precalculated
129                 ;; SPECIFIER-TYPE results, instead of having to calculate
130                 ;; them on the fly this way? (Call the new array
131                 ;; *SPECIALIZED-ARRAY-ELEMENT-SPECIFIER-TYPES* or something..)
132                 (let ((stype (specifier-type stype-name)))
133                   (aver (not (unknown-type-p stype)))
134                   (when (csubtypep eltype stype)
135                     (return stype))))))
136     type))
137
138 (defun sb!xc:upgraded-array-element-type (spec &optional environment)
139   #!+sb-doc
140   "Return the element type that will actually be used to implement an array
141    with the specifier :ELEMENT-TYPE Spec."
142   (declare (ignore environment))
143   (if (unknown-type-p (specifier-type spec))
144       (error "undefined type: ~S" spec)
145       (type-specifier (array-type-specialized-element-type
146                        (specifier-type `(array ,spec))))))
147
148 (defun sb!xc:upgraded-complex-part-type (spec &optional environment)
149   #!+sb-doc
150   "Return the element type of the most specialized COMPLEX number type that
151    can hold parts of type SPEC."
152   (declare (ignore environment))
153   (let ((type (specifier-type spec)))
154     (cond
155       ((eq type *empty-type*) nil)
156       ((unknown-type-p type) (error "undefined type: ~S" spec))
157       (t
158        (let ((ctype (specifier-type `(complex ,spec))))
159          (cond
160            ((eq ctype *empty-type*) '(eql 0))
161            ((csubtypep ctype (specifier-type '(complex single-float)))
162             'single-float)
163            ((csubtypep ctype (specifier-type '(complex double-float)))
164             'double-float)
165            #!+long-float
166            ((csubtypep ctype (specifier-type '(complex long-float)))
167             'long-float)
168            ((csubtypep ctype (specifier-type '(complex rational)))
169             'rational)
170            (t 'real)))))))
171
172 ;;; Return the most specific integer type that can be quickly checked that
173 ;;; includes the given type.
174 (defun containing-integer-type (subtype)
175   (dolist (type `(fixnum
176                   (signed-byte ,sb!vm:n-word-bits)
177                   (unsigned-byte ,sb!vm:n-word-bits)
178                   integer)
179                 (error "~S isn't an integer type?" subtype))
180     (when (csubtypep subtype (specifier-type type))
181       (return type))))
182
183 ;;; If TYPE has a CHECK-xxx template, but doesn't have a corresponding
184 ;;; PRIMITIVE-TYPE, then return the template's name. Otherwise, return NIL.
185 (defun hairy-type-check-template-name (type)
186   (declare (type ctype type))
187   (typecase type
188     (cons-type
189      (if (type= type (specifier-type 'cons))
190          'sb!c:check-cons
191          nil))
192     (built-in-classoid
193      (if (type= type (specifier-type 'symbol))
194          'sb!c:check-symbol
195          nil))
196     (numeric-type
197      (cond ((type= type (specifier-type 'fixnum))
198             'sb!c:check-fixnum)
199            #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
200            ((type= type (specifier-type '(signed-byte 32)))
201             'sb!c:check-signed-byte-32)
202            #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
203            ((type= type (specifier-type '(unsigned-byte 32)))
204             'sb!c:check-unsigned-byte-32)
205            #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
206            ((type= type (specifier-type '(signed-byte 64)))
207             'sb!c:check-signed-byte-64)
208            #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
209            ((type= type (specifier-type '(unsigned-byte 64)))
210             'sb!c:check-unsigned-byte-64)
211            (t nil)))
212     (fun-type
213      'sb!c:check-fun)
214     (t
215      nil)))