diff --git a/compiler/generic/vm-tran.lisp b/compiler/generic/vm-tran.lisp index d40a251916901d4c6a157ac829918645fc12fe1d..5d8b4dad1c42837c6ec871c94dfaa760137b10c3 100644 --- a/compiler/generic/vm-tran.lisp +++ b/compiler/generic/vm-tran.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/generic/vm-tran.lisp,v 1.40 2000/09/14 14:34:37 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-tran.lisp,v 1.41 2000/10/21 13:08:49 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -75,6 +75,31 @@ (%array-data-vector array)) index)))))) +(deftransform data-vector-ref ((array index) (array t) * + :node node :policy (> speed space)) + (let ((array-type (continuation-type array))) + (unless (and (array-type-p array-type) (array-type-complexp array-type) + (not (eq (array-type-specialized-element-type array-type) + *wild-type*))) + (give-up)) + (delay-transform node :optimize) + (let* ((dims (array-type-dimensions array-type)) + (el-type (array-type-element-type array-type)) + (total-size (if (or (atom dims) (member '* dims)) + '* + (reduce #'* dims))) + (vector-type `(simple-array ,(type-specifier el-type) + (,total-size)))) + (if (and (consp dims) (> (length dims) 1)) + `(multiple-value-bind (vector index) + (%with-array-data array index nil) + (data-vector-ref (truly-the ,vector-type vector) index)) + `(multiple-value-bind (vector index) + (if (array-header-p array) + (%with-array-data array index nil) + (values array index)) + (data-vector-ref (truly-the ,vector-type vector) index)))))) + (deftransform data-vector-set ((array index new-value) (simple-array t t)) (let ((array-type (continuation-type array))) @@ -101,6 +126,35 @@ index new-value)))))) +(deftransform data-vector-set ((array index new-value) (array t t) * + :node node :policy (> speed space)) + (let ((array-type (continuation-type array))) + (unless (and (array-type-p array-type) (array-type-complexp array-type) + (not (eq (array-type-specialized-element-type array-type) + *wild-type*))) + (give-up)) + (delay-transform node :optimize) + (let* ((dims (array-type-dimensions array-type)) + (el-type (array-type-element-type array-type)) + (total-size (if (or (atom dims) (member '* dims)) + '* + (reduce #'* dims))) + (vector-type `(simple-array ,(type-specifier el-type) + (,total-size)))) + (if (and (consp dims) (> (length dims) 1)) + `(multiple-value-bind (vector index) + (%with-array-data array index nil) + (data-vector-set (truly-the ,vector-type vector) + index + new-value)) + `(multiple-value-bind (vector index) + (if (array-header-p array) + (%with-array-data array index nil) + (values array index)) + (data-vector-set (truly-the ,vector-type vector) + index + new-value)))))) + ;;; Transforms for getting at arrays of unsigned-byte n when n < 8.