diff --git a/bootfiles/18c/boot8.lisp b/bootfiles/18c/boot8.lisp new file mode 100644 index 0000000000000000000000000000000000000000..ee86fb0682683ebf029fb6644befcbfec693ae2a --- /dev/null +++ b/bootfiles/18c/boot8.lisp @@ -0,0 +1,42 @@ +(in-package "C") + +(defun do-defconstant-compile-time (name value doc) + (unless (symbolp name) + (compiler-error "Constant name is not a symbol: ~S." name)) + (when (eq name t) + (compiler-error "Can't change T.")) + (when (eq name nil) + (compiler-error "Nihil ex nihil (Can't change NIL).")) + (when (keywordp name) + (compiler-error "Can't change the value of keywords.")) + + (let ((kind (info variable kind name))) + (case kind + (:constant + (unless (equalp value (info variable constant-value name)) + (compiler-warning "Redefining constant ~S as:~% ~S" + name value))) + (:global) + (t + (compiler-warning "Redefining ~(~A~) ~S to be a constant." + kind name)))) + + (setf (info variable kind name) :constant) + (setf (info variable where-from name) :defined) + (setf (info variable constant-value name) value) + (remhash name *free-variables*)) + +(in-package "LISP") + +;;; DEFCONSTANT -- Public +;;; +(defmacro defconstant (var val &optional doc) + "For defining global constants at top level. The DEFCONSTANT says that the + value is constant and may be compiled into code. If the variable already has + a value, and this is not equal to the init, an error is signalled. The third + argument is an optional documentation string for the variable." + `(progn + (eval-when (:compile-toplevel) + (c::do-defconstant-compile-time ',var ,val ',doc)) + (eval-when (:load-toplevel :execute) + (c::%%defconstant ',var ,val ',doc)))) diff --git a/code/macros.lisp b/code/macros.lisp index 6fe13cd751b53c2b910e5961f4c21d1caf51ff91..e98eb781b460af3a323b886376ce104b9e7ab4f7 100644 --- a/code/macros.lisp +++ b/code/macros.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.71 2001/12/04 22:27:42 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.72 2002/01/27 18:29:23 moore Exp $") ;;; ;;; ********************************************************************** ;;; @@ -344,7 +344,11 @@ value is constant and may be compiled into code. If the variable already has a value, and this is not equal to the init, an error is signalled. The third argument is an optional documentation string for the variable." - `(c::%defconstant ',var ,val ',doc)) + `(progn + (eval-when (:compile-toplevel) + (c::do-defconstant-compile-time ',var ,val ',doc)) + (eval-when (:load-toplevel :execute) + (c::%%defconstant ',var ,val ',doc)))) ;;; %Defconstant, %%Defconstant -- Internal ;;; diff --git a/compiler/ir1tran.lisp b/compiler/ir1tran.lisp index d972466077869bb47f2e5b803bd48cfebf4a2783..78dd25767a22e08cfbaa01c2137875491ec54935 100644 --- a/compiler/ir1tran.lisp +++ b/compiler/ir1tran.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.127 2001/10/31 13:16:37 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.128 2002/01/27 18:29:23 moore Exp $") ;;; ;;; ********************************************************************** ;;; @@ -3349,37 +3349,31 @@ ;;; Update the global environment to correspond to the new definition. ;;; -(def-ir1-translator %defconstant ((name value doc) start cont - :kind :function) - (let ((name (eval name)) - (newval (eval value))) - (unless (symbolp name) - (compiler-error "Constant name is not a symbol: ~S." name)) - (when (eq name t) - (compiler-error "Can't change T.")) - (when (eq name nil) - (compiler-error "Nihil ex nihil (Can't change NIL).")) - (when (keywordp name) - (compiler-error "Can't change the value of keywords.")) - - (let ((kind (info variable kind name))) - (case kind - (:constant - (unless (equalp newval (info variable constant-value name)) - (compiler-warning "Redefining constant ~S as:~% ~S" - name newval))) - (:global) - (t - (compiler-warning "Redefining ~(~A~) ~S to be a constant." - kind name)))) - - (setf (info variable kind name) :constant) - (setf (info variable where-from name) :defined) - (setf (info variable constant-value name) newval) - (remhash name *free-variables*)) +(defun do-defconstant-compile-time (name value doc) + (unless (symbolp name) + (compiler-error "Constant name is not a symbol: ~S." name)) + (when (eq name t) + (compiler-error "Can't change T.")) + (when (eq name nil) + (compiler-error "Nihil ex nihil (Can't change NIL).")) + (when (keywordp name) + (compiler-error "Can't change the value of keywords.")) - (ir1-convert start cont `(%%defconstant ,name ,value ,doc))) + (let ((kind (info variable kind name))) + (case kind + (:constant + (unless (equalp value (info variable constant-value name)) + (compiler-warning "Redefining constant ~S as:~% ~S" + name value))) + (:global) + (t + (compiler-warning "Redefining ~(~A~) ~S to be a constant." + kind name)))) + (setf (info variable kind name) :constant) + (setf (info variable where-from name) :defined) + (setf (info variable constant-value name) value) + (remhash name *free-variables*)) ;;;; Defining global functions: