X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Farray.lisp;h=55c172d9a5cfc92493d46add7450d37553361cee;hb=b31eab5875e8058a2fdfcb879e23c2724d25a278;hp=efd993ed0e3ccf2727b5019a7002dfe5b222b86c;hpb=892a8350afb02baabef38c4cba48c25a82d9d679;p=sbcl.git diff --git a/src/code/array.lisp b/src/code/array.lisp index efd993e..55c172d 100644 --- a/src/code/array.lisp +++ b/src/code/array.lisp @@ -1346,20 +1346,6 @@ function to be removed without further warning." ;;;; array type dispatching -;;; Store some saetp fields for DEFINE-ARRAY-DISPATCH since -;;; sb!vm:*specialized-array-element-type-properties* is not always -;;; available. -(macrolet - ((define-saetp-info () - `(eval-when (:compile-toplevel :load-toplevel :execute) - (defglobal %%saetp-info%% - ',(loop for saetp - across sb!vm:*specialized-array-element-type-properties* - collect `(,(sb!vm:saetp-typecode saetp) - ,(sb!vm:saetp-specifier saetp) - ,(sb!vm:saetp-primitive-type-name saetp))))))) - (define-saetp-info)) - ;;; Given DISPATCH-FOO as the DISPATCH-NAME argument (unevaluated), ;;; defines the functions ;;; @@ -1391,7 +1377,10 @@ function to be removed without further warning." :expected-type '(simple-array * (*))))) (defglobal ,table-name (make-array ,(1+ sb!vm:widetag-mask) :initial-element #',error-name)) - ,@(loop for (typecode specifier primitive-type-name) in %%saetp-info%% + ,@(loop for info across sb!vm:*specialized-array-element-type-properties* + for typecode = (sb!vm:saetp-typecode info) + for specifier = (sb!vm:saetp-specifier info) + for primitive-type-name = (sb!vm:saetp-primitive-type-name info) collect (let ((fun-name (symbolicate (string dispatch-name) "/" primitive-type-name))) `(progn