diff --git a/pcl/cloe-low.lisp b/pcl/cloe-low.lisp index a58e00085fdc9341d923479878dd5d392a5933ea..af7459de3466efc5810634e85c4e1369cb1dff70 100644 --- a/pcl/cloe-low.lisp +++ b/pcl/cloe-low.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (defmacro object-cache-no (object mask) `(logand (sys::address-of ,object) ,mask)) diff --git a/pcl/compat.lisp b/pcl/compat.lisp index 7d10ac387ba59d5dbf55a3bcbe20ec87d3b2bfb7..606915388599787e139609db4539d203cf61bca7 100644 --- a/pcl/compat.lisp +++ b/pcl/compat.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) () diff --git a/pcl/construct.lisp b/pcl/construct.lisp index 197b7e9f17e0b5a848ce1a3e3c4b662b350bca72..17784e2fe792b510c81721bf1d0c3e075501eace 100644 --- a/pcl/construct.lisp +++ b/pcl/construct.lisp @@ -29,7 +29,7 @@ ;;; mechanisms. ;;; -(in-package 'pcl) +(in-package :pcl) ;;; ;;; defconstructor is used to define special purpose functions which just @@ -289,7 +289,7 @@ (when old (remove-constructor class old)) (install-lazy-constructor-installer constructor) (add-constructor class constructor) - (setf (symbol-function name) constructor))) + (setf (gdefinition name) constructor))) (defmethod install-lazy-constructor-installer ((constructor constructor)) (let ((class (constructor-class constructor))) diff --git a/pcl/coral-low.lisp b/pcl/coral-low.lisp index a40a2914208366be2f76e25fe634da47c1f99bf4..650dd7517ba49abee36e6ce866c2a149dcef0910 100644 --- a/pcl/coral-low.lisp +++ b/pcl/coral-low.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) #-:ccl-1.3 (ccl::add-transform 'std-instance-p diff --git a/pcl/cpl.lisp b/pcl/cpl.lisp index ff05e951e9aac58b6ad636adeb4cf3c355ae2cab..6d01615bb056e98554089e756886110e05782af6 100644 --- a/pcl/cpl.lisp +++ b/pcl/cpl.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) ;;; ;;; compute-class-precedence-list diff --git a/pcl/ctypes.lisp b/pcl/ctypes.lisp index 190525b681cc688574a728a5bb25c05edbd9fc0d..bd2c7a6d632a2275ebac8d49ab3299c13ac5c9cf 100644 --- a/pcl/ctypes.lisp +++ b/pcl/ctypes.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) ;;; ;;; The built-in method combination types as taken from page 1-31 of 88-002R. diff --git a/pcl/defs.lisp b/pcl/defs.lisp index d5489f1b935f6f77429c81d1afb4dbc2ef382233..348c1f9dc3d3934557beb04b4605ffa9970723b3 100644 --- a/pcl/defs.lisp +++ b/pcl/defs.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (eval-when (compile load eval) @@ -77,10 +77,12 @@ (once-only (spec) `(cond (#-setf (symbolp ,spec) #+setf t (let ((,non-setf-var ,spec)) ,@non-setf-case)) + #-setf ((and (listp ,spec) (eq (car ,spec) 'setf) (symbolp (cadr ,spec))) (let ((,setf-var (cadr ,spec))) ,@setf-case)) + #-setf (t (error "Can't understand ~S as a generic function specifier.~%~ @@ -115,35 +117,38 @@ ;;; If symbol names a function which is traced or advised, redefine ;;; the `real' definition without affecting the advise. ;;; -(defun fdefine-carefully (symbol new-definition) - #+Lispm (si:fdefine symbol new-definition t t) +(defun fdefine-carefully (name new-definition) + #+Lispm (si:fdefine name new-definition t t) #+Lucid (let ((lucid::*redefinition-action* nil)) - (setf (symbol-function symbol) new-definition)) - #+excl (setf (symbol-function symbol) new-definition) - #+xerox (let ((advisedp (member symbol il:advisedfns :test #'eq)) - (brokenp (member symbol il:brokenfns :test #'eq))) + (setf (symbol-function name) new-definition)) + #+excl (setf (symbol-function name) new-definition) + #+xerox (let ((advisedp (member name il:advisedfns :test #'eq)) + (brokenp (member name il:brokenfns :test #'eq))) ;; In XeroxLisp (late of envos) tracing is implemented ;; as a special case of "breaking". Advising, however, ;; is treated specially. - (xcl:unadvise-function symbol :no-error t) - (xcl:unbreak-function symbol :no-error t) - (setf (symbol-function symbol) new-definition) - (when brokenp (xcl:rebreak-function symbol)) - (when advisedp (xcl:readvise-function symbol))) - #+setf (setf (fdefinition symbol) new-definition) + (xcl:unadvise-function name :no-error t) + (xcl:unbreak-function name :no-error t) + (setf (symbol-function name) new-definition) + (when brokenp (xcl:rebreak-function name)) + (when advisedp (xcl:readvise-function name))) + #+(and setf (not cmu)) (setf (fdefinition name) new-definition) #+kcl (setf (symbol-function - (let ((sym (get symbol 'si::traced)) first-form) + (let ((sym (get name 'si::traced)) first-form) (if (and sym - (consp (symbol-function symbol)) - (consp (setq first-form (nth 3 (symbol-function symbol)))) + (consp (symbol-function name)) + (consp (setq first-form + (nth 3 (symbol-function name)))) (eq (car first-form) 'si::trace-call)) sym - symbol))) - new-definition) - #-(or Lispm Lucid excl Xerox setf kcl) - (setf (symbol-function symbol) new-definition) - - new-definition) + name))) + new-definition) + #+cmu (progn + (c::%%defun name new-definition nil) + (c::note-name-defined name :function) + new-definition) + #-(or Lispm Lucid excl Xerox setf kcl cmu) + (setf (symbol-function name) new-definition)) (defun gboundp (spec) (parse-gspec spec @@ -261,7 +266,7 @@ (defun inform-type-system-about-std-class (name) (let ((predicate-name (make-type-predicate-name name))) - (setf (symbol-function predicate-name) (make-type-predicate name)) + (setf (gdefinition predicate-name) (make-type-predicate name)) (do-satisfies-deftype name predicate-name))) (defun make-type-predicate (name) diff --git a/pcl/dlap.lisp b/pcl/dlap.lisp index adb1f4abe067c64ae4aff4d48b5b23cf9a001b88..88710c107be5d175310fb4ee54e4dec49c2dc40c 100644 --- a/pcl/dlap.lisp +++ b/pcl/dlap.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) diff --git a/pcl/dlisp2.lisp b/pcl/dlisp2.lisp index 7bff7953ee9248e0a4ea35e40e763408544ed4cb..b323a66949e143a6d8dd3c4983a3c5916d843b48 100644 --- a/pcl/dlisp2.lisp +++ b/pcl/dlisp2.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (defun emit-reader/writer-function (reader/writer 1-or-2-class class-slot-p) (values @@ -136,8 +136,10 @@ (declare (ignore applyp)) (if cached-emf-p #'(lambda (cache miss-fn) + (declare (type function miss-fn)) #'(lambda (&rest args) (declare #.*optimize-speed*) + #+copy-&rest-arg (setq args (copy-list args)) (with-dfun-wrappers (args metatypes) (dfun-wrappers invalid-wrapper-p) (apply miss-fn args) @@ -150,8 +152,10 @@ emf (invoke-emf emf args)))))))) #'(lambda (cache emf miss-fn) + (declare (type function miss-fn)) #'(lambda (&rest args) (declare #.*optimize-speed*) + #+copy-&rest-arg (setq args (copy-list args)) (with-dfun-wrappers (args metatypes) (dfun-wrappers invalid-wrapper-p) (apply miss-fn args) @@ -171,5 +175,6 @@ (declare (ignore metatypes applyp)) (values #'(lambda (emf) #'(lambda (&rest args) + #+copy-&rest-arg (setq args (copy-list args)) (invoke-emf emf args))) t)) diff --git a/pcl/fixup.lisp b/pcl/fixup.lisp index aecddc5b365c419aca3629670f259c49ace4fbf6..82c4d697434123a27486535157028e925589d22f 100644 --- a/pcl/fixup.lisp +++ b/pcl/fixup.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (fix-early-generic-functions) (setq *boot-state* 'complete) diff --git a/pcl/fngen.lisp b/pcl/fngen.lisp index e54dad9b30d208837631e806e83f3e4e104c63ef..61ae0ac66aa8a66cd2c0042e38ac32d5a20ae346 100644 --- a/pcl/fngen.lisp +++ b/pcl/fngen.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) ;;; ;;; GET-FUNCTION is the main user interface to this code. It is like diff --git a/pcl/fsc.lisp b/pcl/fsc.lisp index 1a68a86d5f879817e1cbb686f324ce25467b3ba6..6d7f28a5cd1391376f55ddb761ce769a75abd6eb 100644 --- a/pcl/fsc.lisp +++ b/pcl/fsc.lisp @@ -38,7 +38,7 @@ ;;; workings of this metaclass and the standard-class metaclass. ;;; -(in-package 'pcl) +(in-package :pcl) (defmethod wrapper-fetcher ((class funcallable-standard-class)) 'fsc-instance-wrapper) diff --git a/pcl/list-functions.lisp b/pcl/list-functions.lisp index a272131a2260cb2116fc4fd2e386b54e6852546b..f4601a439f50c732bb7105b6b19b0d3695862e7b 100644 --- a/pcl/list-functions.lisp +++ b/pcl/list-functions.lisp @@ -52,6 +52,8 @@ (*print-pretty* nil) (s-a-n (find-package "SLOT-ACCESSOR-NAME")) (lisp-sans (mapcar #'slot-reader-symbol '(function type)))) + ;; This one has no predefined methods. + (defgeneric update-dependent (metaobject dependent &rest initargs)) (map-all-generic-functions #'(lambda (gf) (when (or all-p diff --git a/pcl/precom1.lisp b/pcl/precom1.lisp index 0f8e30f7a2200eaf106d21fff66f6060d95f42de..0c550d95d6a308b367e7a9f384bbedc668c63332 100644 --- a/pcl/precom1.lisp +++ b/pcl/precom1.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) ;;; ;;; pre-allocate generic function caches. The hope is that this will put diff --git a/pcl/precom2.lisp b/pcl/precom2.lisp index 19d619273d0829fbfcdf8a005a66fa4b7249e389..97ab8f9ebfa9566267107039f105a1cd76eebd34 100644 --- a/pcl/precom2.lisp +++ b/pcl/precom2.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (precompile-random-code-segments pcl) diff --git a/pcl/std-class.lisp b/pcl/std-class.lisp index f41dd86689adbd08ac363dc82dbe7c2af8bf02c9..50e29e5716bf6e629d008a813714fde260b405e0 100644 --- a/pcl/std-class.lisp +++ b/pcl/std-class.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* ;;; -(in-package 'pcl) +(in-package :pcl) (defmethod slot-accessor-function ((slotd effective-slot-definition) type) (ecase type @@ -325,7 +325,7 @@ ,(load-truename)) other)) -(setf (symbol-function 'load-defclass) #'real-load-defclass) +(setf (gdefinition 'load-defclass) #'real-load-defclass) (defun ensure-class (name &rest all) (apply #'ensure-class-using-class name (find-class name nil) all)) @@ -335,8 +335,7 @@ (ensure-class-values class args) (inform-type-system-about-class (class-prototype meta) name);*** (setf class (apply #'make-instance meta :name name initargs) - (find-class name) class - (find-class-predicate name) (symbol-function (class-predicate-name class))) + (find-class name) class) (inform-type-system-about-class class name) ;*** class)) @@ -345,9 +344,13 @@ (ensure-class-values class args) (unless (eq (class-of class) meta) (change-class class meta)) (apply #'reinitialize-instance class initargs) + (setf (find-class name) class) (inform-type-system-about-class class name) ;*** class)) +(defmethod class-predicate-name ((class t)) + 'function-returning-nil) + (defun ensure-class-values (class args) (let* ((initargs (copy-list args)) (unsupplied (list 1)) @@ -629,7 +632,7 @@ (update-slots class (compute-slots class)) (update-gfs-of-class class) (update-inits class (compute-default-initargs class)) - (update-constructors class)) + (update-make-instance-function-table class)) (unless finalizep (dolist (sub (class-direct-subclasses class)) (update-class sub nil)))) @@ -986,39 +989,6 @@ ;;; (defmethod inform-type-system-about-class ((class std-class) name) (inform-type-system-about-std-class name)) - - -;;; -;;; These 4 definitions appear here for bootstrapping reasons. Logically, -;;; they should be in the construct file. For documentation purposes, a -;;; copy of these definitions appears in the construct file. If you change -;;; one of the definitions here, be sure to change the copy there. -;;; -(defvar *initialization-generic-functions* - (list #'make-instance - #'default-initargs - #'allocate-instance - #'initialize-instance - #'shared-initialize)) - -(defmethod maybe-update-constructors - ((generic-function generic-function) - (method method)) - (when (memq generic-function *initialization-generic-functions*) - (labels ((recurse (class) - (update-constructors class) - (dolist (subclass (class-direct-subclasses class)) - (recurse subclass)))) - (when (classp (car (method-specializers method))) - (recurse (car (method-specializers method))))))) - -(defmethod update-constructors ((class slot-class)) - (dolist (cons (class-constructors class)) - (install-lazy-constructor-installer cons))) - -(defmethod update-constructors ((class class)) - ()) - (defmethod compatible-meta-class-change-p (class proto-new-class) diff --git a/pcl/sys-package.lisp b/pcl/sys-package.lisp index 82af68aecba593dde74059ba78083f4aa5def7c1..c04430e8c08aa394a30dbffaf4999119332ab2c8 100644 --- a/pcl/sys-package.lisp +++ b/pcl/sys-package.lisp @@ -41,8 +41,8 @@ PCL::METHOD-LAMBDA-LIST PCL::DEFGENERIC PCL::REMOVE-DIRECT-METHOD PCL::STANDARD-DIRECT-SLOT-DEFINITION PCL::GENERIC-FUNCTION-METHODS PCL::VALIDATE-SUPERCLASS - PCL::REINITIALIZE-INSTANCE - PCL::STANDARD-METHOD PCL::STANDARD-ACCESSOR-METHOD + PCL::REINITIALIZE-INSTANCE PCL::STANDARD-METHOD + PCL::STANDARD-ACCESSOR-METHOD PCL::FUNCALLABLE-STANDARD-INSTANCE PCL::FUNCTION-KEYWORDS PCL::STANDARD PCL::FIND-METHOD PCL::EXTRACT-SPECIALIZER-NAMES PCL::INITIALIZE-INSTANCE PCL::GENERIC-FLET PCL::SLOT-UNBOUND diff --git a/pcl/sysdef.lisp b/pcl/sysdef.lisp index 3056e6e3c3783988e62a9cbf7296d92bf1e117d8..9da68cd546d86fa3fe767d01564c52a6077fcec2 100644 --- a/pcl/sysdef.lisp +++ b/pcl/sysdef.lisp @@ -1,37 +1,6 @@ ;;; -*- Mode: Lisp; Base: 10; Syntax: Common-Lisp; Package: DSYS -*- ;;; File: sysdef.lisp ;;; Author: Richard Harris -;;; -;;; ROSE - Rensselaer Object System for Engineering -;;; Common Lisp Implementation -;;; -;;; Copyright (c) 1990 by -;;; Rensselaer Polytechnic Institute, Troy, New York. -;;; All Rights Reserved -;;; -;;; THE SOFTWARE AND ACCOMPANYING WRITTEN MATERIALS ARE PROVIDED -;;; \"AS IS\" AND WITHOUT ANY WARRANTY, INCLUDING BUT NOT LIMITED -;;; TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -;;; A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND -;;; PERFORMANCE OF THE SOFTWARE AND USE OF THE ACCOMPANYING WRITTEN -;;; MATERIALS IS ASSUMED BY YOU. IN NO EVENT SHALL RENSSELAER -;;; POLYTECHNIC INSTITUTE BE LIABLE FOR ANY LOST REVENUE, LOST -;;; PROFITS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES, EVEN -;;; IF ADVISED OF THE POSSIBILITIES OF SUCH DAMAGES, WHERE DAMAGES -;;; ARISE OUT OF OR IN CONNECTION WITH THE USE OF, PERFORMANCE OR -;;; NONPERFORMANCE OF THIS SOFTWARE. -;;; -;;; This software and accompanying written materials may not be -;;; distributed outside your organization or outside the United -;;; States of America without express written authorization from -;;; Rensselaer Polytechnic Institute. -;;; -;;; This work has been sponsored in part by Defense Advanced Research -;;; Projects Agency (DARPA) under contract number MDA972-88-C0047 for -;;; DARPA Initiative in Concurrent Engineering (DICE). This material -;;; may be reproduced by or for the U.S. Government pursuant to the -;;; copyright license under the clause at DFARS 252.227-7013 7/26/90. -;;; (in-package "DSYS") @@ -125,11 +94,11 @@ (pcl::compile-pcl)) (reset-pcl-package) (maybe-load-pcl t))) - #+cmu (lisp::purify)) + #+cmu (purify)) :load (progn (maybe-load-pcl) - #+cmu (lisp::purify)))) + #+cmu (purify)))) (defparameter *pcl-files* '((("systems") "lisp" diff --git a/pcl/walk.lisp b/pcl/walk.lisp index be759ab6307c4dfa31547d385de07972ca3dd85b..237612395c346941a29bdca898ba80ef2ed8a043 100644 --- a/pcl/walk.lisp +++ b/pcl/walk.lisp @@ -51,7 +51,7 @@ ;;; mechanisms is in the first part of the file, the real walker follows it. ;;; -(in-package 'walker) +(in-package :walker) ;;; ;;; The user entry points are walk-form and nested-walked-form. In addition,