X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdeftypes-for-target.lisp;h=6c9ae1030da065a8bbfdd25b69e313141559a49e;hb=25e76ec2b1083ac6a4bba42af7ad7b5a8239f2b8;hp=f42b20b40abe19aed55fcdd7341fbe2b8aa6ca3f;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/code/deftypes-for-target.lisp b/src/code/deftypes-for-target.lisp index f42b20b..6c9ae10 100644 --- a/src/code/deftypes-for-target.lisp +++ b/src/code/deftypes-for-target.lisp @@ -10,6 +10,8 @@ ;;;; files for more information. (in-package "SB!KERNEL") + +(/show0 "deftypes-for-target.lisp 14") ;;;; Now that DEFTYPE is set up, any pending requests for it can ;;;; be honored. @@ -67,12 +69,9 @@ #\n #\o #\p #\q #\r #\s #\t #\u #\v #\w #\x #\y #\z #\{ #\| #\} #\~)) -;;; FIXME: Would type inference be able to get more traction on this -;;; if it were defined as (AND SYMBOL (SATISFIES KEYWORDP))? (sb!xc:deftype keyword () - #!+sb-doc - "Type for any keyword symbol." - '(satisfies keywordp)) + ;; Defining this as (AND SYMBOL ..) lets (SUBTYPEP 'KEYWORD 'SYMBOL)=>T,T. + '(and symbol (satisfies keywordp))) (sb!xc:deftype eql (n) `(member ,n)) @@ -99,7 +98,8 @@ (sb!xc:deftype simple-bit-vector (&optional size) `(simple-array bit (,size))) -;;;; some private types that we use in defining the standard functions +;;;; some private types that we use in defining the standard functions, +;;;; or implementing declarations in standard compiler transforms ;;; a type specifier (sb!xc:deftype type-specifier () '(or list symbol sb!xc:class)) @@ -111,7 +111,7 @@ ;;; something legal in an evaluated context ;;; FIXME: could probably go away -(sb!xc:deftype form () 't) +(sb!xc:deftype form () t) ;;; Maclisp compatibility... ;;; FIXME: should be STRING-DESIGNATOR (the term used in the ANSI spec) @@ -120,9 +120,11 @@ ;;; a thing legal in places where we want the name of a file (sb!xc:deftype filename () '(or string pathname)) -;;; a legal arg to pathname functions +;;; legal args to pathname functions (sb!xc:deftype pathname-designator () - '(or string pathname stream)) + '(or string pathname #+sb-xc-host stream #-sb-xc-host file-stream)) +(sb!xc:deftype logical-host-designator () + '(or host string)) ;;; a thing returned by the irrational functions. We assume that they ;;; never compute a rational result. @@ -130,7 +132,7 @@ '(or float (complex float))) ;;; character components -(sb!xc:deftype char-code () `(integer 0 (,char-code-limit))) +(sb!xc:deftype char-code () `(integer 0 (,sb!xc:char-code-limit))) ;;; a consed sequence result. If a vector, is a simple array. (sb!xc:deftype consed-sequence () '(or list (simple-array * (*)))) @@ -138,6 +140,10 @@ ;;; the :END arg to a sequence (sb!xc:deftype sequence-end () '(or null index)) +;;; the :COUNT arg to a sequence +(sb!xc:deftype sequence-count () + `(or null integer)) + ;;; a valid argument to a stream function ;;; ;;; FIXME: should probably be STREAM-DESIGNATOR, after the term @@ -178,3 +184,5 @@ `(integer 0 (,(ash 1 sb!vm:single-float-digits)))) (sb!xc:deftype double-float-significand () `(integer 0 (,(ash 1 sb!vm:double-float-digits)))) + +(/show0 "deftypes-for-target.lisp end of file")