-
Notifications
You must be signed in to change notification settings - Fork 1
/
as.y
395 lines (312 loc) · 10.4 KB
/
as.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
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
%{
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "include/ts.h"
void yyerror(const char* msg);
int yylex();
int linea_actual = 1 ;
int error_lexico = 0 ;
int error_sintactico = 0 ;
dtipo temp=no_asignado;
%}
%define parse.error verbose
/** A continuación declaramos los tokens/símbolos terminales de la gramática. **/
%token MARCA_INICIO_VAR
%token MARCA_FIN_VAR
%token PRINCIPAL
%token INICIO_BLOQUE
%token FIN_BLOQUE
%token COMA
%token ID
%token TIPO
%token PROCEDIMIENTO
%token OP_ASIG
%token SI
%token ENTONCES
%token SINO
%token MIENTRAS
%token HACER
%token HASTA
%token CONSTANTE
%token NATURAL
%token CADENA
%token ENTRADA
%token SALIDA
%token PYC
%token PARENT_IZQ
%token PARENT_DER
%token CORCHETE_IZQ
%token CORCHETE_DER
%left OP_OR
%left OP_AND
%left OP_XOR
%left OP_IGUALDAD
%left OP_REL
%left MASMENOS
%left OP_MULT
%right OP_NOT
%start Principal
%%
/** Sección de producciones de la gramática. **/
Principal : PRINCIPAL bloque ;
bloque : INICIO_BLOQUE
{
tipoEntrada a=marca;
dtipo b = desconocido;
entradaTS marca = {.entrada=a, .nombre="marca", .tipoDato=b,
.parametros=0, .dimensiones=0, .TamDimen1="0", .TamDimen2="0"};
TS_Inserta(marca);
}
Declar_de_var_locales
Declar_de_subprogs
Resto_bloque ;
Resto_bloque : Sentencias
FIN_BLOQUE { TS_VaciarBloque();}
| FIN_BLOQUE { TS_VaciarBloque();} ;
Declar_de_var_locales : MARCA_INICIO_VAR Variables_locales MARCA_FIN_VAR
| ;
Variables_locales : Variables_locales Cuerpo_declar_var
| Cuerpo_declar_var ;
Cuerpo_declar_var : tipo linea_variables PYC
{
for(int i=0; i<$2.param;i++)
TS[TOPE-i].tipoDato=$1.tipo;
}
| tipo linea_variables error ;
// Definido para no confundir con <Parametro>
tipo : TIPO { temp=$1.tipo; $$.tipo=$1.tipo; }
| error ;
linea_variables : linea_variables COMA variable { $$.param= $$.param+1; }
| variable { $$.param=1; } ;
variable : ID
{
tipoEntrada a = variable;
dtipo b = temp;
entradaTS variable = {.entrada=a, .nombre=$1.lexema, .tipoDato=b,
.parametros=0, .dimensiones=0, .TamDimen1 ="0", .TamDimen2="0"};
int ind = buscar_repetido(a, $1.lexema); //busco si esta repetido
if (ind == 0) TS_Inserta(variable); // No lo está, lo añado
else TS[ind] = variable;
}
| Array ;
Array : ID
CORCHETE_IZQ expresion CORCHETE_DER
| ID
CORCHETE_IZQ
expresion COMA expresion
CORCHETE_DER ;
Identificadores : Identificadores COMA ID
| ID
| error ;
Declar_de_subprogs : Declar_de_subprogs Declar_subprog
| ;
Declar_subprog : PROCEDIMIENTO ID
{
tipoEntrada a = procedimiento;
dtipo b = desconocido;
entradaTS procedimiento = {.entrada=a, .nombre=yylval.lexema,
.tipoDato=b, .parametros=0, .dimensiones=0, .TamDimen1="0", .TamDimen2="0"};
TS_Inserta(procedimiento);
}
PARENT_IZQ Parametros
{
int ind = buscar_repetido(procedimiento, $2.lexema);
TS[ind].parametros=$5.param;
}
PARENT_DER bloque ;
Parametros : Parametros COMA Parametro {$$.param=1 + $1.param + $2.param;}
| Parametro {$$.param=1+$1.param;}
| {$$.param=0;};
Parametro : TIPO ID
{
entradaTS param_form = {.entrada=parametro_formal,
.nombre=$2.lexema , .tipoDato = $1.tipo, .parametros=0,.
dimensiones=0, .TamDimen1=0, .TamDimen2="0"};
TS_Inserta(param_form);
}
| TIPO ID CORCHETE_IZQ CORCHETE_DER
{
entradaTS param_form = {.entrada=parametro_formal,
.nombre=$2.lexema, .tipoDato = array, .parametros=0,
.dimensiones=1, .TamDimen1="desc", .TamDimen2="desc"};
TS_Inserta(param_form);
}
| TIPO ID CORCHETE_IZQ CORCHETE_DER
CORCHETE_IZQ CORCHETE_DER
{
entradaTS param_form = {.entrada=parametro_formal,
.nombre=$2.lexema, .tipoDato = array, .parametros=0,
.dimensiones=2, .TamDimen1="desc", .TamDimen2="desc"};
TS_Inserta(param_form);
}
| error ;
Sentencias : Sentencias Sentencia
| Sentencia ;
Sentencia : bloque
| sentencia_asignacion
| sentencia_si
| sentencia_mientras
| sentencia_hacer
| sentencia_entrada
| sentencia_salida
| llamada_proced ;
sentencia_asignacion : Ide_exp OP_ASIG expresion PYC
{
entradaTS asignacion = {.entrada=var_asignada,
.nombre=$1.lexema, .tipoDato = desconocido, .parametros=0,
.dimensiones=0, .TamDimen1="0", .TamDimen2="0"};
if($1.tipo == $3.tipo)
{
printf("%s",$3.tipo);
asignacion.tipoDato=$3.tipo;
$1.atrib = $3.atrib;
printf("some shit *********\n");
}
else{
printf("error de asignación, tipos distintos");
}
TS_Inserta(asignacion);
} ;
Ide_exp : ID
{
$$.tipo = $1.tipo;
tipoEntrada a1 = variable;
tipoEntrada a2 = parametro_formal;
entradaTS comprob_ambito = {.entrada=compr_ambito,
.nombre=$1.lexema, .tipoDato=$1.tipo, .parametros=0,
.dimensiones=0, .TamDimen1="0", .TamDimen2="0"};
int ind1 = buscar_repetido(a1,$1.lexema);
int ind2 = buscar_repetido(a2,$1.lexema);
if(ind1 != 0 || ind2 != 0)
TS_Inserta(comprob_ambito);
else{
printf("error_semantico: variable usada fuera de ambito");
}
}
| Array_exp {$$.tipo = $1.tipo;};
Array_exp : ID CORCHETE_IZQ expresion CORCHETE_DER
{
$$.tipo = $1.tipo;
tipoEntrada a1 = variable;
tipoEntrada a2 = parametro_formal;
entradaTS comprob_ambito = {.entrada=compr_ambito, .nombre=$1.lexema,
.tipoDato=$1.tipo, .parametros=0, .dimensiones=0,
.TamDimen1="0", .TamDimen2="0"};
int ind1 = buscar_repetido(a1,$1.lexema);
int ind2 = buscar_repetido(a2,$1.lexema);
if(ind1 != 0 || ind2 != 0)
TS_Inserta(comprob_ambito);
else{
printf("error_semantico: variable usada fuera de ambito");
}
}
| ID CORCHETE_IZQ expresion COMA expresion CORCHETE_DER
{
$$.tipo = $1.tipo;
//if($3.tipo==$5.tipo)
} ;
sentencia_si : si
| si SINO Sentencia ;
si : SI PARENT_IZQ expresion PARENT_DER ENTONCES Sentencia ;
sentencia_mientras : MIENTRAS PARENT_IZQ expresion PARENT_DER Sentencia ;
sentencia_hacer : HACER bloque HASTA PARENT_IZQ expresion PARENT_DER PYC ;
sentencia_entrada : ENTRADA Identificadores PYC ;
sentencia_salida : SALIDA lista_exp_cadena PYC ;
lista_exp_cadena : lista_exp_cadena COMA exp_cadena
| exp_cadena ;
exp_cadena : expresion | CADENA ;
llamada_proced : ID PARENT_IZQ argumentos PARENT_DER PYC
{
tipoEntrada a_buscar = procedimiento;
tipoEntrada a = llamada_proc;
dtipo b = desconocido;
entradaTS llama_proc ={.entrada=a, .nombre=$1.lexema,
.tipoDato=b, .parametros=0, .dimensiones=0,
.TamDimen1="0", .TamDimen2="0"};
int ind = buscar_ambito(a_buscar,$1.lexema);
if(ind!=0)
{
if(TS[ind].parametros == $3.param)
TS_Inserta(llama_proc);
else
yyerror("numero de argumentos incorrecto");
}
}
| ID PARENT_IZQ PARENT_DER PYC
{
tipoEntrada a_buscar = procedimiento;
tipoEntrada a = llamada_proc;
dtipo b = desconocido;
entradaTS llama_proc ={.entrada=a, .nombre=$1.lexema,
.tipoDato=b, .parametros=0, .dimensiones=0, .TamDimen1="0",
.TamDimen2="0"};
int ind = buscar_ambito(a_buscar,$1.lexema);
printf("%s \n",$1.lexema);
printf("procedimiento encontrado en: %i \n",ind);
if(ind!=0)
{
if(TS[ind].parametros == 0)
TS_Inserta(llama_proc);
else
yyerror("numero de argumentos incorrecto");
}
}
| error ;
argumentos : argumentos COMA expresion {$$.param = 1 + $1.param + $3.param;}
| expresion {$$.param = 1 + $1.param;} ;
expresion : PARENT_IZQ expresion PARENT_DER
| ID
{
$$.lexema=$1.lexema;$$.tipo=$1.tipo;
tipoEntrada a1 = variable;
tipoEntrada a2 = parametro_formal;
entradaTS comprob_ambito = {.entrada=compr_ambito,
.nombre=$1.lexema, .tipoDato=$1.tipo, .parametros=0,
.dimensiones=0, .TamDimen1="0", .TamDimen2="0"};
int ind1 = buscar_repetido(a1,$1.lexema);
int ind2 = buscar_repetido(a2,$1.lexema);
if(ind1 != 0 || ind2 != 0)
TS_Inserta(comprob_ambito);
else{
printf("error_semantico: variable usada fuera de ambito");
}
}
| Constante {$$.lexema=$1.lexema;$$.tipo=$1.tipo;}
| OP_NOT expresion
| MASMENOS expresion %prec OP_NOT
| expresion OP_OR expresion
| expresion OP_AND expresion
| expresion OP_XOR expresion
| expresion OP_REL expresion
| expresion OP_IGUALDAD expresion
| expresion OP_MULT expresion
| expresion MASMENOS expresion
| Array_exp
| Agregados
| error ;
Agregados : INICIO_BLOQUE argumentos FIN_BLOQUE ;
| INICIO_BLOQUE argumentos PYC
argumentos FIN_BLOQUE ;
Constante : CONSTANTE
{
$$.lexema=yylval.lexema;
if($1.tipo==real)
$$.tipo=real;
else
$$.tipo=caracter;
}
| NATURAL {$$.lexema=yylval.lexema;} ;
%%
/** Incluimos el fichero generado por el ’lex’
*** que implementa la función ’yylex’ **/
#ifdef DOSWINDOWS
#include "lexyy.c"
#else
#include "lex.yy.c"
#endif
void yyerror(const char* msg )
{
error_sintactico ++;
fprintf(stderr,"[Linea %d] Error %i: %s\n", linea_actual, error_sintactico, msg);
}