-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquadruplas.h
679 lines (574 loc) · 16.1 KB
/
quadruplas.h
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
// Compilador PORTUGOL versao 2q
// Autor: Ruben Carlo Benante
// Email: [email protected]
// Data: 23/04/2009
// Modificado: 24/05/2009
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define STACK_SIZE 200
#define FUNC_NAME_SIZE 32
#define MAX_PARAM 4
#define MAX_SVAL 256
/* Tipos de Base */
typedef enum
{
tipoIndef,
tipoInt,
tipoFloat,
tipoStr
} tipoBase;
typedef enum
{
tipoRetFuncInt,
tipoRetFuncFloat,
tipoRetFuncDouble,
tipoRetFuncChar,
tipoRetFuncStr,
tipoRetFuncVoid,
tipoRetFuncPVoid
} tipoRetFunc;
/* Super Tipo */
typedef struct
{
tipoBase tipo;
int ival;
float fval;
char sval[MAX_SVAL];
} superTipo;
/* Super Func */
typedef struct
{
tipoRetFunc tipoRet;
tipoBase tipoParam[MAX_PARAM];
int numParam;
char *idNome;
int (*ifunc)(); //ponteiro para funcao que retorna inteiro
float (*ffunc)(); //ponteiro para funcao que retorna float
double (*dfunc)(); //ponteiro para funcao que retorna double
char (*cfunc)(); //ponteiro para funcao que retorna char
char *(*sfunc)(); //ponteiro para funcao que retorna ponteiro para char
void (*vfunc)(); //ponteiro para a funcao que retorna void
void *(*pfunc)(); //ponteiro para a funcao que retorna ponteiro para void
} superFunc;
#include "saida.h"
superTipo gstack[STACK_SIZE]; //pilha
int gsi=0; //indice da pilha geral
#define jump_f(Q1,NUL1,LABEL) if(!(Q1.ival)) goto LABEL /* jump to LABEL if Q1.ival==false */
#define jump(NUL1,NUL2,LABEL) goto LABEL /* jump to LABEL */
void nop(superTipo *nul1, superTipo *nul2, superTipo *nul3); // do nothing
void halt(superTipo *nul1, superTipo *nul2, superTipo *nul3); // abort with exit(1)
void loadi(int i, int *nul1, superTipo *tn);// { tn->tipo=tipoIntInt; tn->ival=i; }
void loadf(float f, float *nul1, superTipo *tn);// { tn->tipo=tipoIntFloat; tn->fval=f; }
void loads(char *s, char *nul1, superTipo *tn);// { tn->tipo=tipoIntStr; strcpy(tn->sval,s); }
void mov(superTipo q1, superTipo *nul1, superTipo *qres); //qres=q1;
void uminus(superTipo q1, superTipo *nul1, superTipo *qres); // *qres = -q1
void add(superTipo q1, superTipo q2, superTipo *qres); // *qres = q1 + q2
void sub(superTipo q1, superTipo q2, superTipo *qres); // *qres = q1 - q2
void mult(superTipo q1, superTipo q2, superTipo *qres); // *qres = q1 * q2
void divi(superTipo q1, superTipo q2, superTipo *qres); // *qres = q1 / q2
void mod(superTipo q1, superTipo q2, superTipo *qres); // *qres = q1 % q2
void comp_eq(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 == q2)
void comp_ne(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 != q2)
void comp_gt(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 > q2)
void comp_lt(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 < q2)
void comp_ge(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 >= q2)
void comp_le(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 <= q2)
void rela_an(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 && q2)
void rela_or(superTipo q1, superTipo q2, superTipo *qres); // *qres = (q1 || q2)
void rela_no(superTipo q1, superTipo *nul1, superTipo *qres); // *qres = (!q1)
void param(superTipo q1, void *nul1, void *nul2); // push(q1)
void call(char *q1, int q2, superTipo *qres); // *qres = f_name(a[1], ..., a[q2]); where q1:f_name, q2:quantity of param
void push(superTipo g); // poe na pilha de execucao
superTipo *pop(void); // tira da pilha de execucao
/* ------------------------------------------------------------------------------------------------- */
/* auxiliar functions */
//---------------------------
void push(superTipo g) // poe na pilha de execucao geral //push to stack
{
gstack[gsi]=g; //copia por valor
gsi++;
if(gsi>=STACK_SIZE)
{
fprintf(stderr,"ASM Error: stack overflow.\n");
exit(1);
}
}
superTipo *pop(void) // tira da pilha de execucao geral //pop from stack
{
superTipo *r;
if(gsi<=0)
{
fprintf(stderr,"ASM Error: stack underflow.\n");
exit(1);
}
r=malloc(sizeof(superTipo));
*r=gstack[--gsi]; //copia por valor
return(r); //&gstack[--gsi]
}
/* jump operations */
//---------------------------
//see above
/* misc operations */
//---------------------------
void nop(superTipo *nul1, superTipo *nul2, superTipo *nul3) //nop : //do nothing
{
;
}
void halt(superTipo *nul1, superTipo *nul2, superTipo *nul3) // abort with exit(1)
{
exit(1);
}
/* memory operations */
//---------------------------
void loadi(int i, int *nul1, superTipo *qres)
{
qres->tipo=tipoInt;
qres->ival=i;
qres->fval=0.0;
qres->sval[0]='\0';
}
void loadf(float f, float *nul1, superTipo *qres)
{
qres->tipo=tipoFloat;
qres->ival=0;
qres->fval=f;
qres->sval[0]='\0';
}
void loads(char *s, char *nul1, superTipo *qres)
{
qres->tipo=tipoStr;
qres->ival=0;
qres->fval=0.0;
strcpy(qres->sval, s);
}
void mov(superTipo q1, superTipo *nul1, superTipo *qres)
{
qres->tipo=q1.tipo;
if(q1.tipo==tipoInt)
qres->ival=q1.ival;
else if(q1.tipo==tipoFloat)
qres->fval=q1.fval;
else if(q1.tipo==tipoStr)
strcpy(qres->sval, q1.sval);
else
{
fprintf(stderr,"ASM Error: invalid mov operation.\n");
exit(1);
}
}
/*mathematical operations */
//---------------------------
void uminus(superTipo q1, superTipo *nul1, superTipo *qres)
{
if(q1.tipo==tipoStr)
{
fprintf(stderr,"ASM Error: invalid uminus operation.\n");
exit(1);
}
qres->tipo=q1.tipo;
if(q1.tipo==tipoInt)
qres->ival=-q1.ival;
else
qres->fval=-q1.fval;
}
void add(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid add operation.\n");
exit(1);
}
if(q1.tipo == tipoStr) //se um eh, ambos sao
{
qres->tipo=tipoStr;
strcpy(qres->sval, q1.sval);
strcat(qres->sval, q2.sval);
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
if(q1.tipo == tipoFloat || q2.tipo == tipoFloat)
{
qres->fval=arg1 + arg2;
qres->tipo=tipoFloat;
}
else
{
qres->ival=(int)(arg1 + arg2);
qres->tipo=tipoInt;
}
}
void sub(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid sub operation.\n");
exit(1);
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
if(q1.tipo == tipoFloat || q2.tipo == tipoFloat)
{
qres->fval=arg1 - arg2;
qres->tipo=tipoFloat;
}
else
{
qres->ival=(int)(arg1 - arg2);
qres->tipo=tipoInt;
}
}
void mult(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid mult operation.\n");
exit(1);
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
if(q1.tipo == tipoFloat || q2.tipo == tipoFloat)
{
qres->fval=arg1 * arg2;
qres->tipo=tipoFloat;
}
else
{
qres->ival=(int)(arg1 * arg2);
qres->tipo=tipoInt;
}
}
void divi(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid divi operation.\n");
exit(1);
}
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
if(arg2==0.0)
{
fprintf(stderr,"ASM Error: division by zero.\n");
exit(1);
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q1.tipo == tipoFloat || q2.tipo == tipoFloat)
{
qres->fval=arg1 / arg2;
qres->tipo=tipoFloat;
}
else
{
qres->ival=(int)(arg1 / arg2);
qres->tipo=tipoInt;
}
}
void mod(superTipo q1, superTipo q2, superTipo *qres) // *qres = q1 % q2
{
int arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid mod operation.\n");
exit(1);
}
if(q2.tipo == tipoFloat)
arg2=(int)q2.fval;
else
arg2=q2.ival;
if(arg2==0)
{
fprintf(stderr,"ASM Error: mod division by zero.\n");
exit(1);
}
if(q1.tipo == tipoFloat)
arg1=(int)q1.fval;
else
arg1=q1.ival;
qres->tipo=tipoInt;
qres->ival=arg1 % arg2;
}
/* logical operations */
//---------------------------
void comp_eq(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_eq operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = !(strcmp(q1.sval, q2.sval));
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 == arg2);
}
void comp_ne(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_ne operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = !!(strcmp(q1.sval, q2.sval));
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 != arg2);
}
void comp_gt(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_gt operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = (strcmp(q1.sval, q2.sval)>0);
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 > arg2);
}
void comp_lt(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_lt operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = (strcmp(q1.sval, q2.sval)<0);
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 < arg2);
}
void comp_ge(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_ge operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = (strcmp(q1.sval, q2.sval)>=0);
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 >= arg2);
}
void comp_le(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if((q1.tipo == tipoStr || q2.tipo == tipoStr) && (q1.tipo != tipoStr || q2.tipo != tipoStr))
{
fprintf(stderr,"ASM Error: invalid comp_le operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoStr)
{
qres->ival = (strcmp(q1.sval, q2.sval)<=0);
return;
}
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 <= arg2);
}
/* relational operations */
//---------------------------
void rela_an(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid rela_an operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 && arg2);
}
void rela_or(superTipo q1, superTipo q2, superTipo *qres)
{
float arg1, arg2;
if(q1.tipo == tipoStr || q2.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid rela_or operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoFloat)
arg1=q1.fval;
else
arg1=(float)q1.ival;
if(q2.tipo == tipoFloat)
arg2=q2.fval;
else
arg2=(float)q2.ival;
qres->ival=(int)(arg1 || arg2);
}
void rela_no(superTipo q1, superTipo *nul1, superTipo *qres)
{
if(q1.tipo == tipoStr)
{
fprintf(stderr,"ASM Error: invalid rela_no operation.\n");
exit(1);
}
qres->tipo=tipoInt;
if(q1.tipo == tipoFloat)
qres->ival=(int)(!(q1.fval));
else
qres->ival=!(q1.ival);
}
/*stack and function operations */
//---------------------------
void param(superTipo q1, void *nul1, void *nul2)
{
push(q1);
}
void call(char *q1, int i, superTipo *qres)
{
int j=0, idx;
superTipo *g[MAX_PARAM];//maximo funcao com 4 argumentos f(a0, a1, a2, a3);
if(i>MAX_PARAM)
{
fprintf(stderr, "ASM Error: cant call function with more than %d (MAX_PARAM) parameters.\n", MAX_PARAM);
exit(1);
}
for(j=0; j<i && j<MAX_PARAM; j++)
g[j]=pop(); //pop all parameters
/* lista de funcoes */
for(idx=0; idx<MAX_TF; idx++)
if(strcmp(tf[idx].idNome, q1) == 0) //found!
break;
if(idx==MAX_TF)
{
fprintf(stderr, "ASM Error: function not in tf[] table (loop exausted).\n");
exit(1);
}
switch(idx)
{
case 0: //printf
if(g[0]->tipo==tipoStr)
(*tf[idx].vfunc)("%s\n", g[0]->sval); //printf("%s\n",sval);
else if(g[0]->tipo==tipoInt)
(*tf[idx].vfunc)("%d\n", g[0]->ival); //printf("%d\n",ival);
else /* tipoFloat */
(*tf[idx].vfunc)("%.2f\n", g[0]->fval); //printf("%.2f\n",fval);
break;
case 1: //scanf
(*tf[idx].vfunc)("%f", &qres->fval); //scanf("%f",&ts[1]);
qres->tipo=tipoFloat;
break;
case 2: //exit
(*tf[idx].vfunc)(g[0]->ival); //exit(ival)
break;
case 3: //sqrt
qres->fval=(*tf[idx].dfunc)(g[0]->fval); //sqrt(fval)
qres->tipo=tipoFloat;
break;
case 4: //exp
qres->fval=(*tf[idx].dfunc)(g[0]->fval); //sqrt(fval)
qres->tipo=tipoFloat;
break;
default:
fprintf(stderr, "ASM Error: function not in tf[] table. (default switch)\n");
exit(1);
}
}