-
Notifications
You must be signed in to change notification settings - Fork 0
/
gerador.lua
217 lines (180 loc) · 3.71 KB
/
gerador.lua
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
local defs = require 'defs'
local Tag = defs.Tag
local Tipo = defs.Tipo
local includes = [[
#include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::string;
]]
local mainInicio = [[
int main ()
]]
local mainFinal = [[
return 0;
}
]]
local codigo = {}
local geraBloco
local function geraCodigo (s)
table.insert(codigo, s)
end
local function geraCodigoLinha (s)
geraCodigo(s .. '\n')
end
local function geraCodigoEspaco (s)
geraCodigo(s .. ' ')
end
local function geraInicio ()
table.insert(codigo, includes .. mainInicio)
end
local function geraFinal ()
table.insert(codigo, mainFinal)
end
local function geraTipo (t)
if t == Tipo.inteiro then
geraCodigoEspaco("int")
elseif t == Tipo.numero then
geraCodigoEspaco("double")
elseif t == Tipo.texto then
geraCodigoEspaco("string")
elseif t == Tipo.bool then
geraCodigoEspaco("bool")
end
end
local function geraCodigoVar (var)
geraCodigoEspaco(var.v)
end
local function geraOpExp (exp)
geraCodigoEspaco(exp.cod)
end
local function geraExp (exp)
geraCodigo"("
if exp.p1 and exp.p2 then
geraExp(exp.p1)
geraOpExp(exp.op)
geraExp(exp.p2)
elseif exp.tag == Tag.expInt then
geraCodigoEspaco(exp.v)
elseif exp.tag == Tag.expNum then
geraCodigoEspaco(exp.v)
elseif exp.tag == Tag.expBool then
geraCodigoEspaco(tostring(exp.v))
elseif exp.tag == Tag.expTexto then
geraCodigoEspaco('(string) "' .. exp.v .. '"')
elseif exp.tag == Tag.expVar then
geraCodigoVar(exp)
elseif exp.tag == Tag.expNao then
geraOpExp(exp.op)
geraCodigoEspaco("(")
geraExp(exp.exp)
geraCodigoEspaco(")")
else
error("Expressao desconhecida2 " .. exp.tag)
end
geraCodigo")"
end
local function geraDecVar (v, listaDec)
if not listaDec then
geraTipo(v.tipo)
end
geraCodigoVar(v.var)
if v.exp then
geraCodigoEspaco("=")
geraExp(v.exp)
end
end
function geraChamada (c, ambiente)
if c.nome.v == "escreva" then
geraCodigoEspaco('cout')
for i, v in ipairs(c.args) do
geraCodigoEspaco('<<')
geraExp(v)
end
geraCodigoLinha('<< endl;')
elseif c.nome.v == "leia" then
geraCodigoEspaco('cin')
for i, v in ipairs(c.args) do
geraCodigoEspaco('>>')
geraExp(v)
end
geraCodigoLinha(';')
else
error("Função inválida")
end
end
local function geraDecVarLista (dec)
geraTipo(dec.tipo)
for i, v in ipairs(dec.lista) do
if (i > 1) then
geraCodigoEspaco(",")
end
geraDecVar(v, true)
end
geraCodigoLinha(";")
end
local function geraComandoSe (c)
geraCodigoEspaco("if (")
geraExp(c.expSe)
geraCodigoEspaco(")")
geraBloco(c.blocoSe)
if c.senaoSe then
local lista = c.senaoSe.lista
for i, v in ipairs(lista) do
geraCodigoEspaco("else if (")
geraExp(v.exp)
geraCodigoEspaco(")")
geraBloco(v.bloco)
end
end
if c.senao then
geraCodigoEspaco("else")
geraBloco(c.senao)
end
end
local function geraComandoRepita (c)
geraCodigoEspaco("while (")
geraExp(c.exp)
geraCodigoEspaco(")")
geraBloco(c.bloco)
end
local function geraComando (c)
if c.tag == Tag.cmdAtrib then
geraCodigoEspaco(c.p1.v .. " =")
geraExp(c.p2)
geraCodigoLinha(";")
elseif c.tag == Tag.cmdSe then
geraComandoSe(c)
elseif c.tag == Tag.cmdRepita then
geraComandoRepita(c)
elseif c.tag == Tag.cmdChamada then
geraChamada(c)
else
error("Comando desconhecido")
end
end
function geraBloco (bloco)
geraCodigoLinha("{")
for i, v in ipairs(bloco.tbloco) do
if v.tag == Tag.decVarLista then
geraDecVarLista(v)
else -- eh comando
geraComando(v)
end
end
geraCodigoLinha("}")
end
local function geraPrograma (t)
geraInicio()
if t.tag == Tag.bloco then
geraBloco(t)
return table.concat(codigo)
else
erro("Estrutura inválida", t.linha)
end
end
return {
geraPrograma = geraPrograma,
}