compiler: do not traverse defer function literals twice

Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgeniy Stratonikov 2022-02-02 16:51:10 +03:00
parent 8dcfb19a1c
commit ed43b75631
3 changed files with 31 additions and 3 deletions

View file

@ -803,8 +803,20 @@ func (c *codegen) Visit(node ast.Node) ast.Visitor {
return nil
case *ast.FuncLit:
l := c.newLabel()
var found bool
var l uint16
for _, fs := range c.lambda {
if fs.decl.Body == n.Body {
found = true
l = fs.label
break
}
}
if !found {
l = c.newLabel()
c.newLambda(l, n)
}
buf := make([]byte, 4)
binary.LittleEndian.PutUint16(buf, l)
emit.Instruction(c.prog.BinWriter, opcode.PUSHA, buf)

View file

@ -126,6 +126,22 @@ func TestDefer(t *testing.T) {
require.NoError(t, err)
require.Equal(t, 0, vm.Estack().Len(), "stack contains unexpected items")
})
t.Run("CodeDuplication", func(t *testing.T) {
src := `package main
var i int
func Main() {
defer func() {
var j int
i += j
}()
if i == 1 { return }
if i == 2 { return }
if i == 3 { return }
if i == 4 { return }
if i == 5 { return }
}`
checkCallCount(t, src, 0 /* defer body + Main */, 2, -1)
})
}
func TestRecover(t *testing.T) {

View file

@ -33,7 +33,7 @@ func checkCallCount(t *testing.T, src string, expectedCall, expectedInitSlot, ex
actualCall++
case opcode.INITSLOT:
actualInitSlot++
if ctx.IP() == mainStart {
if ctx.IP() == mainStart && expectedLocalsMain >= 0 {
require.Equal(t, expectedLocalsMain, int(param[0]))
}
}