-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionStatement.c
More file actions
422 lines (371 loc) · 14.9 KB
/
ExpressionStatement.c
File metadata and controls
422 lines (371 loc) · 14.9 KB
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
422
#include "ExpressionStatement.h"
int readExitCodeType(EXIT_CODE code, Type e1, Type e2){
int exitCode = 0;
switch(code){
case SUCCESS:;break;
case TYPE_ERROR:
printf("Error linea, operación no definida para los tipos %s y %s\n" ,strType[e1], strType[e2]);
exitCode = 1; break;
case TYPE_DOESNT_AGREE:
printf("Error linea, los tipos no coinciden: %s, %s\n" ,strType[e1], strType[e2]);
exitCode = 1; break;
default:
printf("ERROR DE LA MUERTE");
exitCode = 1;
}
return exitCode;
}
int readExitCodeVariables(EXIT_CODE code, char * var, Type exprType ,Type varType){
int exitCode = 0;
switch(code){
case SUCCESS:
break;
case VAR_ALREADY_EXISTS_ERROR:
printf("Error linea , la variable %s ya existe\n",var);
exitCode = 1; break;
case VAR_NOT_FOUND_ERROR:
printf("Error linea, la variable %s no existe",var);
exitCode = 1; break;
default:
exitCode = readExitCodeType(code, exprType, varType);
}
return code;
}
Expression * _eval_plus(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if (lhsType == INT && rhsType == INT) {
return createInt(lhs->value._int + rhs->value._int);
} else if (lhsType == DOUBLE && rhsType == DOUBLE) {
return createDouble(lhs->value._double + rhs->value._double);
} else if (lhsType == INT && rhsType == DOUBLE) {
return createDouble(lhs->value._int + rhs->value._double);
} else if (lhsType == DOUBLE && rhsType == INT) {
return createDouble(lhs->value._double + rhs->value._int);
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_minus(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if (lhsType == INT && rhsType == INT) {
return createInt(lhs->value._int - rhs->value._int);
} else if (lhsType == DOUBLE && rhsType == DOUBLE) {
return createDouble(lhs->value._double - rhs->value._double);
} else if (lhsType == INT && rhsType == DOUBLE) {
return createDouble(lhs->value._int - rhs->value._double);
} else if (lhsType == DOUBLE && rhsType == INT) {
return createDouble(lhs->value._double - rhs->value._int);
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_mult(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if (lhsType == INT && rhsType == INT) {
return createInt(lhs->value._int * rhs->value._int);
} else if (lhsType == DOUBLE && rhsType == DOUBLE) {
return createDouble(lhs->value._double * rhs->value._double);
} else if (lhsType == INT && rhsType == DOUBLE) {
return createDouble(lhs->value._int * rhs->value._double);
} else if (lhsType == DOUBLE && rhsType == INT) {
return createDouble(lhs->value._double * rhs->value._int);
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_div(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if (lhsType == INT && rhsType == INT) {
return createInt(lhs->value._int / rhs->value._int);
} else if (lhsType == DOUBLE && rhsType == DOUBLE) {
return createDouble(lhs->value._double / rhs->value._double);
} else if (lhsType == INT && rhsType == DOUBLE) {
return createDouble(lhs->value._int / rhs->value._double);
} else if (lhsType == DOUBLE && rhsType == INT) {
return createDouble(lhs->value._double / rhs->value._int);
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_or(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == BOOL && rhsType == BOOL){
return createBool(or(lhs->value._bool,rhs->value._bool));
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_and(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == BOOL && rhsType == BOOL){
return createBool(and(lhs->value._bool,rhs->value._bool));
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_xor(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == BOOL && rhsType == BOOL){
return createBool(xor(lhs->value._bool,rhs->value._bool));
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_si(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == BOOL && rhsType == BOOL){
return createBool(si(lhs->value._bool,rhs->value._bool));
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_sii(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == BOOL && rhsType == BOOL){
return createBool(sii(lhs->value._bool,rhs->value._bool));
} else {
readExitCodeType(TYPE_ERROR,lhsType,rhsType);
exit(-1);
}
}
Expression * _eval_less(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int < rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double < rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int < rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double < rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char < rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * _eval_less_eq(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int <= rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double <= rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int <= rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double <= rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char <= rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * _eval_more(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int > rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double > rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int > rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double > rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char > rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * _eval_more_eq(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int >= rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double >= rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int >= rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double >= rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char >= rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * _eval_not_eq(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int != rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double != rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int != rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double != rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char != rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * _eval_double_eq(Expression * lhs, Expression * rhs) {
Type rhsType = getType(rhs);
Type lhsType = getType(lhs);
if(lhsType == INT && rhsType == INT){
return createBool(lhs->value._int == rhs->value._int ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == DOUBLE){
return createBool(lhs->value._double == rhs->value._double ? TRUE : FALSE);
} else if(lhsType == INT && rhsType == DOUBLE) {
return createBool(lhs->value._int == rhs->value._double ? TRUE : FALSE);
} else if (lhsType == DOUBLE && rhsType == INT){
return createBool(lhs->value._double == rhs->value._int ? TRUE : FALSE);
} else if(lhsType == CHAR && rhsType == CHAR){
return createBool(lhs->value._char == rhs->value._char ? TRUE : FALSE);
} else {
readExitCodeType(TYPE_ERROR, lhsType, rhsType);
exit(-1);
}
}
Expression * binary_evaluate(Table table, BinExpressionStatement e){
Expression * rhs = evaluate(table, e.rhs);
Expression * lhs = evaluate(table, e.lhs);
switch(e.kind){
case(BIN_PLUS): return _eval_plus(lhs, rhs);
case(BIN_MINUS): return _eval_minus(lhs, rhs);
case(BIN_BY): return _eval_mult(lhs, rhs);
case(BIN_DIVIDE): return _eval_div(lhs, rhs);
case(BIN_OR): return _eval_or(lhs, rhs);
case(BIN_AND): return _eval_and(lhs, rhs);
case(BIN_XOR): return _eval_xor(lhs, rhs);
case(BIN_SI): return _eval_si(lhs, rhs);
case(BIN_SII): return _eval_sii(lhs, rhs);
case(BIN_LESS): return _eval_less(lhs, rhs);
case(BIN_LESS_EQ): return _eval_less_eq(lhs, rhs);
case(BIN_MORE): return _eval_more(lhs, rhs);
case(BIN_MORE_EQ): return _eval_more_eq(lhs, rhs);
case(BIN_NOT_EQ): return _eval_not_eq(lhs, rhs);
case(BIN_DOBLE_EQUALS): return _eval_double_eq(lhs, rhs);
}
}
Expression * _un_eval_minus(Expression * e) {
Type j = getType(e);
if(j == INT){
return createInt(-e->value._int);
} else if (j == DOUBLE){
return createDouble(-e->value._double);
} else {
printf("Error, de tipado. No es posible poner un %s negativo",strType[j]);
exit(-1);
}
}
Expression * unary_evaluate(Table table, UnExpressionStatement e) {
Expression * expr = evaluate(table, e.e);
switch(e.kind){
case(UN_MINUS): return _un_eval_minus(expr);
}
}
Expression * array_accessor_evaluate(Table table, ArrayAccessorExpressionStatement acc){
Expression * res;
Expression * accessor = evaluate(table, acc.accessor);
EXIT_CODE code = valueOfArray(table, acc.name, &res, accessor->value._int);
if(res == NULL) {
readExitCodeVariables(VAR_NOT_FOUND_ERROR, acc.name,UNKNOWN,UNKNOWN);
exit(-1);
}
return &res[accessor->value._int];
}
Expression * evaluate(Table table, ExpressionStatement * e){
Expression * res = NULL;
switch(e->_n){
case UNARY:
return unary_evaluate(table, e->_e._unary);
case BINARY:
return binary_evaluate(table, e->_e._binary);
case LITERAL:
return e->_e._lit.e;
case VARIABLE:
valueOf(table,e->_e._var.name,&res);
if(res == NULL){
readExitCodeVariables(VAR_NOT_FOUND_ERROR,e->_e._var.name,UNKNOWN,UNKNOWN);
exit(-1);
}
return res;
case ACCESSOR:
return array_accessor_evaluate(table, e->_e._acc);
default:
printf("Expresion n-arity evaluation error\n");
exit(-1);
}
}
ExpressionStatement * createBinExpression(BinExpressionKind k, ExpressionStatement * lhs, ExpressionStatement * rhs){
ExpressionStatement * st = (ExpressionStatement *) malloc(sizeof(ExpressionStatement));
st->_n = BINARY;
st->_e._binary.kind = k;
st->_e._binary.lhs = lhs;
st->_e._binary.rhs = rhs;
return st;
}
ExpressionStatement * createUnExpression(UnExpressionKind k, ExpressionStatement * e){
ExpressionStatement * st = (ExpressionStatement *) malloc(sizeof(ExpressionStatement));
st->_n = UNARY;
st->_e._unary.kind = k;
st->_e._unary.e = e;
return st;
}
ExpressionStatement * createLiteralExpression(Expression * e) {
ExpressionStatement * st = (ExpressionStatement *) malloc(sizeof(ExpressionStatement));
st->_n = LITERAL;
st->_e._lit.e = e;
return st;
}
ExpressionStatement * createVariableExpression(char * name){
ExpressionStatement * st = (ExpressionStatement *) malloc(sizeof(ExpressionStatement));
st->_n = VARIABLE;
st->_e._var.name = strdup(name);
return st;
}
ExpressionStatement * createArrayAccessorExpression(char * name, ExpressionStatement *accessor){
ExpressionStatement * st = (ExpressionStatement *) malloc(sizeof(ExpressionStatement));
st->_n = ACCESSOR;
st->_e._acc.name = strdup(name);
st->_e._acc.accessor = accessor;
return st;
}
int const_int_eval(ExpressionStatement * e){
if(e->_n == LITERAL){
Expression * exp = evaluate(NULL, e);
if(getType(exp) == INT){
return exp->value._int;
} else printf("Error. No se puede especificar el tamaño de un Array con %s", strType[getType(exp)]);
} else {
printf("Error. El tamaño de un array se debe especificar con un valor constante");
}
exit(-1);
}