More procedure-arguments-alist documentation and a bugfix
[bpt/guile.git] / module / language / tree-il / peval.scm
1 ;;; Tree-IL partial evaluator
2
3 ;; Copyright (C) 2011, 2012 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 (define (visit exp ctx)
707 (loop exp env counter ctx))
708
709 (define (for-value exp) (visit exp 'value))
710 (define (for-values exp) (visit exp 'values))
711 (define (for-test exp) (visit exp 'test))
712 (define (for-effect exp) (visit exp 'effect))
713 (define (for-call exp) (visit exp 'call))
714 (define (for-tail exp) (visit exp ctx))
715
716 (if counter
717 (record-effort! counter))
718
719 (log 'visit ctx (and=> counter effort-counter)
720 (unparse-tree-il exp))
721
722 (match exp
723 (($ <const>)
724 (case ctx
725 ((effect) (make-void #f))
726 (else exp)))
727 (($ <void>)
728 (case ctx
729 ((test) (make-const #f #t))
730 (else exp)))
731 (($ <lexical-ref> _ _ gensym)
732 (log 'begin-copy gensym)
733 (let ((op (lookup gensym)))
734 (cond
735 ((eq? ctx 'effect)
736 (log 'lexical-for-effect gensym)
737 (make-void #f))
738 ((operand-alias-value op)
739 ;; This is an unassigned operand that simply aliases some
740 ;; other operand. Recurse to avoid residualizing the leaf
741 ;; binding.
742 => for-tail)
743 ((eq? ctx 'call)
744 ;; Don't propagate copies if we are residualizing a call.
745 (log 'residualize-lexical-call gensym op)
746 (residualize-lexical op))
747 ((var-set? (operand-var op))
748 ;; Assigned lexicals don't copy-propagate.
749 (log 'assigned-var gensym op)
750 (residualize-lexical op))
751 ((not (operand-copyable? op))
752 ;; We already know that this operand is not copyable.
753 (log 'not-copyable gensym op)
754 (residualize-lexical op))
755 ((and=> (operand-constant-value op)
756 (lambda (x) (or (const? x) (void? x) (primitive-ref? x))))
757 ;; A cache hit.
758 (let ((val (operand-constant-value op)))
759 (log 'memoized-constant gensym val)
760 (for-tail val)))
761 ((visit-operand op counter (if (eq? ctx 'values) 'value ctx)
762 recursive-effort-limit operand-size-limit)
763 =>
764 ;; If we end up deciding to residualize this value instead of
765 ;; copying it, save that residualized value.
766 (lambda (val)
767 (cond
768 ((not (constant-expression? val))
769 (log 'not-constant gensym op)
770 ;; At this point, ctx is operator, test, or value. A
771 ;; value that is non-constant in one context will be
772 ;; non-constant in the others, so it's safe to record
773 ;; that here, and avoid future visits.
774 (set-operand-copyable?! op #f)
775 (residualize-lexical op ctx val))
776 ((or (const? val)
777 (void? val)
778 (primitive-ref? val))
779 ;; Always propagate simple values that cannot lead to
780 ;; code bloat.
781 (log 'copy-simple gensym val)
782 ;; It could be this constant is the result of folding.
783 ;; If that is the case, cache it. This helps loop
784 ;; unrolling get farther.
785 (if (or (eq? ctx 'value) (eq? ctx 'values))
786 (begin
787 (log 'memoize-constant gensym val)
788 (set-operand-constant-value! op val)))
789 val)
790 ((= 1 (var-refcount (operand-var op)))
791 ;; Always propagate values referenced only once.
792 (log 'copy-single gensym val)
793 val)
794 ;; FIXME: do demand-driven size accounting rather than
795 ;; these heuristics.
796 ((eq? ctx 'operator)
797 ;; A pure expression in the operator position. Inline
798 ;; if it's a lambda that's small enough.
799 (if (and (lambda? val)
800 (small-expression? val operator-size-limit))
801 (begin
802 (log 'copy-operator gensym val)
803 val)
804 (begin
805 (log 'too-big-for-operator gensym val)
806 (residualize-lexical op ctx val))))
807 (else
808 ;; A pure expression, processed for call or for value.
809 ;; Don't inline lambdas, because they will probably won't
810 ;; fold because we don't know the operator.
811 (if (and (small-expression? val value-size-limit)
812 (not (tree-il-any lambda? val)))
813 (begin
814 (log 'copy-value gensym val)
815 val)
816 (begin
817 (log 'too-big-or-has-lambda gensym val)
818 (residualize-lexical op ctx val)))))))
819 (else
820 ;; Visit failed. Either the operand isn't bound, as in
821 ;; lambda formal parameters, or the copy was aborted.
822 (log 'unbound-or-aborted gensym op)
823 (residualize-lexical op)))))
824 (($ <lexical-set> src name gensym exp)
825 (let ((op (lookup gensym)))
826 (if (zero? (var-refcount (operand-var op)))
827 (let ((exp (for-effect exp)))
828 (if (void? exp)
829 exp
830 (make-sequence src (list exp (make-void #f)))))
831 (begin
832 (record-operand-use op)
833 (make-lexical-set src name (operand-sym op) (for-value exp))))))
834 (($ <let> src names gensyms vals body)
835 (define (compute-alias exp)
836 ;; It's very common for macros to introduce something like:
837 ;;
838 ;; ((lambda (x y) ...) x-exp y-exp)
839 ;;
840 ;; In that case you might end up trying to inline something like:
841 ;;
842 ;; (let ((x x-exp) (y y-exp)) ...)
843 ;;
844 ;; But if x-exp is itself a lexical-ref that aliases some much
845 ;; larger expression, perhaps it will fail to inline due to
846 ;; size. However we don't want to introduce a useless alias
847 ;; (in this case, x). So if the RHS of a let expression is a
848 ;; lexical-ref, we record that expression. If we end up having
849 ;; to residualize X, then instead we residualize X-EXP, as long
850 ;; as it isn't assigned.
851 ;;
852 (match exp
853 (($ <lexical-ref> _ _ sym)
854 (let ((op (lookup sym)))
855 (and (not (var-set? (operand-var op)))
856 (or (operand-alias-value op)
857 exp))))
858 (_ #f)))
859
860 (let* ((vars (map lookup-var gensyms))
861 (new (fresh-gensyms vars))
862 (ops (make-bound-operands vars new vals
863 (lambda (exp counter ctx)
864 (loop exp env counter ctx))
865 (map compute-alias vals)))
866 (env (fold extend-env env gensyms ops))
867 (body (loop body env counter ctx)))
868 (cond
869 ((const? body)
870 (for-tail (make-sequence src (append vals (list body)))))
871 ((and (lexical-ref? body)
872 (memq (lexical-ref-gensym body) new))
873 (let ((sym (lexical-ref-gensym body))
874 (pairs (map cons new vals)))
875 ;; (let ((x foo) (y bar) ...) x) => (begin bar ... foo)
876 (for-tail
877 (make-sequence
878 src
879 (append (map cdr (alist-delete sym pairs eq?))
880 (list (assq-ref pairs sym)))))))
881 (else
882 ;; Only include bindings for which lexical references
883 ;; have been residualized.
884 (prune-bindings ops #f body counter ctx
885 (lambda (names gensyms vals body)
886 (if (null? names) (error "what!" names))
887 (make-let src names gensyms vals body)))))))
888 (($ <letrec> src in-order? names gensyms vals body)
889 ;; Note the difference from the `let' case: here we use letrec*
890 ;; so that the `visit' procedure for the new operands closes over
891 ;; an environment that includes the operands. Also we don't try
892 ;; to elide aliases, because we can't sensibly reduce something
893 ;; like (letrec ((a b) (b a)) a).
894 (letrec* ((visit (lambda (exp counter ctx)
895 (loop exp env* counter ctx)))
896 (vars (map lookup-var gensyms))
897 (new (fresh-gensyms vars))
898 (ops (make-bound-operands vars new vals visit))
899 (env* (fold extend-env env gensyms ops))
900 (body* (visit body counter ctx)))
901 (if (and (const? body*) (every constant-expression? vals))
902 ;; We may have folded a loop completely, even though there
903 ;; might be cyclical references between the bound values.
904 ;; Handle this degenerate case specially.
905 body*
906 (prune-bindings ops in-order? body* counter ctx
907 (lambda (names gensyms vals body)
908 (make-letrec src in-order?
909 names gensyms vals body))))))
910 (($ <fix> src names gensyms vals body)
911 (letrec* ((visit (lambda (exp counter ctx)
912 (loop exp env* counter ctx)))
913 (vars (map lookup-var gensyms))
914 (new (fresh-gensyms vars))
915 (ops (make-bound-operands vars new vals visit))
916 (env* (fold extend-env env gensyms ops))
917 (body* (visit body counter ctx)))
918 (if (const? body*)
919 body*
920 (prune-bindings ops #f body* counter ctx
921 (lambda (names gensyms vals body)
922 (make-fix src names gensyms vals body))))))
923 (($ <let-values> lv-src producer consumer)
924 ;; Peval the producer, then try to inline the consumer into
925 ;; the producer. If that succeeds, peval again. Otherwise
926 ;; reconstruct the let-values, pevaling the consumer.
927 (let ((producer (for-values producer)))
928 (or (match consumer
929 (($ <lambda-case> src req #f #f #f () gensyms body #f)
930 (cond
931 ((inline-values producer src req gensyms body)
932 => for-tail)
933 (else #f)))
934 (_ #f))
935 (make-let-values lv-src producer (for-tail consumer)))))
936 (($ <dynwind> src winder body unwinder)
937 (let ((pre (for-value winder))
938 (body (for-tail body))
939 (post (for-value unwinder)))
940 (cond
941 ((not (constant-expression? pre))
942 (cond
943 ((not (constant-expression? post))
944 (let ((pre-sym (gensym "pre-")) (post-sym (gensym "post-")))
945 (record-new-temporary! 'pre pre-sym 1)
946 (record-new-temporary! 'post post-sym 1)
947 (make-let src '(pre post) (list pre-sym post-sym) (list pre post)
948 (make-dynwind src
949 (make-lexical-ref #f 'pre pre-sym)
950 body
951 (make-lexical-ref #f 'post post-sym)))))
952 (else
953 (let ((pre-sym (gensym "pre-")))
954 (record-new-temporary! 'pre pre-sym 1)
955 (make-let src '(pre) (list pre-sym) (list pre)
956 (make-dynwind src
957 (make-lexical-ref #f 'pre pre-sym)
958 body
959 post))))))
960 ((not (constant-expression? post))
961 (let ((post-sym (gensym "post-")))
962 (record-new-temporary! 'post post-sym 1)
963 (make-let src '(post) (list post-sym) (list post)
964 (make-dynwind src
965 pre
966 body
967 (make-lexical-ref #f 'post post-sym)))))
968 (else
969 (make-dynwind src pre body post)))))
970 (($ <dynlet> src fluids vals body)
971 (make-dynlet src (map for-value fluids) (map for-value vals)
972 (for-tail body)))
973 (($ <dynref> src fluid)
974 (make-dynref src (for-value fluid)))
975 (($ <dynset> src fluid exp)
976 (make-dynset src (for-value fluid) (for-value exp)))
977 (($ <toplevel-ref> src (? effect-free-primitive? name))
978 (if (local-toplevel? name)
979 exp
980 (let ((exp (resolve-primitives! exp cenv)))
981 (if (primitive-ref? exp)
982 (for-tail exp)
983 exp))))
984 (($ <toplevel-ref>)
985 ;; todo: open private local bindings.
986 exp)
987 (($ <module-ref> src module (? effect-free-primitive? name) #f)
988 (let ((module (false-if-exception
989 (resolve-module module #:ensure #f))))
990 (if (module? module)
991 (let ((var (module-variable module name)))
992 (if (eq? var (module-variable the-scm-module name))
993 (make-primitive-ref src name)
994 exp))
995 exp)))
996 (($ <module-ref>)
997 exp)
998 (($ <module-set> src mod name public? exp)
999 (make-module-set src mod name public? (for-value exp)))
1000 (($ <toplevel-define> src name exp)
1001 (make-toplevel-define src name (for-value exp)))
1002 (($ <toplevel-set> src name exp)
1003 (make-toplevel-set src name (for-value exp)))
1004 (($ <primitive-ref>)
1005 (case ctx
1006 ((effect) (make-void #f))
1007 ((test) (make-const #f #t))
1008 (else exp)))
1009 (($ <conditional> src condition subsequent alternate)
1010 (define (call-with-failure-thunk exp proc)
1011 (match exp
1012 (($ <application> _ _ ()) (proc exp))
1013 (($ <const>) (proc exp))
1014 (($ <void>) (proc exp))
1015 (($ <lexical-ref>) (proc exp))
1016 (_
1017 (let ((t (gensym "failure-")))
1018 (record-new-temporary! 'failure t 2)
1019 (make-let
1020 src (list 'failure) (list t)
1021 (list
1022 (make-lambda
1023 #f '()
1024 (make-lambda-case #f '() #f #f #f '() '() exp #f)))
1025 (proc (make-application #f (make-lexical-ref #f 'failure t)
1026 '())))))))
1027 (define (simplify-conditional c)
1028 (match c
1029 ;; Swap the arms of (if (not FOO) A B), to simplify.
1030 (($ <conditional> src
1031 ($ <application> _ ($ <primitive-ref> _ 'not) (pred))
1032 subsequent alternate)
1033 (simplify-conditional
1034 (make-conditional src pred alternate subsequent)))
1035 ;; Special cases for common tests in the predicates of chains
1036 ;; of if expressions.
1037 (($ <conditional> src
1038 ($ <conditional> src* outer-test inner-test ($ <const> _ #f))
1039 inner-subsequent
1040 alternate)
1041 (let lp ((alternate alternate))
1042 (match alternate
1043 ;; Lift a common repeated test out of a chain of if
1044 ;; expressions.
1045 (($ <conditional> _ (? (cut tree-il=? outer-test <>))
1046 other-subsequent alternate)
1047 (make-conditional
1048 src outer-test
1049 (simplify-conditional
1050 (make-conditional src* inner-test inner-subsequent
1051 other-subsequent))
1052 alternate))
1053 ;; Likewise, but punching through any surrounding
1054 ;; failure continuations.
1055 (($ <let> let-src (name) (sym) ((and thunk ($ <lambda>))) body)
1056 (make-let
1057 let-src (list name) (list sym) (list thunk)
1058 (lp body)))
1059 ;; Otherwise, rotate AND tests to expose a simple
1060 ;; condition in the front. Although this may result in
1061 ;; lexically binding failure thunks, the thunks will be
1062 ;; compiled to labels allocation, so there's no actual
1063 ;; code growth.
1064 (_
1065 (call-with-failure-thunk
1066 alternate
1067 (lambda (failure)
1068 (make-conditional
1069 src outer-test
1070 (simplify-conditional
1071 (make-conditional src* inner-test inner-subsequent failure))
1072 failure)))))))
1073 (_ c)))
1074 (match (for-test condition)
1075 (($ <const> _ val)
1076 (if val
1077 (for-tail subsequent)
1078 (for-tail alternate)))
1079 (c
1080 (simplify-conditional
1081 (make-conditional src c (for-tail subsequent)
1082 (for-tail alternate))))))
1083 (($ <application> src
1084 ($ <primitive-ref> _ '@call-with-values)
1085 (producer
1086 ($ <lambda> _ _
1087 (and consumer
1088 ;; No optional or kwargs.
1089 ($ <lambda-case>
1090 _ req #f rest #f () gensyms body #f)))))
1091 (for-tail (make-let-values src (make-application src producer '())
1092 consumer)))
1093 (($ <application> src ($ <primitive-ref> _ 'values) exps)
1094 (cond
1095 ((null? exps)
1096 (if (eq? ctx 'effect)
1097 (make-void #f)
1098 exp))
1099 (else
1100 (let ((vals (map for-value exps)))
1101 (if (and (case ctx
1102 ((value test effect) #t)
1103 (else (null? (cdr vals))))
1104 (every singly-valued-expression? vals))
1105 (for-tail (make-sequence src (append (cdr vals) (list (car vals)))))
1106 (make-application src (make-primitive-ref #f 'values) vals))))))
1107 (($ <application> src (and apply ($ <primitive-ref> _ (or 'apply '@apply)))
1108 (proc args ... tail))
1109 (match (for-value tail)
1110 (($ <const> _ (args* ...))
1111 (let ((args* (map (lambda (x) (make-const #f x)) args*)))
1112 (for-tail (make-application src proc (append args args*)))))
1113 (($ <application> _ ($ <primitive-ref> _ 'list) args*)
1114 (for-tail (make-application src proc (append args args*))))
1115 (tail
1116 (let ((args (append (map for-value args) (list tail))))
1117 (make-application src apply (cons (for-value proc) args))))))
1118 (($ <application> src orig-proc orig-args)
1119 ;; todo: augment the global env with specialized functions
1120 (let ((proc (visit orig-proc 'operator)))
1121 (match proc
1122 (($ <primitive-ref> _ (? constructor-primitive? name))
1123 (cond
1124 ((and (memq ctx '(effect test))
1125 (match (cons name orig-args)
1126 ((or ('cons _ _)
1127 ('list . _)
1128 ('vector . _)
1129 ('make-prompt-tag)
1130 ('make-prompt-tag ($ <const> _ (? string?))))
1131 #t)
1132 (_ #f)))
1133 ;; Some expressions can be folded without visiting the
1134 ;; arguments for value.
1135 (let ((res (if (eq? ctx 'effect)
1136 (make-void #f)
1137 (make-const #f #t))))
1138 (for-tail (make-sequence src (append orig-args (list res))))))
1139 (else
1140 (match (cons name (map for-value orig-args))
1141 (('cons head tail)
1142 (match tail
1143 (($ <const> src (? (cut eq? <> '())))
1144 (make-application src (make-primitive-ref #f 'list)
1145 (list head)))
1146 (($ <application> src ($ <primitive-ref> _ 'list) elts)
1147 (make-application src (make-primitive-ref #f 'list)
1148 (cons head elts)))
1149 (_ (make-application src proc (list head tail)))))
1150 ((_ . args)
1151 (make-application src proc args))))))
1152 (($ <primitive-ref> _ (? accessor-primitive? name))
1153 (match (cons name (map for-value orig-args))
1154 ;; FIXME: these for-tail recursions could take place outside
1155 ;; an effort counter.
1156 (('car ($ <application> src ($ <primitive-ref> _ 'cons) (head tail)))
1157 (for-tail (make-sequence src (list tail head))))
1158 (('cdr ($ <application> src ($ <primitive-ref> _ 'cons) (head tail)))
1159 (for-tail (make-sequence src (list head tail))))
1160 (('car ($ <application> src ($ <primitive-ref> _ 'list) (head . tail)))
1161 (for-tail (make-sequence src (append tail (list head)))))
1162 (('cdr ($ <application> src ($ <primitive-ref> _ 'list) (head . tail)))
1163 (for-tail (make-sequence
1164 src
1165 (list head
1166 (make-application
1167 src (make-primitive-ref #f 'list) tail)))))
1168
1169 (('car ($ <const> src (head . tail)))
1170 (for-tail (make-const src head)))
1171 (('cdr ($ <const> src (head . tail)))
1172 (for-tail (make-const src tail)))
1173 (((or 'memq 'memv) k ($ <const> _ (elts ...)))
1174 ;; FIXME: factor
1175 (case ctx
1176 ((effect)
1177 (for-tail
1178 (make-sequence src (list k (make-void #f)))))
1179 ((test)
1180 (cond
1181 ((const? k)
1182 ;; A shortcut. The `else' case would handle it, but
1183 ;; this way is faster.
1184 (let ((member (case name ((memq) memq) ((memv) memv))))
1185 (make-const #f (and (member (const-exp k) elts) #t))))
1186 ((null? elts)
1187 (for-tail
1188 (make-sequence src (list k (make-const #f #f)))))
1189 (else
1190 (let ((t (gensym "t-"))
1191 (eq (if (eq? name 'memq) 'eq? 'eqv?)))
1192 (record-new-temporary! 't t (length elts))
1193 (for-tail
1194 (make-let
1195 src (list 't) (list t) (list k)
1196 (let lp ((elts elts))
1197 (define test
1198 (make-application
1199 #f (make-primitive-ref #f eq)
1200 (list (make-lexical-ref #f 't t)
1201 (make-const #f (car elts)))))
1202 (if (null? (cdr elts))
1203 test
1204 (make-conditional src test
1205 (make-const #f #t)
1206 (lp (cdr elts)))))))))))
1207 (else
1208 (cond
1209 ((const? k)
1210 (let ((member (case name ((memq) memq) ((memv) memv))))
1211 (make-const #f (member (const-exp k) elts))))
1212 ((null? elts)
1213 (for-tail (make-sequence src (list k (make-const #f #f)))))
1214 (else
1215 (make-application src proc (list k (make-const #f elts))))))))
1216 ((_ . args)
1217 (or (fold-constants src name args ctx)
1218 (make-application src proc args)))))
1219 (($ <primitive-ref> _ (? effect-free-primitive? name))
1220 (let ((args (map for-value orig-args)))
1221 (or (fold-constants src name args ctx)
1222 (make-application src proc args))))
1223 (($ <lambda> _ _
1224 ($ <lambda-case> _ req opt #f #f inits gensyms body #f))
1225 ;; Simple case: no rest, no keyword arguments.
1226 ;; todo: handle the more complex cases
1227 (let* ((nargs (length orig-args))
1228 (nreq (length req))
1229 (nopt (if opt (length opt) 0))
1230 (key (source-expression proc)))
1231 (cond
1232 ((or (< nargs nreq) (> nargs (+ nreq nopt)))
1233 ;; An error, or effecting arguments.
1234 (make-application src (for-call orig-proc)
1235 (map for-value orig-args)))
1236 ((or (and=> (find-counter key counter) counter-recursive?)
1237 (lambda? orig-proc))
1238 ;; A recursive call, or a lambda in the operator
1239 ;; position of the source expression. Process again in
1240 ;; tail context.
1241 ;;
1242 ;; In the recursive case, mark intervening counters as
1243 ;; recursive, so we can handle a toplevel counter that
1244 ;; recurses mutually with some other procedure.
1245 ;; Otherwise, the next time we see the other procedure,
1246 ;; the effort limit would be clamped to 100.
1247 ;;
1248 (let ((found (find-counter key counter)))
1249 (if (and found (counter-recursive? found))
1250 (let lp ((counter counter))
1251 (if (not (eq? counter found))
1252 (begin
1253 (set-counter-recursive?! counter #t)
1254 (lp (counter-prev counter)))))))
1255
1256 (log 'inline-recurse key)
1257 (loop (make-let src (append req (or opt '()))
1258 gensyms
1259 (append orig-args
1260 (drop inits (- nargs nreq)))
1261 body)
1262 env counter ctx))
1263 (else
1264 ;; An integration at the top-level, the first
1265 ;; recursion of a recursive procedure, or a nested
1266 ;; integration of a procedure that hasn't been seen
1267 ;; yet.
1268 (log 'inline-begin exp)
1269 (let/ec k
1270 (define (abort)
1271 (log 'inline-abort exp)
1272 (k (make-application src (for-call orig-proc)
1273 (map for-value orig-args))))
1274 (define new-counter
1275 (cond
1276 ;; These first two cases will transfer effort
1277 ;; from the current counter into the new
1278 ;; counter.
1279 ((find-counter key counter)
1280 => (lambda (prev)
1281 (make-recursive-counter recursive-effort-limit
1282 operand-size-limit
1283 prev counter)))
1284 (counter
1285 (make-nested-counter abort key counter))
1286 ;; This case opens a new account, effectively
1287 ;; printing money. It should only do so once
1288 ;; for each call site in the source program.
1289 (else
1290 (make-top-counter effort-limit operand-size-limit
1291 abort key))))
1292 (define result
1293 (loop (make-let src (append req (or opt '()))
1294 gensyms
1295 (append orig-args
1296 (drop inits (- nargs nreq)))
1297 body)
1298 env new-counter ctx))
1299
1300 (if counter
1301 ;; The nested inlining attempt succeeded.
1302 ;; Deposit the unspent effort and size back
1303 ;; into the current counter.
1304 (transfer! new-counter counter))
1305
1306 (log 'inline-end result exp)
1307 result)))))
1308 (_
1309 (make-application src (for-call orig-proc)
1310 (map for-value orig-args))))))
1311 (($ <lambda> src meta body)
1312 (case ctx
1313 ((effect) (make-void #f))
1314 ((test) (make-const #f #t))
1315 ((operator) exp)
1316 (else (record-source-expression!
1317 exp
1318 (make-lambda src meta (for-values body))))))
1319 (($ <lambda-case> src req opt rest kw inits gensyms body alt)
1320 (define (lift-applied-lambda body gensyms)
1321 (and (not opt) rest (not kw)
1322 (match body
1323 (($ <application> _
1324 ($ <primitive-ref> _ '@apply)
1325 (($ <lambda> _ _ lcase)
1326 ($ <lexical-ref> _ _ sym)
1327 ...))
1328 (and (equal? sym gensyms)
1329 (not (lambda-case-alternate lcase))
1330 lcase))
1331 (_ #f))))
1332 (let* ((vars (map lookup-var gensyms))
1333 (new (fresh-gensyms vars))
1334 (env (fold extend-env env gensyms
1335 (make-unbound-operands vars new)))
1336 (new-sym (lambda (old)
1337 (operand-sym (cdr (vhash-assq old env)))))
1338 (body (loop body env counter ctx)))
1339 (or
1340 ;; (lambda args (apply (lambda ...) args)) => (lambda ...)
1341 (lift-applied-lambda body new)
1342 (make-lambda-case src req opt rest
1343 (match kw
1344 ((aok? (kw name old) ...)
1345 (cons aok? (map list kw name (map new-sym old))))
1346 (_ #f))
1347 (map (cut loop <> env counter 'value) inits)
1348 new
1349 body
1350 (and alt (for-tail alt))))))
1351 (($ <sequence> src exps)
1352 (let lp ((exps exps) (effects '()))
1353 (match exps
1354 ((last)
1355 (if (null? effects)
1356 (for-tail last)
1357 (make-sequence
1358 src
1359 (reverse (cons (for-tail last) effects)))))
1360 ((head . rest)
1361 (let ((head (for-effect head)))
1362 (cond
1363 ((sequence? head)
1364 (lp (append (sequence-exps head) rest) effects))
1365 ((void? head)
1366 (lp rest effects))
1367 (else
1368 (lp rest (cons head effects)))))))))
1369 (($ <prompt> src tag body handler)
1370 (define (make-prompt-tag? x)
1371 (match x
1372 (($ <application> _ ($ <primitive-ref> _ 'make-prompt-tag)
1373 (or () ((? constant-expression?))))
1374 #t)
1375 (_ #f)))
1376 (define (find-definition x n-aliases)
1377 (cond
1378 ((lexical-ref? x)
1379 (cond
1380 ((lookup (lexical-ref-gensym x))
1381 => (lambda (op)
1382 (let ((y (or (operand-residual-value op)
1383 (visit-operand op counter 'value 10 10))))
1384 (cond
1385 ((and (lexical-ref? y)
1386 (= (lexical-refcount (lexical-ref-gensym x)) 1))
1387 ;; X is a simple alias for Y. Recurse, regardless of
1388 ;; the number of aliases we were expecting.
1389 (find-definition y n-aliases))
1390 ((= (lexical-refcount (lexical-ref-gensym x)) n-aliases)
1391 ;; We found a definition that is aliased the right
1392 ;; number of times. We still recurse in case it is a
1393 ;; lexical.
1394 (values (find-definition y 1)
1395 op))
1396 (else
1397 ;; We can't account for our aliases.
1398 (values #f #f))))))
1399 (else
1400 ;; A formal parameter. Can't say anything about that.
1401 (values #f #f))))
1402 ((= n-aliases 1)
1403 ;; Not a lexical: success, but only if we are looking for an
1404 ;; unaliased value.
1405 (values x #f))
1406 (else (values #f #f))))
1407
1408 (let ((tag (for-value tag))
1409 (body (for-tail body)))
1410 (cond
1411 ((find-definition tag 1)
1412 (lambda (val op)
1413 (make-prompt-tag? val))
1414 => (lambda (val op)
1415 ;; There is no way that an <abort> could know the tag
1416 ;; for this <prompt>, so we can elide the <prompt>
1417 ;; entirely.
1418 (unrecord-operand-uses op 1)
1419 body))
1420 ((find-definition tag 2)
1421 (lambda (val op)
1422 (and (make-prompt-tag? val)
1423 (abort? body)
1424 (tree-il=? (abort-tag body) tag)))
1425 => (lambda (val op)
1426 ;; (let ((t (make-prompt-tag)))
1427 ;; (call-with-prompt t
1428 ;; (lambda () (abort-to-prompt t val ...))
1429 ;; (lambda (k arg ...) e ...)))
1430 ;; => (let-values (((k arg ...) (values values val ...)))
1431 ;; e ...)
1432 (unrecord-operand-uses op 2)
1433 (for-tail
1434 (make-let-values
1435 src
1436 (make-application #f (make-primitive-ref #f 'apply)
1437 `(,(make-primitive-ref #f 'values)
1438 ,(make-primitive-ref #f 'values)
1439 ,@(abort-args body)
1440 ,(abort-tail body)))
1441 (for-value handler)))))
1442 (else
1443 (make-prompt src tag body (for-value handler))))))
1444 (($ <abort> src tag args tail)
1445 (make-abort src (for-value tag) (map for-value args)
1446 (for-value tail))))))