X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdeftypes-for-target.lisp;h=ed97565ebee64ad2565883fe1728b7996e33cbe3;hb=771b864c8f32af7734bc0550aeaf1539fc4df194;hp=87f6d3e0d706447bab661e7128c794845ea571ae;hpb=4680204d81349894f47d2ba5fcfc92ecf4e725d3;p=sbcl.git diff --git a/src/code/deftypes-for-target.lisp b/src/code/deftypes-for-target.lisp index 87f6d3e..ed97565 100644 --- a/src/code/deftypes-for-target.lisp +++ b/src/code/deftypes-for-target.lisp @@ -33,7 +33,7 @@ (sb!xc:deftype signed-byte (&optional s) (cond ((eq s '*) 'integer) - ((and (integerp s) (> s 1)) + ((and (integerp s) (> s 0)) (let ((bound (ash 1 (1- s)))) `(integer ,(- bound) ,(1- bound)))) (t @@ -46,6 +46,14 @@ (t (error "bad size specified for UNSIGNED-BYTE type specifier: ~S" s)))) +;;; ANSI got UNSIGNED-BYTE wrong, prohibiting (UNSIGNED-BYTE 0). +;;; Since this is actually a substantial impediment to clarity... +(sb!xc:deftype unsigned-byte* (&optional s) + (cond + ((eq s '*) '(integer 0)) + ((zerop s) '(integer 0 0)) + (t `(unsigned-byte ,s)))) + (sb!xc:deftype bit () '(integer 0 1)) (sb!xc:deftype compiled-function () 'function) @@ -61,9 +69,9 @@ #!+sb-doc "Type corresponding to the characters required by the standard." '(member - #\NEWLINE #\SPACE #\! #\" #\# #\$ #\% #\& #\' #\( #\) #\* #\+ #\, + #\Newline #\Space #\! #\" #\# #\$ #\% #\& #\' #\( #\) #\* #\+ #\, #\- #\. #\/ #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\: #\; #\< #\= - #\> #\? #\@ #\A #\B #\C #\D #\E #\F #\G #\H #\I #\J #\K #\L #\M + #\> #\? #\@ #\A #\B #\C #\D #\E #\F #\G #\H #\I #\J #\K #\L #\M #\N #\O #\P #\Q #\R #\S #\T #\U #\V #\W #\X #\Y #\Z #\[ #\\ #\] #\^ #\_ #\` #\a #\b #\c #\d #\e #\f #\g #\h #\i #\j #\k #\l #\m #\n #\o #\p #\q #\r #\s #\t #\u #\v #\w #\x #\y #\z #\{ @@ -106,6 +114,12 @@ ;;; semistandard types (sb!xc:deftype generalized-boolean () t) +(sb!xc:deftype format-control () + '(or string function)) + +(sb!xc:deftype restart-designator () + '(or (and symbol (not null)) restart)) + ;;; array rank, total size... (sb!xc:deftype array-rank () `(integer 0 (,sb!xc:array-rank-limit))) (sb!xc:deftype array-total-size () @@ -115,9 +129,7 @@ ;;; FIXME: could probably go away (sb!xc:deftype form () t) -;;; Maclisp compatibility... -;;; FIXME: should be STRING-DESIGNATOR (the term used in the ANSI spec) -(sb!xc:deftype stringable () '(or string symbol character)) +(sb!xc:deftype string-designator () '(or string symbol character)) ;;; a thing legal in places where we want the name of a file (sb!xc:deftype filename () '(or string pathname)) @@ -128,6 +140,10 @@ (sb!xc:deftype logical-host-designator () '(or host string)) +(sb!xc:deftype package-designator () '(or string-designator sb!xc:package)) +;;; a designator for a list of symbols +(sb!xc:deftype symbols-designator () '(or list symbol)) + ;;; a thing returned by the irrational functions. We assume that they ;;; never compute a rational result. (sb!xc:deftype irrational () @@ -147,10 +163,7 @@ `(or null integer)) ;;; a valid argument to a stream function -;;; -;;; FIXME: should probably be STREAM-DESIGNATOR, after the term -;;; used in the ANSI spec (if this is in fact exactly the same thing) -(sb!xc:deftype streamlike () '(or stream (member nil t))) +(sb!xc:deftype stream-designator () '(or stream (member nil t))) ;;; an object suitable for input to standard functions that accept ;;; "environment objects" (of the ANSI glossary)