-
Notifications
You must be signed in to change notification settings - Fork 0
/
whatafac.y
414 lines (340 loc) · 7.44 KB
/
whatafac.y
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
%{
#include "functionsSyntatic.c"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
%}
%{
extern int step;
extern FILE * yyin;
%}
%union{
int num;
float numero;
char *letra;
double flutuante;
int declaration;
char *variable;
char *variableType;
char *bigsmall;
}
/*Especify tolkens types*/
%type <flutuante> NUMBER
%type <declaration> VARIABLE_ID
%type <letra> STRING_QUATATION
%type <letra> STRING
%type <variableType> INTNINE
%type <bigsmall> BIGSMALL
%type <variable> CONDITIONAL
/*Tolkens*/
%token VARIABLE_ID
%token VALUE
%token INTEGER_POINT
%token ATRIBUTTE_ID
%token INTNINE
%token POINT
%token NUMBER
%token PLUS
%token MINUS
%token TIMES
%token DIVIDE
%token POWER
%token EQUALS
%token LEFT_PARENTHESIS
%token RIGHT_PARENTHESIS
%token END
%token PRINT
%token WORD
%token RETURN_0
%token MAIN
%token INCLUDE_STDIO
%token WORKINGSTORAGE
%token DATADIVISION
%token COMPUTE
%token END_COMPUTE
%token DEFAULT
%token CASE_SWITCH
%token SWITCH
%token END_SWITCH
%token AND_TOKEN
%token CONDITIONAL
%token OR_TOKEN
%token STRING_QUATATION
%token WHITE
%token IF_TOKEN
%token ELSE_TOKEN
%token END_IF
%token STRING
%token WHILE
%token END_WHILE
%token DONOTHING
%token BIGSMALL
%token PROGRAMNAME
%token PIC PROCEDURE
%token STOP
%token ACCEPT
/*Especify Math Operator's Precedence Order*/
%left PLUS MINUS
%left TIMES DIVIDE
%left NEG
%right POWER
%start Input
%%
Input:
/* Empty */
| Input Line
;
Line:
END
/*Identification and Variables Division*/
| INCLUDE_STDIO {
if (step == 2) {
printf("\n#include <stdio.h>\n#include <stdlib.h>\n#include <math.h>\n\n");
printStruct();
}
}
| PROGRAMNAME STRING {/* DO NOTHING HERE */}
| DATADIVISION Working
| PROCEDURE {/* DO NOTHING IN HERE*/}
| POINT {/* NOTHING TO DO HERE */ }
/*Procedure Divistion*/
| MAIN {
if(step == 2)
printf("\nint main() {\n");
} Print_variables;
/*Inputs and Outputs*/
| ACCEPT {
if (step == 2)
printf("\tscanf(\"" );
} DecideVariableType
| PRINT String_quatation
/*Conditionals and Sequencials Algorithms*/
| IF_TOKEN Conditional_if
| WHILE While
| STOP {/* DO NOTHING HERE */}
| COMPUTE {
if (step == 2)
printf("\t");
}Compute_variable END_COMPUTE {
if (step == 2)
printf(";\n");
}
| SWITCH Switch_value Switch_function
| CASE_SWITCH STRING {
if (step == 2)
printf("\tcase %s:\n", $<letra>2);
}
Case_function {
if (step == 2)
printf("}\n");
}
/*Comenties*/
| TIMES {
if (step == 2)
printf("\t//");
} Line
/*End Procedure Division*/
| RETURN_0 {
if (step == 1)
{
step = 2;
FILE *fp = fopen("in.cbl", "r+");
yyin = fp;
yyrestart(fp);
yyparse();
}
if (step == 2)
{
printf("\treturn 0;\n}\n");
exit(0);
}
}
;
/*For Initial codes*/
Working:
END WORKINGSTORAGE Variable
| END
;
/*identifies variable types*/
Variable:
ATRIBUTTE_ID STRING PIC DONOTHING {saveNameVariables($<letra>2); } Value END TakeContentOfStruct
| VARIABLE_ID STRING PIC DONOTHING {saveNameVariables($<letra>2);} Value END Variable
| VARIABLE_ID STRING POINT{
saveTypeVariables("struct ");
saveNameVariables($<letra>2);
printOpenBrackets();
} END Variable
| /* DO NOTHING IN HERE */
;
DecideVariableType:
STRING {
if (step == 2)
defineDataType($<letra>1 );
}
Print_variables:
{
if (step == 2)
print_variables();
}
;
/*Variables' value*/
Value:
VALUE NUMBER POINT {saveFloatDataVariables ($<flutuante>2);}
| POINT {printPointComma();}
| VALUE INTEGER_POINT {saveIntDataVariables ($<flutuante>2);}
;
/*Catch struct's content*/
TakeContentOfStruct:
ATRIBUTTE_ID STRING PIC DONOTHING {saveNameVariables($<letra>2); } Value END TakeContentOfStruct Variable
| END {printCloseBrackets(); printPointComma();} Variable
| {printCloseBrackets(); printPointComma();} Variable
;
/*Save a string with quatation marks. Important to print string values*/
String_quatation:
STRING_QUATATION {
if (step == 2) {
printf("\tprintf(" );
printf("%s", $<letra>1);
printf(");\n");
}
}
| END
;
/*Defines conditional expressions */
Conditional_if:
CONDITIONAL {
if(step == 2)
printf("\tif (%s " , $<variable>1);
} Conditional_if DecideIf
| AND_TOKEN {
if (step == 2)
printf("&&");
} CONDITIONAL {
if(step == 2)
printf(" %s " , $<variable>3);
} Conditional_if
| OR_TOKEN {
if(step == 2)
printf("||");
} CONDITIONAL {
if (step == 2)
printf(" %s " , $<variable>3);
} Conditional_if
| END {
if (step == 2)
printf(") {\n");
}
;
/*Define if-else hierarchy*/
DecideIf:
END DecideIf
| END_IF {
if (step == 2)
printf("\t}\n");
}
| ELSE_TOKEN {
if (step == 2)
printf("\t}else{\n");
} DecideIf
| Line DecideIf
| END_WHILE {
if (step == 2)
printf("\t}\n");
}
| Line
;
/*Writes expressions inside while*/
While:
CONDITIONAL {
if (step == 2)
printf("\twhile (%s " , $<variable>1);
} Conditional_if DecideIf
| AND_TOKEN {
if (step == 2)
printf("&&");
} CONDITIONAL {
if (step == 2)
printf(" %s " , $<variable>3);
} Conditional_if
| OR_TOKEN {
if (step == 2)
printf("||");
} CONDITIONAL {
if (step == 2)
printf(" %s " , $<variable>3);
} Conditional_if
| END {
if (step == 2)
printf(") {\n");
}
;
/*Compute Comands*/
Compute_variable:
END Compute_variable
| STRING EQUALS Compute_sequence {
if (step == 2){
char* this = getTillLineBreak($<letra>1);
printf("%s", this);
}
}
;
/*Hierarchy of calculation commands*/
Compute_sequence:
END
| STRING Compute_sequence
| NUMBER Compute_sequence
| Signs Compute_sequence
| LEFT_PARENTHESIS Compute_sequence
| RIGHT_PARENTHESIS Compute_sequence
;
Signs:
PLUS
| MINUS
| TIMES
| DIVIDE
;
/*Switch Commands*/
Switch_function:
END Switch_function
| Line Switch_function
| END_SWITCH END {
if (step == 2)
printf("}\n");
}
;
Case_function:
END CASE_SWITCH STRING {
if (step == 2)
printf("\tbreak;\n\tcase %s:\n", $<letra>3);
} Case_function
| Line Case_function
| DEFAULT {
if (step == 2)
printf("\tbreak;\n\tdefault:\n");
} Default {
if (step == 2)
printf("\t");
}
| END_SWITCH END
;
Default:
END Default
| Line Default
| END_SWITCH END
;
Switch_value:
STRING {
if (step == 2)
printf("\tswitch (%s) {\n", $<letra>1);
}
;
%%
int yyerror(char *s) {
printf("%s\n",s);
}
int main(void) {
FILE *fp = fopen("in.txt", "r+");
yyin = fp;
yyparse();
}