-
Notifications
You must be signed in to change notification settings - Fork 1
/
parser.mly
307 lines (261 loc) · 7.68 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
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
%{
open Error
open Ast
open Lexing
open Format
let current_pos () =
(Parsing.symbol_start_pos (), Parsing.symbol_end_pos ())
let mk_node elem =
{value=elem; pos=current_pos ()}
%}
%token <string> IDENT STRING
%token <Int32.t> CONST
%token PLUS UMINUS MINUS MULT DIV MOD
%token INC DEC
%token EQ NEQ
%token NOT OR AND
%token LE LT GE GT
%token RPAR LPAR
%token LBRA RBRA
%token LEMB REMB
%token AFFECT
%token DOT
%token COM
%token SEMICOLON
%token IF ELSE FOR
%token BOOLEAN TRUE FALSE
%token CLASS
%token MAIN
%token EXTENDS
%token INSTANCEOF
%token INT
%token NATIVE
%token NEW
%token NULL
%token PUBLIC
%token RETURN
%token STATIC
%token THIS
%token VOID
%token EOF
%token CAST
%token PREC_IF PREC_ACCES_IDENT
%nonassoc PREC_IF
%nonassoc ELSE
%nonassoc PREC_ACCES_IDENT
%nonassoc RPAR /* Pour le cast */
%nonassoc IDENT_CLASS_EXPR /* Precedence moins forte que LT */
%right AFFECT
%left OR
%left AND
%left EQ NEQ
%left LT LE GT GE INSTANCEOF /* On utilise LT dans class_expr aussi */
%left PLUS MINUS
%left MULT DIV MOD
%right NOT INC DEC CAST
%nonassoc UMINUS
%left DOT
/* Pbm avec le moins unaire, résolu avec l'option %prec et UMINUS */
%start prog
%type <Ast.prog> prog
%%
prog:
rep_class_def class_main EOF { (List.rev $1, $2) }
| error {
error (Syntax_error None) ( current_pos () )
}
;
class_def:
CLASS IDENT opt_class_params opt_extends_class_expr LEMB rep_decl REMB {
($2, $3, $4, List.rev $6)
}
;
/*Ajout d'un non terminal pour que la position de l'erreur soit plus précise*/
tstring:
IDENT {
if($1 <> "String") then
error (Syntax_error
(Some (sprintf
"literal \"String\" expected but \"%s\" found"
$1
)))
(current_pos ())
}
;
/*Ajout d'un non terminal pour que la position de l'erreur soit plus précise*/
classname:
IDENT { mk_node $1 }
;
class_main:
PUBLIC CLASS classname LEMB PUBLIC STATIC VOID MAIN LPAR tstring IDENT LBRA RBRA RPAR bloc REMB {
($3, $11, $15)
}
;
class_params:
LT rep1_ident GT { List.rev $2 }
class_expr:
IDENT %prec IDENT_CLASS_EXPR { CIdent($1, []) }
| IDENT LT rep1_class_expr GT { CIdent($1, List.rev $3) }
decl:
decl_att { $1 }
| decl_const { $1 }
| decl_meth { $1 }
| decl_native_meth { $1 }
;
decl_att:
type_ IDENT SEMICOLON { DeclAtt($1, $2) }
;
decl_const:
IDENT LPAR rep_type_ident RPAR bloc { DeclConst($1, List.rev $3, $5) }
;
decl_meth:
VOID IDENT LPAR rep_type_ident RPAR bloc {
DeclMeth(Tvoid, $2, List.rev $4, $6)
}
| type_ IDENT LPAR rep_type_ident RPAR bloc {
DeclMeth($1, $2, List.rev $4, $6)
}
;
decl_native_meth:
NATIVE VOID IDENT LPAR rep_type_ident RPAR SEMICOLON {
DeclNativeMeth(Tvoid, $3, List.rev $5)
}
| NATIVE type_ IDENT LPAR rep_type_ident RPAR SEMICOLON {
DeclNativeMeth($2, $3, List.rev $5)
}
;
type_:
BOOLEAN { Tbool }
| INT { Tint }
| class_expr { Tident $1 }
;
bloc:
LEMB rep_instr REMB { List.rev $2 }
;
instr:
SEMICOLON { Nothing }
| instr_expr SEMICOLON { Iexpr $1 }
| type_ IDENT opt_affect_expr SEMICOLON { Declaration($1, $2, $3) }
| IF LPAR expr RPAR instr %prec PREC_IF { If($3, $5) }
| IF LPAR expr RPAR instr ELSE instr { IfElse($3, $5, $7) }
| bloc { Bloc $1 }
| RETURN opt_expr SEMICOLON { Return $2 }
| FOR LPAR opt_expr SEMICOLON opt_expr SEMICOLON opt_expr RPAR instr {
For($3, $5, $7, $9)
}
instr_expr:
acces AFFECT expr { mk_node (Affect($1, $3)) }
| appel { $1 }
| INC acces { mk_node (PreIncr $2) }
| DEC acces { mk_node (PreDecr $2) }
| acces INC { mk_node (PostIncr $1) }
| acces DEC { mk_node (PostDecr $1) }
| NEW class_expr LPAR rep_expr RPAR { mk_node (New($2, List.rev $4)) }
;
appel:
acces LPAR opt_expr_list RPAR { mk_node (Appel($1, $3)) }
;
expr:
TRUE { mk_node (Const (Cbool true)) }
| FALSE { mk_node (Const (Cbool false)) }
| CONST { mk_node (Const (Cint $1)) }
| STRING { mk_node (Const (Cstring $1)) }
| NULL { mk_node (Const Cnull) }
| NOT expr { mk_node (Unop (Unot, $2)) }
/* %prec Permet a MINUS de ce comporter avec les règle de UMINUS */
| MINUS expr %prec UMINUS { mk_node (Unop (Uminus, $2)) }
| expr PLUS expr { mk_node (Intbinop(Add, $1, $3)) }
| expr MINUS expr { mk_node (Intbinop(Sub, $1, $3)) }
| expr MULT expr { mk_node (Intbinop(Mult, $1, $3)) }
| expr DIV expr { mk_node (Intbinop(Div, $1, $3)) }
| expr MOD expr { mk_node (Intbinop(Mod, $1, $3)) }
| expr AND expr { mk_node (Boolbinop(And, $1, $3)) }
| expr OR expr { mk_node (Boolbinop(Or, $1, $3)) }
| expr EQ expr { mk_node (Bineq(Eq, $1, $3)) }
| expr NEQ expr { mk_node (Bineq(Neq, $1, $3)) }
| expr LT expr { mk_node (Intbincmp(Lt, $1, $3)) }
| expr LE expr { mk_node (Intbincmp(Le, $1, $3)) }
| expr GT expr { mk_node (Intbincmp(Gt, $1, $3)) }
| expr GE expr { mk_node (Intbincmp(Ge, $1, $3)) }
| expr INSTANCEOF class_expr { mk_node (Instanceof($1, $3)) }
| cast expr %prec CAST { mk_node (Cast($1, $2)) }
| instr_expr { $1 }
| acces { $1 }
| LPAR expr RPAR { $2 }
;
acces:
IDENT %prec PREC_ACCES_IDENT { mk_node (Ident $1) }
| THIS { mk_node (This) }
| appel DOT IDENT { mk_node (DotAcces($1, $3)) }
| acces DOT IDENT { mk_node (DotAcces($1, $3)) }
| LPAR expr RPAR DOT IDENT { mk_node (DotAcces($2, $5)) }
;
expr_list:
expr { [$1] }
| expr_list COM expr { $3::$1 }
;
cast:
LPAR IDENT RPAR { Tident (CIdent($2, [])) }
| LPAR INT RPAR { Tint }
| LPAR BOOLEAN RPAR { Tbool }
/* Tout les non terminaux optionnel */
opt_class_params:
/* empty */ { [] }
| class_params { $1 }
;
opt_extends_class_expr:
/* empty */ { None }
| EXTENDS class_expr { Some $2 }
;
opt_expr_list:
/* empty */ { [] }
| expr_list { $1 }
;
opt_affect_expr:
/* empty */ { None }
| AFFECT expr { Some $2 }
;
opt_expr:
/* empty */ { None }
| expr { Some $1 }
;
/************************************/
/* Tout les non terminaux répétable */
rep_type_ident:
/* empty */ { [] }
| rep_type_ident_com { $1 }
;
rep_type_ident_com:
type_ IDENT { [($1, $2)] }
| rep_type_ident_com COM type_ IDENT { ($3, $4)::$1 }
;
rep_decl:
/* empty */ { [] }
| rep_decl decl { $2::$1 }
;
rep_class_def:
/* empty */ { [] }
| rep_class_def class_def { $2::$1 }
;
rep_instr:
/* empty */ { [] }
| rep_instr instr { $2::$1 }
;
rep_expr:
/* empty */ { [] }
| rep_expr_com { $1 }
;
rep_expr_com:
expr { [$1] }
| rep_expr_com COM expr { $3::$1 }
;
rep1_ident:
IDENT { [$1] }
| rep1_ident COM IDENT { $3::$1 }
;
rep1_class_expr:
class_expr { [$1] }
| rep1_class_expr COM class_expr { $3::$1 }
;
/************************************/
%%