-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplicate_ast.py
111 lines (79 loc) · 2.22 KB
/
explicate_ast.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
from compiler.ast import *
int_tag = Const(0b00)
bool_tag = Const(0b01)
big_tag = Const(0b11)
#
# Expressions
#
class GetTag(Node):
def __init__(self, arg):
self.arg = arg
def __repr__(self):
return "%s(%s)" % (self.__class__.__name__, repr(self.arg))
class Box(Node):
"""
InjectFrom
"""
def __init__(self, type, arg):
# type = "int" | "bool" | "big"
self.type = type
self.arg = arg
def __repr__(self):
return "%s(%s, %s)" % (self.__class__.__name__, repr(self.type), repr(self.arg))
class UnBox(Node):
"""
ProjectTo
"""
def __init__(self, type, arg):
# type = "small" | "big"
self.type = type
self.arg = arg
def __repr__(self):
return "%s(%s, %s)" % (self.__class__.__name__, repr(self.type), repr(self.arg))
class Let(Node):
def __init__(self, var, rhs, body):
# type: (str, Node, Node) -> ()
self.var = var
self.rhs = rhs
self.body = body
def __repr__(self):
return "%s(%s, %s, %s)" % (self.__class__.__name__, repr(self.var), repr(self.rhs), repr(self.body))
class Bop(Node):
def __init__(self, leftright):
left, right = leftright
self.left = left
self.right = right
def __repr__(self):
return "%s(%s, %s)" % (self.__class__.__name__, repr(self.left), repr(self.right))
class Eq(Bop):
pass
class NEq(Bop):
pass
class Is(Bop):
pass
class Seq(Bop):
pass
#
# Statements
#
class IfStmt(Node):
def __init__(self, test, then_, else_):
# type: (Node, Stmt, Stmt) -> ()
self.test = test
self.then_ = then_
self.else_ = else_
def __repr__(self):
return "%s(%s, %s, %s)" % (self.__class__.__name__, repr(self.test), repr(self.then_), repr(self.else_))
class WhileStmt(Node):
def __init__(self, test_var, test_stmt, body):
# type: (Node, Stmt, Stmt) -> ()
self.test_var = test_var
self.test_stmt = test_stmt
self.body = body
def __repr__(self):
return "%s(%s, %s, %s)" % (
self.__class__.__name__,
repr(self.test_var),
repr(self.test_stmt),
repr(self.body)
)