-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator-functions.c
421 lines (352 loc) · 9.43 KB
/
calculator-functions.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
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
/**
* Funcoes Auxiliares para uma calculadora avancada
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include "calculator.h"
/* funcoes em C para TS */
/* funcao hashing */
static unsigned symhash(char* sym) {
unsigned int hash = 0;
unsigned c;
while (c = *sym++)
hash = hash * 9 ^ c;
return hash;
}
struct symbol* lookup(char* sym) {
struct symbol* sp = &symtab[symhash(sym) % NHASH];
int scount = NHASH;
while (--scount >= 0) {
if (sp->name && !strcasecmp(sp->name, sym))
return sp;
if (!sp->name) { /* nova entrada na TS */
sp->name = strdup(sym);
sp->value = 0;
sp->func = NULL;
sp->syms = NULL;
return sp;
}
if (++sp >= symtab + NHASH)
sp = symtab; /* tenta a prox. entrada */
}
yyerror("overflow na tab. simbolos \n");
abort(); /* tabela estah cheia */
}
struct ast* newast(int nodetype, struct ast* l, struct ast* r) {
struct ast* a = malloc(sizeof(struct ast));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = nodetype;
a->l = l;
a->r = r;
return a;
}
struct ast* newnum(double d) {
struct numval* a = malloc(sizeof(struct numval));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = 'K';
a->number = d;
return (struct ast*)a;
}
struct ast* newcmp(int cmptype, struct ast* l, struct ast* r) {
struct ast* a = malloc(sizeof(struct ast));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = '0' + cmptype;
a->l = l;
a->r = r;
return a;
}
struct ast* newfunc(int functype, struct ast* l) {
struct fncall* a = malloc(sizeof(struct fncall));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = 'F';
a->l = l;
a->functype = functype;
return (struct ast*)a;
}
struct ast* newcall(struct symbol* s, struct ast* l) {
struct ufncall* a = malloc(sizeof(struct ufncall));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = 'C';
a->l = l;
a->s = s;
return (struct ast*)a;
}
struct ast* newref(struct symbol* s) {
struct symref* a = malloc(sizeof(struct symref));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = 'N';
a->s = s;
return (struct ast*)a;
}
struct ast* newasgn(struct symbol* s, struct ast* v) {
struct symasgn* a = malloc(sizeof(struct symasgn));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = '=';
a->s = s;
a->v = v;
return (struct ast*)a;
}
struct ast* newflow(int nodetype, struct ast* cond, struct ast* tl, struct ast* el) {
struct flow* a = malloc(sizeof(struct flow));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = nodetype;
a->cond = cond;
a->tl = tl;
a->el = el;
return (struct ast*)a;
}
struct ast* newfor(int nodetype, struct ast* init, struct ast* cond, struct ast* listAndInc) {
struct forLoop* a = malloc(sizeof(struct forLoop));
if (!a) {
yyerror("sem espaco");
exit(0);
}
a->nodetype = nodetype;
a->init = init;
a->cond = cond;
a->listAndInc = listAndInc;
return (struct ast*)a;
}
/* libera uma arvore de AST */
void treefree(struct ast* a) {
switch (a->nodetype) {
/* duas subarvores */
case '+': case '-': case '*': case '/':
case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8':
case 'L':
treefree(a->r);
/* uma subarvore */
case 'C': case 'F':
treefree(a->l);
/* sem subarvore */
case 'K': case 'N':
break;
case '=':
free(((struct symasgn*)a)->v);
break;
/* acima de 3 subarvores */
case 'I': case 'W': case 'O':
free(((struct flow*)a)->cond);
if (((struct flow*)a)->tl) treefree(((struct flow*)a)->tl);
if (((struct flow*)a)->el) treefree(((struct flow*)a)->el);
break;
default: printf("erro interno: free bad node %c\n", a->nodetype);
}
free(a); /* sempre libera e proprio no */
}
struct symlist* newsymlist(struct symbol* sym, struct symlist* next) {
struct symlist* sl = malloc(sizeof(struct symlist));
if (!sl) {
yyerror("sem espaco");
exit(0);
}
sl->sym = sym;
sl->next = next;
return sl;
}
/* libera uma lista de simbolos */
void symlistfree(struct symlist* sl) {
struct symlist* nsl;
while (sl) {
nsl = sl->next;
free(sl);
sl = nsl;
}
}
/* etapa principal >> avaliacao de expressoes, comandos, funcoes, ... */
static double callbuiltin(struct fncall*);
static double calluser(struct ufncall*);
double eval(struct ast* a) {
double v;
if (!a) {
yyerror("erro interno, null eval");
return 0.0;
}
switch (a->nodetype) {
/* constante */
case 'K': v = ((struct numval*)a)->number; break;
/* referencia de nome */
case 'N': v = ((struct symref*)a)->s->value; break;
/* atribuicao */
case '=': v = ((struct symasgn*)a)->s->value = eval(((struct symasgn*)a)->v); break;
/* expressoes */
case '+': v = eval(a->l) + eval(a->r); break;
case '-': v = eval(a->l) - eval(a->r); break;
case '*': v = eval(a->l) * eval(a->r); break;
case '/': v = eval(a->l) / eval(a->r); break;
/* comparacoes */
case '1': v = (eval(a->l) > eval(a->r)) ? 1 : 0; break;
case '2': v = (eval(a->l) < eval(a->r)) ? 1 : 0; break;
case '3': v = (eval(a->l) != eval(a->r)) ? 1 : 0; break;
case '4': v = (eval(a->l) == eval(a->r)) ? 1 : 0; break;
case '5': v = (eval(a->l) >= eval(a->r)) ? 1 : 0; break;
case '6': v = (eval(a->l) <= eval(a->r)) ? 1 : 0; break;
case '7': v = (eval(a->l) && eval(a->r)) ? 1 : 0; break;
case '8': v = (eval(a->l) || eval(a->r)) ? 1 : 0; break;
/* controle de fluxo */
/* gramatica permite expressoes vazias, entao devem ser verificadas */
/* if/then/else */
case 'I':
if (eval(((struct flow*)a)->cond) != 0) { /* verifica condicao */
if (((struct flow*)a)->tl) { /* ramo verdadeiro */
v = eval(((struct flow*)a)->tl);
}
else
v = 0.0; /* valor default */
}
else {
if (((struct flow*)a)->el) { /* ramo falso */
v = eval(((struct flow*)a)->el);
}
else
v = 0.0; /*valor default */
}
break;
/* while/do */
case 'W':
v = 0.0;/* valor default */
if (((struct flow*)a)->tl) { /* testa se lista de comandos nao eh vazia */
while (eval(((struct flow*)a)->cond) != 0) /* avalia a condicao */
v = eval(((struct flow*)a)->tl); /* avalia comandos */
}
break; /* valor do ultimo comando eh valor do while/do */
/* lista de comandos */
case 'O':
v = 0.0;/* valor default */
if (((struct forLoop*)a)->listAndInc) { /* testa se lista de comandos nao eh vazia */
for (eval(((struct forLoop*)a)->init); eval(((struct forLoop*)a)->cond) != 0;) /* avalia a condicao */
v = eval(((struct forLoop*)a)->listAndInc); /* avalia comandos */
}
break;
case 'L': eval(a->l); v = eval(a->r); break;
case 'F': v = callbuiltin((struct fncall*)a); break;
case 'C': v = calluser((struct ufncall*)a); break;
default: printf("erro interno: bad node %c\n", a->nodetype);
}
return v;
}
static double callbuiltin(struct fncall* f) {
enum bifs functype = f->functype;
double v = eval(f->l);
switch (functype) {
case B_sqrt:
return sqrt(v);
case B_exp:
return exp(v);
case B_log:
return log(v);
case B_print:
printf(" =%4.4g\n", v);
return v;
default:
yyerror("Funcao pre definda %d desconhecida\n", functype);
return 0.0;
}
}
/* funcao definida por usuario */
void dodef(struct symbol* name, struct symlist* syms, struct ast* func) {
if (name->syms) symlistfree(name->syms);
if (name->func) treefree(name->func);
name->syms = syms;
name->func = func;
}
static double calluser(struct ufncall* f) {
struct symbol* fn = f->s; /* nome da funcao */
struct symlist* sl; /* argumentos (originais) da funcao */
struct ast* args = f->l; /* argumentos (usados) na funcao */
double* oldval, * newval; /* salvar valores de argumentos */
double v;
int nargs;
int i;
if (!fn->func) {
yyerror("Chamada para funcao %s indefinida", fn->name);
return 0;
}
/* contar argumentos */
sl = fn->syms;
for (nargs = 0; sl; sl = sl->next)
nargs++;
/* prepara o para salvar argumentos */
oldval = (double*)malloc(nargs * sizeof(double));
newval = (double*)malloc(nargs * sizeof(double));
if (!oldval || !newval) {
yyerror("Sem espaco em %s", fn->name);
return 0.0;
}
/* avaliacao de argumentos */
for (i = 0; i < nargs; i++) {
if (!args) {
yyerror("poucos argumentos na chamada da funcao %s", fn->name);
free(oldval);
free(newval);
return 0.0;
}
if (args->nodetype == 'L') { /* se eh uma lista de nos */
newval[i] = eval(args->l);
args = args->r;
}
else { /* se eh o final da lista */
newval[i] = eval(args);
args = NULL;
}
}
/* salvar valores (originais) dos argumentos, atribuir novos valores */
sl = fn->syms;
for (i = 0; i < nargs; i++) {
struct symbol* s = sl->sym;
oldval[i] = s->value;
s->value = newval[i];
sl = sl->next;
}
free(newval);
/* avaliacao da funcao */
v = eval(fn->func);
/* recolocar os valores (originais) da funcao */
sl = fn->syms;
for (i = 0; i < nargs; i++) {
struct symbol* s = sl->sym;
s->value = oldval[i];
sl = sl->next;
}
free(oldval);
return v;
}
void yyerror(char* s, ...) {
va_list ap;
va_start(ap, s);
fprintf(stderr, "%d: verror : ", yylineno);
vfprintf(stderr, s, ap);
fprintf(stderr, "\n");
}
int main() {
printf("> ");
return yyparse();
}