mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-29 13:41:47 +00:00
compiler: optimize new empty struct creation with PACKSTRUCT
This commit is contained in:
parent
909ea477f4
commit
a8befeea33
2 changed files with 13 additions and 6 deletions
|
@ -324,14 +324,11 @@ func (c *codegen) emitDefault(t types.Type) {
|
||||||
}
|
}
|
||||||
case *types.Struct:
|
case *types.Struct:
|
||||||
num := t.NumFields()
|
num := t.NumFields()
|
||||||
emit.Int(c.prog.BinWriter, int64(num))
|
for i := num - 1; i >= 0; i-- {
|
||||||
emit.Opcodes(c.prog.BinWriter, opcode.NEWSTRUCT)
|
|
||||||
for i := 0; i < num; i++ {
|
|
||||||
emit.Opcodes(c.prog.BinWriter, opcode.DUP)
|
|
||||||
emit.Int(c.prog.BinWriter, int64(i))
|
|
||||||
c.emitDefault(t.Field(i).Type())
|
c.emitDefault(t.Field(i).Type())
|
||||||
emit.Opcodes(c.prog.BinWriter, opcode.SETITEM)
|
|
||||||
}
|
}
|
||||||
|
emit.Int(c.prog.BinWriter, int64(num))
|
||||||
|
emit.Opcodes(c.prog.BinWriter, opcode.PACKSTRUCT)
|
||||||
default:
|
default:
|
||||||
emit.Opcodes(c.prog.BinWriter, opcode.PUSHNULL)
|
emit.Opcodes(c.prog.BinWriter, opcode.PUSHNULL)
|
||||||
}
|
}
|
||||||
|
|
|
@ -394,6 +394,16 @@ var structTestCases = []testCase{
|
||||||
}`,
|
}`,
|
||||||
big.NewInt(11),
|
big.NewInt(11),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"lengthy struct default value",
|
||||||
|
`package foo
|
||||||
|
type S struct { x int; y []byte; z bool }
|
||||||
|
func Main() int {
|
||||||
|
var s S
|
||||||
|
return s.x
|
||||||
|
}`,
|
||||||
|
big.NewInt(0),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"nested selectors (complex write)",
|
"nested selectors (complex write)",
|
||||||
`package foo
|
`package foo
|
||||||
|
|
Loading…
Reference in a new issue