-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathold_Calculette.g4
444 lines (364 loc) · 12.5 KB
/
old_Calculette.g4
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
grammar Calculette;
@header {
import java.util.HashMap;
}
@members {
// place de la pile à laquelle on stocke la variable
// et, au passage, nombre de variables
int place_variable = 0;
/* Renvoie la place de la prochaine variable disponible */
int placeProchaineVariable() {
return place_variable++;
}
HashMap<String, Integer> memory = new HashMap<String, Integer>();
int label_actuel = 0;
String nouveauLabel() {
return Integer.toString(label_actuel++);
}
final String label_exp = nouveauLabel();
String fonction_exp() {
String label_while = nouveauLabel();
String label_return = nouveauLabel();
String code = "LABEL " + label_exp + "\n" +
"PUSHI 1\n" +
"STOREL -5\n" +
"LABEL " + label_while + "\n" +
"PUSHL -3\n" +
"PUSHI 0\n" +
"SUP\n" +
"JUMPF " + label_return + "\n" +
"PUSHL -5\n" +
"PUSHL -4\n" +
"MUL\n" +
"STOREL -5\n" +
"PUSHL -3\n" +
"PUSHI 1\n" +
"SUB\n" +
"STOREL -3\n" +
"JUMP " + label_while + "\n" +
"LABEL " + label_return + "\n" +
"RETURN\n";
return code;
}
String fonctions_builtin() {
String label_debut = nouveauLabel();
String code = new String();
code += "JUMP " + label_debut + "\n";
code += fonction_exp();
code += "LABEL " + label_debut + "\n";
return code;
}
}
// règles de la grammaire
/*
calcul returns [String code]
: start {$code = $start.code;}
;
*/
start returns [String code]
@init {$code = new String(); $code += fonctions_builtin();}
@after {
for (int i = 0; i < place_variable; i++) {
$code += "POP\n"; // on pop toutes les variables de la pile
}
$code += "HALT\n";
System.out.println($code);
}
: (declaration fin_expression+ {$code += $declaration.code;})*
(instruction fin_expression+ {$code += $instruction.code;})*
EOF
;
/* ----------------------------------------------------------------------
# Déclaration de variable.
Syntaxes acceptées :
int x;
int x, y, z;
int x,
y;
---------------------------------------------------------------------- */
declaration returns [String code]
@init {
$code = new String();
}
: TYPE (id=IDENTIFIANT VIRGULE NEWLINE* {
memory.put($id.text, placeProchaineVariable());
$code += "PUSHI 0\n";
})*
id=IDENTIFIANT {
memory.put($id.text, placeProchaineVariable());
$code += "PUSHI 0\n";
}
//todo : déclaration & assignation simultanées | TYPE id=IDENTIFIANT EGAL expr
;
bloc_instructions returns [String code]
@init {
$code = new String();
}
: L_ACCOLADE NEWLINE*
(instruction fin_expression+ {$code += $instruction.code;})+
R_ACCOLADE
;
instruction returns [String code]
: affectation {$code = $affectation.code;}
| fonction_builtin {$code = $fonction_builtin.code;}
| structure_conditionnelle {$code = $structure_conditionnelle.code;}
| boucle {$code = $boucle.code;}
// Une instruction qui ne contient qu'une expr est
// inutile et sans effet de bord : on POP donc
// le résultat de celle-ci.
| expr {$code = $expr.code + "POP\n";}
;
structure_conditionnelle returns [String code]
: structure_if {$code = $structure_if.code;}
;
structure_if returns [String code]
@init {
String instruction_if = new String();
String instruction_else = new String();
String label_if = nouveauLabel();
String label_else = nouveauLabel();
}
: IF L_PARENTHESE expr_bool R_PARENTHESE NEWLINE*
(bloc_instructions {instruction_if += $bloc_instructions.code;}
| instruction {instruction_if += $instruction.code;}
) NEWLINE*
(ELSE NEWLINE*
(bloc_instructions {instruction_else += $bloc_instructions.code;}
| instruction {instruction_else += $instruction.code;}
| structure_if {instruction_else += $structure_if.code;}
))? {
$code = $expr_bool.code;
$code += "JUMPF " + label_if + "\n";
$code += instruction_if;
if (instruction_else != "") {$code += "JUMP " + label_else + "\n";}
$code += "LABEL " + label_if + "\n";
if (instruction_else != "") {
$code += instruction_else;
$code += "LABEL " + label_else + "\n";
}
}
;
boucle returns [String code]
: boucle_do_while {$code = $boucle_do_while.code;}
;
boucle_do_while returns [String code]
@init {
String code_instruction = new String();
}
: DO NEWLINE* (bloc_instructions {code_instruction += $bloc_instructions.code;}
| instruction POINT_VIRGULE? {code_instruction += $instruction.code;}) NEWLINE*
WHILE L_PARENTHESE expr_bool R_PARENTHESE {
String label_instructions = nouveauLabel(); // instructions du do while
String label_condition = nouveauLabel(); // vérification de la condition
String label_fin = nouveauLabel(); // fin du do while
$code = "JUMP " + label_instructions + "\n";
$code += "LABEL " + label_condition + "\n";
$code += $expr_bool.code;
$code += "JUMPF" + label_fin + "\n";
$code += "LABEL " + label_instructions + "\n";
$code += code_instruction;
$code += "JUMP " + label_condition + "\n";
$code += "LABEL " + label_fin + "\n";
}
;
fonction_builtin returns [String code]
: print {$code = $print.code;}
| read {$code = $read.code;}
;
print returns [String code]
@init {
$code = new String();
String code_arguments = new String();
String code_affichage = "WRITE\nPOP\n";
}
: PRINT L_PARENTHESE
(expr VIRGULE {$code += $expr.code + code_affichage;})* e=expr
R_PARENTHESE {
$code += $e.code + code_affichage;
}
;
read returns [String code]
: READ L_PARENTHESE id=IDENTIFIANT R_PARENTHESE {
$code = "READ\n";
$code += "STOREG " + memory.get($id.text) + "\n";
}
;
affectation returns [String code]
: id=IDENTIFIANT EGAL expr {
$code = $expr.code;
$code += "STOREG " + memory.get($id.text) + "\n";
}
| raccourci_affectation {$code = $raccourci_affectation.code;}
| incr_ou_decr {$code = $incr_ou_decr.code;}
;
raccourci_affectation returns [String code]
: id=IDENTIFIANT operateur=(PLUS | MOINS | MUL_OU_DIV) EGAL expr {
$code = "PUSHG " + memory.get($id.text) + "\n";
$code += $expr.code;
$code += $operateur.getText() + "\n";
$code += "STOREG " + memory.get($id.text) + "\n";
}
;
incr_ou_decr returns [String code]
: id=IDENTIFIANT operateur=(INCREMENTATION | DECREMENTATION) {
$code = "PUSHG " + memory.get($id.text) + "\n";
$code += "PUSHI 1\n";
$code += $operateur.getText() + "\n";
$code += "STOREG " + memory.get($id.text) + "\n";
}
;
expr returns [String code]
: expr_arith {$code = $expr_arith.code;}
| expr_bool {$code = $expr_bool.code;}
;
// expression arithmétique
expr_arith returns [String code]
: L_PARENTHESE a=expr_arith R_PARENTHESE {$code = $a.code;}
//todo: gérer les exposants négatifs
| <assoc=right> a=expr_arith EXP b=expr_arith {
$code = "PUSHI 0\n";
$code += $a.code + $b.code;
$code += "CALL " + label_exp + "\n";
$code += "POP\nPOP\n";
}
| a=expr_arith MUL_OU_DIV b=expr_arith {$code = $a.code + $b.code + $MUL_OU_DIV.getText() + "\n";}
| a=expr_arith PLUS b=expr_arith {$code = $a.code + $b.code + $PLUS.getText() + "\n";}
| a=expr_arith MOINS b=expr_arith {$code = $a.code + $b.code + $MOINS.getText() + "\n";}
| nombre_entier {$code = $nombre_entier.code;}
| id=IDENTIFIANT {$code = "PUSHG " + memory.get($id.text) + "\n";}
;
nombre_entier returns [String code]
: MOINS ENTIER {$code = "PUSHI " + -$ENTIER.int + '\n';}
| ENTIER {$code = "PUSHI " + $ENTIER.int + '\n';}
;
// expression flottante
expr_float returns [String code]
: L_PARENTHESE a=expr_arith R_PARENTHESE {$code = $a.code;}
//todo: gérer les exposants négatifs
| <assoc=right> a=expr_arith EXP b=expr_arith {
$code = "PUSHI 0\n";
$code += $a.code + $b.code;
$code += "CALL " + label_exp + "\n";
$code += "POP\nPOP\n";
}
| a=expr_arith MUL_OU_DIV b=expr_arith {$code = $a.code + $b.code + $MUL_OU_DIV.getText() + "\n";}
| a=expr_arith PLUS b=expr_arith {$code = $a.code + $b.code + $PLUS.getText() + "\n";}
| a=expr_arith MOINS b=expr_arith {$code = $a.code + $b.code + $MOINS.getText() + "\n";}
| nombre_entier {$code = $nombre_entier.code;}
| id=IDENTIFIANT {$code = "PUSHG " + memory.get($id.text) + "\n";}
;
nombre_float returns [String code]
: MOINS ENTIER {$code = "PUSHI " + -$ENTIER.int + '\n';}
| ENTIER {$code = "PUSHI " + $ENTIER.int + '\n';}
;
// expression booléenne
expr_bool returns [String code]
: L_PARENTHESE a=expr_bool R_PARENTHESE {$code = $a.code;}
| NOT a=expr_bool {$code = "PUSHI 1\n" + $a.code + "SUB\n";} // (not a) === (1 - a)
| c=expr_arith OP_COMPARAISON d=expr_arith {
$code = $c.code + $d.code + $OP_COMPARAISON.text + "\n";
}
| a=expr_bool AND b=expr_bool {$code = $a.code + $b.code + "MUL\n";} // (a and b) === (a * b)
| a=expr_bool OR b=expr_bool { // (a or b) === ((a+b) <> 0)
$code = $a.code + $b.code + "ADD\n";
$code += "PUSHI 0\n" + "NEQ\n";
}
| a=expr_bool OR_LAZY b=expr_bool { // tentative de or avec lazy evaluation
$code = $a.code + '\n' + "PUSHG 0\n";
$code += "PUSHI 1\n"; // if
$code += "NEQ \n"; // (a == true) === not (a <> 1)
$code += "JUMPF else\n";
$code += $b.code + '\n'; // then
$code += "ADD\n" + "PUSHI 1\n" + "SUPEQ\n";
$code += "JUMP else\n";
$code += "LABEL else\n" ; //else
}
| a=expr_bool XOR b=expr_bool { // (a xor b) === (a <> b)
$code = $a.code + $b.code + "NEQ\n";
}
| BOOLEEN {$code = "PUSHI " + $BOOLEEN.getText() + "\n";}
| id=IDENTIFIANT {$code = "PUSHG " + memory.get($id.text) + "\n";}
;
fin_expression
: NEWLINE | POINT_VIRGULE
;
// règles du lexer. Skip pour dire ne rien faire
NEWLINE : BACKSLASH_R? BACKSLASH_N;
fragment BACKSLASH_N : '\n';
fragment BACKSLASH_R : '\r';
POINT_VIRGULE : ';';
VIRGULE : ',';
POINT : '.';
WHITESPACE : (ESPACE | TAB)+ -> skip;
fragment ESPACE : ' ';
fragment TAB : '\t';
ENTIER : CHIFFRE+; // todo: les nombres commençant par 0 exemple : "042" ?
FLOAT : CHIFFRE+ (POINT | VIRGULE) CHIFFRE+ | CHIFFRE+ FLOAT_EXPONENT CHIFFRE+;
fragment CHIFFRE : ('0'..'9');
fragment FLOAT_EXPONENT : 'e';
BOOLEEN : TRUE { setText("1"); } | FALSE { setText("0"); };
fragment TRUE : 'true';
fragment FALSE : 'false';
// parenthèses
L_PARENTHESE : '(';
R_PARENTHESE : ')';
L_ACCOLADE : '{';
R_ACCOLADE : '}';
// commentaire
COMMENTAIRE
: (L_COMMENT .*? R_COMMENT
// ANTLR4: on ne peut pas mettre de tokens dans les sets avec un '~' devant
// -> on est obligé de mettre \n plutôt que BACKSLASH_N dans SLASH_COMMENT.
| SLASH_COMMENT .*? ~('\n' | '\r')*
) -> skip
;
fragment SLASH_COMMENT : '//';
fragment L_COMMENT : '/*';
fragment R_COMMENT : '*/';
MUL_OU_DIV
: SYMBOLE_FOIS { setText("MUL"); }
| SYMBOLE_DIV { setText("DIV"); }
;
EXP : '^' | SYMBOLE_FOIS SYMBOLE_FOIS;
PLUS : SYMBOLE_PLUS { setText("ADD"); };
MOINS : SYMBOLE_MOINS { setText("SUB"); };
INCREMENTATION : SYMBOLE_PLUS SYMBOLE_PLUS { setText("ADD"); };
DECREMENTATION : SYMBOLE_MOINS SYMBOLE_MOINS { setText("SUB"); };
fragment SYMBOLE_PLUS : '+';
fragment SYMBOLE_MOINS : '-';
fragment SYMBOLE_FOIS : '*';
fragment SYMBOLE_DIV : '/';
// un des opérateurs de comparaison
OP_COMPARAISON
: '==' { setText("EQUAL"); }
| '<>' { setText("NEQ"); }
| '<=' { setText("INFEQ"); }
| '<' { setText("INF"); }
| '>=' { setText("SUPEQ"); }
| '>' { setText("SUP"); }
;
// Opérateurs booléens
AND : 'and';
OR : 'or';
OR_LAZY : 'or_lazy';
XOR : 'xor';
NOT : 'not';
// Déclaration de variables
TYPE : INT | BOOL_TYPE | FLOAT_TYPE;
INT : 'int';
BOOL_TYPE : 'bool';
FLOAT_TYPE : 'float';
// Structures de contrôle et boucles :
IF : 'if' | 'si';
ELSE : 'else' | 'sinon';
WHILE : 'while' | 'tantque';
FOR : 'for' | 'pour';
DO : 'do' | 'repeter';
EGAL : '=';
// Fonctions built-in
PRINT : 'print' | 'afficher';
READ : 'read' | 'lire';
IDENTIFIANT : (LETTRE | UNDERSCORE) (LETTRE | CHIFFRE | UNDERSCORE)*;
fragment LETTRE : [a-z] | [A-Z];
fragment UNDERSCORE : '_';
UNMATCH : . -> skip;