3403ac30c9c396f8a807a4a94c3b2675124c03d2
[sbcl.git] / src / compiler / array-tran.lisp
1 ;;;; array-specific optimizers and transforms
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!C")
13 \f
14 ;;;; utilities for optimizing array operations
15
16 ;;; Return UPGRADED-ARRAY-ELEMENT-TYPE for LVAR, or do
17 ;;; GIVE-UP-IR1-TRANSFORM if the upgraded element type can't be
18 ;;; determined.
19 (defun upgraded-element-type-specifier-or-give-up (lvar)
20   (let ((element-type-specifier (upgraded-element-type-specifier lvar)))
21     (if (eq element-type-specifier '*)
22         (give-up-ir1-transform
23          "upgraded array element type not known at compile time")
24         element-type-specifier)))
25
26 (defun upgraded-element-type-specifier (lvar)
27   (type-specifier (array-type-upgraded-element-type (lvar-type lvar))))
28
29 ;;; Array access functions return an object from the array, hence its type is
30 ;;; going to be the array upgraded element type. Secondary return value is the
31 ;;; known supertype of the upgraded-array-element-type, if if the exact
32 ;;; U-A-E-T is not known. (If it is NIL, the primary return value is as good
33 ;;; as it gets.)
34 (defun array-type-upgraded-element-type (type)
35   (typecase type
36     ;; Note that this IF mightn't be satisfied even if the runtime
37     ;; value is known to be a subtype of some specialized ARRAY, because
38     ;; we can have values declared e.g. (AND SIMPLE-VECTOR UNKNOWN-TYPE),
39     ;; which are represented in the compiler as INTERSECTION-TYPE, not
40     ;; array type.
41     (array-type
42      (values (array-type-specialized-element-type type) nil))
43     ;; Deal with intersection types (bug #316078)
44     (intersection-type
45      (let ((intersection-types (intersection-type-types type))
46            (element-type *wild-type*)
47            (element-supertypes nil))
48        (dolist (intersection-type intersection-types)
49          (multiple-value-bind (cur-type cur-supertype)
50              (array-type-upgraded-element-type intersection-type)
51            ;; According to ANSI, an array may have only one specialized
52            ;; element type - e.g. '(and (array foo) (array bar))
53            ;; is not a valid type unless foo and bar upgrade to the
54            ;; same element type.
55            (cond
56              ((eq cur-type *wild-type*)
57               nil)
58              ((eq element-type *wild-type*)
59               (setf element-type cur-type))
60              ((or (not (csubtypep cur-type element-type))
61                   (not (csubtypep element-type cur-type)))
62               ;; At least two different element types where given, the array
63               ;; is valid iff they represent the same type.
64               ;;
65               ;; FIXME: TYPE-INTERSECTION already takes care of disjoint array
66               ;; types, so I believe this code should be unreachable. Maybe
67               ;; signal a warning / error instead?
68               (setf element-type *empty-type*)))
69            (push (or cur-supertype (type-*-to-t cur-type))
70                  element-supertypes)))
71        (values element-type
72                (when (and (eq *wild-type* element-type) element-supertypes)
73                  (apply #'type-intersection element-supertypes)))))
74     (union-type
75      (let ((union-types (union-type-types type))
76            (element-type nil)
77            (element-supertypes nil))
78        (dolist (union-type union-types)
79          (multiple-value-bind (cur-type cur-supertype)
80              (array-type-upgraded-element-type union-type)
81            (cond
82              ((eq element-type *wild-type*)
83               nil)
84              ((eq element-type nil)
85               (setf element-type cur-type))
86              ((or (eq cur-type *wild-type*)
87                   ;; If each of the two following tests fail, it is not
88                   ;; possible to determine the element-type of the array
89                   ;; because more than one kind of element-type was provided
90                   ;; like in '(or (array foo) (array bar)) although a
91                   ;; supertype (or foo bar) may be provided as the second
92                   ;; returned value returned. See also the KLUDGE below.
93                   (not (csubtypep cur-type element-type))
94                   (not (csubtypep element-type cur-type)))
95               (setf element-type *wild-type*)))
96            (push (or cur-supertype (type-*-to-t cur-type))
97                  element-supertypes)))
98        (values element-type
99                (when (eq *wild-type* element-type)
100                  (apply #'type-union element-supertypes)))))
101     (member-type
102      ;; Convert member-type to an union-type.
103      (array-type-upgraded-element-type
104       (apply #'type-union (mapcar #'ctype-of (member-type-members type)))))
105     (t
106      ;; KLUDGE: there is no good answer here, but at least
107      ;; *wild-type* won't cause HAIRY-DATA-VECTOR-{REF,SET} to be
108      ;; erroneously optimized (see generic/vm-tran.lisp) -- CSR,
109      ;; 2002-08-21
110      (values *wild-type* nil))))
111
112 (defun array-type-declared-element-type (type)
113   (if (array-type-p type)
114       (array-type-element-type type)
115       *wild-type*))
116
117 ;;; The ``new-value'' for array setters must fit in the array, and the
118 ;;; return type is going to be the same as the new-value for SETF
119 ;;; functions.
120 (defun assert-new-value-type (new-value array)
121   (let ((type (lvar-type array)))
122     (when (array-type-p type)
123       (assert-lvar-type
124        new-value
125        (array-type-specialized-element-type type)
126        (lexenv-policy (node-lexenv (lvar-dest new-value))))))
127   (lvar-type new-value))
128
129 ;;; Return true if ARG is NIL, or is a constant-lvar whose
130 ;;; value is NIL, false otherwise.
131 (defun unsupplied-or-nil (arg)
132   (declare (type (or lvar null) arg))
133   (or (not arg)
134       (and (constant-lvar-p arg)
135            (not (lvar-value arg)))))
136
137 (defun supplied-and-true (arg)
138   (and arg
139        (constant-lvar-p arg)
140        (lvar-value arg)
141        t))
142 \f
143 ;;;; DERIVE-TYPE optimizers
144
145 ;;; Array operations that use a specific number of indices implicitly
146 ;;; assert that the array is of that rank.
147 (defun assert-array-rank (array rank)
148   (assert-lvar-type
149    array
150    (specifier-type `(array * ,(make-list rank :initial-element '*)))
151    (lexenv-policy (node-lexenv (lvar-dest array)))))
152
153 (defun derive-aref-type (array)
154   (multiple-value-bind (uaet other)
155       (array-type-upgraded-element-type (lvar-type array))
156     (or other uaet)))
157
158 (defoptimizer (array-in-bounds-p derive-type) ((array &rest indices))
159   (assert-array-rank array (length indices))
160   *universal-type*)
161
162 (deftransform array-in-bounds-p ((array &rest subscripts))
163   (flet ((give-up ()
164            (give-up-ir1-transform
165             "~@<lower array bounds unknown or negative and upper bounds not ~
166              negative~:@>"))
167          (bound-known-p (x)
168            (integerp x))) ; might be NIL or *
169     (block nil
170       (let ((dimensions (array-type-dimensions-or-give-up
171                          (lvar-conservative-type array))))
172         ;; Might be *. (Note: currently this is never true, because the type
173         ;; derivation infers the rank from the call to ARRAY-IN-BOUNDS-P, but
174         ;; let's keep this future proof.)
175         (when (eq '* dimensions)
176           (give-up-ir1-transform "array bounds unknown"))
177         ;; shortcut for zero dimensions
178         (when (some (lambda (dim)
179                       (and (bound-known-p dim) (zerop dim)))
180                     dimensions)
181           (return nil))
182         ;; we first collect the subscripts LVARs' bounds and see whether
183         ;; we can already decide on the result of the optimization without
184         ;; even taking a look at the dimensions.
185         (flet ((subscript-bounds (subscript)
186                  (let* ((type1 (lvar-type subscript))
187                         (type2 (if (csubtypep type1 (specifier-type 'integer))
188                                    (weaken-integer-type type1 :range-only t)
189                                    (give-up)))
190                         (low (if (integer-type-p type2)
191                                  (numeric-type-low type2)
192                                  (give-up)))
193                         (high (numeric-type-high type2)))
194                    (cond
195                      ((and (or (not (bound-known-p low)) (minusp low))
196                            (or (not (bound-known-p high)) (not (minusp high))))
197                       ;; can't be sure about the lower bound and the upper bound
198                       ;; does not give us a definite clue either.
199                       (give-up))
200                      ((and (bound-known-p high) (minusp high))
201                       (return nil))     ; definitely below lower bound (zero).
202                      (t
203                       (cons low high))))))
204           (let* ((subscripts-bounds (mapcar #'subscript-bounds subscripts))
205                  (subscripts-lower-bound (mapcar #'car subscripts-bounds))
206                  (subscripts-upper-bound (mapcar #'cdr subscripts-bounds))
207                  (in-bounds 0))
208             (mapcar (lambda (low high dim)
209                       (cond
210                         ;; first deal with infinite bounds
211                         ((some (complement #'bound-known-p) (list low high dim))
212                          (when (and (bound-known-p dim) (bound-known-p low) (<= dim low))
213                            (return nil)))
214                         ;; now we know all bounds
215                         ((>= low dim)
216                          (return nil))
217                         ((< high dim)
218                          (aver (not (minusp low)))
219                          (incf in-bounds))
220                         (t
221                          (give-up))))
222                     subscripts-lower-bound
223                     subscripts-upper-bound
224                     dimensions)
225             (if (eql in-bounds (length dimensions))
226                 t
227                 (give-up))))))))
228
229 (defoptimizer (aref derive-type) ((array &rest indices) node)
230   (assert-array-rank array (length indices))
231   (derive-aref-type array))
232
233 (defoptimizer ((setf aref) derive-type) ((new-value array &rest subscripts))
234   (assert-array-rank array (length subscripts))
235   (assert-new-value-type new-value array))
236
237 (macrolet ((define (name)
238              `(defoptimizer (,name derive-type) ((array index))
239                 (derive-aref-type array))))
240   (define hairy-data-vector-ref)
241   (define hairy-data-vector-ref/check-bounds)
242   (define data-vector-ref))
243
244 #!+(or x86 x86-64)
245 (defoptimizer (data-vector-ref-with-offset derive-type) ((array index offset))
246   (derive-aref-type array))
247
248 (macrolet ((define (name)
249              `(defoptimizer (,name derive-type) ((array index new-value))
250                 (assert-new-value-type new-value array))))
251   (define hairy-data-vector-set)
252   (define hairy-data-vector-set/check-bounds)
253   (define data-vector-set))
254
255 #!+(or x86 x86-64)
256 (defoptimizer (data-vector-set-with-offset derive-type) ((array index offset new-value))
257   (assert-new-value-type new-value array))
258
259 ;;; Figure out the type of the data vector if we know the argument
260 ;;; element type.
261 (defun derive-%with-array-data/mumble-type (array)
262   (let ((atype (lvar-type array)))
263     (when (array-type-p atype)
264       (specifier-type
265        `(simple-array ,(type-specifier
266                         (array-type-specialized-element-type atype))
267                       (*))))))
268 (defoptimizer (%with-array-data derive-type) ((array start end))
269   (derive-%with-array-data/mumble-type array))
270 (defoptimizer (%with-array-data/fp derive-type) ((array start end))
271   (derive-%with-array-data/mumble-type array))
272
273 (defoptimizer (array-row-major-index derive-type) ((array &rest indices))
274   (assert-array-rank array (length indices))
275   *universal-type*)
276
277 (defoptimizer (row-major-aref derive-type) ((array index))
278   (derive-aref-type array))
279
280 (defoptimizer (%set-row-major-aref derive-type) ((array index new-value))
281   (assert-new-value-type new-value array))
282
283 (defoptimizer (make-array derive-type)
284               ((dims &key initial-element element-type initial-contents
285                 adjustable fill-pointer displaced-index-offset displaced-to))
286   (let* ((simple (and (unsupplied-or-nil adjustable)
287                       (unsupplied-or-nil displaced-to)
288                       (unsupplied-or-nil fill-pointer)))
289          (spec
290           (or `(,(if simple 'simple-array 'array)
291                  ,(cond ((not element-type) t)
292                         ((constant-lvar-p element-type)
293                          (let ((ctype (careful-specifier-type
294                                        (lvar-value element-type))))
295                            (cond
296                              ((or (null ctype) (unknown-type-p ctype)) '*)
297                              (t (sb!xc:upgraded-array-element-type
298                                  (lvar-value element-type))))))
299                         (t
300                          '*))
301                  ,(cond ((constant-lvar-p dims)
302                          (let* ((val (lvar-value dims))
303                                 (cdims (if (listp val) val (list val))))
304                            (if simple
305                                cdims
306                                (length cdims))))
307                         ((csubtypep (lvar-type dims)
308                                     (specifier-type 'integer))
309                          '(*))
310                         (t
311                          '*)))
312               'array)))
313     (if (and (not simple)
314              (or (supplied-and-true adjustable)
315                  (supplied-and-true displaced-to)
316                  (supplied-and-true fill-pointer)))
317         (careful-specifier-type `(and ,spec (not simple-array)))
318         (careful-specifier-type spec))))
319 \f
320 ;;;; constructors
321
322 ;;; Convert VECTOR into a MAKE-ARRAY.
323 (define-source-transform vector (&rest elements)
324   `(make-array ,(length elements) :initial-contents (list ,@elements)))
325
326 ;;; Just convert it into a MAKE-ARRAY.
327 (deftransform make-string ((length &key
328                                    (element-type 'character)
329                                    (initial-element
330                                     #.*default-init-char-form*)))
331   `(the simple-string (make-array (the index length)
332                        :element-type element-type
333                        ,@(when initial-element
334                            '(:initial-element initial-element)))))
335
336 (defun rewrite-initial-contents (rank initial-contents env)
337   (if (plusp rank)
338       (if (and (consp initial-contents)
339                (member (car initial-contents) '(list vector sb!impl::backq-list)))
340           `(list ,@(mapcar (lambda (dim)
341                              (rewrite-initial-contents (1- rank) dim env))
342                            (cdr initial-contents)))
343           initial-contents)
344       ;; This is the important bit: once we are past the level of
345       ;; :INITIAL-CONTENTS that relates to the array structure, reinline LIST
346       ;; and VECTOR so that nested DX isn't screwed up.
347       `(locally (declare (inline list vector))
348          ,initial-contents)))
349
350 ;;; Prevent open coding DIMENSION and :INITIAL-CONTENTS arguments, so that we
351 ;;; can pick them apart in the DEFTRANSFORMS, and transform '(3) style
352 ;;; dimensions to integer args directly.
353 (define-source-transform make-array (dimensions &rest keyargs &environment env)
354   (if (or (and (fun-lexically-notinline-p 'list)
355                (fun-lexically-notinline-p 'vector))
356           (oddp (length keyargs)))
357       (values nil t)
358       (multiple-value-bind (new-dimensions rank)
359           (flet ((constant-dims (dimensions)
360                    (let* ((dims (constant-form-value dimensions env))
361                           (canon (if (listp dims) dims (list dims)))
362                           (rank (length canon)))
363                      (values (if (= rank 1)
364                                  (list 'quote (car canon))
365                                  (list 'quote canon))
366                              rank))))
367             (cond ((sb!xc:constantp dimensions env)
368                    (constant-dims dimensions))
369                   ((and (consp dimensions) (eq 'list dimensions))
370                    (values dimensions (length (cdr dimensions))))
371                   (t
372                    (values dimensions nil))))
373         (let ((initial-contents (getf keyargs :initial-contents)))
374           (when (and initial-contents rank)
375             (setf keyargs (copy-list keyargs)
376                   (getf keyargs :initial-contents)
377                   (rewrite-initial-contents rank initial-contents env))))
378         `(locally (declare (notinline list vector))
379            (make-array ,new-dimensions ,@keyargs)))))
380
381 ;;; This baby is a bit of a monster, but it takes care of any MAKE-ARRAY
382 ;;; call which creates a vector with a known element type -- and tries
383 ;;; to do a good job with all the different ways it can happen.
384 (defun transform-make-array-vector (length element-type initial-element
385                                     initial-contents call)
386   (aver (or (not element-type) (constant-lvar-p element-type)))
387   (let* ((c-length (when (constant-lvar-p length)
388                      (lvar-value length)))
389          (elt-spec (if element-type
390                        (lvar-value element-type)
391                        t))
392          (elt-ctype (ir1-transform-specifier-type elt-spec))
393          (saetp (if (unknown-type-p elt-ctype)
394                     (give-up-ir1-transform "~S is an unknown type: ~S"
395                                            :element-type elt-spec)
396                     (find-saetp-by-ctype elt-ctype)))
397          (default-initial-element (sb!vm:saetp-initial-element-default saetp))
398          (n-bits (sb!vm:saetp-n-bits saetp))
399          (typecode (sb!vm:saetp-typecode saetp))
400          (n-pad-elements (sb!vm:saetp-n-pad-elements saetp))
401          (n-words-form
402           (if c-length
403               (ceiling (* (+ c-length n-pad-elements) n-bits)
404                        sb!vm:n-word-bits)
405               (let ((padded-length-form (if (zerop n-pad-elements)
406                                             'length
407                                             `(+ length ,n-pad-elements))))
408                 (cond
409                   ((= n-bits 0) 0)
410                   ((>= n-bits sb!vm:n-word-bits)
411                    `(* ,padded-length-form
412                        ;; i.e., not RATIO
413                        ,(the fixnum (/ n-bits sb!vm:n-word-bits))))
414                   (t
415                    (let ((n-elements-per-word (/ sb!vm:n-word-bits n-bits)))
416                      (declare (type index n-elements-per-word)) ; i.e., not RATIO
417                      `(ceiling ,padded-length-form ,n-elements-per-word)))))))
418          (result-spec
419           `(simple-array ,(sb!vm:saetp-specifier saetp) (,(or c-length '*))))
420          (alloc-form
421           `(truly-the ,result-spec
422                       (allocate-vector ,typecode (the index length) ,n-words-form))))
423     (cond ((and initial-element initial-contents)
424            (abort-ir1-transform "Both ~S and ~S specified."
425                                 :initial-contents :initial-element))
426           ;; :INITIAL-CONTENTS (LIST ...), (VECTOR ...) and `(1 1 ,x) with a
427           ;; constant LENGTH.
428           ((and initial-contents c-length
429                 (lvar-matches initial-contents
430                               :fun-names '(list vector sb!impl::backq-list)
431                               :arg-count c-length))
432            (let ((parameters (eliminate-keyword-args
433                               call 1 '((:element-type element-type)
434                                        (:initial-contents initial-contents))))
435                  (elt-vars (make-gensym-list c-length))
436                  (lambda-list '(length)))
437              (splice-fun-args initial-contents :any c-length)
438              (dolist (p parameters)
439                (setf lambda-list
440                      (append lambda-list
441                              (if (eq p 'initial-contents)
442                                  elt-vars
443                                  (list p)))))
444              `(lambda ,lambda-list
445                 (declare (type ,elt-spec ,@elt-vars)
446                          (ignorable ,@lambda-list))
447                 (truly-the ,result-spec
448                  (initialize-vector ,alloc-form ,@elt-vars)))))
449           ;; constant :INITIAL-CONTENTS and LENGTH
450           ((and initial-contents c-length (constant-lvar-p initial-contents))
451            (let ((contents (lvar-value initial-contents)))
452              (unless (= c-length (length contents))
453                (abort-ir1-transform "~S has ~S elements, vector length is ~S."
454                                     :initial-contents (length contents) c-length))
455              (let ((parameters (eliminate-keyword-args
456                                 call 1 '((:element-type element-type)
457                                          (:initial-contents initial-contents)))))
458                `(lambda (length ,@parameters)
459                   (declare (ignorable ,@parameters))
460                   (truly-the ,result-spec
461                    (initialize-vector ,alloc-form
462                                       ,@(map 'list (lambda (elt)
463                                                      `(the ,elt-spec ',elt))
464                                              contents)))))))
465           ;; any other :INITIAL-CONTENTS
466           (initial-contents
467            (let ((parameters (eliminate-keyword-args
468                               call 1 '((:element-type element-type)
469                                        (:initial-contents initial-contents)))))
470              `(lambda (length ,@parameters)
471                 (declare (ignorable ,@parameters))
472                 (unless (= length (length initial-contents))
473                   (error "~S has ~S elements, vector length is ~S."
474                          :initial-contents (length initial-contents) length))
475                 (truly-the ,result-spec
476                            (replace ,alloc-form initial-contents)))))
477           ;; :INITIAL-ELEMENT, not EQL to the default
478           ((and initial-element
479                 (or (not (constant-lvar-p initial-element))
480                     (not (eql default-initial-element (lvar-value initial-element)))))
481            (let ((parameters (eliminate-keyword-args
482                               call 1 '((:element-type element-type)
483                                        (:initial-element initial-element))))
484                  (init (if (constant-lvar-p initial-element)
485                            (list 'quote (lvar-value initial-element))
486                            'initial-element)))
487              `(lambda (length ,@parameters)
488                 (declare (ignorable ,@parameters))
489                 (truly-the ,result-spec
490                            (fill ,alloc-form (the ,elt-spec ,init))))))
491           ;; just :ELEMENT-TYPE, or maybe with :INITIAL-ELEMENT EQL to the
492           ;; default
493           (t
494            #-sb-xc-host
495            (unless (ctypep default-initial-element elt-ctype)
496              ;; This situation arises e.g. in (MAKE-ARRAY 4 :ELEMENT-TYPE
497              ;; '(INTEGER 1 5)) ANSI's definition of MAKE-ARRAY says "If
498              ;; INITIAL-ELEMENT is not supplied, the consequences of later
499              ;; reading an uninitialized element of new-array are undefined,"
500              ;; so this could be legal code as long as the user plans to
501              ;; write before he reads, and if he doesn't we're free to do
502              ;; anything we like. But in case the user doesn't know to write
503              ;; elements before he reads elements (or to read manuals before
504              ;; he writes code:-), we'll signal a STYLE-WARNING in case he
505              ;; didn't realize this.
506              (if initial-element
507                  (compiler-warn "~S ~S is not a ~S"
508                                 :initial-element default-initial-element
509                                 elt-spec)
510                  (compiler-style-warn "The default initial element ~S is not a ~S."
511                                       default-initial-element
512                                       elt-spec)))
513            (let ((parameters (eliminate-keyword-args
514                               call 1 '((:element-type element-type)
515                                        (:initial-element initial-element)))))
516              `(lambda (length ,@parameters)
517                 (declare (ignorable ,@parameters))
518                 ,alloc-form))))))
519
520 ;;; IMPORTANT: The order of these three MAKE-ARRAY forms matters: the least
521 ;;; specific must come first, otherwise suboptimal transforms will result for
522 ;;; some forms.
523
524 (deftransform make-array ((dims &key initial-element element-type
525                                      adjustable fill-pointer)
526                           (t &rest *))
527   (when (null initial-element)
528     (give-up-ir1-transform))
529   (let* ((eltype (cond ((not element-type) t)
530                        ((not (constant-lvar-p element-type))
531                         (give-up-ir1-transform
532                          "ELEMENT-TYPE is not constant."))
533                        (t
534                         (lvar-value element-type))))
535          (eltype-type (ir1-transform-specifier-type eltype))
536          (saetp (find-if (lambda (saetp)
537                            (csubtypep eltype-type (sb!vm:saetp-ctype saetp)))
538                          sb!vm:*specialized-array-element-type-properties*))
539          (creation-form `(make-array dims
540                           :element-type ',(type-specifier (sb!vm:saetp-ctype saetp))
541                           ,@(when fill-pointer
542                                   '(:fill-pointer fill-pointer))
543                           ,@(when adjustable
544                                   '(:adjustable adjustable)))))
545
546     (unless saetp
547       (give-up-ir1-transform "ELEMENT-TYPE not found in *SAETP*: ~S" eltype))
548
549     (cond ((and (constant-lvar-p initial-element)
550                 (eql (lvar-value initial-element)
551                      (sb!vm:saetp-initial-element-default saetp)))
552            creation-form)
553           (t
554            ;; error checking for target, disabled on the host because
555            ;; (CTYPE-OF #\Null) is not possible.
556            #-sb-xc-host
557            (when (constant-lvar-p initial-element)
558              (let ((value (lvar-value initial-element)))
559                (cond
560                  ((not (ctypep value (sb!vm:saetp-ctype saetp)))
561                   ;; this case will cause an error at runtime, so we'd
562                   ;; better WARN about it now.
563                   (warn 'array-initial-element-mismatch
564                         :format-control "~@<~S is not a ~S (which is the ~
565                                          ~S of ~S).~@:>"
566                         :format-arguments
567                         (list
568                          value
569                          (type-specifier (sb!vm:saetp-ctype saetp))
570                          'upgraded-array-element-type
571                          eltype)))
572                  ((not (ctypep value eltype-type))
573                   ;; this case will not cause an error at runtime, but
574                   ;; it's still worth STYLE-WARNing about.
575                   (compiler-style-warn "~S is not a ~S."
576                                        value eltype)))))
577            `(let ((array ,creation-form))
578              (multiple-value-bind (vector)
579                  (%data-vector-and-index array 0)
580                (fill vector (the ,(sb!vm:saetp-specifier saetp) initial-element)))
581              array)))))
582
583 ;;; The list type restriction does not ensure that the result will be a
584 ;;; multi-dimensional array. But the lack of adjustable, fill-pointer,
585 ;;; and displaced-to keywords ensures that it will be simple.
586 ;;;
587 ;;; FIXME: should we generalize this transform to non-simple (though
588 ;;; non-displaced-to) arrays, given that we have %WITH-ARRAY-DATA to
589 ;;; deal with those? Maybe when the DEFTRANSFORM
590 ;;; %DATA-VECTOR-AND-INDEX in the VECTOR case problem is solved? --
591 ;;; CSR, 2002-07-01
592 (deftransform make-array ((dims &key
593                                 element-type initial-element initial-contents)
594                           (list &key
595                                 (:element-type (constant-arg *))
596                                 (:initial-element *)
597                                 (:initial-contents *))
598                           *
599                           :node call)
600   (block make-array
601     (when (lvar-matches dims :fun-names '(list) :arg-count 1)
602       (let ((length (car (splice-fun-args dims :any 1))))
603         (return-from make-array
604           (transform-make-array-vector length
605                                        element-type
606                                        initial-element
607                                        initial-contents
608                                        call))))
609     (unless (constant-lvar-p dims)
610       (give-up-ir1-transform
611        "The dimension list is not constant; cannot open code array creation."))
612     (let ((dims (lvar-value dims))
613           (element-type-ctype (and (constant-lvar-p element-type)
614                                    (ir1-transform-specifier-type
615                                     (lvar-value element-type)))))
616       (when (unknown-type-p element-type-ctype)
617         (give-up-ir1-transform))
618       (unless (every #'integerp dims)
619         (give-up-ir1-transform
620          "The dimension list contains something other than an integer: ~S"
621          dims))
622       (if (= (length dims) 1)
623           `(make-array ',(car dims)
624                        ,@(when element-type
625                                '(:element-type element-type))
626                        ,@(when initial-element
627                                '(:initial-element initial-element))
628                        ,@(when initial-contents
629                                '(:initial-contents initial-contents)))
630           (let* ((total-size (reduce #'* dims))
631                  (rank (length dims))
632                  (spec `(simple-array
633                          ,(cond ((null element-type) t)
634                                 (element-type-ctype
635                                  (sb!xc:upgraded-array-element-type
636                                   (lvar-value element-type)))
637                                 (t '*))
638                          ,(make-list rank :initial-element '*))))
639             `(let ((header (make-array-header sb!vm:simple-array-widetag ,rank))
640                    (data (make-array ,total-size
641                                      ,@(when element-type
642                                              '(:element-type element-type))
643                                      ,@(when initial-element
644                                              '(:initial-element initial-element)))))
645                ,@(when initial-contents
646                        ;; FIXME: This is could be open coded at least a bit too
647                        `((sb!impl::fill-data-vector data ',dims initial-contents)))
648                (setf (%array-fill-pointer header) ,total-size)
649                (setf (%array-fill-pointer-p header) nil)
650                (setf (%array-available-elements header) ,total-size)
651                (setf (%array-data-vector header) data)
652                (setf (%array-displaced-p header) nil)
653                (setf (%array-displaced-from header) nil)
654                ,@(let ((axis -1))
655                       (mapcar (lambda (dim)
656                                 `(setf (%array-dimension header ,(incf axis))
657                                        ,dim))
658                               dims))
659                (truly-the ,spec header)))))))
660
661 (deftransform make-array ((dims &key element-type initial-element initial-contents)
662                           (integer &key
663                                    (:element-type (constant-arg *))
664                                    (:initial-element *)
665                                    (:initial-contents *))
666                           *
667                           :node call)
668   (transform-make-array-vector dims
669                                element-type
670                                initial-element
671                                initial-contents
672                                call))
673 \f
674 ;;;; miscellaneous properties of arrays
675
676 ;;; Transforms for various array properties. If the property is know
677 ;;; at compile time because of a type spec, use that constant value.
678
679 ;;; Most of this logic may end up belonging in code/late-type.lisp;
680 ;;; however, here we also need the -OR-GIVE-UP for the transforms, and
681 ;;; maybe this is just too sloppy for actual type logic.  -- CSR,
682 ;;; 2004-02-18
683 (defun array-type-dimensions-or-give-up (type)
684   (labels ((maybe-array-type-dimensions (type)
685              (typecase type
686                (array-type
687                 (array-type-dimensions type))
688                (union-type
689                 (let* ((types (remove nil (mapcar #'maybe-array-type-dimensions
690                                                   (union-type-types type))))
691                        (result (car types)))
692                   (dolist (other (cdr types) result)
693                     (unless (equal result other)
694                       (give-up-ir1-transform
695                        "~@<dimensions of arrays in union type ~S do not match~:@>"
696                        (type-specifier type))))))
697                (intersection-type
698                 (let* ((types (remove nil (mapcar #'maybe-array-type-dimensions
699                                                   (intersection-type-types type))))
700                        (result (car types)))
701                   (dolist (other (cdr types) result)
702                     (unless (equal result other)
703                       (abort-ir1-transform
704                        "~@<dimensions of arrays in intersection type ~S do not match~:@>"
705                        (type-specifier type)))))))))
706     (or (maybe-array-type-dimensions type)
707         (give-up-ir1-transform
708          "~@<don't know how to extract array dimensions from type ~S~:@>"
709          (type-specifier type)))))
710
711 (defun conservative-array-type-complexp (type)
712   (typecase type
713     (array-type (array-type-complexp type))
714     (union-type
715      (let ((types (union-type-types type)))
716        (aver (> (length types) 1))
717        (let ((result (conservative-array-type-complexp (car types))))
718          (dolist (type (cdr types) result)
719            (unless (eq (conservative-array-type-complexp type) result)
720              (return-from conservative-array-type-complexp :maybe))))))
721     ;; FIXME: intersection type
722     (t :maybe)))
723
724 ;;; If we can tell the rank from the type info, use it instead.
725 (deftransform array-rank ((array) (array) * :node node)
726   (let ((array-type (lvar-type array)))
727     (let ((dims (array-type-dimensions-or-give-up array-type)))
728       (cond ((listp dims)
729              (length dims))
730             ((eq t (and (array-type-p array-type)
731                         (array-type-complexp array-type)))
732              '(%array-rank array))
733             (t
734              (delay-ir1-transform node :constraint)
735              `(if (array-header-p array)
736                   (%array-rank array)
737                   1))))))
738
739 ;;; If we know the dimensions at compile time, just use it. Otherwise,
740 ;;; if we can tell that the axis is in bounds, convert to
741 ;;; %ARRAY-DIMENSION (which just indirects the array header) or length
742 ;;; (if it's simple and a vector).
743 (deftransform array-dimension ((array axis)
744                                (array index))
745   (unless (constant-lvar-p axis)
746     (give-up-ir1-transform "The axis is not constant."))
747   ;; Dimensions may change thanks to ADJUST-ARRAY, so we need the
748   ;; conservative type.
749   (let ((array-type (lvar-conservative-type array))
750         (axis (lvar-value axis)))
751     (let ((dims (array-type-dimensions-or-give-up array-type)))
752       (unless (listp dims)
753         (give-up-ir1-transform
754          "The array dimensions are unknown; must call ARRAY-DIMENSION at runtime."))
755       (unless (> (length dims) axis)
756         (abort-ir1-transform "The array has dimensions ~S, ~W is too large."
757                              dims
758                              axis))
759       (let ((dim (nth axis dims)))
760         (cond ((integerp dim)
761                dim)
762               ((= (length dims) 1)
763                (ecase (conservative-array-type-complexp array-type)
764                  ((t)
765                   '(%array-dimension array 0))
766                  ((nil)
767                   '(vector-length array))
768                  ((:maybe)
769                   `(if (array-header-p array)
770                        (%array-dimension array axis)
771                        (vector-length array)))))
772               (t
773                '(%array-dimension array axis)))))))
774
775 ;;; If the length has been declared and it's simple, just return it.
776 (deftransform length ((vector)
777                       ((simple-array * (*))))
778   (let ((type (lvar-type vector)))
779     (let ((dims (array-type-dimensions-or-give-up type)))
780       (unless (and (listp dims) (integerp (car dims)))
781         (give-up-ir1-transform
782          "Vector length is unknown, must call LENGTH at runtime."))
783       (car dims))))
784
785 ;;; All vectors can get their length by using VECTOR-LENGTH. If it's
786 ;;; simple, it will extract the length slot from the vector. It it's
787 ;;; complex, it will extract the fill pointer slot from the array
788 ;;; header.
789 (deftransform length ((vector) (vector))
790   '(vector-length vector))
791
792 ;;; If a simple array with known dimensions, then VECTOR-LENGTH is a
793 ;;; compile-time constant.
794 (deftransform vector-length ((vector))
795   (let ((vtype (lvar-type vector)))
796     (let ((dim (first (array-type-dimensions-or-give-up vtype))))
797       (when (eq dim '*)
798         (give-up-ir1-transform))
799       (when (conservative-array-type-complexp vtype)
800         (give-up-ir1-transform))
801       dim)))
802
803 ;;; Again, if we can tell the results from the type, just use it.
804 ;;; Otherwise, if we know the rank, convert into a computation based
805 ;;; on array-dimension. We can wrap a TRULY-THE INDEX around the
806 ;;; multiplications because we know that the total size must be an
807 ;;; INDEX.
808 (deftransform array-total-size ((array)
809                                 (array))
810   (let ((array-type (lvar-type array)))
811     (let ((dims (array-type-dimensions-or-give-up array-type)))
812       (unless (listp dims)
813         (give-up-ir1-transform "can't tell the rank at compile time"))
814       (if (member '* dims)
815           (do ((form 1 `(truly-the index
816                                    (* (array-dimension array ,i) ,form)))
817                (i 0 (1+ i)))
818               ((= i (length dims)) form))
819           (reduce #'* dims)))))
820
821 ;;; Only complex vectors have fill pointers.
822 (deftransform array-has-fill-pointer-p ((array))
823   (let ((array-type (lvar-type array)))
824     (let ((dims (array-type-dimensions-or-give-up array-type)))
825       (if (and (listp dims) (not (= (length dims) 1)))
826           nil
827           (ecase (conservative-array-type-complexp array-type)
828             ((t)
829              t)
830             ((nil)
831              nil)
832             ((:maybe)
833              (give-up-ir1-transform
834               "The array type is ambiguous; must call ~
835                ARRAY-HAS-FILL-POINTER-P at runtime.")))))))
836
837 ;;; Primitive used to verify indices into arrays. If we can tell at
838 ;;; compile-time or we are generating unsafe code, don't bother with
839 ;;; the VOP.
840 (deftransform %check-bound ((array dimension index) * * :node node)
841   (cond ((policy node (= insert-array-bounds-checks 0))
842          'index)
843         ((not (constant-lvar-p dimension))
844          (give-up-ir1-transform))
845         (t
846          (let ((dim (lvar-value dimension)))
847            ;; FIXME: Can SPEED > SAFETY weaken this check to INTEGER?
848            `(the (integer 0 (,dim)) index)))))
849 \f
850 ;;;; WITH-ARRAY-DATA
851
852 ;;; This checks to see whether the array is simple and the start and
853 ;;; end are in bounds. If so, it proceeds with those values.
854 ;;; Otherwise, it calls %WITH-ARRAY-DATA. Note that %WITH-ARRAY-DATA
855 ;;; may be further optimized.
856 ;;;
857 ;;; Given any ARRAY, bind DATA-VAR to the array's data vector and
858 ;;; START-VAR and END-VAR to the start and end of the designated
859 ;;; portion of the data vector. SVALUE and EVALUE are any start and
860 ;;; end specified to the original operation, and are factored into the
861 ;;; bindings of START-VAR and END-VAR. OFFSET-VAR is the cumulative
862 ;;; offset of all displacements encountered, and does not include
863 ;;; SVALUE.
864 ;;;
865 ;;; When FORCE-INLINE is set, the underlying %WITH-ARRAY-DATA form is
866 ;;; forced to be inline, overriding the ordinary judgment of the
867 ;;; %WITH-ARRAY-DATA DEFTRANSFORMs. Ordinarily the DEFTRANSFORMs are
868 ;;; fairly picky about their arguments, figuring that if you haven't
869 ;;; bothered to get all your ducks in a row, you probably don't care
870 ;;; that much about speed anyway! But in some cases it makes sense to
871 ;;; do type testing inside %WITH-ARRAY-DATA instead of outside, and
872 ;;; the DEFTRANSFORM can't tell that that's going on, so it can make
873 ;;; sense to use FORCE-INLINE option in that case.
874 (def!macro with-array-data (((data-var array &key offset-var)
875                              (start-var &optional (svalue 0))
876                              (end-var &optional (evalue nil))
877                              &key force-inline check-fill-pointer)
878                             &body forms
879                             &environment env)
880   (once-only ((n-array array)
881               (n-svalue `(the index ,svalue))
882               (n-evalue `(the (or index null) ,evalue)))
883     (let ((check-bounds (policy env (plusp insert-array-bounds-checks))))
884       `(multiple-value-bind (,data-var
885                              ,start-var
886                              ,end-var
887                              ,@(when offset-var `(,offset-var)))
888            (if (not (array-header-p ,n-array))
889                (let ((,n-array ,n-array))
890                  (declare (type (simple-array * (*)) ,n-array))
891                  ,(once-only ((n-len (if check-fill-pointer
892                                          `(length ,n-array)
893                                          `(array-total-size ,n-array)))
894                               (n-end `(or ,n-evalue ,n-len)))
895                              (if check-bounds
896                                  `(if (<= 0 ,n-svalue ,n-end ,n-len)
897                                       (values ,n-array ,n-svalue ,n-end 0)
898                                       ,(if check-fill-pointer
899                                            `(sequence-bounding-indices-bad-error ,n-array ,n-svalue ,n-evalue)
900                                            `(array-bounding-indices-bad-error ,n-array ,n-svalue ,n-evalue)))
901                                  `(values ,n-array ,n-svalue ,n-end 0))))
902                ,(if force-inline
903                     `(%with-array-data-macro ,n-array ,n-svalue ,n-evalue
904                                              :check-bounds ,check-bounds
905                                              :check-fill-pointer ,check-fill-pointer)
906                     (if check-fill-pointer
907                         `(%with-array-data/fp ,n-array ,n-svalue ,n-evalue)
908                         `(%with-array-data ,n-array ,n-svalue ,n-evalue))))
909          ,@forms))))
910
911 ;;; This is the fundamental definition of %WITH-ARRAY-DATA, for use in
912 ;;; DEFTRANSFORMs and DEFUNs.
913 (def!macro %with-array-data-macro (array
914                                    start
915                                    end
916                                    &key
917                                    (element-type '*)
918                                    check-bounds
919                                    check-fill-pointer)
920   (with-unique-names (size defaulted-end data cumulative-offset)
921     `(let* ((,size ,(if check-fill-pointer
922                         `(length ,array)
923                         `(array-total-size ,array)))
924             (,defaulted-end (or ,end ,size)))
925        ,@(when check-bounds
926                `((unless (<= ,start ,defaulted-end ,size)
927                    ,(if check-fill-pointer
928                         `(sequence-bounding-indices-bad-error ,array ,start ,end)
929                         `(array-bounding-indices-bad-error ,array ,start ,end)))))
930        (do ((,data ,array (%array-data-vector ,data))
931             (,cumulative-offset 0
932                                 (+ ,cumulative-offset
933                                    (%array-displacement ,data))))
934            ((not (array-header-p ,data))
935             (values (the (simple-array ,element-type 1) ,data)
936                     (the index (+ ,cumulative-offset ,start))
937                     (the index (+ ,cumulative-offset ,defaulted-end))
938                     (the index ,cumulative-offset)))
939          (declare (type index ,cumulative-offset))))))
940
941 (defun transform-%with-array-data/muble (array node check-fill-pointer)
942   (let ((element-type (upgraded-element-type-specifier-or-give-up array))
943         (type (lvar-type array))
944         (check-bounds (policy node (plusp insert-array-bounds-checks))))
945     (if (and (array-type-p type)
946              (not (array-type-complexp type))
947              (listp (array-type-dimensions type))
948              (not (null (cdr (array-type-dimensions type)))))
949         ;; If it's a simple multidimensional array, then just return
950         ;; its data vector directly rather than going through
951         ;; %WITH-ARRAY-DATA-MACRO. SBCL doesn't generally generate
952         ;; code that would use this currently, but we have encouraged
953         ;; users to use WITH-ARRAY-DATA and we may use it ourselves at
954         ;; some point in the future for optimized libraries or
955         ;; similar.
956         (if check-bounds
957             `(let* ((data (truly-the (simple-array ,element-type (*))
958                                      (%array-data-vector array)))
959                     (len (length data))
960                     (real-end (or end len)))
961                (unless (<= 0 start data-end lend)
962                  (sequence-bounding-indices-bad-error array start end))
963                (values data 0 real-end 0))
964             `(let ((data (truly-the (simple-array ,element-type (*))
965                                     (%array-data-vector array))))
966                (values data 0 (or end (length data)) 0)))
967         `(%with-array-data-macro array start end
968                                  :check-fill-pointer ,check-fill-pointer
969                                  :check-bounds ,check-bounds
970                                  :element-type ,element-type))))
971
972 ;; It might very well be reasonable to allow general ARRAY here, I
973 ;; just haven't tried to understand the performance issues involved.
974 ;; -- WHN, and also CSR 2002-05-26
975 (deftransform %with-array-data ((array start end)
976                                 ((or vector simple-array) index (or index null) t)
977                                 *
978                                 :node node
979                                 :policy (> speed space))
980   "inline non-SIMPLE-vector-handling logic"
981   (transform-%with-array-data/muble array node nil))
982 (deftransform %with-array-data/fp ((array start end)
983                                 ((or vector simple-array) index (or index null) t)
984                                 *
985                                 :node node
986                                 :policy (> speed space))
987   "inline non-SIMPLE-vector-handling logic"
988   (transform-%with-array-data/muble array node t))
989 \f
990 ;;;; array accessors
991
992 ;;; We convert all typed array accessors into AREF and (SETF AREF) with type
993 ;;; assertions on the array.
994 (macrolet ((define-bit-frob (reffer simplep)
995              `(progn
996                 (define-source-transform ,reffer (a &rest i)
997                   `(aref (the (,',(if simplep 'simple-array 'array)
998                                   bit
999                                   ,(mapcar (constantly '*) i))
1000                            ,a) ,@i))
1001                 (define-source-transform (setf ,reffer) (value a &rest i)
1002                   `(setf (aref (the (,',(if simplep 'simple-array 'array)
1003                                      bit
1004                                      ,(mapcar (constantly '*) i))
1005                                     ,a) ,@i)
1006                          ,value)))))
1007   (define-bit-frob sbit t)
1008   (define-bit-frob bit nil))
1009
1010 (macrolet ((define-frob (reffer setter type)
1011              `(progn
1012                 (define-source-transform ,reffer (a i)
1013                   `(aref (the ,',type ,a) ,i))
1014                 (define-source-transform ,setter (a i v)
1015                   `(setf (aref (the ,',type ,a) ,i) ,v)))))
1016   (define-frob schar %scharset simple-string)
1017   (define-frob char %charset string))
1018
1019 ;;; We transform SVREF and %SVSET directly into DATA-VECTOR-REF/SET: this is
1020 ;;; around 100 times faster than going through the general-purpose AREF
1021 ;;; transform which ends up doing a lot of work -- and introducing many
1022 ;;; intermediate lambdas, each meaning a new trip through the compiler -- to
1023 ;;; get the same result.
1024 ;;;
1025 ;;; FIXME: [S]CHAR, and [S]BIT above would almost certainly benefit from a similar
1026 ;;; treatment.
1027 (define-source-transform svref (vector index)
1028   (let ((elt-type (or (when (symbolp vector)
1029                         (let ((var (lexenv-find vector vars)))
1030                           (when (lambda-var-p var)
1031                             (type-specifier
1032                              (array-type-declared-element-type (lambda-var-type var))))))
1033                       t)))
1034     (with-unique-names (n-vector)
1035       `(let ((,n-vector ,vector))
1036          (the ,elt-type (data-vector-ref
1037                          (the simple-vector ,n-vector)
1038                          (%check-bound ,n-vector (length ,n-vector) ,index)))))))
1039
1040 (define-source-transform %svset (vector index value)
1041   (let ((elt-type (or (when (symbolp vector)
1042                         (let ((var (lexenv-find vector vars)))
1043                           (when (lambda-var-p var)
1044                             (type-specifier
1045                              (array-type-declared-element-type (lambda-var-type var))))))
1046                       t)))
1047     (with-unique-names (n-vector)
1048       `(let ((,n-vector ,vector))
1049          (truly-the ,elt-type (data-vector-set
1050                                (the simple-vector ,n-vector)
1051                                (%check-bound ,n-vector (length ,n-vector) ,index)
1052                                (the ,elt-type ,value)))))))
1053
1054 (macrolet (;; This is a handy macro for computing the row-major index
1055            ;; given a set of indices. We wrap each index with a call
1056            ;; to %CHECK-BOUND to ensure that everything works out
1057            ;; correctly. We can wrap all the interior arithmetic with
1058            ;; TRULY-THE INDEX because we know the resultant
1059            ;; row-major index must be an index.
1060            (with-row-major-index ((array indices index &optional new-value)
1061                                   &rest body)
1062              `(let (n-indices dims)
1063                 (dotimes (i (length ,indices))
1064                   (push (make-symbol (format nil "INDEX-~D" i)) n-indices)
1065                   (push (make-symbol (format nil "DIM-~D" i)) dims))
1066                 (setf n-indices (nreverse n-indices))
1067                 (setf dims (nreverse dims))
1068                 `(lambda (,@',(when new-value (list new-value))
1069                           ,',array ,@n-indices)
1070                    (declare (ignorable ,',array))
1071                    (let* (,@(let ((,index -1))
1072                               (mapcar (lambda (name)
1073                                         `(,name (array-dimension
1074                                                  ,',array
1075                                                  ,(incf ,index))))
1076                                       dims))
1077                             (,',index
1078                              ,(if (null dims)
1079                                   0
1080                                 (do* ((dims dims (cdr dims))
1081                                       (indices n-indices (cdr indices))
1082                                       (last-dim nil (car dims))
1083                                       (form `(%check-bound ,',array
1084                                                            ,(car dims)
1085                                                            ,(car indices))
1086                                             `(truly-the
1087                                               index
1088                                               (+ (truly-the index
1089                                                             (* ,form
1090                                                                ,last-dim))
1091                                                  (%check-bound
1092                                                   ,',array
1093                                                   ,(car dims)
1094                                                   ,(car indices))))))
1095                                     ((null (cdr dims)) form)))))
1096                      ,',@body)))))
1097
1098   ;; Just return the index after computing it.
1099   (deftransform array-row-major-index ((array &rest indices))
1100     (with-row-major-index (array indices index)
1101       index))
1102
1103   ;; Convert AREF and (SETF AREF) into a HAIRY-DATA-VECTOR-REF (or
1104   ;; HAIRY-DATA-VECTOR-SET) with the set of indices replaced with the an
1105   ;; expression for the row major index.
1106   (deftransform aref ((array &rest indices))
1107     (with-row-major-index (array indices index)
1108       (hairy-data-vector-ref array index)))
1109
1110   (deftransform (setf aref) ((new-value array &rest subscripts))
1111     (with-row-major-index (array subscripts index new-value)
1112                           (hairy-data-vector-set array index new-value))))
1113
1114 ;; For AREF of vectors we do the bounds checking in the callee. This
1115 ;; lets us do a significantly more efficient check for simple-arrays
1116 ;; without bloating the code. If we already know the type of the array
1117 ;; with sufficient precision, skip directly to DATA-VECTOR-REF.
1118 (deftransform aref ((array index) (t t) * :node node)
1119   (let* ((type (lvar-type array))
1120          (element-ctype (array-type-upgraded-element-type type)))
1121     (cond
1122       ((and (array-type-p type)
1123             (null (array-type-complexp type))
1124             (not (eql element-ctype *wild-type*))
1125             (eql (length (array-type-dimensions type)) 1))
1126        (let* ((declared-element-ctype (array-type-declared-element-type type))
1127               (bare-form
1128                `(data-vector-ref array
1129                  (%check-bound array (array-dimension array 0) index))))
1130          (if (type= declared-element-ctype element-ctype)
1131              bare-form
1132              `(the ,(type-specifier declared-element-ctype) ,bare-form))))
1133       ((policy node (zerop insert-array-bounds-checks))
1134        `(hairy-data-vector-ref array index))
1135       (t `(hairy-data-vector-ref/check-bounds array index)))))
1136
1137 (deftransform (setf aref) ((new-value array index) (t t t) * :node node)
1138   (if (policy node (zerop insert-array-bounds-checks))
1139       `(hairy-data-vector-set array index new-value)
1140       `(hairy-data-vector-set/check-bounds array index new-value)))
1141
1142 ;;; But if we find out later that there's some useful type information
1143 ;;; available, switch back to the normal one to give other transforms
1144 ;;; a stab at it.
1145 (macrolet ((define (name transform-to extra extra-type)
1146              (declare (ignore extra-type))
1147              `(deftransform ,name ((array index ,@extra))
1148                 (let* ((type (lvar-type array))
1149                        (element-type (array-type-upgraded-element-type type))
1150                        (declared-type (type-specifier
1151                                        (array-type-declared-element-type type))))
1152                   ;; If an element type has been declared, we want to
1153                   ;; use that information it for type checking (even
1154                   ;; if the access can't be optimized due to the array
1155                   ;; not being simple).
1156                   (when (and (eql element-type *wild-type*)
1157                              ;; This type logic corresponds to the special
1158                              ;; case for strings in HAIRY-DATA-VECTOR-REF
1159                              ;; (generic/vm-tran.lisp)
1160                              (not (csubtypep type (specifier-type 'simple-string))))
1161                     (when (or (not (array-type-p type))
1162                               ;; If it's a simple array, we might be able
1163                               ;; to inline the access completely.
1164                               (not (null (array-type-complexp type))))
1165                       (give-up-ir1-transform
1166                        "Upgraded element type of array is not known at compile time.")))
1167                   ,(if extra
1168                        ``(truly-the ,declared-type
1169                                     (,',transform-to array
1170                                                      (%check-bound array
1171                                                                    (array-dimension array 0)
1172                                                                    index)
1173                                                      (the ,declared-type ,@',extra)))
1174                        ``(the ,declared-type
1175                            (,',transform-to array
1176                                             (%check-bound array
1177                                                           (array-dimension array 0)
1178                                                           index))))))))
1179   (define hairy-data-vector-ref/check-bounds
1180       hairy-data-vector-ref nil nil)
1181   (define hairy-data-vector-set/check-bounds
1182       hairy-data-vector-set (new-value) (*)))
1183
1184 ;;; Just convert into a HAIRY-DATA-VECTOR-REF (or
1185 ;;; HAIRY-DATA-VECTOR-SET) after checking that the index is inside the
1186 ;;; array total size.
1187 (deftransform row-major-aref ((array index))
1188   `(hairy-data-vector-ref array
1189                           (%check-bound array (array-total-size array) index)))
1190 (deftransform %set-row-major-aref ((array index new-value))
1191   `(hairy-data-vector-set array
1192                           (%check-bound array (array-total-size array) index)
1193                           new-value))
1194 \f
1195 ;;;; bit-vector array operation canonicalization
1196 ;;;;
1197 ;;;; We convert all bit-vector operations to have the result array
1198 ;;;; specified. This allows any result allocation to be open-coded,
1199 ;;;; and eliminates the need for any VM-dependent transforms to handle
1200 ;;;; these cases.
1201
1202 (macrolet ((def (fun)
1203              `(progn
1204                (deftransform ,fun ((bit-array-1 bit-array-2
1205                                                 &optional result-bit-array)
1206                                    (bit-vector bit-vector &optional null) *
1207                                    :policy (>= speed space))
1208                  `(,',fun bit-array-1 bit-array-2
1209                    (make-array (array-dimension bit-array-1 0) :element-type 'bit)))
1210                ;; If result is T, make it the first arg.
1211                (deftransform ,fun ((bit-array-1 bit-array-2 result-bit-array)
1212                                    (bit-vector bit-vector (eql t)) *)
1213                  `(,',fun bit-array-1 bit-array-2 bit-array-1)))))
1214   (def bit-and)
1215   (def bit-ior)
1216   (def bit-xor)
1217   (def bit-eqv)
1218   (def bit-nand)
1219   (def bit-nor)
1220   (def bit-andc1)
1221   (def bit-andc2)
1222   (def bit-orc1)
1223   (def bit-orc2))
1224
1225 ;;; Similar for BIT-NOT, but there is only one arg...
1226 (deftransform bit-not ((bit-array-1 &optional result-bit-array)
1227                        (bit-vector &optional null) *
1228                        :policy (>= speed space))
1229   '(bit-not bit-array-1
1230             (make-array (array-dimension bit-array-1 0) :element-type 'bit)))
1231 (deftransform bit-not ((bit-array-1 result-bit-array)
1232                        (bit-vector (eql t)))
1233   '(bit-not bit-array-1 bit-array-1))
1234 \f
1235 ;;; Pick off some constant cases.
1236 (defoptimizer (array-header-p derive-type) ((array))
1237   (let ((type (lvar-type array)))
1238     (cond ((not (array-type-p type))
1239            ;; FIXME: use analogue of ARRAY-TYPE-DIMENSIONS-OR-GIVE-UP
1240            nil)
1241           (t
1242            (let ((dims (array-type-dimensions type)))
1243              (cond ((csubtypep type (specifier-type '(simple-array * (*))))
1244                     ;; no array header
1245                     (specifier-type 'null))
1246                    ((and (listp dims) (/= (length dims) 1))
1247                     ;; multi-dimensional array, will have a header
1248                     (specifier-type '(eql t)))
1249                    ((eql (array-type-complexp type) t)
1250                     (specifier-type '(eql t)))
1251                    (t
1252                     nil)))))))