-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuCGenerate.py
1167 lines (942 loc) · 38 KB
/
uCGenerate.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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'''
Second Project: IR generation for the uC language (uCIR) based on checked AST.
uCIR: check SecondProject.ipynb in 'Notebooks' submodule.
Subject:
MC921 - Construction of Compilers
Authors:
Victor Ferreira Ferrari - RA 187890
Vinicius Couto Espindola - RA 188115
University of Campinas - UNICAMP - 2020
Last Modified: 09/07/2020.
'''
import re
import uCAST as ast
from uCSemantic import SymbolTable
from os.path import exists
class ScopeStack():
'''
Class responsible for keeping variables scopes.
Used for type checking variables as well as checking if they're are defined.
Atributes:
- stack: stack of SymbolTables. Each item is a different scope ([0] is global [-1] is local)
'''
def __init__(self):
self.stack = []
self.dims = dict()
# Add new scope (if a function definition started)
# Every function definition is considered a new scope (new symboltable)
def add_scope(self, node=None):
sym_tab = SymbolTable()
if node : node = node.decl.name
sym_tab.add(0, node)
self.stack.append(sym_tab)
# Add a new variable's address to the current function's scope
def add_to_scope(self, node, addr):
scope = self.stack[-1]
name = node.declname.name
scope.add(name, addr)
# Add a new variable's name to the global scope
def add_global(self, node, addr):
name = node.declname.name
self.stack[0].add(name, addr)
def add_dims(self, node, data):
name = node.declname.name
dims = list(map(int, re.findall(r'_(\d+)', data)))
self.dims[name] = dims
def fetch_dims(self, node):
return list(reversed(self.dims[node.name]))
# Get type of function, stored as a global var.
def get_func_type(self, name):
return self.stack[0].lookup(name).type
# Return a variable's address
def fetch_temp(self, node):
name = node.name
for scope in self.stack[::-1]:
var = scope.lookup(name)
if var: break
# If function
if isinstance(var, ast.VarDecl):
var = var.gen_location
return var
# Remove current scope from stack (when a FuncDef node ends)
def pop_scope(self):
self.stack.pop()
# Print for debugging
def __str__(self):
text = '\n'
for (i,sym) in enumerate(self.stack):
st = sym.symtab
labels = list(st.keys())
labels.remove(0) # Remove enclosure
labels = [(x,st[x]) for x in labels]
if i: enclosure = f"At '{st[0].name}'" if st[0] else 'In a loop'
else : enclosure = 'Globals'
text += f"{enclosure} => |"
for k,v in labels: text+=f" {k} {v} |"
text += '\n'
return text
class uCIRGenerator(ast.NodeVisitor):
'''
Node visitor class that creates 3-address encoded instruction sequences.
'''
def __init__(self, front_end=None):
super(uCIRGenerator, self).__init__()
# Adding variables tables
self.scopes = ScopeStack()
# Adding front_end for testing.
self.front_end = front_end
# Exclusive stacks
self.constants = dict()
self.globals = dict()
# Version dictionary for temporaries
self.fname = 'global'
self.versions = {}
self.cnst_counter = 0
# Dictionaries for operations
self.bin_ops = {'+':'add', '-':'sub', '*':'mul', '/':'div', '%':'mod'}
self.rel_ops = {'<':'lt', '>':'gt', '<=':'le', '>=':'ge', '==':'eq', '!=':'ne', '&&':'and', '||':'or'}
# The generated code (list of tuples)
self.code = []
# Useful attributes
self.arr = {'offset':0, 'depth':-1, 'stack':[]}
self.ret = {}
self.loop_end = []
self.alloc_phase = None
def new_str(self):
''' Create a new string constant on the global scope. '''
name = f"@.str.{self.cnst_counter}"
self.cnst_counter += 1
return name
def new_const(self, name):
''' Create a new array constant on the global scope. '''
const = f"@.const_" + name + f".{self.cnst_counter}"
self.cnst_counter += 1
return const
def new_temp(self):
''' Create a new temporary variable of a given scope (function name). '''
if self.fname not in self.versions:
self.versions[self.fname] = 1
name = f"%{self.versions[self.fname]}"
self.versions[self.fname] += 1
return name
def generate(self, data):
ast = self.front_end.parser.parse(data, False)
self.front_end.visit(ast)
self.visit(ast)
def test(self, data, show_ast, out_file=None, quiet=False):
self.code = []
self.front_end.parser.lexer.reset_line_num()
# Scan and parse
if exists(data):
with open(data, 'r') as content_file :
data = content_file.read()
ast = self.front_end.parser.parse(data, False)
# Check semantics
self.front_end.visit(ast)
# Show AST
if show_ast:
ast.show()
# Generate IR
self.visit(ast)
if not quiet: self.print_code()
if out_file: self.write_file(self.code, out_file)
def format_instruction(self, t):
# Auxiliary method to pretty print the instructions
# t is the tuple that contains one instruction
op = t[0]
if len(t) > 1:
if op.startswith("define"):
return f"\n{op} {t[1]} " + ', '.join(list(' '.join(el) for el in t[2]))+'\nentry:'
else:
_str = "" if op.startswith('global') else " "
if op == 'jump':
_str += f"{op} label {t[1]}"
elif op == 'cbranch':
_str += f"{op} {t[1]} label {t[2]} label {t[3]}"
elif op == 'global_string':
_str += f"{op} {t[1]} \'{t[2]}\'"
elif op.startswith('return'):
_str += f"{op} {t[1]}"
else:
for _el in t:
_str += f"{_el} "
return _str
elif op == 'print_void' or op == 'return_void':
return f" {op}"
elif op.isdigit():
return f"{op}:"
else:
return f"{op}"
def print_code(self):
formatted = map(self.format_instruction, self.code)
print(*list(formatted), sep='\n')
def show(self, buf=None):
if not buf:
self.print_code()
else:
_str = ''
for _code in self.code:
_str += self.format_instruction(code)+'\n'
buf.write(_str)
def write_file(self, code, out_file):
out = ''
for inst in code: out += self.format_instruction(inst)+'\n'
f = open(out_file, 'w')
f.write(out)
f.close()
def visit_Program(self, node):
# Define volatile vars scope.
self.fname = 'global'
self.versions = {}
# Add global scope.
self.scopes.add_scope()
# Visit all global declarations.
for gdecl in node.gdecls:
if isinstance(gdecl, ast.GlobalDecl):
self.visit(gdecl)
# Visit all function definitions.
for fdef in node.gdecls:
if isinstance(fdef, ast.FuncDef):
self.visit(fdef)
# Remove global scope.
self.scopes.pop_scope()
# Append to special stacks
globs = list(self.globals.values())
consts = list(self.constants.values())
self.code = globs + consts + self.code
def visit_ArrayDecl(self, node):
# Getting type
ty = self.build_decl_types(node)
# Adding to scope
var = node.type
while not isinstance(var, ast.VarDecl):
var = var.type
self.scopes.add_dims(var, ty)
# Allocate
if self.fname == 'global':
node.gen_location = '@'+var.declname.name
else:
alloc_target = '%'+var.declname.name
inst = ('alloc_' + ty, alloc_target)
self.code.append(inst)
node.gen_location = alloc_target
self.scopes.add_to_scope(var, node.gen_location)
def visit_ArrayRef(self, node):
self.arr['depth'] += 1
# Fetch the array's dimensions (if on root)
self.build_offset(node)
# If not root, skip elem instruction
if self.arr['depth'] == 0:
# get address and type
addr = self.arr['temp']
ty = self.arr['type']
# Get new temp variables
target = self.new_temp()
# Create instructions
elem = ("elem_" + ty, addr, self.arr['offset'], target)
self.code.append(elem)
# If ArrayRef in ArrayRef must manually load
if self.arr['stack']:
addr = target
target = self.new_temp()
load = (f'load_{ty}_*', addr, target)
self.code.append(load)
# Update class gen_location
node.gen_location = target
self.arr['depth'] -= 1
def visit_Assert(self, node):
# Visit the assert condition
self.visit(node.expr)
# Create three new temporary variable names for True/False and rest of code
target_true = self.new_temp()
target_fake = self.new_temp()
target_rest = self.new_temp()
# Create the opcode.
branch = ('cbranch', node.expr.gen_location, target_true, target_fake)
# Create TRUE
true_label = (target_true[1:],)
true_jump = ('jump', target_rest)
# Create FALSE
fake_label = (target_fake[1:],)
coord = node.expr.coord
msg_coord = f'{coord.line}:{coord.column}'
name = self.new_str()
inst = ('global_string', name, 'assertion_fail on '+msg_coord)
self.constants[name] = inst
error = ('print_string', name)
# Jump to return
fake_jump = ('jump', self.ret['label'])
# Rest of code label
rest_label = (target_rest[1:],)
# Append all instructions
self.code += [branch, true_label, true_jump, fake_label, error, fake_jump, rest_label]
def visit_Assignment(self, node):
# Visit the expression to be assigned.
self.visit(node.rvalue)
# Create types
ty = self.build_reg_types(node.rvalue.type)
# Load if ArrayRef
if isinstance(node.rvalue, ast.ArrayRef):
target = self.new_temp()
inst = ('load_'+ty+'_*', node.rvalue.gen_location, target)
self.code.append(inst)
node.rvalue.gen_location = target
# Assignable expressions are ID, ArrayRef and UnaryOp
visited = False
if isinstance(node.lvalue, ast.ID):
laddr = self.scopes.fetch_temp(node.lvalue)
elif isinstance(node.lvalue, ast.UnaryOp) and node.lvalue.op == '*':
laddr = self.scopes.fetch_temp(node.lvalue.expr)
ty += '_*'
else:
visited = True
self.visit(node.lvalue)
laddr = node.lvalue.gen_location
# Get content if ArrayRef.
if isinstance(node.lvalue, ast.ArrayRef):
ty += '_*'
# Other assignment ops
if node.op != '=':
if not visited: self.visit(node.lvalue)
loc = self.new_temp()
opcode = self.bin_ops[node.op[0]] + "_" + ty
inst = (opcode, node.lvalue.gen_location, node.rvalue.gen_location, loc)
self.code.append(inst)
else:
loc = node.rvalue.gen_location
if isinstance(node.rvalue, ast.UnaryOp) and node.rvalue.op == '&':
inst = ('get_' + ty + '_*', loc, laddr)
else:
inst = ('store_' + ty, loc, laddr)
self.code.append(inst)
# Store location of the result on the node
node.gen_location = laddr
def visit_BinaryOp(self, node):
# Visit the left and right expressions
self.visit(node.lvalue)
# Load if ArrayRef
if isinstance(node.lvalue, ast.ArrayRef):
ty = self.build_reg_types(node.lvalue.type)
target = self.new_temp()
inst = ('load_'+ty+'_*', node.lvalue.gen_location, target)
self.code.append(inst)
node.lvalue.gen_location = target
self.visit(node.rvalue)
# Load if ArrayRef
if isinstance(node.rvalue, ast.ArrayRef):
ty = self.build_reg_types(node.rvalue.type)
target = self.new_temp()
inst = ('load_'+ty+'_*', node.rvalue.gen_location, target)
self.code.append(inst)
node.rvalue.gen_location = target
# Make a new temporary for storing the result
target = self.new_temp()
# Create the opcode and append to list
opcode = self.get_operation(node.op, node.lvalue.type)
inst = (opcode, node.lvalue.gen_location, node.rvalue.gen_location, target)
self.code.append(inst)
# Store location of the result on the node
node.gen_location = target
def visit_Break(self, node):
inst = ('jump', self.loop_end[-1])
self.code.append(inst)
def visit_Cast(self, node):
# Visit the expression
self.visit(node.expr)
# Load if ArrayRef
if isinstance(node.expr, ast.ArrayRef):
ty = self.build_reg_types(node.expr.type)
target = self.new_temp()
inst = ('load_'+ty+'_*', node.expr.gen_location, target)
self.code.append(inst)
node.expr.gen_location = target
# Check type.
ty = node.type.name[0].name
if ty == 'int':
opcode = 'fptosi'
else:
opcode = 'sitofp'
# Create the opcode and append to list
old = node.expr.gen_location
casted = self.new_temp()
inst = (opcode, old, casted)
node.expr.gen_location = casted
self.code.append(inst)
# Store location of the result on the node
node.gen_location = node.expr.gen_location
def visit_Compound(self, node):
if node.decls:
for decl in node.decls:
self.visit(decl)
if node.stats:
for stmt in node.stats:
self.visit(stmt)
def visit_Constant(self, node):
# Get type and check if is a string
ty = node.type.name[0].name
# Strings are a special case
if ty == 'string':
# Constant must be in array (no opcode)
name = self.new_str()
inst = ('global_string', name, node.value)
self.constants[name] = inst
node.gen_location = name
return
# Create a new temporary variable name
target = self.new_temp()
# Make the SSA opcode and append to list of generated instructions
inst = ('literal_' + ty, node.value, target)
self.code.append(inst)
# Save the name of the temporary variable where the value was placed
node.gen_location = target
def visit_Decl(self, node):
# Check for globals
if self.fname == 'global':
# Visit declaration
self.visit(node.type)
# Check function ptr
dec = node.type
while not (isinstance(dec, ast.Type) or isinstance(dec, ast.FuncDecl)):
dec = dec.type
# Get decl type and name.
ty = self.build_decl_types(node.type)
ty = 'global_' + ty
name = node.type.gen_location
# Function Pointer.
if isinstance(dec, ast.FuncDecl):
params_list = []
for i, p in enumerate(dec.params.params or []):
par = self.build_decl_types(p)
params_list.append(par)
inst = (ty, name, params_list)
# Regular variables.
elif node.init:
init = self.get_expr(node.init, ty=node.type, name=ty)
inst = (ty, name, init)
else:
inst = (ty, name)
# Add to global or constant if local array initialization
self.globals[name] = inst
# Get gen_location
node.gen_location = node.type.gen_location
elif self.alloc_phase:
self.visit(node.type)
# Get gen_location
node.gen_location = node.type.gen_location
# Handle initialization
elif node.init:
# Get decl type.
ty = self.build_decl_types(node.type)
# Check for array initializers
arr_decl = isinstance(node.type, ast.ArrayDecl)
init_type = isinstance(node.init, ast.InitList)
# If InitList
if arr_decl and init_type:
init = self.get_expr(node.init, ty=node.type, name=ty)
name = self.new_const(node.name.name)
inst = ('global_' + ty, name, init)
self.constants[name] = inst
# Create opcode and append to instruction list
inst = ('store_' + ty, name, node.gen_location)
self.code.append(inst)
else:
# Visit initializers
self.visit(node.init)
name = node.init.gen_location
# Create opcode and append to instruction list
if isinstance(node.init, ast.UnaryOp) and node.init.op == '&':
inst = ('get_' + ty, name, node.gen_location)
self.code.append(inst)
elif isinstance(node.init, ast.ArrayRef):
target = self.new_temp()
inst1 = ('load_' + ty + '_*', name, target)
inst2 = ('store_' + ty, target, node.gen_location)
self.code += [inst1, inst2]
else:
inst = ('store_' + ty, name, node.gen_location)
self.code.append(inst)
def visit_DeclList(self, node):
for decl in node.decls:
self.visit(decl)
def visit_EmptyStatement(self, node):
return
def visit_ExprList(self, node):
# Visit expressions
for expr in node.exprs:
self.visit(expr)
def visit_For(self, node):
# Add loop scope
self.scopes.add_scope()
# Create loop label
label = self.new_temp()
inst = ('jump', label)
# Create true/false labels
if node.cond:
target_true = self.new_temp()
target_fake = self.new_temp()
else:
target_fake = self.new_temp()
# Visit declarations
if node.init:
self.visit(node.init)
self.code += [inst, (label[1:],)]
if node.cond:
# Visit the condition
self.visit(node.cond)
# Create the opcode and append to list
inst = ('cbranch', node.cond.gen_location, target_true, target_fake)
self.code.append(inst)
self.code.append((target_true[1:],))
# Add loop ending to attribute.
self.loop_end.append(target_fake)
# Visit loop
if node.body:
self.visit(node.body)
# Visit next
if node.next:
self.visit(node.next)
# Go back to the beginning.
inst = ('jump', label)
self.code.append(inst)
# Remove loop scope and end
self.loop_end.pop()
self.scopes.pop_scope()
# Rest of the code
self.code.append((target_fake[1:],))
def visit_FuncCall(self, node):
# Visit arguments.
if node.args:
self.visit(node.args)
# 1 vs multiple arguments
if isinstance(node.args, ast.ExprList):
args = node.args.exprs
else:
args = [node.args]
# Create parameter opcodes and append to list
for arg in args:
ty = self.build_reg_types(arg.type)
inst = ('param_' + ty, arg.gen_location)
self.code.append(inst)
# Get function return type.
ty = self.scopes.get_func_type(node.name.name)
# Get ptr if function ptr.
if ty.name[0].name == 'ptr':
self.visit(node.name)
name = node.name.gen_location
else:
name = '@' + node.name.name
# Create opcode and append to list.
ty = self.build_reg_types(ty)
if ty != 'void':
node.gen_location = self.new_temp()
inst = ('call_' + ty, name, node.gen_location)
else:
node.gen_location = None
inst = ('call_void', name)
self.code.append(inst)
def visit_FuncDecl(self, node):
var = node.type
while not isinstance(var, ast.VarDecl):
var = var.type
var.gen_location = '@'+var.declname.name
if self.fname != 'global':
if node.params:
self.visit(node.params)
# Add function node to global scope.
self.scopes.add_global(var, var)
node.gen_location = var.gen_location
def visit_FuncDef(self, node):
# Add function's scope
self.scopes.add_scope(node=node)
# Find out function name.
var = node.decl
while not isinstance(var, ast.VarDecl):
var = var.type
name = var.declname.name
# Start function
self.fname = name
# Skip temp variables for params, and create list.
par = node.decl.type
params_list = []
if par.params:
for i, p in enumerate(par.params.params or []):
ty = self.build_decl_types(p)
new = self.new_temp()
params_list.append((ty, new))
# Create definition and append to list
ty = self.build_reg_types(var.type)
inst = ('define_'+ty, '@'+name, params_list)
self.code.append(inst)
# Get return temporary variable
if ty != 'void':
self.ret['value'] = self.new_temp()
inst = ('alloc_'+ty, self.ret['value'])
self.code.append(inst)
# Get return label, if needed.
self.ret['label'] = self.new_temp()
label = (self.ret['label'][1:],)
# Visit function declaration (FuncDecl)
self.alloc_phase = True
self.visit(node.decl.type)
# Visit body
if node.body:
# Allocate first, without init
if node.body.decls:
for decl in node.body.decls:
self.visit(decl)
# Visiting for declaration.
# TODO: only works if the For is directly in function compound statement.
if node.body.stats:
for stmt in node.body.stats:
if isinstance(stmt, ast.For) and isinstance(stmt.init, ast.DeclList):
self.visit(stmt.init)
# Initiate params, decls and visit body.
self.alloc_phase = False
if par.params:
self.visit(par.params)
self.visit(node.body)
# Return label and return
# Void = no return, only label and return_void inst.
if ty == 'void':
ret_inst = ('return_void',)
self.code += [label, ret_inst]
# Type: get return value from ret_val and return it.
else:
# New temp for return value.
ret_target = self.new_temp()
# Get return value from ret_val (stored)
val_inst = ('load_'+ty, self.ret['value'], ret_target)
# Return instruction and append.
ret_inst = ('return_'+ty, ret_target)
self.code += [label, val_inst, ret_inst]
# Remove function's scope
self.scopes.pop_scope()
# Return to global
self.fname = 'global'
def visit_GlobalDecl(self, node):
for decl in node.decls:
self.visit(decl)
def visit_ID(self, node):
# Get temporary with ID name.
var = self.scopes.fetch_temp(node)
# Create a new temporary variable name
target = self.new_temp()
# Check pointer
ty = self.build_reg_types(node.type)
if node.type.name[0].name == 'ptr':
ty += '_*'
# Create the opcode and append to list
inst = ('load_' + ty, var, target)
self.code.append(inst)
# Save the name of the temporary variable where the value was placed
node.gen_location = target
def visit_If(self, node):
# Create two new temporary variable names for then/else labels
target_then = self.new_temp()
target_else = self.new_temp()
# Visit condition
self.visit(node.cond)
# Create the opcode and append to list
inst = ('cbranch', node.cond.gen_location, target_then, target_else)
self.code.append(inst)
# Create THEN
self.code.append((target_then[1:],))
self.visit(node.if_stat)
# Create ELSE
if node.else_stat:
target_exit = self.new_temp()
inst = ('jump', target_exit)
self.code.append(inst)
self.code.append((target_else[1:],))
self.visit(node.else_stat)
self.code.append((target_exit[1:],))
else:
self.code.append((target_else[1:],))
def visit_InitList(self, node):
node.gen_location = []
for expr in node.exprs:
if isinstance(expr, ast.InitList):
self.visit(expr)
node.gen_location.append(expr.gen_location)
else:
node.gen_location.append(expr.value)
def visit_ParamList(self, node):
if self.alloc_phase:
for par in node.params:
# Visit parameter (allocate vars)
self.visit(par)
else:
for i, par in enumerate(node.params or []):
# Store value in temp var "i" in newly allocated var.
ty = self.build_decl_types(par)
inst = ('store_'+ty, f'%{i+1}', par.gen_location)
self.code.append(inst)
def visit_Print(self, node):
# Visit the expression
if node.expr:
# Handle 1 or more exprs
if isinstance(node.expr, ast.ExprList):
exprs = node.expr.exprs
else:
exprs = [node.expr]
for expr in exprs:
self.visit(expr)
ty = self.build_reg_types(expr.type)
# Load if ArrayRef
if isinstance(expr, ast.ArrayRef):
target = self.new_temp()
inst = ('load_'+ty+'_*', expr.gen_location, target)
self.code.append(inst)
expr.gen_location = target
inst = ('print_' + ty, expr.gen_location)
self.code.append(inst)
else:
inst = ('print_void',)
self.code.append(inst)
def visit_PtrDecl(self, node):
self.visit(node.type)
node.gen_location = node.type.gen_location
def visit_Read(self, node):
# Create the opcode and append to list
if isinstance(node.expr, ast.ExprList):
exprs = node.expr.exprs
else:
exprs = [node.expr]
for expr in exprs:
ty = self.build_reg_types(expr.type)
if isinstance(expr, ast.ID):
target = self.scopes.fetch_temp(expr)
elif isinstance(expr, ast.ArrayRef):
self.visit(expr)
ty += '_*'
target = expr.gen_location
else:
self.visit(expr)
target = expr.gen_location
inst = ('read_' + ty, target)
self.code.append(inst)
def visit_Return(self, node):
# If there is a return expression.
if node.expr:
self.visit(node.expr)
expr_loc = node.expr.gen_location
# Store return value in allocated variable
ty = self.build_reg_types(node.expr.type)
# Load if ArrayRef
if isinstance(node.expr, ast.ArrayRef):
target = self.new_temp()
inst = ('load_'+ty+'_*', expr_loc, target)
self.code.append(inst)
expr_loc = target
inst = ('store_'+ty, expr_loc, self.ret['value'])
self.code.append(inst)
# Jump to return label.
inst = ('jump', self.ret['label'])
self.code.append(inst)
def visit_Type(self, node):
assert False, "'Type' nodes are not visited in code generation!"
def visit_UnaryOp(self, node):
# With address, don't load ID.
if node.op == '&' and isinstance(node.expr, ast.ID):
node.gen_location = self.scopes.fetch_temp(node.expr)
return
# Visit the expression
self.visit(node.expr)
expr_loc = node.expr.gen_location
ty = self.build_reg_types(node.expr.type)
# With address, we ignore pointers or ArrayRef.
if node.op == '&':
node.gen_location = expr_loc
return
# Load if ArrayRef
if isinstance(node.expr, ast.ArrayRef):
target = self.new_temp()
inst = ('load_'+ty+'_*', expr_loc, target)
self.code.append(inst)
expr_loc = target
# Operation '+' is useless.
# Pointer operation is purely semantic.
if node.op == '+' or node.op == '*':
node.gen_location = expr_loc
return
# NOT is a specific case.
if node.op == '!':
target = self.new_temp()
inst1 = ('not_bool', expr_loc, target)
self.code.append(inst1)
node.gen_location = target
return
# Create new temporary variables
literal = self.new_temp()
target = self.new_temp()
# Create the opcode and append to list
if node.op == '-':
inst1 = ('literal_' + ty, 0, literal)
inst2 = ('sub_' + ty, literal, expr_loc, target)
elif '++' in node.op:
inst1 = ('literal_int', 1, literal)
inst2 = ('add_int', expr_loc, literal, target)
elif '--' in node.op:
inst1 = ('literal_int', 1, literal)
inst2 = ('sub_int', expr_loc, literal, target)
else:
assert False, "Unsupported unary operation."
self.code += [inst1, inst2]
if isinstance(node.expr, ast.ID) and node.op != '-':
var = self.scopes.fetch_temp(node.expr)
inst = ('store_int', target, var)
self.code.append(inst)
# Store location of the result (or expr) on the node
if node.op[0] == 'p':
node.gen_location = expr_loc
else:
node.gen_location = target
def visit_VarDecl(self, node):
ty = self.build_var_types(node.type)
# Try global
if self.fname == 'global':
node.gen_location = '@'+node.declname.name
else:
# Allocate on stack memory.
alloc_target = '%'+node.declname.name
inst = ('alloc_' + ty, alloc_target)
self.code.append(inst)