Optimize CONCATENATE transform.
[sbcl.git] / src / compiler / seqtran.lisp
1 ;;;; optimizers for list and sequence functions
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 ;;;; mapping onto lists: the MAPFOO functions
15
16 (defun mapfoo-transform (fn arglists accumulate take-car)
17   (collect ((do-clauses)
18             (args-to-fn)
19             (tests))
20     (let ((n-first (gensym)))
21       (dolist (a (if accumulate
22                      arglists
23                      `(,n-first ,@(rest arglists))))
24         (let ((v (gensym)))
25           (do-clauses `(,v ,a (cdr ,v)))
26           (tests `(endp ,v))
27           (args-to-fn (if take-car `(car ,v) v))))
28
29       (let* ((fn-sym (gensym))  ; for ONCE-ONLY-ish purposes
30              (call `(%funcall ,fn-sym . ,(args-to-fn)))
31              (endtest `(or ,@(tests))))
32
33         `(let ((,fn-sym (%coerce-callable-to-fun ,fn)))
34            ,(ecase accumulate
35              (:nconc
36               (let ((temp (gensym))
37                     (map-result (gensym)))
38                 `(let ((,map-result (list nil)))
39                    (do-anonymous ((,temp ,map-result) . ,(do-clauses))
40                      (,endtest (cdr ,map-result))
41                      (setq ,temp (last (nconc ,temp ,call)))))))
42              (:list
43               (let ((temp (gensym))
44                     (map-result (gensym)))
45                 `(let ((,map-result (list nil)))
46                    (do-anonymous ((,temp ,map-result) . ,(do-clauses))
47                      (,endtest (truly-the list (cdr ,map-result)))
48                      (rplacd ,temp (setq ,temp (list ,call)))))))
49              ((nil)
50               `(let ((,n-first ,(first arglists)))
51                  (do-anonymous ,(do-clauses)
52                    (,endtest (truly-the list ,n-first))
53                    ,call)))))))))
54
55 (define-source-transform mapc (function list &rest more-lists)
56   (mapfoo-transform function (cons list more-lists) nil t))
57
58 (define-source-transform mapcar (function list &rest more-lists)
59   (mapfoo-transform function (cons list more-lists) :list t))
60
61 (define-source-transform mapcan (function list &rest more-lists)
62   (mapfoo-transform function (cons list more-lists) :nconc t))
63
64 (define-source-transform mapl (function list &rest more-lists)
65   (mapfoo-transform function (cons list more-lists) nil nil))
66
67 (define-source-transform maplist (function list &rest more-lists)
68   (mapfoo-transform function (cons list more-lists) :list nil))
69
70 (define-source-transform mapcon (function list &rest more-lists)
71   (mapfoo-transform function (cons list more-lists) :nconc nil))
72 \f
73 ;;;; mapping onto sequences: the MAP function
74
75 ;;; MAP is %MAP plus a check to make sure that any length specified in
76 ;;; the result type matches the actual result. We also wrap it in a
77 ;;; TRULY-THE for the most specific type we can determine.
78 (deftransform map ((result-type-arg fun seq &rest seqs) * * :node node)
79   (let* ((seq-names (make-gensym-list (1+ (length seqs))))
80          (bare `(%map result-type-arg fun ,@seq-names))
81          (constant-result-type-arg-p (constant-lvar-p result-type-arg))
82          ;; what we know about the type of the result. (Note that the
83          ;; "result type" argument is not necessarily the type of the
84          ;; result, since NIL means the result has NULL type.)
85          (result-type (if (not constant-result-type-arg-p)
86                           'consed-sequence
87                           (let ((result-type-arg-value
88                                  (lvar-value result-type-arg)))
89                             (if (null result-type-arg-value)
90                                 'null
91                                 result-type-arg-value)))))
92     `(lambda (result-type-arg fun ,@seq-names)
93        (truly-the ,result-type
94          ,(cond ((policy node (< safety 3))
95                  ;; ANSI requires the length-related type check only
96                  ;; when the SAFETY quality is 3... in other cases, we
97                  ;; skip it, because it could be expensive.
98                  bare)
99                 ((not constant-result-type-arg-p)
100                  `(sequence-of-checked-length-given-type ,bare
101                                                          result-type-arg))
102                 (t
103                  (let ((result-ctype (ir1-transform-specifier-type
104                                       result-type)))
105                    (if (array-type-p result-ctype)
106                        (let ((dims (array-type-dimensions result-ctype)))
107                          (unless (and (listp dims) (= (length dims) 1))
108                            (give-up-ir1-transform "invalid sequence type"))
109                          (let ((dim (first dims)))
110                            (if (eq dim '*)
111                                bare
112                                `(vector-of-checked-length-given-length ,bare
113                                                                        ,dim))))
114                        ;; FIXME: this is wrong, as not all subtypes of
115                        ;; VECTOR are ARRAY-TYPEs [consider, for
116                        ;; example, (OR (VECTOR T 3) (VECTOR T
117                        ;; 4))]. However, it's difficult to see what we
118                        ;; should put here... maybe we should
119                        ;; GIVE-UP-IR1-TRANSFORM if the type is a
120                        ;; subtype of VECTOR but not an ARRAY-TYPE?
121                        bare))))))))
122
123 ;;; Return a DO loop, mapping a function FUN to elements of
124 ;;; sequences. SEQS is a list of lvars, SEQ-NAMES - list of variables,
125 ;;; bound to sequences, INTO - a variable, which is used in
126 ;;; MAP-INTO. RESULT and BODY are forms, which can use variables
127 ;;; FUNCALL-RESULT, containing the result of application of FUN, and
128 ;;; INDEX, containing the current position in sequences.
129 (defun build-sequence-iterator (seqs seq-names &key result into body fast)
130   (declare (type list seqs seq-names)
131            (type symbol into))
132   (collect ((bindings)
133             (declarations)
134             (vector-lengths)
135             (tests)
136             (places)
137             (around))
138     (let ((found-vector-p nil))
139       (flet ((process-vector (length)
140                (unless found-vector-p
141                  (setq found-vector-p t)
142                  (bindings `(index 0 (1+ index)))
143                  (declarations `(type index index)))
144                (vector-lengths length)))
145         (loop for seq of-type lvar in seqs
146            for seq-name in seq-names
147            for type = (lvar-type seq)
148            do (cond ((csubtypep type (specifier-type 'list))
149                      (with-unique-names (index)
150                        (bindings `(,index ,seq-name (cdr ,index)))
151                        (declarations `(type list ,index))
152                        (places `(car ,index))
153                        (tests `(endp ,index))))
154                     ((or (csubtypep type (specifier-type '(simple-array * 1)))
155                          (and (not fast)
156                               (csubtypep type (specifier-type 'vector))))
157                      (process-vector `(length ,seq-name))
158                      (places `(locally (declare (optimize (insert-array-bounds-checks 0)))
159                                 (aref ,seq-name index))))
160                     ((csubtypep type (specifier-type 'vector))
161                      (let ((data  (gensym "DATA"))
162                            (start (gensym "START"))
163                            (end   (gensym "END")))
164                        (around `(with-array-data ((,data ,seq-name)
165                                                   (,start)
166                                                   (,end (length ,seq-name)))))
167                        (process-vector `(- ,end ,start))
168                        (places `(locally (declare (optimize (insert-array-bounds-checks 0)))
169                                   (aref ,data (truly-the index (+ index ,start)))))))
170                     (t
171                      (give-up-ir1-transform
172                       "can't determine sequence argument type"))))
173         (when into
174           (process-vector `(array-dimension ,into 0))))
175       (when found-vector-p
176         (bindings `(length (min ,@(vector-lengths))))
177         (tests `(>= index length)))
178       (let ((body `(do (,@(bindings))
179                        ((or ,@(tests)) ,result)
180                      (declare ,@(declarations))
181                      (let ((funcall-result (funcall fun ,@(places))))
182                        (declare (ignorable funcall-result))
183                        ,body))))
184         (if (around)
185             (reduce (lambda (wrap body) (append wrap (list body)))
186                     (around)
187                     :from-end t
188                     :initial-value body)
189             body)))))
190
191 ;;; Try to compile %MAP efficiently when we can determine sequence
192 ;;; argument types at compile time.
193 ;;;
194 ;;; Note: This transform was written to allow open coding of
195 ;;; quantifiers by expressing them in terms of (MAP NIL ..). For
196 ;;; non-NIL values of RESULT-TYPE, it's still useful, but not
197 ;;; necessarily as efficient as possible. In particular, it will be
198 ;;; inefficient when RESULT-TYPE is a SIMPLE-ARRAY with specialized
199 ;;; numeric element types. It should be straightforward to make it
200 ;;; handle that case more efficiently, but it's left as an exercise to
201 ;;; the reader, because the code is complicated enough already and I
202 ;;; don't happen to need that functionality right now. -- WHN 20000410
203 (deftransform %map ((result-type fun seq &rest seqs) * *
204                     :node node :policy (>= speed space))
205   "open code"
206   (unless (constant-lvar-p result-type)
207     (give-up-ir1-transform "RESULT-TYPE argument not constant"))
208   (labels ( ;; 1-valued SUBTYPEP, fails unless second value of SUBTYPEP is true
209            (fn-1subtypep (fn x y)
210              (multiple-value-bind (subtype-p valid-p) (funcall fn x y)
211                (if valid-p
212                    subtype-p
213                    (give-up-ir1-transform
214                     "can't analyze sequence type relationship"))))
215            (1subtypep (x y) (fn-1subtypep #'sb!xc:subtypep x y)))
216     (let* ((result-type-value (lvar-value result-type))
217            (result-supertype (cond ((null result-type-value) 'null)
218                                    ((1subtypep result-type-value 'vector)
219                                     'vector)
220                                    ((1subtypep result-type-value 'list)
221                                     'list)
222                                    (t
223                                     (give-up-ir1-transform
224                                      "result type unsuitable")))))
225       (cond ((and result-type-value (null seqs))
226              ;; The consing arity-1 cases can be implemented
227              ;; reasonably efficiently as function calls, and the cost
228              ;; of consing should be significantly larger than
229              ;; function call overhead, so we always compile these
230              ;; cases as full calls regardless of speed-versus-space
231              ;; optimization policy.
232              (cond ((subtypep result-type-value 'list)
233                     '(%map-to-list-arity-1 fun seq))
234                    ( ;; (This one can be inefficient due to COERCE, but
235                     ;; the current open-coded implementation has the
236                     ;; same problem.)
237                     (subtypep result-type-value 'vector)
238                     `(coerce (%map-to-simple-vector-arity-1 fun seq)
239                              ',result-type-value))
240                    (t (bug "impossible (?) sequence type"))))
241             (t
242              (let* ((seqs (cons seq seqs))
243                     (seq-args (make-gensym-list (length seqs))))
244                (multiple-value-bind (push-dacc result)
245                    (ecase result-supertype
246                      (null (values nil nil))
247                      (list (values `(push funcall-result acc)
248                                    `(nreverse acc)))
249                      (vector (values `(push funcall-result acc)
250                                      `(coerce (nreverse acc)
251                                               ',result-type-value))))
252                  ;; (We use the same idiom, of returning a LAMBDA from
253                  ;; DEFTRANSFORM, as is used in the DEFTRANSFORMs for
254                  ;; FUNCALL and ALIEN-FUNCALL, and for the same
255                  ;; reason: we need to get the runtime values of each
256                  ;; of the &REST vars.)
257                  `(lambda (result-type fun ,@seq-args)
258                     (declare (ignore result-type))
259                     (let ((fun (%coerce-callable-to-fun fun))
260                           (acc nil))
261                       (declare (type list acc))
262                       (declare (ignorable acc))
263                       ,(build-sequence-iterator
264                         seqs seq-args
265                         :result result
266                         :body push-dacc
267                         :fast (policy node (> speed space))))))))))))
268
269 ;;; MAP-INTO
270 (deftransform map-into ((result fun &rest seqs)
271                         (vector * &rest *)
272                         * :node node)
273   "open code"
274   (let ((seqs-names (mapcar (lambda (x)
275                               (declare (ignore x))
276                               (gensym))
277                             seqs)))
278     `(lambda (result fun ,@seqs-names)
279        ,(if (and (policy node (> speed space))
280                  (not (csubtypep (lvar-type result)
281                                  (specifier-type '(simple-array * 1)))))
282             (let ((data  (gensym "DATA"))
283                   (start (gensym "START"))
284                   (end   (gensym "END")))
285               `(with-array-data ((,data result)
286                                  (,start)
287                                  (,end))
288                  (declare (ignore ,end))
289                  ,(build-sequence-iterator
290                    seqs seqs-names
291                    :result '(when (array-has-fill-pointer-p result)
292                              (setf (fill-pointer result) index))
293                    :into 'result
294                    :body `(locally (declare (optimize (insert-array-bounds-checks 0)))
295                            (setf (aref ,data (truly-the index (+ index ,start)))
296                                  funcall-result))
297                    :fast t)))
298             (build-sequence-iterator
299              seqs seqs-names
300              :result '(when (array-has-fill-pointer-p result)
301                        (setf (fill-pointer result) index))
302              :into 'result
303              :body '(locally (declare (optimize (insert-array-bounds-checks 0)))
304                      (setf (aref result index) funcall-result))))
305        result)))
306
307 \f
308 ;;; FIXME: once the confusion over doing transforms with known-complex
309 ;;; arrays is over, we should also transform the calls to (AND (ARRAY
310 ;;; * (*)) (NOT (SIMPLE-ARRAY * (*)))) objects.
311 (deftransform elt ((s i) ((simple-array * (*)) *) *)
312   '(aref s i))
313
314 (deftransform elt ((s i) (list *) * :policy (< safety 3))
315   '(nth i s))
316
317 (deftransform %setelt ((s i v) ((simple-array * (*)) * *) *)
318   '(setf (aref s i) v))
319
320 (deftransform %setelt ((s i v) (list * *) * :policy (< safety 3))
321   '(setf (car (nthcdr i s)) v))
322
323 (deftransform %check-vector-sequence-bounds ((vector start end)
324                                              (vector * *) *
325                                              :node node)
326   (if (policy node (= 0 insert-array-bounds-checks))
327       '(or end (length vector))
328       '(let ((length (length vector)))
329          (if (<= 0 start (or end length) length)
330              (or end length)
331              (sequence-bounding-indices-bad-error vector start end)))))
332
333 (def!type eq-comparable-type ()
334   '(or fixnum (not number)))
335
336 ;;; True if EQL comparisons involving type can be simplified to EQ.
337 (defun eq-comparable-type-p (type)
338   (csubtypep type (specifier-type 'eq-comparable-type)))
339
340 (defun specialized-list-seek-function-name (function-name key-functions &optional variant)
341   (or (find-symbol (with-output-to-string (s)
342                      ;; Write "%NAME-FUN1-FUN2-FUN3", etc. Not only is
343                      ;; this ever so slightly faster then FORMAT, this
344                      ;; way we are also proof against *PRINT-CASE*
345                      ;; frobbing and such.
346                      (write-char #\% s)
347                      (write-string (symbol-name function-name) s)
348                      (dolist (f key-functions)
349                        (write-char #\- s)
350                        (write-string (symbol-name f) s))
351                      (when variant
352                        (write-char #\- s)
353                        (write-string (symbol-name variant) s)))
354                    (load-time-value (find-package "SB!KERNEL")))
355       (bug "Unknown list item seek transform: name=~S, key-functions=~S variant=~S"
356            function-name key-functions variant)))
357
358 (defparameter *list-open-code-limit* 128)
359
360 (defun transform-list-item-seek (name item list key test test-not node)
361   (when (and test test-not)
362     (abort-ir1-transform "Both ~S and ~S supplied to ~S." :test :test-not name))
363   ;; If TEST is EQL, drop it.
364   (when (and test (lvar-fun-is test '(eql)))
365     (setf test nil))
366   ;; Ditto for KEY IDENTITY.
367   (when (and key (lvar-fun-is key '(identity)))
368     (setf key nil))
369   ;; Key can legally be NIL, but if it's NIL for sure we pretend it's
370   ;; not there at all. If it might be NIL, make up a form to that
371   ;; ensures it is a function.
372   (multiple-value-bind (key key-form)
373       (when key
374         (let ((key-type (lvar-type key))
375               (null-type (specifier-type 'null)))
376           (cond ((csubtypep key-type null-type)
377                  (values nil nil))
378                 ((csubtypep null-type key-type)
379                  (values key '(if key
380                                (%coerce-callable-to-fun key)
381                                #'identity)))
382                 (t
383                  (values key (ensure-lvar-fun-form key 'key))))))
384     (let* ((c-test (cond ((and test (lvar-fun-is test '(eq)))
385                           (setf test nil)
386                           'eq)
387                          ((and (not test) (not test-not))
388                           (when (eq-comparable-type-p (lvar-type item))
389                             'eq))))
390            (funs (delete nil (list (when key (list key 'key))
391                                    (when test (list test 'test))
392                                    (when test-not (list test-not 'test-not)))))
393            (target-expr (if key '(%funcall key target) 'target))
394            (test-expr (cond (test `(%funcall test item ,target-expr))
395                             (test-not `(not (%funcall test-not item ,target-expr)))
396                             (c-test `(,c-test item ,target-expr))
397                             (t `(eql item ,target-expr)))))
398       (labels ((open-code (tail)
399                  (when tail
400                    `(if (let ((this ',(car tail)))
401                           ,(ecase name
402                                   ((assoc rassoc)
403                                    (let ((cxx (if (eq name 'assoc) 'car 'cdr)))
404                                      `(and this (let ((target (,cxx this)))
405                                                   ,test-expr))))
406                                   (member
407                                    `(let ((target this))
408                                       ,test-expr))))
409                         ',(ecase name
410                                  ((assoc rassoc) (car tail))
411                                  (member tail))
412                         ,(open-code (cdr tail)))))
413                (ensure-fun (args)
414                  (if (eq 'key (second args))
415                      key-form
416                      (apply #'ensure-lvar-fun-form args))))
417         (let* ((cp (constant-lvar-p list))
418                (c-list (when cp (lvar-value list))))
419           (cond ((and cp c-list (member name '(assoc rassoc member))
420                       (policy node (>= speed space))
421                       (not (nthcdr *list-open-code-limit* c-list)))
422                  `(let ,(mapcar (lambda (fun) `(,(second fun) ,(ensure-fun fun))) funs)
423                     ,(open-code c-list)))
424                 ((and cp (not c-list))
425                  ;; constant nil list
426                  (if (eq name 'adjoin)
427                      '(list item)
428                      nil))
429                 (t
430                  ;; specialized out-of-line version
431                  `(,(specialized-list-seek-function-name name (mapcar #'second funs) c-test)
432                     item list ,@(mapcar #'ensure-fun funs)))))))))
433
434 (defun transform-list-pred-seek (name pred list key node)
435   ;; If KEY is IDENTITY, drop it.
436   (when (and key (lvar-fun-is key '(identity)))
437     (setf key nil))
438   ;; Key can legally be NIL, but if it's NIL for sure we pretend it's
439   ;; not there at all. If it might be NIL, make up a form to that
440   ;; ensures it is a function.
441   (multiple-value-bind (key key-form)
442       (when key
443         (let ((key-type (lvar-type key))
444               (null-type (specifier-type 'null)))
445           (cond ((csubtypep key-type null-type)
446                  (values nil nil))
447                 ((csubtypep null-type key-type)
448                  (values key '(if key
449                                (%coerce-callable-to-fun key)
450                                #'identity)))
451                 (t
452                  (values key (ensure-lvar-fun-form key 'key))))))
453     (let ((test-expr `(%funcall pred ,(if key '(%funcall key target) 'target)))
454           (pred-expr (ensure-lvar-fun-form pred 'pred)))
455       (when (member name '(member-if-not assoc-if-not rassoc-if-not))
456         (setf test-expr `(not ,test-expr)))
457       (labels ((open-code (tail)
458                  (when tail
459                    `(if (let ((this ',(car tail)))
460                           ,(ecase name
461                                   ((assoc-if assoc-if-not rassoc-if rassoc-if-not)
462                                    (let ((cxx (if (member name '(assoc-if assoc-if-not)) 'car 'cdr)))
463                                      `(and this (let ((target (,cxx this)))
464                                                   ,test-expr))))
465                                   ((member-if member-if-not)
466                                    `(let ((target this))
467                                       ,test-expr))))
468                         ',(ecase name
469                                  ((assoc-if assoc-if-not rassoc-if rassoc-if-not)
470                                   (car tail))
471                                  ((member-if member-if-not)
472                                   tail))
473                         ,(open-code (cdr tail))))))
474         (let* ((cp (constant-lvar-p list))
475                (c-list (when cp (lvar-value list))))
476           (cond ((and cp c-list (policy node (>= speed space))
477                       (not (nthcdr *list-open-code-limit* c-list)))
478                  `(let ((pred ,pred-expr)
479                         ,@(when key `((key ,key-form))))
480                     ,(open-code c-list)))
481                 ((and cp (not c-list))
482                  ;; constant nil list -- nothing to find!
483                  nil)
484                 (t
485                  ;; specialized out-of-line version
486                  `(,(specialized-list-seek-function-name name (when key '(key)))
487                     ,pred-expr list ,@(when key (list key-form))))))))))
488
489 (macrolet ((def (name &optional if/if-not)
490              (let ((basic (symbolicate "%" name))
491                    (basic-eq (symbolicate "%" name "-EQ"))
492                    (basic-key (symbolicate "%" name "-KEY"))
493                    (basic-key-eq (symbolicate "%" name "-KEY-EQ")))
494                `(progn
495                   (deftransform ,name ((item list &key key test test-not) * * :node node)
496                     (transform-list-item-seek ',name item list key test test-not node))
497                   (deftransform ,basic ((item list) (eq-comparable-type t))
498                     `(,',basic-eq item list))
499                   (deftransform ,basic-key ((item list) (eq-comparable-type t))
500                     `(,',basic-key-eq item list))
501                   ,@(when if/if-not
502                           (let ((if-name (symbolicate name "-IF"))
503                                 (if-not-name (symbolicate name "-IF-NOT")))
504                             `((deftransform ,if-name ((pred list &key key) * * :node node)
505                                 (transform-list-pred-seek ',if-name pred list key node))
506                               (deftransform ,if-not-name ((pred list &key key) * * :node node)
507                                 (transform-list-pred-seek ',if-not-name pred list key node)))))))))
508   (def adjoin)
509   (def assoc  t)
510   (def member t)
511   (def rassoc t))
512
513 (deftransform memq ((item list) (t (constant-arg list)))
514   (labels ((rec (tail)
515              (if tail
516                  `(if (eq item ',(car tail))
517                       ',tail
518                       ,(rec (cdr tail)))
519                  nil)))
520     (rec (lvar-value list))))
521
522 ;;; A similar transform used to apply to MEMBER and ASSOC, but since
523 ;;; TRANSFORM-LIST-ITEM-SEEK now takes care of them those transform
524 ;;; would never fire, and (%MEMBER-TEST ITEM LIST #'EQ) should be
525 ;;; almost as fast as MEMQ.
526 (deftransform delete ((item list &key test) (t list &rest t) *)
527   "convert to EQ test"
528   (let ((type (lvar-type item)))
529     (unless (or (and test (lvar-fun-is test '(eq)))
530                 (and (eq-comparable-type-p type)
531                      (or (not test) (lvar-fun-is test '(eql)))))
532       (give-up-ir1-transform)))
533   `(delq item list))
534
535 (deftransform delete-if ((pred list) (t list))
536   "open code"
537   '(do ((x list (cdr x))
538         (splice '()))
539        ((endp x) list)
540      (cond ((funcall pred (car x))
541             (if (null splice)
542                 (setq list (cdr x))
543                 (rplacd splice (cdr x))))
544            (t (setq splice x)))))
545
546 (deftransform fill ((seq item &key (start 0) (end nil))
547                     (list t &key (:start t) (:end t)))
548   '(list-fill* seq item start end))
549
550 (deftransform fill ((seq item &key (start 0) (end nil))
551                     (vector t &key (:start t) (:end t))
552                     *
553                     :node node)
554   (let* ((type (lvar-type seq))
555          (element-ctype (array-type-upgraded-element-type type))
556          (element-type (type-specifier element-ctype))
557          (saetp (unless (eq *wild-type* element-ctype)
558                   (find-saetp-by-ctype element-ctype))))
559     (cond ((eq *wild-type* element-ctype)
560            (delay-ir1-transform node :constraint)
561            `(vector-fill* seq item start end))
562           ((and saetp (sb!vm::valid-bit-bash-saetp-p saetp))
563            (let* ((n-bits (sb!vm:saetp-n-bits saetp))
564                   (basher-name (format nil "UB~D-BASH-FILL" n-bits))
565                   (basher (or (find-symbol basher-name
566                                            (load-time-value (find-package :sb!kernel)))
567                               (abort-ir1-transform
568                                "Unknown fill basher, please report to sbcl-devel: ~A"
569                                basher-name)))
570                   (kind (cond ((sb!vm:saetp-fixnum-p saetp) :tagged)
571                               ((member element-type '(character base-char)) :char)
572                               ((eq element-type 'single-float) :single-float)
573                               #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
574                               ((eq element-type 'double-float) :double-float)
575                               #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
576                               ((equal element-type '(complex single-float))
577                                :complex-single-float)
578                               (t
579                                (aver (integer-type-p element-ctype))
580                                :bits)))
581                   ;; BASH-VALUE is a word that we can repeatedly smash
582                   ;; on the array: for less-than-word sized elements it
583                   ;; contains multiple copies of the fill item.
584                   (bash-value
585                    (if (constant-lvar-p item)
586                        (let ((tmp (lvar-value item)))
587                          (unless (ctypep tmp element-ctype)
588                            (abort-ir1-transform "~S is not ~S" tmp element-type))
589                          (let* ((bits
590                                  (ldb (byte n-bits 0)
591                                       (ecase kind
592                                         (:tagged
593                                          (ash tmp sb!vm:n-fixnum-tag-bits))
594                                         (:char
595                                          (char-code tmp))
596                                         (:bits
597                                          tmp)
598                                         (:single-float
599                                          (single-float-bits tmp))
600                                         #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
601                                         (:double-float
602                                          (logior (ash (double-float-high-bits tmp) 32)
603                                                  (double-float-low-bits tmp)))
604                                         #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
605                                         (:complex-single-float
606                                          (logior (ash (single-float-bits (imagpart tmp)) 32)
607                                                  (ldb (byte 32 0)
608                                                       (single-float-bits (realpart tmp))))))))
609                                 (res bits))
610                            (loop for i of-type sb!vm:word from n-bits by n-bits
611                                  until (= i sb!vm:n-word-bits)
612                                  do (setf res (ldb (byte sb!vm:n-word-bits 0)
613                                                    (logior res (ash bits i)))))
614                            res))
615                        (progn
616                          (delay-ir1-transform node :constraint)
617                         `(let* ((bits (ldb (byte ,n-bits 0)
618                                            ,(ecase kind
619                                                    (:tagged
620                                                     `(ash item ,sb!vm:n-fixnum-tag-bits))
621                                                    (:char
622                                                     `(char-code item))
623                                                    (:bits
624                                                     `item)
625                                                    (:single-float
626                                                     `(single-float-bits item))
627                                                    #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
628                                                    (:double-float
629                                                     `(logior (ash (double-float-high-bits item) 32)
630                                                              (double-float-low-bits item)))
631                                                    #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
632                                                    (:complex-single-float
633                                                     `(logior (ash (single-float-bits (imagpart item)) 32)
634                                                              (ldb (byte 32 0)
635                                                                   (single-float-bits (realpart item))))))))
636                                 (res bits))
637                            (declare (type sb!vm:word res))
638                            ,@(unless (= sb!vm:n-word-bits n-bits)
639                                      `((loop for i of-type sb!vm:word from ,n-bits by ,n-bits
640                                              until (= i sb!vm:n-word-bits)
641                                              do (setf res
642                                                       (ldb (byte ,sb!vm:n-word-bits 0)
643                                                            (logior res (ash bits (truly-the (integer 0 ,(- sb!vm:n-word-bits n-bits)) i))))))))
644                            res)))))
645              (values
646               ;; KLUDGE: WITH-ARRAY data in its full glory is going to mess up
647               ;; dynamic-extent for MAKE-ARRAY :INITIAL-ELEMENT initialization.
648               (if (csubtypep (lvar-type seq) (specifier-type '(simple-array * (*))))
649                   `(let* ((len (length seq))
650                           (end (or end len))
651                           (bound (1+ end)))
652                      ;; Minor abuse %CHECK-BOUND for bounds checking.
653                      ;; (- END START) may still end up negative, but
654                      ;; the basher handle that.
655                      (,basher ,bash-value seq
656                               (%check-bound seq bound start)
657                               (- (if end (%check-bound seq bound end) len)
658                                  start)))
659                `(with-array-data ((data seq)
660                                   (start start)
661                                   (end end)
662                                   :check-fill-pointer t)
663                   (declare (type (simple-array ,element-type 1) data))
664                   (declare (type index start end))
665                   (declare (optimize (safety 0) (speed 3)))
666                   (,basher ,bash-value data start (- end start))
667                   seq))
668               `((declare (type ,element-type item))))))
669           ((policy node (> speed space))
670            (values
671             `(with-array-data ((data seq)
672                                (start start)
673                                (end end)
674                                :check-fill-pointer t)
675                (declare (type (simple-array ,element-type 1) data))
676                (declare (type index start end))
677                ;; WITH-ARRAY-DATA did our range checks once and for all, so
678                ;; it'd be wasteful to check again on every AREF...
679                (declare (optimize (safety 0) (speed 3)))
680                (do ((i start (1+ i)))
681                    ((= i end) seq)
682                  (declare (type index i))
683                  (setf (aref data i) item)))
684             ;; ... though we still need to check that the new element can fit
685             ;; into the vector in safe code. -- CSR, 2002-07-05
686             `((declare (type ,element-type item)))))
687           ((csubtypep type (specifier-type 'string))
688            '(string-fill* seq item start end))
689           (t
690            '(vector-fill* seq item start end)))))
691
692 (deftransform fill ((seq item &key (start 0) (end nil))
693                     ((and sequence (not vector) (not list)) t &key (:start t) (:end t)))
694   `(sb!sequence:fill seq item
695                      :start start
696                      :end (%check-generic-sequence-bounds seq start end)))
697 \f
698 ;;;; hairy sequence transforms
699
700 ;;; FIXME: no hairy sequence transforms in SBCL?
701 ;;;
702 ;;; There used to be a bunch of commented out code about here,
703 ;;; containing the (apparent) beginning of hairy sequence transform
704 ;;; infrastructure. People interested in implementing better sequence
705 ;;; transforms might want to look at it for inspiration, even though
706 ;;; the actual code is ancient CMUCL -- and hence bitrotted. The code
707 ;;; was deleted in 1.0.7.23.
708 \f
709 ;;;; string operations
710
711 ;;; We transform the case-sensitive string predicates into a non-keyword
712 ;;; version. This is an IR1 transform so that we don't have to worry about
713 ;;; changing the order of evaluation.
714 (macrolet ((def (fun pred*)
715              `(deftransform ,fun ((string1 string2 &key (start1 0) end1
716                                                          (start2 0) end2)
717                                    * *)
718                 `(,',pred* string1 string2 start1 end1 start2 end2))))
719   (def string< string<*)
720   (def string> string>*)
721   (def string<= string<=*)
722   (def string>= string>=*)
723   (def string= string=*)
724   (def string/= string/=*))
725
726 ;;; Return a form that tests the free variables STRING1 and STRING2
727 ;;; for the ordering relationship specified by LESSP and EQUALP. The
728 ;;; start and end are also gotten from the environment. Both strings
729 ;;; must be SIMPLE-BASE-STRINGs.
730 (macrolet ((def (name lessp equalp)
731              `(deftransform ,name ((string1 string2 start1 end1 start2 end2)
732                                    (simple-base-string simple-base-string t t t t) *)
733                 `(let* ((end1 (if (not end1) (length string1) end1))
734                         (end2 (if (not end2) (length string2) end2))
735                         (index (sb!impl::%sp-string-compare
736                                 string1 start1 end1 string2 start2 end2)))
737                   (if index
738                       (cond ((= index end1)
739                              ,(if ',lessp 'index nil))
740                             ((= (+ index (- start2 start1)) end2)
741                              ,(if ',lessp nil 'index))
742                             ((,(if ',lessp 'char< 'char>)
743                                (schar string1 index)
744                                (schar string2
745                                       (truly-the index
746                                                  (+ index
747                                                     (truly-the fixnum
748                                                                (- start2
749                                                                   start1))))))
750                              index)
751                             (t nil))
752                       ,(if ',equalp 'end1 nil))))))
753   (def string<* t nil)
754   (def string<=* t t)
755   (def string>* nil nil)
756   (def string>=* nil t))
757
758 (macrolet ((def (name result-fun)
759              `(deftransform ,name ((string1 string2 start1 end1 start2 end2)
760                                    (simple-base-string simple-base-string t t t t) *)
761                 `(,',result-fun
762                   (sb!impl::%sp-string-compare
763                    string1 start1 (or end1 (length string1))
764                    string2 start2 (or end2 (length string2)))))))
765   (def string=* not)
766   (def string/=* identity))
767
768 \f
769 ;;;; transforms for sequence functions
770
771 ;;; Moved here from generic/vm-tran.lisp to satisfy clisp.  Only applies
772 ;;; to vectors based on simple arrays.
773 (def!constant vector-data-bit-offset
774   (* sb!vm:vector-data-offset sb!vm:n-word-bits))
775
776 ;;; FIXME: In the copy loops below, we code the loops in a strange
777 ;;; fashion:
778 ;;;
779 ;;; (do ((i (+ src-offset length) (1- i)))
780 ;;;     ((<= i 0) ...)
781 ;;;   (... (aref foo (1- i)) ...))
782 ;;;
783 ;;; rather than the more natural (and seemingly more efficient):
784 ;;;
785 ;;; (do ((i (1- (+ src-offset length)) (1- i)))
786 ;;;     ((< i 0) ...)
787 ;;;   (... (aref foo i) ...))
788 ;;;
789 ;;; (more efficient because we don't have to do the index adjusting on
790 ;;; every iteration of the loop)
791 ;;;
792 ;;; We do this to avoid a suboptimality in SBCL's backend.  In the
793 ;;; latter case, the backend thinks I is a FIXNUM (which it is), but
794 ;;; when used as an array index, the backend thinks I is a
795 ;;; POSITIVE-FIXNUM (which it is).  However, since the backend thinks of
796 ;;; these as distinct storage classes, it cannot coerce a move from a
797 ;;; FIXNUM TN to a POSITIVE-FIXNUM TN.  The practical effect of this
798 ;;; deficiency is that we have two extra moves and increased register
799 ;;; pressure, which can lead to some spectacularly bad register
800 ;;; allocation.  (sub-FIXME: the register allocation even with the
801 ;;; strangely written loops is not always excellent, either...).  Doing
802 ;;; it the first way, above, means that I is always thought of as a
803 ;;; POSITIVE-FIXNUM and there are no issues.
804 ;;;
805 ;;; Besides, the *-WITH-OFFSET machinery will fold those index
806 ;;; adjustments in the first version into the array addressing at no
807 ;;; performance penalty!
808
809 ;;; This transform is critical to the performance of string streams.  If
810 ;;; you tweak it, make sure that you compare the disassembly, if not the
811 ;;; performance of, the functions implementing string streams
812 ;;; (e.g. SB!IMPL::STRING-OUCH).
813 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
814   (defun make-replace-transform (saetp sequence-type1 sequence-type2)
815     `(deftransform replace ((seq1 seq2 &key (start1 0) (start2 0) end1 end2)
816                             (,sequence-type1 ,sequence-type2 &rest t)
817                             ,sequence-type1
818                             :node node)
819        `(let* ((len1 (length seq1))
820                (len2 (length seq2))
821                (end1 (or end1 len1))
822                (end2 (or end2 len2))
823                (replace-len (min (- end1 start1) (- end2 start2))))
824           ,(unless (policy node (= insert-array-bounds-checks 0))
825              `(progn
826                 (unless (<= 0 start1 end1 len1)
827                   (sequence-bounding-indices-bad-error seq1 start1 end1))
828                 (unless (<= 0 start2 end2 len2)
829                   (sequence-bounding-indices-bad-error seq2 start2 end2))))
830           ,',(cond
831                ((and saetp (sb!vm:valid-bit-bash-saetp-p saetp))
832                 (let* ((n-element-bits (sb!vm:saetp-n-bits saetp))
833                        (bash-function (intern (format nil "UB~D-BASH-COPY"
834                                                       n-element-bits)
835                                               (find-package "SB!KERNEL"))))
836                   `(funcall (function ,bash-function) seq2 start2
837                     seq1 start1 replace-len)))
838                (t
839                 `(if (and
840                       ;; If the sequence types are different, SEQ1 and
841                       ;; SEQ2 must be distinct arrays.
842                       ,(eql sequence-type1 sequence-type2)
843                       (eq seq1 seq2) (> start1 start2))
844                      (do ((i (truly-the index (+ start1 replace-len -1))
845                              (1- i))
846                           (j (truly-the index (+ start2 replace-len -1))
847                              (1- j)))
848                          ((< i start1))
849                        (declare (optimize (insert-array-bounds-checks 0)))
850                        (setf (aref seq1 i) (aref seq2 j)))
851                      (do ((i start1 (1+ i))
852                           (j start2 (1+ j))
853                           (end (+ start1 replace-len)))
854                          ((>= i end))
855                        (declare (optimize (insert-array-bounds-checks 0)))
856                        (setf (aref seq1 i) (aref seq2 j))))))
857           seq1))))
858
859 (macrolet
860     ((define-replace-transforms ()
861        (loop for saetp across sb!vm:*specialized-array-element-type-properties*
862              for sequence-type = `(simple-array ,(sb!vm:saetp-specifier saetp) (*))
863              unless (= (sb!vm:saetp-typecode saetp) sb!vm::simple-array-nil-widetag)
864              collect (make-replace-transform saetp sequence-type sequence-type)
865              into forms
866              finally (return `(progn ,@forms))))
867      (define-one-transform (sequence-type1 sequence-type2)
868        (make-replace-transform nil sequence-type1 sequence-type2)))
869   (define-replace-transforms)
870   #!+sb-unicode
871   (progn
872    (define-one-transform (simple-array base-char (*)) (simple-array character (*)))
873    (define-one-transform (simple-array character (*)) (simple-array base-char (*)))))
874
875 ;;; Expand simple cases of UB<SIZE>-BASH-COPY inline.  "simple" is
876 ;;; defined as those cases where we are doing word-aligned copies from
877 ;;; both the source and the destination and we are copying from the same
878 ;;; offset from both the source and the destination.  (The last
879 ;;; condition is there so we can determine the direction to copy at
880 ;;; compile time rather than runtime.  Remember that UB<SIZE>-BASH-COPY
881 ;;; acts like memmove, not memcpy.)  These conditions may seem rather
882 ;;; restrictive, but they do catch common cases, like allocating a (* 2
883 ;;; N)-size buffer and blitting in the old N-size buffer in.
884
885 (defun frob-bash-transform (src src-offset
886                             dst dst-offset
887                             length n-elems-per-word)
888   (declare (ignore src dst length))
889   (let ((n-bits-per-elem (truncate sb!vm:n-word-bits n-elems-per-word)))
890     (multiple-value-bind (src-word src-elt)
891         (truncate (lvar-value src-offset) n-elems-per-word)
892       (multiple-value-bind (dst-word dst-elt)
893           (truncate (lvar-value dst-offset) n-elems-per-word)
894         ;; Avoid non-word aligned copies.
895         (unless (and (zerop src-elt) (zerop dst-elt))
896           (give-up-ir1-transform))
897         ;; Avoid copies where we would have to insert code for
898         ;; determining the direction of copying.
899         (unless (= src-word dst-word)
900           (give-up-ir1-transform))
901         ;; FIXME: The cross-compiler doesn't optimize TRUNCATE properly,
902         ;; so we have to do its work here.
903         `(let ((end (+ ,src-word ,(if (= n-elems-per-word 1)
904                                       'length
905                                       `(truncate (the index length) ,n-elems-per-word)))))
906            (declare (type index end))
907            ;; Handle any bits at the end.
908            (when (logtest length (1- ,n-elems-per-word))
909              (let* ((extra (mod length ,n-elems-per-word))
910                     ;; FIXME: The shift amount on this ASH is
911                     ;; *always* negative, but the backend doesn't
912                     ;; have a NEGATIVE-FIXNUM primitive type, so we
913                     ;; wind up with a pile of code that tests the
914                     ;; sign of the shift count prior to shifting when
915                     ;; all we need is a simple negate and shift
916                     ;; right.  Yuck.
917                     (mask (ash #.(1- (ash 1 sb!vm:n-word-bits))
918                                (* (- extra ,n-elems-per-word)
919                                   ,n-bits-per-elem))))
920                (setf (sb!kernel:%vector-raw-bits dst end)
921                      (logior
922                       (logandc2 (sb!kernel:%vector-raw-bits dst end)
923                                 (ash mask
924                                      ,(ecase sb!c:*backend-byte-order*
925                                              (:little-endian 0)
926                                              (:big-endian `(* (- ,n-elems-per-word extra)
927                                                               ,n-bits-per-elem)))))
928                       (logand (sb!kernel:%vector-raw-bits src end)
929                               (ash mask
930                                    ,(ecase sb!c:*backend-byte-order*
931                                            (:little-endian 0)
932                                            (:big-endian `(* (- ,n-elems-per-word extra)
933                                                             ,n-bits-per-elem)))))))))
934            ;; Copy from the end to save a register.
935            (do ((i end (1- i)))
936                ((<= i ,src-word))
937              (setf (sb!kernel:%vector-raw-bits dst (1- i))
938                    (sb!kernel:%vector-raw-bits src (1- i))))
939            (values))))))
940
941 #.(loop for i = 1 then (* i 2)
942         collect `(deftransform ,(intern (format nil "UB~D-BASH-COPY" i)
943                                         "SB!KERNEL")
944                                                         ((src src-offset
945                                                           dst dst-offset
946                                                           length)
947                                                         ((simple-unboxed-array (*))
948                                                          (constant-arg index)
949                                                          (simple-unboxed-array (*))
950                                                          (constant-arg index)
951                                                          index)
952                                                         *)
953                   (frob-bash-transform src src-offset
954                                        dst dst-offset length
955                                        ,(truncate sb!vm:n-word-bits i))) into forms
956         until (= i sb!vm:n-word-bits)
957         finally (return `(progn ,@forms)))
958
959 ;;; We expand copy loops inline in SUBSEQ and COPY-SEQ if we're copying
960 ;;; arrays with elements of size >= the word size.  We do this because
961 ;;; we know the arrays cannot alias (one was just consed), therefore we
962 ;;; can determine at compile time the direction to copy, and for
963 ;;; word-sized elements, UB<WORD-SIZE>-BASH-COPY will do a bit of
964 ;;; needless checking to figure out what's going on.  The same
965 ;;; considerations apply if we are copying elements larger than the word
966 ;;; size, with the additional twist that doing it inline is likely to
967 ;;; cons far less than calling REPLACE and letting generic code do the
968 ;;; work.
969 ;;;
970 ;;; However, we do not do this for elements whose size is < than the
971 ;;; word size because we don't want to deal with any alignment issues
972 ;;; inline.  The UB*-BASH-COPY transforms might fix things up later
973 ;;; anyway.
974
975 (defun maybe-expand-copy-loop-inline (src src-offset dst dst-offset length
976                                       element-type)
977   (let ((saetp (find-saetp element-type)))
978     (aver saetp)
979     (if (>= (sb!vm:saetp-n-bits saetp) sb!vm:n-word-bits)
980         (expand-aref-copy-loop src src-offset dst dst-offset length)
981         `(locally (declare (optimize (safety 0)))
982            (replace ,dst ,src :start1 ,dst-offset :start2 ,src-offset :end1 ,length)))))
983
984 (defun expand-aref-copy-loop (src src-offset dst dst-offset length)
985   (if (eql src-offset dst-offset)
986       `(do ((i (+ ,src-offset ,length) (1- i)))
987            ((<= i ,src-offset))
988          (declare (optimize (insert-array-bounds-checks 0)))
989          (setf (aref ,dst (1- i)) (aref ,src (1- i))))
990       ;; KLUDGE: The compiler is not able to derive that (+ offset
991       ;; length) must be a fixnum, but arrives at (unsigned-byte 29).
992       ;; We, however, know it must be so, as by this point the bounds
993       ;; have already been checked.
994       `(do ((i (truly-the fixnum (+ ,src-offset ,length)) (1- i))
995             (j (+ ,dst-offset ,length) (1- j)))
996            ((<= i ,src-offset))
997          (declare (optimize (insert-array-bounds-checks 0))
998                   (type (integer 0 #.sb!xc:array-dimension-limit) j i))
999          (setf (aref ,dst (1- j)) (aref ,src (1- i))))))
1000
1001 ;;; SUBSEQ, COPY-SEQ
1002
1003 (deftransform subseq ((seq start &optional end)
1004                       (vector t &optional t)
1005                       *
1006                       :node node)
1007   (let ((type (lvar-type seq)))
1008     (cond
1009       ((and (array-type-p type)
1010             (csubtypep type (specifier-type '(or (simple-unboxed-array (*)) simple-vector)))
1011             (policy node (> speed space)))
1012        (let ((element-type (type-specifier (array-type-specialized-element-type type))))
1013          `(let* ((length (length seq))
1014                  (end (or end length)))
1015             ,(unless (policy node (zerop insert-array-bounds-checks))
1016                      '(progn
1017                        (unless (<= 0 start end length)
1018                          (sequence-bounding-indices-bad-error seq start end))))
1019             (let* ((size (- end start))
1020                    (result (make-array size :element-type ',element-type)))
1021               ,(maybe-expand-copy-loop-inline 'seq (if (constant-lvar-p start)
1022                                                        (lvar-value start)
1023                                                        'start)
1024                                               'result 0 'size element-type)
1025               result))))
1026       (t
1027        '(vector-subseq* seq start end)))))
1028
1029 (deftransform subseq ((seq start &optional end)
1030                       (list t &optional t))
1031   `(list-subseq* seq start end))
1032
1033 (deftransform subseq ((seq start &optional end)
1034                       ((and sequence (not vector) (not list)) t &optional t))
1035   '(sb!sequence:subseq seq start end))
1036
1037 (deftransform copy-seq ((seq) (vector))
1038   (let ((type (lvar-type seq)))
1039     (cond ((and (array-type-p type)
1040                 (csubtypep type (specifier-type '(or (simple-unboxed-array (*)) simple-vector))))
1041            (let ((element-type (type-specifier (array-type-specialized-element-type type))))
1042              `(let* ((length (length seq))
1043                      (result (make-array length :element-type ',element-type)))
1044                 ,(maybe-expand-copy-loop-inline 'seq 0 'result 0 'length element-type)
1045                 result)))
1046           (t
1047            '(vector-subseq* seq 0 nil)))))
1048
1049 (deftransform copy-seq ((seq) (list))
1050   '(list-copy-seq* seq))
1051
1052 (deftransform copy-seq ((seq) ((and sequence (not vector) (not list))))
1053   '(sb!sequence:copy-seq seq))
1054
1055 ;;; FIXME: it really should be possible to take advantage of the
1056 ;;; macros used in code/seq.lisp here to avoid duplication of code,
1057 ;;; and enable even funkier transformations.
1058 (deftransform search ((pattern text &key (start1 0) (start2 0) end1 end2
1059                                (test #'eql)
1060                                (key #'identity)
1061                                from-end)
1062                       (vector vector &rest t)
1063                       *
1064                       :node node
1065                       :policy (> speed (max space safety)))
1066   "open code"
1067   (flet ((maybe (x)
1068            (when (lvar-p x)
1069              (if (constant-lvar-p x)
1070                  (when (lvar-value x)
1071                    :yes)
1072                  :maybe))))
1073     (let ((from-end (when (lvar-p from-end)
1074                      (unless (constant-lvar-p from-end)
1075                        (give-up-ir1-transform ":FROM-END is not constant."))
1076                      (lvar-value from-end)))
1077          (key? (maybe key))
1078          (test? (maybe test))
1079          (check-bounds-p (policy node (plusp insert-array-bounds-checks))))
1080      `(block search
1081         (flet ((oops (vector start end)
1082                  (sequence-bounding-indices-bad-error vector start end)))
1083           (let* ((len1 (length pattern))
1084                  (len2 (length text))
1085                  (end1 (or end1 len1))
1086                  (end2 (or end2 len2))
1087                  ,@(case key?
1088                      (:yes `((key (%coerce-callable-to-fun key))))
1089                      (:maybe `((key (when key
1090                                       (%coerce-callable-to-fun key))))))
1091                  ,@(when test?
1092                      `((test (%coerce-callable-to-fun test)))))
1093             (declare (type index start1 start2 end1 end2))
1094             ,@(when check-bounds-p
1095                 `((unless (<= start1 end1 len1)
1096                     (oops pattern start1 end1))
1097                   (unless (<= start2 end2 len2)
1098                     (oops pattern start2 end2))))
1099             (when (= end1 start1)
1100               (return-from search (if from-end
1101                                       end2
1102                                       start2)))
1103             (do (,(if from-end
1104                       '(index2 (- end2 (- end1 start1)) (1- index2))
1105                       '(index2 start2 (1+ index2))))
1106                 (,(if from-end
1107                       '(< index2 start2)
1108                       '(>= index2 end2))
1109                  nil)
1110               ;; INDEX2 is FIXNUM, not an INDEX, as right before the loop
1111               ;; terminates is hits -1 when :FROM-END is true and :START2
1112               ;; is 0.
1113               (declare (type fixnum index2))
1114               (when (do ((index1 start1 (1+ index1))
1115                          (index2 index2 (1+ index2)))
1116                         ((>= index1 end1) t)
1117                       (declare (type index index1 index2)
1118                                (optimize (insert-array-bounds-checks 0)))
1119                       ,@(unless from-end
1120                           '((when (= index2 end2)
1121                               (return-from search nil))))
1122                       (unless (,@(if test?
1123                                      `(funcall test)
1124                                      `(eql))
1125                                ,(case key?
1126                                   (:yes `(funcall key (aref pattern index1)))
1127                                   (:maybe `(let ((elt (aref pattern index1)))
1128                                              (if key
1129                                                  (funcall key elt)
1130                                                  elt)))
1131                                   (otherwise `(aref pattern index1)))
1132                                ,(case key?
1133                                   (:yes `(funcall key (aref text index2)))
1134                                   (:maybe `(let ((elt (aref text index2)))
1135                                              (if key
1136                                                  (funcall key elt)
1137                                                  elt)))
1138                                   (otherwise `(aref text index2))))
1139                         (return nil)))
1140                 (return index2)))))))))
1141
1142
1143 ;;; Open-code CONCATENATE for strings. It would be possible to extend
1144 ;;; this transform to non-strings, but I chose to just do the case that
1145 ;;; should cover 95% of CONCATENATE performance complaints for now.
1146 ;;;   -- JES, 2007-11-17
1147 ;;;
1148 ;;; Only handle the simple result type cases. If somebody does (CONCATENATE
1149 ;;; '(STRING 6) ...) their code won't be optimized, but nobody does that in
1150 ;;; practice.
1151 ;;;
1152 ;;; Limit full open coding based on length of constant sequences. Default
1153 ;;; value is chosen so that other parts of the compiler (constraint propagation
1154 ;;; mainly) won't go nonlinear too badly. It's not an exact number -- but
1155 ;;; in the right ballpark.
1156 (defvar *concatenate-open-code-limit* 129)
1157
1158 (deftransform concatenate ((result-type &rest lvars)
1159                            ((constant-arg
1160                              (member string simple-string base-string simple-base-string))
1161                             &rest sequence)
1162                            * :node node)
1163   (let ((vars (loop for x in lvars collect (gensym)))
1164         (type (lvar-value result-type)))
1165     (if (policy node (<= speed space))
1166         ;; Out-of-line
1167         `(lambda (.dummy. ,@vars)
1168            (declare (ignore .dummy.))
1169            ,(ecase type
1170               ((string simple-string)
1171                `(%concatenate-to-string ,@vars))
1172               ((base-string simple-base-string)
1173                `(%concatenate-to-base-string ,@vars))))
1174         ;; Inline
1175         (let* ((element-type (ecase type
1176                                ((string simple-string) 'character)
1177                                ((base-string simple-base-string) 'base-char)))
1178                (lvar-values (loop for lvar in lvars
1179                                   collect (when (constant-lvar-p lvar)
1180                                             (lvar-value lvar))))
1181                (lengths
1182                  (loop for value in lvar-values
1183                        for var in vars
1184                        collect (if value
1185                                    (length value)
1186                                    `(sb!impl::string-dispatch ((simple-array * (*))
1187                                                                sequence)
1188                                                               ,var
1189                                       (declare (muffle-conditions compiler-note))
1190                                       (length ,var)))))
1191                (non-constant-start
1192                  (loop for value in lvar-values
1193                        while (and (stringp value)
1194                                     (< (length value) *concatenate-open-code-limit*))
1195                        sum (length value))))
1196           `(apply
1197             (lambda ,vars
1198               (declare (ignorable ,@vars))
1199               (declare (optimize (insert-array-bounds-checks 0)))
1200               (let* ((.length. (+ ,@lengths))
1201                      (.pos. ,non-constant-start)
1202                      (.string. (make-string .length. :element-type ',element-type)))
1203                 (declare (type index .length. .pos.)
1204                          (muffle-conditions compiler-note))
1205                 ,@(loop with first-constants = t
1206                         for first = t then nil
1207                         for value in lvar-values
1208                         for var in vars
1209                         collect
1210                         (cond ((and (stringp value)
1211                                     (< (length value) *concatenate-open-code-limit*))
1212                                ;; Fold the array reads for constant arguments
1213                                `(progn
1214                                   ,@(loop for c across value
1215                                           for i from 0
1216                                           collect
1217                                           ;; Without truly-the we get massive numbers
1218                                           ;; of pointless error traps.
1219                                           `(setf (aref .string.
1220                                                        (truly-the index ,(if first-constants
1221                                                                              i
1222                                                                              `(+ .pos. ,i))))
1223                                                  ,c))
1224                                   ,(unless first-constants
1225                                      `(incf (truly-the index .pos.) ,(length value)))))
1226                               (t
1227                                (prog1
1228                                    `(sb!impl::string-dispatch
1229                                         (#!+sb-unicode
1230                                          (simple-array character (*))
1231                                          (simple-array base-char (*))
1232                                          t)
1233                                         ,var
1234                                       (replace .string. ,var
1235                                                ,@(cond ((not first-constants)
1236                                                         '(:start1 .pos.))
1237                                                        ((plusp non-constant-start)
1238                                                         `(:start1 ,non-constant-start))))
1239                                       (incf (truly-the index .pos.) (length ,var)))
1240                                  (setf first-constants nil)))))
1241                 .string.))
1242             lvars)))))
1243 \f
1244 ;;;; CONS accessor DERIVE-TYPE optimizers
1245
1246 (defoptimizer (car derive-type) ((cons))
1247   ;; This and CDR needs to use LVAR-CONSERVATIVE-TYPE because type inference
1248   ;; gets confused by things like (SETF CAR).
1249   (let ((type (lvar-conservative-type cons))
1250         (null-type (specifier-type 'null)))
1251     (cond ((eq type null-type)
1252            null-type)
1253           ((cons-type-p type)
1254            (cons-type-car-type type)))))
1255
1256 (defoptimizer (cdr derive-type) ((cons))
1257   (let ((type (lvar-conservative-type cons))
1258         (null-type (specifier-type 'null)))
1259     (cond ((eq type null-type)
1260            null-type)
1261           ((cons-type-p type)
1262            (cons-type-cdr-type type)))))
1263 \f
1264 ;;;; FIND, POSITION, and their -IF and -IF-NOT variants
1265
1266 ;;; We want to make sure that %FIND-POSITION is inline-expanded into
1267 ;;; %FIND-POSITION-IF only when %FIND-POSITION-IF has an inline
1268 ;;; expansion, so we factor out the condition into this function.
1269 (defun check-inlineability-of-find-position-if (sequence from-end)
1270   (let ((ctype (lvar-type sequence)))
1271     (cond ((csubtypep ctype (specifier-type 'vector))
1272            ;; It's not worth trying to inline vector code unless we
1273            ;; know a fair amount about it at compile time.
1274            (upgraded-element-type-specifier-or-give-up sequence)
1275            (unless (constant-lvar-p from-end)
1276              (give-up-ir1-transform
1277               "FROM-END argument value not known at compile time")))
1278           ((csubtypep ctype (specifier-type 'list))
1279            ;; Inlining on lists is generally worthwhile.
1280            )
1281           (t
1282            (give-up-ir1-transform
1283             "sequence type not known at compile time")))))
1284
1285 ;;; %FIND-POSITION-IF and %FIND-POSITION-IF-NOT for LIST data
1286 (macrolet ((def (name condition)
1287              `(deftransform ,name ((predicate sequence from-end start end key)
1288                                    (function list t t t function)
1289                                    *
1290                                    :policy (> speed space))
1291                 "expand inline"
1292                 `(let ((find nil)
1293                        (position nil))
1294                    (flet ((bounds-error ()
1295                             (sequence-bounding-indices-bad-error sequence start end)))
1296                      (if (and end (> start end))
1297                          (bounds-error)
1298                          (do ((slow sequence (cdr slow))
1299                               (fast (cdr sequence) (cddr fast))
1300                               (index 0 (+ index 1)))
1301                              ((cond ((null slow)
1302                                      (if (and end (> end index))
1303                                          (bounds-error)
1304                                          (return (values find position))))
1305                                     ((and end (>= index end))
1306                                      (return (values find position)))
1307                                     ((eq slow fast)
1308                                      (circular-list-error sequence)))
1309                               (bug "never"))
1310                            (declare (list slow fast))
1311                            (when (>= index start)
1312                              (let* ((element (car slow))
1313                                     (key-i (funcall key element)))
1314                                (,',condition (funcall predicate key-i)
1315                                              ;; This hack of dealing with non-NIL
1316                                              ;; FROM-END for list data by iterating
1317                                              ;; forward through the list and keeping
1318                                              ;; track of the last time we found a
1319                                              ;; match might be more screwy than what
1320                                              ;; the user expects, but it seems to be
1321                                              ;; allowed by the ANSI standard. (And
1322                                              ;; if the user is screwy enough to ask
1323                                              ;; for FROM-END behavior on list data,
1324                                              ;; turnabout is fair play.)
1325                                              ;;
1326                                              ;; It's also not enormously efficient,
1327                                              ;; calling PREDICATE and KEY more often
1328                                              ;; than necessary; but all the
1329                                              ;; alternatives seem to have their own
1330                                              ;; efficiency problems.
1331                                              (if from-end
1332                                                  (setf find element
1333                                                        position index)
1334                                                  (return (values element index)))))))))))))
1335   (def %find-position-if when)
1336   (def %find-position-if-not unless))
1337
1338 ;;; %FIND-POSITION for LIST data can be expanded into %FIND-POSITION-IF
1339 ;;; without loss of efficiency. (I.e., the optimizer should be able
1340 ;;; to straighten everything out.)
1341 (deftransform %find-position ((item sequence from-end start end key test)
1342                               (t list t t t t t)
1343                               *
1344                               :policy (> speed space))
1345   "expand inline"
1346   '(%find-position-if (let ((test-fun (%coerce-callable-to-fun test)))
1347                         ;; The order of arguments for asymmetric tests
1348                         ;; (e.g. #'<, as opposed to order-independent
1349                         ;; tests like #'=) is specified in the spec
1350                         ;; section 17.2.1 -- the O/Zi stuff there.
1351                         (lambda (i)
1352                           (funcall test-fun item i)))
1353                       sequence
1354                       from-end
1355                       start
1356                       end
1357                       (%coerce-callable-to-fun key)))
1358
1359 ;;; The inline expansions for the VECTOR case are saved as macros so
1360 ;;; that we can share them between the DEFTRANSFORMs and the default
1361 ;;; cases in the DEFUNs. (This isn't needed for the LIST case, because
1362 ;;; the DEFTRANSFORMs for LIST are less choosy about when to expand.)
1363 (defun %find-position-or-find-position-if-vector-expansion (sequence-arg
1364                                                             from-end
1365                                                             start
1366                                                             end-arg
1367                                                             element
1368                                                             done-p-expr)
1369   (with-unique-names (offset block index n-sequence sequence end)
1370     `(let* ((,n-sequence ,sequence-arg))
1371        (with-array-data ((,sequence ,n-sequence :offset-var ,offset)
1372                          (,start ,start)
1373                          (,end ,end-arg)
1374                          :check-fill-pointer t)
1375          (block ,block
1376            (macrolet ((maybe-return ()
1377                         ;; WITH-ARRAY-DATA has already performed bounds
1378                         ;; checking, so we can safely elide the checks
1379                         ;; in the inner loop.
1380                         '(let ((,element (locally (declare (optimize (insert-array-bounds-checks 0)))
1381                                            (aref ,sequence ,index))))
1382                           (when ,done-p-expr
1383                             (return-from ,block
1384                               (values ,element
1385                                       (- ,index ,offset)))))))
1386              (if ,from-end
1387                  (loop for ,index
1388                        ;; (If we aren't fastidious about declaring that
1389                        ;; INDEX might be -1, then (FIND 1 #() :FROM-END T)
1390                        ;; can send us off into never-never land, since
1391                        ;; INDEX is initialized to -1.)
1392                        of-type index-or-minus-1
1393                        from (1- ,end) downto ,start do
1394                        (maybe-return))
1395                  (loop for ,index of-type index from ,start below ,end do
1396                           (maybe-return))))
1397            (values nil nil))))))
1398
1399 (def!macro %find-position-vector-macro (item sequence
1400                                              from-end start end key test)
1401   (with-unique-names (element)
1402     (%find-position-or-find-position-if-vector-expansion
1403      sequence
1404      from-end
1405      start
1406      end
1407      element
1408      ;; (See the LIST transform for a discussion of the correct
1409      ;; argument order, i.e. whether the searched-for ,ITEM goes before
1410      ;; or after the checked sequence element.)
1411      `(funcall ,test ,item (funcall ,key ,element)))))
1412
1413 (def!macro %find-position-if-vector-macro (predicate sequence
1414                                                      from-end start end key)
1415   (with-unique-names (element)
1416     (%find-position-or-find-position-if-vector-expansion
1417      sequence
1418      from-end
1419      start
1420      end
1421      element
1422      `(funcall ,predicate (funcall ,key ,element)))))
1423
1424 (def!macro %find-position-if-not-vector-macro (predicate sequence
1425                                                          from-end start end key)
1426   (with-unique-names (element)
1427     (%find-position-or-find-position-if-vector-expansion
1428      sequence
1429      from-end
1430      start
1431      end
1432      element
1433      `(not (funcall ,predicate (funcall ,key ,element))))))
1434
1435 ;;; %FIND-POSITION, %FIND-POSITION-IF and %FIND-POSITION-IF-NOT for
1436 ;;; VECTOR data
1437 (deftransform %find-position-if ((predicate sequence from-end start end key)
1438                                  (function vector t t t function)
1439                                  *
1440                                  :policy (> speed space))
1441   "expand inline"
1442   (check-inlineability-of-find-position-if sequence from-end)
1443   '(%find-position-if-vector-macro predicate sequence
1444                                    from-end start end key))
1445
1446 (deftransform %find-position-if-not ((predicate sequence from-end start end key)
1447                                      (function vector t t t function)
1448                                      *
1449                                      :policy (> speed space))
1450   "expand inline"
1451   (check-inlineability-of-find-position-if sequence from-end)
1452   '(%find-position-if-not-vector-macro predicate sequence
1453                                        from-end start end key))
1454
1455 (deftransform %find-position ((item sequence from-end start end key test)
1456                               (t vector t t t function function)
1457                               *
1458                               :policy (> speed space))
1459   "expand inline"
1460   (check-inlineability-of-find-position-if sequence from-end)
1461   '(%find-position-vector-macro item sequence
1462     from-end start end key test))
1463
1464 (deftransform %find-position ((item sequence from-end start end key test)
1465                               (t bit-vector t t t t t)
1466                               * :node node)
1467   (when (and test (lvar-fun-is test '(eq eql equal)))
1468     (setf test nil))
1469   (when (and key (lvar-fun-is key '(identity)))
1470     (setf key nil))
1471   (when (or test key)
1472     (delay-ir1-transform node :optimize)
1473     (give-up-ir1-transform "non-trivial :KEY or :TEST"))
1474   (catch 'not-a-bit
1475     `(with-array-data ((bits sequence :offset-var offset)
1476                        (start start)
1477                        (end end)
1478                        :check-fill-pointer t)
1479        (let ((p ,(if (constant-lvar-p item)
1480                      (case (lvar-value item)
1481                        (0 `(%bit-position/0 bits from-end start end))
1482                        (1 `(%bit-position/1 bits from-end start end))
1483                        (otherwise (throw 'not-a-bit `(values nil nil))))
1484                      `(%bit-position item bits from-end start end))))
1485          (if p
1486              (values item (the index (- (truly-the index p) offset)))
1487              (values nil nil))))))
1488
1489 (deftransform %find-position ((item sequence from-end start end key test)
1490                               (character string t t t function function)
1491                               *
1492                               :policy (> speed space))
1493   (if (eq '* (upgraded-element-type-specifier sequence))
1494       (let ((form
1495              `(sb!impl::string-dispatch ((simple-array character (*))
1496                                          (simple-array base-char (*))
1497                                          (simple-array nil (*)))
1498                   sequence
1499                 (%find-position item sequence from-end start end key test))))
1500         (if (csubtypep (lvar-type sequence) (specifier-type 'simple-string))
1501             form
1502             ;; Otherwise we'd get three instances of WITH-ARRAY-DATA from
1503             ;; %FIND-POSITION.
1504             `(with-array-data ((sequence sequence :offset-var offset)
1505                                (start start)
1506                                (end end)
1507                                :check-fill-pointer t)
1508                (multiple-value-bind (elt index) ,form
1509                  (values elt (when (fixnump index) (- index offset)))))))
1510       ;; The type is known exactly, other transforms will take care of it.
1511       (give-up-ir1-transform)))
1512
1513 ;;; logic to unravel :TEST, :TEST-NOT, and :KEY options in FIND,
1514 ;;; POSITION-IF, etc.
1515 (define-source-transform effective-find-position-test (test test-not)
1516   (once-only ((test test)
1517               (test-not test-not))
1518     `(cond
1519       ((and ,test ,test-not)
1520        (error "can't specify both :TEST and :TEST-NOT"))
1521       (,test (%coerce-callable-to-fun ,test))
1522       (,test-not
1523        ;; (Without DYNAMIC-EXTENT, this is potentially horribly
1524        ;; inefficient, but since the TEST-NOT option is deprecated
1525        ;; anyway, we don't care.)
1526        (complement (%coerce-callable-to-fun ,test-not)))
1527       (t #'eql))))
1528 (define-source-transform effective-find-position-key (key)
1529   (once-only ((key key))
1530     `(if ,key
1531          (%coerce-callable-to-fun ,key)
1532          #'identity)))
1533
1534 (macrolet ((define-find-position (fun-name values-index)
1535              `(deftransform ,fun-name ((item sequence &key
1536                                              from-end (start 0) end
1537                                              key test test-not)
1538                                        (t (or list vector) &rest t))
1539                 '(nth-value ,values-index
1540                             (%find-position item sequence
1541                                             from-end start
1542                                             end
1543                                             (effective-find-position-key key)
1544                                             (effective-find-position-test
1545                                              test test-not))))))
1546   (define-find-position find 0)
1547   (define-find-position position 1))
1548
1549 (macrolet ((define-find-position-if (fun-name values-index)
1550              `(deftransform ,fun-name ((predicate sequence &key
1551                                                   from-end (start 0)
1552                                                   end key)
1553                                        (t (or list vector) &rest t))
1554                 '(nth-value
1555                   ,values-index
1556                   (%find-position-if (%coerce-callable-to-fun predicate)
1557                                      sequence from-end
1558                                      start end
1559                                      (effective-find-position-key key))))))
1560   (define-find-position-if find-if 0)
1561   (define-find-position-if position-if 1))
1562
1563 ;;; the deprecated functions FIND-IF-NOT and POSITION-IF-NOT. We
1564 ;;; didn't bother to worry about optimizing them, except note that on
1565 ;;; Sat, Oct 06, 2001 at 04:22:38PM +0100, Christophe Rhodes wrote on
1566 ;;; sbcl-devel
1567 ;;;
1568 ;;;     My understanding is that while the :test-not argument is
1569 ;;;     deprecated in favour of :test (complement #'foo) because of
1570 ;;;     semantic difficulties (what happens if both :test and :test-not
1571 ;;;     are supplied, etc) the -if-not variants, while officially
1572 ;;;     deprecated, would be undeprecated were X3J13 actually to produce
1573 ;;;     a revised standard, as there are perfectly legitimate idiomatic
1574 ;;;     reasons for allowing the -if-not versions equal status,
1575 ;;;     particularly remove-if-not (== filter).
1576 ;;;
1577 ;;;     This is only an informal understanding, I grant you, but
1578 ;;;     perhaps it's worth optimizing the -if-not versions in the same
1579 ;;;     way as the others?
1580 ;;;
1581 ;;; FIXME: Maybe remove uses of these deprecated functions within the
1582 ;;; implementation of SBCL.
1583 (macrolet ((define-find-position-if-not (fun-name values-index)
1584                `(deftransform ,fun-name ((predicate sequence &key
1585                                           from-end (start 0)
1586                                           end key)
1587                                          (t (or list vector) &rest t))
1588                  '(nth-value
1589                    ,values-index
1590                    (%find-position-if-not (%coerce-callable-to-fun predicate)
1591                     sequence from-end
1592                     start end
1593                     (effective-find-position-key key))))))
1594   (define-find-position-if-not find-if-not 0)
1595   (define-find-position-if-not position-if-not 1))
1596
1597 (macrolet ((define-trimmer-transform (fun-name leftp rightp)
1598              `(deftransform ,fun-name ((char-bag string)
1599                                        (t simple-string))
1600                 (let ((find-expr
1601                        (if (constant-lvar-p char-bag)
1602                            ;; If the bag is constant, use MEMBER
1603                            ;; instead of FIND, since we have a
1604                            ;; deftransform for MEMBER that can
1605                            ;; open-code all of the comparisons when
1606                            ;; the list is constant. -- JES, 2007-12-10
1607                            `(not (member (schar string index)
1608                                          ',(coerce (lvar-value char-bag) 'list)
1609                                          :test #'char=))
1610                            '(not (find (schar string index) char-bag :test #'char=)))))
1611                   `(flet ((char-not-in-bag (index)
1612                             ,find-expr))
1613                      (let* ((end (length string))
1614                             (left-end (if ,',leftp
1615                                           (do ((index 0 (1+ index)))
1616                                               ((or (= index (the fixnum end))
1617                                                    (char-not-in-bag index))
1618                                                index)
1619                                             (declare (fixnum index)))
1620                                           0))
1621                             (right-end (if ,',rightp
1622                                            (do ((index (1- end) (1- index)))
1623                                                ((or (< index left-end)
1624                                                     (char-not-in-bag index))
1625                                                 (1+ index))
1626                                              (declare (fixnum index)))
1627                                            end)))
1628                        (if (and (eql left-end 0)
1629                                 (eql right-end (length string)))
1630                            string
1631                            (subseq string left-end right-end))))))))
1632   (define-trimmer-transform string-left-trim t nil)
1633   (define-trimmer-transform string-right-trim nil t)
1634   (define-trimmer-transform string-trim t t))
1635
1636 \f
1637 ;;; (partially) constant-fold backq-* functions, or convert to their
1638 ;;; plain CL equivalent (now that they're not needed for pprinting).
1639
1640 ;; Pop constant values from the end, list/list* them if any, and link
1641 ;; the remainder with list* at runtime.
1642 (defun transform-backq-list-or-list* (function values)
1643   (let ((gensyms (make-gensym-list (length values)))
1644         (reverse (reverse values))
1645         (constants '()))
1646     (loop while (and reverse
1647                      (constant-lvar-p (car reverse)))
1648           do (push (lvar-value (pop reverse))
1649                    constants))
1650     (if (null constants)
1651         `(lambda ,gensyms
1652            (,function ,@gensyms))
1653         (let ((tail (apply function constants)))
1654           (if (null reverse)
1655               `',tail
1656               (let* ((nvariants (length reverse))
1657                      (variants (subseq gensyms 0 nvariants)))
1658                 `(lambda ,gensyms
1659                    (declare (ignore ,@(subseq gensyms nvariants)))
1660                    ,(if tail
1661                         `(list* ,@variants ',tail)
1662                         `(list ,@variants)))))))))
1663
1664 (deftransform sb!impl::backq-list ((&rest elts))
1665   (transform-backq-list-or-list* 'list elts))
1666
1667 (deftransform sb!impl::backq-list* ((&rest elts))
1668   (transform-backq-list-or-list* 'list* elts))
1669
1670 ;; Merge adjacent constant values
1671 (deftransform sb!impl::backq-append ((&rest elts))
1672   (let ((gensyms (make-gensym-list (length elts)))
1673         (acc nil)
1674         (ignored '())
1675         (arguments '()))
1676     (flet ((convert-accumulator ()
1677              (let ((constant (apply 'append (nreverse (shiftf acc nil)))))
1678                (when constant
1679                  (push `',constant arguments)))))
1680       (loop for gensym in gensyms
1681             for (elt . next) on elts by #'cdr
1682             do (cond ((constant-lvar-p elt)
1683                       (let ((elt (lvar-value elt)))
1684                         (when (and next (not (proper-list-p elt)))
1685                           (abort-ir1-transform
1686                            "Non-list or improper list spliced in ~
1687                             the middle of a backquoted list."))
1688                         (push gensym ignored)
1689                         (push elt acc)))
1690                      (t
1691                       (convert-accumulator)
1692                       (push gensym arguments)))
1693             finally (convert-accumulator)))
1694     (let ((arguments (nreverse arguments)))
1695       `(lambda ,gensyms
1696          (declare (ignore ,@ignored))
1697          (append ,@arguments)))))
1698
1699 ;; Nothing special for nconc
1700 (define-source-transform sb!impl::backq-nconc (&rest elts)
1701   `(nconc ,@elts))
1702
1703 ;; cons and vector are handled with regular constant folding...
1704 ;; but we still want to convert backq-cons into cl:cons.
1705 (deftransform sb!impl::backq-cons ((x y))
1706   `(cons x y))