-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantica.lua
594 lines (514 loc) · 16.8 KB
/
semantica.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
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
local defs = require 'defs'
local tabsim = require 'tabsimbolos'
local arvore = require 'arvore'
local tipo = require 'tipo'
local erro = require 'erro'
erro = erro.erro
local TipoTag = defs.TipoTag
local TipoBasico = defs.TipoBasico
local Tag = defs.Tag
local analisaBloco, analisaExpNao
local analisaExpSimpVar, analisaExpArrayVar, analisaExpNovoArray
local analisaExpOpBin, analisaExpOpNum, analisaExpOpComp, analisaExpOpBool
local analisaExpChamada, analisaListaArg, analisaAtrib
-- 0 significa um valor basico
-- 1 significa um valor de uma dimensao, etc
local function getVarDecDim (v)
assert(v.tag == Tag.decVar or v.tag == Tag.decArrayVar, v.tag)
return v.tipo.dim
end
-- 0 significa um valor basico
-- 1 significa um valor de uma dimensao, etc
local function getVarDim (v, ambiente)
assert(v.tag == Tag.expSimpVar or v.tag == Tag.expArrayVar or
v.tag == Tag.decVar or v.tag == Tag.decArrayVar, v.tag)
if v.tag == Tag.decVar or v.tag == Tag.decArrayVar then
return getVarDecDim(v)
end
local ref = tabsim.procuraSimbolo(v, ambiente)
if not ref then --nao achou variavel
assert(false, "Nao achou " .. v.v)
return 0
end
local n = ref.tipo.dim
if v.dim then
n = n - v.dim
end
return n
end
local function ehValorBasico (v, ambiente)
if v.tipo.tag ~= TipoTag.array then
return true
end
if v.tag == Tag.expNovoArray then
return false
end
if v.tag == Tag.expChamada then
return not v.tipo.dim
end
-- eh uma variavel
return getVarDim(v, ambiente) == 0
end
local function setTipoRetorno (tipo, ambiente)
ambiente["__tipoRetorno"] = tipo
end
local function getTipoRetorno (ambiente)
return ambiente["__tipoRetorno"]
end
local function analisaExp (exp, ambiente)
assert(ambiente, "Ambiente nulo")
-- expBool, expInt, expNum, expTexto
--if exp.tipo ~= Tipo.naotipado then
--return exp.tipo
--end
local tag = exp.tag
if tag == Tag.expNao then
analisaExpNao(exp, ambiente)
elseif tag == Tag.expSimpVar then
analisaExpSimpVar(exp, ambiente)
elseif tag == Tag.expArrayVar then
analisaExpArrayVar(exp, ambiente)
elseif tag == Tag.expOpNum then
analisaExpOpNum(exp, ambiente)
elseif tag == Tag.expOpComp then
analisaExpOpComp(exp, ambiente)
elseif tag == Tag.expOpBool then
analisaExpOpBool(exp, ambiente)
elseif tag == Tag.expInt or tag == Tag.expNum or
tag == Tag.expBool or tag == Tag.expTexto then
return
elseif tag == Tag.expNovoArray then
analisaExpNovoArray(exp, ambiente)
elseif tag == Tag.expChamada then
analisaExpChamada(exp, ambiente)
else
error("Expressão desconhecida " .. exp.tag)
end
end
function analisaExpNao (exp, ambiente)
analisaExp(exp.exp, ambiente)
local tipo = exp.exp.tipo
if tipo.tag ~= TipoTag.simples or tipo.basico ~= TipoBasico.bool then
erro("expressão do '" .. exp.op.s .. "' deve ser do tipo booleano", exp.exp.linha)
end
end
function analisaExpSimpVar (exp, ambiente)
local v = tabsim.procuraSimbolo(exp, ambiente)
if v ~= nil then
exp.tipo = v.tipo
end
end
function analisaExpArrayVar (exp, ambiente)
--print("analisaExpArrayVar", exp.v)
local v = tabsim.procuraSimbolo(exp, ambiente)
if v ~= nil then
exp.tipo = v.tipo
--print("dim", v.tipo.dim, exp.dim)
if v.tipo.tag ~= TipoTag.array then
erro("variável '" .. exp.v .. "' não é um array", exp.linha)
elseif v.tipo.dim < exp.dim then
erro("array '" .. v.v .. "' possui somente " .. v.tipo.dim .. " dimensão(ões)", exp.linha)
end
for i, x in ipairs(exp.t) do
analisaExp(x, ambiente)
if x.tipo.basico ~= TipoBasico.inteiro then
erro("a expressão que indexa um array deve ser do tipo inteiro", exp.linha)
end
end
end
end
function analisaExpNovoArray (exp, ambiente)
for k, v in ipairs(exp.v) do
if v.ehExp then
analisaExp(v, ambiente)
if v.tipo.basico ~= TipoBasico.inteiro then
erro("a expressão que indica o tamanho de um array deve ser do tipo inteiro", v.linha)
end
if not ehValorBasico(v, ambiente) then
erro("a expressão que indica o tamanho de um array deve ser do tipo inteiro", v.linha)
end
else
break
end
end
return exp.dim
end
function analisaExpOpBin (exp, ambiente)
local p1 = exp.p1
local p2 = exp.p2
analisaExp(p1, ambiente)
analisaExp(p2, ambiente)
if tipo.naoTipado(p1.tipo) or tipo.naoTipado(p2.tipo) then
return
end
if not ehValorBasico(p1, ambiente) or not ehValorBasico(p2, ambiente) then
erro("operandos inválidos para o operador binário '" .. exp.op.s .. "'", p1.linha)
end
end
function analisaExpOpNum (exp, ambiente)
analisaExpOpBin(exp, ambiente)
local p1 = exp.p1
local p2 = exp.p2
if tipo.naoTipado(p1.tipo) or tipo.naoTipado(p2.tipo) then
return
end
local tb1 = p1.tipo.basico
local tb2 = p2.tipo.basico
if tipo.tiposCompativeis(tb1, TipoBasico.numero) and tipo.tiposCompativeis(tb2, TipoBasico.numero) then
if exp.op.op == "opMod" then
if tb1 ~= TipoBasico.inteiro or tb2 ~= TipoBasico.inteiro then
local s = "os operandos de '" .. exp.op.s .. "' devem ser do tipo inteiro"
erro(s, exp.linha)
else
exp.tipo.basico = TipoBasico.inteiro
end
elseif tb1 == TipoBasico.numero or tb2 == TipoBasico.numero then
exp.tipo.basico = TipoBasico.numero
else
exp.tipo.basico = TipoBasico.inteiro
end
elseif tipo.tiposCompativeis(tb1, TipoBasico.texto) and tipo.tiposCompativeis(tb2, TipoBasico.texto) and
exp.op.op == "opSoma" then
exp.tipo.basico = TipoBasico.texto
else
local s = "não é possível realizar a operação " .. exp.op.s .. " com uma expressão do tipo " .. tb1
s = s .. " e uma expressão do tipo " .. tb2
erro(s, exp.linha)
end
end
function analisaExpOpComp (exp, ambiente)
assert(exp.tipo.basico == TipoBasico.bool and exp.tipo.tag == TipoTag.simples)
analisaExpOpBin(exp, ambiente)
local p1 = exp.p1
local p2 = exp.p2
if tipo.naoTipado(p1.tipo) or tipo.naoTipado(p2.tipo) then
return
end
if not tipo.tiposCompativeis(p1.tipo.basico, p2.tipo.basico) then
local s = "não é possível comparar uma expressão do tipo " .. p1.tipo.basico
s = s .. " com uma expressão do tipo " .. p2.tipo.basico
erro(s, p1.linha)
end
end
function analisaExpOpBool (exp, ambiente)
analisaExpOpBin(exp, ambiente)
local p1 = exp.p1
local p2 = exp.p2
if tipo.naoTipado(p1.tipo) or tipo.naoTipado(p2.tipo) then
return
end
if not tipo.tiposCompativeis(p1.tipo.basico, TipoBasico.bool) or
not tipo.tiposCompativeis(p2.tipo.basico, TipoBasico.bool) then
local s = "expressões do '" .. exp.op.s .. "' devem ser do tipo booleano"
erro(s, p1.linha)
end
end
function analisaParametrosFunc (func, exp, ambiente)
local n1 = #func.params.lista
local n2 = #exp.args
if n1 ~= n2 then
local linha = exp.linha
erro("função '" .. func.v .. "' espera " .. n1 .. " parâmetro(s), mas foi chamada com " .. n2, linha)
return
end
for i, v in ipairs(exp.args) do
--analisaExp(v, ambiente)
local x = func.params.lista[i]
--print(x.tipo.basico, v.tipo.basico, tiposCompativeis(v.tipo, x.tipo))
x.linha = v.linha
analisaAtrib(x, v, ambiente, true)
end
end
function analisaExpChamadaAux (exp, ambiente)
local ref = tabsim.procuraSimbolo(exp.nome, ambiente)
--print("exp.nome.v", exp.nome.v)
if not ref then --nao declarou o símbolo
return
end
if not ref.params then -- eh funcao?
erro("'" .. exp.nome.v .. "' não é o nome de uma função", exp.nome.linha)
return
end
analisaParametrosFunc(ref, exp, ambiente)
exp.tipo = ref.tipo
exp.dim = ref.tipo.dim
--print("exp.tipo = ", exp.tipo.basico, exp.tipo.tag)
end
function analisaExpChamada (exp, ambiente)
if exp.nome.v == "escreva" then
for i, v in ipairs(exp.args) do
analisaExp(v, ambiente)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.vazio)
elseif exp.nome.v == "imprima" then
for i, v in ipairs(exp.args) do
analisaExp(v, ambiente)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.vazio)
elseif exp.nome.v == "leia" then
for i, v in ipairs(exp.args) do
analisaExp(v, ambiente)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.vazio)
elseif exp.nome.v == "textoComp" then
if #exp.args ~= 1 then
erro("função textoComp espera 1 parâmetro, mas foi chamada com " .. #exp.args, exp.nome.linha)
return
end
local v1 = exp.args[1]
analisaExp(v1, ambiente)
if v1.tipo.basico ~= TipoBasico.texto or not ehValorBasico(v1, ambiente) then
erro("função textoComp espera parâmetro do tipo 'texto'", v1.linha)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.inteiro)
elseif exp.nome.v == "textoSub" or exp.nome.v == "textoPos" then
local nome = exp.nome.v
local n = #exp.args
if n < 2 or n > 3 or (n == 3 and nome ~= "textoSub") then
erro("função " .. nome .. " espera 2 ou 3 parâmetros, mas foi chamada com " .. #exp.args, exp.nome.linha)
return
end
local v1 = exp.args[1]
analisaExp(v1, ambiente)
if v1.tipo.basico ~= TipoBasico.texto or not ehValorBasico(v1, ambiente) then
erro("função " .. nome .. " espera primeiro parâmetro do tipo 'texto'", v1.linha)
end
for i = 2, #exp.args do
local v = exp.args[i]
analisaExp(v, ambiente)
if v.tipo.basico ~= TipoBasico.inteiro or not ehValorBasico(v, ambiente) then
erro("função " .. nome .. " espera " .. i .. "o parâmetro do tipo 'inteiro'", v.linha)
end
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.texto)
elseif exp.nome.v == "converteInt" then
if #exp.args ~= 1 then
erro("função converteInt espera 1 parâmetro, mas foi chamada com " .. #exp.args, exp.nome.linha)
return
end
local v1 = exp.args[1]
analisaExp(v1, ambiente)
if (v1.tipo.basico ~= TipoBasico.inteiro and v1.tipo.basico ~= TipoBasico.numero) or not ehValorBasico(v1, ambiente) then
erro("função converteInt espera parâmetro do tipo 'numero' ou 'inteiro'", v1.linha)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.inteiro)
elseif exp.nome.v == "sorteie" then
if #exp.args ~= 1 then
erro("função 'sorteie' espera 1 parâmetro, mas foi chamada com " .. #exp.args, exp.nome.linha)
return
end
local v1 = exp.args[1]
analisaExp(v1, ambiente)
if (v1.tipo.basico ~= TipoBasico.inteiro) or not ehValorBasico(v1, ambiente) then
erro("função 'sorteie' espera parâmetro do tipo 'inteiro'", v1.linha)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.inteiro)
elseif exp.nome.v == "sementesorteio" then
if #exp.args ~= 1 and #exp.args ~= 0 then
erro("função 'sementesorteio' espera 0 ou 1 parâmetro, mas foi chamada com " .. #exp.args, exp.nome.linha)
return
end
if #exp.args == 1 then
local v1 = exp.args[1]
analisaExp(v1, ambiente)
if (v1.tipo.basico ~= TipoBasico.inteiro) or not ehValorBasico(v1, ambiente) then
erro("função 'sementesorteio' espera parâmetro do tipo 'inteiro'", v1.linha)
end
exp.tipo = arvore.makeTipo(TipoTag.simples, TipoBasico.inteiro)
end
else
analisaExpChamadaAux(exp, ambiente)
end
end
function analisaAtrib (var, exp, ambiente, ehParametro)
if var.tag == Tag.expArrayVar then
analisaExpArrayVar(var, ambiente)
end
analisaExp(exp, ambiente)
if tipo.naoTipado(exp.tipo) then
return
end
local aux = ""
if ehParametro then
aux = " ao parâmetro "
else
aux = " à variável "
end
--print("analisaAtrib ", var, var.v, var.tipo, var.tipo.tag, exp.dim, var.tipo.dim)
if not tipo.tiposCompativeis(var.tipo.basico, exp.tipo.basico, true) then
local s = "não pode atribuir expressão do tipo " .. exp.tipo.basico .. aux
s = s .. "'" .. var.v .. "' do tipo " .. var.tipo.basico
erro(s, var.linha)
elseif (exp.tag == Tag.expNovoArray or (exp.tag == Tag.expChamada and exp.tipo.tag == TipoTag.array)) and
var.tipo.tag ~= TipoTag.array then
erro("variável '" .. var.v .. "' não é um array", var.linha)
elseif var.tipo.tag == TipoTag.array then
local nvar = getVarDim(var, ambiente)
if exp.tag == Tag.expNovoArray or (exp.tag == Tag.expChamada and exp.tipo.tag == TipoTag.array) then
if exp.dim ~= nvar then
erro("tentativa de atribuir tipo incompatível" .. aux .. "'" .. var.v .. "'", var.linha)
end
elseif exp.tipo.tag == TipoTag.array then
local nexp = getVarDim(exp, ambiente)
if nvar ~= nexp then
erro("tentativa de atribuir tipo incompatível para a variável '" .. var.v .. "'", var.linha)
elseif nvar > 0 and var.tipo.basico ~= exp.tipo.basico then
erro("tentativa de atribuir tipo incompatível para a variável '" .. var.v .. "'", var.linha)
end
elseif nvar > 0 then
erro("tentativa de atribuir tipo incompatível para a variável '" .. var.v .. "'", var.linha)
end
end
end
local function analisaDecVar (decVar, ambiente)
if decVar.exp then
analisaAtrib(decVar, decVar.exp, ambiente)
end
--print("vou inserir")
tabsim.insereSimbolo(decVar, ambiente)
end
local function analisaDecVarLista (listaDec, ambiente)
for i, v in ipairs(listaDec) do
analisaDecVar(v, ambiente)
end
end
local function analisaExpCmd (exp, ambiente)
analisaExp(exp, ambiente)
if tipo.naoTipado(exp.tipo) then
return
end
if not tipo.tiposCompativeis(exp.tipo.basico, TipoBasico.bool) then
local s = "expressão do 'se' deve ser booleana"
erro(s, exp.linha)
end
end
local function analisaCmdSe (c, ambiente)
analisaExpCmd(c.expSe, ambiente)
analisaBloco(c.blocoSe, ambiente)
if c.senaoSe then
local lista = c.senaoSe.lista
for i, v in ipairs(lista) do
analisaExpCmd(v.exp, ambiente)
analisaBloco(v.bloco, ambiente)
end
end
if c.senao then
analisaBloco(c.senao, ambiente)
end
end
local function analisaCmdRepita (c, ambiente)
analisaExpCmd(c.exp, ambiente)
analisaBloco(c.bloco, ambiente)
end
local function analisaCmdChamada (c, ambiente)
analisaExpChamada(c, ambiente)
end
local function analisaCmdRetorne (c, ambiente)
local tipoRetorno = getTipoRetorno(ambiente)
if not tipoRetorno then
erro("Comando 'retorne' deve ser usado dentro de uma função", c.linha)
return
end
if not c.exp then
if tipoRetorno.basico ~= vazio then
erro("Função deve retornar uma expressão", c.linha)
end
else
if tipoRetorno.basico == vazio then
erro("Função foi declarada com tipo 'vazio' e não deveria retornar uma expressão", c.linha)
return
end
analisaExp(c.exp, ambiente)
if c.exp.tipo.basico == TipoBasico.naotipado then
return
end
local b1 = ehValorBasico(c.exp, ambiente)
local b2 = tipoRetorno.dim == nil
if b1 ~= b2 then
erro("Tipo de retorno incompatível", c.linha)
elseif not b1 and c.exp.tipo.basico ~= tipoRetorno.basico then
erro("Tipo de retorno incompatível com " .. tipoRetorno.basico, c.linha)
elseif not tipo.tiposCompativeis(c.exp.tipo.basico, tipoRetorno.basico) then
erro("Tipo de retorno incompatível com " .. tipoRetorno.basico, c.linha)
elseif not b2 then
local n2
if c.exp.tag == Tag.expNovoArray or c.exp.tag == Tag.expChamada then
n2 = c.exp.dim
else
n2 = getVarDim(c.exp, ambiente)
end
if n2 ~= tipoRetorno.dim then -- eh array
erro("Tipo de retorno incompatível", c.linha)
end
end
end
end
local function analisaComando (c, ambiente)
if c.tag == Tag.cmdAtrib then
local var = tabsim.procuraSimbolo(c.p1, ambiente)
local exp = c.p2
if var ~= nil then
c.p1.tipo = var.tipo
var.linha = c.p1.linha
--print("analisaComando", var.tipo.tag, var.tipo.dim, c.p1.tipo.dim)
if var.tipo.tag == TipoTag.array and var.tipo.dim < c.p1.tipo.dim then
erro("array '" .. c.p1.v .. "' possui somente " .. var.tipo.dim .. " dimensão(ões)", c.p1.linha)
else
--print("analisaComando ", var, var.v, var.tipo, c.p1, c.p1.tipo)
analisaAtrib(c.p1, exp, ambiente)
end
end
elseif c.tag == Tag.cmdSe then
analisaCmdSe(c, ambiente)
elseif c.tag == Tag.cmdRepita then
analisaCmdRepita(c, ambiente)
elseif c.tag == Tag.cmdChamada then
analisaCmdChamada(c, ambiente)
elseif c.tag == Tag.cmdRetorne then
analisaCmdRetorne(c, ambiente)
else
error("Comando desconhecido")
end
end
function analisaDecFuncao (decFun, ambiente)
tabsim.insereSimbolo(decFun.v, ambiente, decFun.params)
tabsim.entraBloco(ambiente)
for i, v in ipairs(decFun.params.lista) do
--print(i, v, v.v)
analisaDecVar(v, ambiente)
end
setTipoRetorno(decFun.tipo, ambiente)
analisaBloco(decFun.tbloco, ambiente, true)
setTipoRetorno(nil, ambiente)
tabsim.saiBloco(ambiente)
end
function analisaBloco (bloco, ambiente, externo)
if not externo then
tabsim.entraBloco(ambiente)
end
for i, v in ipairs(bloco.tbloco) do
if v.tag == Tag.decVarLista then
analisaDecVarLista(v.lista, ambiente)
elseif arvore.ehComando(v) then
analisaComando(v, ambiente)
elseif v.tag == Tag.decFuncao then
analisaDecFuncao(v, ambiente)
else
error("Tag inválida: " .. tostring(v.tag), bloco.linha)
end
end
if not externo then
tabsim.saiBloco(ambiente)
end
end
local function analisaPrograma (t)
local ambiente = tabsim.criaAmbiente()
if t.tag == Tag.bloco then
analisaBloco(t, ambiente)
else
erro("Estrutura inválida", t.linha)
end
end
return {
analisaPrograma = analisaPrograma
}