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
|
#
# decaf_parser.py
#
# Rudimentary parser for decaf language, used in Stanford University CS143
# (https://web.stanford.edu/class/archive/cs/cs143/cs143.1128/handouts/030%20Decaf%20Specification.pdf)
#
# To convert this parser into one that gives more of an AST, change all the Group wrappers to add parse
# actions that will result in ASTNode classes, or statement-specific subclasses.
#
# Copyright 2018, Paul McGuire
#
"""
Program ::= Decl+
Decl ::= VariableDecl | FunctionDecl | ClassDecl | InterfaceDecl
VariableDecl ::= Variable ;
Variable ::= Type ident
Type ::= int | double | bool | string | ident | Type []
FunctionDecl ::= Type ident ( Formals ) StmtBlock | void ident ( Formals ) StmtBlock
Formals ::= Variable+, | e
ClassDecl ::= class ident <extends ident> <implements ident + ,> { Field* }
Field ::= VariableDecl | FunctionDecl
InterfaceDecl ::= interface ident { Prototype* }
Prototype ::= Type ident ( Formals ) ; | void ident ( Formals ) ;
StmtBlock ::= { VariableDecl* Stmt* }
Stmt ::= <Expr> ; | IfStmt | WhileStmt | ForStmt | BreakStmt | ReturnStmt | PrintStmt | StmtBlock
IfStmt ::= if ( Expr ) Stmt <else Stmt>
WhileStmt ::= while ( Expr ) Stmt
ForStmt ::= for ( <Expr> ; Expr ; <Expr> ) Stmt
ReturnStmt ::= return <Expr> ;
BreakStmt ::= break ;
PrintStmt ::= Print ( Expr+, ) ;
Expr ::= LValue = Expr | Constant | LValue | this | Call
| ( Expr )
| Expr + Expr | Expr - Expr | Expr * Expr | Expr / Expr | Expr % Expr | - Expr
| Expr < Expr | Expr <= Expr | Expr > Expr | Expr >= Expr | Expr == Expr | Expr != Expr
| Expr && Expr | Expr || Expr | ! Expr
| ReadInteger ( ) | ReadLine ( ) | new ident | NewArray ( Expr , Typev)
LValue ::= ident | Expr . ident | Expr [ Expr ]
Call ::= ident ( Actuals ) | Expr . ident ( Actuals )
Actuals ::= Expr+, | e
Constant ::= intConstant | doubleConstant | boolConstant | stringConstant | null
"""
import pyparsing as pp
from pyparsing import pyparsing_common as ppc
pp.ParserElement.enablePackrat()
# keywords
keywords = (
VOID,
INT,
DOUBLE,
BOOL,
STRING,
CLASS,
INTERFACE,
NULL,
THIS,
EXTENDS,
IMPLEMENTS,
FOR,
WHILE,
IF,
ELSE,
RETURN,
BREAK,
NEW,
NEWARRAY,
PRINT,
READINTEGER,
READLINE,
TRUE,
FALSE,
) = map(
pp.Keyword,
"""void int double bool string class interface null this extends implements or while
if else return break new NewArray Print ReadInteger ReadLine true false""".split(),
)
keywords = pp.MatchFirst(list(keywords))
LPAR, RPAR, LBRACE, RBRACE, LBRACK, RBRACK, DOT, EQ, COMMA, SEMI = map(
pp.Suppress, "(){}[].=,;"
)
hexConstant = pp.Regex(r"0[xX][0-9a-fA-F]+").addParseAction(lambda t: int(t[0][2:], 16))
intConstant = hexConstant | ppc.integer
doubleConstant = ppc.real
boolConstant = TRUE | FALSE
stringConstant = pp.dblQuotedString
null = NULL
constant = doubleConstant | boolConstant | intConstant | stringConstant | null
ident = ~keywords + pp.Word(pp.alphas, pp.alphanums + "_")
type_ = pp.Group((INT | DOUBLE | BOOL | STRING | ident) + pp.ZeroOrMore("[]"))
variable = type_ + ident
variable_decl = variable + SEMI
expr = pp.Forward()
expr_parens = pp.Group(LPAR + expr + RPAR)
actuals = pp.Optional(pp.delimitedList(expr))
call = pp.Group(
ident("call_ident") + LPAR + actuals("call_args") + RPAR
| (expr_parens + pp.ZeroOrMore(DOT + ident))("call_ident_expr")
+ LPAR
+ actuals("call_args")
+ RPAR
)
lvalue = (
(ident | expr_parens)
+ pp.ZeroOrMore(DOT + (ident | expr_parens))
+ pp.ZeroOrMore(LBRACK + expr + RBRACK)
)
assignment = pp.Group(lvalue("lhs") + EQ + expr("rhs"))
read_integer = pp.Group(READINTEGER + LPAR + RPAR)
read_line = pp.Group(READLINE + LPAR + RPAR)
new_statement = pp.Group(NEW + ident)
new_array = pp.Group(NEWARRAY + LPAR + expr + COMMA + type_ + RPAR)
rvalue = constant | call | read_integer | read_line | new_statement | new_array | ident
arith_expr = pp.infixNotation(
rvalue,
[
(
"-",
1,
pp.opAssoc.RIGHT,
),
(
pp.oneOf("* / %"),
2,
pp.opAssoc.LEFT,
),
(
pp.oneOf("+ -"),
2,
pp.opAssoc.LEFT,
),
],
)
comparison_expr = pp.infixNotation(
arith_expr,
[
(
"!",
1,
pp.opAssoc.RIGHT,
),
(
pp.oneOf("< > <= >="),
2,
pp.opAssoc.LEFT,
),
(
pp.oneOf("== !="),
2,
pp.opAssoc.LEFT,
),
(
pp.oneOf("&&"),
2,
pp.opAssoc.LEFT,
),
(
pp.oneOf("||"),
2,
pp.opAssoc.LEFT,
),
],
)
expr <<= (
assignment
| call
| THIS
| comparison_expr
| arith_expr
| lvalue
| constant
| read_integer
| read_line
| new_statement
| new_array
)
stmt = pp.Forward()
print_stmt = pp.Group(
PRINT("statement")
+ LPAR
+ pp.Group(pp.Optional(pp.delimitedList(expr)))("args")
+ RPAR
+ SEMI
)
break_stmt = pp.Group(BREAK("statement") + SEMI)
return_stmt = pp.Group(RETURN("statement") + expr + SEMI)
for_stmt = pp.Group(
FOR("statement")
+ LPAR
+ pp.Optional(expr)
+ SEMI
+ expr
+ SEMI
+ pp.Optional(expr)
+ RPAR
+ stmt
)
while_stmt = pp.Group(WHILE("statement") + LPAR + expr + RPAR + stmt)
if_stmt = pp.Group(
IF("statement")
+ LPAR
+ pp.Group(expr)("condition")
+ RPAR
+ pp.Group(stmt)("then_statement")
+ pp.Group(pp.Optional(ELSE + stmt))("else_statement")
)
stmt_block = pp.Group(
LBRACE + pp.ZeroOrMore(variable_decl) + pp.ZeroOrMore(stmt) + RBRACE
)
stmt <<= (
if_stmt
| while_stmt
| for_stmt
| break_stmt
| return_stmt
| print_stmt
| stmt_block
| pp.Group(expr + SEMI)
)
formals = pp.Optional(pp.delimitedList(variable))
prototype = pp.Group(
(type_ | VOID)("return_type")
+ ident("function_name")
+ LPAR
+ formals("args")
+ RPAR
+ SEMI
)("prototype")
function_decl = pp.Group(
(type_ | VOID)("return_type")
+ ident("function_name")
+ LPAR
+ formals("args")
+ RPAR
+ stmt_block("body")
)("function_decl")
interface_decl = pp.Group(
INTERFACE
+ ident("interface_name")
+ LBRACE
+ pp.ZeroOrMore(prototype)("prototypes")
+ RBRACE
)("interface")
field = variable_decl | function_decl
class_decl = pp.Group(
CLASS
+ ident("class_name")
+ pp.Optional(EXTENDS + ident)("extends")
+ pp.Optional(IMPLEMENTS + pp.delimitedList(ident))("implements")
+ LBRACE
+ pp.ZeroOrMore(field)("fields")
+ RBRACE
)("class_decl")
decl = variable_decl | function_decl | class_decl | interface_decl | prototype
program = pp.OneOrMore(pp.Group(decl))
decaf_parser = program
stmt.runTests(
"""\
sin(30);
a = 1;
b = 1 + 1;
b = 1 != 2 && false;
print("A");
a.b = 100;
a.b = 100.0;
a[100] = b;
a[0][0] = 2;
a = 0x1234;
"""
)
test_program = """
void getenv(string var);
int main(string[] args) {
if (a > 100) {
Print(a, " is too big");
} else if (a < 100) {
Print(a, " is too small");
} else {
Print(a, "just right!");
}
}
"""
print(decaf_parser.parseString(test_program).dump())
|