mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
compiler: use shorter and cheaper sequence to convert to Boolean
This commit is contained in:
parent
5d43367082
commit
4e58bd7411
1 changed files with 10 additions and 4 deletions
|
@ -1945,10 +1945,16 @@ func transformArgs(fs *funcScope, fun ast.Expr, isBuiltin bool, args []ast.Expr)
|
|||
|
||||
// emitConvert converts the top stack item to the specified type.
|
||||
func (c *codegen) emitConvert(typ stackitem.Type) {
|
||||
emit.Opcodes(c.prog.BinWriter, opcode.DUP)
|
||||
emit.Instruction(c.prog.BinWriter, opcode.ISTYPE, []byte{byte(typ)})
|
||||
emit.Instruction(c.prog.BinWriter, opcode.JMPIF, []byte{2 + 2}) // After CONVERT.
|
||||
emit.Instruction(c.prog.BinWriter, opcode.CONVERT, []byte{byte(typ)})
|
||||
if typ == stackitem.BooleanT {
|
||||
// DUP + ISTYPE + JMPIF costs 3 already with CONVERT of a cost 8192.
|
||||
// NOT+NOT at the same time costs 4 and always works (and is shorter).
|
||||
emit.Opcodes(c.prog.BinWriter, opcode.NOT, opcode.NOT)
|
||||
} else {
|
||||
emit.Opcodes(c.prog.BinWriter, opcode.DUP)
|
||||
emit.Instruction(c.prog.BinWriter, opcode.ISTYPE, []byte{byte(typ)})
|
||||
emit.Instruction(c.prog.BinWriter, opcode.JMPIF, []byte{2 + 2}) // After CONVERT.
|
||||
emit.Instruction(c.prog.BinWriter, opcode.CONVERT, []byte{byte(typ)})
|
||||
}
|
||||
}
|
||||
|
||||
func (c *codegen) convertByteArray(elems []ast.Expr) {
|
||||
|
|
Loading…
Reference in a new issue