-
Notifications
You must be signed in to change notification settings - Fork 0
/
uCAST.py
618 lines (489 loc) · 17.5 KB
/
uCAST.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
'''
First Project: Parser for the uC language.
Subject:
MC921 - Construction of Compilers
Authors:
Victor Ferreira Ferrari - RA 187890
Vinicius Couto Espindola - RA 188115
University of Campinas - UNICAMP - 2020
Last Modified: 02/05/2020.
'''
import sys
def _repr(obj):
"""
Get the representation of an object, with dedicated pprint-like format for lists.
"""
if isinstance(obj, list):
return '[' + (',\n '.join((_repr(e).replace('\n', '\n ') for e in obj))) + '\n]'
else:
return repr(obj)
#### NODE CLASS - The All Father ####
# It's but a reference to other classes, allowing us to create default
# methods such as children() which can be recursively accessed by it's children.
class Node(object):
__slots__ = ('coord')
def __repr__(self):
""" Generates a python representation of the current node
"""
result = self.__class__.__name__ + '('
indent = ''
separator = ''
for name in self.__slots__[:-1]:
skips = isinstance(self, ID)
skips *= name in ['type','gen_location']
if skips: continue
result += separator
result += indent
result += name + '=' + (_repr(getattr(self, name)).replace('\n', '\n ' + (' ' * (len(name) + len(self.__class__.__name__)))))
separator = ','
indent = ' ' * len(self.__class__.__name__)
result += indent + ')'
return result
def children(self):
""" A sequence of all children that are Nodes. """
children = []
return tuple(children)
def show(self, buf=sys.stdout, offset=0, attrnames=False, nodenames=False, showcoord=True, _my_node_name=None):
""" Pretty print the Node and all its attributes and children (recursively) to a buffer.
buf:
Open IO buffer into which the Node is printed.
offset:
Initial offset (amount of leading spaces)
showcoord:
Do you want the coordinates of each Node to be displayed.
"""
lead = ' ' * offset
if nodenames and _my_node_name is not None:
buf.write(lead + self.__class__.__name__+ ' <' + _my_node_name + '>: ')
else:
buf.write(lead + self.__class__.__name__+ ': ')
if self.attr_names:
if attrnames:
nvlist = [(n, getattr(self, n)) for n in self.attr_names if getattr(self, n) is not None]
attrstr = ', '.join('%s=%s' % nv for nv in nvlist)
else:
vlist = [getattr(self, n) for n in self.attr_names]
if isinstance(self, Constant):
for i,e in enumerate(vlist):
if isinstance(e, Type):
vlist[i] = e.name[0]
attrstr = ', '.join('%s' % v for v in vlist)
buf.write(attrstr)
if showcoord:
if self.coord : buf.write('%s' % self.coord)
buf.write('\n')
for (child_name, child) in self.children():
child.show(buf, offset + 4, attrnames, nodenames, showcoord, child_name)
attr_names = ()
class NodeVisitor(object):
""" A base NodeVisitor class for visiting uc_ast nodes.
Subclass it and define your own visit_XXX methods, where
XXX is the class name you want to visit with these
methods.
For example:
class ConstantVisitor(NodeVisitor):
def __init__(self):
self.values = []
def visit_Constant(self, node):
self.values.append(node.value)
Creates a list of values of all the constant nodes
encountered below the given node. To use it:
cv = ConstantVisitor()
cv.visit(node)
Notes:
* generic_visit() will be called for AST nodes for which
no visit_XXX method was defined.
* The children of nodes for which a visit_XXX was
defined will not be visited - if you need this, call
generic_visit() on the node.
You can use:
NodeVisitor.generic_visit(self, node)
* Modeled after Python's own AST visiting facilities
(the ast module of Python 3.0)
"""
_method_cache = None
def visit(self, node):
""" Visit a node. """
if self._method_cache is None:
self._method_cache = {}
visitor = self._method_cache.get(node.__class__.__name__, None)
if visitor is None:
method = 'visit_' + node.__class__.__name__
visitor = getattr(self, method, self.generic_visit)
self._method_cache[node.__class__.__name__] = visitor
return visitor(node)
def generic_visit(self, node):
""" Called if no explicit visitor function exists for a
node. Implements preorder visiting of the node.
"""
for c in node:
self.visit(c)
# Tree's root - Represents the program
class Program(Node):
__slots__ = ('gdecls', 'coord')
def __init__(self, gdecls, coord=None):
self.gdecls = gdecls
self.coord = coord
def children(self):
children = []
for i, child in enumerate(self.gdecls or []):
children += [("gdecls[%d]" % i, child)]
return tuple(children)
#### AST NODES CLASSES ####
class ArrayDecl(Node):
__slots__ = ('type', 'dims', 'gen_location', 'coord')
def __init__(self, type, dims, coord=None):
self.type = type
self.dims = dims
self.coord = coord
#IR only
self.gen_location = None
def children(self):
children = []
if self.type: children += [("type", self.type)]
if self.dims: children += [("dims", self.dims)]
return tuple(children)
class ArrayRef(Node):
__slots__ = ('name', 'subsc', 'type', 'gen_location', 'coord')
def __init__(self, name, subsc, coord):
self.name = name
self.subsc = subsc
self.coord = coord
# Semantic Only
self.type = None
# IR Only
self.gen_location = None
def children(self):
children = []
if self.name: children += [('name', self.name)]
if self.subsc: children += [('subscript', self.subsc)]
return tuple(children)
class Assert(Node):
__slots__ = ('expr', 'coord')
def __init__(self, expr, coord=None):
self.expr = expr
self.coord = coord
def children(self):
children = []
if self.expr: children += [('expr', self.expr)]
return tuple(children)
class Assignment(Node):
__slots__ = ('op', 'lvalue', 'rvalue', 'type', 'gen_location', 'coord')
def __init__(self, op, left, right, coord=None):
self.op = op
self.lvalue = left
self.rvalue = right
self.coord = coord
# Semantic only.
self.type = None
# IR only.
self.gen_location = None
def children(self):
children = []
if self.lvalue: children += [("lvalue", self.lvalue)]
if self.rvalue: children += [("rvalue", self.rvalue)]
return tuple(children)
attr_names = ('op', )
class BinaryOp(Node):
__slots__ = ('op', 'lvalue', 'rvalue', 'type', 'gen_location', 'coord')
def __init__(self, op, left, right, coord=None):
self.op = op
self.lvalue = left
self.rvalue = right
self.coord = coord
# Semantic only
self.type = None
# IR only
self.gen_location = None
def children(self):
children = []
if self.lvalue: children += [("lvalue", self.lvalue)]
if self.rvalue: children += [("rvalue", self.rvalue)]
return tuple(children)
attr_names = ('op', )
class Break(Node):
__slots__ = ('coord')
def __init__(self, coord=None):
self.coord = coord
class Cast(Node):
__slots__ = ('type', 'expr', 'gen_location', 'coord')
def __init__(self, type, expr, coord=None):
self.type = type
self.expr = expr
self.coord = coord
# IR only
self.gen_location = None
def children(self):
children = []
if self.type: children += [('type', self.type)]
if self.expr: children += [('expr', self.expr)]
return tuple(children)
class Compound(Node):
__slots__ = ('decls', 'stats', 'coord')
def __init__(self, decls, stats, coord=None):
self.decls = decls
self.stats = stats
self.coord = coord
def children(self):
children = []
for i, child in enumerate(self.decls or []):
if child: children += [("decls[%d]" % i, child)]
for i, child in enumerate(self.stats or []):
if child: children += [("stats[%d]" % i, child)]
return tuple(children)
class Constant(Node):
__slots__ = ('type', 'value', 'gen_location', 'coord')
def __init__(self, type, value, coord=None):
self.type = type
self.value = value
self.coord = coord
# IR only
self.gen_location = None
attr_names = ('type', 'value', )
class Coord(Node):
""" Coordinates of a syntactic element. Consists of:
- Line number
- (optional) column number, for the Lexer
"""
__slots__ = ('line', 'column')
def __init__(self, line, column=None):
self.line = line
self.column = column
def __str__(self):
if self.line:
coord_str = " @ %s:%s" % (self.line, self.column)
else:
coord_str = ""
return coord_str
class Decl(Node):
__slots__ = ('name', 'type', 'init', 'gen_location', 'coord')
def __init__(self, name, type, init, coord=None):
self.name = name
self.type = type
self.init = init
self.coord = coord
# IR only
self.gen_location = None
def children(self):
children = []
if self.type: children += [("type", self.type)]
if self.init: children += [("init", self.init)]
return tuple(children)
attr_names = ('name', )
class DeclList(Node):
__slots__ = ('decls', 'coord')
def __init__(self, decls, coord=None):
self.decls = decls
self.coord = coord
def children(self):
children = []
for i, child in enumerate(self.decls or []):
children += [("decls[%d]" % i, child)]
return tuple(children)
class EmptyStatement(Node):
__slots__ = ('coord')
def __init__(self, coord=None):
self.coord = coord
class ExprList(Node):
__slots__ = ('exprs', 'coord')
def __init__(self, exprs, coord=None):
self.exprs = exprs
self.coord = coord
def children(self):
children = []
for i, child in enumerate(self.exprs or []):
children += [("exprs[%d]" % i, child)]
return tuple(children)
class For(Node):
__slots__ = ('init', 'cond', 'next', 'body', 'coord')
def __init__(self, init, cond, next, body, coord=None):
self.init = init
self.cond = cond
self.next = next
self.body = body
self.coord = coord
def children(self):
children = []
if self.init: children += [('init', self.init)]
if self.cond: children += [('cond', self.cond)]
if self.next: children += [('next', self.next)]
if self.body: children += [('body', self.body)]
return tuple(children)
class FuncCall(Node):
__slots__ = ('name', 'args', 'type', 'gen_location', 'coord')
def __init__ (self, name, args, coord=None):
self.name = name
self.args = args
self.coord = coord
# Semantic Only
self.type = None
self.gen_location = None
def children(self):
children = []
if self.name: children += [('name', self.name)]
if self.args: children += [('args', self.args)]
return tuple(children)
class FuncDecl(Node):
__slots__ = ('type', 'params', 'gen_location', 'coord')
def __init__(self, type, params, coord=None):
self.type = type
self.params = params
self.coord = coord
# IR only
self.gen_location = None
def children(self):
children = []
if self.params: children += [("params", self.params)]
if self.type: children += [("type", self.type)]
return tuple(children)
class FuncDef(Node):
__slots__ = ('type', 'decl', 'params', 'body', 'coord')
def __init__(self, type, decl, params, body, coord=None):
self.type = type
self.decl = decl
self.params = params
self.body = body
self.coord = coord
def children(self):
children = []
if self.type: children += [('type', self.type)]
if self.decl: children += [('decl', self.decl)]
if self.params: children += [('params', self.params)]
if self.body: children += [('body', self.body)]
return tuple(children)
class GlobalDecl(Node):
__slots__ = ('decls', 'coord')
def __init__(self, decls, coord=None):
self.decls = decls
self.coord = coord
def children(self):
children = []
for child in self.decls or []:
if child: children += [("Decl", child)]
return tuple(children)
class ID(Node):
__slots__ = ('name', 'type', 'gen_location', 'coord')
def __init__(self, name, coord=None):
self.name = name
self.coord = coord
# Semantic only
self.type = None
# IR only
self.gen_location = None
attr_names = ('name', )
class If(Node):
__slots__ = ('cond', 'if_stat', 'else_stat', 'coord')
def __init__(self, cond, if_stat, else_stat, coord=None):
self.cond = cond
self.if_stat = if_stat
self.else_stat = else_stat
self.coord = coord
def children(self):
children = []
if self.cond: children += [('cond', self.cond)]
if self.if_stat: children += [('if_stat', self.if_stat)]
if self.else_stat: children += [('else_stat', self.else_stat)]
return tuple(children)
class InitList(Node):
__slots__ = ('exprs', 'gen_location', 'coord')
def __init__(self, exprs, coord=None):
self.exprs = exprs
self.coord = coord
self.gen_location = None
def children(self):
children = []
for i, child in enumerate(self.exprs or []):
children += [("exprs[%d]" % i, child)]
return tuple(children)
class ParamList(Node):
__slots__ = ('params', 'coord')
def __init__(self, params, coord=None):
self.params = params
self.coord = coord
def children(self):
children = []
for i, child in enumerate(self.params or []):
children += [("params[%d]" % i, child)]
return tuple(children)
class Print(Node):
__slots__ = ('expr', 'coord')
def __init__(self, expr, coord=None):
self.expr = expr
self.coord = coord
def children(self):
children = []
if self.expr: children += [('expr', self.expr)]
return tuple(children)
class PtrDecl(Node):
__slots__ = ('type', 'gen_location', 'coord')
def __init__(self, type, coord=None):
self.type = type
self.coord = coord
# IR only
self.gen_location = None
def children(self):
children = []
if self.type: children += [("type", self.type)]
return tuple(children)
class Read(Node):
__slots__ = ('expr', 'coord')
def __init__(self, expr, coord=None):
self.expr = expr
self.coord = coord
def children(self):
children = []
if self.expr: children += [('expr', self.expr)]
return tuple(children)
class Return(Node):
__slots__ = ('expr', 'coord')
def __init__(self, expr, coord=None):
self.expr = expr
self.coord = coord
def children(self):
children = []
if self.expr: children += [('expr', self.expr)]
return tuple(children)
class Type(Node):
__slots__ = ('name', 'coord')
def __init__(self, name, coord=None):
self.name = name
self.coord = coord
attr_names = ('name',)
class UnaryOp(Node):
__slots__ = ('op', 'expr', 'type', 'gen_location', 'coord')
def __init__(self, op, expr, coord=None):
self.op = op
self.expr = expr
self.coord = coord
# Semantic Only
self.type = None
# IR Only
self.gen_location = None
def children(self):
children = []
if self.expr: children += [("expr", self.expr)]
return tuple(children)
attr_names = ('op', )
class VarDecl(Node):
__slots__ = ('declname', 'type', 'gen_location', 'coord')
def __init__(self, declname, type, coord=None):
self.declname = declname
self.type = type
self.coord = coord
#IR only
self.gen_location = None
def children(self):
children = []
if self.type: children += [('type', self.type)]
return tuple(children)
class While(Node):
__slots__ = ('cond', 'body', 'coord')
def __init__(self, cond, body, coord=None):
self.cond = cond
self.body = body
self.coord = coord
def children(self):
children = []
if self.cond: children += [('cond', self.cond)]
if self.body: children += [('body', self.body)]
return tuple(children)