ee87d6d5eeab5b555cd332dcf9e9bb4393173bce
[sbcl.git] / src / code / deftypes-for-target.lisp
1 ;;;; definitions of types for the target (output of the compiler)
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
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.
11
12 (in-package "SB!KERNEL")
13
14 (/show0 "deftypes-for-target.lisp 14")
15 \f
16 ;;;; Now that DEFTYPE is set up, any pending requests for it can
17 ;;;; be honored.
18
19 #+sb-xc-host
20 (progn
21   (/show "about to force delayed DEF!TYPEs")
22   (force-delayed-def!types)
23   (/show "done forcing delayed DEF!TYPEs"))
24 \f
25 ;;;; standard types
26
27 (sb!xc:deftype boolean () '(member t nil))
28
29 (sb!xc:deftype mod (n)
30   (unless (and (integerp n) (> n 0))
31     (error "bad modulus specified for MOD type specifier: ~S" n))
32   `(integer 0 ,(1- n)))
33
34 (sb!xc:deftype signed-byte (&optional s)
35   (cond ((eq s '*) 'integer)
36         ((and (integerp s) (> s 1))
37          (let ((bound (ash 1 (1- s))))
38            `(integer ,(- bound) ,(1- bound))))
39         (t
40          (error "bad size specified for SIGNED-BYTE type specifier: ~S" s))))
41
42 (sb!xc:deftype unsigned-byte (&optional s)
43   (cond ((eq s '*) '(integer 0))
44         ((and (integerp s) (> s 0))
45          `(integer 0 ,(1- (ash 1 s))))
46         (t
47          (error "bad size specified for UNSIGNED-BYTE type specifier: ~S" s))))
48
49 (sb!xc:deftype bit () '(integer 0 1))
50
51 (sb!xc:deftype compiled-function () 'function)
52
53 (sb!xc:deftype atom () '(not cons))
54
55 (sb!xc:deftype extended-char ()
56   #!+sb-doc
57   "Type of characters that aren't base-char's. None in CMU CL."
58   '(and character (not base-char)))
59
60 (sb!xc:deftype standard-char ()
61   #!+sb-doc
62   "Type corresponding to the characters required by the standard."
63   '(member
64     #\NEWLINE #\SPACE #\! #\" #\# #\$ #\% #\& #\' #\( #\) #\* #\+ #\,
65     #\- #\. #\/ #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\: #\; #\< #\=
66     #\> #\?  #\@ #\A #\B #\C #\D #\E #\F #\G #\H #\I #\J #\K #\L #\M
67     #\N #\O #\P #\Q #\R #\S #\T #\U #\V #\W #\X #\Y #\Z #\[ #\\ #\]
68     #\^ #\_ #\` #\a #\b #\c #\d #\e #\f #\g #\h #\i #\j #\k #\l #\m
69     #\n #\o #\p #\q #\r #\s #\t #\u #\v #\w #\x #\y #\z #\{
70     #\| #\} #\~))
71
72 (sb!xc:deftype keyword ()
73   ;; Defining this as (AND SYMBOL ..) lets (SUBTYPEP 'KEYWORD 'SYMBOL)=>T,T.
74   '(and symbol (satisfies keywordp)))
75
76 (sb!xc:deftype eql (n) `(member ,n))
77
78 (sb!xc:deftype vector (&optional element-type size)
79   `(array ,element-type (,size)))
80
81 (sb!xc:deftype simple-vector (&optional size)
82   `(simple-array t (,size)))
83
84 (sb!xc:deftype base-string (&optional size)
85   `(array base-char (,size)))
86 (sb!xc:deftype simple-base-string (&optional size)
87   `(simple-array base-char (,size)))
88 (sb!xc:deftype string (&optional size)
89   `(or (array character (,size))
90             (base-string ,size)))
91 (sb!xc:deftype simple-string (&optional size)
92   `(or (simple-array character (,size))
93             (simple-base-string ,size)))
94
95 (sb!xc:deftype bit-vector (&optional size)
96   `(array bit (,size)))
97
98 (sb!xc:deftype simple-bit-vector (&optional size)
99   `(simple-array bit (,size)))
100 \f
101 ;;;; some private types that we use in defining the standard functions
102
103 ;;; a type specifier
104 (sb!xc:deftype type-specifier () '(or list symbol sb!xc:class))
105
106 ;;; array rank, total size...
107 (sb!xc:deftype array-rank () `(integer 0 (,sb!xc:array-rank-limit)))
108 (sb!xc:deftype array-total-size ()
109   `(integer 0 (,sb!xc:array-total-size-limit)))
110
111 ;;; something legal in an evaluated context
112 ;;; FIXME: could probably go away
113 (sb!xc:deftype form () 't)
114
115 ;;; Maclisp compatibility...
116 ;;; FIXME: should be STRING-DESIGNATOR (the term used in the ANSI spec)
117 (sb!xc:deftype stringable () '(or string symbol character))
118
119 ;;; a thing legal in places where we want the name of a file
120 (sb!xc:deftype filename () '(or string pathname))
121
122 ;;; legal args to pathname functions
123 (sb!xc:deftype pathname-designator ()
124   '(or string pathname stream))
125 (sb!xc:deftype logical-host-designator ()
126   '(or host string))
127
128 ;;; a thing returned by the irrational functions. We assume that they
129 ;;; never compute a rational result.
130 (sb!xc:deftype irrational ()
131   '(or float (complex float)))
132
133 ;;; character components
134 (sb!xc:deftype char-code () `(integer 0 (,char-code-limit)))
135
136 ;;; a consed sequence result. If a vector, is a simple array.
137 (sb!xc:deftype consed-sequence () '(or list (simple-array * (*))))
138
139 ;;; the :END arg to a sequence
140 (sb!xc:deftype sequence-end () '(or null index))
141
142 ;;; a valid argument to a stream function
143 ;;;
144 ;;; FIXME: should probably be STREAM-DESIGNATOR, after the term
145 ;;; used in the ANSI spec (if this is in fact exactly the same thing)
146 (sb!xc:deftype streamlike () '(or stream (member nil t)))
147
148 ;;; a thing that can be passed to FUNCALL & friends
149 ;;;
150 ;;; FIXME: should be FUNCTION-DESIGNATOR?
151 (sb!xc:deftype callable () '(or function symbol))
152
153 ;;; decomposing floats into integers
154 (sb!xc:deftype single-float-exponent ()
155   `(integer ,(- sb!vm:single-float-normal-exponent-min
156                 sb!vm:single-float-bias
157                 sb!vm:single-float-digits)
158             ,(- sb!vm:single-float-normal-exponent-max
159                 sb!vm:single-float-bias)))
160 (sb!xc:deftype double-float-exponent ()
161   `(integer ,(- sb!vm:double-float-normal-exponent-min
162                 sb!vm:double-float-bias
163                 sb!vm:double-float-digits)
164             ,(- sb!vm:double-float-normal-exponent-max
165                 sb!vm:double-float-bias)))
166 (sb!xc:deftype single-float-int-exponent ()
167   `(integer ,(- sb!vm:single-float-normal-exponent-min
168                 sb!vm:single-float-bias
169                 (* sb!vm:single-float-digits 2))
170             ,(- sb!vm:single-float-normal-exponent-max
171                 sb!vm:single-float-bias
172                 sb!vm:single-float-digits)))
173 (sb!xc:deftype double-float-int-exponent ()
174   `(integer ,(- sb!vm:double-float-normal-exponent-min sb!vm:double-float-bias
175                 (* sb!vm:double-float-digits 2))
176             ,(- sb!vm:double-float-normal-exponent-max sb!vm:double-float-bias
177                 sb!vm:double-float-digits)))
178 (sb!xc:deftype single-float-significand ()
179   `(integer 0 (,(ash 1 sb!vm:single-float-digits))))
180 (sb!xc:deftype double-float-significand ()
181   `(integer 0 (,(ash 1 sb!vm:double-float-digits))))
182
183 (/show0 "deftypes-for-target.lisp end of file")