-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslate.c
502 lines (466 loc) · 14.2 KB
/
translate.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
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
#include "tree.h"
#include "global.h"
#include <stdlib.h>
#include "translate.h"
int depth = 0; // livello di indentazione
FILE *fp;
/* Funzione per printare l'indentazione */
void print_tab(int d) {
// d = livello di indentazione
for(int i = 0; i < d; i++)
printf("\t");
}
/* Funzione per printare i nodi Ast */
void print_node(struct AstNode *n){
switch(n->nodetype){
case VAL_T:
if(n -> node.val -> val_type == STRING_T) {
printf("\"");
printf("%s", n -> node.val -> string_val);
printf("\"");
}else{
printf("%s", n -> node.val -> string_val);
}
break;
case VAR_T:
if(n -> node.var -> by_reference) {
printf("&");
}
printf("%s", n -> node.var-> name);
if(n -> node.var -> array_dim) {
printf("[");
print_node(n -> node.var -> array_dim);
printf("]");
}
break;
case DECL_T:
printf("%s ", convert_var_type(n -> node.decl -> type));
print_list(n -> node.decl -> var);
break;
case EXPR_T:
if(n -> node.expr -> expr_type == PAR_T) {
printf("(");
print_node(n -> node.expr -> r);
printf(")");
} else {
if(n -> node.expr -> l)
print_node(n -> node.expr -> l);
printf("%s", convert_expr_type(n -> node.expr -> expr_type));
print_node(n -> node.expr -> r);
}
break;
case RETURN_T:
printf("return ");
if(n -> node.ret -> expr) {
print_node(n -> node.ret -> expr);
}
break;
case FCALL_T:
printf("%s(", n -> node.fcall -> name);
if(n -> node.fcall -> args) {
print_list(n-> node.fcall -> args);
}
printf(")");
break;
case FDEF_T:
printf("%s ", convert_var_type(n -> node.fdef -> ret_type));
printf("%s(", n -> node.fdef -> name );
if (n -> node.fdef -> params){
print_list(n -> node.fdef -> params);
}
printf(") {\n");
print_ast( n -> node.fdef -> code);
depth--;
print_tab(depth);
printf("}\n\n");
break;
case FOR_T:
printf("for(");
if(n -> node.forn -> init)
print_node(n -> node.forn -> init);
printf("; ");
if(n -> node.forn -> cond)
print_node(n -> node.forn -> cond);
printf("; ");
if(n -> node.forn -> update)
print_node(n -> node.forn -> update);
printf(") {\n");
print_ast(n -> node.forn -> stmt);
depth--;
print_tab(depth);
printf("}\n");
break;
case IF_T:
printf("if(");
print_node(n -> node.ifn -> cond);
printf(") {\n");
print_ast(n -> node.ifn -> body);
depth--;
print_tab(depth);
printf("}");
if(n -> node.ifn -> else_body) {
printf("else{\n");
depth++;
print_ast(n -> node.ifn -> else_body);
depth--;
print_tab(depth);
printf("}\n");
}else{
printf("\n");
}
break;
case ERROR_NODE_T:
printf("error node");
}
}
/* Funzione per convertire il tipo di espressione */
char * convert_expr_type(int t){
switch(t){
case ADD_T:
return "+";
case SUB_T:
case NEG_T:
return "-";
case DIV_T:
return "/";
case MUL_T:
return "*";
case NOT_T:
return "!";
case AND_T:
return "&&";
case OR_T:
return "||";
case G_T:
return ">";
case GE_T:
return ">=";
case L_T:
return "<";
case LE_T:
return "<=";
case EQ_T:
return "==";
case NE_T:
return "!=";
case ASS_T:
return "=";
}
}
/* Funzione per convertire il tipo di dato */
char * convert_var_type (int t){
switch(t) {
case INT_T:
return "int";
case FLOAT_T:
return "float";
case DOUBLE_T:
return "double";
case STRING_T:
return "string";
case VOID_T:
return "void";
case BOOL_T:
return "bool";
default:
return "unrecognized type";
}
}
/* Funzione per convertire il tipo di nodo */
// usata per debug
char * convert_node_type(int t) {
switch(t) {
case EXPR_T:
return "expr node";
case IF_T:
return "if node";
case VAL_T:
return "val node";
case VAR_T:
return "var node";
case DECL_T:
return "decl node";
case RETURN_T:
return "ret node";
case FCALL_T:
return "func call node";
case FDEF_T:
return "func def node";
case FOR_T:
return "for node";
}
}
/* Funzione per printare l'Ast */
void print_ast(struct AstNode *n) {
while(n){
print_tab(depth);
if(n -> nodetype == FDEF_T || n -> nodetype == FOR_T || n -> nodetype == IF_T) {
depth++;
}
print_node(n);
if(n -> nodetype != FDEF_T && n -> nodetype != FOR_T && n -> nodetype != IF_T){
printf(";\n");
}
n = n->next;
}
}
/* Funzione per printare liste di nodi */
void print_list(struct AstNode *l) {
while(l){
print_node(l);
l = l->next;
if(l){
printf(", ");
}
}
}
/* Funzione per printare le dichiarazioni multiple come singole dichiarazioni */
void print_decl(struct AstNode *l, char * type){
/* splitta le dichiarazioni multiple , in quanto in golang non possiamo averle con assegnazione se non sono tutte con
assegnazione, es int a, b=0, c; */
while(l){
print_tab(depth);
printf("%s ", type);
print_node(l);
l = l -> next;
if(l){
printf(" ; \n");
}
}
}
/* Funzione principale per la traduzione */
void translate(struct AstNode * n){
fp = fopen("traduzione.go", "w");
if(!fp) {
fprintf(stderr, RED "error:" RESET " %s: ", filename);
perror("");
exit(1);
}
// flag per printare il package
if(main_flag)
fprintf(fp, "package main \n\n");
else
fprintf(fp, "package test \n\n");
// flag per printare l'import della libreria fmt
if(fmt_flag)
fprintf(fp, "import \"fmt\" \n\n");
translate_ast(n);
fclose(fp);
}
/* Funzione per tradurre l'Ast */
void translate_ast(struct AstNode *n){
while(n){
if(n -> nodetype != DECL_T){
translate_tab(depth);
}
if(n -> nodetype == FDEF_T || n -> nodetype == FOR_T || n -> nodetype == IF_T) {
depth++;
}
translate_node(n);
if(n -> nodetype != DECL_T && n -> nodetype != FDEF_T && n -> nodetype != FOR_T && n -> nodetype != IF_T){
fprintf(fp, "\n");
}
n = n->next;
}
}
/* Funzione per tradurre i singoli nodi dell'Ast */
void translate_node(struct AstNode *n){
switch(n -> nodetype){
case VAL_T:
if(n -> node.val -> val_type == STRING_T) {
fprintf(fp, "\"");
fprintf(fp, "%s", n -> node.val -> string_val);
fprintf(fp, "\"");
}else{
fprintf(fp, "%s", n -> node.val -> string_val);
}
break;
case VAR_T:
if(n -> node.var -> by_reference) {
fprintf(fp, "&");
}
fprintf(fp,"%s", n -> node.var-> name);
if(n -> node.var -> array_dim) {
fprintf(fp, "[");
translate_node(n -> node.var -> array_dim);
fprintf(fp, "]");
}
break;
case DECL_T:
translate_decl(n -> node.decl -> var, convert_golang_type(n -> node.decl -> type));
break;
case EXPR_T:
if(n -> node.expr -> expr_type == PAR_T) {
fprintf(fp,"(");
translate_node(n -> node.expr -> r);
fprintf(fp, ")");
} else {
if(n -> node.expr -> l)
translate_node(n -> node.expr -> l);
fprintf(fp, "%s", convert_expr_type(n -> node.expr -> expr_type));
translate_node(n -> node.expr -> r);
}
break;
case RETURN_T:
if(n -> node.ret -> expr) {
fprintf(fp,"return ");
translate_node(n -> node.ret -> expr);
}
break;
case FCALL_T:
fprintf(fp,"%s(", convert_func_name(n -> node.fcall -> name));
if(n -> node.fcall -> args) {
translate_list(n-> node.fcall -> args);
}
fprintf(fp, ")");
break;
case FDEF_T:
fprintf(fp,"func ");
fprintf(fp,"%s(", n -> node.fdef -> name );
if (n -> node.fdef -> params){
translate_param_list(n -> node.fdef -> params);
}
fprintf(fp, ") ");
fprintf(fp, "%s ", convert_golang_type(n -> node.fdef -> ret_type));
fprintf(fp," {\n");
translate_ast( n -> node.fdef -> code);
depth--;
translate_tab(depth);
fprintf(fp,"}\n\n");
break;
case FOR_T:
fprintf(fp,"for ");
if(n -> node.forn -> init)
translate_init(n -> node.forn -> init);
fprintf(fp,"; ");
if(n -> node.forn -> cond)
translate_node(n -> node.forn -> cond);
fprintf(fp,"; ");
if(n -> node.forn -> update)
translate_node(n -> node.forn -> update);
fprintf(fp, " {\n");
translate_ast(n -> node.forn -> stmt);
depth--;
translate_tab(depth);
fprintf(fp, "}\n");
break;
case IF_T:
fprintf(fp, "if ");
translate_node(n -> node.ifn -> cond);
fprintf(fp," {\n");
translate_ast(n -> node.ifn -> body);
depth--;
translate_tab(depth);
fprintf(fp,"}");
if(n -> node.ifn -> else_body) {
fprintf(fp,"else{\n");
depth++;
translate_ast(n -> node.ifn -> else_body);
depth--;
translate_tab(depth);
fprintf(fp,"}\n");
}else{
fprintf(fp,"\n");
}
break;
}
}
/* Funzione per tradurre liste di nodi */
void translate_list(struct AstNode *l) {
while(l){
translate_node(l);
l = l->next;
if(l){
fprintf(fp,", ");
}
}
}
/* Funzione per tradurre liste di parametri */
void translate_param_list(struct AstNode *l){
while(l){
translate_param_decl(l);
l = l->next;
if(l){
fprintf(fp,", ");
}
}
}
/* Funzione per tradurre dichiarazioni di parametri */
void translate_param_decl(struct AstNode *p){
// in golang abbiamo un ordine differente per le dichiarazioni di parametri
// esempio: func f(a int, b[] int)
fprintf(fp,"%s", p -> node.decl -> var -> node.var-> name);
if(p -> node.decl -> var -> node.var -> array_dim)
fprintf(fp,"[]");
fprintf(fp," %s", convert_golang_type(p -> node.decl -> type));
}
/* Funzione per tradurre l'init del for */
void translate_init(struct AstNode *i){
// in golang è possibile la dichiarazione nell'init solo con la sintassi
// for(i := 0; ...; ...)
if(i -> nodetype == DECL_T && i -> node.decl -> var -> nodetype == EXPR_T){
translate_node(i -> node.decl -> var -> node.expr -> l);
fprintf(fp," := ");
translate_node(i -> node.decl -> var -> node.expr -> r);
}else{
translate_node(i);
}
}
/* Funzione per tradurre i nodi dichiarazione */
void translate_decl(struct AstNode *n, char *type){
// divide le dichiarazioni multiple in più dichiarazioni singole
while(n){
translate_tab(depth);
fprintf(fp,"var ");
if(n -> nodetype == VAR_T){
fprintf(fp,"%s", n -> node.var-> name);
if(n -> node.var -> array_dim){
fprintf(fp," = make([]%s, ", type);
translate_node(n-> node.var ->array_dim);
fprintf(fp, ",");
translate_node(n-> node.var ->array_dim);
fprintf(fp, ")");
} else {
fprintf(fp, " %s", type);
}
}else if(n -> nodetype == EXPR_T){
translate_node(n -> node.expr -> l);
fprintf(fp, " %s %s ", type, convert_expr_type(n -> node.expr -> expr_type));
translate_node(n -> node.expr -> r);
}
fprintf(fp, "\n");
n = n -> next;
}
}
/* Funzione per inserire l'indentazione nella traduzione */
void translate_tab(int d) {
for(int i = 0; i < d; i++)
fprintf(fp, "\t");
}
/* Funzione per convertire gli identificatori delle funzioni per I/O */
char * convert_func_name(char *name){
if (!strcmp("printf", name))
return "fmt.Printf";
if (!strcmp("scanf", name))
return "fmt.Scanf";
return name;
}
/* Funzione per convertire i tipi di dato nei tipi accettati da golang */
char * convert_golang_type (int t){
switch(t) {
case INT_T:
return "int";
case FLOAT_T:
return "float32";
case DOUBLE_T:
return "float64";
case STRING_T:
return "string";
case VOID_T:
return "";
case BOOL_T:
return "bool";
default:
return "unrecognized type";
}
}