-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
646 lines (606 loc) · 17.2 KB
/
main.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
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
/*
* Trabalho Desenvolvida pela Disciplica de Compiladores do Bacharelado em Ciencia da Computacao - UNESP Bauru
* Autor: Joao Vitor Mariano Correia
* RA: 191024929
*
* Sistema Operacional: Ubuntu 20.04.2 LTS 64Bits
* Compilador: gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "T2.h"
// *****************************************************************************************************************
// *
// * Analisador Lexico
// *
// *****************************************************************************************************************
void ERRO(int linha) {
printf("[ERRO] Ocorreu um erro na linha %d. Aperte qualquer tecla para matar o processo", linha);
fflush(stdin);
getchar();
exit(0);
}
void CODIGO(char lexema[], FILE *output) {
if (!strcmp(lexema, "absolute")) {
fprintf(output," 1");
}
else if (!strcmp(lexema, "and")) {
fprintf(output," 2");
}
else if (!strcmp(lexema, "array")) {
fprintf(output," 3");
}
else if (!strcmp(lexema, "begin")) {
fprintf(output," 4");
}
else if (!strcmp(lexema, "case")) {
fprintf(output," 5");
}
else if (!strcmp(lexema, "const")) {
fprintf(output," 6");
}
else if (!strcmp(lexema, "div")) {
fprintf(output," 7");
}
else if (!strcmp(lexema, "do")) {
fprintf(output," 8");
}
else if (!strcmp(lexema, "downto")) {
fprintf(output," 9");
}
else if (!strcmp(lexema, "else")) {
fprintf(output," 10");
}
else if (!strcmp(lexema, "end")) {
fprintf(output," 11");
}
else if (!strcmp(lexema, "external")) {
fprintf(output," 12");
}
else if (!strcmp(lexema, "file")) {
fprintf(output," 13");
}
else if (!strcmp(lexema, "for")) {
fprintf(output," 14");
}
else if (!strcmp(lexema, "forward")) {
fprintf(output," 15");
}
else if (!strcmp(lexema, "function")) {
fprintf(output," 16");
}
else if (!strcmp(lexema, "goto")) {
fprintf(output," 17");
}
else if (!strcmp(lexema, "if")) {
fprintf(output," 18");
}
else if (!strcmp(lexema, "implementation")) {
fprintf(output," 19");
}
else if (!strcmp(lexema, "in")) {
fprintf(output," 20");
}
else if (!strcmp(lexema, "inline")) {
fprintf(output," 21");
}
else if (!strcmp(lexema, "interface")) {
fprintf(output," 22");
}
else if (!strcmp(lexema, "interrupt")) {
fprintf(output," 23");
}
else if (!strcmp(lexema, "label")) {
fprintf(output," 24");
}
else if (!strcmp(lexema, "mod")) {
fprintf(output," 25");
}
else if (!strcmp(lexema, "nil")) {
fprintf(output," 26");
}
else if (!strcmp(lexema, "not")) {
fprintf(output," 27");
}
else if (!strcmp(lexema, "of")) {
fprintf(output," 28");
}
else if (!strcmp(lexema, "or")) {
fprintf(output," 29");
}
else if (!strcmp(lexema, "packed")) {
fprintf(output," 30");
}
else if (!strcmp(lexema, "procedure")) {
fprintf(output," 31");
}
else if (!strcmp(lexema, "program")) {
fprintf(output," 32");
}
else if (!strcmp(lexema, "record")) {
fprintf(output," 33");
}
else if (!strcmp(lexema, "repeat")) {
fprintf(output," 34");
}
else if (!strcmp(lexema, "set")) {
fprintf(output," 35");
}
else if (!strcmp(lexema, "shl")) {
fprintf(output," 36");
}
else if (!strcmp(lexema, "shr")) {
fprintf(output," 37");
}
else if (!strcmp(lexema, "string")) {
fprintf(output," 38");
}
else if (!strcmp(lexema, "then")) {
fprintf(output," 39");
}
else if (!strcmp(lexema, "to")) {
fprintf(output," 40");
}
else if (!strcmp(lexema, "type")) {
fprintf(output," 41");
}
else if (!strcmp(lexema, "unit")) {
fprintf(output," 42");
}
else if (!strcmp(lexema, "until")) {
fprintf(output," 43");
}
else if (!strcmp(lexema, "uses")) {
fprintf(output," 44");
}
else if (!strcmp(lexema, "var")) {
fprintf(output," 45");
}
else if (!strcmp(lexema, "while")) {
fprintf(output," 46");
}
else if (!strcmp(lexema, "with")) {
fprintf(output," 47");
}
else if (!strcmp(lexema, "xor")) {
fprintf(output," 48");
}
else if (!strcmp(lexema, ".")) {
fprintf(output," 49");
}
else if (!strcmp(lexema, ";")) {
fprintf(output," 50");
}
else if (!strcmp(lexema, ",")) {
fprintf(output," 51");
}
else if (!strcmp(lexema, "(")) {
fprintf(output," 52");
}
else if (!strcmp(lexema, ")")) {
fprintf(output," 53");
}
else if (!strcmp(lexema, ":")) {
fprintf(output," 54");
}
else if (!strcmp(lexema, "=")) {
fprintf(output," 55");
}
else if (!strcmp(lexema, "<")) {
fprintf(output," 56");
}
else if (!strcmp(lexema, ">")) {
fprintf(output," 57");
}
else if (!strcmp(lexema, "+")) {
fprintf(output," 58");
}
else if (!strcmp(lexema, "-")) {
fprintf(output," 59");
}
else if (!strcmp(lexema, "*")) {
fprintf(output," 60");
}
else if (!strcmp(lexema, ":=")) {
fprintf(output," 61");
}
else if (!strcmp(lexema, "(*")) {
fprintf(output," 62");
}
else if (!strcmp(lexema, "*)")) {
fprintf(output," 63");
}
else if (!strcmp(lexema, "integer")) {
fprintf(output," 64");
}
else if (!strcmp(lexema, "real")) {
fprintf(output," 65");
}
else if (!strcmp(lexema, "char")) {
fprintf(output," 66");
}
else if (!strcmp(lexema, "string")) {
fprintf(output," 67");
}
else if (!strcmp(lexema, "boolean")) {
fprintf(output," 68");
}
else if (!strcmp(lexema, "read")) {
fprintf(output," 69");
}
else if (!strcmp(lexema, "write")) {
fprintf(output," 70");
}
// Numerico
else if (lexema[0] >= 48 && lexema[0] <= 57) {
fprintf(output, " 71");
}
//Identificador
else if ((lexema[0] >= 65 && lexema[0] <= 90) || (lexema[0] >= 97 && lexema[0] <= 122)) {
fprintf(output, " 72");
}
return;
}
void PROXIMO(FILE *input, FILE *output, char lexema[], int linha) {
char ch, aux[MAX];
memset(aux, 0, sizeof(aux));
ch = fgetc(input);
// Verifica o fim do arquivo
if (ch == EOF) {
return;
}
// Verifica se o caractere eh um simbolo especial
else if (ch == ' ' || ch == '\n' || (ch >= 40 && ch <= 45) || (ch >= 58 && ch <= 62)) {
if (ch == 61) {
if (!strcmp(lexema, ":")) {
fprintf(output, " 61");
memset(lexema, 0, sizeof(lexema));
PROXIMO(input, output, lexema, linha);
ch = NULL;
}
}
CODIGO(lexema, output);
memset(lexema, 0, sizeof(lexema));
aux[0] = ch;
strcat(lexema, aux);
if (ch == 58)
PROXIMO(input, output,lexema, linha);
CODIGO(lexema, output);
memset(lexema, 0, sizeof(lexema));
if (ch == '\n') {
linha++;
fprintf(output, "\n");
}
}
// Verifica se o caractere eh uma letra
else if ((ch >= 65 && ch <= 90) || (ch >= 97 && ch <= 122)) {
if (lexema[0] >= 48 && lexema[0] <= 57) {
ERRO(linha);
}
else {
aux[0] = ch;
strcat(lexema, aux);
}
}
// Verifica se o caractere eh um numero
else if (ch >= 48 && ch <= 57) {
aux[0] = ch;
strcat(lexema, aux);
}
else if ((ch >= 33 && ch <= 39) || ch == 63 || ch == 64 || (ch >= 91 && ch <= 96) || (ch >= 123 && ch <= 127)) {
ERRO(linha);
}
PROXIMO(input, output, lexema, linha);
return;
}
// *****************************************************************************************************************
// *
// * Analisador Sintatico
// *
// *****************************************************************************************************************
void ERRO_SINTATICO(char tipo[MAX], int linha) {
printf("[ERRO] Ocorreu um erro na linha %d. %s\n", linha, tipo);
exit(0);
}
void PROX_TOKEN(FILE *input, char token[], int linha) {
char ch, aux[50];
memset(aux, 0, sizeof(aux));
memset(token, 0, sizeof(token));
ch = fgetc(input);
while (ch == '\n' || ch == ' ') {
ch = fgetc(input);
if (ch == '\n')
linha++;
}
while (ch != ' ' && ch != '\n' && ch != EOF) {
aux[0] = ch;
strcat(token, aux);
ch = fgetc(input);
if (ch == '\n')
linha++;
}
printf("%c", ch);
return;
}
void PROGRAM(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "32")) {
PROX_TOKEN(input, token, linha);
if (IDENTIFICADOR(token))
BLOCO(input, token, linha);
else
ERRO_SINTATICO("Esperado um identificador ", linha);
}
else
ERRO_SINTATICO("Esperado o comando PROGRAM", linha);
}
void BLOCO(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
VARIAVEIS2(input, token, linha);
DECLARACAO_SUBROTINAS(input, token, linha);
COMANDO_COMPOSTO(input, token, linha);
return;
}
void VARIAVEIS(FILE *input, char token[], int linha) {
LISTA_IDENTIFICADORES(input, token, linha);
if (!strcmp(token, "54")) {
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "64") || !strcmp(token, "68"))
return;
else
ERRO_SINTATICO("Variavel declarada incorretamente", linha);
}
else
ERRO_SINTATICO("Tipo da variavel incorreto ", linha);
return;
}
void VARIAVEIS2(FILE *input, char token[], int linha) {
if (!strcmp(token, "45")) {
VARIAVEIS(input, token, linha);
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "50")) {
PROX_TOKEN(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado um ponto e virgula", linha);
}
return;
}
void LISTA_IDENTIFICADORES(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
if (IDENTIFICADOR(token)) {
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "51"))
LISTA_IDENTIFICADORES(input, token, linha);
else
return;
}
else
ERRO_SINTATICO("Esperado um identificador", linha);
}
void DECLARACAO_SUBROTINAS(FILE *input, char token[], int linha) {
if (!strcmp(token, "31")) {
PROCEDURE(input, token, linha);
return;
}
return;
}
void PROCEDURE(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
if (IDENTIFICADOR(token)) {
PARAM_FORMAIS(input, token, linha);
}
else
ERRO_SINTATICO("Esperado um identificador", linha);
BLOCO(input, token, linha);
}
void PARAM_FORMAIS(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "50"))
return;
//secaoParametros();
}
void COMANDO_SEM_ROTULO(FILE *input, char token[], int linha) {
if (!strcmp(token, "72") || !strcmp(token, "69" ) || !strcmp(token, "70")) {
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "61"))
ATRIBUICAO(input, token, linha);
else
CHAMA_PROCEDURE(input, token, linha);
return;
}
else if (!strcmp(token, "4"))
COMANDO_COMPOSTO(input, token, linha);
else if (!strcmp(token, "18"))
CONDICIONAL(input, token, linha);
else if (!strcmp(token, "46"))
COMANDO_REPETITIVO(input, token, linha);
}
void COMANDO(FILE *input, char token[], int linha) {
if (!strcmp(token, "71"))
PROX_TOKEN(input, token, linha);
COMANDO_SEM_ROTULO(input, token, linha);
return;
}
void COMANDO_COMPOSTO(FILE *input, char token[], int linha) {
if (!strcmp(token, "4")) {
PROX_TOKEN(input, token, linha);
while (strcmp(token, "11")) {
COMANDO(input, token, linha);
}
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "50") || !strcmp(token, "49")) {
PROX_TOKEN(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado um ponto e virgula", linha);
}
else
ERRO_SINTATICO("Esperado o comando BEGIN", linha);
return;
}
void COMANDO_REPETITIVO(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
EXPRESSAO(input, token, linha);
if (!strcmp(token, "8")) {
PROX_TOKEN(input, token, linha);
COMANDO_SEM_ROTULO(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado o comando DO", linha);
return;
}
void CONDICIONAL(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
EXPRESSAO(input, token, linha);
if (!strcmp(token, "39")) {
PROX_TOKEN(input, token, linha);
COMANDO_SEM_ROTULO(input, token, linha);
PROX_TOKEN(input, token, linha);
if (!strcmp(token, "10")) {
PROX_TOKEN(input, token, linha);
COMANDO_SEM_ROTULO(input, token, linha);
if (!strcmp(token, "50")) {
PROX_TOKEN(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado um ponto e virgula", linha);
}
else
return;
}
else
ERRO_SINTATICO("Esperado o comando THEN", linha);
}
void FATOR(FILE *input, char token[], int linha) {
if (IDENTIFICADOR(token)) {
PROX_TOKEN(input, token, linha);
return;
}
else if (NUMERICO(token)) {
PROX_TOKEN(input, token, linha);
return;
}
return;
}
void TERMO(FILE *input, char token[], int linha) {
FATOR(input, token, linha);
if (!strcmp(token, "60") || !strcmp(token, "7")) {
PROX_TOKEN(input, token, linha);
FATOR(input, token, linha);
}
return;
}
void EXPRESSAO_SIMPLES(FILE *input, char token[], int linha) {
if (!strcmp(token, "58") || !strcmp(token, "59"))
PROX_TOKEN(input, token, linha);
TERMO(input, token, linha);
if (!strcmp(token, "58") || !strcmp(token, "59") || !strcmp(token, "60") || !strcmp(token, "7") || !strcmp(token, "55")) {
PROX_TOKEN(input, token, linha);
TERMO(input, token, linha);
}
return;
}
int RELACAO(char token[]) {
if (!strcmp(token, "55") || !strcmp(token, "56") || !strcmp(token, "57"))
return 1;
else
return 0;
}
void EXPRESSAO(FILE *input, char token[], int linha) {
EXPRESSAO_SIMPLES(input, token, linha);
if (RELACAO(token)) {
PROX_TOKEN(input, token, linha);
EXPRESSAO_SIMPLES(input, token, linha);
}
return;
}
void ATRIBUICAO(FILE *input, char token[], int linha) {
PROX_TOKEN(input, token, linha);
EXPRESSAO(input, token, linha);
if (!strcmp(token, "50")) {
PROX_TOKEN(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado um ponto e virgula", linha);
return;
}
void LISTA_EXPRESSOES(FILE *input, char token[], int linha) {
EXPRESSAO(input, token, linha);
if (!strcmp(token, "51")) {
PROX_TOKEN(input, token, linha);
LISTA_EXPRESSOES(input, token, linha);
}
else if (!strcmp(token, "50")) {
PROX_TOKEN(input, token, linha);
return;
}
else
ERRO_SINTATICO("Esperado um ponto e virgula", linha);
return;
}
void CHAMA_PROCEDURE(FILE *input, char token[], int linha) {
LISTA_EXPRESSOES(input, token, linha);
return;
}
int NUMERICO(char token[]) {
if (!strcmp(token, "71"))
return 1;
else
return 0;
}
int IDENTIFICADOR(char token[]) {
if (!strcmp(token, "72"))
return 1;
else
return 0;
}
// *****************************************************************************************************************
// *
// * Programa Principal
// *
// *****************************************************************************************************************
int main() {
FILE *input, *output;
char lexema[MAX], token[MAX];
int linha = 1;
memset(lexema, 0, sizeof(lexema));
input = fopen("Exemplo1_Trab2_Compiladores.txt", "r");
output = fopen("output.txt","w");
if (input == NULL) {
printf("Erro ao ler o arquivo\n");
printf("\n\nAperte qualquer tecla para encerrar.");
fflush(stdin);
getchar();
return 0;
}
else {
PROXIMO(input, output, lexema, linha);
}
fclose(input);
fclose(output);
// Inicio do Analisador Sintatico
input = fopen("output.txt", "r");
linha = 1;
if (input == NULL) {
printf("Erro ao ler o arquivo\n");
printf("\n\nAperte qualquer tecla para encerrar.");
fflush(stdin);
getchar();
return 0;
}
else {
PROGRAM(input, token, linha);
}
fclose(input);
printf("\n\n[OK] Aperte qualquer tecla para encerrar.");
fflush(stdin);
getchar();
return 0;
}