-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammaire_CPYRR.y
286 lines (202 loc) · 6.69 KB
/
grammaire_CPYRR.y
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
%{
#include <stdio.h>
#include <stdlib.h>
#include "arbre.h"
#include "table_lexicographique.h"
#include "table_declaration.h"
int region = 0;
arbre arbre_instruction = arbre_vide();
extern char* yytext;
extern int nb_ligne;
extern int caractere;
extern int table_hashcode[TAILLE_TAB_HASH_CODE];
extern tab_lexico tab_lex;
int yylex();
int yyerror();
%}
%token IDF
%token POINT_VIRGULE DEUX_POINTS CROCHET_OUVRANT CROCHET_FERMANT VIRGULE POINT PARENTHESE_OUVRANTE PARENTHESE_FERMANTE POINT_POINT
%token OPAFF PLUS MOINS MULT DIV MODULO CHEVRON_INF_EGALE CHEVRON_SUP_EGALE CHEVRON_INF CHEVRON_SUP ET OU NON EGALE DIFF INCREMENT DECREMENT LIRE ECRIRE
%token CSTE_REEL CSTE_ENTIERE CSTE_BOOL CSTE_CHAINE CSTE_CARACTERE
%token ENTIER REEL BOOLEEN CARACTERE CHAINE
%token VARIABLE PROCEDURE FONCTION RETOURNE VIDE TANT_QUE SI ALORS SINON FAIRE STRUCT FSTRUCT DEBUT FIN PROG TABLEAU DE TYPE
%%
programme : PROG corps {;}
;
corps : VIDE {;}
| liste_declarations liste_instructions {;}
| liste_instructions {;}
;
liste_declarations : declaration POINT_VIRGULE
| liste_declarations declaration POINT_VIRGULE
;
liste_instructions : DEBUT suite_liste_inst FIN {region ++;}
;
suite_liste_inst : VIDE {;}
| instruction POINT_VIRGULE {;}
| suite_liste_inst instruction POINT_VIRGULE {;}
;
declaration : declaration_type
| declaration_variable
| declaration_procedure
| declaration_fonction
;
declaration_type : TYPE IDF DEUX_POINTS suite_declaration_type
;
suite_declaration_type : STRUCT liste_champs FSTRUCT
| TABLEAU dimension DE nom_type
;
dimension : CROCHET_OUVRANT liste_dimensions CROCHET_FERMANT
;
liste_dimensions : une_dimension
| liste_dimensions VIRGULE une_dimension
;
une_dimension : expression POINT_POINT expression
;
liste_champs : un_champ POINT_VIRGULE
| liste_champs un_champ POINT_VIRGULE
;
un_champ : IDF DEUX_POINTS nom_type
;
nom_type : type_simple
| IDF
;
type_simple : ENTIER
| REEL
| BOOLEEN
| CARACTERE
| CHAINE CROCHET_OUVRANT expression CROCHET_FERMANT
;
declaration_variable : VARIABLE IDF DEUX_POINTS nom_type
;
declaration_procedure : PROCEDURE IDF liste_parametres corps
;
declaration_fonction : FONCTION IDF liste_parametres RETOURNE type_simple DEUX_POINTS corps
;
liste_parametres :
| PARENTHESE_OUVRANTE liste_param PARENTHESE_FERMANTE
;
liste_param : un_param
| liste_param POINT_VIRGULE un_param
;
un_param : IDF DEUX_POINTS type_simple
;
instruction : affectation
| condition
| tant_que
| appel
| LIRE PARENTHESE_OUVRANTE liste_variables PARENTHESE_FERMANTE
| ECRIRE PARENTHESE_OUVRANTE format suite_ecriture PARENTHESE_FERMANTE
| VIDE
| RETOURNE resultat_retourne
;
format : CSTE_CHAINE
;
suite_ecriture :
| VIRGULE variable suite_ecriture
;
resultat_retourne :
| expression
;
appel : IDF liste_arguments
;
liste_arguments : PARENTHESE_OUVRANTE VIDE PARENTHESE_FERMANTE
| PARENTHESE_OUVRANTE liste_args PARENTHESE_FERMANTE
;
liste_args : un_arg
| liste_args VIRGULE un_arg
;
un_arg : expression
;
condition : SI expression
ALORS liste_instructions
SINON liste_instructions
| SI expression
ALORS liste_instructions
;
tant_que : TANT_QUE expression FAIRE liste_instructions
;
affectation : variable OPAFF expression
;
liste_variables : variable
| liste_variables VIRGULE variable
;
variable : IDF
| IDF CROCHET_OUVRANT liste_expression CROCHET_FERMANT suite_variable1
| IDF POINT variable
;
suite_variable1 :
| POINT variable
;
liste_expression : expression
| liste_expression VIRGULE expression
;
expression : expression OU expression_1;
| expression_1
;
expression_1 : expression_1 ET expression_2
| expression_2
;
expression_2 : expression_2 operateur1 expression_3
| expression_3
;
expression_3 : expression_3 operateur2 expression_4
| CSTE_CHAINE
| CSTE_CARACTERE
| CSTE_BOOL
| expression_4
;
expression_4 : expression_4 operateur3 expression_5
| expression_5
;
expression_5 : expression_5 operateur4 expression_6
| expression_6
;
expression_6 : CSTE_ENTIERE
| CSTE_REEL
| PARENTHESE_OUVRANTE expression PARENTHESE_FERMANTE
| variable
| appel
// | IDF operateur_unaire
;
operateur1 : EGALE
| DIFF
;
operateur2 : CHEVRON_INF_EGALE
| CHEVRON_SUP_EGALE
| CHEVRON_INF
| CHEVRON_SUP
;
operateur3 : PLUS
| MOINS
;
operateur4 : MULT
| DIV
| MODULO
;
/*expression_unaire :// decrement et increment prefixer possible mais... a voir
IDF INCREMENT
| IDF DECREMENT
| NON expression
;*/
/*expression_chaine : expression_chaine PLUS chaine
| chaine
;
chaine : CSTE_CHAINE
| IDF
;
*/
%%
int main(){
init_hashcode(table_hashcode);
initialisation_tab_lex(TAILLE_TAB_LEXICO, &tab_lex);
yyparse();
afficher_table_hashcode(table_hashcode);
afficher_table_lexicographique(&tab_lex, 100);
afficher_arbre_horizontal(arbre_instruction, 6, 0, stdout);
exit(0);
}
int yyerror(){
fprintf(stderr,"Erreur de syntaxe a la ligne %d pres du caractere %d \n", nb_ligne, caractere);
return -1;
}