-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantico.c
314 lines (281 loc) · 8.4 KB
/
semantico.c
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
/* Desenvolvido por: William Rodrigues @ UEM 2020. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "arvore.h"
#include "semantico.h"
#include "sintatico.tab.h"
/* GLOBAL */
struct variavel* inicio_lista_vars = NULL;
struct variavel* fim_lista_vars = NULL;
/* Aloca nova variavel na lista */
struct variavel* nova_variavel(int tipo, char* nome, union numero valor, struct variavel* anterior){
struct variavel * nova = malloc(sizeof(struct variavel));
nova->tipo = tipo;
nova->nome = nome;
switch(tipo){
case NUM_INT:
nova->valor.inteiro = valor.inteiro;
//insere_alloca_INT_saida();
break;
case NUM_FLOAT:
nova->valor.real = valor.real;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
nova->next = NULL;
if (anterior){
anterior->next = nova;
}else{
inicio_lista_vars = nova;
}
return nova;
}
/* Obtem tipo e valor de uma variavel, buscando por seu nome */
struct tipo_valor get_tipo_valor_variavel(char* nome){
struct tipo_valor tipo_valor;
struct variavel* var = inicio_lista_vars;
while(var){
if( strcmp(nome, var->nome) == 0){
tipo_valor.tipo = var->tipo;
switch(var->tipo){
case NUM_INT:
tipo_valor.valor.inteiro = var->valor.inteiro;
break;
case NUM_FLOAT:
tipo_valor.valor.real = var->valor.real;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor;
}
var = var->next;
}
tipo_valor.tipo = -1;
return tipo_valor;
}
/* Obtem o id de uma variavel, buscando por seu nome */
int get_id_variavel(char* nome){
struct variavel* var = inicio_lista_vars;
while(var){
if( strcmp(nome, var->nome) == 0){
return var->id;
}
var = var->next;
}
return -1;
}
/* Altera o valor de uma variavel inteira, buscando por seu nome */
void set_valor_variavel_int(char *nome, int novo_valor){
struct variavel* var = inicio_lista_vars;
while(var){
if( strcmp(nome, var->nome) == 0){
var->valor.inteiro = novo_valor;
return;
}
var = var->next;
}
printf("\nErro interno: variavel nao alocada.");
exit(1);
}
/* Altera o valor de uma variavel real, buscando por seu nome */
void set_valor_variavel_real(char *nome, float novo_valor){
struct variavel* var = inicio_lista_vars;
while(var){
if( strcmp(nome, var->nome) == 0){
var->valor.real = novo_valor;
return;
}
var = var->next;
}
printf("\nErro interno: variavel nao alocada.");
exit(1);
}
/* Valida uma expressao */
struct tipo_valor valida_exp(struct no *no){
struct tipo_valor tipo_valor1, tipo_valor2, tipo_valor3;
switch(no->tipo) {
case ADD:
tipo_valor1 = valida_exp(no->l);
tipo_valor2 = valida_exp(no->r);
if(tipo_valor1.tipo == tipo_valor2.tipo){
tipo_valor3.tipo = tipo_valor1.tipo;
switch(tipo_valor3.tipo){
case NUM_INT:
tipo_valor3.valor.inteiro = tipo_valor1.valor.inteiro + tipo_valor2.valor.inteiro;
break;
case NUM_FLOAT:
tipo_valor3.valor.real = tipo_valor1.valor.real + tipo_valor2.valor.real;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor3;
}
printf("\nAnalisador semantico: (linha %d, coluna %d)\nOperacao sobre tipos diferentes: '", no->linha, no->coluna);
print_no(no); printf("'\n");
exit(1);
case SUB:
tipo_valor1 = valida_exp(no->l);
tipo_valor2 = valida_exp(no->r);
if(tipo_valor1.tipo == tipo_valor2.tipo){
tipo_valor3.tipo = tipo_valor1.tipo;
switch(tipo_valor3.tipo){
case NUM_INT:
tipo_valor3.valor.inteiro = tipo_valor1.valor.inteiro - tipo_valor2.valor.inteiro;
break;
case NUM_FLOAT:
tipo_valor3.valor.real = tipo_valor1.valor.real - tipo_valor2.valor.real;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor3;
}
printf("\nAnalisador semantico: (linha %d, coluna %d)\nOperacao sobre tipos diferentes: '", no->linha, no->coluna);
print_no(no); printf("'\n");
exit(1);
case MUL:
tipo_valor1 = valida_exp(no->l);
tipo_valor2 = valida_exp(no->r);
if(tipo_valor1.tipo == tipo_valor2.tipo){
tipo_valor3.tipo = tipo_valor1.tipo;
switch(tipo_valor3.tipo){
case NUM_INT:
tipo_valor3.valor.inteiro = tipo_valor1.valor.inteiro * tipo_valor2.valor.inteiro;
break;
case NUM_FLOAT:
tipo_valor3.valor.real = tipo_valor1.valor.real * tipo_valor2.valor.real;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor3;
}
printf("\nAnalisador semantico: (linha %d, coluna %d)\nOperacao sobre tipos diferentes: '", no->linha, no->coluna);
print_no(no); printf("'\n");
exit(1);
case POW:
tipo_valor1 = valida_exp(no->l);
tipo_valor2 = valida_exp(no->r);
if(tipo_valor1.tipo == tipo_valor2.tipo){
tipo_valor3.tipo = tipo_valor1.tipo;
switch(tipo_valor3.tipo){
case NUM_INT:
tipo_valor3.valor.inteiro = pow(tipo_valor1.valor.inteiro, tipo_valor2.valor.inteiro);
break;
case NUM_FLOAT:
tipo_valor3.valor.real = pow(tipo_valor1.valor.real, tipo_valor2.valor.real);
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor3;
}
printf("\nAnalisador semantico: (linha %d, coluna %d)\nOperacao sobre tipos diferentes: '", no->linha, no->coluna);
print_no(no); printf("'\n");
exit(1);
case DIV:
tipo_valor1 = valida_exp(no->l);
tipo_valor2 = valida_exp(no->r);
if(tipo_valor1.tipo == tipo_valor2.tipo){
switch(tipo_valor1.tipo){
case NUM_INT:
if(tipo_valor2.valor.inteiro == 0){
printf("\nAnalisador semantico: (linha %d, coluna %d)\nDivisao por zero: '", no->linha, no->coluna-1);
print_no(no); printf("'\n");
exit(1);
}
tipo_valor3.valor.inteiro = tipo_valor1.valor.inteiro / tipo_valor2.valor.inteiro;
tipo_valor3.tipo = NUM_INT;
break;
case NUM_FLOAT:
if(tipo_valor2.valor.real == 0.0){
printf("\nAnalisador semantico: (linha %d, coluna %d)\nDivisao por zero: '", no->linha, no->coluna-1);
print_no(no); printf("'\n");
exit(1);
}
tipo_valor3.valor.real = tipo_valor1.valor.real / tipo_valor2.valor.real;
tipo_valor3.tipo = NUM_FLOAT;
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
return tipo_valor3;
}
printf("\nAnalisador semantico: (linha %d, coluna %d)\nOperacao sobre tipos diferentes: '", no->linha, no->coluna);
print_no(no); printf("'\n");
exit(1);
case NUM_INT:
tipo_valor1.tipo = NUM_INT;
tipo_valor1.valor.inteiro = ((struct no_folha*)no)->valor.inteiro;
return tipo_valor1;
case NUM_FLOAT:
tipo_valor1.tipo = NUM_FLOAT;
tipo_valor1.valor.real = ((struct no_folha*)no)->valor.real;
return tipo_valor1;
case ID:
tipo_valor1 = get_tipo_valor_variavel( ((struct no_folha*)no)->valor.string );
if(tipo_valor1.tipo == -1){
printf("\nAnalisador semantico: (linha %d, coluna %d)\nVariavel '%s' usada antes da definicao: '", no->linha, no->coluna-1, ((struct no_folha*)no)->valor.string );
print_no(no); printf("'\n");
exit(1);
}
return tipo_valor1;
default:
printf("\nErro interno: tipo de no desconhecido");
exit(1);
}
}
/* Valida uma atribuicao */
void valida_atr(char* id, struct no *no){
struct tipo_valor tipo_valor_exp = valida_exp(no);
struct tipo_valor tipo_valor_var = get_tipo_valor_variavel(id);
if(tipo_valor_var.tipo == -1){
// Alocar nova variavel na lista
fim_lista_vars = nova_variavel(tipo_valor_exp.tipo, id, tipo_valor_exp.valor, fim_lista_vars);
}else{
if(tipo_valor_var.tipo != tipo_valor_exp.tipo){
printf("\nAnalisador semantico: (linha %d, coluna %d)\nAtribuicao sobre tipos diferentes: '%s = ", no->linha, no->coluna, id);
print_no(no); printf("'\n");
exit(1);
}
switch(tipo_valor_var.tipo){
case NUM_INT:
set_valor_variavel_int(id, tipo_valor_exp.valor.inteiro);
break;
case NUM_FLOAT:
set_valor_variavel_real(id, tipo_valor_exp.valor.real);
break;
default:
printf("\nErro interno: tipo indefinido.");
exit(1);
}
}
return;
}
/* Analisador semantico */
void analise_semantica(struct arvore_sintatica * arvore){
struct tipo_valor tipo_valor;
while(arvore){
switch(arvore->tipo){
case 1:
valida_exp(arvore->exp);
break;
case 2:
valida_atr(arvore->id, arvore->exp);
break;
}
arvore = arvore->next;
}
}