[movitz-cvs] CVS update: movitz/storage-types.lisp

Frode Vatvedt Fjeld ffjeld at common-lisp.net
Tue Jul 13 02:26:19 UTC 2004


Update of /project/movitz/cvsroot/movitz
In directory common-lisp.net:/tmp/cvs-serv9952

Modified Files:
	storage-types.lisp 
Log Message:
Changed the run-time-context slot num-values from being lu32 to being
a word (i.e. a fixnum).

Date: Mon Jul 12 19:26:19 2004
Author: ffjeld

Index: movitz/storage-types.lisp
diff -u movitz/storage-types.lisp:1.27 movitz/storage-types.lisp:1.28
--- movitz/storage-types.lisp:1.27	Mon Jul 12 04:09:12 2004
+++ movitz/storage-types.lisp	Mon Jul 12 19:26:19 2004
@@ -9,7 +9,7 @@
 ;;;; Created at:    Sun Oct 22 00:22:43 2000
 ;;;; Distribution:  See the accompanying file COPYING.
 ;;;;                
-;;;; $Id: storage-types.lisp,v 1.27 2004/07/12 11:09:12 ffjeld Exp $
+;;;; $Id: storage-types.lisp,v 1.28 2004/07/13 02:26:19 ffjeld Exp $
 ;;;;                
 ;;;;------------------------------------------------------------------
 
@@ -891,10 +891,12 @@
     :initform 0
     :accessor movitz-funobj-num-jumpers
     :map-binary-write (lambda (x &optional type)
-		       (declare (ignore typE))
-			(* x +movitz-fixnum-factor+))
+		       (declare (ignore type))
+		       (check-type x (unsigned-byte 14))
+		       (* x +movitz-fixnum-factor+))
     :map-binary-read (lambda (x &optional type)
-		       (declare (ignore typE))
+		       (declare (ignore type))
+		       (assert (zerop (ldb (byte 2 0) x)))
 		       (/ x +movitz-fixnum-factor+)))
    (num-constants
     :binary-type lu16





More information about the Movitz-cvs mailing list