0.8.7.13:
[sbcl.git] / src / compiler / ir1util.lisp
1 ;;;; This file contains miscellaneous utilities used for manipulating
2 ;;;; the IR1 representation.
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!C")
14 \f
15 ;;;; cleanup hackery
16
17 ;;; Return the innermost cleanup enclosing NODE, or NIL if there is
18 ;;; none in its function. If NODE has no cleanup, but is in a LET,
19 ;;; then we must still check the environment that the call is in.
20 (defun node-enclosing-cleanup (node)
21   (declare (type node node))
22   (do ((lexenv (node-lexenv node)
23                (lambda-call-lexenv (lexenv-lambda lexenv))))
24       ((null lexenv) nil)
25     (let ((cup (lexenv-cleanup lexenv)))
26       (when cup (return cup)))))
27
28 ;;; Convert the FORM in a block inserted between BLOCK1 and BLOCK2 as
29 ;;; an implicit MV-PROG1. The inserted block is returned. NODE is used
30 ;;; for IR1 context when converting the form. Note that the block is
31 ;;; not assigned a number, and is linked into the DFO at the
32 ;;; beginning. We indicate that we have trashed the DFO by setting
33 ;;; COMPONENT-REANALYZE. If CLEANUP is supplied, then convert with
34 ;;; that cleanup.
35 (defun insert-cleanup-code (block1 block2 node form &optional cleanup)
36   (declare (type cblock block1 block2) (type node node)
37            (type (or cleanup null) cleanup))
38   (setf (component-reanalyze (block-component block1)) t)
39   (with-ir1-environment-from-node node
40     (with-component-last-block (*current-component*
41                                 (block-next (component-head *current-component*)))
42       (let* ((start (make-ctran))
43              (block (ctran-starts-block start))
44              (next (make-ctran))
45              (*lexenv* (if cleanup
46                            (make-lexenv :cleanup cleanup)
47                            *lexenv*)))
48         (change-block-successor block1 block2 block)
49         (link-blocks block block2)
50         (ir1-convert start next nil form)
51         (setf (block-last block) (ctran-use next))
52         (setf (node-next (block-last block)) nil)
53         block))))
54 \f
55 ;;;; lvar use hacking
56
57 ;;; Return a list of all the nodes which use LVAR.
58 (declaim (ftype (sfunction (lvar) list) find-uses))
59 (defun find-uses (lvar)
60   (let ((uses (lvar-uses lvar)))
61     (if (listp uses)
62         uses
63         (list uses))))
64
65 (defun principal-lvar-use (lvar)
66   (let ((use (lvar-uses lvar)))
67     (if (cast-p use)
68         (principal-lvar-use (cast-value use))
69         use)))
70
71 ;;; Update lvar use information so that NODE is no longer a use of its
72 ;;; LVAR.
73 ;;;
74 ;;; Note: if you call this function, you may have to do a
75 ;;; REOPTIMIZE-LVAR to inform IR1 optimization that something has
76 ;;; changed.
77 (declaim (ftype (sfunction (node) (values))
78                 delete-lvar-use
79                 %delete-lvar-use))
80 ;;; Just delete NODE from its LVAR uses; LVAR is preserved so it may
81 ;;; be given a new use.
82 (defun %delete-lvar-use (node)
83   (let ((lvar (node-lvar node)))
84     (when lvar
85       (if (listp (lvar-uses lvar))
86           (let ((new-uses (delq node (lvar-uses lvar))))
87             (setf (lvar-uses lvar)
88                   (if (singleton-p new-uses)
89                       (first new-uses)
90                       new-uses)))
91           (setf (lvar-uses lvar) nil))
92       (setf (node-lvar node) nil)))
93   (values))
94 ;;; Delete NODE from its LVAR uses; if LVAR has no other uses, delete
95 ;;; its DEST's block, which must be unreachable.
96 (defun delete-lvar-use (node)
97   (let ((lvar (node-lvar node)))
98     (when lvar
99       (%delete-lvar-use node)
100       (if (null (lvar-uses lvar))
101           (binding* ((dest (lvar-dest lvar) :exit-if-null)
102                      (() (not (node-deleted dest)) :exit-if-null)
103                      (block (node-block dest)))
104             (mark-for-deletion block))
105           (reoptimize-lvar lvar))))
106   (values))
107
108 ;;; Update lvar use information so that NODE uses LVAR.
109 ;;;
110 ;;; Note: if you call this function, you may have to do a
111 ;;; REOPTIMIZE-LVAR to inform IR1 optimization that something has
112 ;;; changed.
113 (declaim (ftype (sfunction (node (or lvar null)) (values)) add-lvar-use))
114 (defun add-lvar-use (node lvar)
115   (aver (not (node-lvar node)))
116   (when lvar
117     (let ((uses (lvar-uses lvar)))
118       (setf (lvar-uses lvar)
119             (cond ((null uses)
120                    node)
121                   ((listp uses)
122                    (cons node uses))
123                   (t
124                    (list node uses))))
125       (setf (node-lvar node) lvar)))
126
127   (values))
128
129 ;;; Return true if LVAR destination is executed immediately after
130 ;;; NODE. Cleanups are ignored.
131 (defun immediately-used-p (lvar node)
132   (declare (type lvar lvar) (type node node))
133   (aver (eq (node-lvar node) lvar))
134   (let ((dest (lvar-dest lvar)))
135     (acond ((node-next node)
136             (eq (ctran-next it) dest))
137            (t (eq (block-start (first (block-succ (node-block node))))
138                   (node-prev dest))))))
139 \f
140 ;;;; lvar substitution
141
142 ;;; In OLD's DEST, replace OLD with NEW. NEW's DEST must initially be
143 ;;; NIL. We do not flush OLD's DEST.
144 (defun substitute-lvar (new old)
145   (declare (type lvar old new))
146   (aver (not (lvar-dest new)))
147   (let ((dest (lvar-dest old)))
148     (etypecase dest
149       ((or ref bind))
150       (cif (setf (if-test dest) new))
151       (cset (setf (set-value dest) new))
152       (creturn (setf (return-result dest) new))
153       (exit (setf (exit-value dest) new))
154       (basic-combination
155        (if (eq old (basic-combination-fun dest))
156            (setf (basic-combination-fun dest) new)
157            (setf (basic-combination-args dest)
158                  (nsubst new old (basic-combination-args dest)))))
159       (cast (setf (cast-value dest) new)))
160
161     (setf (lvar-dest old) nil)
162     (setf (lvar-dest new) dest)
163     (flush-lvar-externally-checkable-type new))
164   (values))
165
166 ;;; Replace all uses of OLD with uses of NEW, where NEW has an
167 ;;; arbitary number of uses.
168 (defun substitute-lvar-uses (new old)
169   (declare (type lvar old)
170            (type (or lvar null) new))
171
172   (cond (new (do-uses (node old)
173                (%delete-lvar-use node)
174                (add-lvar-use node new))
175              (reoptimize-lvar new))
176         (t (flush-dest old)))
177   (values))
178 \f
179 ;;;; block starting/creation
180
181 ;;; Return the block that CTRAN is the start of, making a block if
182 ;;; necessary. This function is called by IR1 translators which may
183 ;;; cause a CTRAN to be used more than once. Every CTRAN which may be
184 ;;; used more than once must start a block by the time that anyone
185 ;;; does a USE-CTRAN on it.
186 ;;;
187 ;;; We also throw the block into the next/prev list for the
188 ;;; *CURRENT-COMPONENT* so that we keep track of which blocks we have
189 ;;; made.
190 (defun ctran-starts-block (ctran)
191   (declare (type ctran ctran))
192   (ecase (ctran-kind ctran)
193     (:unused
194      (aver (not (ctran-block ctran)))
195      (let* ((next (component-last-block *current-component*))
196             (prev (block-prev next))
197             (new-block (make-block ctran)))
198        (setf (block-next new-block) next
199              (block-prev new-block) prev
200              (block-prev next) new-block
201              (block-next prev) new-block
202              (ctran-block ctran) new-block
203              (ctran-kind ctran) :block-start)
204        (aver (not (ctran-use ctran)))
205        new-block))
206     (:block-start
207      (ctran-block ctran))))
208
209 ;;; Ensure that CTRAN is the start of a block so that the use set can
210 ;;; be freely manipulated.
211 (defun ensure-block-start (ctran)
212   (declare (type ctran ctran))
213   (let ((kind (ctran-kind ctran)))
214     (ecase kind
215       ((:block-start))
216       ((:unused)
217        (setf (ctran-block ctran)
218              (make-block-key :start ctran))
219        (setf (ctran-kind ctran) :block-start))
220       ((:inside-block)
221        (node-ends-block (ctran-use ctran)))))
222   (values))
223
224 ;;; CTRAN must be the last ctran in an incomplete block; finish the
225 ;;; block and start a new one if necessary.
226 (defun start-block (ctran)
227   (declare (type ctran ctran))
228   (aver (not (ctran-next ctran)))
229   (ecase (ctran-kind ctran)
230     (:inside-block
231      (let ((block (ctran-block ctran))
232            (node (ctran-use ctran)))
233        (aver (not (block-last block)))
234        (aver node)
235        (setf (block-last block) node)
236        (setf (node-next node) nil)
237        (setf (ctran-use ctran) nil)
238        (setf (ctran-kind ctran) :unused)
239        (setf (ctran-block ctran) nil)
240        (link-blocks block (ctran-starts-block ctran))))
241     (:block-start)))
242 \f
243 ;;;;
244
245 ;;; Filter values of LVAR through FORM, which must be an ordinary/mv
246 ;;; call. First argument must be 'DUMMY, which will be replaced with
247 ;;; LVAR. In case of an ordinary call the function should not have
248 ;;; return type NIL. We create a new "filtered" lvar.
249 ;;;
250 ;;; TODO: remove preconditions.
251 (defun filter-lvar (lvar form)
252   (declare (type lvar lvar) (type list form))
253   (let* ((dest (lvar-dest lvar))
254          (ctran (node-prev dest)))
255     (with-ir1-environment-from-node dest
256
257       (ensure-block-start ctran)
258       (let* ((old-block (ctran-block ctran))
259              (new-start (make-ctran))
260              (filtered-lvar (make-lvar))
261              (new-block (ctran-starts-block new-start)))
262
263         ;; Splice in the new block before DEST, giving the new block
264         ;; all of DEST's predecessors.
265         (dolist (block (block-pred old-block))
266           (change-block-successor block old-block new-block))
267
268         (ir1-convert new-start ctran filtered-lvar form)
269
270         ;; KLUDGE: Comments at the head of this function in CMU CL
271         ;; said that somewhere in here we
272         ;;   Set the new block's start and end cleanups to the *start*
273         ;;   cleanup of PREV's block. This overrides the incorrect
274         ;;   default from WITH-IR1-ENVIRONMENT-FROM-NODE.
275         ;; Unfortunately I can't find any code which corresponds to this.
276         ;; Perhaps it was a stale comment? Or perhaps I just don't
277         ;; understand.. -- WHN 19990521
278
279         ;; Replace 'DUMMY with the LVAR. (We can find 'DUMMY because
280         ;; no LET conversion has been done yet.) The [mv-]combination
281         ;; code from the call in the form will be the use of the new
282         ;; check lvar. We substitute for the first argument of
283         ;; this node.
284         (let* ((node (lvar-use filtered-lvar))
285                (args (basic-combination-args node))
286                (victim (first args)))
287           (aver (eq (constant-value (ref-leaf (lvar-use victim)))
288                     'dummy))
289
290           (substitute-lvar filtered-lvar lvar)
291           (substitute-lvar lvar victim)
292           (flush-dest victim))
293
294         ;; Invoking local call analysis converts this call to a LET.
295         (locall-analyze-component *current-component*))))
296   (values))
297
298 ;;; Delete NODE and VALUE. It may result in some calls becoming tail.
299 (defun delete-filter (node lvar value)
300   (aver (eq (lvar-dest value) node))
301   (aver (eq (node-lvar node) lvar))
302   (cond (lvar (collect ((merges))
303                 (when (return-p (lvar-dest lvar))
304                   (do-uses (use value)
305                     (when (and (basic-combination-p use)
306                                (eq (basic-combination-kind use) :local))
307                       (merges use))))
308                 (%delete-lvar-use node)
309                 (substitute-lvar-uses lvar value)
310                 (prog1
311                     (unlink-node node)
312                   (dolist (merge (merges))
313                     (merge-tail-sets merge)))))
314         (t (flush-dest value)
315            (unlink-node node))))
316 \f
317 ;;;; miscellaneous shorthand functions
318
319 ;;; Return the home (i.e. enclosing non-LET) CLAMBDA for NODE. Since
320 ;;; the LEXENV-LAMBDA may be deleted, we must chain up the
321 ;;; LAMBDA-CALL-LEXENV thread until we find a CLAMBDA that isn't
322 ;;; deleted, and then return its home.
323 (defun node-home-lambda (node)
324   (declare (type node node))
325   (do ((fun (lexenv-lambda (node-lexenv node))
326             (lexenv-lambda (lambda-call-lexenv fun))))
327       ((not (memq (functional-kind fun) '(:deleted :zombie)))
328        (lambda-home fun))
329     (when (eq (lambda-home fun) fun)
330       (return fun))))
331
332 #!-sb-fluid (declaim (inline node-block))
333 (defun node-block (node)
334   (ctran-block (node-prev node)))
335 (declaim (ftype (sfunction (node) component) node-component))
336 (defun node-component (node)
337   (block-component (node-block node)))
338 (declaim (ftype (sfunction (node) physenv) node-physenv))
339 (defun node-physenv (node)
340   (lambda-physenv (node-home-lambda node)))
341 #!-sb-fluid (declaim (inline node-dest))
342 (defun node-dest (node)
343   (awhen (node-lvar node) (lvar-dest it)))
344
345 (declaim (inline block-to-be-deleted-p))
346 (defun block-to-be-deleted-p (block)
347   (or (block-delete-p block)
348       (eq (functional-kind (block-home-lambda block)) :deleted)))
349
350 ;;; Checks whether NODE is in a block to be deleted
351 (declaim (inline node-to-be-deleted-p))
352 (defun node-to-be-deleted-p (node)
353   (block-to-be-deleted-p (node-block node)))
354
355 (declaim (ftype (sfunction (clambda) cblock) lambda-block))
356 (defun lambda-block (clambda)
357   (node-block (lambda-bind clambda)))
358 (declaim (ftype (sfunction (clambda) component) lambda-component))
359 (defun lambda-component (clambda)
360   (block-component (lambda-block clambda)))
361
362 (declaim (ftype (sfunction (cblock) node) block-start-node))
363 (defun block-start-node (block)
364   (ctran-next (block-start block)))
365
366 ;;; Return the enclosing cleanup for environment of the first or last
367 ;;; node in BLOCK.
368 (defun block-start-cleanup (block)
369   (node-enclosing-cleanup (block-start-node block)))
370 (defun block-end-cleanup (block)
371   (node-enclosing-cleanup (block-last block)))
372
373 ;;; Return the non-LET LAMBDA that holds BLOCK's code, or NIL
374 ;;; if there is none.
375 ;;;
376 ;;; There can legitimately be no home lambda in dead code early in the
377 ;;; IR1 conversion process, e.g. when IR1-converting the SETQ form in
378 ;;;   (BLOCK B (RETURN-FROM B) (SETQ X 3))
379 ;;; where the block is just a placeholder during parsing and doesn't
380 ;;; actually correspond to code which will be written anywhere.
381 (declaim (ftype (sfunction (cblock) (or clambda null)) block-home-lambda-or-null))
382 (defun block-home-lambda-or-null (block)
383   (if (node-p (block-last block))
384       ;; This is the old CMU CL way of doing it.
385       (node-home-lambda (block-last block))
386       ;; Now that SBCL uses this operation more aggressively than CMU
387       ;; CL did, the old CMU CL way of doing it can fail in two ways.
388       ;;   1. It can fail in a few cases even when a meaningful home
389       ;;      lambda exists, e.g. in IR1-CONVERT of one of the legs of
390       ;;      an IF.
391       ;;   2. It can fail when converting a form which is born orphaned 
392       ;;      so that it never had a meaningful home lambda, e.g. a form
393       ;;      which follows a RETURN-FROM or GO form.
394       (let ((pred-list (block-pred block)))
395         ;; To deal with case 1, we reason that
396         ;; previous-in-target-execution-order blocks should be in the
397         ;; same lambda, and that they seem in practice to be
398         ;; previous-in-compilation-order blocks too, so we look back
399         ;; to find one which is sufficiently initialized to tell us
400         ;; what the home lambda is.
401         (if pred-list
402             ;; We could get fancy about this, flooding through the
403             ;; graph of all the previous blocks, but in practice it
404             ;; seems to work just to grab the first previous block and
405             ;; use it.
406             (node-home-lambda (block-last (first pred-list)))
407             ;; In case 2, we end up with an empty PRED-LIST and
408             ;; have to punt: There's no home lambda.
409             nil))))
410
411 ;;; Return the non-LET LAMBDA that holds BLOCK's code.
412 (declaim (ftype (sfunction (cblock) clambda) block-home-lambda))
413 (defun block-home-lambda (block)
414   (block-home-lambda-or-null block))
415
416 ;;; Return the IR1 physical environment for BLOCK.
417 (declaim (ftype (sfunction (cblock) physenv) block-physenv))
418 (defun block-physenv (block)
419   (lambda-physenv (block-home-lambda block)))
420
421 ;;; Return the Top Level Form number of PATH, i.e. the ordinal number
422 ;;; of its original source's top level form in its compilation unit.
423 (defun source-path-tlf-number (path)
424   (declare (list path))
425   (car (last path)))
426
427 ;;; Return the (reversed) list for the PATH in the original source
428 ;;; (with the Top Level Form number last).
429 (defun source-path-original-source (path)
430   (declare (list path) (inline member))
431   (cddr (member 'original-source-start path :test #'eq)))
432
433 ;;; Return the Form Number of PATH's original source inside the Top
434 ;;; Level Form that contains it. This is determined by the order that
435 ;;; we walk the subforms of the top level source form.
436 (defun source-path-form-number (path)
437   (declare (list path) (inline member))
438   (cadr (member 'original-source-start path :test #'eq)))
439
440 ;;; Return a list of all the enclosing forms not in the original
441 ;;; source that converted to get to this form, with the immediate
442 ;;; source for node at the start of the list.
443 (defun source-path-forms (path)
444   (subseq path 0 (position 'original-source-start path)))
445
446 ;;; Return the innermost source form for NODE.
447 (defun node-source-form (node)
448   (declare (type node node))
449   (let* ((path (node-source-path node))
450          (forms (source-path-forms path)))
451     (if forms
452         (first forms)
453         (values (find-original-source path)))))
454
455 ;;; Return NODE-SOURCE-FORM, T if lvar has a single use, otherwise
456 ;;; NIL, NIL.
457 (defun lvar-source (lvar)
458   (let ((use (lvar-uses lvar)))
459     (if (listp use)
460         (values nil nil)
461         (values (node-source-form use) t))))
462
463 ;;; Return the unique node, delivering a value to LVAR.
464 #!-sb-fluid (declaim (inline lvar-use))
465 (defun lvar-use (lvar)
466   (the (not list) (lvar-uses lvar)))
467
468 #!-sb-fluid (declaim (inline lvar-has-single-use-p))
469 (defun lvar-has-single-use-p (lvar)
470   (typep (lvar-uses lvar) '(not list)))
471
472 ;;; Return the LAMBDA that is CTRAN's home, or NIL if there is none.
473 (declaim (ftype (sfunction (ctran) (or clambda null))
474                 ctran-home-lambda-or-null))
475 (defun ctran-home-lambda-or-null (ctran)
476   ;; KLUDGE: This function is a post-CMU-CL hack by WHN, and this
477   ;; implementation might not be quite right, or might be uglier than
478   ;; necessary. It appears that the original Python never found a need
479   ;; to do this operation. The obvious things based on
480   ;; NODE-HOME-LAMBDA of CTRAN-USE usually work; then if that fails,
481   ;; BLOCK-HOME-LAMBDA of CTRAN-BLOCK works, given that we
482   ;; generalize it enough to grovel harder when the simple CMU CL
483   ;; approach fails, and furthermore realize that in some exceptional
484   ;; cases it might return NIL. -- WHN 2001-12-04
485   (cond ((ctran-use ctran)
486          (node-home-lambda (ctran-use ctran)))
487         ((ctran-block ctran)
488          (block-home-lambda-or-null (ctran-block ctran)))
489         (t
490          (bug "confused about home lambda for ~S" ctran))))
491
492 ;;; Return the LAMBDA that is CTRAN's home.
493 (declaim (ftype (sfunction (ctran) clambda) ctran-home-lambda))
494 (defun ctran-home-lambda (ctran)
495   (ctran-home-lambda-or-null ctran))
496
497 #!-sb-fluid (declaim (inline lvar-single-value-p))
498 (defun lvar-single-value-p (lvar)
499   (or (not lvar)
500       (let ((dest (lvar-dest lvar)))
501         (typecase dest
502           ((or creturn exit)
503            nil)
504           (mv-combination
505            (eq (basic-combination-fun dest) lvar))
506           (cast
507            (locally
508                (declare (notinline lvar-single-value-p))
509              (and (not (values-type-p (cast-asserted-type dest)))
510                   (lvar-single-value-p (node-lvar dest)))))
511           (t
512            t)))))
513
514 (defun principal-lvar-end (lvar)
515   (loop for prev = lvar then (node-lvar dest)
516         for dest = (and prev (lvar-dest prev))
517         while (cast-p dest)
518         finally (return (values dest prev))))
519
520 (defun principal-lvar-single-valuify (lvar)
521   (loop for prev = lvar then (node-lvar dest)
522         for dest = (and prev (lvar-dest prev))
523         while (cast-p dest)
524         do (setf (node-derived-type dest)
525                  (make-short-values-type (list (single-value-type
526                                                 (node-derived-type dest)))))
527         (reoptimize-lvar prev)))
528 \f
529 ;;; Return a new LEXENV just like DEFAULT except for the specified
530 ;;; slot values. Values for the alist slots are NCONCed to the
531 ;;; beginning of the current value, rather than replacing it entirely.
532 (defun make-lexenv (&key (default *lexenv*)
533                          funs vars blocks tags
534                          type-restrictions
535                          (lambda (lexenv-lambda default))
536                          (cleanup (lexenv-cleanup default))
537                          (policy (lexenv-policy default)))
538   (macrolet ((frob (var slot)
539                `(let ((old (,slot default)))
540                   (if ,var
541                       (nconc ,var old)
542                       old))))
543     (internal-make-lexenv
544      (frob funs lexenv-funs)
545      (frob vars lexenv-vars)
546      (frob blocks lexenv-blocks)
547      (frob tags lexenv-tags)
548      (frob type-restrictions lexenv-type-restrictions)
549      lambda cleanup policy)))
550
551 ;;; Makes a LEXENV, suitable for using in a MACROLET introduced
552 ;;; macroexpander
553 (defun make-restricted-lexenv (lexenv)
554   (flet ((fun-good-p (fun)
555            (destructuring-bind (name . thing) fun
556              (declare (ignore name))
557              (etypecase thing
558                (functional nil)
559                (global-var t)
560                (cons (aver (eq (car thing) 'macro))
561                      t))))
562          (var-good-p (var)
563            (destructuring-bind (name . thing) var
564              (declare (ignore name))
565              (etypecase thing
566                (leaf nil)
567                (cons (aver (eq (car thing) 'macro))
568                      t)
569                (heap-alien-info nil)))))
570     (internal-make-lexenv
571      (remove-if-not #'fun-good-p (lexenv-funs lexenv))
572      (remove-if-not #'var-good-p (lexenv-vars lexenv))
573      nil
574      nil
575      (lexenv-type-restrictions lexenv) ; XXX
576      nil
577      nil
578      (lexenv-policy lexenv))))
579 \f
580 ;;;; flow/DFO/component hackery
581
582 ;;; Join BLOCK1 and BLOCK2.
583 (defun link-blocks (block1 block2)
584   (declare (type cblock block1 block2))
585   (setf (block-succ block1)
586         (if (block-succ block1)
587             (%link-blocks block1 block2)
588             (list block2)))
589   (push block1 (block-pred block2))
590   (values))
591 (defun %link-blocks (block1 block2)
592   (declare (type cblock block1 block2))
593   (let ((succ1 (block-succ block1)))
594     (aver (not (memq block2 succ1)))
595     (cons block2 succ1)))
596
597 ;;; This is like LINK-BLOCKS, but we separate BLOCK1 and BLOCK2. If
598 ;;; this leaves a successor with a single predecessor that ends in an
599 ;;; IF, then set BLOCK-TEST-MODIFIED so that any test constraint will
600 ;;; now be able to be propagated to the successor.
601 (defun unlink-blocks (block1 block2)
602   (declare (type cblock block1 block2))
603   (let ((succ1 (block-succ block1)))
604     (if (eq block2 (car succ1))
605         (setf (block-succ block1) (cdr succ1))
606         (do ((succ (cdr succ1) (cdr succ))
607              (prev succ1 succ))
608             ((eq (car succ) block2)
609              (setf (cdr prev) (cdr succ)))
610           (aver succ))))
611
612   (let ((new-pred (delq block1 (block-pred block2))))
613     (setf (block-pred block2) new-pred)
614     (when (singleton-p new-pred)
615       (let ((pred-block (first new-pred)))
616         (when (if-p (block-last pred-block))
617           (setf (block-test-modified pred-block) t)))))
618   (values))
619
620 ;;; Swing the succ/pred link between BLOCK and OLD to be between BLOCK
621 ;;; and NEW. If BLOCK ends in an IF, then we have to fix up the
622 ;;; consequent/alternative blocks to point to NEW. We also set
623 ;;; BLOCK-TEST-MODIFIED so that any test constraint will be applied to
624 ;;; the new successor.
625 (defun change-block-successor (block old new)
626   (declare (type cblock new old block))
627   (unlink-blocks block old)
628   (let ((last (block-last block))
629         (comp (block-component block)))
630     (setf (component-reanalyze comp) t)
631     (typecase last
632       (cif
633        (setf (block-test-modified block) t)
634        (let* ((succ-left (block-succ block))
635               (new (if (and (eq new (component-tail comp))
636                             succ-left)
637                        (first succ-left)
638                        new)))
639          (unless (memq new succ-left)
640            (link-blocks block new))
641          (macrolet ((frob (slot)
642                       `(when (eq (,slot last) old)
643                          (setf (,slot last) new))))
644            (frob if-consequent)
645            (frob if-alternative)
646            (when (eq (if-consequent last)
647                      (if-alternative last))
648              (setf (component-reoptimize (block-component block)) t)))))
649       (t
650        (unless (memq new (block-succ block))
651          (link-blocks block new)))))
652
653   (values))
654
655 ;;; Unlink a block from the next/prev chain. We also null out the
656 ;;; COMPONENT.
657 (declaim (ftype (sfunction (cblock) (values)) remove-from-dfo))
658 (defun remove-from-dfo (block)
659   (let ((next (block-next block))
660         (prev (block-prev block)))
661     (setf (block-component block) nil)
662     (setf (block-next prev) next)
663     (setf (block-prev next) prev))
664   (values))
665
666 ;;; Add BLOCK to the next/prev chain following AFTER. We also set the
667 ;;; COMPONENT to be the same as for AFTER.
668 (defun add-to-dfo (block after)
669   (declare (type cblock block after))
670   (let ((next (block-next after))
671         (comp (block-component after)))
672     (aver (not (eq (component-kind comp) :deleted)))
673     (setf (block-component block) comp)
674     (setf (block-next after) block)
675     (setf (block-prev block) after)
676     (setf (block-next block) next)
677     (setf (block-prev next) block))
678   (values))
679
680 ;;; List all NLX-INFOs which BLOCK can exit to.
681 ;;;
682 ;;; We hope that no cleanup actions are performed in the middle of
683 ;;; BLOCK, so it is enough to look only at cleanups in the block
684 ;;; end. The tricky thing is a special cleanup block; all its nodes
685 ;;; have the same cleanup info, corresponding to the start, so the
686 ;;; same approach returns safe result.
687 (defun map-block-nlxes (fun block)
688   (loop for cleanup = (block-end-cleanup block)
689         then (node-enclosing-cleanup (cleanup-mess-up cleanup))
690         while cleanup
691         do (let ((mess-up (cleanup-mess-up cleanup)))
692              (case (cleanup-kind cleanup)
693                ((:block :tagbody)
694                 (aver (entry-p mess-up))
695                 (loop for exit in (entry-exits mess-up)
696                       for nlx-info = (find-nlx-info exit)
697                       do (funcall fun nlx-info)))
698                ((:catch :unwind-protect)
699                 (aver (combination-p mess-up))
700                 (let* ((arg-lvar (first (basic-combination-args mess-up)))
701                        (nlx-info (constant-value (ref-leaf (lvar-use arg-lvar)))))
702                 (funcall fun nlx-info)))))))
703
704 ;;; Set the FLAG for all the blocks in COMPONENT to NIL, except for
705 ;;; the head and tail which are set to T.
706 (declaim (ftype (sfunction (component) (values)) clear-flags))
707 (defun clear-flags (component)
708   (let ((head (component-head component))
709         (tail (component-tail component)))
710     (setf (block-flag head) t)
711     (setf (block-flag tail) t)
712     (do-blocks (block component)
713       (setf (block-flag block) nil)))
714   (values))
715
716 ;;; Make a component with no blocks in it. The BLOCK-FLAG is initially
717 ;;; true in the head and tail blocks.
718 (declaim (ftype (sfunction () component) make-empty-component))
719 (defun make-empty-component ()
720   (let* ((head (make-block-key :start nil :component nil))
721          (tail (make-block-key :start nil :component nil))
722          (res (make-component head tail)))
723     (setf (block-flag head) t)
724     (setf (block-flag tail) t)
725     (setf (block-component head) res)
726     (setf (block-component tail) res)
727     (setf (block-next head) tail)
728     (setf (block-prev tail) head)
729     res))
730
731 ;;; Make NODE the LAST node in its block, splitting the block if necessary.
732 ;;; The new block is added to the DFO immediately following NODE's block.
733 (defun node-ends-block (node)
734   (declare (type node node))
735   (let* ((block (node-block node))
736          (start (node-next node))
737          (last (block-last block)))
738     (unless (eq last node)
739       (aver (and (eq (ctran-kind start) :inside-block)
740                  (not (block-delete-p block))))
741       (let* ((succ (block-succ block))
742              (new-block
743               (make-block-key :start start
744                               :component (block-component block)
745                               :succ succ :last last)))
746         (setf (ctran-kind start) :block-start)
747         (setf (ctran-use start) nil)
748         (setf (block-last block) node)
749         (setf (node-next node) nil)
750         (dolist (b succ)
751           (setf (block-pred b)
752                 (cons new-block (remove block (block-pred b)))))
753         (setf (block-succ block) ())
754         (link-blocks block new-block)
755         (add-to-dfo new-block block)
756         (setf (component-reanalyze (block-component block)) t)
757
758         (do ((ctran start (node-next (ctran-next ctran))))
759             ((not ctran))
760           (setf (ctran-block ctran) new-block))
761
762         (setf (block-type-asserted block) t)
763         (setf (block-test-modified block) t))))
764   (values))
765 \f
766 ;;;; deleting stuff
767
768 ;;; Deal with deleting the last (read) reference to a LAMBDA-VAR.
769 (defun delete-lambda-var (leaf)
770   (declare (type lambda-var leaf))
771
772   ;; Iterate over all local calls flushing the corresponding argument,
773   ;; allowing the computation of the argument to be deleted. We also
774   ;; mark the LET for reoptimization, since it may be that we have
775   ;; deleted its last variable.
776   (let* ((fun (lambda-var-home leaf))
777          (n (position leaf (lambda-vars fun))))
778     (dolist (ref (leaf-refs fun))
779       (let* ((lvar (node-lvar ref))
780              (dest (and lvar (lvar-dest lvar))))
781         (when (and (combination-p dest)
782                    (eq (basic-combination-fun dest) lvar)
783                    (eq (basic-combination-kind dest) :local))
784           (let* ((args (basic-combination-args dest))
785                  (arg (elt args n)))
786             (reoptimize-lvar arg)
787             (flush-dest arg)
788             (setf (elt args n) nil))))))
789
790   ;; The LAMBDA-VAR may still have some SETs, but this doesn't cause
791   ;; too much difficulty, since we can efficiently implement
792   ;; write-only variables. We iterate over the SETs, marking their
793   ;; blocks for dead code flushing, since we can delete SETs whose
794   ;; value is unused.
795   (dolist (set (lambda-var-sets leaf))
796     (setf (block-flush-p (node-block set)) t))
797
798   (values))
799
800 ;;; Note that something interesting has happened to VAR.
801 (defun reoptimize-lambda-var (var)
802   (declare (type lambda-var var))
803   (let ((fun (lambda-var-home var)))
804     ;; We only deal with LET variables, marking the corresponding
805     ;; initial value arg as needing to be reoptimized.
806     (when (and (eq (functional-kind fun) :let)
807                (leaf-refs var))
808       (do ((args (basic-combination-args
809                   (lvar-dest (node-lvar (first (leaf-refs fun)))))
810                  (cdr args))
811            (vars (lambda-vars fun) (cdr vars)))
812           ((eq (car vars) var)
813            (reoptimize-lvar (car args))))))
814   (values))
815
816 ;;; Delete a function that has no references. This need only be called
817 ;;; on functions that never had any references, since otherwise
818 ;;; DELETE-REF will handle the deletion.
819 (defun delete-functional (fun)
820   (aver (and (null (leaf-refs fun))
821              (not (functional-entry-fun fun))))
822   (etypecase fun
823     (optional-dispatch (delete-optional-dispatch fun))
824     (clambda (delete-lambda fun)))
825   (values))
826
827 ;;; Deal with deleting the last reference to a CLAMBDA, which means
828 ;;; that the lambda is unreachable, so that its body may be
829 ;;; deleted. We set FUNCTIONAL-KIND to :DELETED and rely on
830 ;;; IR1-OPTIMIZE to delete its blocks.
831 (defun delete-lambda (clambda)
832   (declare (type clambda clambda))
833   (let ((original-kind (functional-kind clambda))
834         (bind (lambda-bind clambda)))
835     (aver (not (member original-kind '(:deleted :toplevel))))
836     (aver (not (functional-has-external-references-p clambda)))
837     (aver (or (eq original-kind :zombie) bind))
838     (setf (functional-kind clambda) :deleted)
839     (setf (lambda-bind clambda) nil)
840
841     (labels ((delete-children (lambda)
842                (dolist (child (lambda-children lambda))
843                  (cond ((eq (functional-kind child) :deleted)
844                         (delete-children child))
845                        (t
846                         (delete-lambda child))))
847                (setf (lambda-children lambda) nil)
848                (setf (lambda-parent lambda) nil)))
849       (delete-children clambda))
850
851     ;; (The IF test is (FUNCTIONAL-SOMEWHAT-LETLIKE-P CLAMBDA), except
852     ;; that we're using the old value of the KIND slot, not the
853     ;; current slot value, which has now been set to :DELETED.)
854     (case original-kind
855       (:zombie)
856       ((:let :mv-let :assignment)
857        (let ((bind-block (node-block bind)))
858          (mark-for-deletion bind-block))
859        (let ((home (lambda-home clambda)))
860          (setf (lambda-lets home) (delete clambda (lambda-lets home))))
861        ;; KLUDGE: In presence of NLEs we cannot always understand that
862        ;; LET's BIND dominates its body [for a LET "its" body is not
863        ;; quite its]; let's delete too dangerous for IR2 stuff. --
864        ;; APD, 2004-01-01
865        (dolist (var (lambda-vars clambda))
866          (flet ((delete-node (node)
867                   (mark-for-deletion (node-block node))))
868          (mapc #'delete-node (leaf-refs var))
869          (mapc #'delete-node (lambda-var-sets var)))))
870       (t
871        ;; Function has no reachable references.
872        (dolist (ref (lambda-refs clambda))
873          (mark-for-deletion (node-block ref)))
874        ;; If the function isn't a LET, we unlink the function head
875        ;; and tail from the component head and tail to indicate that
876        ;; the code is unreachable. We also delete the function from
877        ;; COMPONENT-LAMBDAS (it won't be there before local call
878        ;; analysis, but no matter.) If the lambda was never
879        ;; referenced, we give a note.
880        (let* ((bind-block (node-block bind))
881               (component (block-component bind-block))
882               (return (lambda-return clambda))
883               (return-block (and return (node-block return))))
884          (unless (leaf-ever-used clambda)
885            (let ((*compiler-error-context* bind))
886              (compiler-notify 'code-deletion-note
887                               :format-control "deleting unused function~:[.~;~:*~%  ~S~]"
888                               :format-arguments (list (leaf-debug-name clambda)))))
889          (unless (block-delete-p bind-block)
890            (unlink-blocks (component-head component) bind-block))
891          (when (and return-block (not (block-delete-p return-block)))
892            (mark-for-deletion return-block)
893            (unlink-blocks return-block (component-tail component)))
894          (setf (component-reanalyze component) t)
895          (let ((tails (lambda-tail-set clambda)))
896            (setf (tail-set-funs tails)
897                  (delete clambda (tail-set-funs tails)))
898            (setf (lambda-tail-set clambda) nil))
899          (setf (component-lambdas component)
900                (delq clambda (component-lambdas component))))))
901
902     ;; If the lambda is an XEP, then we null out the ENTRY-FUN in its
903     ;; ENTRY-FUN so that people will know that it is not an entry
904     ;; point anymore.
905     (when (eq original-kind :external)
906       (let ((fun (functional-entry-fun clambda)))
907         (setf (functional-entry-fun fun) nil)
908         (when (optional-dispatch-p fun)
909           (delete-optional-dispatch fun)))))
910
911   (values))
912
913 ;;; Deal with deleting the last reference to an OPTIONAL-DISPATCH. We
914 ;;; have to be a bit more careful than with lambdas, since DELETE-REF
915 ;;; is used both before and after local call analysis. Afterward, all
916 ;;; references to still-existing OPTIONAL-DISPATCHes have been moved
917 ;;; to the XEP, leaving it with no references at all. So we look at
918 ;;; the XEP to see whether an optional-dispatch is still really being
919 ;;; used. But before local call analysis, there are no XEPs, and all
920 ;;; references are direct.
921 ;;;
922 ;;; When we do delete the OPTIONAL-DISPATCH, we grovel all of its
923 ;;; entry-points, making them be normal lambdas, and then deleting the
924 ;;; ones with no references. This deletes any e-p lambdas that were
925 ;;; either never referenced, or couldn't be deleted when the last
926 ;;; reference was deleted (due to their :OPTIONAL kind.)
927 ;;;
928 ;;; Note that the last optional entry point may alias the main entry,
929 ;;; so when we process the main entry, its KIND may have been changed
930 ;;; to NIL or even converted to a LETlike value.
931 (defun delete-optional-dispatch (leaf)
932   (declare (type optional-dispatch leaf))
933   (let ((entry (functional-entry-fun leaf)))
934     (unless (and entry (leaf-refs entry))
935       (aver (or (not entry) (eq (functional-kind entry) :deleted)))
936       (setf (functional-kind leaf) :deleted)
937
938       (flet ((frob (fun)
939                (unless (eq (functional-kind fun) :deleted)
940                  (aver (eq (functional-kind fun) :optional))
941                  (setf (functional-kind fun) nil)
942                  (let ((refs (leaf-refs fun)))
943                    (cond ((null refs)
944                           (delete-lambda fun))
945                          ((null (rest refs))
946                           (or (maybe-let-convert fun)
947                               (maybe-convert-to-assignment fun)))
948                          (t
949                           (maybe-convert-to-assignment fun)))))))
950
951         (dolist (ep (optional-dispatch-entry-points leaf))
952           (when (promise-ready-p ep)
953             (frob (force ep))))
954         (when (optional-dispatch-more-entry leaf)
955           (frob (optional-dispatch-more-entry leaf)))
956         (let ((main (optional-dispatch-main-entry leaf)))
957           (when (eq (functional-kind main) :optional)
958             (frob main))))))
959
960   (values))
961
962 ;;; Do stuff to delete the semantic attachments of a REF node. When
963 ;;; this leaves zero or one reference, we do a type dispatch off of
964 ;;; the leaf to determine if a special action is appropriate.
965 (defun delete-ref (ref)
966   (declare (type ref ref))
967   (let* ((leaf (ref-leaf ref))
968          (refs (delq ref (leaf-refs leaf))))
969     (setf (leaf-refs leaf) refs)
970
971     (cond ((null refs)
972            (typecase leaf
973              (lambda-var
974               (delete-lambda-var leaf))
975              (clambda
976               (ecase (functional-kind leaf)
977                 ((nil :let :mv-let :assignment :escape :cleanup)
978                  (aver (null (functional-entry-fun leaf)))
979                  (delete-lambda leaf))
980                 (:external
981                  (delete-lambda leaf))
982                 ((:deleted :zombie :optional))))
983              (optional-dispatch
984               (unless (eq (functional-kind leaf) :deleted)
985                 (delete-optional-dispatch leaf)))))
986           ((null (rest refs))
987            (typecase leaf
988              (clambda (or (maybe-let-convert leaf)
989                           (maybe-convert-to-assignment leaf)))
990              (lambda-var (reoptimize-lambda-var leaf))))
991           (t
992            (typecase leaf
993              (clambda (maybe-convert-to-assignment leaf))))))
994
995   (values))
996
997 ;;; This function is called by people who delete nodes; it provides a
998 ;;; way to indicate that the value of a lvar is no longer used. We
999 ;;; null out the LVAR-DEST, set FLUSH-P in the blocks containing uses
1000 ;;; of LVAR and set COMPONENT-REOPTIMIZE.
1001 (defun flush-dest (lvar)
1002   (declare (type (or lvar null) lvar))
1003   (unless (null lvar)
1004     (setf (lvar-dest lvar) nil)
1005     (flush-lvar-externally-checkable-type lvar)
1006     (do-uses (use lvar)
1007       (let ((prev (node-prev use)))
1008         (let ((block (ctran-block prev)))
1009           (setf (component-reoptimize (block-component block)) t)
1010           (setf (block-attributep (block-flags block)
1011                                   flush-p type-asserted type-check)
1012                 t)))
1013       (setf (node-lvar use) nil))
1014     (setf (lvar-uses lvar) nil))
1015   (values))
1016
1017 (defun delete-dest (lvar)
1018   (when lvar
1019     (let* ((dest (lvar-dest lvar))
1020            (prev (node-prev dest)))
1021       (let ((block (ctran-block prev)))
1022         (unless (block-delete-p block)
1023           (mark-for-deletion block))))))
1024
1025 ;;; Queue the block for deletion
1026 (defun delete-block-lazily (block)
1027   (declare (type cblock block))
1028   (unless (block-delete-p block)
1029     (setf (block-delete-p block) t)
1030     (push block (component-delete-blocks (block-component block)))))
1031
1032 ;;; Do a graph walk backward from BLOCK, marking all predecessor
1033 ;;; blocks with the DELETE-P flag.
1034 (defun mark-for-deletion (block)
1035   (declare (type cblock block))
1036   (let* ((component (block-component block))
1037          (head (component-head component)))
1038     (labels ((helper (block)
1039                (delete-block-lazily block)
1040                (dolist (pred (block-pred block))
1041                  (unless (or (block-delete-p pred)
1042                              (eq pred head))
1043                    (helper pred)))))
1044       (unless (block-delete-p block)
1045         (helper block)
1046         (setf (component-reanalyze component) t))))
1047   (values))
1048
1049 ;;; This function does what is necessary to eliminate the code in it
1050 ;;; from the IR1 representation. This involves unlinking it from its
1051 ;;; predecessors and successors and deleting various node-specific
1052 ;;; semantic information. BLOCK must be already removed from
1053 ;;; COMPONENT-DELETE-BLOCKS.
1054 (defun delete-block (block &optional silent)
1055   (declare (type cblock block))
1056   (aver (block-component block))      ; else block is already deleted!
1057   #!+high-security (aver (not (memq block (component-delete-blocks (block-component block)))))
1058   (unless silent
1059     (note-block-deletion block))
1060   (setf (block-delete-p block) t)
1061
1062   (dolist (b (block-pred block))
1063     (unlink-blocks b block)
1064     ;; In bug 147 the almost-all-blocks-have-a-successor invariant was
1065     ;; broken when successors were deleted without setting the
1066     ;; BLOCK-DELETE-P flags of their predececessors. Make sure that
1067     ;; doesn't happen again.
1068     (aver (not (and (null (block-succ b))
1069                     (not (block-delete-p b))
1070                     (not (eq b (component-head (block-component b))))))))
1071   (dolist (b (block-succ block))
1072     (unlink-blocks block b))
1073
1074   (do-nodes-carefully (node block)
1075     (when (valued-node-p node)
1076       (delete-lvar-use node))
1077     (etypecase node
1078       (ref (delete-ref node))
1079       (cif (flush-dest (if-test node)))
1080       ;; The next two cases serve to maintain the invariant that a LET
1081       ;; always has a well-formed COMBINATION, REF and BIND. We delete
1082       ;; the lambda whenever we delete any of these, but we must be
1083       ;; careful that this LET has not already been partially deleted.
1084       (basic-combination
1085        (when (and (eq (basic-combination-kind node) :local)
1086                   ;; Guards COMBINATION-LAMBDA agains the REF being deleted.
1087                   (lvar-uses (basic-combination-fun node)))
1088          (let ((fun (combination-lambda node)))
1089            ;; If our REF was the second-to-last ref, and has been
1090            ;; deleted, then FUN may be a LET for some other
1091            ;; combination.
1092            (when (and (functional-letlike-p fun)
1093                       (eq (let-combination fun) node))
1094              (delete-lambda fun))))
1095        (flush-dest (basic-combination-fun node))
1096        (dolist (arg (basic-combination-args node))
1097          (when arg (flush-dest arg))))
1098       (bind
1099        (let ((lambda (bind-lambda node)))
1100          (unless (eq (functional-kind lambda) :deleted)
1101            (delete-lambda lambda))))
1102       (exit
1103        (let ((value (exit-value node))
1104              (entry (exit-entry node)))
1105          (when value
1106            (flush-dest value))
1107          (when entry
1108            (setf (entry-exits entry)
1109                  (delq node (entry-exits entry))))))
1110       (entry
1111        (dolist (exit (entry-exits node))
1112          (mark-for-deletion (node-block exit)))
1113        (let ((home (node-home-lambda node)))
1114          (setf (lambda-entries home) (delq node (lambda-entries home)))))
1115       (creturn
1116        (flush-dest (return-result node))
1117        (delete-return node))
1118       (cset
1119        (flush-dest (set-value node))
1120        (let ((var (set-var node)))
1121          (setf (basic-var-sets var)
1122                (delete node (basic-var-sets var)))))
1123       (cast
1124        (flush-dest (cast-value node)))))
1125
1126   (remove-from-dfo block)
1127   (values))
1128
1129 ;;; Do stuff to indicate that the return node NODE is being deleted.
1130 (defun delete-return (node)
1131   (declare (type creturn node))
1132   (let* ((fun (return-lambda node))
1133          (tail-set (lambda-tail-set fun)))
1134     (aver (lambda-return fun))
1135     (setf (lambda-return fun) nil)
1136     (when (and tail-set (not (find-if #'lambda-return
1137                                       (tail-set-funs tail-set))))
1138       (setf (tail-set-type tail-set) *empty-type*)))
1139   (values))
1140
1141 ;;; If any of the VARS in FUN was never referenced and was not
1142 ;;; declared IGNORE, then complain.
1143 (defun note-unreferenced-vars (fun)
1144   (declare (type clambda fun))
1145   (dolist (var (lambda-vars fun))
1146     (unless (or (leaf-ever-used var)
1147                 (lambda-var-ignorep var))
1148       (let ((*compiler-error-context* (lambda-bind fun)))
1149         (unless (policy *compiler-error-context* (= inhibit-warnings 3))
1150           ;; ANSI section "3.2.5 Exceptional Situations in the Compiler"
1151           ;; requires this to be no more than a STYLE-WARNING.
1152           (compiler-style-warn "The variable ~S is defined but never used."
1153                                (leaf-debug-name var)))
1154         (setf (leaf-ever-used var) t)))) ; to avoid repeated warnings? -- WHN
1155   (values))
1156
1157 (defvar *deletion-ignored-objects* '(t nil))
1158
1159 ;;; Return true if we can find OBJ in FORM, NIL otherwise. We bound
1160 ;;; our recursion so that we don't get lost in circular structures. We
1161 ;;; ignore the car of forms if they are a symbol (to prevent confusing
1162 ;;; function referencess with variables), and we also ignore anything
1163 ;;; inside ' or #'.
1164 (defun present-in-form (obj form depth)
1165   (declare (type (integer 0 20) depth))
1166   (cond ((= depth 20) nil)
1167         ((eq obj form) t)
1168         ((atom form) nil)
1169         (t
1170          (let ((first (car form))
1171                (depth (1+ depth)))
1172            (if (member first '(quote function))
1173                nil
1174                (or (and (not (symbolp first))
1175                         (present-in-form obj first depth))
1176                    (do ((l (cdr form) (cdr l))
1177                         (n 0 (1+ n)))
1178                        ((or (atom l) (> n 100))
1179                         nil)
1180                      (declare (fixnum n))
1181                      (when (present-in-form obj (car l) depth)
1182                        (return t)))))))))
1183
1184 ;;; This function is called on a block immediately before we delete
1185 ;;; it. We check to see whether any of the code about to die appeared
1186 ;;; in the original source, and emit a note if so.
1187 ;;;
1188 ;;; If the block was in a lambda is now deleted, then we ignore the
1189 ;;; whole block, since this case is picked off in DELETE-LAMBDA. We
1190 ;;; also ignore the deletion of CRETURN nodes, since it is somewhat
1191 ;;; reasonable for a function to not return, and there is a different
1192 ;;; note for that case anyway.
1193 ;;;
1194 ;;; If the actual source is an atom, then we use a bunch of heuristics
1195 ;;; to guess whether this reference really appeared in the original
1196 ;;; source:
1197 ;;; -- If a symbol, it must be interned and not a keyword.
1198 ;;; -- It must not be an easily introduced constant (T or NIL, a fixnum
1199 ;;;    or a character.)
1200 ;;; -- The atom must be "present" in the original source form, and
1201 ;;;    present in all intervening actual source forms.
1202 (defun note-block-deletion (block)
1203   (let ((home (block-home-lambda block)))
1204     (unless (eq (functional-kind home) :deleted)
1205       (do-nodes (node nil block)
1206         (let* ((path (node-source-path node))
1207                (first (first path)))
1208           (when (or (eq first 'original-source-start)
1209                     (and (atom first)
1210                          (or (not (symbolp first))
1211                              (let ((pkg (symbol-package first)))
1212                                (and pkg
1213                                     (not (eq pkg (symbol-package :end))))))
1214                          (not (member first *deletion-ignored-objects*))
1215                          (not (typep first '(or fixnum character)))
1216                          (every (lambda (x)
1217                                   (present-in-form first x 0))
1218                                 (source-path-forms path))
1219                          (present-in-form first (find-original-source path)
1220                                           0)))
1221             (unless (return-p node)
1222               (let ((*compiler-error-context* node))
1223                 (compiler-notify 'code-deletion-note
1224                                  :format-control "deleting unreachable code"
1225                                  :format-arguments nil)))
1226             (return))))))
1227   (values))
1228
1229 ;;; Delete a node from a block, deleting the block if there are no
1230 ;;; nodes left. We remove the node from the uses of its LVAR.
1231 ;;;
1232 ;;; If the node is the last node, there must be exactly one successor.
1233 ;;; We link all of our precedessors to the successor and unlink the
1234 ;;; block. In this case, we return T, otherwise NIL. If no nodes are
1235 ;;; left, and the block is a successor of itself, then we replace the
1236 ;;; only node with a degenerate exit node. This provides a way to
1237 ;;; represent the bodyless infinite loop, given the prohibition on
1238 ;;; empty blocks in IR1.
1239 (defun unlink-node (node)
1240   (declare (type node node))
1241   (when (valued-node-p node)
1242     (delete-lvar-use node))
1243
1244   (let* ((ctran (node-next node))
1245          (next (and ctran (ctran-next ctran)))
1246          (prev (node-prev node))
1247          (block (ctran-block prev))
1248          (prev-kind (ctran-kind prev))
1249          (last (block-last block)))
1250
1251     (setf (block-type-asserted block) t)
1252     (setf (block-test-modified block) t)
1253
1254     (cond ((or (eq prev-kind :inside-block)
1255                (and (eq prev-kind :block-start)
1256                     (not (eq node last))))
1257            (cond ((eq node last)
1258                   (setf (block-last block) (ctran-use prev))
1259                   (setf (node-next (ctran-use prev)) nil))
1260                  (t
1261                   (setf (ctran-next prev) next)
1262                   (setf (node-prev next) prev)
1263                   (when (if-p next) ; AOP wanted
1264                     (reoptimize-lvar (if-test next)))))
1265            (setf (node-prev node) nil)
1266            nil)
1267           (t
1268            (aver (eq prev-kind :block-start))
1269            (aver (eq node last))
1270            (let* ((succ (block-succ block))
1271                   (next (first succ)))
1272              (aver (singleton-p succ))
1273              (cond
1274               ((eq block (first succ))
1275                (with-ir1-environment-from-node node
1276                  (let ((exit (make-exit)))
1277                    (setf (ctran-next prev) nil)
1278                    (link-node-to-previous-ctran exit prev)
1279                    (setf (block-last block) exit)))
1280                (setf (node-prev node) nil)
1281                nil)
1282               (t
1283                (aver (eq (block-start-cleanup block)
1284                          (block-end-cleanup block)))
1285                (unlink-blocks block next)
1286                (dolist (pred (block-pred block))
1287                  (change-block-successor pred block next))
1288                (when (block-delete-p block)
1289                  (let ((component (block-component block)))
1290                    (setf (component-delete-blocks component)
1291                          (delq block (component-delete-blocks component)))))
1292                (remove-from-dfo block)
1293                (setf (block-delete-p block) t)
1294                (setf (node-prev node) nil)
1295                t)))))))
1296
1297 ;;; Return true if NODE has been deleted, false if it is still a valid
1298 ;;; part of IR1.
1299 (defun node-deleted (node)
1300   (declare (type node node))
1301   (let ((prev (node-prev node)))
1302     (not (and prev
1303               (let ((block (ctran-block prev)))
1304                 (and (block-component block)
1305                      (not (block-delete-p block))))))))
1306
1307 ;;; Delete all the blocks and functions in COMPONENT. We scan first
1308 ;;; marking the blocks as DELETE-P to prevent weird stuff from being
1309 ;;; triggered by deletion.
1310 (defun delete-component (component)
1311   (declare (type component component))
1312   (aver (null (component-new-functionals component)))
1313   (setf (component-kind component) :deleted)
1314   (do-blocks (block component)
1315     (delete-block-lazily block))
1316   (dolist (fun (component-lambdas component))
1317     (unless (eq (functional-kind fun) :deleted)
1318       (setf (functional-kind fun) nil)
1319       (setf (functional-entry-fun fun) nil)
1320       (setf (leaf-refs fun) nil)
1321       (delete-functional fun)))
1322   (clean-component component)
1323   (values))
1324
1325 ;;; Remove all pending blocks to be deleted. Return the nearest live
1326 ;;; block after or equal to BLOCK.
1327 (defun clean-component (component &optional block)
1328   (loop while (component-delete-blocks component)
1329         ;; actual deletion of a block may queue new blocks
1330         do (let ((current (pop (component-delete-blocks component))))
1331              (when (eq block current)
1332                (setq block (block-next block)))
1333              (delete-block current)))
1334   block)
1335
1336 ;;; Convert code of the form
1337 ;;;   (FOO ... (FUN ...) ...)
1338 ;;; to
1339 ;;;   (FOO ...    ...    ...).
1340 ;;; In other words, replace the function combination FUN by its
1341 ;;; arguments. If there are any problems with doing this, use GIVE-UP
1342 ;;; to blow out of whatever transform called this. Note, as the number
1343 ;;; of arguments changes, the transform must be prepared to return a
1344 ;;; lambda with a new lambda-list with the correct number of
1345 ;;; arguments.
1346 (defun extract-fun-args (lvar fun num-args)
1347   #!+sb-doc
1348   "If LVAR is a call to FUN with NUM-ARGS args, change those arguments
1349    to feed directly to the LVAR-DEST of LVAR, which must be a
1350    combination."
1351   (declare (type lvar lvar)
1352            (type symbol fun)
1353            (type index num-args))
1354   (let ((outside (lvar-dest lvar))
1355         (inside (lvar-uses lvar)))
1356     (aver (combination-p outside))
1357     (unless (combination-p inside)
1358       (give-up-ir1-transform))
1359     (let ((inside-fun (combination-fun inside)))
1360       (unless (eq (lvar-fun-name inside-fun) fun)
1361         (give-up-ir1-transform))
1362       (let ((inside-args (combination-args inside)))
1363         (unless (= (length inside-args) num-args)
1364           (give-up-ir1-transform))
1365         (let* ((outside-args (combination-args outside))
1366                (arg-position (position lvar outside-args))
1367                (before-args (subseq outside-args 0 arg-position))
1368                (after-args (subseq outside-args (1+ arg-position))))
1369           (dolist (arg inside-args)
1370             (setf (lvar-dest arg) outside)
1371             (flush-lvar-externally-checkable-type arg))
1372           (setf (combination-args inside) nil)
1373           (setf (combination-args outside)
1374                 (append before-args inside-args after-args))
1375           (change-ref-leaf (lvar-uses inside-fun)
1376                            (find-free-fun 'list "???"))
1377           (setf (combination-kind inside)
1378                 (info :function :info 'list))
1379           (setf (node-derived-type inside) *wild-type*)
1380           (flush-dest lvar)
1381           (values))))))
1382
1383 (defun flush-combination (combination)
1384   (declare (type combination combination))
1385   (flush-dest (combination-fun combination))
1386   (dolist (arg (combination-args combination))
1387     (flush-dest arg))
1388   (unlink-node combination)
1389   (values))
1390
1391 \f
1392 ;;;; leaf hackery
1393
1394 ;;; Change the LEAF that a REF refers to.
1395 (defun change-ref-leaf (ref leaf)
1396   (declare (type ref ref) (type leaf leaf))
1397   (unless (eq (ref-leaf ref) leaf)
1398     (push ref (leaf-refs leaf))
1399     (delete-ref ref)
1400     (setf (ref-leaf ref) leaf)
1401     (setf (leaf-ever-used leaf) t)
1402     (let* ((ltype (leaf-type leaf))
1403            (vltype (make-single-value-type ltype)))
1404       (if (let* ((lvar (node-lvar ref))
1405                  (dest (and lvar (lvar-dest lvar))))
1406             (and (basic-combination-p dest)
1407                  (eq lvar (basic-combination-fun dest))
1408                  (csubtypep ltype (specifier-type 'function))))
1409           (setf (node-derived-type ref) vltype)
1410           (derive-node-type ref vltype)))
1411     (reoptimize-lvar (node-lvar ref)))
1412   (values))
1413
1414 ;;; Change all REFS for OLD-LEAF to NEW-LEAF.
1415 (defun substitute-leaf (new-leaf old-leaf)
1416   (declare (type leaf new-leaf old-leaf))
1417   (dolist (ref (leaf-refs old-leaf))
1418     (change-ref-leaf ref new-leaf))
1419   (values))
1420
1421 ;;; like SUBSITUTE-LEAF, only there is a predicate on the REF to tell
1422 ;;; whether to substitute
1423 (defun substitute-leaf-if (test new-leaf old-leaf)
1424   (declare (type leaf new-leaf old-leaf) (type function test))
1425   (dolist (ref (leaf-refs old-leaf))
1426     (when (funcall test ref)
1427       (change-ref-leaf ref new-leaf)))
1428   (values))
1429
1430 ;;; Return a LEAF which represents the specified constant object. If
1431 ;;; the object is not in *CONSTANTS*, then we create a new constant
1432 ;;; LEAF and enter it.
1433 (defun find-constant (object)
1434   (if (typep object
1435              ;; FIXME: What is the significance of this test? ("things
1436              ;; that are worth uniquifying"?)
1437              '(or symbol number character instance))
1438       (or (gethash object *constants*)
1439           (setf (gethash object *constants*)
1440                 (make-constant :value object
1441                                :%source-name '.anonymous.
1442                                :type (ctype-of object)
1443                                :where-from :defined)))
1444       (make-constant :value object
1445                      :%source-name '.anonymous.
1446                      :type (ctype-of object)
1447                      :where-from :defined)))
1448 \f
1449 ;;; Return true if VAR would have to be closed over if environment
1450 ;;; analysis ran now (i.e. if there are any uses that have a different
1451 ;;; home lambda than VAR's home.)
1452 (defun closure-var-p (var)
1453   (declare (type lambda-var var))
1454   (let ((home (lambda-var-home var)))
1455     (cond ((eq (functional-kind home) :deleted)
1456            nil)
1457           (t (let ((home (lambda-home home)))
1458                (flet ((frob (l)
1459                         (find home l
1460                               :key #'node-home-lambda
1461                               :test-not #'eq)))
1462                  (or (frob (leaf-refs var))
1463                      (frob (basic-var-sets var)))))))))
1464
1465 ;;; If there is a non-local exit noted in ENTRY's environment that
1466 ;;; exits to CONT in that entry, then return it, otherwise return NIL.
1467 (defun find-nlx-info (exit)
1468   (declare (type exit exit))
1469   (let* ((entry (exit-entry exit))
1470          (entry-cleanup (entry-cleanup entry)))
1471     (dolist (nlx (physenv-nlx-info (node-physenv entry)) nil)
1472       (when (eq (nlx-info-exit nlx) exit)
1473         (return nlx)))))
1474 \f
1475 ;;;; functional hackery
1476
1477 (declaim (ftype (sfunction (functional) clambda) main-entry))
1478 (defun main-entry (functional)
1479   (etypecase functional
1480     (clambda functional)
1481     (optional-dispatch
1482      (optional-dispatch-main-entry functional))))
1483
1484 ;;; RETURN true if FUNCTIONAL is a thing that can be treated like
1485 ;;; MV-BIND when it appears in an MV-CALL. All fixed arguments must be
1486 ;;; optional with null default and no SUPPLIED-P. There must be a
1487 ;;; &REST arg with no references.
1488 (declaim (ftype (sfunction (functional) boolean) looks-like-an-mv-bind))
1489 (defun looks-like-an-mv-bind (functional)
1490   (and (optional-dispatch-p functional)
1491        (do ((arg (optional-dispatch-arglist functional) (cdr arg)))
1492            ((null arg) nil)
1493          (let ((info (lambda-var-arg-info (car arg))))
1494            (unless info (return nil))
1495            (case (arg-info-kind info)
1496              (:optional
1497               (when (or (arg-info-supplied-p info) (arg-info-default info))
1498                 (return nil)))
1499              (:rest
1500               (return (and (null (cdr arg)) (null (leaf-refs (car arg))))))
1501              (t
1502               (return nil)))))))
1503
1504 ;;; Return true if function is an external entry point. This is true
1505 ;;; of normal XEPs (:EXTERNAL kind) and also of top level lambdas
1506 ;;; (:TOPLEVEL kind.)
1507 (defun xep-p (fun)
1508   (declare (type functional fun))
1509   (not (null (member (functional-kind fun) '(:external :toplevel)))))
1510
1511 ;;; If LVAR's only use is a non-notinline global function reference,
1512 ;;; then return the referenced symbol, otherwise NIL. If NOTINLINE-OK
1513 ;;; is true, then we don't care if the leaf is NOTINLINE.
1514 (defun lvar-fun-name (lvar &optional notinline-ok)
1515   (declare (type lvar lvar))
1516   (let ((use (lvar-uses lvar)))
1517     (if (ref-p use)
1518         (let ((leaf (ref-leaf use)))
1519           (if (and (global-var-p leaf)
1520                    (eq (global-var-kind leaf) :global-function)
1521                    (or (not (defined-fun-p leaf))
1522                        (not (eq (defined-fun-inlinep leaf) :notinline))
1523                        notinline-ok))
1524               (leaf-source-name leaf)
1525               nil))
1526         nil)))
1527
1528 ;;; Return the source name of a combination. (This is an idiom
1529 ;;; which was used in CMU CL. I gather it always works. -- WHN)
1530 (defun combination-fun-source-name (combination)
1531   (let ((ref (lvar-uses (combination-fun combination))))
1532     (leaf-source-name (ref-leaf ref))))
1533
1534 ;;; Return the COMBINATION node that is the call to the LET FUN.
1535 (defun let-combination (fun)
1536   (declare (type clambda fun))
1537   (aver (functional-letlike-p fun))
1538   (lvar-dest (node-lvar (first (leaf-refs fun)))))
1539
1540 ;;; Return the initial value lvar for a LET variable, or NIL if there
1541 ;;; is none.
1542 (defun let-var-initial-value (var)
1543   (declare (type lambda-var var))
1544   (let ((fun (lambda-var-home var)))
1545     (elt (combination-args (let-combination fun))
1546          (position-or-lose var (lambda-vars fun)))))
1547
1548 ;;; Return the LAMBDA that is called by the local CALL.
1549 (defun combination-lambda (call)
1550   (declare (type basic-combination call))
1551   (aver (eq (basic-combination-kind call) :local))
1552   (ref-leaf (lvar-uses (basic-combination-fun call))))
1553
1554 (defvar *inline-expansion-limit* 200
1555   #!+sb-doc
1556   "an upper limit on the number of inline function calls that will be expanded
1557    in any given code object (single function or block compilation)")
1558
1559 ;;; Check whether NODE's component has exceeded its inline expansion
1560 ;;; limit, and warn if so, returning NIL.
1561 (defun inline-expansion-ok (node)
1562   (let ((expanded (incf (component-inline-expansions
1563                          (block-component
1564                           (node-block node))))))
1565     (cond ((> expanded *inline-expansion-limit*) nil)
1566           ((= expanded *inline-expansion-limit*)
1567            ;; FIXME: If the objective is to stop the recursive
1568            ;; expansion of inline functions, wouldn't it be more
1569            ;; correct to look back through surrounding expansions
1570            ;; (which are, I think, stored in the *CURRENT-PATH*, and
1571            ;; possibly stored elsewhere too) and suppress expansion
1572            ;; and print this warning when the function being proposed
1573            ;; for inline expansion is found there? (I don't like the
1574            ;; arbitrary numerical limit in principle, and I think
1575            ;; it'll be a nuisance in practice if we ever want the
1576            ;; compiler to be able to use WITH-COMPILATION-UNIT on
1577            ;; arbitrarily huge blocks of code. -- WHN)
1578            (let ((*compiler-error-context* node))
1579              (compiler-notify "*INLINE-EXPANSION-LIMIT* (~W) was exceeded, ~
1580                                probably trying to~%  ~
1581                                inline a recursive function."
1582                               *inline-expansion-limit*))
1583            nil)
1584           (t t))))
1585
1586 ;;; Make sure that FUNCTIONAL is not let-converted or deleted.
1587 (defun assure-functional-live-p (functional)
1588   (declare (type functional functional))
1589   (when (and (or
1590               ;; looks LET-converted
1591               (functional-somewhat-letlike-p functional)
1592               ;; It's possible for a LET-converted function to end up
1593               ;; deleted later. In that case, for the purposes of this
1594               ;; analysis, it is LET-converted: LET-converted functionals
1595               ;; are too badly trashed to expand them inline, and deleted
1596               ;; LET-converted functionals are even worse.
1597               (memq (functional-kind functional) '(:deleted :zombie))))
1598     (throw 'locall-already-let-converted functional)))
1599
1600 (defun call-full-like-p (call)
1601   (declare (type combination call))
1602   (let ((kind (basic-combination-kind call)))
1603     (or (eq kind :full)
1604         (and (fun-info-p kind)
1605              (not (fun-info-ir2-convert kind))
1606              (dolist (template (fun-info-templates kind) t)
1607                (when (eq (template-ltn-policy template) :fast-safe)
1608                  (multiple-value-bind (val win)
1609                      (valid-fun-use call (template-type template))
1610                    (when (or val (not win)) (return nil)))))))))
1611 \f
1612 ;;;; careful call
1613
1614 ;;; Apply a function to some arguments, returning a list of the values
1615 ;;; resulting of the evaluation. If an error is signalled during the
1616 ;;; application, then we produce a warning message using WARN-FUN and
1617 ;;; return NIL as our second value to indicate this. NODE is used as
1618 ;;; the error context for any error message, and CONTEXT is a string
1619 ;;; that is spliced into the warning.
1620 (declaim (ftype (sfunction ((or symbol function) list node function string)
1621                           (values list boolean))
1622                 careful-call))
1623 (defun careful-call (function args node warn-fun context)
1624   (values
1625    (multiple-value-list
1626     (handler-case (apply function args)
1627       (error (condition)
1628         (let ((*compiler-error-context* node))
1629           (funcall warn-fun "Lisp error during ~A:~%~A" context condition)
1630           (return-from careful-call (values nil nil))))))
1631    t))
1632
1633 ;;; Variations of SPECIFIER-TYPE for parsing possibly wrong
1634 ;;; specifiers.
1635 (macrolet
1636     ((deffrob (basic careful compiler transform)
1637        `(progn
1638           (defun ,careful (specifier)
1639             (handler-case (,basic specifier)
1640               (sb!kernel::arg-count-error (condition)
1641                 (values nil (list (format nil "~A" condition))))
1642               (simple-error (condition)
1643                 (values nil (list* (simple-condition-format-control condition)
1644                                    (simple-condition-format-arguments condition))))))
1645           (defun ,compiler (specifier)
1646             (multiple-value-bind (type error-args) (,careful specifier)
1647               (or type
1648                   (apply #'compiler-error error-args))))
1649           (defun ,transform (specifier)
1650             (multiple-value-bind (type error-args) (,careful specifier)
1651               (or type
1652                   (apply #'give-up-ir1-transform
1653                          error-args)))))))
1654   (deffrob specifier-type careful-specifier-type compiler-specifier-type ir1-transform-specifier-type)
1655   (deffrob values-specifier-type careful-values-specifier-type compiler-values-specifier-type ir1-transform-values-specifier-type))
1656
1657 \f
1658 ;;;; utilities used at run-time for parsing &KEY args in IR1
1659
1660 ;;; This function is used by the result of PARSE-DEFTRANSFORM to find
1661 ;;; the lvar for the value of the &KEY argument KEY in the list of
1662 ;;; lvars ARGS. It returns the lvar if the keyword is present, or NIL
1663 ;;; otherwise. The legality and constantness of the keywords should
1664 ;;; already have been checked.
1665 (declaim (ftype (sfunction (list keyword) (or lvar null))
1666                 find-keyword-lvar))
1667 (defun find-keyword-lvar (args key)
1668   (do ((arg args (cddr arg)))
1669       ((null arg) nil)
1670     (when (eq (lvar-value (first arg)) key)
1671       (return (second arg)))))
1672
1673 ;;; This function is used by the result of PARSE-DEFTRANSFORM to
1674 ;;; verify that alternating lvars in ARGS are constant and that there
1675 ;;; is an even number of args.
1676 (declaim (ftype (sfunction (list) boolean) check-key-args-constant))
1677 (defun check-key-args-constant (args)
1678   (do ((arg args (cddr arg)))
1679       ((null arg) t)
1680     (unless (and (rest arg)
1681                  (constant-lvar-p (first arg)))
1682       (return nil))))
1683
1684 ;;; This function is used by the result of PARSE-DEFTRANSFORM to
1685 ;;; verify that the list of lvars ARGS is a well-formed &KEY arglist
1686 ;;; and that only keywords present in the list KEYS are supplied.
1687 (declaim (ftype (sfunction (list list) boolean) check-transform-keys))
1688 (defun check-transform-keys (args keys)
1689   (and (check-key-args-constant args)
1690        (do ((arg args (cddr arg)))
1691            ((null arg) t)
1692          (unless (member (lvar-value (first arg)) keys)
1693            (return nil)))))
1694 \f
1695 ;;;; miscellaneous
1696
1697 ;;; Called by the expansion of the EVENT macro.
1698 (declaim (ftype (sfunction (event-info (or node null)) *) %event))
1699 (defun %event (info node)
1700   (incf (event-info-count info))
1701   (when (and (>= (event-info-level info) *event-note-threshold*)
1702              (policy (or node *lexenv*)
1703                      (= inhibit-warnings 0)))
1704     (let ((*compiler-error-context* node))
1705       (compiler-notify (event-info-description info))))
1706
1707   (let ((action (event-info-action info)))
1708     (when action (funcall action node))))
1709
1710 ;;;
1711 (defun make-cast (value type policy)
1712   (declare (type lvar value)
1713            (type ctype type)
1714            (type policy policy))
1715   (%make-cast :asserted-type type
1716               :type-to-check (maybe-weaken-check type policy)
1717               :value value
1718               :derived-type (coerce-to-values type)))
1719
1720 (defun cast-type-check (cast)
1721   (declare (type cast cast))
1722   (when (cast-reoptimize cast)
1723     (ir1-optimize-cast cast t))
1724   (cast-%type-check cast))
1725
1726 (defun note-single-valuified-lvar (lvar)
1727   (declare (type (or lvar null) lvar))
1728   (when lvar
1729     (let ((use (lvar-uses lvar)))
1730       (cond ((ref-p use)
1731              (let ((leaf (ref-leaf use)))
1732                (when (and (lambda-var-p leaf)
1733                           (null (rest (leaf-refs leaf))))
1734                  (reoptimize-lambda-var leaf))))
1735             ((or (listp use) (combination-p use))
1736              (do-uses (node lvar)
1737                (setf (node-reoptimize node) t)
1738                (setf (block-reoptimize (node-block node)) t)
1739                (setf (component-reoptimize (node-component node)) t)))))))