;;;; various user-level definitions which need to be done particularly ;;;; early ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived from the CMU CL system, which was ;;;; written at Carnegie Mellon University and released into the ;;;; public domain. The software is in the public domain and is ;;;; provided with absolutely no warranty. See the COPYING and CREDITS ;;;; files for more information. (in-package "SB!INT") ;;;; DO-related stuff which needs to be visible on the cross-compilation host (eval-when (:compile-toplevel :load-toplevel :execute) (defun do-do-body (varlist endlist decls-and-code bind step name block) (let* ((r-inits nil) ; accumulator for reversed list (r-steps nil) ; accumulator for reversed list (label-1 (gensym)) (label-2 (gensym))) ;; Check for illegal old-style DO. (when (or (not (listp varlist)) (atom endlist)) (error "Ill-formed ~S -- possibly illegal old style DO?" name)) ;; Parse VARLIST to get R-INITS and R-STEPS. (dolist (v varlist) (flet (;; (We avoid using CL:PUSH here so that CL:PUSH can be defined ;; in terms of CL:SETF, and CL:SETF can be defined in terms of ;; CL:DO, and CL:DO can be defined in terms of the current ;; function.) (push-on-r-inits (x) (setq r-inits (cons x r-inits))) ;; common error-handling (illegal-varlist () (error "~S is an illegal form for a ~S varlist." v name))) (cond ((symbolp v) (push-on-r-inits v)) ((listp v) (unless (symbolp (first v)) (error "~S step variable is not a symbol: ~S" name (first v))) (let ((lv (length v))) ;; (We avoid using CL:CASE here so that CL:CASE can be ;; defined in terms of CL:SETF, and CL:SETF can be defined ;; in terms of CL:DO, and CL:DO can be defined in terms of ;; the current function.) (cond ((= lv 1) (push-on-r-inits (first v))) ((= lv 2) (push-on-r-inits v)) ((= lv 3) (push-on-r-inits (list (first v) (second v))) (setq r-steps (list* (third v) (first v) r-steps))) (t (illegal-varlist))))) (t (illegal-varlist))))) ;; Construct the new form. (multiple-value-bind (code decls) (parse-body decls-and-code nil) `(block ,block (,bind ,(nreverse r-inits) ,@decls (tagbody (go ,label-2) ,label-1 ,@code (,step ,@(nreverse r-steps)) ,label-2 (unless ,(first endlist) (go ,label-1)) (return-from ,block (progn ,@(rest endlist)))))))))) (defmacro do-anonymous (varlist endlist &rest body) #!+sb-doc "DO-ANONYMOUS ({(Var [Init] [Step])}*) (Test Exit-Form*) Declaration* Form* Like DO, but has no implicit NIL block. Each Var is initialized in parallel to the value of the specified Init form. On subsequent iterations, the Vars are assigned the value of the Step form (if any) in parallel. The Test is evaluated before each evaluation of the body Forms. When the Test is true, the Exit-Forms are evaluated as a PROGN, with the result being the value of the DO." (do-do-body varlist endlist body 'let 'psetq 'do-anonymous (gensym))) ;;;; miscellany ;;; Concatenate together the names of some strings and symbols, ;;; producing a symbol in the current package. (defun symbolicate (&rest things) (values (intern (apply #'concatenate 'string (mapcar #'string things))))) ;;; like SYMBOLICATE, but producing keywords (defun keywordicate (&rest things) (let ((*package* *keyword-package*)) (apply #'symbolicate things))) ;;; Give names to elements of a numeric sequence. (defmacro defenum ((&key (prefix "") (suffix "") (start 0) (step 1)) &rest identifiers) (let ((results nil) (index 0) (start (eval start)) (step (eval step))) (dolist (id identifiers) (when id (multiple-value-bind (root docs) (if (consp id) (values (car id) (cdr id)) (values id nil)) ;; (This could be SYMBOLICATE, except that due to ;; bogobootstrapping issues SYMBOLICATE isn't defined yet.) (push `(defconstant ,(symbolicate prefix root suffix) ,(+ start (* step index)) ,@docs) results))) (incf index)) `(progn ,@(nreverse results)))) ;;; generalization of DEFCONSTANT to values which are the same not ;;; under EQL but under e.g. EQUAL or EQUALP ;;; ;;; DEFCONSTANT-EQX is to be used instead of DEFCONSTANT for values ;;; which are appropriately compared using the function given by the ;;; EQX argument instead of EQL. ;;; ;;; Note: Be careful when using this macro, since it's easy to ;;; unintentionally pessimize your code. A good time to use this macro ;;; is when the values defined will be fed into optimization ;;; transforms and never actually appear in the generated code; this ;;; is especially common when defining BYTE expressions. Unintentional ;;; pessimization can result when the values defined by this macro are ;;; actually used in generated code: because of the way that the ;;; dump/load system works, you'll typically get one copy of consed ;;; structure for each object file which contains code referring to ;;; the value, plus perhaps one more copy bound to the SYMBOL-VALUE of ;;; the constant. If you don't want that to happen, you should ;;; probably use DEFPARAMETER instead. (defmacro defconstant-eqx (symbol expr eqx &optional doc) (let ((expr-tmp (gensym "EXPR-TMP-"))) `(progn ;; When we're building the cross-compiler, and in most ;; situations even when we're running the cross-compiler, ;; all we need is a nice portable definition in terms of the ;; ANSI Common Lisp operations. (eval-when (:compile-toplevel :load-toplevel :execute) (let ((,expr-tmp ,expr)) (unless (and (boundp ',symbol) (constantp ',symbol) (funcall ,eqx (symbol-value ',symbol) ,expr-tmp)) (defconstant ,symbol ,expr ,@(when doc `(,doc)))))) ;; The #+SB-XC :COMPILE-TOPLEVEL situation is special, since we ;; want to define the symbol not just in the cross-compilation ;; host Lisp (which was handled above) but also in the ;; cross-compiler (which we will handle now). ;; ;; KLUDGE: It would probably be possible to do this fairly ;; cleanly, in a way parallel to the code above, if we had ;; SB!XC:FOO versions of all the primitives CL:FOO used above ;; (e.g. SB!XC:BOUNDP, SB!XC:SYMBOL-VALUE, and ;; SB!XC:DEFCONSTANT), and took care to call them. But right ;; now we just hack around in the guts of the cross-compiler ;; instead. -- WHN 2000-11-03 #+sb-xc (eval-when (:compile-toplevel) (let ((,expr-tmp ,expr)) (unless (and (eql (info :variable :kind ',symbol) :constant) (funcall ,eqx (info :variable :constant-value ',symbol) ,expr-tmp)) (sb!c::%defconstant ',symbol ,expr-tmp ,doc)))))))