-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfunctions.rkt
557 lines (506 loc) · 20.7 KB
/
functions.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
#lang racket
(require "vectors.rkt")
(require "interp.rkt")
(require "utilities.rkt")
(require "runtime-config.rkt")
(provide compile-R3 functions-passes functions-typechecker)
(define compile-R3
(class compile-R2
(super-new)
(inherit primitives liveness-ss allocate-homes color-graph)
(define/public (non-apply-ast)
(set-union (primitives)
(set 'if 'let 'define 'program 'void)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; type-check : env -> S3 -> S3 (for programs)
;; type-check : env -> S3 -> type (for expressions)
(define/public (fun-def-name d)
(match d
[`(define (,f [,xs : ,ps] ...) : ,rt ,body)
f]
[else (error 'Syntax-Error "ill-formed function definition in ~a" d)]))
(define/public (fun-def-type d)
(match d
[`(define (,f [,xs : ,ps] ...) : ,rt ,body)
`(,@ps -> ,rt)]
[else (error 'Syntax-Error "ill-formed function definition in ~a" d)]))
(define/override (type-check env)
(lambda (e)
(vomit "type-check" e)
(match e
[`(,e ,es ...) #:when (not (set-member? (non-apply-ast) e))
(define-values (e* ty*) (for/lists (e* ty*) ([e (in-list es)])
((type-check env) e)))
(define-values (e^ ty) ((type-check env) e))
(match ty
[`(,ty^* ... -> ,rt)
(unless (equal? ty* ty^*)
(error "parameter and argument type mismatch for function" e))
(vomit "app" e^ e* rt)
(values `(has-type (,e^ ,@e*) ,rt) rt)]
[else (error "expected a function, not" ty)])]
[`(define (,f ,(and p:t* `[,xs : ,ps]) ...) : ,rt ,body)
(define new-env (append (map cons xs ps) env))
(define-values (body^ ty^) ((type-check new-env) body))
(unless (equal? ty^ rt)
(error "body type and return type mismatch for function" e))
`(define (,f ,@p:t*) : ,rt ,body^)]
[`(program ,ds ... ,body)
(define new-env (for/list ([d ds])
(cons (fun-def-name d) (fun-def-type d))))
(define ds^ (for/list ([d ds])
((type-check new-env) d)))
(define-values (body^ ty) ((type-check new-env) body))
(vomit "prog" ty ds^ body^)
`(program (type ,ty) ,@ds^ ,body^)]
[else ((super type-check env) e)])))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; uniquify : env -> S3 -> S3
(define/override (uniquify env)
(lambda (e)
(vomit "uniquify" e)
(match e
[`(has-type ,e ,t) `(has-type ,((uniquify env) e) ,t)]
[`(,f ,es ...) #:when (not (set-member? (non-apply-ast) f))
(define new-es (map (uniquify env) es))
(define new-f ((uniquify env) f))
`(,new-f ,@new-es)]
[`(define (,f [,xs : ,ps] ...) : ,rt ,body)
(define new-xs (for/list ([x xs]) (gensym (racket-id->c-id x))))
(define new-env (append (map cons xs new-xs) env))
`(define (,(cdr (assq f env))
,@(map (lambda (x t) `[,x : ,t]) new-xs ps)) : ,rt
,((uniquify new-env) body))]
[`(program (type ,ty) ,ds ... ,body)
(define new-env
(for/list ([d ds])
(match d
[`(define (,f [,xs : ,ps] ...) : ,rt ,body)
(define new-f (gensym (racket-id->c-id f)))
`(,f . ,new-f)]
[else (error "type-check, ill-formed function def")])))
`(program (type ,ty) ,@(map (uniquify new-env) ds)
,((uniquify new-env) body))]
[else ((super uniquify env) e)]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reveal functions and application
(define/public (reveal-functions funs)
(lambda (e)
(let ([recur (reveal-functions funs)])
(define ret
(match e
[(? number?) e]
[(? symbol?)
(cond
[(memq e funs) `(function-ref ,e)]
[else e])]
[`(let ([,x ,e]) ,body)
`(let ([,x ,(recur e)]) ,(recur body))]
[`(void)
`(void)]
[#t #t]
[#f #f]
[`(if ,cnd ,thn ,els)
`(if ,(recur cnd) ,(recur thn) ,(recur els))]
[`(define (,f ,params ...) : ,rt ,body)
`(define (,f ,@params) : ,rt ,(recur body))]
[`(has-type ,e ,t) `(has-type ,(recur e) ,t)]
[`(program (type ,ty) ,ds ... ,body)
(define funs (for/list ([d ds]) (fun-def-name d)))
`(program (type ,ty) ,@(map (reveal-functions funs) ds)
,((reveal-functions funs) body))]
[`(,op ,es ...) #:when (set-member? (primitives) op)
`(,op ,@(map recur es))]
[`(,f ,es ...)
`(app ,(recur f) ,@(map recur es))]
))
ret)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; expose allocation : C1 -> ?
;; This pass has to thread a new environment through that isn't extended
;; This could be overcome with pointers or we could use
(define/override (expose-allocation)
(lambda (e)
(verbose "expose-allocation" e)
(match e
[`(app ,(app (expose-allocation) es) ...)
`(app ,@es)]
[`(function-ref ,f)
`(function-ref ,f)]
[`(program (type ,ty) ,ds ...
,(app (expose-allocation) new-e))
`(program (type ,ty) ,@(map (lambda (d) (expose-allocation-def d))
ds) ,new-e)]
[else
((super expose-allocation) e)])))
(define/public (expose-allocation-def def)
(match def
[`(define (,f ,p:t* ...) : ,t
,(app (expose-allocation) e))
`(define (,f ,@p:t*) : ,t ,e)]
[else (error 'expose-allocation-def "unmatched ~a" def)]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; flatten : S3 -> C3-expr x (C3-stmt list)
(define/public (flatten-body body)
(define-values (new-body ss locals) ((flatten #t) body))
(values locals (append ss `((return ,new-body)))))
(define/override (flatten need-atomic)
(lambda (ast)
(verbose "flatten" ast)
(match ast
[`(program (type ,ty) ,ds ... ,body)
(define-values (locals new-body) (flatten-body body))
(define new-ds (map (flatten #f) ds))
`(program ,locals (type ,ty) (defines ,@new-ds) ,@new-body)]
[`(define (,f [,xs : ,Ts] ...) : ,rt ,body)
(define-values (locals new-body) (flatten-body body))
`(define (,f ,@(map (lambda (x t) `[,x : ,t]) xs Ts)) : ,rt ,locals
,@new-body)]
[`(has-type (function-ref ,f) ,t)
(define tmp (gensym 'tmp))
(values tmp
(list `(assign ,tmp (function-ref ,f)))
(list (cons tmp t)))]
[`(has-type (app ,f ,es ...) ,t)
(define-values (new-f f-ss xs1) ((flatten #t) f))
(define-values (new-es sss xss) (map3 (flatten #t) es))
(define ss (append f-ss (append* sss)))
(define xs2 (append* xss))
(define fun-apply `(app ,new-f ,@new-es))
(cond
[need-atomic
(define tmp (gensym 'tmp))
(values tmp
(append ss `((assign ,tmp ,fun-apply)))
(cons (cons tmp t) (append xs1 xs2))
)]
[else
(values fun-apply ss (append xs1 xs2))])]
[else ((super flatten need-atomic) ast)])))
(inherit root-type?)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; select-instructions : env -> S3 -> S3
(define max-stack 0)
(define/override ((select-instructions) e)
(vomit "select" e)
(match e
[`(define (,f [,xs : ,ps] ...) : ,rt ,locals ,ss ...)
(set! max-stack 0)
(define n (vector-length arg-registers))
;; move from registers and stack locations to parameters
(define-values (first-params last-params)
(cond[(> (length xs) n) (split-at xs n)]
[else (values xs '())]))
(define mov-regs
(for/list ([param first-params] [r arg-registers])
`(movq (reg ,r) (var ,param))))
(define mov-stack
(for/list ([param last-params]
[i (in-range 0 (length last-params))])
`(movq (deref rbp ,(+ 16 (* i 8))) (var ,param))))
(define new-ss
(append mov-stack mov-regs
(append* (map (select-instructions) ss))))
;; parameters become locals
`(define (,f)
,(length xs) (,(append (map cons xs ps) locals) ,max-stack)
,@new-ss)]
[`(assign ,lhs (function-ref ,f))
(define new-lhs ((select-instructions) lhs))
`((leaq (function-ref ,f) ,new-lhs))]
[`(assign ,lhs (app ,f ,es ...))
(define new-lhs ((select-instructions) lhs))
(define new-f ((select-instructions) f))
(define new-es (map (select-instructions) es))
(define n (vector-length arg-registers))
(define-values (first-args last-args)
(cond[(> (length new-es) n) (split-at new-es n)]
[else (values new-es '())]))
(define mov-regs
(for/list ([arg first-args] [r arg-registers])
`(movq ,arg (reg ,r))))
;; replace stack-arg with deref -Jeremy
(define mov-stack
(for/list ([arg last-args] [i (in-range 0 (length last-args))])
`(movq ,arg (stack-arg ,(* i 8)))))
(set! max-stack (max max-stack (length last-args)))
(append mov-stack mov-regs
`((indirect-callq ,new-f) (movq (reg rax) ,new-lhs)))]
[`(program ,locals (type ,ty) (defines ,ds ...) ,ss ...)
(define new-ds (map (select-instructions) ds))
(set! max-stack 0)
(define new-ss (append* (map (select-instructions) ss)))
`(program
(,locals ,max-stack)
(type ,ty)
(defines ,@new-ds)
,@new-ss)]
[else ((super select-instructions) e)]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; uncover-live : live-after -> pseudo-x86 -> pseudo-x86*
(define/override (free-vars a)
(match a
[`(function-ref ,f) (set)]
[`(stack-arg ,i) (set)]
[else (super free-vars a)]
))
(define/override (read-vars instr)
(match instr
[`(leaq ,s ,d) (free-vars s)]
[`(indirect-callq ,arg)
(free-vars arg)]
[`(callq ,f) (set)]
[else (super read-vars instr)]))
(define/override (write-vars instr)
(match instr
[`(indirect-callq ,f) caller-save]
[`(leaq ,s ,d) (free-vars d)]
[else (super write-vars instr)]))
(define/override (uncover-live live-after)
(lambda (ast)
(match ast
[`(define (,f) ,n (,locals ,max-stack) ,ss ...)
(define-values (new-ss lives) ((liveness-ss (set)) ss))
`(define (,f) ,n (,locals ,max-stack ,(cdr lives)) ,@new-ss)]
[`(program (,locals ,max-stack) (type ,ty) (defines ,ds ...) ,ss ...)
(define-values (new-ss lives) ((liveness-ss (set)) ss))
(define new-ds (map (uncover-live (set)) ds))
`(program (,locals ,max-stack ,(cdr lives)) (type ,ty) (defines ,@new-ds) ,@new-ss)]
[else ((super uncover-live live-after) ast)])))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; build-interference : live-after x graph -> pseudo-x86* -> pseudo-x86*
;; *annotate program with interference graph
(define/override (build-interference live-after G xs)
(lambda (ast)
(vomit "build-interference" ast live-after G)
(match ast
[`(define (,f) ,n (,locals ,max-stack ,lives) ,ss ...)
(define new-G (make-graph (map car locals)))
(define new-ss
(for/list ([inst ss] [live-after lives])
((build-interference live-after new-G locals) inst)))
`(define (,f) ,n (,locals ,max-stack ,new-G) ,@new-ss)]
[`(program (,locals ,max-stack ,lives) (type ,ty)
(defines ,ds ...) ,ss ...)
(define new-G (make-graph (map car locals)))
(define new-ds
(for/list ([d ds])
((build-interference (void) (void) (void)) d)))
(define new-ss
(for/list ([inst ss] [live-after lives])
((build-interference live-after new-G locals) inst)))
`(program (,locals ,max-stack ,new-G) (type ,ty)
(defines ,@new-ds) ,@new-ss)]
[else ((super build-interference live-after G xs) ast)]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; build-move-graph : pseudo-x86* -> pseudo-x86*
;; *annotate program with move graph
(define/override (build-move-graph G)
(lambda (ast)
(match ast
[`(program (,locals ,max-stack ,IG) (type ,ty)
(defines ,ds ...) ,ss ...)
(define new-ds (for/list ([d ds])
((build-move-graph (void)) d)))
(define MG (make-graph (map car locals)))
(define new-ss
(for/list ([inst ss])
((build-move-graph MG) inst)))
(print-dot MG "./move.dot")
`(program (,locals ,max-stack ,IG ,MG) (type ,ty)
(defines ,@new-ds) ,@new-ss)]
[`(define (,f) ,n (,locals ,max-stack ,IG) ,ss ...)
(define MG (make-graph (map car locals)))
(define new-ss
(for/list ([inst ss])
((build-move-graph MG) inst)))
`(define (,f) ,n (,locals ,max-stack ,IG ,MG) ,@new-ss)]
[else ((super build-move-graph G) ast)])))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; assign-homes : homes -> pseudo-x86 -> pseudo-x86
(define/override (instructions)
(set-union (super instructions)
(set 'leaq)))
(define/override (assign-homes homes)
(lambda (e)
(match e
[`(stack-arg ,i) `(stack-arg ,i)] ;; obsolete?? -JGS
[`(indirect-callq ,f)
`(indirect-callq ,((assign-homes homes) f))]
[`(function-ref ,f) `(function-ref ,f) ]
[else ((super assign-homes homes) e)]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; allocate-registers : pseudo-x86 -> pseudo-x86
(define/override (allocate-registers)
(lambda (ast)
(match ast
[`(define (,f) ,n (,locals ,max-stack ,IG ,MG) ,ss ...)
(define color (color-graph IG MG (map car locals)))
(define-values (homes stack-spills root-spills)
(allocate-homes locals color))
(define new-ss (map (assign-homes homes) ss))
(define stack-size (align (+ (* stack-spills (variable-size))
(* max-stack (variable-size))) 16))
(define root-size (* root-spills (variable-size)))
`(define (,f) ,n (,stack-size ,root-size) ,@new-ss)]
[`(program (,locals ,max-stack ,IG ,MG) (type ,ty) (defines ,ds ...)
,ss ...)
(define new-ds (map (allocate-registers) ds))
(define color (color-graph IG MG (map car locals)))
(define-values (homes stack-spills root-spills)
(allocate-homes locals color))
(define new-ss (map (assign-homes homes) ss))
(define stack-size (align (+ (* stack-spills (variable-size))
(* max-stack (variable-size))) 16))
(define root-size (* root-spills (variable-size)))
`(program (,stack-size ,root-size) (type ,ty)
(defines ,@new-ds) ,@new-ss)]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; patch-instructions : psuedo-x86 -> x86
(define/override (in-memory? a)
(match a
[`(function-ref ,f) #t]
[`(stack-arg ,i) #t]
[else (super in-memory? a)]))
(define/override (patch-instructions)
(lambda (e)
(match e
[`(define (,f) ,n ,stack-space ,ss ...)
(define sss (for/list ([s ss]) ((patch-instructions) s)))
`(define (,f) ,n ,stack-space ,@(append* sss))]
[`(indirect-callq ,f)
`((indirect-callq ,f))]
[`(program ,stack-space (type ,ty) (defines ,ds ...) ,ss ...)
(define new-ds (for/list ([d ds])
((patch-instructions) d)))
(define sss (for/list ([s ss]) ((patch-instructions) s)))
`(program ,stack-space (type ,ty) (defines ,@new-ds) ,@(append* sss))]
[`(leaq ,s ,d)
(cond [(in-memory? d)
`((leaq ,s (reg rax))
(movq (reg rax) ,d))]
[else
`((leaq ,s ,d))])]
[else ((super patch-instructions) e)]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; lower-conditionals : psuedo-x86 -> x86
(define/override (lower-conditionals)
(lambda (e)
(match e
[`(define (,f) ,n ,stack-space ,ss ...)
`(define (,f) ,n ,stack-space
,@(append* (map (lower-conditionals) ss)))]
[`(program ,stack-space (type ,ty) (defines ,ds ...) ,ss ...)
(define new-ds (for/list ([d ds])
((lower-conditionals) d)))
(define new-ss (for/list ([s ss])
((lower-conditionals) s)))
`(program ,stack-space (type ,ty) (defines ,@new-ds) ,@(append* new-ss))]
[else ((super lower-conditionals) e)]
)))
(inherit variable-size)
;; Locals now take into account that the first few locals on each
;; frame will be the callee saved registers.
(define number-callee-saves (length (set->list callee-save)))
(define/override (first-offset)
(+ (super first-offset) (* number-callee-saves (variable-size))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; print-x86 : x86 -> string
(define/override (print-x86)
(lambda (e)
(match e
[`(function-ref ,f)
(format "~a(%rip)" f)]
[`(indirect-callq ,f)
(format "\tcallq\t*~a\n" ((print-x86) f))]
[`(stack-arg ,i)
(format "~a(%rsp)" i)]
[`(define (,f) ,n (,spill-space ,root-space) ,ss ...)
(define callee-reg (set->list callee-save))
(define save-callee-reg
(for/list ([r callee-reg])
(format "\tpushq\t%~a\n" r)))
(define restore-callee-reg
(for/list ([r (reverse callee-reg)])
(format "\tpopq\t%~a\n" r)))
(define callee-space (* (length (set->list callee-save))
(variable-size)))
(define stack-adj (- (align (+ callee-space spill-space) 16)
callee-space))
(define initialize-roots
(for/list ([i (range (/ root-space (variable-size)))])
(string-append
(format "\tmovq $0, (%~a)\n" rootstack-reg)
(format "\taddq $~a, %~a\n"
(variable-size) rootstack-reg))))
(string-append
(format "\t.globl ~a\n" f)
(format "~a:\n" f)
(format "\tpushq\t%rbp\n")
(format "\tmovq\t%rsp, %rbp\n")
(string-append* save-callee-reg)
(format "\tsubq\t$~a, %rsp\n" stack-adj)
(string-append* initialize-roots)
;; Push callee saves at the bottom of the stack
;; frame because the current code for stack nodes
;; doesn't reason about them. -andre
"\n"
(string-append* (map (print-x86) ss))
"\n"
(format "\taddq\t$~a, %rsp\n" stack-adj)
(string-append* restore-callee-reg)
(format "\tsubq $~a, %~a\n" root-space rootstack-reg)
(format "\tpopq\t%rbp\n")
(format "\tretq\n")
)]
[`(program ,space (type ,ty) (defines ,ds ...) ,ss ...)
(string-append
(string-append* (for/list ([d ds]) ((print-x86) d)))
"\n"
((super print-x86) `(program ,space (type ,ty) ,@ss)))]
[else ((super print-x86) e)]
)))
));; compile-R3
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Passes
(define functions-typechecker
(let ([compiler (new compile-R3)])
(send compiler type-check '())))
(define functions-passes
(let ([compiler (new compile-R3)]
[interp (new interp-R3)])
`(
;("type-check" ,(send compiler type-check '())
;,(send interp interp-scheme '()))
("uniquify" ,(send compiler uniquify '())
,(send interp interp-scheme '()))
("reveal-functions" ,(send compiler reveal-functions '())
,(send interp interp-F '()))
("expose allocation"
,(send compiler expose-allocation)
,(send interp interp-F '()))
("flatten" ,(send compiler flatten #f)
,(send interp interp-C '()))
("instruction selection" ,(send compiler select-instructions)
,(send interp interp-x86 '()))
("liveness analysis" ,(send compiler uncover-live (void))
,(send interp interp-x86 '()))
("build interference" ,(send compiler build-interference
(void) (void) (void))
,(send interp interp-x86 '()))
("build move graph" ,(send compiler
build-move-graph (void))
,(send interp interp-x86 '()))
("allocate registers" ,(send compiler allocate-registers)
,(send interp interp-x86 '()))
("lower conditionals" ,(send compiler lower-conditionals)
,(send interp interp-x86 '()))
("patch instructions" ,(send compiler patch-instructions)
,(send interp interp-x86 '()))
("print x86" ,(send compiler print-x86) #f)
)))