-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptimize-control.rkt
65 lines (53 loc) · 1.85 KB
/
optimize-control.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
#lang racket
(require "conditionals.rkt")
(require "interp.rkt")
(require "utilities.rkt")
(provide compile-opt-R1 optimize-control-passes)
(define challenge #t)
(define compile-opt-R1
(class compile-R1
(super-new)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; basic-blocks : psuedo-x86 -> x86
(define/public (basic-blocks-stms es)
)
(define/public (basic-blocks)
(lambda (e)
(match e
[`(if ,cnd ,thn-ss ,els-ss)
]
)))
(define/public (basic-blocks-cnd true-label false-label)
(lambda (e)
(match e
[]
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; optimize-jumps
;; UNDER CONSTRUCTION
));; compile-opt-R1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Passes
(define optimize-control-passes
(let ([compiler (new compile-opt-R1)]
[interp (new interp-R1)])
`(("type-check" ,(send compiler type-check '())
,(send interp interp-scheme '()))
("uniquify" ,(send compiler uniquify '())
,(send interp interp-scheme '()))
("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))
,(send interp interp-x86 '()))
("allocate registers" ,(send compiler allocate-registers)
,(send interp interp-x86 '()))
("patch instructions" ,(send compiler patch-instructions)
,(send interp interp-x86 '()))
;; expose-basic-blocks
("print x86" ,(send compiler print-x86) #f)
)))