X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-extensions.lisp;h=e4fa9c580b3ffc771bff6a791e1948a78938f83b;hb=6c4d4d984b1af6b2a73568cec3ab9c8795cff2da;hp=cb48d4e202e5fc36c8d89068d85e86ce790aa7e4;hpb=d75b4eb603f1e9e366997c8e378fe0ae0d79b5d9;p=sbcl.git diff --git a/src/code/early-extensions.lisp b/src/code/early-extensions.lisp index cb48d4e..e4fa9c5 100644 --- a/src/code/early-extensions.lisp +++ b/src/code/early-extensions.lisp @@ -40,11 +40,20 @@ ;;; alpha platform. -- CSR, 2002-06-24 (def!type unsigned-byte-with-a-bite-out (s bite) (cond ((eq s '*) 'integer) - ((and (integerp s) (> s 1)) + ((and (integerp s) (> s 0)) (let ((bound (ash 1 s))) `(integer 0 ,(- bound bite 1)))) (t - (error "Bad size specified for SIGNED-BYTE type specifier: ~S." s)))) + (error "Bad size specified for UNSIGNED-BYTE type specifier: ~S." s)))) + +;;; Motivated by the mips port. -- CSR, 2002-08-22 +(def!type signed-byte-with-a-bite-out (s bite) + (cond ((eq s '*) 'integer) + ((and (integerp s) (> s 1)) + (let ((bound (ash 1 (1- s)))) + `(integer ,(- bound) ,(- bound bite 1)))) + (t + (error "Bad size specified for SIGNED-BYTE type specifier: ~S." s)))) (def!type load/store-index (scale lowtag min-offset &optional (max-offset min-offset)) @@ -588,6 +597,15 @@ (symbolp (cadr name)) (null (cddr name))))) +;;; Signal an error unless NAME is a legal function name. +(defun legal-fun-name-or-type-error (name) + (unless (legal-fun-name-p name) + (error 'simple-type-error + :datum name + :expected-type '(or symbol list) + :format-control "invalid function name: ~S" + :format-arguments (list name)))) + ;;; Given a function name, return the name for the BLOCK which ;;; encloses its body (e.g. in DEFUN, DEFINE-COMPILER-MACRO, or FLET). (declaim (ftype (function ((or symbol cons)) symbol) fun-name-block-name))