better inlining of `apply' with rest arguments
[bpt/guile.git] / module / language / tree-il / peval.scm
1 ;;; Tree-IL partial evaluator
2
3 ;; Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
4
5 ;;;; This library is free software; you can redistribute it and/or
6 ;;;; modify it under the terms of the GNU Lesser General Public
7 ;;;; License as published by the Free Software Foundation; either
8 ;;;; version 3 of the License, or (at your option) any later version.
9 ;;;;
10 ;;;; This library is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ;;;; Lesser General Public License for more details.
14 ;;;;
15 ;;;; You should have received a copy of the GNU Lesser General Public
16 ;;;; License along with this library; if not, write to the Free Software
17 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19 (define-module (language tree-il peval)
20 #:use-module (language tree-il)
21 #:use-module (language tree-il primitives)
22 #:use-module (language tree-il effects)
23 #:use-module (ice-9 vlist)
24 #:use-module (ice-9 match)
25 #:use-module (srfi srfi-1)
26 #:use-module (srfi srfi-9)
27 #:use-module (srfi srfi-11)
28 #:use-module (srfi srfi-26)
29 #:export (peval))
30
31 ;;;
32 ;;; Partial evaluation is Guile's most important source-to-source
33 ;;; optimization pass. It performs copy propagation, dead code
34 ;;; elimination, inlining, and constant folding, all while preserving
35 ;;; the order of effects in the residual program.
36 ;;;
37 ;;; For more on partial evaluation, see William Cook’s excellent
38 ;;; tutorial on partial evaluation at DSL 2011, called “Build your own
39 ;;; partial evaluator in 90 minutes”[0].
40 ;;;
41 ;;; Our implementation of this algorithm was heavily influenced by
42 ;;; Waddell and Dybvig's paper, "Fast and Effective Procedure Inlining",
43 ;;; IU CS Dept. TR 484.
44 ;;;
45 ;;; [0] http://www.cs.utexas.edu/~wcook/tutorial/.
46 ;;;
47
48 ;; First, some helpers.
49 ;;
50 (define-syntax *logging* (identifier-syntax #f))
51
52 ;; For efficiency we define *logging* to inline to #f, so that the call
53 ;; to log* gets optimized out. If you want to log, uncomment these
54 ;; lines:
55 ;;
56 ;; (define %logging #f)
57 ;; (define-syntax *logging* (identifier-syntax %logging))
58 ;;
59 ;; Then you can change %logging at runtime.
60
61 (define-syntax log
62 (syntax-rules (quote)
63 ((log 'event arg ...)
64 (if (and *logging*
65 (or (eq? *logging* #t)
66 (memq 'event *logging*)))
67 (log* 'event arg ...)))))
68
69 (define (log* event . args)
70 (let ((pp (module-ref (resolve-interface '(ice-9 pretty-print))
71 'pretty-print)))
72 (pp `(log ,event . ,args))
73 (newline)
74 (values)))
75
76 (define-syntax-rule (let/ec k e e* ...)
77 (let ((tag (make-prompt-tag)))
78 (call-with-prompt
79 tag
80 (lambda ()
81 (let ((k (lambda args (apply abort-to-prompt tag args))))
82 e e* ...))
83 (lambda (_ res) res))))
84
85 (define (tree-il-any proc exp)
86 (let/ec k
87 (tree-il-fold (lambda (exp res)
88 (let ((res (proc exp)))
89 (if res (k res) #f)))
90 (lambda (exp res)
91 (let ((res (proc exp)))
92 (if res (k res) #f)))
93 (lambda (exp res) #f)
94 #f exp)))
95
96 (define (vlist-any proc vlist)
97 (let ((len (vlist-length vlist)))
98 (let lp ((i 0))
99 (and (< i len)
100 (or (proc (vlist-ref vlist i))
101 (lp (1+ i)))))))
102
103 (define (singly-valued-expression? exp)
104 (match exp
105 (($ <const>) #t)
106 (($ <lexical-ref>) #t)
107 (($ <void>) #t)
108 (($ <lexical-ref>) #t)
109 (($ <primitive-ref>) #t)
110 (($ <module-ref>) #t)
111 (($ <toplevel-ref>) #t)
112 (($ <application> _
113 ($ <primitive-ref> _ (? singly-valued-primitive?))) #t)
114 (($ <application> _ ($ <primitive-ref> _ 'values) (val)) #t)
115 (($ <lambda>) #t)
116 (else #f)))
117
118 (define (truncate-values x)
119 "Discard all but the first value of X."
120 (if (singly-valued-expression? x)
121 x
122 (make-application (tree-il-src x)
123 (make-primitive-ref #f 'values)
124 (list x))))
125
126 ;; Peval will do a one-pass analysis on the source program to determine
127 ;; the set of assigned lexicals, and to identify unreferenced and
128 ;; singly-referenced lexicals.
129 ;;
130 (define-record-type <var>
131 (make-var name gensym refcount set?)
132 var?
133 (name var-name)
134 (gensym var-gensym)
135 (refcount var-refcount set-var-refcount!)
136 (set? var-set? set-var-set?!))
137
138 (define* (build-var-table exp #:optional (table vlist-null))
139 (tree-il-fold
140 (lambda (exp res)
141 (match exp
142 (($ <lexical-ref> src name gensym)
143 (let ((var (cdr (vhash-assq gensym res))))
144 (set-var-refcount! var (1+ (var-refcount var)))
145 res))
146 (_ res)))
147 (lambda (exp res)
148 (match exp
149 (($ <lambda-case> src req opt rest kw init gensyms body alt)
150 (fold (lambda (name sym res)
151 (vhash-consq sym (make-var name sym 0 #f) res))
152 res
153 (append req (or opt '()) (if rest (list rest) '())
154 (match kw
155 ((aok? (kw name sym) ...) name)
156 (_ '())))
157 gensyms))
158 (($ <let> src names gensyms vals body)
159 (fold (lambda (name sym res)
160 (vhash-consq sym (make-var name sym 0 #f) res))
161 res names gensyms))
162 (($ <letrec> src in-order? names gensyms vals body)
163 (fold (lambda (name sym res)
164 (vhash-consq sym (make-var name sym 0 #f) res))
165 res names gensyms))
166 (($ <fix> src names gensyms vals body)
167 (fold (lambda (name sym res)
168 (vhash-consq sym (make-var name sym 0 #f) res))
169 res names gensyms))
170 (($ <lexical-set> src name gensym exp)
171 (set-var-set?! (cdr (vhash-assq gensym res)) #t)
172 res)
173 (_ res)))
174 (lambda (exp res) res)
175 table exp))
176
177 ;; Counters are data structures used to limit the effort that peval
178 ;; spends on particular inlining attempts. Each call site in the source
179 ;; program is allocated some amount of effort. If peval exceeds the
180 ;; effort counter while attempting to inline a call site, it aborts the
181 ;; inlining attempt and residualizes a call instead.
182 ;;
183 ;; As there is a fixed number of call sites, that makes `peval' O(N) in
184 ;; the number of call sites in the source program.
185 ;;
186 ;; Counters should limit the size of the residual program as well, but
187 ;; currently this is not implemented.
188 ;;
189 ;; At the top level, before seeing any peval call, there is no counter,
190 ;; because inlining will terminate as there is no recursion. When peval
191 ;; sees a call at the top level, it will make a new counter, allocating
192 ;; it some amount of effort and size.
193 ;;
194 ;; This top-level effort counter effectively "prints money". Within a
195 ;; toplevel counter, no more effort is printed ex nihilo; for a nested
196 ;; inlining attempt to proceed, effort must be transferred from the
197 ;; toplevel counter to the nested counter.
198 ;;
199 ;; Via `data' and `prev', counters form a linked list, terminating in a
200 ;; toplevel counter. In practice `data' will be the a pointer to the
201 ;; source expression of the procedure being inlined.
202 ;;
203 ;; In this way peval can detect a recursive inlining attempt, by walking
204 ;; back on the `prev' links looking for matching `data'. Recursive
205 ;; counters receive a more limited effort allocation, as we don't want
206 ;; to spend all of the effort for a toplevel inlining site on loops.
207 ;; Also, recursive counters don't need a prompt at each inlining site:
208 ;; either the call chain folds entirely, or it will be residualized at
209 ;; its original call.
210 ;;
211 (define-record-type <counter>
212 (%make-counter effort size continuation recursive? data prev)
213 counter?
214 (effort effort-counter)
215 (size size-counter)
216 (continuation counter-continuation)
217 (recursive? counter-recursive? set-counter-recursive?!)
218 (data counter-data)
219 (prev counter-prev))
220
221 (define (abort-counter c)
222 ((counter-continuation c)))
223
224 (define (record-effort! c)
225 (let ((e (effort-counter c)))
226 (if (zero? (variable-ref e))
227 (abort-counter c)
228 (variable-set! e (1- (variable-ref e))))))
229
230 (define (record-size! c)
231 (let ((s (size-counter c)))
232 (if (zero? (variable-ref s))
233 (abort-counter c)
234 (variable-set! s (1- (variable-ref s))))))
235
236 (define (find-counter data counter)
237 (and counter
238 (if (eq? data (counter-data counter))
239 counter
240 (find-counter data (counter-prev counter)))))
241
242 (define* (transfer! from to #:optional
243 (effort (variable-ref (effort-counter from)))
244 (size (variable-ref (size-counter from))))
245 (define (transfer-counter! from-v to-v amount)
246 (let* ((from-balance (variable-ref from-v))
247 (to-balance (variable-ref to-v))
248 (amount (min amount from-balance)))
249 (variable-set! from-v (- from-balance amount))
250 (variable-set! to-v (+ to-balance amount))))
251
252 (transfer-counter! (effort-counter from) (effort-counter to) effort)
253 (transfer-counter! (size-counter from) (size-counter to) size))
254
255 (define (make-top-counter effort-limit size-limit continuation data)
256 (%make-counter (make-variable effort-limit)
257 (make-variable size-limit)
258 continuation
259 #t
260 data
261 #f))
262
263 (define (make-nested-counter continuation data current)
264 (let ((c (%make-counter (make-variable 0)
265 (make-variable 0)
266 continuation
267 #f
268 data
269 current)))
270 (transfer! current c)
271 c))
272
273 (define (make-recursive-counter effort-limit size-limit orig current)
274 (let ((c (%make-counter (make-variable 0)
275 (make-variable 0)
276 (counter-continuation orig)
277 #t
278 (counter-data orig)
279 current)))
280 (transfer! current c effort-limit size-limit)
281 c))
282
283 ;; Operand structures allow bindings to be processed lazily instead of
284 ;; eagerly. By doing so, hopefully we can get process them in a way
285 ;; appropriate to their use contexts. Operands also prevent values from
286 ;; being visited multiple times, wasting effort.
287 ;;
288 ;; TODO: Record value size in operand structure?
289 ;;
290 (define-record-type <operand>
291 (%make-operand var sym visit source visit-count use-count
292 copyable? residual-value constant-value alias-value)
293 operand?
294 (var operand-var)
295 (sym operand-sym)
296 (visit %operand-visit)
297 (source operand-source)
298 (visit-count operand-visit-count set-operand-visit-count!)
299 (use-count operand-use-count set-operand-use-count!)
300 (copyable? operand-copyable? set-operand-copyable?!)
301 (residual-value operand-residual-value %set-operand-residual-value!)
302 (constant-value operand-constant-value set-operand-constant-value!)
303 (alias-value operand-alias-value set-operand-alias-value!))
304
305 (define* (make-operand var sym #:optional source visit alias)
306 ;; Bind SYM to VAR, with value SOURCE. Unassigned bound operands are
307 ;; considered copyable until we prove otherwise. If we have a source
308 ;; expression, truncate it to one value. Copy propagation does not
309 ;; work on multiply-valued expressions.
310 (let ((source (and=> source truncate-values)))
311 (%make-operand var sym visit source 0 0
312 (and source (not (var-set? var))) #f #f
313 (and (not (var-set? var)) alias))))
314
315 (define* (make-bound-operands vars syms sources visit #:optional aliases)
316 (if aliases
317 (map (lambda (name sym source alias)
318 (make-operand name sym source visit alias))
319 vars syms sources aliases)
320 (map (lambda (name sym source)
321 (make-operand name sym source visit #f))
322 vars syms sources)))
323
324 (define (make-unbound-operands vars syms)
325 (map make-operand vars syms))
326
327 (define (set-operand-residual-value! op val)
328 (%set-operand-residual-value!
329 op
330 (match val
331 (($ <application> src ($ <primitive-ref> _ 'values) (first))
332 ;; The continuation of a residualized binding does not need the
333 ;; introduced `values' node, so undo the effects of truncation.
334 first)
335 (else
336 val))))
337
338 (define* (visit-operand op counter ctx #:optional effort-limit size-limit)
339 ;; Peval is O(N) in call sites of the source program. However,
340 ;; visiting an operand can introduce new call sites. If we visit an
341 ;; operand outside a counter -- i.e., outside an inlining attempt --
342 ;; this can lead to divergence. So, if we are visiting an operand to
343 ;; try to copy it, and there is no counter, make a new one.
344 ;;
345 ;; This will only happen at most as many times as there are lexical
346 ;; references in the source program.
347 (and (zero? (operand-visit-count op))
348 (dynamic-wind
349 (lambda ()
350 (set-operand-visit-count! op (1+ (operand-visit-count op))))
351 (lambda ()
352 (and (operand-source op)
353 (if (or counter (and (not effort-limit) (not size-limit)))
354 ((%operand-visit op) (operand-source op) counter ctx)
355 (let/ec k
356 (define (abort)
357 ;; If we abort when visiting the value in a
358 ;; fresh context, we won't succeed in any future
359 ;; attempt, so don't try to copy it again.
360 (set-operand-copyable?! op #f)
361 (k #f))
362 ((%operand-visit op)
363 (operand-source op)
364 (make-top-counter effort-limit size-limit abort op)
365 ctx)))))
366 (lambda ()
367 (set-operand-visit-count! op (1- (operand-visit-count op)))))))
368
369 ;; A helper for constant folding.
370 ;;
371 (define (types-check? primitive-name args)
372 (case primitive-name
373 ((values) #t)
374 ((not pair? null? list? symbol? vector? struct?)
375 (= (length args) 1))
376 ((eq? eqv? equal?)
377 (= (length args) 2))
378 ;; FIXME: add more cases?
379 (else #f)))
380
381 (define* (peval exp #:optional (cenv (current-module)) (env vlist-null)
382 #:key
383 (operator-size-limit 40)
384 (operand-size-limit 20)
385 (value-size-limit 10)
386 (effort-limit 500)
387 (recursive-effort-limit 100))
388 "Partially evaluate EXP in compilation environment CENV, with
389 top-level bindings from ENV and return the resulting expression."
390
391 ;; This is a simple partial evaluator. It effectively performs
392 ;; constant folding, copy propagation, dead code elimination, and
393 ;; inlining.
394
395 ;; TODO:
396 ;;
397 ;; Propagate copies across toplevel bindings, if we can prove the
398 ;; bindings to be immutable.
399 ;;
400 ;; Specialize lambda expressions with invariant arguments.
401
402 (define local-toplevel-env
403 ;; The top-level environment of the module being compiled.
404 (match exp
405 (($ <toplevel-define> _ name)
406 (vhash-consq name #t env))
407 (($ <sequence> _ exps)
408 (fold (lambda (x r)
409 (match x
410 (($ <toplevel-define> _ name)
411 (vhash-consq name #t r))
412 (_ r)))
413 env
414 exps))
415 (_ env)))
416
417 (define (local-toplevel? name)
418 (vhash-assq name local-toplevel-env))
419
420 ;; gensym -> <var>
421 ;; renamed-term -> original-term
422 ;;
423 (define store (build-var-table exp))
424
425 (define (record-new-temporary! name sym refcount)
426 (set! store (vhash-consq sym (make-var name sym refcount #f) store)))
427
428 (define (lookup-var sym)
429 (let ((v (vhash-assq sym store)))
430 (if v (cdr v) (error "unbound var" sym (vlist->list store)))))
431
432 (define (fresh-gensyms vars)
433 (map (lambda (var)
434 (let ((new (gensym (string-append (symbol->string (var-name var))
435 " "))))
436 (set! store (vhash-consq new var store))
437 new))
438 vars))
439
440 (define (assigned-lexical? sym)
441 (var-set? (lookup-var sym)))
442
443 (define (lexical-refcount sym)
444 (var-refcount (lookup-var sym)))
445
446 ;; ORIG has been alpha-renamed to NEW. Analyze NEW and record a link
447 ;; from it to ORIG.
448 ;;
449 (define (record-source-expression! orig new)
450 (set! store (vhash-consq new (source-expression orig) store))
451 new)
452
453 ;; Find the source expression corresponding to NEW. Used to detect
454 ;; recursive inlining attempts.
455 ;;
456 (define (source-expression new)
457 (let ((x (vhash-assq new store)))
458 (if x (cdr x) new)))
459
460 (define (record-operand-use op)
461 (set-operand-use-count! op (1+ (operand-use-count op))))
462
463 (define (unrecord-operand-uses op n)
464 (let ((count (- (operand-use-count op) n)))
465 (when (zero? count)
466 (set-operand-residual-value! op #f))
467 (set-operand-use-count! op count)))
468
469 (define* (residualize-lexical op #:optional ctx val)
470 (log 'residualize op)
471 (record-operand-use op)
472 (if (memq ctx '(value values))
473 (set-operand-residual-value! op val))
474 (make-lexical-ref #f (var-name (operand-var op)) (operand-sym op)))
475
476 (define (fold-constants src name args ctx)
477 (define (apply-primitive name args)
478 ;; todo: further optimize commutative primitives
479 (catch #t
480 (lambda ()
481 (call-with-values
482 (lambda ()
483 (apply (module-ref the-scm-module name) args))
484 (lambda results
485 (values #t results))))
486 (lambda _
487 (values #f '()))))
488
489 (define (make-values src values)
490 (match values
491 ((single) single) ; 1 value
492 ((_ ...) ; 0, or 2 or more values
493 (make-application src (make-primitive-ref src 'values)
494 values))))
495 (define (residualize-call)
496 (make-application src (make-primitive-ref #f name) args))
497 (cond
498 ((every const? args)
499 (let-values (((success? values)
500 (apply-primitive name (map const-exp args))))
501 (log 'fold success? values name args)
502 (if success?
503 (case ctx
504 ((effect) (make-void src))
505 ((test)
506 ;; Values truncation: only take the first
507 ;; value.
508 (if (pair? values)
509 (make-const src (car values))
510 (make-values src '())))
511 (else
512 (make-values src (map (cut make-const src <>) values))))
513 (residualize-call))))
514 ((and (eq? ctx 'effect) (types-check? name args))
515 (make-void #f))
516 (else
517 (residualize-call))))
518
519 (define (inline-values exp src names gensyms body)
520 (let loop ((exp exp))
521 (match exp
522 ;; Some expression types are always singly-valued.
523 ((or ($ <const>)
524 ($ <void>)
525 ($ <lambda>)
526 ($ <lexical-ref>)
527 ($ <toplevel-ref>)
528 ($ <module-ref>)
529 ($ <primitive-ref>)
530 ($ <dynref>)
531 ($ <lexical-set>) ; FIXME: these set! expressions
532 ($ <toplevel-set>) ; could return zero values in
533 ($ <toplevel-define>) ; the future
534 ($ <module-set>) ;
535 ($ <dynset>)) ;
536 (and (= (length names) 1)
537 (make-let src names gensyms (list exp) body)))
538 (($ <application> src
539 ($ <primitive-ref> _ (? singly-valued-primitive? name)))
540 (and (= (length names) 1)
541 (make-let src names gensyms (list exp) body)))
542
543 ;; Statically-known number of values.
544 (($ <application> src ($ <primitive-ref> _ 'values) vals)
545 (and (= (length names) (length vals))
546 (make-let src names gensyms vals body)))
547
548 ;; Not going to copy code into both branches.
549 (($ <conditional>) #f)
550
551 ;; Bail on other applications.
552 (($ <application>) #f)
553
554 ;; Bail on prompt and abort.
555 (($ <prompt>) #f)
556 (($ <abort>) #f)
557
558 ;; Propagate to tail positions.
559 (($ <let> src names gensyms vals body)
560 (let ((body (loop body)))
561 (and body
562 (make-let src names gensyms vals body))))
563 (($ <letrec> src in-order? names gensyms vals body)
564 (let ((body (loop body)))
565 (and body
566 (make-letrec src in-order? names gensyms vals body))))
567 (($ <fix> src names gensyms vals body)
568 (let ((body (loop body)))
569 (and body
570 (make-fix src names gensyms vals body))))
571 (($ <let-values> src exp
572 ($ <lambda-case> src2 req opt rest kw inits gensyms body #f))
573 (let ((body (loop body)))
574 (and body
575 (make-let-values src exp
576 (make-lambda-case src2 req opt rest kw
577 inits gensyms body #f)))))
578 (($ <dynwind> src winder body unwinder)
579 (let ((body (loop body)))
580 (and body
581 (make-dynwind src winder body unwinder))))
582 (($ <dynlet> src fluids vals body)
583 (let ((body (loop body)))
584 (and body
585 (make-dynlet src fluids vals body))))
586 (($ <sequence> src exps)
587 (match exps
588 ((head ... tail)
589 (let ((tail (loop tail)))
590 (and tail
591 (make-sequence src (append head (list tail)))))))))))
592
593 (define compute-effects
594 (make-effects-analyzer assigned-lexical?))
595
596 (define (constant-expression? x)
597 ;; Return true if X is constant, for the purposes of copying or
598 ;; elision---i.e., if it is known to have no effects, does not
599 ;; allocate storage for a mutable object, and does not access
600 ;; mutable data (like `car' or toplevel references).
601 (constant? (compute-effects x)))
602
603 (define (prune-bindings ops in-order? body counter ctx build-result)
604 ;; This helper handles both `let' and `letrec'/`fix'. In the latter
605 ;; cases we need to make sure that if referenced binding A needs
606 ;; as-yet-unreferenced binding B, that B is processed for value.
607 ;; Likewise if C, when processed for effect, needs otherwise
608 ;; unreferenced D, then D needs to be processed for value too.
609 ;;
610 (define (referenced? op)
611 ;; When we visit lambdas in operator context, we just copy them,
612 ;; as we will process their body later. However this does have
613 ;; the problem that any free var referenced by the lambda is not
614 ;; marked as needing residualization. Here we hack around this
615 ;; and treat all bindings as referenced if we are in operator
616 ;; context.
617 (or (eq? ctx 'operator)
618 (not (zero? (operand-use-count op)))))
619
620 ;; values := (op ...)
621 ;; effects := (op ...)
622 (define (residualize values effects)
623 ;; Note, values and effects are reversed.
624 (cond
625 (in-order?
626 (let ((values (filter operand-residual-value ops)))
627 (if (null? values)
628 body
629 (build-result (map (compose var-name operand-var) values)
630 (map operand-sym values)
631 (map operand-residual-value values)
632 body))))
633 (else
634 (let ((body
635 (if (null? effects)
636 body
637 (let ((effect-vals (map operand-residual-value effects)))
638 (make-sequence #f (reverse (cons body effect-vals)))))))
639 (if (null? values)
640 body
641 (let ((values (reverse values)))
642 (build-result (map (compose var-name operand-var) values)
643 (map operand-sym values)
644 (map operand-residual-value values)
645 body)))))))
646
647 ;; old := (bool ...)
648 ;; values := (op ...)
649 ;; effects := ((op . value) ...)
650 (let prune ((old (map referenced? ops)) (values '()) (effects '()))
651 (let lp ((ops* ops) (values values) (effects effects))
652 (cond
653 ((null? ops*)
654 (let ((new (map referenced? ops)))
655 (if (not (equal? new old))
656 (prune new values '())
657 (residualize values
658 (map (lambda (op val)
659 (set-operand-residual-value! op val)
660 op)
661 (map car effects) (map cdr effects))))))
662 (else
663 (let ((op (car ops*)))
664 (cond
665 ((memq op values)
666 (lp (cdr ops*) values effects))
667 ((operand-residual-value op)
668 (lp (cdr ops*) (cons op values) effects))
669 ((referenced? op)
670 (set-operand-residual-value! op (visit-operand op counter 'value))
671 (lp (cdr ops*) (cons op values) effects))
672 (else
673 (lp (cdr ops*)
674 values
675 (let ((effect (visit-operand op counter 'effect)))
676 (if (void? effect)
677 effects
678 (acons op effect effects))))))))))))
679
680 (define (small-expression? x limit)
681 (let/ec k
682 (tree-il-fold
683 (lambda (x res) ; leaf
684 (1+ res))
685 (lambda (x res) ; down
686 (1+ res))
687 (lambda (x res) ; up
688 (if (< res limit)
689 res
690 (k #f)))
691 0 x)
692 #t))
693
694 (define (extend-env sym op env)
695 (vhash-consq (operand-sym op) op (vhash-consq sym op env)))
696
697 (let loop ((exp exp)
698 (env vlist-null) ; vhash of gensym -> <operand>
699 (counter #f) ; inlined call stack
700 (ctx 'values)) ; effect, value, values, test, operator, or call
701 (define (lookup var)
702 (cond
703 ((vhash-assq var env) => cdr)
704 (else (error "unbound var" var))))
705
706 ;; Find a value referenced a specific number of times. This is a hack
707 ;; that's used for propagating fresh data structures like rest lists and
708 ;; prompt tags. Usually we wouldn't copy consed data, but we can do so in
709 ;; some special cases like `apply' or prompts if we can account
710 ;; for all of its uses.
711 ;;
712 ;; You don't want to use this in general because it doesn't run the full
713 ;; partial evaluator, so it doesn't fold constant expressions, etc.
714 ;;
715 (define (find-definition x n-aliases)
716 (cond
717 ((lexical-ref? x)
718 (cond
719 ((lookup (lexical-ref-gensym x))
720 => (lambda (op)
721 (let ((y (or (operand-residual-value op)
722 (visit-operand op counter 'value 10 10))))
723 (cond
724 ((and (lexical-ref? y)
725 (= (lexical-refcount (lexical-ref-gensym x)) 1))
726 ;; X is a simple alias for Y. Recurse, regardless of
727 ;; the number of aliases we were expecting.
728 (find-definition y n-aliases))
729 ((= (lexical-refcount (lexical-ref-gensym x)) n-aliases)
730 ;; We found a definition that is aliased the right
731 ;; number of times. We still recurse in case it is a
732 ;; lexical.
733 (values (find-definition y 1)
734 op))
735 (else
736 ;; We can't account for our aliases.
737 (values #f #f))))))
738 (else
739 ;; A formal parameter. Can't say anything about that.
740 (values #f #f))))
741 ((= n-aliases 1)
742 ;; Not a lexical: success, but only if we are looking for an
743 ;; unaliased value.
744 (values x #f))
745 (else (values #f #f))))
746
747 (define (visit exp ctx)
748 (loop exp env counter ctx))
749
750 (define (for-value exp) (visit exp 'value))
751 (define (for-values exp) (visit exp 'values))
752 (define (for-test exp) (visit exp 'test))
753 (define (for-effect exp) (visit exp 'effect))
754 (define (for-call exp) (visit exp 'call))
755 (define (for-tail exp) (visit exp ctx))
756
757 (if counter
758 (record-effort! counter))
759
760 (log 'visit ctx (and=> counter effort-counter)
761 (unparse-tree-il exp))
762
763 (match exp
764 (($ <const>)
765 (case ctx
766 ((effect) (make-void #f))
767 (else exp)))
768 (($ <void>)
769 (case ctx
770 ((test) (make-const #f #t))
771 (else exp)))
772 (($ <lexical-ref> _ _ gensym)
773 (log 'begin-copy gensym)
774 (let ((op (lookup gensym)))
775 (cond
776 ((eq? ctx 'effect)
777 (log 'lexical-for-effect gensym)
778 (make-void #f))
779 ((operand-alias-value op)
780 ;; This is an unassigned operand that simply aliases some
781 ;; other operand. Recurse to avoid residualizing the leaf
782 ;; binding.
783 => for-tail)
784 ((eq? ctx 'call)
785 ;; Don't propagate copies if we are residualizing a call.
786 (log 'residualize-lexical-call gensym op)
787 (residualize-lexical op))
788 ((var-set? (operand-var op))
789 ;; Assigned lexicals don't copy-propagate.
790 (log 'assigned-var gensym op)
791 (residualize-lexical op))
792 ((not (operand-copyable? op))
793 ;; We already know that this operand is not copyable.
794 (log 'not-copyable gensym op)
795 (residualize-lexical op))
796 ((and=> (operand-constant-value op)
797 (lambda (x) (or (const? x) (void? x) (primitive-ref? x))))
798 ;; A cache hit.
799 (let ((val (operand-constant-value op)))
800 (log 'memoized-constant gensym val)
801 (for-tail val)))
802 ((visit-operand op counter (if (eq? ctx 'values) 'value ctx)
803 recursive-effort-limit operand-size-limit)
804 =>
805 ;; If we end up deciding to residualize this value instead of
806 ;; copying it, save that residualized value.
807 (lambda (val)
808 (cond
809 ((not (constant-expression? val))
810 (log 'not-constant gensym op)
811 ;; At this point, ctx is operator, test, or value. A
812 ;; value that is non-constant in one context will be
813 ;; non-constant in the others, so it's safe to record
814 ;; that here, and avoid future visits.
815 (set-operand-copyable?! op #f)
816 (residualize-lexical op ctx val))
817 ((or (const? val)
818 (void? val)
819 (primitive-ref? val))
820 ;; Always propagate simple values that cannot lead to
821 ;; code bloat.
822 (log 'copy-simple gensym val)
823 ;; It could be this constant is the result of folding.
824 ;; If that is the case, cache it. This helps loop
825 ;; unrolling get farther.
826 (if (or (eq? ctx 'value) (eq? ctx 'values))
827 (begin
828 (log 'memoize-constant gensym val)
829 (set-operand-constant-value! op val)))
830 val)
831 ((= 1 (var-refcount (operand-var op)))
832 ;; Always propagate values referenced only once.
833 (log 'copy-single gensym val)
834 val)
835 ;; FIXME: do demand-driven size accounting rather than
836 ;; these heuristics.
837 ((eq? ctx 'operator)
838 ;; A pure expression in the operator position. Inline
839 ;; if it's a lambda that's small enough.
840 (if (and (lambda? val)
841 (small-expression? val operator-size-limit))
842 (begin
843 (log 'copy-operator gensym val)
844 val)
845 (begin
846 (log 'too-big-for-operator gensym val)
847 (residualize-lexical op ctx val))))
848 (else
849 ;; A pure expression, processed for call or for value.
850 ;; Don't inline lambdas, because they will probably won't
851 ;; fold because we don't know the operator.
852 (if (and (small-expression? val value-size-limit)
853 (not (tree-il-any lambda? val)))
854 (begin
855 (log 'copy-value gensym val)
856 val)
857 (begin
858 (log 'too-big-or-has-lambda gensym val)
859 (residualize-lexical op ctx val)))))))
860 (else
861 ;; Visit failed. Either the operand isn't bound, as in
862 ;; lambda formal parameters, or the copy was aborted.
863 (log 'unbound-or-aborted gensym op)
864 (residualize-lexical op)))))
865 (($ <lexical-set> src name gensym exp)
866 (let ((op (lookup gensym)))
867 (if (zero? (var-refcount (operand-var op)))
868 (let ((exp (for-effect exp)))
869 (if (void? exp)
870 exp
871 (make-sequence src (list exp (make-void #f)))))
872 (begin
873 (record-operand-use op)
874 (make-lexical-set src name (operand-sym op) (for-value exp))))))
875 (($ <let> src names gensyms vals body)
876 (define (compute-alias exp)
877 ;; It's very common for macros to introduce something like:
878 ;;
879 ;; ((lambda (x y) ...) x-exp y-exp)
880 ;;
881 ;; In that case you might end up trying to inline something like:
882 ;;
883 ;; (let ((x x-exp) (y y-exp)) ...)
884 ;;
885 ;; But if x-exp is itself a lexical-ref that aliases some much
886 ;; larger expression, perhaps it will fail to inline due to
887 ;; size. However we don't want to introduce a useless alias
888 ;; (in this case, x). So if the RHS of a let expression is a
889 ;; lexical-ref, we record that expression. If we end up having
890 ;; to residualize X, then instead we residualize X-EXP, as long
891 ;; as it isn't assigned.
892 ;;
893 (match exp
894 (($ <lexical-ref> _ _ sym)
895 (let ((op (lookup sym)))
896 (and (not (var-set? (operand-var op)))
897 (or (operand-alias-value op)
898 exp))))
899 (_ #f)))
900
901 (let* ((vars (map lookup-var gensyms))
902 (new (fresh-gensyms vars))
903 (ops (make-bound-operands vars new vals
904 (lambda (exp counter ctx)
905 (loop exp env counter ctx))
906 (map compute-alias vals)))
907 (env (fold extend-env env gensyms ops))
908 (body (loop body env counter ctx)))
909 (cond
910 ((const? body)
911 (for-tail (make-sequence src (append vals (list body)))))
912 ((and (lexical-ref? body)
913 (memq (lexical-ref-gensym body) new))
914 (let ((sym (lexical-ref-gensym body))
915 (pairs (map cons new vals)))
916 ;; (let ((x foo) (y bar) ...) x) => (begin bar ... foo)
917 (for-tail
918 (make-sequence
919 src
920 (append (map cdr (alist-delete sym pairs eq?))
921 (list (assq-ref pairs sym)))))))
922 (else
923 ;; Only include bindings for which lexical references
924 ;; have been residualized.
925 (prune-bindings ops #f body counter ctx
926 (lambda (names gensyms vals body)
927 (if (null? names) (error "what!" names))
928 (make-let src names gensyms vals body)))))))
929 (($ <letrec> src in-order? names gensyms vals body)
930 ;; Note the difference from the `let' case: here we use letrec*
931 ;; so that the `visit' procedure for the new operands closes over
932 ;; an environment that includes the operands. Also we don't try
933 ;; to elide aliases, because we can't sensibly reduce something
934 ;; like (letrec ((a b) (b a)) a).
935 (letrec* ((visit (lambda (exp counter ctx)
936 (loop exp env* counter ctx)))
937 (vars (map lookup-var gensyms))
938 (new (fresh-gensyms vars))
939 (ops (make-bound-operands vars new vals visit))
940 (env* (fold extend-env env gensyms ops))
941 (body* (visit body counter ctx)))
942 (if (and (const? body*) (every constant-expression? vals))
943 ;; We may have folded a loop completely, even though there
944 ;; might be cyclical references between the bound values.
945 ;; Handle this degenerate case specially.
946 body*
947 (prune-bindings ops in-order? body* counter ctx
948 (lambda (names gensyms vals body)
949 (make-letrec src in-order?
950 names gensyms vals body))))))
951 (($ <fix> src names gensyms vals body)
952 (letrec* ((visit (lambda (exp counter ctx)
953 (loop exp env* counter ctx)))
954 (vars (map lookup-var gensyms))
955 (new (fresh-gensyms vars))
956 (ops (make-bound-operands vars new vals visit))
957 (env* (fold extend-env env gensyms ops))
958 (body* (visit body counter ctx)))
959 (if (const? body*)
960 body*
961 (prune-bindings ops #f body* counter ctx
962 (lambda (names gensyms vals body)
963 (make-fix src names gensyms vals body))))))
964 (($ <let-values> lv-src producer consumer)
965 ;; Peval the producer, then try to inline the consumer into
966 ;; the producer. If that succeeds, peval again. Otherwise
967 ;; reconstruct the let-values, pevaling the consumer.
968 (let ((producer (for-values producer)))
969 (or (match consumer
970 (($ <lambda-case> src req #f #f #f () gensyms body #f)
971 (cond
972 ((inline-values producer src req gensyms body)
973 => for-tail)
974 (else #f)))
975 (_ #f))
976 (make-let-values lv-src producer (for-tail consumer)))))
977 (($ <dynwind> src winder body unwinder)
978 (let ((pre (for-value winder))
979 (body (for-tail body))
980 (post (for-value unwinder)))
981 (cond
982 ((not (constant-expression? pre))
983 (cond
984 ((not (constant-expression? post))
985 (let ((pre-sym (gensym "pre-")) (post-sym (gensym "post-")))
986 (record-new-temporary! 'pre pre-sym 1)
987 (record-new-temporary! 'post post-sym 1)
988 (make-let src '(pre post) (list pre-sym post-sym) (list pre post)
989 (make-dynwind src
990 (make-lexical-ref #f 'pre pre-sym)
991 body
992 (make-lexical-ref #f 'post post-sym)))))
993 (else
994 (let ((pre-sym (gensym "pre-")))
995 (record-new-temporary! 'pre pre-sym 1)
996 (make-let src '(pre) (list pre-sym) (list pre)
997 (make-dynwind src
998 (make-lexical-ref #f 'pre pre-sym)
999 body
1000 post))))))
1001 ((not (constant-expression? post))
1002 (let ((post-sym (gensym "post-")))
1003 (record-new-temporary! 'post post-sym 1)
1004 (make-let src '(post) (list post-sym) (list post)
1005 (make-dynwind src
1006 pre
1007 body
1008 (make-lexical-ref #f 'post post-sym)))))
1009 (else
1010 (make-dynwind src pre body post)))))
1011 (($ <dynlet> src fluids vals body)
1012 (make-dynlet src (map for-value fluids) (map for-value vals)
1013 (for-tail body)))
1014 (($ <dynref> src fluid)
1015 (make-dynref src (for-value fluid)))
1016 (($ <dynset> src fluid exp)
1017 (make-dynset src (for-value fluid) (for-value exp)))
1018 (($ <toplevel-ref> src (? effect-free-primitive? name))
1019 (if (local-toplevel? name)
1020 exp
1021 (let ((exp (resolve-primitives! exp cenv)))
1022 (if (primitive-ref? exp)
1023 (for-tail exp)
1024 exp))))
1025 (($ <toplevel-ref>)
1026 ;; todo: open private local bindings.
1027 exp)
1028 (($ <module-ref> src module (? effect-free-primitive? name) #f)
1029 (let ((module (false-if-exception
1030 (resolve-module module #:ensure #f))))
1031 (if (module? module)
1032 (let ((var (module-variable module name)))
1033 (if (eq? var (module-variable the-scm-module name))
1034 (make-primitive-ref src name)
1035 exp))
1036 exp)))
1037 (($ <module-ref>)
1038 exp)
1039 (($ <module-set> src mod name public? exp)
1040 (make-module-set src mod name public? (for-value exp)))
1041 (($ <toplevel-define> src name exp)
1042 (make-toplevel-define src name (for-value exp)))
1043 (($ <toplevel-set> src name exp)
1044 (make-toplevel-set src name (for-value exp)))
1045 (($ <primitive-ref>)
1046 (case ctx
1047 ((effect) (make-void #f))
1048 ((test) (make-const #f #t))
1049 (else exp)))
1050 (($ <conditional> src condition subsequent alternate)
1051 (define (call-with-failure-thunk exp proc)
1052 (match exp
1053 (($ <application> _ _ ()) (proc exp))
1054 (($ <const>) (proc exp))
1055 (($ <void>) (proc exp))
1056 (($ <lexical-ref>) (proc exp))
1057 (_
1058 (let ((t (gensym "failure-")))
1059 (record-new-temporary! 'failure t 2)
1060 (make-let
1061 src (list 'failure) (list t)
1062 (list
1063 (make-lambda
1064 #f '()
1065 (make-lambda-case #f '() #f #f #f '() '() exp #f)))
1066 (proc (make-application #f (make-lexical-ref #f 'failure t)
1067 '())))))))
1068 (define (simplify-conditional c)
1069 (match c
1070 ;; Swap the arms of (if (not FOO) A B), to simplify.
1071 (($ <conditional> src
1072 ($ <application> _ ($ <primitive-ref> _ 'not) (pred))
1073 subsequent alternate)
1074 (simplify-conditional
1075 (make-conditional src pred alternate subsequent)))
1076 ;; Special cases for common tests in the predicates of chains
1077 ;; of if expressions.
1078 (($ <conditional> src
1079 ($ <conditional> src* outer-test inner-test ($ <const> _ #f))
1080 inner-subsequent
1081 alternate)
1082 (let lp ((alternate alternate))
1083 (match alternate
1084 ;; Lift a common repeated test out of a chain of if
1085 ;; expressions.
1086 (($ <conditional> _ (? (cut tree-il=? outer-test <>))
1087 other-subsequent alternate)
1088 (make-conditional
1089 src outer-test
1090 (simplify-conditional
1091 (make-conditional src* inner-test inner-subsequent
1092 other-subsequent))
1093 alternate))
1094 ;; Likewise, but punching through any surrounding
1095 ;; failure continuations.
1096 (($ <let> let-src (name) (sym) ((and thunk ($ <lambda>))) body)
1097 (make-let
1098 let-src (list name) (list sym) (list thunk)
1099 (lp body)))
1100 ;; Otherwise, rotate AND tests to expose a simple
1101 ;; condition in the front. Although this may result in
1102 ;; lexically binding failure thunks, the thunks will be
1103 ;; compiled to labels allocation, so there's no actual
1104 ;; code growth.
1105 (_
1106 (call-with-failure-thunk
1107 alternate
1108 (lambda (failure)
1109 (make-conditional
1110 src outer-test
1111 (simplify-conditional
1112 (make-conditional src* inner-test inner-subsequent failure))
1113 failure)))))))
1114 (_ c)))
1115 (match (for-test condition)
1116 (($ <const> _ val)
1117 (if val
1118 (for-tail subsequent)
1119 (for-tail alternate)))
1120 (c
1121 (simplify-conditional
1122 (make-conditional src c (for-tail subsequent)
1123 (for-tail alternate))))))
1124 (($ <application> src
1125 ($ <primitive-ref> _ '@call-with-values)
1126 (producer
1127 ($ <lambda> _ _
1128 (and consumer
1129 ;; No optional or kwargs.
1130 ($ <lambda-case>
1131 _ req #f rest #f () gensyms body #f)))))
1132 (for-tail (make-let-values src (make-application src producer '())
1133 consumer)))
1134 (($ <application> src ($ <primitive-ref> _ 'values) exps)
1135 (cond
1136 ((null? exps)
1137 (if (eq? ctx 'effect)
1138 (make-void #f)
1139 exp))
1140 (else
1141 (let ((vals (map for-value exps)))
1142 (if (and (case ctx
1143 ((value test effect) #t)
1144 (else (null? (cdr vals))))
1145 (every singly-valued-expression? vals))
1146 (for-tail (make-sequence src (append (cdr vals) (list (car vals)))))
1147 (make-application src (make-primitive-ref #f 'values) vals))))))
1148 (($ <application> src (and apply ($ <primitive-ref> _ (or 'apply '@apply)))
1149 (proc args ... tail))
1150 (let lp ((tail* (find-definition tail 1)) (speculative? #t))
1151 (match tail*
1152 (($ <const> _ (args* ...))
1153 (let ((args* (map (cut make-const #f <>) args*)))
1154 (for-tail (make-application src proc (append args args*)))))
1155 (($ <application> _ ($ <primitive-ref> _ 'cons) (head tail))
1156 (for-tail (make-application src apply
1157 (cons proc
1158 (append args (list head tail))))))
1159 (($ <application> _ ($ <primitive-ref> _ 'list) args*)
1160 (for-tail (make-application src proc (append args args*))))
1161 (tail*
1162 (if speculative?
1163 (lp (for-value tail) #f)
1164 (let ((args (append (map for-value args) (list tail*))))
1165 (make-application src apply
1166 (cons (for-value proc) args))))))))
1167 (($ <application> src orig-proc orig-args)
1168 ;; todo: augment the global env with specialized functions
1169 (let revisit-proc ((proc (visit orig-proc 'operator)))
1170 (match proc
1171 (($ <primitive-ref> _ (? constructor-primitive? name))
1172 (cond
1173 ((and (memq ctx '(effect test))
1174 (match (cons name orig-args)
1175 ((or ('cons _ _)
1176 ('list . _)
1177 ('vector . _)
1178 ('make-prompt-tag)
1179 ('make-prompt-tag ($ <const> _ (? string?))))
1180 #t)
1181 (_ #f)))
1182 ;; Some expressions can be folded without visiting the
1183 ;; arguments for value.
1184 (let ((res (if (eq? ctx 'effect)
1185 (make-void #f)
1186 (make-const #f #t))))
1187 (for-tail (make-sequence src (append orig-args (list res))))))
1188 (else
1189 (match (cons name (map for-value orig-args))
1190 (('cons head tail)
1191 (match tail
1192 (($ <const> src (? (cut eq? <> '())))
1193 (make-application src (make-primitive-ref #f 'list)
1194 (list head)))
1195 (($ <application> src ($ <primitive-ref> _ 'list) elts)
1196 (make-application src (make-primitive-ref #f 'list)
1197 (cons head elts)))
1198 (_ (make-application src proc (list head tail)))))
1199 ((_ . args)
1200 (make-application src proc args))))))
1201 (($ <primitive-ref> _ (? accessor-primitive? name))
1202 (match (cons name (map for-value orig-args))
1203 ;; FIXME: these for-tail recursions could take place outside
1204 ;; an effort counter.
1205 (('car ($ <application> src ($ <primitive-ref> _ 'cons) (head tail)))
1206 (for-tail (make-sequence src (list tail head))))
1207 (('cdr ($ <application> src ($ <primitive-ref> _ 'cons) (head tail)))
1208 (for-tail (make-sequence src (list head tail))))
1209 (('car ($ <application> src ($ <primitive-ref> _ 'list) (head . tail)))
1210 (for-tail (make-sequence src (append tail (list head)))))
1211 (('cdr ($ <application> src ($ <primitive-ref> _ 'list) (head . tail)))
1212 (for-tail (make-sequence
1213 src
1214 (list head
1215 (make-application
1216 src (make-primitive-ref #f 'list) tail)))))
1217
1218 (('car ($ <const> src (head . tail)))
1219 (for-tail (make-const src head)))
1220 (('cdr ($ <const> src (head . tail)))
1221 (for-tail (make-const src tail)))
1222 (((or 'memq 'memv) k ($ <const> _ (elts ...)))
1223 ;; FIXME: factor
1224 (case ctx
1225 ((effect)
1226 (for-tail
1227 (make-sequence src (list k (make-void #f)))))
1228 ((test)
1229 (cond
1230 ((const? k)
1231 ;; A shortcut. The `else' case would handle it, but
1232 ;; this way is faster.
1233 (let ((member (case name ((memq) memq) ((memv) memv))))
1234 (make-const #f (and (member (const-exp k) elts) #t))))
1235 ((null? elts)
1236 (for-tail
1237 (make-sequence src (list k (make-const #f #f)))))
1238 (else
1239 (let ((t (gensym "t-"))
1240 (eq (if (eq? name 'memq) 'eq? 'eqv?)))
1241 (record-new-temporary! 't t (length elts))
1242 (for-tail
1243 (make-let
1244 src (list 't) (list t) (list k)
1245 (let lp ((elts elts))
1246 (define test
1247 (make-application
1248 #f (make-primitive-ref #f eq)
1249 (list (make-lexical-ref #f 't t)
1250 (make-const #f (car elts)))))
1251 (if (null? (cdr elts))
1252 test
1253 (make-conditional src test
1254 (make-const #f #t)
1255 (lp (cdr elts)))))))))))
1256 (else
1257 (cond
1258 ((const? k)
1259 (let ((member (case name ((memq) memq) ((memv) memv))))
1260 (make-const #f (member (const-exp k) elts))))
1261 ((null? elts)
1262 (for-tail (make-sequence src (list k (make-const #f #f)))))
1263 (else
1264 (make-application src proc (list k (make-const #f elts))))))))
1265 ((_ . args)
1266 (or (fold-constants src name args ctx)
1267 (make-application src proc args)))))
1268 (($ <primitive-ref> _ (? effect-free-primitive? name))
1269 (let ((args (map for-value orig-args)))
1270 (or (fold-constants src name args ctx)
1271 (make-application src proc args))))
1272 (($ <lambda> _ _
1273 ($ <lambda-case> _ req opt rest #f inits gensyms body #f))
1274 ;; Simple case: no keyword arguments.
1275 ;; todo: handle the more complex cases
1276 (let* ((nargs (length orig-args))
1277 (nreq (length req))
1278 (nopt (if opt (length opt) 0))
1279 (key (source-expression proc)))
1280 (define (inlined-application)
1281 (make-let src
1282 (append req
1283 (or opt '())
1284 (if rest (list rest) '()))
1285 gensyms
1286 (if (> nargs (+ nreq nopt))
1287 (append (list-head orig-args (+ nreq nopt))
1288 (list
1289 (make-application
1290 #f
1291 (make-primitive-ref #f 'list)
1292 (drop orig-args (+ nreq nopt)))))
1293 (append orig-args
1294 (drop inits (- nargs nreq))
1295 (if rest
1296 (list (make-const #f '()))
1297 '())))
1298 body))
1299
1300 (cond
1301 ((or (< nargs nreq) (and (not rest) (> nargs (+ nreq nopt))))
1302 ;; An error, or effecting arguments.
1303 (make-application src (for-call orig-proc)
1304 (map for-value orig-args)))
1305 ((or (and=> (find-counter key counter) counter-recursive?)
1306 (lambda? orig-proc))
1307 ;; A recursive call, or a lambda in the operator
1308 ;; position of the source expression. Process again in
1309 ;; tail context.
1310 ;;
1311 ;; In the recursive case, mark intervening counters as
1312 ;; recursive, so we can handle a toplevel counter that
1313 ;; recurses mutually with some other procedure.
1314 ;; Otherwise, the next time we see the other procedure,
1315 ;; the effort limit would be clamped to 100.
1316 ;;
1317 (let ((found (find-counter key counter)))
1318 (if (and found (counter-recursive? found))
1319 (let lp ((counter counter))
1320 (if (not (eq? counter found))
1321 (begin
1322 (set-counter-recursive?! counter #t)
1323 (lp (counter-prev counter)))))))
1324
1325 (log 'inline-recurse key)
1326 (loop (inlined-application) env counter ctx))
1327 (else
1328 ;; An integration at the top-level, the first
1329 ;; recursion of a recursive procedure, or a nested
1330 ;; integration of a procedure that hasn't been seen
1331 ;; yet.
1332 (log 'inline-begin exp)
1333 (let/ec k
1334 (define (abort)
1335 (log 'inline-abort exp)
1336 (k (make-application src (for-call orig-proc)
1337 (map for-value orig-args))))
1338 (define new-counter
1339 (cond
1340 ;; These first two cases will transfer effort
1341 ;; from the current counter into the new
1342 ;; counter.
1343 ((find-counter key counter)
1344 => (lambda (prev)
1345 (make-recursive-counter recursive-effort-limit
1346 operand-size-limit
1347 prev counter)))
1348 (counter
1349 (make-nested-counter abort key counter))
1350 ;; This case opens a new account, effectively
1351 ;; printing money. It should only do so once
1352 ;; for each call site in the source program.
1353 (else
1354 (make-top-counter effort-limit operand-size-limit
1355 abort key))))
1356 (define result
1357 (loop (inlined-application) env new-counter ctx))
1358
1359 (if counter
1360 ;; The nested inlining attempt succeeded.
1361 ;; Deposit the unspent effort and size back
1362 ;; into the current counter.
1363 (transfer! new-counter counter))
1364
1365 (log 'inline-end result exp)
1366 result)))))
1367 (($ <let> _ _ _ vals _)
1368 ;; Attempt to inline `let' in the operator position.
1369 ;;
1370 ;; We have to re-visit the proc in value mode, since the
1371 ;; `let' bindings might have been introduced or renamed,
1372 ;; whereas the lambda (if any) in operator position has not
1373 ;; been renamed.
1374 (if (or (and-map constant-expression? vals)
1375 (and-map constant-expression? orig-args))
1376 ;; The arguments and the let-bound values commute.
1377 (match (for-value orig-proc)
1378 (($ <let> lsrc names syms vals body)
1379 (log 'inline-let orig-proc)
1380 (for-tail
1381 (make-let lsrc names syms vals
1382 (make-application src body orig-args))))
1383 ;; It's possible for a `let' to go away after the
1384 ;; visit due to the fact that visiting a procedure in
1385 ;; value context will prune unused bindings, whereas
1386 ;; visiting in operator mode can't because it doesn't
1387 ;; traverse through lambdas. In that case re-visit
1388 ;; the procedure.
1389 (proc (revisit-proc proc)))
1390 (make-application src (for-call orig-proc)
1391 (map for-value orig-args))))
1392 (_
1393 (make-application src (for-call orig-proc)
1394 (map for-value orig-args))))))
1395 (($ <lambda> src meta body)
1396 (case ctx
1397 ((effect) (make-void #f))
1398 ((test) (make-const #f #t))
1399 ((operator) exp)
1400 (else (record-source-expression!
1401 exp
1402 (make-lambda src meta (for-values body))))))
1403 (($ <lambda-case> src req opt rest kw inits gensyms body alt)
1404 (define (lift-applied-lambda body gensyms)
1405 (and (not opt) rest (not kw)
1406 (match body
1407 (($ <application> _
1408 ($ <primitive-ref> _ '@apply)
1409 (($ <lambda> _ _ lcase)
1410 ($ <lexical-ref> _ _ sym)
1411 ...))
1412 (and (equal? sym gensyms)
1413 (not (lambda-case-alternate lcase))
1414 lcase))
1415 (_ #f))))
1416 (let* ((vars (map lookup-var gensyms))
1417 (new (fresh-gensyms vars))
1418 (env (fold extend-env env gensyms
1419 (make-unbound-operands vars new)))
1420 (new-sym (lambda (old)
1421 (operand-sym (cdr (vhash-assq old env)))))
1422 (body (loop body env counter ctx)))
1423 (or
1424 ;; (lambda args (apply (lambda ...) args)) => (lambda ...)
1425 (lift-applied-lambda body new)
1426 (make-lambda-case src req opt rest
1427 (match kw
1428 ((aok? (kw name old) ...)
1429 (cons aok? (map list kw name (map new-sym old))))
1430 (_ #f))
1431 (map (cut loop <> env counter 'value) inits)
1432 new
1433 body
1434 (and alt (for-tail alt))))))
1435 (($ <sequence> src exps)
1436 (let lp ((exps exps) (effects '()))
1437 (match exps
1438 ((last)
1439 (if (null? effects)
1440 (for-tail last)
1441 (make-sequence
1442 src
1443 (reverse (cons (for-tail last) effects)))))
1444 ((head . rest)
1445 (let ((head (for-effect head)))
1446 (cond
1447 ((sequence? head)
1448 (lp (append (sequence-exps head) rest) effects))
1449 ((void? head)
1450 (lp rest effects))
1451 (else
1452 (lp rest (cons head effects)))))))))
1453 (($ <prompt> src tag body handler)
1454 (define (make-prompt-tag? x)
1455 (match x
1456 (($ <application> _ ($ <primitive-ref> _ 'make-prompt-tag)
1457 (or () ((? constant-expression?))))
1458 #t)
1459 (_ #f)))
1460
1461 (let ((tag (for-value tag))
1462 (body (for-tail body)))
1463 (cond
1464 ((find-definition tag 1)
1465 (lambda (val op)
1466 (make-prompt-tag? val))
1467 => (lambda (val op)
1468 ;; There is no way that an <abort> could know the tag
1469 ;; for this <prompt>, so we can elide the <prompt>
1470 ;; entirely.
1471 (unrecord-operand-uses op 1)
1472 body))
1473 ((find-definition tag 2)
1474 (lambda (val op)
1475 (and (make-prompt-tag? val)
1476 (abort? body)
1477 (tree-il=? (abort-tag body) tag)))
1478 => (lambda (val op)
1479 ;; (let ((t (make-prompt-tag)))
1480 ;; (call-with-prompt t
1481 ;; (lambda () (abort-to-prompt t val ...))
1482 ;; (lambda (k arg ...) e ...)))
1483 ;; => (let-values (((k arg ...) (values values val ...)))
1484 ;; e ...)
1485 (unrecord-operand-uses op 2)
1486 (for-tail
1487 (make-let-values
1488 src
1489 (make-application #f (make-primitive-ref #f 'apply)
1490 `(,(make-primitive-ref #f 'values)
1491 ,(make-primitive-ref #f 'values)
1492 ,@(abort-args body)
1493 ,(abort-tail body)))
1494 (for-value handler)))))
1495 (else
1496 (make-prompt src tag body (for-value handler))))))
1497 (($ <abort> src tag args tail)
1498 (make-abort src (for-value tag) (map for-value args)
1499 (for-value tail))))))