From 792e8f1ccd50dd75b1498fa07b216ca0da5de4cf Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Thu, 27 Jan 2005 14:45:58 +0000 Subject: [PATCH] Add AMOP style custom slot allocation. Patch from Sverker Wiberg, cmucl-imp, 2005-01-18. --- pcl/dfun.lisp | 14 +++++++------- pcl/info.lisp | 6 +++--- pcl/slots-boot.lisp | 47 ++++++++++++++++++++++++++++++++++++++------- pcl/std-class.lisp | 8 ++++---- 4 files changed, 54 insertions(+), 21 deletions(-) diff --git a/pcl/dfun.lisp b/pcl/dfun.lisp index 88f4a16ae..19dc45ab5 100644 --- a/pcl/dfun.lisp +++ b/pcl/dfun.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/dfun.lisp,v 1.35 2003/08/27 09:02:00 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/dfun.lisp,v 1.36 2005/01/27 14:45:58 rtoy Exp $") (in-package :pcl) @@ -1613,7 +1613,7 @@ And so, we are saved. (case (car ntype) (class (let* ((class (type-class specl)) - (cpl (cpl-or-nil class))) + (cpl (cpl-maybe-early class))) (not (memq (cadr ntype) cpl)))) (class-eq (let ((class (case (car specl) @@ -1626,7 +1626,7 @@ And so, we are saved. (class-eq (cadr specl)) (prototype (cadr specl)) (class (cadr specl)))) - (cpl (cpl-or-nil class))) + (cpl (cpl-maybe-early class))) (not (memq (cadr ntype) cpl)))) (eql (case (car specl) @@ -1640,7 +1640,7 @@ And so, we are saved. (if (eq 'class (car specl)) (let* ((specl (cadr specl)) (type (cadr type)) - (cpl (cpl-or-nil type)) + (cpl (cpl-maybe-early type)) (pred (memq specl cpl))) (values pred (or pred @@ -1651,7 +1651,7 @@ And so, we are saved. (classes-have-common-subclass-p specl type))))) (values nil (let* ((class (type-class specl)) - (cpl (cpl-or-nil class))) + (cpl (cpl-maybe-early class))) (memq (cadr type) cpl))))) (defun classes-have-common-subclass-p (class1 class2) @@ -1671,7 +1671,7 @@ And so, we are saved. (class (or (eq (cadr specl) (cadr type)) (memq (cadr specl) - (cpl-or-nil (cadr type)))))))) + (cpl-maybe-early (cadr type)))))))) (values pred pred)))) (defun saut-prototype (specl type) @@ -1686,7 +1686,7 @@ And so, we are saved. (eq (cadr specl) (class-of (cadr type)))) (class (memq (cadr specl) - (cpl-or-nil (class-of (cadr type)))))))) + (cpl-maybe-early (class-of (cadr type)))))))) (values pred pred))) diff --git a/pcl/info.lisp b/pcl/info.lisp index cb2fdddfc..14cd7a700 100644 --- a/pcl/info.lisp +++ b/pcl/info.lisp @@ -36,7 +36,7 @@ ;;; GF is actually non-accessor GF. Clean this up. ;;; (setf symbol-value) should be handled like (setf fdefinition) -(file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/info.lisp,v 1.9 2003/06/03 10:28:23 gerd Exp $") +(file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/info.lisp,v 1.10 2005/01/27 14:45:58 rtoy Exp $") (in-package "PCL") @@ -58,8 +58,8 @@ (defstruct slot-info (name nil :type symbol) ;; - ;; Specified slot allocation.or :INSTANCE. - (allocation :instance :type (member :class :instance)) + ;; Specified slot allocation. + (allocation :instance :type (or (member :class :instance) t)) ;; ;; Specified slot type or T. (type t :type (or symbol list))) diff --git a/pcl/slots-boot.lisp b/pcl/slots-boot.lisp index c78d09d12..2533facf7 100644 --- a/pcl/slots-boot.lisp +++ b/pcl/slots-boot.lisp @@ -26,7 +26,7 @@ ;;; (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/slots-boot.lisp,v 1.25 2003/06/17 13:16:45 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/slots-boot.lisp,v 1.26 2005/01/27 14:45:58 rtoy Rel $") ;;; (in-package :pcl) @@ -198,7 +198,12 @@ (let ((value (cdr index))) (if (eq value +slot-unbound+) (values (slot-unbound (class-of instance) instance slot-name)) - value))))) + value)))) + (null (lambda (instance) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name (class-of instance))))) `(reader ,slot-name))) (defun make-optimized-std-writer-method-function (fsc-p slot-name index) @@ -214,7 +219,12 @@ (setf (%slot-ref (std-instance-slots instance) index) nv)))) (cons (lambda (nv instance) (check-obsolete-instance instance) - (setf (cdr index) nv)))) + (setf (cdr index) nv))) + (null (lambda (instance) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name (class-of instance))))) `(writer ,slot-name))) (defun make-optimized-std-boundp-method-function (fsc-p slot-name index) @@ -232,7 +242,12 @@ +slot-unbound+))))) (cons (lambda (instance) (check-obsolete-instance instance) - (not (eq (cdr index) +slot-unbound+))))) + (not (eq (cdr index) +slot-unbound+)))) + (null (lambda (instance) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name (class-of instance))))) `(boundp ,slot-name))) (defun make-optimized-structure-slot-value-using-class-method-function (function) @@ -322,7 +337,13 @@ (let ((value (cdr index))) (if (eq value +slot-unbound+) (values (slot-unbound class instance slot-name)) - value)))))) + value)))) + (null (lambda (class instance slotd) + (declare (ignore slotd)) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name class))))) (defun make-optimized-std-setf-slot-value-using-class-method-function (fsc-p slot-name index) @@ -341,7 +362,13 @@ (cons (lambda (nv class instance slotd) (declare (ignore class slotd)) (check-obsolete-instance instance) - (setf (cdr index) nv))))) + (setf (cdr index) nv))) + (null (lambda (class instance slotd) + (declare (ignore slotd)) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name class))))) (defun make-optimized-std-slot-boundp-using-class-method-function (fsc-p slot-name index) @@ -362,7 +389,13 @@ (cons (lambda (class instance slotd) (declare (ignore class slotd)) (check-obsolete-instance instance) - (not (eq (cdr index) +slot-unbound+)))))) + (not (eq (cdr index) +slot-unbound+)))) + (null (lambda (class instance slotd) + (declare (ignore slotd)) + (check-obsolete-instance instance) + (error "~@<Slot ~S in class ~S ~ + does not have standard allocation.~@:>" + slot-name class))))) (defun make-internal-reader-method-function (class-name slot-name) (list* :method-spec `(internal-reader-method ,class-name ,slot-name) diff --git a/pcl/std-class.lisp b/pcl/std-class.lisp index 2148c47c1..dac456aa5 100644 --- a/pcl/std-class.lisp +++ b/pcl/std-class.lisp @@ -26,7 +26,7 @@ ;;; (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.74 2004/09/25 22:09:29 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.75 2005/01/27 14:45:58 rtoy Exp $") (in-package :pcl) @@ -870,7 +870,7 @@ (defun update-slots (class eslotds) (collect ((instance-slots) (class-slots)) (dolist (eslotd eslotds) - (ecase (slot-definition-allocation eslotd) + (case (slot-definition-allocation eslotd) (:instance (instance-slots eslotd)) (:class (class-slots eslotd)))) ;; @@ -1002,7 +1002,7 @@ (loop with slotds = (call-next-method) and location = -1 for slot in slotds do (setf (slot-definition-location slot) - (ecase (slot-definition-allocation slot) + (case (slot-definition-allocation slot) (:instance (incf location)) (:class @@ -1048,7 +1048,7 @@ (instance-slots ()) (class-slots ())) (loop for slotd in all-slotds do - (ecase (slot-definition-allocation slotd) + (case (slot-definition-allocation slotd) (:instance (push slotd instance-slots)) (:class (push slotd class-slots)))) (loop with layout = (compute-layout instance-slots) -- GitLab