1 ;;;; This file implements local call analysis. A local call is a
2 ;;;; function call between functions being compiled at the same time.
3 ;;;; If we can tell at compile time that such a call is legal, then we
4 ;;;; change the combination to call the correct lambda, mark it as
5 ;;;; local, and add this link to our call graph. Once a call is local,
6 ;;;; it is then eligible for let conversion, which places the body of
7 ;;;; the function inline.
9 ;;;; We cannot always do a local call even when we do have the
10 ;;;; function being called. Calls that cannot be shown to have legal
11 ;;;; arg counts are not converted.
13 ;;;; This software is part of the SBCL system. See the README file for
14 ;;;; more information.
16 ;;;; This software is derived from the CMU CL system, which was
17 ;;;; written at Carnegie Mellon University and released into the
18 ;;;; public domain. The software is in the public domain and is
19 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
20 ;;;; files for more information.
24 ;;; This function propagates information from the variables in the
25 ;;; function FUN to the actual arguments in CALL. This is also called
26 ;;; by the VALUES IR1 optimizer when it sleazily converts MV-BINDs to
29 ;;; We flush all arguments to CALL that correspond to unreferenced
30 ;;; variables in FUN. We leave NILs in the COMBINATION-ARGS so that
31 ;;; the remaining args still match up with their vars.
33 ;;; We also apply the declared variable type assertion to the argument
35 (defun propagate-to-args (call fun
)
36 (declare (type combination call
) (type clambda fun
))
37 (loop with policy
= (lexenv-policy (node-lexenv call
))
38 for args on
(basic-combination-args call
)
39 and var in
(lambda-vars fun
)
40 do
(assert-lvar-type (car args
) (leaf-type var
) policy
)
41 do
(unless (leaf-refs var
)
42 (flush-dest (car args
))
43 (setf (car args
) nil
)))
46 (defun handle-nested-dynamic-extent-lvars (dx lvar
)
47 (let ((uses (lvar-uses lvar
)))
48 ;; DX value generators must end their blocks: see UPDATE-UVL-LIVE-SETS.
49 ;; Uses of mupltiple-use LVARs already end their blocks, so we just need
50 ;; to process uses of single-use LVARs.
52 (node-ends-block uses
))
53 ;; If this LVAR's USE is good for DX, it is either a CAST, or it
54 ;; must be a regular combination whose arguments are potentially DX as well.
58 (handle-nested-dynamic-extent-lvars dx
(cast-value use
)))
60 (loop for arg in
(combination-args use
)
61 when
(lvar-good-for-dx-p arg dx
)
62 append
(handle-nested-dynamic-extent-lvars dx arg
))))))
66 when
(use-good-for-dx-p use dx
)
68 (when (use-good-for-dx-p uses dx
)
71 (defun recognize-dynamic-extent-lvars (call fun
)
72 (declare (type combination call
) (type clambda fun
))
73 (loop for arg in
(basic-combination-args call
)
74 for var in
(lambda-vars fun
)
75 for dx
= (lambda-var-dynamic-extent var
)
76 when
(and dx arg
(not (lvar-dynamic-extent arg
)))
77 append
(handle-nested-dynamic-extent-lvars dx arg
) into dx-lvars
78 finally
(when dx-lvars
79 ;; Stack analysis requires that the CALL ends the block, so
80 ;; that MAP-BLOCK-NLXES sees the cleanup we insert here.
81 (node-ends-block call
)
82 (let* ((entry (with-ir1-environment-from-node call
84 (cleanup (make-cleanup :kind
:dynamic-extent
87 (setf (entry-cleanup entry
) cleanup
)
88 (insert-node-before call entry
)
89 (setf (node-lexenv call
)
90 (make-lexenv :default
(node-lexenv call
)
92 (push entry
(lambda-entries (node-home-lambda entry
)))
93 (dolist (lvar dx-lvars
)
94 (setf (lvar-dynamic-extent lvar
) cleanup
)))))
97 ;;; This function handles merging the tail sets if CALL is potentially
98 ;;; tail-recursive, and is a call to a function with a different
99 ;;; TAIL-SET than CALL's FUN. This must be called whenever we alter
100 ;;; IR1 so as to place a local call in what might be a tail-recursive
101 ;;; context. Note that any call which returns its value to a RETURN is
102 ;;; considered potentially tail-recursive, since any implicit MV-PROG1
103 ;;; might be optimized away.
105 ;;; We destructively modify the set for the calling function to
106 ;;; represent both, and then change all the functions in callee's set
107 ;;; to reference the first. If we do merge, we reoptimize the
108 ;;; RETURN-RESULT lvar to cause IR1-OPTIMIZE-RETURN to recompute the
110 (defun merge-tail-sets (call &optional
(new-fun (combination-lambda call
)))
111 (declare (type basic-combination call
) (type clambda new-fun
))
112 (let ((return (node-dest call
)))
113 (when (return-p return
)
114 (let ((call-set (lambda-tail-set (node-home-lambda call
)))
115 (fun-set (lambda-tail-set new-fun
)))
116 (unless (eq call-set fun-set
)
117 (let ((funs (tail-set-funs fun-set
)))
119 (setf (lambda-tail-set fun
) call-set
))
120 (setf (tail-set-funs call-set
)
121 (nconc (tail-set-funs call-set
) funs
)))
122 (reoptimize-lvar (return-result return
))
125 ;;; Convert a combination into a local call. We PROPAGATE-TO-ARGS, set
126 ;;; the combination kind to :LOCAL, add FUN to the CALLS of the
127 ;;; function that the call is in, call MERGE-TAIL-SETS, then replace
128 ;;; the function in the REF node with the new function.
130 ;;; We change the REF last, since changing the reference can trigger
131 ;;; LET conversion of the new function, but will only do so if the
132 ;;; call is local. Note that the replacement may trigger LET
133 ;;; conversion or other changes in IR1. We must call MERGE-TAIL-SETS
134 ;;; with NEW-FUN before the substitution, since after the substitution
135 ;;; (and LET conversion), the call may no longer be recognizable as
137 (defun convert-call (ref call fun
)
138 (declare (type ref ref
) (type combination call
) (type clambda fun
))
139 (propagate-to-args call fun
)
140 (setf (basic-combination-kind call
) :local
)
141 (unless (call-full-like-p call
)
142 (dolist (arg (basic-combination-args call
))
144 (flush-lvar-externally-checkable-type arg
))))
145 (sset-adjoin fun
(lambda-calls-or-closes (node-home-lambda call
)))
146 (recognize-dynamic-extent-lvars call fun
)
147 (merge-tail-sets call fun
)
148 (change-ref-leaf ref fun
)
151 ;;;; external entry point creation
153 ;;; Return a LAMBDA form that can be used as the definition of the XEP
156 ;;; If FUN is a LAMBDA, then we check the number of arguments
157 ;;; (conditional on policy) and call FUN with all the arguments.
159 ;;; If FUN is an OPTIONAL-DISPATCH, then we dispatch off of the number
160 ;;; of supplied arguments by doing do an = test for each entry-point,
161 ;;; calling the entry with the appropriate prefix of the passed
164 ;;; If there is a &MORE arg, then there are a couple of optimizations
165 ;;; that we make (more for space than anything else):
166 ;;; -- If MIN-ARGS is 0, then we make the more entry a T clause, since
167 ;;; no argument count error is possible.
168 ;;; -- We can omit the = clause for the last entry-point, allowing the
169 ;;; case of 0 more args to fall through to the more entry.
171 ;;; We don't bother to policy conditionalize wrong arg errors in
172 ;;; optional dispatches, since the additional overhead is negligible
173 ;;; compared to the cost of everything else going on.
175 ;;; Note that if policy indicates it, argument type declarations in
176 ;;; FUN will be verified. Since nothing is known about the type of the
177 ;;; XEP arg vars, type checks will be emitted when the XEP's arg vars
178 ;;; are passed to the actual function.
179 (defun make-xep-lambda-expression (fun)
180 (declare (type functional fun
))
183 (let ((nargs (length (lambda-vars fun
)))
184 (n-supplied (gensym))
185 (temps (make-gensym-list (length (lambda-vars fun
)))))
186 `(lambda (,n-supplied
,@temps
)
187 (declare (type index
,n-supplied
))
188 ,(if (policy *lexenv
* (zerop verify-arg-count
))
189 `(declare (ignore ,n-supplied
))
190 `(%verify-arg-count
,n-supplied
,nargs
))
192 (declare (optimize (merge-tail-calls 3)))
193 (%funcall
,fun
,@temps
)))))
195 (let* ((min (optional-dispatch-min-args fun
))
196 (max (optional-dispatch-max-args fun
))
197 (more (optional-dispatch-more-entry fun
))
198 (n-supplied (gensym))
199 (temps (make-gensym-list max
)))
201 ;; Force convertion of all entries
202 (optional-dispatch-entry-point-fun fun
0)
203 (loop for ep in
(optional-dispatch-entry-points fun
)
205 do
(entries `((eql ,n-supplied
,n
)
206 (%funcall
,(force ep
) ,@(subseq temps
0 n
)))))
207 `(lambda (,n-supplied
,@temps
)
208 ;; FIXME: Make sure that INDEX type distinguishes between
209 ;; target and host. (Probably just make the SB!XC:DEFTYPE
210 ;; different from CL:DEFTYPE.)
211 (declare (type index
,n-supplied
))
213 ,@(if more
(butlast (entries)) (entries))
215 ;; KLUDGE: (NOT (< ...)) instead of >= avoids one round of
216 ;; deftransforms and lambda-conversion.
217 `((,(if (zerop min
) t
`(not (< ,n-supplied
,max
)))
218 ,(let ((n-context (gensym))
220 `(multiple-value-bind (,n-context
,n-count
)
221 (%more-arg-context
,n-supplied
,max
)
223 (declare (optimize (merge-tail-calls 3)))
224 (%funcall
,more
,@temps
,n-context
,n-count
)))))))
226 (%arg-count-error
,n-supplied
)))))))))
228 ;;; Make an external entry point (XEP) for FUN and return it. We
229 ;;; convert the result of MAKE-XEP-LAMBDA in the correct environment,
230 ;;; then associate this lambda with FUN as its XEP. After the
231 ;;; conversion, we iterate over the function's associated lambdas,
232 ;;; redoing local call analysis so that the XEP calls will get
235 ;;; We set REANALYZE and REOPTIMIZE in the component, just in case we
236 ;;; discover an XEP after the initial local call analyze pass.
237 (defun make-xep (fun)
238 (declare (type functional fun
))
239 (aver (null (functional-entry-fun fun
)))
240 (with-ir1-environment-from-node (lambda-bind (main-entry fun
))
241 (let ((res (ir1-convert-lambda (make-xep-lambda-expression fun
)
242 :debug-name
(debug-name
243 'xep
(leaf-debug-name fun
)))))
244 (setf (functional-kind res
) :external
245 (leaf-ever-used res
) t
246 (functional-entry-fun res
) fun
247 (functional-entry-fun fun
) res
248 (component-reanalyze *current-component
*) t
)
249 (reoptimize-component *current-component
* :maybe
)
252 (locall-analyze-fun-1 fun
))
254 (dolist (ep (optional-dispatch-entry-points fun
))
255 (locall-analyze-fun-1 (force ep
)))
256 (when (optional-dispatch-more-entry fun
)
257 (locall-analyze-fun-1 (optional-dispatch-more-entry fun
)))))
260 ;;; Notice a REF that is not in a local-call context. If the REF is
261 ;;; already to an XEP, then do nothing, otherwise change it to the
262 ;;; XEP, making an XEP if necessary.
264 ;;; If REF is to a special :CLEANUP or :ESCAPE function, then we treat
265 ;;; it as though it was not an XEP reference (i.e. leave it alone).
266 (defun reference-entry-point (ref)
267 (declare (type ref ref
))
268 (let ((fun (ref-leaf ref
)))
269 (unless (or (xep-p fun
)
270 (member (functional-kind fun
) '(:escape
:cleanup
)))
271 (change-ref-leaf ref
(or (functional-entry-fun fun
)
274 ;;; Attempt to convert all references to FUN to local calls. The
275 ;;; reference must be the function for a call, and the function lvar
276 ;;; must be used only once, since otherwise we cannot be sure what
277 ;;; function is to be called. The call lvar would be multiply used if
278 ;;; there is hairy stuff such as conditionals in the expression that
279 ;;; computes the function.
281 ;;; If we cannot convert a reference, then we mark the referenced
282 ;;; function as an entry-point, creating a new XEP if necessary. We
283 ;;; don't try to convert calls that are in error (:ERROR kind.)
285 ;;; This is broken off from LOCALL-ANALYZE-COMPONENT so that people
286 ;;; can force analysis of newly introduced calls. Note that we don't
287 ;;; do LET conversion here.
288 (defun locall-analyze-fun-1 (fun)
289 (declare (type functional fun
))
290 (let ((refs (leaf-refs fun
))
293 (let* ((lvar (node-lvar ref
))
294 (dest (when lvar
(lvar-dest lvar
))))
295 (unless (node-to-be-deleted-p ref
)
296 (cond ((and (basic-combination-p dest
)
297 (eq (basic-combination-fun dest
) lvar
)
298 (eq (lvar-uses lvar
) ref
))
300 (convert-call-if-possible ref dest
)
302 (unless (eq (basic-combination-kind dest
) :local
)
303 (reference-entry-point ref
)
306 (reference-entry-point ref
)
307 (setq local-p nil
))))))
308 (when local-p
(note-local-functional fun
)))
312 ;;; We examine all NEW-FUNCTIONALS in COMPONENT, attempting to convert
313 ;;; calls into local calls when it is legal. We also attempt to
314 ;;; convert each LAMBDA to a LET. LET conversion is also triggered by
315 ;;; deletion of a function reference, but functions that start out
316 ;;; eligible for conversion must be noticed sometime.
318 ;;; Note that there is a lot of action going on behind the scenes
319 ;;; here, triggered by reference deletion. In particular, the
320 ;;; COMPONENT-LAMBDAS are being hacked to remove newly deleted and LET
321 ;;; converted LAMBDAs, so it is important that the LAMBDA is added to
322 ;;; the COMPONENT-LAMBDAS when it is. Also, the
323 ;;; COMPONENT-NEW-FUNCTIONALS may contain all sorts of drivel, since
324 ;;; it is not updated when we delete functions, etc. Only
325 ;;; COMPONENT-LAMBDAS is updated.
327 ;;; COMPONENT-REANALYZE-FUNCTIONALS is treated similarly to
328 ;;; COMPONENT-NEW-FUNCTIONALS, but we don't add lambdas to the
330 (defun locall-analyze-component (component)
331 (declare (type component component
))
332 (aver-live-component component
)
334 (let* ((new-functional (pop (component-new-functionals component
)))
335 (functional (or new-functional
336 (pop (component-reanalyze-functionals component
)))))
339 (let ((kind (functional-kind functional
)))
340 (cond ((or (functional-somewhat-letlike-p functional
)
341 (memq kind
'(:deleted
:zombie
)))
342 (values)) ; nothing to do
343 ((and (null (leaf-refs functional
)) (eq kind nil
)
344 (not (functional-entry-fun functional
)))
345 (delete-functional functional
))
347 ;; Fix/check FUNCTIONAL's relationship to COMPONENT-LAMDBAS.
348 (cond ((not (lambda-p functional
))
349 ;; Since FUNCTIONAL isn't a LAMBDA, this doesn't
352 (new-functional ; FUNCTIONAL came from
353 ; NEW-FUNCTIONALS, hence is new.
354 ;; FUNCTIONAL becomes part of COMPONENT-LAMBDAS now.
355 (aver (not (member functional
356 (component-lambdas component
))))
357 (push functional
(component-lambdas component
)))
358 (t ; FUNCTIONAL is old.
359 ;; FUNCTIONAL should be in COMPONENT-LAMBDAS already.
360 (aver (member functional
(component-lambdas
362 (locall-analyze-fun-1 functional
)
363 (when (lambda-p functional
)
364 (maybe-let-convert functional
)))))))
367 (defun locall-analyze-clambdas-until-done (clambdas)
369 (let ((did-something nil
))
370 (dolist (clambda clambdas
)
371 (let ((component (lambda-component clambda
)))
372 ;; The original CMU CL code seemed to implicitly assume that
373 ;; COMPONENT is the only one here. Let's make that explicit.
374 (aver (= 1 (length (functional-components clambda
))))
375 (aver (eql component
(first (functional-components clambda
))))
376 (when (or (component-new-functionals component
)
377 (component-reanalyze-functionals component
))
378 (setf did-something t
)
379 (locall-analyze-component component
))))
380 (unless did-something
384 ;;; If policy is auspicious and CALL is not in an XEP and we don't seem
385 ;;; to be in an infinite recursive loop, then change the reference to
386 ;;; reference a fresh copy. We return whichever function we decide to
388 (defun maybe-expand-local-inline (original-functional ref call
)
389 (if (and (policy call
390 (and (>= speed space
)
391 (>= speed compilation-speed
)))
392 (not (eq (functional-kind (node-home-lambda call
)) :external
))
393 (inline-expansion-ok call
))
394 (let* ((end (component-last-block (node-component call
)))
395 (pred (block-prev end
)))
396 (multiple-value-bind (losing-local-object converted-lambda
)
397 (catch 'locall-already-let-converted
398 (with-ir1-environment-from-node call
399 (let ((*lexenv
* (functional-lexenv original-functional
)))
402 (functional-inline-expansion original-functional
)
403 :debug-name
(debug-name 'local-inline
405 original-functional
)))))))
406 (cond (losing-local-object
407 (if (functional-p losing-local-object
)
408 (let ((*compiler-error-context
* call
))
409 (compiler-notify "couldn't inline expand because expansion ~
410 calls this LET-converted local function:~
412 (leaf-debug-name losing-local-object
)))
413 (let ((*compiler-error-context
* call
))
414 (compiler-notify "implementation limitation: couldn't inline ~
415 expand because expansion refers to ~
416 the optimized away object ~S."
417 losing-local-object
)))
418 (loop for block
= (block-next pred
) then
(block-next block
)
420 do
(setf (block-delete-p block
) t
))
421 (loop for block
= (block-next pred
) then
(block-next block
)
423 do
(delete-block block t
))
426 (change-ref-leaf ref converted-lambda
)
428 original-functional
))
430 ;;; Dispatch to the appropriate function to attempt to convert a call.
431 ;;; REF must be a reference to a FUNCTIONAL. This is called in IR1
432 ;;; optimization as well as in local call analysis. If the call is is
433 ;;; already :LOCAL, we do nothing. If the call is already scheduled
434 ;;; for deletion, also do nothing (in addition to saving time, this
435 ;;; also avoids some problems with optimizing collections of functions
436 ;;; that are partially deleted.)
438 ;;; This is called both before and after FIND-INITIAL-DFO runs. When
439 ;;; called on a :INITIAL component, we don't care whether the caller
440 ;;; and callee are in the same component. Afterward, we must stick
441 ;;; with whatever component division we have chosen.
443 ;;; Before attempting to convert a call, we see whether the function
444 ;;; is supposed to be inline expanded. Call conversion proceeds as
445 ;;; before after any expansion.
447 ;;; We bind *COMPILER-ERROR-CONTEXT* to the node for the call so that
448 ;;; warnings will get the right context.
449 (defun convert-call-if-possible (ref call
)
450 (declare (type ref ref
) (type basic-combination call
))
451 (let* ((block (node-block call
))
452 (component (block-component block
))
453 (original-fun (ref-leaf ref
)))
454 (aver (functional-p original-fun
))
455 (unless (or (member (basic-combination-kind call
) '(:local
:error
))
456 (node-to-be-deleted-p call
)
457 (member (functional-kind original-fun
)
458 '(:toplevel-xep
:deleted
))
459 (not (or (eq (component-kind component
) :initial
)
462 (lambda-bind (main-entry original-fun
))))
464 (let ((fun (if (xep-p original-fun
)
465 (functional-entry-fun original-fun
)
467 (*compiler-error-context
* call
))
469 (when (and (eq (functional-inlinep fun
) :inline
)
470 (rest (leaf-refs original-fun
)))
471 (setq fun
(maybe-expand-local-inline fun ref call
)))
473 (aver (member (functional-kind fun
)
474 '(nil :escape
:cleanup
:optional
)))
475 (cond ((mv-combination-p call
)
476 (convert-mv-call ref call fun
))
478 (convert-lambda-call ref call fun
))
480 (convert-hairy-call ref call fun
))))))
484 ;;; Attempt to convert a multiple-value call. The only interesting
485 ;;; case is a call to a function that LOOKS-LIKE-AN-MV-BIND, has
486 ;;; exactly one reference and no XEP, and is called with one values
489 ;;; We change the call to be to the last optional entry point and
490 ;;; change the call to be local. Due to our preconditions, the call
491 ;;; should eventually be converted to a let, but we can't do that now,
492 ;;; since there may be stray references to the e-p lambda due to
493 ;;; optional defaulting code.
495 ;;; We also use variable types for the called function to construct an
496 ;;; assertion for the values lvar.
498 ;;; See CONVERT-CALL for additional notes on MERGE-TAIL-SETS, etc.
499 (defun convert-mv-call (ref call fun
)
500 (declare (type ref ref
) (type mv-combination call
) (type functional fun
))
501 (when (and (looks-like-an-mv-bind fun
)
502 (singleton-p (leaf-refs fun
))
503 (singleton-p (basic-combination-args call
)))
504 (let* ((*current-component
* (node-component ref
))
505 (ep (optional-dispatch-entry-point-fun
506 fun
(optional-dispatch-max-args fun
))))
507 (when (null (leaf-refs ep
))
508 (aver (= (optional-dispatch-min-args fun
) 0))
509 (aver (not (functional-entry-fun fun
)))
510 (setf (basic-combination-kind call
) :local
)
511 (sset-adjoin ep
(lambda-calls-or-closes (node-home-lambda call
)))
512 (merge-tail-sets call ep
)
513 (change-ref-leaf ref ep
)
516 (first (basic-combination-args call
))
517 (make-short-values-type (mapcar #'leaf-type
(lambda-vars ep
)))
518 (lexenv-policy (node-lexenv call
))))))
521 ;;; Attempt to convert a call to a lambda. If the number of args is
522 ;;; wrong, we give a warning and mark the call as :ERROR to remove it
523 ;;; from future consideration. If the argcount is O.K. then we just
525 (defun convert-lambda-call (ref call fun
)
526 (declare (type ref ref
) (type combination call
) (type clambda fun
))
527 (let ((nargs (length (lambda-vars fun
)))
528 (n-call-args (length (combination-args call
))))
529 (cond ((= n-call-args nargs
)
530 (convert-call ref call fun
))
533 'local-argument-mismatch
535 "function called with ~R argument~:P, but wants exactly ~R"
536 :format-arguments
(list n-call-args nargs
))
537 (setf (basic-combination-kind call
) :error
)))))
539 ;;;; &OPTIONAL, &MORE and &KEYWORD calls
541 ;;; This is similar to CONVERT-LAMBDA-CALL, but deals with
542 ;;; OPTIONAL-DISPATCHes. If only fixed args are supplied, then convert
543 ;;; a call to the correct entry point. If &KEY args are supplied, then
544 ;;; dispatch to a subfunction. We don't convert calls to functions
545 ;;; that have a &MORE (or &REST) arg.
546 (defun convert-hairy-call (ref call fun
)
547 (declare (type ref ref
) (type combination call
)
548 (type optional-dispatch fun
))
549 (let ((min-args (optional-dispatch-min-args fun
))
550 (max-args (optional-dispatch-max-args fun
))
551 (call-args (length (combination-args call
))))
552 (cond ((< call-args min-args
)
554 'local-argument-mismatch
556 "function called with ~R argument~:P, but wants at least ~R"
557 :format-arguments
(list call-args min-args
))
558 (setf (basic-combination-kind call
) :error
))
559 ((<= call-args max-args
)
560 (convert-call ref call
561 (let ((*current-component
* (node-component ref
)))
562 (optional-dispatch-entry-point-fun
563 fun
(- call-args min-args
)))))
564 ((optional-dispatch-more-entry fun
)
565 (convert-more-call ref call fun
))
568 'local-argument-mismatch
570 "function called with ~R argument~:P, but wants at most ~R"
572 (list call-args max-args
))
573 (setf (basic-combination-kind call
) :error
))))
576 ;;; This function is used to convert a call to an entry point when
577 ;;; complex transformations need to be done on the original arguments.
578 ;;; ENTRY is the entry point function that we are calling. VARS is a
579 ;;; list of variable names which are bound to the original call
580 ;;; arguments. IGNORES is the subset of VARS which are ignored. ARGS
581 ;;; is the list of arguments to the entry point function.
583 ;;; In order to avoid gruesome graph grovelling, we introduce a new
584 ;;; function that rearranges the arguments and calls the entry point.
585 ;;; We analyze the new function and the entry point immediately so
586 ;;; that everything gets converted during the single pass.
587 (defun convert-hairy-fun-entry (ref call entry vars ignores args
)
588 (declare (list vars ignores args
) (type ref ref
) (type combination call
)
589 (type clambda entry
))
591 (with-ir1-environment-from-node call
594 (declare (ignorable ,@ignores
))
595 (%funcall
,entry
,@args
))
596 :debug-name
(debug-name 'hairy-function-entry
598 (basic-combination-fun call
)))))))
599 (convert-call ref call new-fun
)
600 (dolist (ref (leaf-refs entry
))
601 (convert-call-if-possible ref
(lvar-dest (node-lvar ref
))))))
603 ;;; Use CONVERT-HAIRY-FUN-ENTRY to convert a &MORE-arg call to a known
604 ;;; function into a local call to the MAIN-ENTRY.
606 ;;; First we verify that all keywords are constant and legal. If there
607 ;;; aren't, then we warn the user and don't attempt to convert the call.
609 ;;; We massage the supplied &KEY arguments into the order expected
610 ;;; by the main entry. This is done by binding all the arguments to
611 ;;; the keyword call to variables in the introduced lambda, then
612 ;;; passing these values variables in the correct order when calling
613 ;;; the main entry. Unused arguments (such as the keywords themselves)
614 ;;; are discarded simply by not passing them along.
616 ;;; If there is a &REST arg, then we bundle up the args and pass them
618 (defun convert-more-call (ref call fun
)
619 (declare (type ref ref
) (type combination call
) (type optional-dispatch fun
))
620 (let* ((max (optional-dispatch-max-args fun
))
621 (arglist (optional-dispatch-arglist fun
))
622 (args (combination-args call
))
623 (more (nthcdr max args
))
624 (flame (policy call
(or (> speed inhibit-warnings
)
625 (> space inhibit-warnings
))))
629 (temps (make-gensym-list max
))
630 (more-temps (make-gensym-list (length more
))))
635 (dolist (var arglist
)
636 (let ((info (lambda-var-arg-info var
)))
638 (ecase (arg-info-kind info
)
642 ((:more-context
:more-count
)
643 (compiler-warn "can't local-call functions with &MORE args")
644 (setf (basic-combination-kind call
) :error
)
645 (return-from convert-more-call
))))))
647 (when (optional-dispatch-keyp fun
)
648 (when (oddp (length more
))
649 (compiler-warn "function called with odd number of ~
650 arguments in keyword portion")
651 (setf (basic-combination-kind call
) :error
)
652 (return-from convert-more-call
))
654 (do ((key more
(cddr key
))
655 (temp more-temps
(cddr temp
)))
657 (let ((lvar (first key
)))
658 (unless (constant-lvar-p lvar
)
660 (compiler-notify "non-constant keyword in keyword call"))
661 (setf (basic-combination-kind call
) :error
)
662 (return-from convert-more-call
))
664 (let ((name (lvar-value lvar
))
667 (when (and (eq name
:allow-other-keys
) (not allow-found
))
668 (let ((val (second key
)))
669 (cond ((constant-lvar-p val
)
671 allowp
(lvar-value val
)))
673 (compiler-notify "non-constant :ALLOW-OTHER-KEYS value"))
674 (setf (basic-combination-kind call
) :error
)
675 (return-from convert-more-call
)))))
676 (dolist (var (key-vars)
679 (unless (eq name
:allow-other-keys
)
680 (setq loser
(list name
)))))
681 (let ((info (lambda-var-arg-info var
)))
682 (when (eq (arg-info-key info
) name
)
684 (if (member var
(supplied) :key
#'car
)
686 (supplied (cons var val
)))
689 (when (and loser
(not (optional-dispatch-allowp fun
)) (not allowp
))
690 (compiler-warn "function called with unknown argument keyword ~S"
692 (setf (basic-combination-kind call
) :error
)
693 (return-from convert-more-call
)))
695 (collect ((call-args))
696 (do ((var arglist
(cdr var
))
697 (temp temps
(cdr temp
)))
699 (let ((info (lambda-var-arg-info (car var
))))
701 (ecase (arg-info-kind info
)
703 (call-args (car temp
))
704 (when (arg-info-supplied-p info
)
707 (call-args `(list ,@more-temps
))
711 (call-args (car temp
)))))
713 (dolist (var (key-vars))
714 (let ((info (lambda-var-arg-info var
))
715 (temp (cdr (assoc var
(supplied)))))
718 (call-args (arg-info-default info
)))
719 (when (arg-info-supplied-p info
)
720 (call-args (not (null temp
))))))
722 (convert-hairy-fun-entry ref call
(optional-dispatch-main-entry fun
)
723 (append temps more-temps
)
724 (ignores) (call-args)))))
730 ;;;; Converting to a LET has differing significance to various parts
731 ;;;; of the compiler:
732 ;;;; -- The body of a LET is spliced in immediately after the
733 ;;;; corresponding combination node, making the control transfer
734 ;;;; explicit and allowing LETs to be mashed together into a single
735 ;;;; block. The value of the LET is delivered directly to the
736 ;;;; original lvar for the call, eliminating the need to
737 ;;;; propagate information from the dummy result lvar.
738 ;;;; -- As far as IR1 optimization is concerned, it is interesting in
739 ;;;; that there is only one expression that the variable can be bound
740 ;;;; to, and this is easily substituted for.
741 ;;;; -- LETs are interesting to environment analysis and to the back
742 ;;;; end because in most ways a LET can be considered to be "the
743 ;;;; same function" as its home function.
744 ;;;; -- LET conversion has dynamic scope implications, since control
745 ;;;; transfers within the same environment are local. In a local
746 ;;;; control transfer, cleanup code must be emitted to remove
747 ;;;; dynamic bindings that are no longer in effect.
749 ;;; Set up the control transfer to the called CLAMBDA. We split the
750 ;;; call block immediately after the call, and link the head of
751 ;;; CLAMBDA to the call block. The successor block after splitting
752 ;;; (where we return to) is returned.
754 ;;; If the lambda is is a different component than the call, then we
755 ;;; call JOIN-COMPONENTS. This only happens in block compilation
756 ;;; before FIND-INITIAL-DFO.
757 (defun insert-let-body (clambda call
)
758 (declare (type clambda clambda
) (type basic-combination call
))
759 (let* ((call-block (node-block call
))
760 (bind-block (node-block (lambda-bind clambda
)))
761 (component (block-component call-block
)))
762 (aver-live-component component
)
763 (let ((clambda-component (block-component bind-block
)))
764 (unless (eq clambda-component component
)
765 (aver (eq (component-kind component
) :initial
))
766 (join-components component clambda-component
)))
767 (let ((*current-component
* component
))
768 (node-ends-block call
))
769 (destructuring-bind (next-block)
770 (block-succ call-block
)
771 (unlink-blocks call-block next-block
)
772 (link-blocks call-block bind-block
)
775 ;;; Remove CLAMBDA from the tail set of anything it used to be in the
776 ;;; same set as; but leave CLAMBDA with a valid tail set value of
777 ;;; its own, for the benefit of code which might try to pull
778 ;;; something out of it (e.g. return type).
779 (defun depart-from-tail-set (clambda)
780 ;; Until sbcl-0.pre7.37.flaky5.2, we did
781 ;; (LET ((TAILS (LAMBDA-TAIL-SET CLAMBDA)))
782 ;; (SETF (TAIL-SET-FUNS TAILS)
783 ;; (DELETE CLAMBDA (TAIL-SET-FUNS TAILS))))
784 ;; (SETF (LAMBDA-TAIL-SET CLAMBDA) NIL)
785 ;; here. Apparently the idea behind the (SETF .. NIL) was that since
786 ;; TAIL-SET-FUNS no longer thinks we're in the tail set, it's
787 ;; inconsistent, and perhaps unsafe, for us to think we're in the
788 ;; tail set. Unfortunately..
790 ;; The (SETF .. NIL) caused problems in sbcl-0.pre7.37.flaky5.2 when
791 ;; I was trying to get Python to emit :EXTERNAL LAMBDAs directly
792 ;; (instead of only being able to emit funny little :TOPLEVEL stubs
793 ;; which you called in order to get the address of an external LAMBDA):
794 ;; the external function was defined in terms of internal function,
795 ;; which was LET-converted, and then things blew up downstream when
796 ;; FINALIZE-XEP-DEFINITION tried to find out its DEFINED-TYPE from
797 ;; the now-NILed-out TAIL-SET. So..
799 ;; To deal with this problem, we no longer NIL out
800 ;; (LAMBDA-TAIL-SET CLAMBDA) here. Instead:
801 ;; * If we're the only function in TAIL-SET-FUNS, it should
802 ;; be safe to leave ourself linked to it, and it to you.
803 ;; * If there are other functions in TAIL-SET-FUNS, then we're
804 ;; afraid of future optimizations on those functions causing
805 ;; the TAIL-SET object no longer to be valid to describe our
806 ;; return value. Thus, we delete ourselves from that object;
807 ;; but we save a newly-allocated tail-set, derived from the old
808 ;; one, for ourselves, for the use of later code (e.g.
809 ;; FINALIZE-XEP-DEFINITION) which might want to
810 ;; know about our return type.
811 (let* ((old-tail-set (lambda-tail-set clambda
))
812 (old-tail-set-funs (tail-set-funs old-tail-set
)))
813 (unless (= 1 (length old-tail-set-funs
))
814 (setf (tail-set-funs old-tail-set
)
815 (delete clambda old-tail-set-funs
))
816 (let ((new-tail-set (copy-tail-set old-tail-set
)))
817 (setf (lambda-tail-set clambda
) new-tail-set
818 (tail-set-funs new-tail-set
) (list clambda
)))))
819 ;; The documentation on TAIL-SET-INFO doesn't tell whether it could
820 ;; remain valid in this case, so we nuke it on the theory that
821 ;; missing information tends to be less dangerous than incorrect
823 (setf (tail-set-info (lambda-tail-set clambda
)) nil
))
825 ;;; Handle the PHYSENV semantics of LET conversion. We add CLAMBDA and
826 ;;; its LETs to LETs for the CALL's home function. We merge the calls
827 ;;; for CLAMBDA with the calls for the home function, removing CLAMBDA
828 ;;; in the process. We also merge the ENTRIES.
830 ;;; We also unlink the function head from the component head and set
831 ;;; COMPONENT-REANALYZE to true to indicate that the DFO should be
833 (defun merge-lets (clambda call
)
835 (declare (type clambda clambda
) (type basic-combination call
))
837 (let ((component (node-component call
)))
838 (unlink-blocks (component-head component
) (lambda-block clambda
))
839 (setf (component-lambdas component
)
840 (delete clambda
(component-lambdas component
)))
841 (setf (component-reanalyze component
) t
))
842 (setf (lambda-call-lexenv clambda
) (node-lexenv call
))
844 (depart-from-tail-set clambda
)
846 (let* ((home (node-home-lambda call
))
847 (home-physenv (lambda-physenv home
))
848 (physenv (lambda-physenv clambda
)))
850 (aver (not (eq home clambda
)))
852 ;; CLAMBDA belongs to HOME now.
853 (push clambda
(lambda-lets home
))
854 (setf (lambda-home clambda
) home
)
855 (setf (lambda-physenv clambda
) home-physenv
)
859 (setf home-physenv
(get-lambda-physenv home
)))
860 (setf (physenv-nlx-info home-physenv
)
861 (nconc (physenv-nlx-info physenv
)
862 (physenv-nlx-info home-physenv
))))
864 ;; All of CLAMBDA's LETs belong to HOME now.
865 (let ((lets (lambda-lets clambda
)))
867 (setf (lambda-home let
) home
)
868 (setf (lambda-physenv let
) home-physenv
))
869 (setf (lambda-lets home
) (nconc lets
(lambda-lets home
))))
870 ;; CLAMBDA no longer has an independent existence as an entity
872 (setf (lambda-lets clambda
) nil
)
874 ;; HOME no longer calls CLAMBDA, and owns all of CLAMBDA's old
876 (sset-union (lambda-calls-or-closes home
)
877 (lambda-calls-or-closes clambda
))
878 (sset-delete clambda
(lambda-calls-or-closes home
))
879 ;; CLAMBDA no longer has an independent existence as an entity
880 ;; which calls things or has DFO dependencies.
881 (setf (lambda-calls-or-closes clambda
) nil
)
883 ;; All of CLAMBDA's ENTRIES belong to HOME now.
884 (setf (lambda-entries home
)
885 (nconc (lambda-entries clambda
)
886 (lambda-entries home
)))
887 ;; CLAMBDA no longer has an independent existence as an entity
889 (setf (lambda-entries clambda
) nil
))
893 ;;; Handle the value semantics of LET conversion. Delete FUN's return
894 ;;; node, and change the control flow to transfer to NEXT-BLOCK
895 ;;; instead. Move all the uses of the result lvar to CALL's lvar.
896 (defun move-return-uses (fun call next-block
)
897 (declare (type clambda fun
) (type basic-combination call
)
898 (type cblock next-block
))
899 (let* ((return (lambda-return fun
))
901 (ensure-block-start (node-prev return
))
902 (node-block return
))))
903 (unlink-blocks return-block
904 (component-tail (block-component return-block
)))
905 (link-blocks return-block next-block
)
907 (delete-return return
)
908 (let ((result (return-result return
))
909 (lvar (if (node-tail-p call
)
910 (return-result (lambda-return (node-home-lambda call
)))
912 (call-type (node-derived-type call
)))
913 (unless (eq call-type
*wild-type
*)
914 ;; FIXME: Replace the call with unsafe CAST. -- APD, 2003-01-26
915 (do-uses (use result
)
916 (derive-node-type use call-type
)))
917 (substitute-lvar-uses lvar result
918 (and lvar
(eq (lvar-uses lvar
) call
)))))
921 ;;; We are converting FUN to be a LET when the call is in a non-tail
922 ;;; position. Any previously tail calls in FUN are no longer tail
923 ;;; calls, and must be restored to normal calls which transfer to
924 ;;; NEXT-BLOCK (FUN's return point.) We can't do this by DO-USES on
925 ;;; the RETURN-RESULT, because the return might have been deleted (if
926 ;;; all calls were TR.)
927 (defun unconvert-tail-calls (fun call next-block
)
928 (do-sset-elements (called (lambda-calls-or-closes fun
))
929 (when (lambda-p called
)
930 (dolist (ref (leaf-refs called
))
931 (let ((this-call (node-dest ref
)))
933 (node-tail-p this-call
)
934 (eq (node-home-lambda this-call
) fun
))
935 (setf (node-tail-p this-call
) nil
)
936 (ecase (functional-kind called
)
937 ((nil :cleanup
:optional
)
938 (let ((block (node-block this-call
))
939 (lvar (node-lvar call
)))
940 (unlink-blocks block
(first (block-succ block
)))
941 (link-blocks block next-block
)
942 (aver (not (node-lvar this-call
)))
943 (add-lvar-use this-call lvar
)))
945 ;; The called function might be an assignment in the
946 ;; case where we are currently converting that function.
947 ;; In steady-state, assignments never appear as a called
950 (aver (eq called fun
)))))))))
953 ;;; Deal with returning from a LET or assignment that we are
954 ;;; converting. FUN is the function we are calling, CALL is a call to
955 ;;; FUN, and NEXT-BLOCK is the return point for a non-tail call, or
956 ;;; NULL if call is a tail call.
958 ;;; If the call is not a tail call, then we must do
959 ;;; UNCONVERT-TAIL-CALLS, since a tail call is a call which returns
960 ;;; its value out of the enclosing non-let function. When call is
961 ;;; non-TR, we must convert it back to an ordinary local call, since
962 ;;; the value must be delivered to the receiver of CALL's value.
964 ;;; We do different things depending on whether the caller and callee
965 ;;; have returns left:
967 ;;; -- If the callee has no return we just do MOVE-LET-CALL-CONT.
968 ;;; Either the function doesn't return, or all returns are via
969 ;;; tail-recursive local calls.
970 ;;; -- If CALL is a non-tail call, or if both have returns, then
971 ;;; we delete the callee's return, move its uses to the call's
972 ;;; result lvar, and transfer control to the appropriate
974 ;;; -- If the callee has a return, but the caller doesn't, then we
975 ;;; move the return to the caller.
976 (defun move-return-stuff (fun call next-block
)
977 (declare (type clambda fun
) (type basic-combination call
)
978 (type (or cblock null
) next-block
))
980 (unconvert-tail-calls fun call next-block
))
981 (let* ((return (lambda-return fun
))
982 (call-fun (node-home-lambda call
))
983 (call-return (lambda-return call-fun
)))
984 (when (and call-return
985 (block-delete-p (node-block call-return
)))
986 (delete-return call-return
)
987 (unlink-node call-return
)
988 (setq call-return nil
))
990 ((or next-block call-return
)
991 (unless (block-delete-p (node-block return
))
993 (ensure-block-start (node-prev call-return
))
994 (setq next-block
(node-block call-return
)))
995 (move-return-uses fun call next-block
)))
997 (aver (node-tail-p call
))
998 (setf (lambda-return call-fun
) return
)
999 (setf (return-lambda return
) call-fun
)
1000 (setf (lambda-return fun
) nil
))))
1001 (%delete-lvar-use call
) ; LET call does not have value semantics
1004 ;;; Actually do LET conversion. We call subfunctions to do most of the
1005 ;;; work. We do REOPTIMIZE-LVAR on the args and CALL's lvar so that
1006 ;;; LET-specific IR1 optimizations get a chance. We blow away any
1007 ;;; entry for the function in *FREE-FUNS* so that nobody will create
1008 ;;; new references to it.
1009 (defun let-convert (fun call
)
1010 (declare (type clambda fun
) (type basic-combination call
))
1011 (let* ((next-block (insert-let-body fun call
))
1012 (next-block (if (node-tail-p call
)
1015 (move-return-stuff fun call next-block
)
1016 (merge-lets fun call
)
1017 (setf (node-tail-p call
) nil
)
1018 ;; If CALL has a derive type NIL, it means that "its return" is
1019 ;; unreachable, but the next BIND is still reachable; in order to
1020 ;; not confuse MAYBE-TERMINATE-BLOCK...
1021 (setf (node-derived-type call
) *wild-type
*)))
1023 ;;; Reoptimize all of CALL's args and its result.
1024 (defun reoptimize-call (call)
1025 (declare (type basic-combination call
))
1026 (dolist (arg (basic-combination-args call
))
1028 (reoptimize-lvar arg
)))
1029 (reoptimize-lvar (node-lvar call
))
1032 ;;; Are there any declarations in force to say CLAMBDA shouldn't be
1034 (defun declarations-suppress-let-conversion-p (clambda)
1035 ;; From the user's point of view, LET-converting something that
1036 ;; has a name is inlining it. (The user can't see what we're doing
1037 ;; with anonymous things, and suppressing inlining
1038 ;; for such things can easily give Python acute indigestion, so
1040 (when (leaf-has-source-name-p clambda
)
1041 ;; ANSI requires that explicit NOTINLINE be respected.
1042 (or (eq (lambda-inlinep clambda
) :notinline
)
1043 ;; If (= LET-CONVERSION 0) we can guess that inlining
1044 ;; generally won't be appreciated, but if the user
1045 ;; specifically requests inlining, that takes precedence over
1046 ;; our general guess.
1047 (and (policy clambda
(= let-conversion
0))
1048 (not (eq (lambda-inlinep clambda
) :inline
))))))
1050 ;;; We also don't convert calls to named functions which appear in the
1051 ;;; initial component, delaying this until optimization. This
1052 ;;; minimizes the likelihood that we will LET-convert a function which
1053 ;;; may have references added due to later local inline expansion.
1054 (defun ok-initial-convert-p (fun)
1055 (not (and (leaf-has-source-name-p fun
)
1056 (or (declarations-suppress-let-conversion-p fun
)
1057 (eq (component-kind (lambda-component fun
))
1060 ;;; This function is called when there is some reason to believe that
1061 ;;; CLAMBDA might be converted into a LET. This is done after local
1062 ;;; call analysis, and also when a reference is deleted. We return
1063 ;;; true if we converted.
1064 (defun maybe-let-convert (clambda)
1065 (declare (type clambda clambda
))
1066 (unless (or (declarations-suppress-let-conversion-p clambda
)
1067 (functional-has-external-references-p clambda
))
1068 ;; We only convert to a LET when the function is a normal local
1069 ;; function, has no XEP, and is referenced in exactly one local
1070 ;; call. Conversion is also inhibited if the only reference is in
1071 ;; a block about to be deleted.
1073 ;; These rules limiting LET conversion may seem unnecessarily
1074 ;; restrictive, since there are some cases where we could do the
1075 ;; return with a jump that don't satisfy these requirements. The
1076 ;; reason for doing things this way is that it makes the concept
1077 ;; of a LET much more useful at the level of IR1 semantics. The
1078 ;; :ASSIGNMENT function kind provides another way to optimize
1079 ;; calls to single-return/multiple call functions.
1081 ;; We don't attempt to convert calls to functions that have an
1082 ;; XEP, since we might be embarrassed later when we want to
1083 ;; convert a newly discovered local call. Also, see
1084 ;; OK-INITIAL-CONVERT-P.
1085 (let ((refs (leaf-refs clambda
)))
1088 (memq (functional-kind clambda
) '(nil :assignment
))
1089 (not (functional-entry-fun clambda
)))
1090 (binding* ((ref (first refs
))
1091 (ref-lvar (node-lvar ref
) :exit-if-null
)
1092 (dest (lvar-dest ref-lvar
)))
1093 (when (and (basic-combination-p dest
)
1094 (eq (basic-combination-fun dest
) ref-lvar
)
1095 (eq (basic-combination-kind dest
) :local
)
1096 (not (node-to-be-deleted-p dest
))
1097 (not (block-delete-p (lambda-block clambda
)))
1098 (cond ((ok-initial-convert-p clambda
) t
)
1100 (reoptimize-lvar ref-lvar
)
1102 (when (eq clambda
(node-home-lambda dest
))
1103 (delete-lambda clambda
)
1104 (return-from maybe-let-convert nil
))
1105 (unless (eq (functional-kind clambda
) :assignment
)
1106 (let-convert clambda dest
))
1107 (reoptimize-call dest
)
1108 (setf (functional-kind clambda
)
1109 (if (mv-combination-p dest
) :mv-let
:let
))))
1112 ;;;; tail local calls and assignments
1114 ;;; Return T if there are no cleanups between BLOCK1 and BLOCK2, or if
1115 ;;; they definitely won't generate any cleanup code. Currently we
1116 ;;; recognize lexical entry points that are only used locally (if at
1118 (defun only-harmless-cleanups (block1 block2
)
1119 (declare (type cblock block1 block2
))
1120 (or (eq block1 block2
)
1121 (let ((cleanup2 (block-start-cleanup block2
)))
1122 (do ((cleanup (block-end-cleanup block1
)
1123 (node-enclosing-cleanup (cleanup-mess-up cleanup
))))
1124 ((eq cleanup cleanup2
) t
)
1125 (case (cleanup-kind cleanup
)
1127 (unless (null (entry-exits (cleanup-mess-up cleanup
)))
1129 (t (return nil
)))))))
1131 ;;; If a potentially TR local call really is TR, then convert it to
1132 ;;; jump directly to the called function. We also call
1133 ;;; MAYBE-CONVERT-TO-ASSIGNMENT. The first value is true if we
1134 ;;; tail-convert. The second is the value of M-C-T-A.
1135 (defun maybe-convert-tail-local-call (call)
1136 (declare (type combination call
))
1137 (let ((return (lvar-dest (node-lvar call
)))
1138 (fun (combination-lambda call
)))
1139 (aver (return-p return
))
1140 (when (and (not (node-tail-p call
)) ; otherwise already converted
1141 ;; this is a tail call
1142 (immediately-used-p (return-result return
) call
)
1143 (only-harmless-cleanups (node-block call
)
1144 (node-block return
))
1145 ;; If the call is in an XEP, we might decide to make it
1146 ;; non-tail so that we can use known return inside the
1148 (not (eq (functional-kind (node-home-lambda call
))
1150 (not (block-delete-p (lambda-block fun
))))
1151 (node-ends-block call
)
1152 (let ((block (node-block call
)))
1153 (setf (node-tail-p call
) t
)
1154 (unlink-blocks block
(first (block-succ block
)))
1155 (link-blocks block
(lambda-block fun
))
1156 (delete-lvar-use call
)
1157 (values t
(maybe-convert-to-assignment fun
))))))
1159 ;;; This is called when we believe it might make sense to convert
1160 ;;; CLAMBDA to an assignment. All this function really does is
1161 ;;; determine when a function with more than one call can still be
1162 ;;; combined with the calling function's environment. We can convert
1164 ;;; -- The function is a normal, non-entry function, and
1165 ;;; -- Except for one call, all calls must be tail recursive calls
1166 ;;; in the called function (i.e. are self-recursive tail calls)
1167 ;;; -- OK-INITIAL-CONVERT-P is true.
1169 ;;; There may be one outside call, and it need not be tail-recursive.
1170 ;;; Since all tail local calls have already been converted to direct
1171 ;;; transfers, the only control semantics needed are to splice in the
1172 ;;; body at the non-tail call. If there is no non-tail call, then we
1173 ;;; need only merge the environments. Both cases are handled by
1176 ;;; ### It would actually be possible to allow any number of outside
1177 ;;; calls as long as they all return to the same place (i.e. have the
1178 ;;; same conceptual continuation.) A special case of this would be
1179 ;;; when all of the outside calls are tail recursive.
1180 (defun maybe-convert-to-assignment (clambda)
1181 (declare (type clambda clambda
))
1182 (when (and (not (functional-kind clambda
))
1183 (not (functional-entry-fun clambda
))
1184 (not (functional-has-external-references-p clambda
)))
1185 (let ((outside-non-tail-call nil
)
1187 (when (and (dolist (ref (leaf-refs clambda
) t
)
1188 (let ((dest (node-dest ref
)))
1189 (when (or (not dest
)
1190 (block-delete-p (node-block dest
)))
1192 (let ((home (node-home-lambda ref
)))
1193 (unless (eq home clambda
)
1196 (setq outside-call dest
))
1197 (unless (node-tail-p dest
)
1198 (when (or outside-non-tail-call
(eq home clambda
))
1200 (setq outside-non-tail-call dest
)))))
1201 (ok-initial-convert-p clambda
))
1202 (cond (outside-call (setf (functional-kind clambda
) :assignment
)
1203 (let-convert clambda outside-call
)
1204 (when outside-non-tail-call
1205 (reoptimize-call outside-non-tail-call
))
1207 (t (delete-lambda clambda
)