-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler_if.py
585 lines (521 loc) · 23.4 KB
/
compiler_if.py
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
from ast import *
from ast import Assign, List, Module, Set, arg, expr, stmt, cmpop
import select
from compiler import Temporaries
import compiler_register_allocator
from compiler_register_allocator import *
from graph import DirectedAdjList, Vertex, topological_sort, transpose
from utils import Assign, List, Module
from x86_ast import *
from utils import *
from typing import List, Tuple, Set, Dict
from x86_ast import X86Program, arg, instr, location
def cmpop_to_cc(cmp: cmpop) -> str:
match cmp:
case Eq():
return "e"
case NotEq():
return "ne"
case Lt():
return "l"
case LtE():
return "le"
case Gt():
return "g"
case GtE():
return "ge"
# L_Tup
case Is():
return "e"
case _:
raise Exception("cmpop_to_cc unexpected: " + repr(cmp))
class Compiler(compiler_register_allocator.Compiler):
############################################################################
# Shrink
############################################################################
# L_If -> L_If(without `and`, `or`)
# desugar
def shrink_exp(self, e: expr) -> expr:
match e:
case Constant(_) | Name(_) | Call(Name("input_int"), []):
return e
case UnaryOp(op, exp):
return UnaryOp(op, self.shrink_exp(exp))
case BinOp(exp1, op, exp2):
return BinOp(self.shrink_exp(exp1), op, self.shrink_exp(exp2))
# desugar `and`, `or`
case BoolOp(And(), [exp1, exp2]):
return IfExp(
self.shrink_exp(exp1), self.shrink_exp(exp2), Constant(False)
)
case BoolOp(Or(), [exp1, exp2]):
return IfExp(
self.shrink_exp(exp1), Constant(True), self.shrink_exp(exp2)
)
case IfExp(exp1, exp2, exp3):
return IfExp(
self.shrink_exp(exp1), self.shrink_exp(exp2), self.shrink_exp(exp3)
)
case Compare(left, [cmp], [right]):
return Compare(self.shrink_exp(left), [cmp], [self.shrink_exp(right)])
case _:
raise Exception("shrink_exp unexpected: " + repr(e))
def shrink_stmt(self, s: stmt) -> stmt:
match s:
# 处理 subexpression
case Expr(Call(Name("print"), [exp])):
return Expr(Call(Name("print"), [self.shrink_exp(exp)]))
case Expr(e):
return Expr(self.shrink_exp(e))
case Assign([Name(var)], exp):
return Assign([Name(var)], self.shrink_exp(exp))
case If(exp, body, orelse):
return If(
self.shrink_exp(exp),
[self.shrink_stmt(ss) for ss in body],
[self.shrink_stmt(ss) for ss in orelse],
)
case _:
raise Exception("shrink_stmt unexpected: " + repr(s))
def shrink(self, p: Module) -> Module:
return Module([self.shrink_stmt(s) for s in p.body])
############################################################################
# Remove Complex Operands
############################################################################
# L_If(without `and`, `or`) -> L_If^mon
def rco_exp(self, e: expr, need_atomic: bool) -> Tuple[expr, Temporaries]:
result_expr = expr()
result_temps = []
match e:
case Compare(left, [cmp], [right]):
(new_left, temps1) = self.rco_exp(left, True)
(new_right, temps2) = self.rco_exp(right, True)
result_expr, result_temps = (
Compare(new_left, [cmp], [new_right]),
temps1 + temps2,
)
case IfExp(test, body, orelse):
(new_test, temps1) = self.rco_exp(test, False)
(new_body, temps2) = self.rco_exp(body, False)
(new_orelse, temps3) = self.rco_exp(orelse, False)
# Begin 适合处理嵌套 if expression 的情况.
then_branch = make_begin(temps2, new_body)
else_branch = make_begin(temps3, new_orelse)
result_expr, result_temps = (
IfExp(new_test, then_branch, else_branch),
temps1,
)
case _:
return super().rco_exp(e, need_atomic) # type: ignore
if need_atomic:
tmp = generate_name("tmp")
result_expr, result_temps = Name(tmp), result_temps + [
(Name(tmp), result_expr)
]
return (result_expr, result_temps)
def rco_stmt(self, s: stmt) -> List[stmt]:
match s:
case If(exp, body, orelse):
new_exp, temps = self.rco_exp(exp, False)
new_body = [new_ss for ss in body for new_ss in self.rco_stmt(ss)]
new_orelse = [new_ss for ss in orelse for new_ss in self.rco_stmt(ss)]
return make_assigns(temps) + [If(new_exp, new_body, new_orelse)] # type: ignore
case _:
return super().rco_stmt(s)
############################################################################
# Explicate Control
############################################################################
# L_If^mon -> C_If
def create_block(
self, stmts: List[stmt], basic_block: Dict[str, List[stmt]]
) -> List[stmt]:
match stmts:
case [Goto(l)]:
return stmts
case _:
label = label_name(generate_name("block"))
basic_block[label] = stmts
return [Goto(label)]
# generates code for an if expression or statement by analyzing the condition expression
# 返回 `stmt` ... If(Compare(atm, [cmp], [atm]), [Goto(label)], [Goto(label)])
def explicate_pred(
self, cnd: expr, thn: List[stmt], els: List[stmt], basic_blocks: Dict[str, List[stmt]]
) -> List[stmt]:
match cnd:
case Compare(left, [op], [right]):
goto_thn = self.create_block(thn, basic_blocks)
goto_els = self.create_block(els, basic_blocks)
return [If(cnd, goto_thn, goto_els)]
case Constant(True):
return thn
case Constant(False):
return els
case UnaryOp(Not(), operand):
return self.explicate_pred(operand, els, thn, basic_blocks)
# y+2 if (x==0 if x<1 else x==2) else y+10
case IfExp(test, body, orelse) as if_exp:
goto_thn = self.create_block(thn, basic_blocks)
goto_els = self.create_block(els, basic_blocks)
body_ss = self.explicate_pred(body, goto_thn, goto_els, basic_blocks)
orelse_ss = self.explicate_pred(
orelse, goto_thn, goto_els, basic_blocks
)
return self.explicate_pred(test, body_ss, orelse_ss, basic_blocks)
# if Begin([res=100], res)
case Begin(body, result):
result_ss = self.explicate_pred(result, thn, els, basic_blocks)
for s in reversed(body):
result_ss = self.explicate_stmt(s, result_ss, basic_blocks)
return result_ss
case _:
return [
If(
Compare(cnd, [Eq()], [Constant(True)]),
self.create_block(thn, basic_blocks),
self.create_block(els, basic_blocks),
)
]
# generates code for expressions as statments, so their result is ignored and only their side effects matter
# 处理 Expr(e) 的 e, 过滤掉纯的表达式
# 返回 C_If stmts
def explicate_effect(
self, e: expr, cont: List[stmt], basic_blocks: Dict[str, List[stmt]]
) -> List[stmt]:
match e:
case Begin(body, result):
begin_block = self.explicate_effect(result, cont, basic_blocks) + cont
for s in reversed(body):
begin_block = self.explicate_stmt(s, begin_block, basic_blocks)
return begin_block
case IfExp(test, body, orelse):
assert isinstance(body, Begin)
assert isinstance(orelse, Begin)
goto_cont = self.create_block(cont, basic_blocks)
body_ss = self.explicate_effect(body, goto_cont, basic_blocks)
orelse_ss = self.explicate_effect(orelse, goto_cont, basic_blocks)
return self.explicate_pred(test, body_ss, orelse_ss, basic_blocks)
case Call(func, args):
# print(f"======Call(func, args): {func}, {args}")
return [Expr(e)] + cont
case _:
return cont
# generates code for expressions on the right-hand side of an assignment
# 处理 Assign statement
# 返回 C_If stmts
def explicate_assign(
self,
rhs: expr,
lhs: expr,
cont: List[stmt],
basic_blocks: Dict[str, List[stmt]],
) -> List[stmt]:
match rhs:
case IfExp(test, body, orelse):
# print(f"======body:{body}")
# print(f"======orelse:{orelse}")
goto_cont = self.create_block(cont, basic_blocks)
body_assign = self.explicate_assign(body, lhs, goto_cont, basic_blocks)
orelse_assign = self.explicate_assign(
orelse, lhs, goto_cont, basic_blocks
)
return self.explicate_pred(
test, body_assign, orelse_assign, basic_blocks
)
case Begin(body, result):
result_ss = self.explicate_assign(result, lhs, cont, basic_blocks)
for s in reversed(body):
result_ss = self.explicate_stmt(s, result_ss, basic_blocks)
return result_ss
case _:
return [Assign([lhs], rhs)] + cont
# generates code for statements
def explicate_stmt(
self, s: stmt, cont: List[stmt], basic_blocks: Dict[str, List[stmt]]
) -> List[stmt]:
match s:
case Assign([lhs], rhs):
return self.explicate_assign(rhs, lhs, cont, basic_blocks)
# expression-statement
case Expr(value):
# print(f"======Expr(value): {value}")
return self.explicate_effect(value, cont, basic_blocks)
case If(test, body, orelse):
# print(f"====If stmt: {s}")
goto_cont = self.create_block(cont, basic_blocks)
body_ss = goto_cont
for s in reversed(body):
body_ss = self.explicate_stmt(s, body_ss, basic_blocks)
orelse_ss = goto_cont
for s in reversed(orelse):
orelse_ss = self.explicate_stmt(s, orelse_ss, basic_blocks)
return self.explicate_pred(test, body_ss, orelse_ss, basic_blocks)
case _:
raise Exception("explicate_stmt unexpected: " + repr(s))
# Expr(Call(Name('print'), [Name('tmp.0')]))
def explicate_control(self, p: X86Program) -> CProgram:
match p:
case Module(body):
basic_blocks: dict[str, list[stmt]] = {}
new_body: list[stmt] = [Return(Constant(0))]
# 倒序编译
for s in reversed(body):
new_body = self.explicate_stmt(s, new_body, basic_blocks)
basic_blocks[label_name("start")] = new_body
return CProgram(basic_blocks)
case _:
raise Exception("explicate_control unexpected: " + repr(p))
############################################################################
# Select Instructions
############################################################################
# C_If -> x86_If^Var
def select_arg(self, e: expr) -> arg:
match e:
case Constant(True):
return Immediate(1)
case Constant(False):
return Immediate(0)
case _:
return super().select_arg(e)
def select_stmt_assign(self, s: Assign) -> List[instr]:
match s:
case Assign([Name(var)], UnaryOp(Not(), Name(var2))) if var == var2:
return [Instr("xorq", [Immediate(1), Variable(var2)])]
case Assign([Name(var)], UnaryOp(Not(), atm)):
arg = self.select_arg(atm)
return [
Instr("movq", [arg, Variable(var)]),
Instr("xorq", [Immediate(1), Variable(var)]),
]
case Assign([Name(var)], Compare(left_atm, [cmp], [right_atm])):
left_arg = self.select_arg(left_atm)
right_arg = self.select_arg(right_atm)
cc = cmpop_to_cc(cmp)
return [
Instr("cmpq", [right_arg, left_arg]),
Instr(f"set{cc}", [ByteReg("al")]),
Instr("movzbq", [ByteReg("al"), Variable(var)]),
]
case _:
return super().select_stmt_assign(s)
def select_stmt(self, s: stmt) -> List[instr]:
match s:
case Goto(label):
return [Jump(label)]
case If(Compare(left_atm, [cmp], [right_atm]), [Goto(thn)], [Goto(els)]):
leaft_arg = self.select_arg(left_atm)
right_arg = self.select_arg(right_atm)
cc = cmpop_to_cc(cmp)
return [
Instr("cmpq", [right_arg, leaft_arg]),
JumpIf(cc, thn),
Jump(els),
]
# TODO: type error
case Return(exp):
return [
Instr("movq", [self.select_arg(exp), Reg("rax")]), # type: ignore
Jump(label_name("conclusion")),
]
case _:
return super().select_stmt(s)
def select_instructions(self, p: Module) -> X86Program:
new_body = {}
for bb, stmts in p.body.items(): # type: ignore
instrs = [i for s in stmts for i in self.select_stmt(s)]
new_body[bb] = instrs
return X86Program(new_body)
###########################################################################
# Uncover Live
###########################################################################
def read_vars(self, i: instr) -> Set[location]:
match i:
case Instr("xorq", [arg1, arg2]):
return arg_to_locations(arg1) | arg_to_locations(arg2)
case Instr("cmpq", [arg1, arg2]):
return arg_to_locations(arg1) | arg_to_locations(arg2)
case Instr("movzbq", [arg1, _]):
return arg_to_locations(arg1)
case Instr(setcc, [_]) if setcc.startswith("set"):
return set() # 不用考虑 EFLAGS
case Jump(_) | JumpIf(_, _):
return set()
case _:
return super().read_vars(i)
def write_vars(self, i: instr) -> Set[location]:
match i:
case Instr("xorq", [_, arg2]):
return arg_to_locations(arg2)
case Instr("cmpq", [_, arg2]):
return set() # 不用考虑 EFLAGS
case Instr("movzbq", [_, arg2]):
return arg_to_locations(arg2)
case Instr(setcc, [arg]) if setcc.startswith("set"):
return arg_to_locations(arg)
case Jump(_) | JumpIf(_, _):
return set()
return super().write_vars(i)
def build_cfg(self, basic_blocks: Dict[str, List[instr]]) -> DirectedAdjList:
cfg = DirectedAdjList()
for bb, stmts in basic_blocks.items():
for i in stmts:
match i:
case Jump(label) | JumpIf(_, label):
cfg.add_edge(bb, label)
case _:
pass
return cfg
def uncover_live_inner_bb(
self, ss: List[instr], live_before_block: Dict[str, Set[location]]
) -> Tuple[Dict[instr, Set[location]], Dict[instr, Set[location]]]:
live_before = {i: set() for i in range(len(ss))}
live_after = {i: set() for i in range(len(ss))}
match ss[len(ss) - 1]:
case Jump(label):
live_after[len(ss) - 1] = live_before_block[label]
case JumpIf(cc, label):
live_after[len(ss) - 1] = live_before_block[label]
case _:
live_after[len(ss) - 1] = set()
for i, inst in reversed(list(enumerate(ss))):
match inst:
case Jump(label):
live_before[i] = live_before_block[label]
case JumpIf(_, label):
live_before[i] = (
live_after[i] - self.write_vars(inst)
) | self.read_vars(inst)
live_before[i] = live_before[i].union(live_before_block[label])
case _:
live_before[i] = (
live_after[i] - self.write_vars(inst)
) | self.read_vars(inst)
if i - 1 >= 0:
live_after[i - 1] = live_before[i]
result_live_before = {inst: live_before[i] for i, inst in enumerate(ss)}
result_live_after = {inst: live_after[i] for i, inst in enumerate(ss)}
return (result_live_before, result_live_after)
# 基于 cfg 来做 liveness 分析
def uncover_live(self, p: X86Program) -> Dict[instr, Set[location]]:
assert isinstance(p.body, dict)
basic_blocks = p.body
cfg = self.build_cfg(p.body)
rcfg = transpose(cfg)
rtopo_order: list[Vertex] = topological_sort(rcfg) # type: ignore
# print(f"======p.body: {p.body}")
# print(f"======rtopo_order: {rtopo_order}")
live_before_block: dict[str, set[location]] = {}
live_after = {}
for label in rtopo_order:
stmts = basic_blocks[label]
if label == label_name("conclusion"):
live_before_block[label] = set([Reg("rax"), Reg("rsp")])
continue
live_before_inner_bb, live_after_inner_bb = self.uncover_live_inner_bb(stmts, live_before_block)
live_before_block[label] = live_before_inner_bb[stmts[0]]
live_after.update(live_after_inner_bb)
return live_after
############################################################################
# Build Interference
############################################################################
def build_interference(
self, p: X86Program, live_after: Dict[instr, Set[location]]
) -> UndirectedAdjList:
assert isinstance(p.body, dict)
g = UndirectedAdjList()
for _, instrs in p.body.items():
for inst in instrs:
match inst:
case Instr("movq", [s, d]) | Instr("movzbq", [s, d]) if islocation(
d
):
for v in live_after[inst]:
if v != d and v != s:
g.add_edge(d, v)
case Callq(_, _):
for v in live_after[inst]:
for r in caller_saved_regs:
g.add_edge(v, Reg(r))
case _:
for d in self.write_vars(inst): # type: ignore
for v in live_after[inst]: # type: ignore
if v != d:
g.add_edge(d, v)
return g
############################################################################
# Assign Homes
############################################################################
# x86_Var -> x86_If
def assign_homes(self, pseudo_x86: X86Program) -> X86Program:
assert isinstance(pseudo_x86.body, dict)
# 手动补充一个 conclusion block
pseudo_x86.body[label_name("conclusion")] = []
live_after = self.uncover_live(pseudo_x86)
g = self.build_interference(pseudo_x86, live_after)
coloring_home, spilled_home = self.allocate_registers(pseudo_x86, g)
home = {**coloring_home, **spilled_home}
self.spilled_size = len(spilled_home) * 8
new_body: dict[str, list[instr]]= {}
for bb, instrs in pseudo_x86.body.items():
new_body[bb] = [self.assign_homes_instr(i, home) for i in instrs] # type: ignore
return X86Program(new_body)
###########################################################################
# Patch Instructions
###########################################################################
def patch_instr(self, i: instr) -> List[instr]:
# print(f"======>>>>>>>patch_instr: {i}")
match i:
case Instr("cmpq", [arg, Immediate(n)]):
return [
Instr("movq", [Immediate(n), Reg("rax")]),
Instr("cmpq", [arg, Reg("rax")])
]
case Instr("movbzq", [arg, Deref(reg, off)]):
return [
Instr("movbzq", [arg, Reg("rax")]),
Instr("movq", [Reg("rax"), Deref(reg, off)])
]
case Jump(_):
return [i]
case _:
return super().patch_instr(i)
def patch_instructions(self, p: X86Program) -> X86Program:
assert isinstance(p.body, dict)
new_body = {}
for bb, instrs in p.body.items():
filtered_instrs = []
for inst in instrs:
match inst:
case Instr("movq", [Deref(_, _) as d1, Deref(_, _) as d2]) if d1 == d2:
continue
case Instr("movq", [Reg(r1), Reg(r2)]) if r1 == r2:
continue
case _:
filtered_instrs.append(inst)
new_body[bb] = [ii for i in filtered_instrs for ii in self.patch_instr(i)]
return X86Program(new_body)
###########################################################################
# Prelude & Conclusion
###########################################################################
def prelude_and_conclusion(self, p: X86Program) -> X86Program:
# print(self.spilled_size)
# print(self.used_callee)
assert isinstance(p.body, dict)
used_callee_size = len(self.used_callee) * 8
rsp_aligned = align(self.spilled_size + used_callee_size, 16) - used_callee_size
prelude = [
Instr("pushq", [Reg("rbp")]),
Instr("movq", [Reg("rsp"), Reg("rbp")]),
]
prelude += [Instr("pushq", [Reg(r)]) for r in self.used_callee]
if rsp_aligned > 0:
prelude += [Instr("subq", [Immediate(rsp_aligned), Reg("rsp")])]
p.body[label_name('main')] = prelude + [Jump(label_name("start"))]
conclusion = [
Instr("popq", [Reg(r)]) for r in reversed(self.used_callee)] + [
Instr("popq", [Reg("rbp")]),
Instr("retq", []),
]
if rsp_aligned > 0:
conclusion.insert(0, Instr("addq", [Immediate(rsp_aligned), Reg("rsp")]))
p.body[label_name('conclusion')] = conclusion
return X86Program(p.body) # type: ignore