X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Fvm-fndb.lisp;h=edfd9da18f09b66d5c56e66db6b6023e48b3752e;hb=77869604fc3eb4417a630651e5fe40e74342ee59;hp=4ade63d6d379170adda2cdcb2632f1cc2a719f58;hpb=4eb1a6d3ad2b7dcc19ac0ec979a1eb1eb049659a;p=sbcl.git diff --git a/src/compiler/generic/vm-fndb.lisp b/src/compiler/generic/vm-fndb.lisp index 4ade63d..edfd9da 100644 --- a/src/compiler/generic/vm-fndb.lisp +++ b/src/compiler/generic/vm-fndb.lisp @@ -22,7 +22,8 @@ complex-vector-p base-char-p %standard-char-p %instancep array-header-p - simple-array-p simple-array-unsigned-byte-2-p + simple-array-p simple-array-nil-p + simple-array-unsigned-byte-2-p simple-array-unsigned-byte-4-p simple-array-unsigned-byte-8-p simple-array-unsigned-byte-16-p simple-array-unsigned-byte-32-p simple-array-signed-byte-8-p simple-array-signed-byte-16-p @@ -179,19 +180,19 @@ ;;;; bignum operations -(defknown %allocate-bignum (bignum-index) bignum-widetag +(defknown %allocate-bignum (bignum-index) bignum-type (flushable)) -(defknown %bignum-length (bignum-widetag) bignum-index +(defknown %bignum-length (bignum-type) bignum-index (foldable flushable movable)) -(defknown %bignum-set-length (bignum-widetag bignum-index) bignum-widetag +(defknown %bignum-set-length (bignum-type bignum-index) bignum-type (unsafe)) -(defknown %bignum-ref (bignum-widetag bignum-index) bignum-element-type +(defknown %bignum-ref (bignum-type bignum-index) bignum-element-type (flushable)) -(defknown %bignum-set (bignum-widetag bignum-index bignum-element-type) +(defknown %bignum-set (bignum-type bignum-index bignum-element-type) bignum-element-type (unsafe)) @@ -239,23 +240,23 @@ (defknown copy-to-system-area ((simple-unboxed-array (*)) index system-area-pointer index index) - null + (values) ()) (defknown copy-from-system-area (system-area-pointer index (simple-unboxed-array (*)) index index) - null + (values) ()) (defknown system-area-copy (system-area-pointer index system-area-pointer index index) - null + (values) ()) (defknown bit-bash-copy ((simple-unboxed-array (*)) index (simple-unboxed-array (*)) index index) - null + (values) ()) ;;; (not really a bit-bashing routine, but starting to take over from @@ -263,7 +264,7 @@ (defknown %byte-blt ((or (simple-unboxed-array (*)) system-area-pointer) index (or (simple-unboxed-array (*)) system-area-pointer) index index) - null + (values) ()) ;;;; code/function/fdefn object manipulation routines @@ -272,9 +273,9 @@ (defknown code-header-ref (t index) t (flushable)) (defknown code-header-set (t index t) t ()) -(defknown function-subtype (function) (unsigned-byte #.sb!vm:n-widetag-bits) +(defknown fun-subtype (function) (unsigned-byte #.sb!vm:n-widetag-bits) (flushable)) -(defknown ((setf function-subtype)) +(defknown ((setf fun-subtype)) ((unsigned-byte #.sb!vm:n-widetag-bits) function) (unsigned-byte #.sb!vm:n-widetag-bits) ()) @@ -306,3 +307,7 @@ ;;;; mutator accessors (defknown mutator-self () system-area-pointer (flushable movable)) + +(defknown %data-vector-and-index (array index) + (values (simple-array * (*)) index) + (foldable flushable))