-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.mly
180 lines (154 loc) · 4.38 KB
/
parser.mly
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
/* Ocamlyacc parser for Espresso */
%{
open Ast
%}
%token CLASS
%token SEMI LPAREN RPAREN LBRACE RBRACE LSQUARE RSQUARE COMMA COLON DOT THIS POUND
%token PLUS MINUS TIMES DIVIDE ASSIGN NOT MODULUS POWER
%token EQ NEQ LT LEQ GT GEQ TRUE FALSE AND OR
%token RETURN IF ELSE FOR WHILE FOREACH INT BOOL VOID STRING FLOAT CHAR BREAK HASHMAP LAMBDA CONTINUE
%token <int> LITERAL
%token <string> ID
%token <string> STRLIT
%token <char> CHARLIT
%token <float> FLOATLIT
%token EOF
%nonassoc NOELSE POUND
%nonassoc ELSE
%right ASSIGN
%left OR
%left AND
%left EQ NEQ
%left LT GT LEQ GEQ
%left PLUS MINUS
%left TIMES DIVIDE MODULUS POWER
%right NOT SUB
%nonassoc LSQUARE
%right DOT
%start program
%type <Ast.program> program
%%
program:
cdecls EOF { Program($1) }
cdecls:
cdecl_list { List.rev $1 }
cdecl_list:
cdecl { [$1] }
| cdecl_list cdecl { $2::$1 }
cdecl:
CLASS ID LBRACE cbody RBRACE
{ {
cname = $2;
cbody = $4
} }
cbody:
{ {
fields = [];
methods = []
} }
| cbody vdecl { {
fields = $2 :: $1.fields;
methods = $1.methods
} }
| cbody func_decl { {
fields = $1.fields;
methods = $2 :: $1.methods
} }
fname:
ID { $1 }
func_decl:
data_typ fname LPAREN formals_opt RPAREN LBRACE stmt_list RBRACE
{ { typ = $1;
fname = $2;
formals = $4;
body = List.rev $7 } }
formals_opt:
/* nothing */ { [] }
| formal_list { List.rev $1 }
formal_list:
formal { [$1] }
| formal_list COMMA formal { $3 :: $1 }
formal:
data_typ ID {Formal($1,$2)}
data_typ:
typ { Datatype($1) }
| array_typ { $1 }
| hashmap_typ { $1 }
typ:
INT { Int }
| BOOL { Bool }
| VOID { Void }
| STRING { String }
| FLOAT { Float }
| CHAR { Char }
| LAMBDA { Lambda }
| CLASS ID {ObjTyp($2)}
hashmap_typ:
HASHMAP LT typ COMMA typ GT {Hashmaptype($3,$5)}
array_typ:
typ LSQUARE LITERAL RSQUARE {ArrayType($1, $3)}
/* This is only for the class data members */
vdecl:
data_typ ID SEMI { Vdecl($1, $2) }
stmt_list:
/* nothing */ { [] }
| stmt_list stmt { $2 :: $1 }
stmt:
expr SEMI { Expr $1 }
| RETURN SEMI { Return Noexpr }
| RETURN expr SEMI { Return $2 }
| LBRACE stmt_list RBRACE { Block(List.rev $2) }
| IF LPAREN expr RPAREN stmt %prec NOELSE { If($3, $5, Block([])) }
| IF LPAREN expr RPAREN stmt ELSE stmt { If($3, $5, $7) }
| FOR LPAREN expr_opt SEMI expr SEMI expr_opt RPAREN stmt
{ For($3, $5, $7, $9) }
| WHILE LPAREN expr RPAREN stmt { While($3, $5) }
| FOREACH LPAREN data_typ ID COLON ID RPAREN stmt
{ Foreach($3, $4, $6, $8) }
| LAMBDA COLON data_typ ID LPAREN formals_opt RPAREN stmt { Lambda($3, $4, $6, $8) }
| BREAK SEMI { Break }
| CONTINUE SEMI { Continue }
| data_typ ID SEMI { Local($1,$2) }
/* | data_typ ID ASSIGN expr SEMI { Local($1, $2, $4) }
*/
expr_opt:
/* nothing */ { Noexpr }
| expr { $1 }
expr:
LITERAL { Literal($1) }
| CHARLIT { Charlit($1) }
| STRLIT { Strlit($1) }
| FLOATLIT { Floatlit($1) }
| TRUE { BoolLit(true) }
| FALSE { BoolLit(false) }
| ID { Id($1) }
| THIS { This }
| expr PLUS expr { Binop($1, Add, $3) }
| expr MINUS expr { Binop($1, Sub, $3) }
| expr TIMES expr { Binop($1, Mult, $3) }
| expr DIVIDE expr { Binop($1, Div, $3) }
| expr MODULUS expr { Binop($1, Mod, $3) }
| expr POWER expr { Binop($1, Pow, $3) }
| expr EQ expr { Binop($1, Eq, $3) }
| expr NEQ expr { Binop($1, Neq, $3) }
| expr LT expr { Binop($1, Lt, $3) }
| expr LEQ expr { Binop($1, Leq, $3) }
| expr GT expr { Binop($1, Gt, $3) }
| expr GEQ expr { Binop($1, Geq, $3) }
| expr AND expr { Binop($1, And, $3) }
| expr OR expr { Binop($1, Or, $3) }
| MINUS expr %prec SUB { Unop(Sub, $2) }
| NOT expr { Unop(Not, $2) }
| expr ASSIGN expr { Assign($1, $3) }
| ID LPAREN actuals_opt RPAREN { Call($1, $3) }
| POUND ID LPAREN actuals_opt RPAREN { LambdaCall($2, $4) }
| LPAREN expr RPAREN { $2 }
| expr LSQUARE expr RSQUARE { ArrayAccess($1, $3) }
| ID LBRACE expr RBRACE { HashmapAccess($1, $3) }
| expr DOT expr { ObjectAccess($1, $3) }
actuals_opt:
/* nothing */ { [] }
| actuals_list { List.rev $1 }
actuals_list:
expr { [$1] }
| actuals_list COMMA expr { $3 :: $1 }