-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsintatico.y
165 lines (128 loc) · 4.25 KB
/
sintatico.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
/* Desenvolvido por: William Rodrigues @ UEM 2020. */
%{
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "arvore.h"
#include "semantico.h"
#include "backend.h"
extern FILE* yyin;
FILE* arq_saida;
int yylex();
void yyerror(char *);
struct arvore_sintatica* fim_lista_arvore = NULL;
int linha = 1;
int coluna = 1;
%}
%union {
struct no *no;
int value_int;
float value_float;
char* string;
}
%token ADD SUB MUL DIV POW END_LINE OPEN CLOSE ATR PRINT
%token <string> ID
%token <value_int> NUM_INT
%token <value_float> NUM_FLOAT
%type <no> exp
%start inicio
%left ADD SUB
%left MUL DIV
%left POW
%%
/* GRAMATICA */
inicio: item | inicio item
item
: PRINT exp END_LINE { fim_lista_arvore = novo_arvore_sintatica(1, $2, NULL, fim_lista_arvore); linha++; coluna=1; }
| ID ATR exp END_LINE { fim_lista_arvore = novo_arvore_sintatica(2, $3, $1, fim_lista_arvore); linha++; coluna=1; }
;
exp
: NUM_INT { $$ = novo_no_folha_int($1, linha, coluna); }
| NUM_FLOAT { $$ = novo_no_folha_float($1, linha, coluna); }
| ID { $$ = novo_no_folha_id($1, linha, coluna); }
| exp ADD exp { $$ = novo_no(ADD, $1, $3, linha, coluna); }
| exp SUB exp { $$ = novo_no(SUB, $1, $3, linha, coluna); }
| exp MUL exp { $$ = novo_no(MUL, $1, $3, linha, coluna); }
| exp DIV exp { $$ = novo_no(DIV, $1, $3, linha, coluna); }
| exp POW exp { $$ = novo_no(POW, $1, $3, linha, coluna); }
| OPEN exp CLOSE { $$ = $2; }
;
%%
void mostra_help(){
fprintf(stderr, "\nVISAO GERAL:\n Compilador para linguagem de programacao Calc.\n");
fprintf(stderr, "\nENTRADA:\n Programa na linguagem Calc.\n");
fprintf(stderr, "\nSAIDA:\n Bitcode (codigo intermediario LLVM).\n");
fprintf(stderr, "\nOPCOES:\n -o <arquivo_saida>\n Especifica o arquivo de saida para o compilador.\n -h\n Exibe mensagem informativa sobre o compilador.\n");
fprintf(stderr, "\nUSO:\n ./calc <arquivo_entrada> -o <arquivo_saida>\n\n");
fprintf(stderr, "\nEXEMPLO DE USO:\n ./calc entrada.calc -o saida\n\n");
fprintf(stderr, "\nDesenvolvido por: William Rodrigues @ UEM 2020.\n\n");
exit(0);
}
int main(int argc, char* argv[]) {
char nome_arq_entrada[254] = "";
char nome_arq_saida[254] = "";
char nome_arq_saida_llvm[254];
int opt, indice;
while( (opt = getopt(argc, argv, "ho:")) > 0 ) {
switch ( opt ) {
case 'h':
mostra_help() ;
break ;
case 'o':
strcpy(nome_arq_saida, optarg);
break ;
default:
fprintf(stderr, "Opcao invalida ou faltando argumento: `%c'\n\n", optopt) ;
return -1 ;
}
}
for (indice = optind; indice < argc; indice++){
strcpy(nome_arq_entrada, argv[indice]);
}
if(strcmp(nome_arq_entrada, "") == 0){
fprintf(stderr, "\nErro: Arquivo de entrada nao informado.");
fprintf(stderr, "\nCalc: Utilize a opcao -h para ajuda.\n\n");
exit(1);
}
if(strcmp(nome_arq_saida, "") == 0){
fprintf(stderr, "\nErro: Arquivo de saida nao informado.");
fprintf(stderr, "\nCalc: Utilize a opcao -h para ajuda.\n\n");
exit(1);
}
yyin = fopen(nome_arq_entrada, "r");
if(!yyin){
fprintf(stderr, "\nErro ao abrir arquivo de entrada: '%s'\n\n", nome_arq_entrada);
exit(1);
}
printf("\nArquivo de entrada: %s\n", nome_arq_entrada);
//printf("\nExecutando FrontEnd...");
yyparse();
fclose(yyin);
analise_semantica( get_inicio_lista_arvore() );
strcpy((char*)nome_arq_saida_llvm, (char*)nome_arq_saida);
strcat(nome_arq_saida_llvm, ".ll");
arq_saida = fopen(nome_arq_saida_llvm, "w");
if(!arq_saida){
fprintf(stderr, "\nErro ao abrir arquivo de saida: '%s'\n\n", nome_arq_saida_llvm);
exit(1);
}
printf("\nExecutando BackEnd...\n");
backend( get_inicio_lista_arvore() );
fclose(arq_saida);
/* Forma e executa comando clang para compilar o codigo intermediario gerado*/
char comando[254] = "clang ";
strcat(comando, nome_arq_saida_llvm);
strcat(comando, " -o ");
strcat(comando, nome_arq_saida);
strcat(comando, " -lm");
system(comando);
printf("\nArquivo intermediario '%s' criado no atual diretorio.", nome_arq_saida_llvm);
printf("\nArquivo de saida '%s' criado no atual diretorio.", nome_arq_saida);
printf("\nExecute usando o comando:\n./%s\n\n", nome_arq_saida);
return 0;
}
void yyerror(char *s) {
fprintf(stderr, "\nAnalisador sintatico: (linha %d, coluna %d)\nCalc: Erro sintatico.\n", linha, coluna-1);
exit(1);
}