-
Notifications
You must be signed in to change notification settings - Fork 0
/
tp_sintaxis.y
176 lines (127 loc) · 4.65 KB
/
tp_sintaxis.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
%{
#include <stdio.h>
#include "libreria.h"
extern FILE *yyin;
extern int yylineno;
%}
%union {
char* valor;
int tipo;
}
%token CONSTANTE OPERADOR_RELACIONAL OPERADOR_IGUALDAD AND OR SIZEOF INCREMENTO LITERALCADENA RETURN FOR WHILE IF SWITCH DO ELSE OPERADOR_MULTIPLICATIVO ASIGNACION_INCREMENTAL
%token <valor> IDENTIFICADOR
%token <valor> NOMBRETIPO
%type <tipo> expPrimaria expPostFijo expUnaria expMultiplicativa expAditiva expRelacional expIgualdad expAnd expOr expAsignacion expresion listaArgumentosOpcional listaArgumentos
%type <valor> unaVarSimple
%%
codigo: declaracion codigo
| sentencia codigo
| error ';' codigo
|
//Expresiones
expresion: expAsignacion {$$ = $1;}
expresionOpcional: expresion
|
expAsignacion: expOr {$$ = $1;}
| expUnaria operAsignacion expAsignacion {$$ = checkeoAsignacion($1);}
operAsignacion: '='
| ASIGNACION_INCREMENTAL
expOr: expAnd {$$ = $1;}
| expOr OR expAnd {$$ = $1 && $3;}
expAnd: expIgualdad {$$ = $1;}
| expAnd AND expIgualdad {$$ = $1 && $3;}
expIgualdad: expRelacional {$$ = $1;}
| expIgualdad OPERADOR_IGUALDAD expRelacional {$$ = $1 && $3;}
expRelacional: expAditiva {$$ = $1;}
| expRelacional OPERADOR_RELACIONAL expAditiva {$$ = $1 && $3;}
expAditiva: expMultiplicativa {$$ = $1;}
| expAditiva '+' expMultiplicativa {$$ = checkeoOperacionBinaria($1,$3);}
| expAditiva '-' expMultiplicativa {$$ = checkeoOperacionBinaria($1,$3);}
expMultiplicativa: expUnaria {$$ = $1;}
| expMultiplicativa OPERADOR_MULTIPLICATIVO expUnaria {$$ = checkeoOperacionBinaria($1,$3);}
expUnaria: expPostFijo {$$ = $1;}
| INCREMENTO expUnaria {$$ = $2;}
| expUnaria INCREMENTO {$$ = $1;} //En el libro no estaba este.
| operUnario expUnaria {$$ = $2;}
| SIZEOF '('NOMBRETIPO')' {$$ = 1;}
operUnario: '-'
| '!'
/* Contando punteros y direcciones. Si se quiere retomar esto hay que sacar el OPERADOR_MULTIPLICATIVO por la repeticion del '*'
operUnario: '&'
| '*'
| '-'
| '!'
*/
expPostFijo: expPrimaria {$$ = $1;}
| expPostFijo '[' expresion ']' {$$ = $1 && $3;}
| expPostFijo '(' listaArgumentosOpcional ')' {$$ = $1 && $3;}
listaArgumentosOpcional: listaArgumentos {$$ = $1;}
| {$$ = 1;}
listaArgumentos: expAsignacion {$$ = $1;}
| listaArgumentos ',' expAsignacion {$$ = $1 && $3;}
expPrimaria: IDENTIFICADOR {$$ = 2;}
| CONSTANTE {$$ = 1;}
| LITERALCADENA {$$ = 0;}
| '(' expresion ')' {$$ = $2;}
// Declaraciones //
declaracion: declaVarSimples {liberarBufferDeNombresDeVariables();}
| declaFuncion {liberarBufferDeParametros();}
declaVarSimples: NOMBRETIPO listaVarSimples ';' {declararTodasLasVariablesEnBuffer($<valor>1);}
listaVarSimples: unaVarSimple {agregarNombreDeVariableABuffer($<valor>1);}
| listaVarSimples ',' unaVarSimple {agregarNombreDeVariableABuffer($<valor>3);}
unaVarSimple: variable inicialOpcional {$$ = $<valor>1;}
variable: IDENTIFICADOR
inicialOpcional: inicial
|
inicial: '=' expOr //Esto esta cambiado del libro.
declaFuncion: NOMBRETIPO IDENTIFICADOR '(' listaParametrosOpcional ')' '{' codigo '}' {agregarFuncionDeclarada($<valor>2,$<valor>1);} //Los parametros se agregan dentro de la funcion por el buffer.
listaParametrosOpcional: listaParametros
|
listaParametros: unParametro
| listaParametros ',' unParametro
unParametro: NOMBRETIPO unaVarSimple {agregarTipoDeParametroABuffer($<valor>1);}
//| NOMBRETIPO
//Sentencias//
sentencia: sentCompuesta
| sentExpresion
| sentSeleccion
| sentIteracion
| sentSalto
sentCompuesta: '{' codigo '}'
sentExpresion: expresionOpcional ';'
sentSeleccion: IF '(' expresion ')' sentencia
| IF '(' expresion ')' sentencia ELSE sentencia
| SWITCH '(' expresion ')' sentencia
sentIteracion: WHILE '(' expresion ')' sentencia
| DO sentencia WHILE '(' expresion ')' ';'
| FOR '(' expresionOpcional ';' expresionOpcional ';' expresionOpcional ')' sentencia //Esto no reconoce declaraciones dentro del for como "for(int i = 0;i<10;i++)"
sentSalto: RETURN expresionOpcional ';'
%%
int checkeoOperacionBinaria(int tipoPrimerTermino, int tipoSegundoTermino){
if (tipoPrimerTermino && tipoSegundoTermino){
return 1;
}
else{
agregarErrorBinarioEnLinea(yylineno);
return 0;
}
}
int checkeoAsignacion(int tipoTerminoLvalue){
if(tipoTerminoLvalue == 2){
return 1; //En la asignacion se vuelve una constante
}
else{
agregarErrorAsignacionEnLinea(yylineno);
return 0;
}
}
void yyerror() {
agregarErrorSintactico(yylineno);
}
main ()
{
yyin = fopen("entrada.c","r");
yyparse ();
reportar();
return 0;
}