-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompiler.rkt
44 lines (42 loc) · 1.02 KB
/
compiler.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
#|
author : brj
lives at : https://github.com/iambrj/imin
|#
#lang racket
(require racket/set
racket/stream
racket/fixnum
graph
"interp-Rint.rkt"
"utilities.rkt"
"utils.rkt"
"constants.rkt"
"shrink.rkt"
"reveal-functions.rkt"
"convert-to-closures.rkt"
"limit-functions.rkt"
"expose-allocation.rkt"
"uniquify.rkt"
"rco.rkt"
"explicate-control.rkt"
"select-instructions.rkt"
"build-cfg.rkt"
"uncover-live.rkt"
"build-interference.rkt"
"allocate-registers.rkt"
"patch-instructions.rkt"
"print-x86.rkt")
(provide shrink
reveal-functions
limit-functions
expose-allocation
uniquify
remove-complex-opera*
explicate-control
select-instructions
build-cfg
uncover-live
build-interference
allocate-registers
patch-instructions
print-x86)