Eval evaluates initializers before creating environment ribs.
[bpt/guile.git] / module / language / tree-il / compile-cps.scm
CommitLineData
4fefc3a8
AW
1;;; Continuation-passing style (CPS) intermediate language (IL)
2
3;; Copyright (C) 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;;; Commentary:
20;;;
21;;; This pass converts Tree-IL to the continuation-passing style (CPS)
22;;; language.
23;;;
24;;; CPS is a lower-level representation than Tree-IL. Converting to
25;;; CPS, beyond adding names for all control points and all values,
26;;; simplifies expressions in the following ways, among others:
27;;;
28;;; * Fixing the order of evaluation.
29;;;
30;;; * Converting assigned variables to boxed variables.
31;;;
32;;; * Requiring that Scheme's <letrec> has already been lowered to
33;;; <fix>.
34;;;
35;;; * Inlining default-value initializers into lambda-case
36;;; expressions.
37;;;
38;;; * Inlining prompt bodies.
39;;;
40;;; * Turning toplevel and module references into primcalls. This
41;;; involves explicitly modelling the "scope" of toplevel lookups
42;;; (indicating the module with respect to which toplevel bindings
43;;; are resolved).
44;;;
45;;; The utility of CPS is that it gives a name to everything: every
46;;; intermediate value, and every control point (continuation). As such
47;;; it is more verbose than Tree-IL, but at the same time more simple as
48;;; the number of concepts is reduced.
49;;;
50;;; Code:
51
52(define-module (language tree-il compile-cps)
53 #:use-module (ice-9 match)
54 #:use-module ((srfi srfi-1) #:select (fold fold-right filter-map))
55 #:use-module (srfi srfi-26)
56 #:use-module ((system foreign) #:select (make-pointer pointer->scm))
57 #:use-module (language cps)
58 #:use-module (language cps primitives)
59 #:use-module (language tree-il analyze)
60 #:use-module (language tree-il optimize)
b7f10def 61 #:use-module ((language tree-il) #:hide (let-gensyms))
4fefc3a8
AW
62 #:export (compile-cps))
63
64;;; Guile's semantics are that a toplevel lambda captures a reference on
65;;; the current module, and that all contained lambdas use that module
66;;; to resolve toplevel variables. This parameter tracks whether or not
67;;; we are in a toplevel lambda. If we are in a lambda, the parameter
68;;; is bound to a fresh name identifying the module that was current
69;;; when the toplevel lambda is defined.
70;;;
71;;; This is more complicated than it need be. Ideally we should resolve
72;;; all toplevel bindings to bindings from specific modules, unless the
73;;; binding is unbound. This is always valid if the compilation unit
74;;; sets the module explicitly, as when compiling a module, but it
75;;; doesn't work for files auto-compiled for use with `load'.
76;;;
77(define current-topbox-scope (make-parameter #f))
78
79(define (toplevel-box src name bound? val-proc)
80 (let-gensyms (name-sym bound?-sym kbox box)
81 (build-cps-term
82 ($letconst (('name name-sym name)
83 ('bound? bound?-sym bound?))
84 ($letk ((kbox src ($kargs ('box) (box) ,(val-proc box))))
85 ,(match (current-topbox-scope)
86 (#f
87 (build-cps-term
88 ($continue kbox
89 ($primcall 'resolve
90 (name-sym bound?-sym)))))
91 (scope
92 (let-gensyms (scope-sym)
93 (build-cps-term
94 ($letconst (('scope scope-sym scope))
95 ($continue kbox
96 ($primcall 'cached-toplevel-box
97 (scope-sym name-sym bound?-sym)))))))))))))
98
99(define (module-box src module name public? bound? val-proc)
100 (let-gensyms (module-sym name-sym public?-sym bound?-sym kbox box)
101 (build-cps-term
102 ($letconst (('module module-sym module)
103 ('name name-sym name)
104 ('public? public?-sym public?)
105 ('bound? bound?-sym bound?))
106 ($letk ((kbox src ($kargs ('box) (box) ,(val-proc box))))
107 ($continue kbox
108 ($primcall 'cached-module-box
109 (module-sym name-sym public?-sym bound?-sym))))))))
110
111(define (capture-toplevel-scope src scope k)
112 (let-gensyms (module scope-sym kmodule)
113 (build-cps-term
114 ($letconst (('scope scope-sym scope))
115 ($letk ((kmodule src ($kargs ('module) (module)
116 ($continue k
117 ($primcall 'cache-current-module!
118 (module scope-sym))))))
119 ($continue kmodule
120 ($primcall 'current-module ())))))))
121
122(define (fold-formals proc seed arity gensyms inits)
123 (match arity
124 (($ $arity req opt rest kw allow-other-keys?)
125 (let ()
126 (define (fold-req names gensyms seed)
127 (match names
128 (() (fold-opt opt gensyms inits seed))
129 ((name . names)
130 (proc name (car gensyms) #f
131 (fold-req names (cdr gensyms) seed)))))
132 (define (fold-opt names gensyms inits seed)
133 (match names
134 (() (fold-rest rest gensyms inits seed))
135 ((name . names)
136 (proc name (car gensyms) (car inits)
137 (fold-opt names (cdr gensyms) (cdr inits) seed)))))
138 (define (fold-rest rest gensyms inits seed)
139 (match rest
140 (#f (fold-kw kw gensyms inits seed))
141 (name (proc name (car gensyms) #f
142 (fold-kw kw (cdr gensyms) inits seed)))))
143 (define (fold-kw kw gensyms inits seed)
144 (match kw
145 (()
146 (unless (null? gensyms)
147 (error "too many gensyms"))
148 (unless (null? inits)
149 (error "too many inits"))
150 seed)
151 (((key name var) . kw)
152 (unless (eq? var (car gensyms))
153 (error "unexpected keyword arg order"))
154 (proc name var (car inits)
155 (fold-kw kw (cdr gensyms) (cdr inits) seed)))))
156 (fold-req req gensyms seed)))))
157
158(define (unbound? src sym kt kf)
159 (define tc8-iflag 4)
160 (define unbound-val 9)
161 (define unbound-bits (logior (ash unbound-val 8) tc8-iflag))
162 (let-gensyms (unbound ktest)
163 (build-cps-term
164 ($letconst (('unbound unbound (pointer->scm (make-pointer unbound-bits))))
165 ($letk ((ktest src ($kif kt kf)))
166 ($continue ktest
167 ($primcall 'eq? (sym unbound))))))))
168
169(define (init-default-value name sym subst init body)
170 (match (assq-ref subst sym)
171 ((subst-sym box?)
172 (let ((src (tree-il-src init)))
173 (define (maybe-box k make-body)
174 (if box?
175 (let-gensyms (kbox phi)
176 (build-cps-term
177 ($letk ((kbox src ($kargs (name) (phi)
178 ($continue k ($primcall 'box (phi))))))
179 ,(make-body kbox))))
180 (make-body k)))
181 (let-gensyms (knext kbound kunbound)
182 (build-cps-term
183 ($letk ((knext src ($kargs (name) (subst-sym) ,body)))
184 ,(maybe-box
185 knext
186 (lambda (k)
187 (build-cps-term
188 ($letk ((kbound src ($kargs () () ($continue k ($var sym))))
189 (kunbound src ($kargs () () ,(convert init k subst))))
190 ,(unbound? src sym kunbound kbound))))))))))))
191
192;; exp k-name alist -> term
193(define (convert exp k subst)
194 ;; exp (v-name -> term) -> term
195 (define (convert-arg exp k)
196 (match exp
197 (($ <lexical-ref> src name sym)
198 (match (assq-ref subst sym)
199 ((box #t)
200 (let-gensyms (kunboxed unboxed)
201 (build-cps-term
202 ($letk ((kunboxed src ($kargs ('unboxed) (unboxed) ,(k unboxed))))
203 ($continue kunboxed ($primcall 'box-ref (box)))))))
204 ((subst #f) (k subst))
205 (#f (k sym))))
206 (else
207 (let ((src (tree-il-src exp)))
208 (let-gensyms (karg arg)
209 (build-cps-term
210 ($letk ((karg src ($kargs ('arg) (arg) ,(k arg))))
211 ,(convert exp karg subst))))))))
212 ;; (exp ...) ((v-name ...) -> term) -> term
213 (define (convert-args exps k)
214 (match exps
215 (() (k '()))
216 ((exp . exps)
217 (convert-arg exp
218 (lambda (name)
219 (convert-args exps
220 (lambda (names)
221 (k (cons name names)))))))))
222 (define (box-bound-var name sym body)
223 (match (assq-ref subst sym)
224 ((box #t)
225 (let-gensyms (k)
226 (build-cps-term
227 ($letk ((k #f ($kargs (name) (box) ,body)))
228 ($continue k ($primcall 'box (sym)))))))
229 (else body)))
230
231 (match exp
232 (($ <lexical-ref> src name sym)
233 (match (assq-ref subst sym)
234 ((box #t) (build-cps-term ($continue k ($primcall 'box-ref (box)))))
235 ((subst #f) (build-cps-term ($continue k ($var subst))))
236 (#f (build-cps-term ($continue k ($var sym))))))
237
238 (($ <void> src)
239 (build-cps-term ($continue k ($void))))
240
241 (($ <const> src exp)
242 (build-cps-term ($continue k ($const exp))))
243
244 (($ <primitive-ref> src name)
245 (build-cps-term ($continue k ($prim name))))
246
247 (($ <lambda> fun-src meta body)
248 (let ()
249 (define (convert-clauses body ktail)
250 (match body
251 (#f '())
252 (($ <lambda-case> src req opt rest kw inits gensyms body alternate)
253 (let* ((arity (make-$arity req (or opt '()) rest
254 (if kw (cdr kw) '()) (and kw (car kw))))
255 (names (fold-formals (lambda (name sym init names)
256 (cons name names))
257 '()
258 arity gensyms inits)))
259 (cons
260 (let-gensyms (kclause kargs)
261 (build-cps-cont
262 (kclause
263 src
264 ($kclause ,arity
265 (kargs
266 src
267 ($kargs names gensyms
268 ,(fold-formals
269 (lambda (name sym init body)
270 (if init
271 (init-default-value name sym subst init body)
272 (box-bound-var name sym body)))
273 (convert body ktail subst)
274 arity gensyms inits)))))))
275 (convert-clauses alternate ktail))))))
276 (if (current-topbox-scope)
277 (let-gensyms (kentry self ktail)
278 (build-cps-term
279 ($continue k
280 ($fun meta '()
281 (kentry fun-src
282 ($kentry self (ktail #f ($ktail))
283 ,(convert-clauses body ktail)))))))
284 (let-gensyms (scope kscope)
285 (build-cps-term
286 ($letk ((kscope fun-src
287 ($kargs () ()
288 ,(parameterize ((current-topbox-scope scope))
289 (convert exp k subst)))))
290 ,(capture-toplevel-scope fun-src scope kscope)))))))
291
292 (($ <module-ref> src mod name public?)
293 (module-box
294 src mod name public? #t
295 (lambda (box)
296 (build-cps-term ($continue k ($primcall 'box-ref (box)))))))
297
298 (($ <module-set> src mod name public? exp)
299 (convert-arg exp
300 (lambda (val)
301 (module-box
302 src mod name public? #f
303 (lambda (box)
304 (build-cps-term ($continue k ($primcall 'box-set! (box val)))))))))
305
306 (($ <toplevel-ref> src name)
307 (toplevel-box
308 src name #t
309 (lambda (box)
310 (build-cps-term ($continue k ($primcall 'box-ref (box)))))))
311
312 (($ <toplevel-set> src name exp)
313 (convert-arg exp
314 (lambda (val)
315 (toplevel-box
316 src name #f
317 (lambda (box)
318 (build-cps-term ($continue k ($primcall 'box-set! (box val)))))))))
319
320 (($ <toplevel-define> src name exp)
321 (convert-arg exp
322 (lambda (val)
323 (let-gensyms (kname name-sym)
324 (build-cps-term
325 ($letconst (('name name-sym name))
326 ($continue k ($primcall 'define! (name-sym val)))))))))
327
328 (($ <call> src proc args)
329 (convert-args (cons proc args)
330 (match-lambda
331 ((proc . args)
332 (build-cps-term ($continue k ($call proc args)))))))
333
334 (($ <primcall> src name args)
58dee5b9
AW
335 (cond
336 ((branching-primitive? name)
337 (convert (make-conditional src exp (make-const #f #t)
338 (make-const #f #f))
339 k subst))
340 ((eq? name 'vector)
341 ;; Some macros generate calls to "vector" with like 300
342 ;; arguments. Since we eventually compile to make-vector and
343 ;; vector-set!, it reduces live variable pressure to allocate the
344 ;; vector first, then set values as they are produced. Normally
345 ;; we would do this transformation in the compiler, but it's
346 ;; quite tricky there and quite easy here, so hold your nose
347 ;; while we drop some smelly code.
348 (convert (let ((len (length args)))
349 (let-gensyms (v)
350 (make-let src
351 (list 'v)
352 (list v)
353 (list (make-primcall src 'make-vector
354 (list (make-const #f len)
355 (make-const #f #f))))
356 (fold (lambda (arg n tail)
357 (make-seq
358 src
359 (make-primcall
360 src 'vector-set!
361 (list (make-lexical-ref src 'v v)
362 (make-const #f n)
363 arg))
364 tail))
365 (make-lexical-ref src 'v v)
366 (reverse args) (reverse (iota len))))))
367 k subst))
368 (else
369 (convert-args args
370 (lambda (args)
371 (build-cps-term ($continue k ($primcall name args))))))))
4fefc3a8
AW
372
373 ;; Prompts with inline handlers.
374 (($ <prompt> src escape-only? tag body
375 ($ <lambda> hsrc hmeta
376 ($ <lambda-case> _ hreq #f hrest #f () hsyms hbody #f)))
377 ;; Handler:
378 ;; khargs: check args returned to handler, -> khbody
379 ;; khbody: the handler, -> k
380 ;;
381 ;; Post-body:
382 ;; krest: collect return vals from body to list, -> kpop
383 ;; kpop: pop the prompt, -> kprim
384 ;; kprim: load the values primitive, -> kret
385 ;; kret: (apply values rvals), -> k
386 ;;
387 ;; Escape prompts evaluate the body with the continuation of krest.
388 ;; Otherwise we do a no-inline call to body, continuing to krest.
389 (convert-arg tag
390 (lambda (tag)
391 (let ((hnames (append hreq (if hrest (list hrest) '()))))
392 (let-gensyms (khargs khbody kret kprim prim kpop krest vals kbody)
393 (build-cps-term
394 ($letk* ((khbody hsrc ($kargs hnames hsyms
395 ,(fold box-bound-var
396 (convert hbody k subst)
397 hnames hsyms)))
398 (khargs hsrc ($ktrunc hreq hrest khbody))
399 (kpop src
400 ($kargs ('rest) (vals)
401 ($letk ((kret
402 src
403 ($kargs () ()
404 ($letk ((kprim
405 src
406 ($kargs ('prim) (prim)
407 ($continue k
408 ($primcall 'apply
409 (prim vals))))))
410 ($continue kprim
411 ($prim 'values))))))
412 ($continue kret
8d59d55e 413 ($primcall 'unwind ())))))
4fefc3a8
AW
414 (krest src ($ktrunc '() 'rest kpop)))
415 ,(if escape-only?
416 (build-cps-term
417 ($letk ((kbody (tree-il-src body)
418 ($kargs () ()
419 ,(convert body krest subst))))
96af4a18 420 ($continue kbody ($prompt #t tag khargs kpop))))
4fefc3a8
AW
421 (convert-arg body
422 (lambda (thunk)
423 (build-cps-term
424 ($letk ((kbody (tree-il-src body)
425 ($kargs () ()
426 ($continue krest
427 ($primcall 'call-thunk/no-inline
428 (thunk))))))
429 ($continue kbody
96af4a18 430 ($prompt #f tag khargs kpop))))))))))))))
4fefc3a8
AW
431
432 ;; Eta-convert prompts without inline handlers.
433 (($ <prompt> src escape-only? tag body handler)
b7f10def
AW
434 (let-gensyms (h args)
435 (convert
436 (make-let
437 src (list 'h) (list h) (list handler)
438 (make-seq
439 src
440 (make-conditional
441 src
442 (make-primcall src 'procedure? (list (make-lexical-ref #f 'h h)))
443 (make-void src)
444 (make-primcall
445 src 'scm-error
446 (list
447 (make-const #f 'wrong-type-arg)
448 (make-const #f "call-with-prompt")
449 (make-const #f "Wrong type (expecting procedure): ~S")
450 (make-primcall #f 'list (list (make-lexical-ref #f 'h h)))
451 (make-primcall #f 'list (list (make-lexical-ref #f 'h h))))))
452 (make-prompt
453 src escape-only? tag body
454 (make-lambda
455 src '()
456 (make-lambda-case
457 src '() #f 'args #f '() (list args)
458 (make-primcall
459 src 'apply
460 (list (make-lexical-ref #f 'h h)
461 (make-lexical-ref #f 'args args)))
462 #f)))))
463 k
464 subst)))
4fefc3a8 465
486013d6
AW
466 (($ <abort> src tag args ($ <const> _ ()))
467 (convert-args (cons tag args)
468 (lambda (args*)
469 (build-cps-term
470 ($continue k ($primcall 'abort-to-prompt args*))))))
471
4fefc3a8 472 (($ <abort> src tag args tail)
486013d6
AW
473 (convert-args (append (list (make-primitive-ref #f 'abort-to-prompt)
474 tag)
475 args
476 (list tail))
4fefc3a8 477 (lambda (args*)
486013d6
AW
478 (build-cps-term
479 ($continue k ($primcall 'apply args*))))))
4fefc3a8
AW
480
481 (($ <conditional> src test consequent alternate)
482 (let-gensyms (kif kt kf)
483 (build-cps-term
484 ($letk* ((kt (tree-il-src consequent) ($kargs () ()
485 ,(convert consequent k subst)))
486 (kf (tree-il-src alternate) ($kargs () ()
487 ,(convert alternate k subst)))
488 (kif src ($kif kt kf)))
489 ,(match test
490 (($ <primcall> src (? branching-primitive? name) args)
491 (convert-args args
492 (lambda (args)
493 (build-cps-term ($continue kif ($primcall name args))))))
494 (_ (convert-arg test
495 (lambda (test)
496 (build-cps-term ($continue kif ($var test)))))))))))
497
498 (($ <lexical-set> src name gensym exp)
499 (convert-arg exp
500 (lambda (exp)
501 (match (assq-ref subst gensym)
502 ((box #t)
503 (build-cps-term
504 ($continue k ($primcall 'box-set! (box exp)))))))))
505
506 (($ <seq> src head tail)
507 (let-gensyms (ktrunc kseq)
508 (build-cps-term
509 ($letk* ((kseq (tree-il-src tail) ($kargs () ()
510 ,(convert tail k subst)))
511 (ktrunc src ($ktrunc '() #f kseq)))
512 ,(convert head ktrunc subst)))))
513
514 (($ <let> src names syms vals body)
515 (let lp ((names names) (syms syms) (vals vals))
516 (match (list names syms vals)
517 ((() () ()) (convert body k subst))
518 (((name . names) (sym . syms) (val . vals))
519 (let-gensyms (klet)
520 (build-cps-term
521 ($letk ((klet src ($kargs (name) (sym)
522 ,(box-bound-var name sym
523 (lp names syms vals)))))
524 ,(convert val klet subst))))))))
525
526 (($ <fix> src names gensyms funs body)
527 ;; Some letrecs can be contified; that happens later.
528 (if (current-topbox-scope)
529 (let-gensyms (self)
530 (build-cps-term
531 ($letrec names
532 gensyms
533 (map (lambda (fun)
534 (match (convert fun k subst)
535 (($ $continue _ (and fun ($ $fun)))
536 fun)))
537 funs)
538 ,(convert body k subst))))
539 (let-gensyms (scope kscope)
540 (build-cps-term
541 ($letk ((kscope src ($kargs () ()
542 ,(parameterize ((current-topbox-scope scope))
543 (convert exp k subst)))))
544 ,(capture-toplevel-scope src scope kscope))))))
545
546 (($ <let-values> src exp
547 ($ <lambda-case> lsrc req #f rest #f () syms body #f))
548 (let ((names (append req (if rest (list rest) '()))))
549 (let-gensyms (ktrunc kargs)
550 (build-cps-term
551 ($letk* ((kargs src ($kargs names syms
552 ,(fold box-bound-var
553 (convert body k subst)
554 names syms)))
555 (ktrunc src ($ktrunc req rest kargs)))
556 ,(convert exp ktrunc subst))))))))
557
558(define (build-subst exp)
559 "Compute a mapping from lexical gensyms to substituted gensyms. The
560usual reason to replace one variable by another is assignment
561conversion. Default argument values is the other reason.
562
563Returns a list of (ORIG-SYM SUBST-SYM BOXED?). A true value for BOXED?
564indicates that the replacement variable is in a box."
565 (define (box-set-vars exp subst)
566 (match exp
567 (($ <lexical-set> src name sym exp)
568 (if (assq sym subst)
569 subst
570 (cons (list sym (gensym "b") #t) subst)))
571 (_ subst)))
572 (define (default-args exp subst)
573 (match exp
574 (($ <lambda-case> src req opt rest kw inits gensyms body alternate)
575 (fold-formals (lambda (name sym init subst)
576 (if init
577 (let ((box? (match (assq-ref subst sym)
578 ((box #t) #t)
579 (#f #f)))
580 (subst-sym (gensym (symbol->string name))))
581 (cons (list sym subst-sym box?) subst))
582 subst))
583 subst
584 (make-$arity req (or opt '()) rest
585 (if kw (cdr kw) '()) (and kw (car kw)))
586 gensyms
587 inits))
588 (_ subst)))
589 (tree-il-fold box-set-vars default-args '() exp))
590
591(define (cps-convert/thunk exp)
592 (let ((src (tree-il-src exp)))
593 (let-gensyms (kinit init ktail kclause kbody)
594 (build-cps-exp
595 ($fun '() '()
596 (kinit src
597 ($kentry init
598 (ktail #f ($ktail))
599 ((kclause src
600 ($kclause ('() '() #f '() #f)
601 (kbody src
602 ($kargs () ()
603 ,(convert exp ktail
604 (build-subst exp))))))))))))))
605
606(define *comp-module* (make-fluid))
607
608(define %warning-passes
609 `((unused-variable . ,unused-variable-analysis)
610 (unused-toplevel . ,unused-toplevel-analysis)
611 (unbound-variable . ,unbound-variable-analysis)
612 (arity-mismatch . ,arity-analysis)
613 (format . ,format-analysis)))
614
615(define (optimize-tree-il x e opts)
616 (define warnings
617 (or (and=> (memq #:warnings opts) cadr)
618 '()))
619
620 ;; Go through the warning passes.
621 (let ((analyses (filter-map (lambda (kind)
622 (assoc-ref %warning-passes kind))
623 warnings)))
624 (analyze-tree analyses x e))
625
626 (optimize x e opts))
627
628(define (compile-cps exp env opts)
629 (values (cps-convert/thunk (optimize-tree-il exp env opts))
630 env
631 env))
632
633;;; Local Variables:
634;;; eval: (put 'convert-arg 'scheme-indent-function 1)
635;;; eval: (put 'convert-args 'scheme-indent-function 1)
636;;; End: