2018-02-19 09:24:28 +00:00
|
|
|
package compiler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
2020-01-27 07:59:57 +00:00
|
|
|
"errors"
|
2019-11-22 14:16:52 +00:00
|
|
|
"fmt"
|
2018-02-19 09:24:28 +00:00
|
|
|
"go/ast"
|
|
|
|
"go/constant"
|
|
|
|
"go/token"
|
|
|
|
"go/types"
|
2020-02-21 08:50:03 +00:00
|
|
|
"math"
|
2019-02-15 13:38:16 +00:00
|
|
|
"sort"
|
2018-07-02 13:02:00 +00:00
|
|
|
"strings"
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/emit"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/opcode"
|
2020-03-31 13:16:32 +00:00
|
|
|
"golang.org/x/tools/go/loader"
|
2018-02-19 09:24:28 +00:00
|
|
|
)
|
|
|
|
|
2018-07-02 13:02:00 +00:00
|
|
|
// The identifier of the entry function. Default set to Main.
|
2018-02-19 09:24:28 +00:00
|
|
|
const mainIdent = "Main"
|
|
|
|
|
|
|
|
type codegen struct {
|
2018-02-25 12:26:56 +00:00
|
|
|
// Information about the program with all its dependencies.
|
|
|
|
buildInfo *buildInfo
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// prog holds the output buffer.
|
2019-11-22 10:06:32 +00:00
|
|
|
prog *io.BufBinWriter
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Type information.
|
2018-02-19 09:24:28 +00:00
|
|
|
typeInfo *types.Info
|
|
|
|
|
2018-02-25 12:26:56 +00:00
|
|
|
// A mapping of func identifiers with their scope.
|
2018-02-19 09:24:28 +00:00
|
|
|
funcs map[string]*funcScope
|
|
|
|
|
2020-05-06 15:10:20 +00:00
|
|
|
// A mapping of lambda functions into their scope.
|
|
|
|
lambda map[string]*funcScope
|
|
|
|
|
2018-02-25 12:26:56 +00:00
|
|
|
// Current funcScope being converted.
|
|
|
|
scope *funcScope
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
globals map[string]int
|
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
// A mapping from label's names to their ids.
|
2020-02-21 08:50:03 +00:00
|
|
|
labels map[labelWithType]uint16
|
2020-03-06 12:11:14 +00:00
|
|
|
// A list of nested label names together with evaluation stack depth.
|
|
|
|
labelList []labelWithStackSize
|
2020-02-17 13:48:41 +00:00
|
|
|
|
|
|
|
// A label for the for-loop being currently visited.
|
|
|
|
currentFor string
|
2020-02-18 14:07:38 +00:00
|
|
|
// A label for the switch statement being visited.
|
|
|
|
currentSwitch string
|
2020-02-17 13:48:41 +00:00
|
|
|
// A label to be used in the next statement.
|
|
|
|
nextLabel string
|
|
|
|
|
2020-03-31 13:57:35 +00:00
|
|
|
// sequencePoints is mapping from method name to a slice
|
|
|
|
// containing info about mapping from opcode's offset
|
|
|
|
// to a text span in the source file.
|
|
|
|
sequencePoints map[string][]DebugSeqPoint
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
// Label table for recording jump destinations.
|
|
|
|
l []int
|
|
|
|
}
|
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
type labelOffsetType byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
labelStart labelOffsetType = iota // labelStart is a default label type
|
|
|
|
labelEnd // labelEnd is a type for labels that are targets for break
|
2020-02-17 14:19:54 +00:00
|
|
|
labelPost // labelPost is a type for labels that are targets for continue
|
2020-02-17 13:48:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type labelWithType struct {
|
|
|
|
name string
|
|
|
|
typ labelOffsetType
|
|
|
|
}
|
|
|
|
|
2020-03-06 12:11:14 +00:00
|
|
|
type labelWithStackSize struct {
|
|
|
|
name string
|
|
|
|
sz int
|
|
|
|
}
|
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
type varType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
varGlobal varType = iota
|
|
|
|
varLocal
|
|
|
|
varArgument
|
|
|
|
)
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
// newLabel creates a new label to jump to
|
2020-02-21 08:50:03 +00:00
|
|
|
func (c *codegen) newLabel() (l uint16) {
|
|
|
|
li := len(c.l)
|
|
|
|
if li > math.MaxUint16 {
|
|
|
|
c.prog.Err = errors.New("label number is too big")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l = uint16(li)
|
2018-02-19 09:24:28 +00:00
|
|
|
c.l = append(c.l, -1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
// newNamedLabel creates a new label with a specified name.
|
2020-02-21 08:50:03 +00:00
|
|
|
func (c *codegen) newNamedLabel(typ labelOffsetType, name string) (l uint16) {
|
2020-02-17 13:48:41 +00:00
|
|
|
l = c.newLabel()
|
|
|
|
lt := labelWithType{name: name, typ: typ}
|
|
|
|
c.labels[lt] = l
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-21 08:50:03 +00:00
|
|
|
func (c *codegen) setLabel(l uint16) {
|
2018-02-19 09:24:28 +00:00
|
|
|
c.l[l] = c.pc() + 1
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// pc returns the program offset off the last instruction.
|
2018-02-19 09:24:28 +00:00
|
|
|
func (c *codegen) pc() int {
|
|
|
|
return c.prog.Len() - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *codegen) emitLoadConst(t types.TypeAndValue) {
|
2019-11-22 10:06:32 +00:00
|
|
|
if c.prog.Err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-05-13 15:09:55 +00:00
|
|
|
|
|
|
|
typ, ok := t.Type.Underlying().(*types.Basic)
|
|
|
|
if !ok {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("compiler doesn't know how to convert this constant: %v", t)
|
|
|
|
return
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 14:28:35 +00:00
|
|
|
switch typ.Kind() {
|
2020-04-28 13:42:29 +00:00
|
|
|
case types.Int, types.UntypedInt, types.Uint,
|
|
|
|
types.Int16, types.Uint16,
|
|
|
|
types.Int32, types.Uint32, types.Int64, types.Uint64:
|
2020-01-23 14:28:35 +00:00
|
|
|
val, _ := constant.Int64Val(t.Value)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Int(c.prog.BinWriter, val)
|
2020-01-23 14:28:35 +00:00
|
|
|
case types.String, types.UntypedString:
|
|
|
|
val := constant.StringVal(t.Value)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.String(c.prog.BinWriter, val)
|
2020-01-23 14:28:35 +00:00
|
|
|
case types.Bool, types.UntypedBool:
|
|
|
|
val := constant.BoolVal(t.Value)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Bool(c.prog.BinWriter, val)
|
2020-01-23 14:28:35 +00:00
|
|
|
case types.Byte:
|
|
|
|
val, _ := constant.Int64Val(t.Value)
|
|
|
|
b := byte(val)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Bytes(c.prog.BinWriter, []byte{b})
|
2020-01-23 14:28:35 +00:00
|
|
|
default:
|
|
|
|
c.prog.Err = fmt.Errorf("compiler doesn't know how to convert this basic type: %v", t)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
func (c *codegen) emitLoadField(i int) {
|
|
|
|
emit.Int(c.prog.BinWriter, int64(i))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PICKITEM)
|
2018-03-25 16:21:00 +00:00
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
func (c *codegen) emitStoreStructField(i int) {
|
|
|
|
emit.Int(c.prog.BinWriter, int64(i))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.ROT)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SETITEM)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
// getVarIndex returns variable type and position in corresponding slot,
|
|
|
|
// according to current scope.
|
|
|
|
func (c *codegen) getVarIndex(name string) (varType, int) {
|
|
|
|
if c.scope != nil {
|
|
|
|
if i, ok := c.scope.arguments[name]; ok {
|
|
|
|
return varArgument, i
|
|
|
|
} else if i, ok := c.scope.locals[name]; ok {
|
|
|
|
return varLocal, i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if i, ok := c.globals[name]; ok {
|
|
|
|
return varGlobal, i
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
return varLocal, c.scope.newVariable(varLocal, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getBaseOpcode(t varType) (opcode.Opcode, opcode.Opcode) {
|
|
|
|
switch t {
|
|
|
|
case varGlobal:
|
|
|
|
return opcode.LDSFLD0, opcode.STSFLD0
|
|
|
|
case varLocal:
|
|
|
|
return opcode.LDLOC0, opcode.STLOC0
|
|
|
|
case varArgument:
|
|
|
|
return opcode.LDARG0, opcode.STARG0
|
|
|
|
default:
|
|
|
|
panic("invalid type")
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2020-05-07 08:54:35 +00:00
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
// emitLoadVar loads specified variable to the evaluation stack.
|
|
|
|
func (c *codegen) emitLoadVar(name string) {
|
|
|
|
t, i := c.getVarIndex(name)
|
|
|
|
base, _ := getBaseOpcode(t)
|
|
|
|
if i < 7 {
|
|
|
|
emit.Opcode(c.prog.BinWriter, base+opcode.Opcode(i))
|
|
|
|
} else {
|
|
|
|
emit.Instruction(c.prog.BinWriter, base+7, []byte{byte(i)})
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
// emitStoreVar stores top value from the evaluation stack in the specified variable.
|
|
|
|
func (c *codegen) emitStoreVar(name string) {
|
2020-05-19 15:15:03 +00:00
|
|
|
if name == "_" {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DROP)
|
|
|
|
return
|
|
|
|
}
|
2020-05-07 08:54:35 +00:00
|
|
|
t, i := c.getVarIndex(name)
|
|
|
|
_, base := getBaseOpcode(t)
|
|
|
|
if i < 7 {
|
|
|
|
emit.Opcode(c.prog.BinWriter, base+opcode.Opcode(i))
|
|
|
|
} else {
|
|
|
|
emit.Instruction(c.prog.BinWriter, base+7, []byte{byte(i)})
|
|
|
|
}
|
2018-02-27 09:04:24 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 13:57:42 +00:00
|
|
|
func (c *codegen) emitDefault(t types.Type) {
|
|
|
|
switch t := t.Underlying().(type) {
|
|
|
|
case *types.Basic:
|
2020-05-07 08:54:35 +00:00
|
|
|
info := t.Info()
|
|
|
|
switch {
|
|
|
|
case info&types.IsInteger != 0:
|
|
|
|
emit.Int(c.prog.BinWriter, 0)
|
|
|
|
case info&types.IsString != 0:
|
|
|
|
emit.Bytes(c.prog.BinWriter, []byte{})
|
|
|
|
case info&types.IsBoolean != 0:
|
|
|
|
emit.Bool(c.prog.BinWriter, false)
|
|
|
|
default:
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PUSHNULL)
|
|
|
|
}
|
2020-05-19 13:57:42 +00:00
|
|
|
case *types.Slice:
|
|
|
|
if isCompoundSlice(t) {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NEWARRAY0)
|
2020-05-19 14:02:26 +00:00
|
|
|
} else {
|
|
|
|
emit.Bytes(c.prog.BinWriter, []byte{})
|
2020-05-19 13:57:42 +00:00
|
|
|
}
|
|
|
|
case *types.Struct:
|
|
|
|
emit.Int(c.prog.BinWriter, int64(t.NumFields()))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NEWSTRUCT)
|
|
|
|
default:
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PUSHNULL)
|
2020-05-07 08:54:35 +00:00
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// convertGlobals traverses the AST and only converts global declarations.
|
2018-02-25 12:26:56 +00:00
|
|
|
// If we call this in convertFuncDecl then it will load all global variables
|
|
|
|
// into the scope of the function.
|
2019-02-09 15:53:58 +00:00
|
|
|
func (c *codegen) convertGlobals(f ast.Node) {
|
2018-02-25 12:26:56 +00:00
|
|
|
ast.Inspect(f, func(node ast.Node) bool {
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *ast.FuncDecl:
|
|
|
|
return false
|
|
|
|
case *ast.GenDecl:
|
2020-02-03 10:29:23 +00:00
|
|
|
// constants are loaded directly so there is no need
|
|
|
|
// to store them as a local variables
|
|
|
|
if n.Tok != token.CONST {
|
|
|
|
ast.Walk(c, n)
|
|
|
|
}
|
2018-02-25 12:26:56 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-09 15:53:58 +00:00
|
|
|
func (c *codegen) convertFuncDecl(file ast.Node, decl *ast.FuncDecl) {
|
2018-02-19 09:24:28 +00:00
|
|
|
var (
|
2020-05-06 15:10:20 +00:00
|
|
|
f *funcScope
|
|
|
|
ok, isLambda bool
|
2018-02-19 09:24:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
f, ok = c.funcs[decl.Name.Name]
|
|
|
|
if ok {
|
2018-10-17 17:19:01 +00:00
|
|
|
// If this function is a syscall we will not convert it to bytecode.
|
|
|
|
if isSyscall(f) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
c.setLabel(f.label)
|
2020-05-06 15:10:20 +00:00
|
|
|
} else if f, ok = c.lambda[decl.Name.Name]; ok {
|
|
|
|
isLambda = ok
|
|
|
|
c.setLabel(f.label)
|
2018-02-19 09:24:28 +00:00
|
|
|
} else {
|
|
|
|
f = c.newFunc(decl)
|
|
|
|
}
|
2018-02-24 09:06:48 +00:00
|
|
|
|
2020-03-31 12:56:10 +00:00
|
|
|
f.rng.Start = uint16(c.prog.Len())
|
2018-02-25 12:26:56 +00:00
|
|
|
c.scope = f
|
2018-04-10 09:45:31 +00:00
|
|
|
ast.Inspect(decl, c.scope.analyzeVoidCalls) // @OPTIMIZE
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2018-02-25 12:26:56 +00:00
|
|
|
// All globals copied into the scope of the function need to be added
|
|
|
|
// to the stack size of the function.
|
2020-05-07 08:54:35 +00:00
|
|
|
sizeLoc := f.countLocals()
|
|
|
|
if sizeLoc > 255 {
|
|
|
|
c.prog.Err = errors.New("maximum of 255 local variables is allowed")
|
|
|
|
}
|
|
|
|
sizeArg := f.countArgs()
|
|
|
|
if sizeArg > 255 {
|
|
|
|
c.prog.Err = errors.New("maximum of 255 local variables is allowed")
|
|
|
|
}
|
|
|
|
if sizeLoc != 0 || sizeArg != 0 {
|
|
|
|
emit.Instruction(c.prog.BinWriter, opcode.INITSLOT, []byte{byte(sizeLoc), byte(sizeArg)})
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
|
|
|
|
// We need to handle methods, which in Go, is just syntactic sugar.
|
|
|
|
// The method receiver will be passed in as first argument.
|
|
|
|
// We check if this declaration has a receiver and load it into scope.
|
|
|
|
//
|
2019-02-13 18:01:10 +00:00
|
|
|
// FIXME: For now we will hard cast this to a struct. We can later fine tune this
|
2018-02-19 09:24:28 +00:00
|
|
|
// to support other types.
|
|
|
|
if decl.Recv != nil {
|
|
|
|
for _, arg := range decl.Recv.List {
|
2020-05-07 08:54:35 +00:00
|
|
|
// only create an argument here, it will be stored via INITSLOT
|
2020-05-19 13:04:41 +00:00
|
|
|
c.scope.newVariable(varArgument, arg.Names[0].Name)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the arguments in scope.
|
|
|
|
for _, arg := range decl.Type.Params.List {
|
2020-05-06 15:20:12 +00:00
|
|
|
for _, id := range arg.Names {
|
2020-05-07 08:54:35 +00:00
|
|
|
// only create an argument here, it will be stored via INITSLOT
|
|
|
|
c.scope.newVariable(varArgument, id.Name)
|
2020-05-06 15:20:12 +00:00
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2018-04-10 09:45:31 +00:00
|
|
|
|
|
|
|
ast.Walk(c, decl.Body)
|
|
|
|
|
2020-05-06 12:39:25 +00:00
|
|
|
// If we have reached the end of the function without encountering `return` statement,
|
|
|
|
// we should clean alt.stack manually.
|
|
|
|
// This can be the case with void and named-return functions.
|
|
|
|
if !lastStmtIsReturn(decl) {
|
2020-03-31 13:57:35 +00:00
|
|
|
c.saveSequencePoint(decl.Body)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.RET)
|
2018-02-25 12:26:56 +00:00
|
|
|
}
|
2020-03-31 12:56:10 +00:00
|
|
|
|
|
|
|
f.rng.End = uint16(c.prog.Len() - 1)
|
2020-05-06 15:10:20 +00:00
|
|
|
|
|
|
|
if !isLambda {
|
|
|
|
for _, f := range c.lambda {
|
|
|
|
c.convertFuncDecl(file, f.decl)
|
|
|
|
}
|
|
|
|
c.lambda = make(map[string]*funcScope)
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *codegen) Visit(node ast.Node) ast.Visitor {
|
2019-11-22 10:06:32 +00:00
|
|
|
if c.prog.Err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
switch n := node.(type) {
|
|
|
|
|
2018-02-24 09:06:48 +00:00
|
|
|
// General declarations.
|
2018-02-25 12:26:56 +00:00
|
|
|
// var (
|
|
|
|
// x = 2
|
|
|
|
// )
|
2018-02-24 09:06:48 +00:00
|
|
|
case *ast.GenDecl:
|
2018-02-25 12:26:56 +00:00
|
|
|
for _, spec := range n.Specs {
|
|
|
|
switch t := spec.(type) {
|
|
|
|
case *ast.ValueSpec:
|
2020-04-02 13:36:11 +00:00
|
|
|
for _, id := range t.Names {
|
2020-05-07 08:54:35 +00:00
|
|
|
if c.scope == nil {
|
|
|
|
// it is a global declaration
|
|
|
|
c.newGlobal(id.Name)
|
|
|
|
} else {
|
|
|
|
c.scope.newLocal(id.Name)
|
|
|
|
}
|
2020-04-02 13:36:11 +00:00
|
|
|
c.registerDebugVariable(id.Name, t.Type)
|
|
|
|
}
|
2020-05-19 13:50:20 +00:00
|
|
|
for i := range t.Names {
|
|
|
|
if len(t.Values) != 0 {
|
|
|
|
ast.Walk(c, t.Values[i])
|
2020-05-13 15:09:55 +00:00
|
|
|
} else {
|
2020-05-19 13:57:42 +00:00
|
|
|
c.emitDefault(c.typeOf(t.Type))
|
2020-05-07 08:54:35 +00:00
|
|
|
}
|
2020-05-19 13:50:20 +00:00
|
|
|
c.emitStoreVar(t.Names[i].Name)
|
2018-02-25 12:26:56 +00:00
|
|
|
}
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
case *ast.AssignStmt:
|
2019-12-24 13:46:43 +00:00
|
|
|
multiRet := len(n.Rhs) != len(n.Lhs)
|
2020-03-31 13:57:35 +00:00
|
|
|
c.saveSequencePoint(n)
|
2020-05-18 08:45:20 +00:00
|
|
|
// Assign operations are grouped https://github.com/golang/go/blob/master/src/go/types/stmt.go#L160
|
|
|
|
isAssignOp := token.ADD_ASSIGN <= n.Tok && n.Tok <= token.AND_NOT_ASSIGN
|
|
|
|
if isAssignOp {
|
|
|
|
// RHS can contain exactly one expression, thus there is no need to iterate.
|
|
|
|
ast.Walk(c, n.Lhs[0])
|
|
|
|
ast.Walk(c, n.Rhs[0])
|
|
|
|
c.convertToken(n.Tok)
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
for i := 0; i < len(n.Lhs); i++ {
|
|
|
|
switch t := n.Lhs[i].(type) {
|
|
|
|
case *ast.Ident:
|
2020-05-18 08:45:20 +00:00
|
|
|
if n.Tok == token.DEFINE {
|
2020-04-02 13:36:11 +00:00
|
|
|
if !multiRet {
|
|
|
|
c.registerDebugVariable(t.Name, n.Rhs[i])
|
|
|
|
}
|
2020-05-08 13:10:33 +00:00
|
|
|
if t.Name != "_" {
|
|
|
|
c.scope.newLocal(t.Name)
|
|
|
|
}
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
2020-05-18 08:45:20 +00:00
|
|
|
if !isAssignOp && (i == 0 || !multiRet) {
|
|
|
|
ast.Walk(c, n.Rhs[i])
|
|
|
|
}
|
|
|
|
c.emitStoreVar(t.Name)
|
2018-02-19 09:24:28 +00:00
|
|
|
|
|
|
|
case *ast.SelectorExpr:
|
2018-02-24 09:06:48 +00:00
|
|
|
switch expr := t.X.(type) {
|
2018-02-19 09:24:28 +00:00
|
|
|
case *ast.Ident:
|
2020-05-18 08:45:20 +00:00
|
|
|
if !isAssignOp {
|
|
|
|
ast.Walk(c, n.Rhs[i])
|
|
|
|
}
|
2020-05-13 15:09:55 +00:00
|
|
|
if strct, ok := c.typeOf(expr).Underlying().(*types.Struct); ok {
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(expr.Name) // load the struct
|
2018-02-27 09:04:24 +00:00
|
|
|
i := indexOfStruct(strct, t.Sel.Name) // get the index of the field
|
|
|
|
c.emitStoreStructField(i) // store the field
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
default:
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("nested selector assigns not supported yet")
|
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2018-10-23 08:23:03 +00:00
|
|
|
|
|
|
|
// Assignments to index expressions.
|
|
|
|
// slice[0] = 10
|
|
|
|
case *ast.IndexExpr:
|
2020-05-18 08:45:20 +00:00
|
|
|
if !isAssignOp {
|
|
|
|
ast.Walk(c, n.Rhs[i])
|
|
|
|
}
|
2018-10-23 08:23:03 +00:00
|
|
|
name := t.X.(*ast.Ident).Name
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(name)
|
2020-05-19 12:35:57 +00:00
|
|
|
ast.Walk(c, t.Index)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.ROT)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SETITEM)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
|
2020-02-10 15:14:34 +00:00
|
|
|
case *ast.SliceExpr:
|
|
|
|
name := n.X.(*ast.Ident).Name
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(name)
|
2020-02-10 15:14:34 +00:00
|
|
|
|
|
|
|
if n.Low != nil {
|
|
|
|
ast.Walk(c, n.Low)
|
|
|
|
} else {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PUSH0)
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.High != nil {
|
|
|
|
ast.Walk(c, n.High)
|
|
|
|
} else {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.OVER)
|
2020-04-24 09:24:08 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SIZE)
|
2020-02-10 15:14:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.OVER)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SUB)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SUBSTR)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
case *ast.ReturnStmt:
|
2018-04-02 15:04:42 +00:00
|
|
|
l := c.newLabel()
|
|
|
|
c.setLabel(l)
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2020-03-06 12:11:14 +00:00
|
|
|
cnt := 0
|
|
|
|
for i := range c.labelList {
|
|
|
|
cnt += c.labelList[i].sz
|
|
|
|
}
|
|
|
|
c.dropItems(cnt)
|
|
|
|
|
2020-05-06 14:24:32 +00:00
|
|
|
if len(n.Results) == 0 {
|
|
|
|
results := c.scope.decl.Type.Results
|
|
|
|
if results.NumFields() != 0 {
|
|
|
|
// function with named returns
|
|
|
|
for i := len(results.List) - 1; i >= 0; i-- {
|
|
|
|
names := results.List[i].Names
|
|
|
|
for j := len(names) - 1; j >= 0; j-- {
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(names[j].Name)
|
2020-05-06 14:24:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// first result should be on top of the stack
|
|
|
|
for i := len(n.Results) - 1; i >= 0; i-- {
|
|
|
|
ast.Walk(c, n.Results[i])
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 13:57:35 +00:00
|
|
|
c.saveSequencePoint(n)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.RET)
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.IfStmt:
|
|
|
|
lIf := c.newLabel()
|
|
|
|
lElse := c.newLabel()
|
2018-10-20 05:11:00 +00:00
|
|
|
lElseEnd := c.newLabel()
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
if n.Cond != nil {
|
|
|
|
ast.Walk(c, n.Cond)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFNOTL, lElse)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
c.setLabel(lIf)
|
|
|
|
ast.Walk(c, n.Body)
|
|
|
|
if n.Else != nil {
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, lElseEnd)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2018-10-20 05:11:00 +00:00
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
c.setLabel(lElse)
|
|
|
|
if n.Else != nil {
|
|
|
|
ast.Walk(c, n.Else)
|
|
|
|
}
|
2018-10-20 05:11:00 +00:00
|
|
|
c.setLabel(lElseEnd)
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
2020-01-28 12:47:56 +00:00
|
|
|
case *ast.SwitchStmt:
|
|
|
|
ast.Walk(c, n.Tag)
|
|
|
|
|
|
|
|
eqOpcode := c.getEqualityOpcode(n.Tag)
|
2020-02-18 14:07:38 +00:00
|
|
|
switchEnd, label := c.generateLabel(labelEnd)
|
|
|
|
|
|
|
|
lastSwitch := c.currentSwitch
|
|
|
|
c.currentSwitch = label
|
2020-03-06 12:11:14 +00:00
|
|
|
c.pushStackLabel(label, 1)
|
2020-01-28 12:47:56 +00:00
|
|
|
|
2020-03-10 09:34:05 +00:00
|
|
|
startLabels := make([]uint16, len(n.Body.List))
|
|
|
|
for i := range startLabels {
|
|
|
|
startLabels[i] = c.newLabel()
|
|
|
|
}
|
2020-01-28 12:47:56 +00:00
|
|
|
for i := range n.Body.List {
|
|
|
|
lEnd := c.newLabel()
|
2020-03-10 09:34:05 +00:00
|
|
|
lStart := startLabels[i]
|
2020-01-28 12:47:56 +00:00
|
|
|
cc := n.Body.List[i].(*ast.CaseClause)
|
|
|
|
|
|
|
|
if l := len(cc.List); l != 0 { // if not `default`
|
|
|
|
for j := range cc.List {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
2020-01-28 12:47:56 +00:00
|
|
|
ast.Walk(c, cc.List[j])
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, eqOpcode)
|
2020-01-28 12:47:56 +00:00
|
|
|
if j == l-1 {
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFNOTL, lEnd)
|
2020-01-28 12:47:56 +00:00
|
|
|
} else {
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFL, lStart)
|
2020-01-28 12:47:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.setLabel(lStart)
|
2020-03-10 09:34:05 +00:00
|
|
|
last := len(cc.Body) - 1
|
|
|
|
for j, stmt := range cc.Body {
|
|
|
|
if j == last && isFallthroughStmt(stmt) {
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, startLabels[i+1])
|
2020-03-10 09:34:05 +00:00
|
|
|
break
|
|
|
|
}
|
2020-01-28 12:47:56 +00:00
|
|
|
ast.Walk(c, stmt)
|
|
|
|
}
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, switchEnd)
|
2020-01-28 12:47:56 +00:00
|
|
|
c.setLabel(lEnd)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.setLabel(switchEnd)
|
2020-03-06 12:11:14 +00:00
|
|
|
c.dropStackLabel()
|
2020-01-28 12:47:56 +00:00
|
|
|
|
2020-02-18 14:07:38 +00:00
|
|
|
c.currentSwitch = lastSwitch
|
|
|
|
|
2020-01-28 12:47:56 +00:00
|
|
|
return nil
|
|
|
|
|
2020-05-06 15:10:20 +00:00
|
|
|
case *ast.FuncLit:
|
|
|
|
l := c.newLabel()
|
|
|
|
c.newLambda(l, n)
|
|
|
|
buf := make([]byte, 4)
|
|
|
|
binary.LittleEndian.PutUint16(buf, l)
|
|
|
|
emit.Instruction(c.prog.BinWriter, opcode.PUSHA, buf)
|
|
|
|
return nil
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
case *ast.BasicLit:
|
2020-05-13 15:09:55 +00:00
|
|
|
c.emitLoadConst(c.typeAndValueOf(n))
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.Ident:
|
2020-05-19 12:20:10 +00:00
|
|
|
if tv := c.typeAndValueOf(n); tv.Value != nil {
|
2020-01-27 10:37:33 +00:00
|
|
|
c.emitLoadConst(tv)
|
2018-02-19 09:24:28 +00:00
|
|
|
} else {
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(n.Name)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.CompositeLit:
|
2020-05-13 15:09:55 +00:00
|
|
|
typ := c.typeOf(n.Type).Underlying()
|
|
|
|
switch n.Type.(type) {
|
|
|
|
case *ast.Ident, *ast.SelectorExpr, *ast.MapType:
|
|
|
|
switch typ.(type) {
|
|
|
|
case *types.Struct:
|
|
|
|
c.convertStruct(n)
|
|
|
|
case *types.Map:
|
|
|
|
c.convertMap(n)
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
default:
|
|
|
|
ln := len(n.Elts)
|
2019-10-22 14:56:03 +00:00
|
|
|
// ByteArrays needs a different approach than normal arrays.
|
2020-05-13 15:09:55 +00:00
|
|
|
if isByteSlice(typ) {
|
2018-02-27 09:04:24 +00:00
|
|
|
c.convertByteArray(n)
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
for i := ln - 1; i >= 0; i-- {
|
2020-01-23 12:42:50 +00:00
|
|
|
ast.Walk(c, n.Elts[i])
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Int(c.prog.BinWriter, int64(ln))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PACK)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2018-02-24 09:06:48 +00:00
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.BinaryExpr:
|
|
|
|
switch n.Op {
|
|
|
|
case token.LAND:
|
2020-02-28 14:18:42 +00:00
|
|
|
next := c.newLabel()
|
|
|
|
end := c.newLabel()
|
2018-02-19 09:24:28 +00:00
|
|
|
ast.Walk(c, n.X)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFL, next)
|
2020-02-28 14:18:42 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PUSHF)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, end)
|
2020-02-28 14:18:42 +00:00
|
|
|
c.setLabel(next)
|
2018-02-19 09:24:28 +00:00
|
|
|
ast.Walk(c, n.Y)
|
2020-02-28 14:18:42 +00:00
|
|
|
c.setLabel(end)
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
case token.LOR:
|
2020-02-28 14:18:42 +00:00
|
|
|
next := c.newLabel()
|
|
|
|
end := c.newLabel()
|
2018-02-19 09:24:28 +00:00
|
|
|
ast.Walk(c, n.X)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFNOTL, next)
|
2020-02-28 14:18:42 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PUSHT)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, end)
|
2020-02-28 14:18:42 +00:00
|
|
|
c.setLabel(next)
|
2018-02-19 09:24:28 +00:00
|
|
|
ast.Walk(c, n.Y)
|
2020-02-28 14:18:42 +00:00
|
|
|
c.setLabel(end)
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
default:
|
|
|
|
// The AST package will try to resolve all basic literals for us.
|
|
|
|
// If the typeinfo.Value is not nil we know that the expr is resolved
|
|
|
|
// and needs no further action. e.g. x := 2 + 2 + 2 will be resolved to 6.
|
2019-02-13 18:01:10 +00:00
|
|
|
// NOTE: Constants will also be automatically resolved be the AST parser.
|
2018-02-25 12:26:56 +00:00
|
|
|
// example:
|
|
|
|
// const x = 10
|
|
|
|
// x + 2 will results into 12
|
2020-05-13 15:09:55 +00:00
|
|
|
tinfo := c.typeAndValueOf(n)
|
2018-10-29 15:36:13 +00:00
|
|
|
if tinfo.Value != nil {
|
2018-02-19 09:24:28 +00:00
|
|
|
c.emitLoadConst(tinfo)
|
2018-02-25 12:26:56 +00:00
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ast.Walk(c, n.X)
|
|
|
|
ast.Walk(c, n.Y)
|
2018-10-29 15:36:13 +00:00
|
|
|
|
2019-08-16 10:05:07 +00:00
|
|
|
switch {
|
|
|
|
case n.Op == token.ADD:
|
|
|
|
// VM has separate opcodes for number and string concatenation
|
2020-05-13 15:09:55 +00:00
|
|
|
if isString(tinfo.Type) {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.CAT)
|
2018-10-29 15:36:13 +00:00
|
|
|
} else {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.ADD)
|
2018-10-29 15:36:13 +00:00
|
|
|
}
|
2019-08-16 10:05:07 +00:00
|
|
|
case n.Op == token.EQL:
|
|
|
|
// VM has separate opcodes for number and string equality
|
2020-01-28 12:47:56 +00:00
|
|
|
op := c.getEqualityOpcode(n.X)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, op)
|
2019-08-19 16:18:17 +00:00
|
|
|
case n.Op == token.NEQ:
|
|
|
|
// VM has separate opcodes for number and string equality
|
2020-05-13 15:09:55 +00:00
|
|
|
if isString(c.typeOf(n.X)) {
|
2020-04-30 07:52:29 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NOTEQUAL)
|
2019-08-19 16:18:17 +00:00
|
|
|
} else {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NUMNOTEQUAL)
|
2019-08-19 16:18:17 +00:00
|
|
|
}
|
2019-08-16 10:05:07 +00:00
|
|
|
default:
|
2018-10-29 15:36:13 +00:00
|
|
|
c.convertToken(n.Op)
|
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
case *ast.CallExpr:
|
|
|
|
var (
|
2018-04-04 19:41:19 +00:00
|
|
|
f *funcScope
|
|
|
|
ok bool
|
2020-05-06 15:10:20 +00:00
|
|
|
name string
|
2018-04-04 19:41:19 +00:00
|
|
|
numArgs = len(n.Args)
|
|
|
|
isBuiltin = isBuiltin(n.Fun)
|
2018-02-19 09:24:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
switch fun := n.Fun.(type) {
|
|
|
|
case *ast.Ident:
|
|
|
|
f, ok = c.funcs[fun.Name]
|
2018-04-04 19:41:19 +00:00
|
|
|
if !ok && !isBuiltin {
|
2020-05-06 15:10:20 +00:00
|
|
|
name = fun.Name
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
case *ast.SelectorExpr:
|
2018-02-24 09:06:48 +00:00
|
|
|
// If this is a method call we need to walk the AST to load the struct locally.
|
|
|
|
// Otherwise this is a function call from a imported package and we can call it
|
|
|
|
// directly.
|
|
|
|
if c.typeInfo.Selections[fun] != nil {
|
|
|
|
ast.Walk(c, fun.X)
|
|
|
|
// Dont forget to add 1 extra argument when its a method.
|
|
|
|
numArgs++
|
|
|
|
}
|
2018-08-22 07:51:35 +00:00
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
f, ok = c.funcs[fun.Sel.Name]
|
2018-08-22 07:51:35 +00:00
|
|
|
// @FIXME this could cause runtime errors.
|
|
|
|
f.selector = fun.X.(*ast.Ident)
|
2018-02-19 09:24:28 +00:00
|
|
|
if !ok {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("could not resolve function %s", fun.Sel.Name)
|
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2018-05-06 06:03:26 +00:00
|
|
|
case *ast.ArrayType:
|
2020-01-27 10:37:33 +00:00
|
|
|
// For now we will assume that there are only byte slice conversions.
|
|
|
|
// E.g. []byte("foobar") or []byte(scriptHash).
|
|
|
|
ast.Walk(c, n.Args[0])
|
2018-05-06 06:03:26 +00:00
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 13:57:35 +00:00
|
|
|
c.saveSequencePoint(n)
|
|
|
|
|
2020-01-29 07:08:24 +00:00
|
|
|
args := transformArgs(n.Fun, n.Args)
|
2020-01-27 07:59:57 +00:00
|
|
|
|
2018-02-24 09:06:48 +00:00
|
|
|
// Handle the arguments
|
2020-01-27 07:59:57 +00:00
|
|
|
for _, arg := range args {
|
2018-02-19 09:24:28 +00:00
|
|
|
ast.Walk(c, arg)
|
|
|
|
}
|
2018-04-04 19:41:19 +00:00
|
|
|
// Do not swap for builtin functions.
|
|
|
|
if !isBuiltin {
|
2020-02-10 07:43:29 +00:00
|
|
|
c.emitReverse(numArgs)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2018-03-25 16:21:00 +00:00
|
|
|
// Check builtin first to avoid nil pointer on funcScope!
|
2019-02-09 15:53:58 +00:00
|
|
|
switch {
|
|
|
|
case isBuiltin:
|
2018-03-25 16:21:00 +00:00
|
|
|
// Use the ident to check, builtins are not in func scopes.
|
|
|
|
// We can be sure builtins are of type *ast.Ident.
|
2018-04-22 18:11:37 +00:00
|
|
|
c.convertBuiltin(n)
|
2020-05-06 15:10:20 +00:00
|
|
|
case name != "":
|
|
|
|
// Function was not found thus is can be only an invocation of func-typed variable.
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(name)
|
2020-05-06 15:10:20 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.CALLA)
|
2018-08-22 07:51:35 +00:00
|
|
|
case isSyscall(f):
|
2020-04-05 15:05:40 +00:00
|
|
|
c.convertSyscall(n, f.selector.Name, f.name)
|
2019-02-09 15:53:58 +00:00
|
|
|
default:
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Call(c.prog.BinWriter, opcode.CALLL, f.label)
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.SelectorExpr:
|
|
|
|
switch t := n.X.(type) {
|
|
|
|
case *ast.Ident:
|
2020-05-13 15:09:55 +00:00
|
|
|
if strct, ok := c.typeOf(t).Underlying().(*types.Struct); ok {
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitLoadVar(t.Name) // load the struct
|
2018-02-27 09:04:24 +00:00
|
|
|
i := indexOfStruct(strct, n.Sel.Name)
|
2018-03-25 16:21:00 +00:00
|
|
|
c.emitLoadField(i) // load the field
|
2018-02-25 12:26:56 +00:00
|
|
|
}
|
2018-02-19 09:24:28 +00:00
|
|
|
default:
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("nested selectors not supported yet")
|
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
return nil
|
2018-02-27 09:04:24 +00:00
|
|
|
|
|
|
|
case *ast.UnaryExpr:
|
2018-04-04 19:41:19 +00:00
|
|
|
ast.Walk(c, n.X)
|
2019-02-19 13:50:34 +00:00
|
|
|
// From https://golang.org/ref/spec#Operators
|
|
|
|
// there can be only following unary operators
|
|
|
|
// "+" | "-" | "!" | "^" | "*" | "&" | "<-" .
|
|
|
|
// of which last three are not used in SC
|
|
|
|
switch n.Op {
|
|
|
|
case token.ADD:
|
|
|
|
// +10 == 10, no need to do anything in this case
|
|
|
|
case token.SUB:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NEGATE)
|
2019-02-19 13:50:34 +00:00
|
|
|
case token.NOT:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NOT)
|
2019-02-19 13:50:34 +00:00
|
|
|
case token.XOR:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.INVERT)
|
2019-02-19 13:50:34 +00:00
|
|
|
default:
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("invalid unary operator: %s", n.Op)
|
|
|
|
return nil
|
2019-02-19 13:50:34 +00:00
|
|
|
}
|
2018-04-04 19:41:19 +00:00
|
|
|
return nil
|
2018-03-25 16:21:00 +00:00
|
|
|
|
2018-04-02 15:04:42 +00:00
|
|
|
case *ast.IncDecStmt:
|
|
|
|
ast.Walk(c, n.X)
|
|
|
|
c.convertToken(n.Tok)
|
|
|
|
|
|
|
|
// For now only identifiers are supported for (post) for stmts.
|
|
|
|
// for i := 0; i < 10; i++ {}
|
|
|
|
// Where the post stmt is ( i++ )
|
|
|
|
if ident, ok := n.X.(*ast.Ident); ok {
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitStoreVar(ident.Name)
|
2018-04-02 15:04:42 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
|
2018-03-25 16:21:00 +00:00
|
|
|
case *ast.IndexExpr:
|
|
|
|
// Walk the expression, this could be either an Ident or SelectorExpr.
|
|
|
|
// This will load local whatever X is.
|
|
|
|
ast.Walk(c, n.X)
|
2020-05-19 12:35:57 +00:00
|
|
|
ast.Walk(c, n.Index)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PICKITEM) // just pickitem here
|
2020-01-23 14:28:35 +00:00
|
|
|
|
2018-03-25 16:21:00 +00:00
|
|
|
return nil
|
2018-04-02 15:04:42 +00:00
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
case *ast.BranchStmt:
|
2020-02-18 14:07:38 +00:00
|
|
|
var label string
|
2020-02-17 13:48:41 +00:00
|
|
|
if n.Label != nil {
|
|
|
|
label = n.Label.Name
|
2020-02-18 14:07:38 +00:00
|
|
|
} else if n.Tok == token.BREAK {
|
|
|
|
label = c.currentSwitch
|
|
|
|
} else if n.Tok == token.CONTINUE {
|
|
|
|
label = c.currentFor
|
2020-02-17 13:48:41 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 12:11:14 +00:00
|
|
|
cnt := 0
|
|
|
|
for i := len(c.labelList) - 1; i >= 0 && c.labelList[i].name != label; i-- {
|
|
|
|
cnt += c.labelList[i].sz
|
|
|
|
}
|
|
|
|
c.dropItems(cnt)
|
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
switch n.Tok {
|
|
|
|
case token.BREAK:
|
|
|
|
end := c.getLabelOffset(labelEnd, label)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, end)
|
2020-02-17 13:48:41 +00:00
|
|
|
case token.CONTINUE:
|
2020-02-17 14:19:54 +00:00
|
|
|
post := c.getLabelOffset(labelPost, label)
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, post)
|
2020-02-17 13:48:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
case *ast.LabeledStmt:
|
|
|
|
c.nextLabel = n.Label.Name
|
|
|
|
|
|
|
|
ast.Walk(c, n.Stmt)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
2018-04-02 15:04:42 +00:00
|
|
|
case *ast.ForStmt:
|
2020-02-17 13:48:41 +00:00
|
|
|
fstart, label := c.generateLabel(labelStart)
|
|
|
|
fend := c.newNamedLabel(labelEnd, label)
|
2020-02-17 14:19:54 +00:00
|
|
|
fpost := c.newNamedLabel(labelPost, label)
|
2020-02-17 13:48:41 +00:00
|
|
|
|
|
|
|
lastLabel := c.currentFor
|
2020-02-18 14:07:38 +00:00
|
|
|
lastSwitch := c.currentSwitch
|
2020-02-17 13:48:41 +00:00
|
|
|
c.currentFor = label
|
2020-02-18 14:07:38 +00:00
|
|
|
c.currentSwitch = label
|
2018-04-02 15:04:42 +00:00
|
|
|
|
|
|
|
// Walk the initializer and condition.
|
2020-01-23 08:48:41 +00:00
|
|
|
if n.Init != nil {
|
|
|
|
ast.Walk(c, n.Init)
|
|
|
|
}
|
2018-04-02 15:04:42 +00:00
|
|
|
|
|
|
|
// Set label and walk the condition.
|
2020-03-06 12:11:14 +00:00
|
|
|
c.pushStackLabel(label, 0)
|
2018-04-02 15:04:42 +00:00
|
|
|
c.setLabel(fstart)
|
2020-03-26 11:57:57 +00:00
|
|
|
if n.Cond != nil {
|
|
|
|
ast.Walk(c, n.Cond)
|
2018-04-02 15:04:42 +00:00
|
|
|
|
2020-03-26 11:57:57 +00:00
|
|
|
// Jump if the condition is false
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFNOTL, fend)
|
2020-03-26 11:57:57 +00:00
|
|
|
}
|
2018-04-02 15:04:42 +00:00
|
|
|
|
|
|
|
// Walk body followed by the iterator (post stmt).
|
|
|
|
ast.Walk(c, n.Body)
|
2020-02-17 14:19:54 +00:00
|
|
|
c.setLabel(fpost)
|
2020-01-23 08:48:41 +00:00
|
|
|
if n.Post != nil {
|
|
|
|
ast.Walk(c, n.Post)
|
|
|
|
}
|
2018-04-02 15:04:42 +00:00
|
|
|
|
|
|
|
// Jump back to condition.
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, fstart)
|
2018-04-02 15:04:42 +00:00
|
|
|
c.setLabel(fend)
|
2020-03-06 12:11:14 +00:00
|
|
|
c.dropStackLabel()
|
2018-04-02 15:04:42 +00:00
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
c.currentFor = lastLabel
|
2020-02-18 14:07:38 +00:00
|
|
|
c.currentSwitch = lastSwitch
|
2020-02-17 13:48:41 +00:00
|
|
|
|
2018-04-02 15:04:42 +00:00
|
|
|
return nil
|
2018-04-10 09:45:31 +00:00
|
|
|
|
2020-02-11 12:26:11 +00:00
|
|
|
case *ast.RangeStmt:
|
2020-02-19 08:24:31 +00:00
|
|
|
start, label := c.generateLabel(labelStart)
|
|
|
|
end := c.newNamedLabel(labelEnd, label)
|
|
|
|
post := c.newNamedLabel(labelPost, label)
|
|
|
|
|
|
|
|
lastFor := c.currentFor
|
|
|
|
lastSwitch := c.currentSwitch
|
|
|
|
c.currentFor = label
|
|
|
|
c.currentSwitch = label
|
2020-02-11 12:26:11 +00:00
|
|
|
|
|
|
|
ast.Walk(c, n.X)
|
2020-05-19 15:01:41 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Iterator.Create")
|
2020-02-11 12:26:11 +00:00
|
|
|
|
2020-05-19 15:01:41 +00:00
|
|
|
c.pushStackLabel(label, 1)
|
2020-02-11 12:26:11 +00:00
|
|
|
c.setLabel(start)
|
|
|
|
|
2020-05-19 15:01:41 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Enumerator.Next")
|
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPIFNOTL, end)
|
2020-02-11 12:26:11 +00:00
|
|
|
|
|
|
|
if n.Key != nil {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
2020-05-19 15:01:41 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Iterator.Key")
|
2020-05-07 08:54:35 +00:00
|
|
|
c.emitStoreVar(n.Key.(*ast.Ident).Name)
|
2020-02-11 12:26:11 +00:00
|
|
|
}
|
2020-05-19 15:07:29 +00:00
|
|
|
if n.Value != nil {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Enumerator.Value")
|
|
|
|
c.emitStoreVar(n.Value.(*ast.Ident).Name)
|
|
|
|
}
|
2020-02-11 12:26:11 +00:00
|
|
|
|
|
|
|
ast.Walk(c, n.Body)
|
|
|
|
|
2020-02-19 08:24:31 +00:00
|
|
|
c.setLabel(post)
|
|
|
|
|
2020-04-23 08:56:36 +00:00
|
|
|
emit.Jmp(c.prog.BinWriter, opcode.JMPL, start)
|
2020-02-11 12:26:11 +00:00
|
|
|
|
|
|
|
c.setLabel(end)
|
2020-03-06 12:11:14 +00:00
|
|
|
c.dropStackLabel()
|
2020-02-11 12:26:11 +00:00
|
|
|
|
2020-02-19 08:24:31 +00:00
|
|
|
c.currentFor = lastFor
|
|
|
|
c.currentSwitch = lastSwitch
|
|
|
|
|
2020-02-11 12:26:11 +00:00
|
|
|
return nil
|
|
|
|
|
2018-04-10 09:45:31 +00:00
|
|
|
// We dont really care about assertions for the core logic.
|
|
|
|
// The only thing we need is to please the compiler type checking.
|
|
|
|
// For this to work properly, we only need to walk the expression
|
|
|
|
// not the assertion type.
|
|
|
|
case *ast.TypeAssertExpr:
|
|
|
|
ast.Walk(c, n.X)
|
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2020-03-10 09:34:05 +00:00
|
|
|
func isFallthroughStmt(c ast.Node) bool {
|
|
|
|
s, ok := c.(*ast.BranchStmt)
|
|
|
|
return ok && s.Tok == token.FALLTHROUGH
|
|
|
|
}
|
|
|
|
|
2020-03-06 12:11:14 +00:00
|
|
|
func (c *codegen) pushStackLabel(name string, size int) {
|
|
|
|
c.labelList = append(c.labelList, labelWithStackSize{
|
|
|
|
name: name,
|
|
|
|
sz: size,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *codegen) dropStackLabel() {
|
|
|
|
last := len(c.labelList) - 1
|
|
|
|
c.dropItems(c.labelList[last].sz)
|
|
|
|
c.labelList = c.labelList[:last]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *codegen) dropItems(n int) {
|
|
|
|
if n < 4 {
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DROP)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
emit.Int(c.prog.BinWriter, int64(n))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PACK)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DROP)
|
|
|
|
}
|
|
|
|
|
2020-02-10 07:43:29 +00:00
|
|
|
// emitReverse reverses top num items of the stack.
|
|
|
|
func (c *codegen) emitReverse(num int) {
|
|
|
|
switch num {
|
|
|
|
case 2:
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SWAP)
|
|
|
|
case 3:
|
2020-05-06 09:12:29 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.REVERSE3)
|
|
|
|
case 4:
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.REVERSE4)
|
2020-02-10 07:43:29 +00:00
|
|
|
default:
|
2020-05-06 09:12:29 +00:00
|
|
|
emit.Int(c.prog.BinWriter, int64(num))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.REVERSEN)
|
2020-02-10 07:43:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-17 13:48:41 +00:00
|
|
|
// generateLabel returns a new label.
|
2020-02-21 08:50:03 +00:00
|
|
|
func (c *codegen) generateLabel(typ labelOffsetType) (uint16, string) {
|
2020-02-17 13:48:41 +00:00
|
|
|
name := c.nextLabel
|
|
|
|
if name == "" {
|
|
|
|
name = fmt.Sprintf("@%d", len(c.l))
|
|
|
|
}
|
|
|
|
|
|
|
|
c.nextLabel = ""
|
|
|
|
return c.newNamedLabel(typ, name), name
|
|
|
|
}
|
|
|
|
|
2020-02-21 08:50:03 +00:00
|
|
|
func (c *codegen) getLabelOffset(typ labelOffsetType, name string) uint16 {
|
2020-02-17 13:48:41 +00:00
|
|
|
return c.labels[labelWithType{name: name, typ: typ}]
|
|
|
|
}
|
|
|
|
|
2020-01-28 12:47:56 +00:00
|
|
|
func (c *codegen) getEqualityOpcode(expr ast.Expr) opcode.Opcode {
|
2020-05-13 15:09:55 +00:00
|
|
|
t, ok := c.typeOf(expr).Underlying().(*types.Basic)
|
2020-01-28 12:47:56 +00:00
|
|
|
if ok && t.Info()&types.IsNumeric != 0 {
|
|
|
|
return opcode.NUMEQUAL
|
|
|
|
}
|
|
|
|
|
|
|
|
return opcode.EQUAL
|
|
|
|
}
|
|
|
|
|
2020-01-27 07:59:57 +00:00
|
|
|
// getByteArray returns byte array value from constant expr.
|
|
|
|
// Only literals are supported.
|
|
|
|
func (c *codegen) getByteArray(expr ast.Expr) []byte {
|
|
|
|
switch t := expr.(type) {
|
|
|
|
case *ast.CompositeLit:
|
2020-05-13 15:09:55 +00:00
|
|
|
if !isByteSlice(c.typeOf(t.Type)) {
|
2020-01-27 07:59:57 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
buf := make([]byte, len(t.Elts))
|
|
|
|
for i := 0; i < len(t.Elts); i++ {
|
2020-05-13 15:09:55 +00:00
|
|
|
t := c.typeAndValueOf(t.Elts[i])
|
2020-01-27 07:59:57 +00:00
|
|
|
val, _ := constant.Int64Val(t.Value)
|
|
|
|
buf[i] = byte(val)
|
|
|
|
}
|
|
|
|
return buf
|
2020-01-27 12:30:36 +00:00
|
|
|
case *ast.CallExpr:
|
2020-05-13 15:09:55 +00:00
|
|
|
if tv := c.typeAndValueOf(t.Args[0]); tv.Value != nil {
|
2020-01-27 12:30:36 +00:00
|
|
|
val := constant.StringVal(tv.Value)
|
|
|
|
return []byte(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-01-27 07:59:57 +00:00
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 15:05:40 +00:00
|
|
|
func (c *codegen) convertSyscall(expr *ast.CallExpr, api, name string) {
|
2018-08-22 07:51:35 +00:00
|
|
|
api, ok := syscalls[api][name]
|
2018-02-24 09:06:48 +00:00
|
|
|
if !ok {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("unknown VM syscall api: %s", name)
|
|
|
|
return
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
2020-04-05 15:05:40 +00:00
|
|
|
switch name {
|
|
|
|
case "Notify":
|
|
|
|
numArgs := len(expr.Args)
|
|
|
|
emit.Int(c.prog.BinWriter, int64(numArgs))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.PACK)
|
|
|
|
}
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, api)
|
2018-10-17 17:19:01 +00:00
|
|
|
|
|
|
|
// This NOP instruction is basically not needed, but if we do, we have a
|
|
|
|
// one to one matching avm file with neo-python which is very nice for debugging.
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NOP)
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
2018-04-22 18:11:37 +00:00
|
|
|
func (c *codegen) convertBuiltin(expr *ast.CallExpr) {
|
|
|
|
var name string
|
|
|
|
switch t := expr.Fun.(type) {
|
|
|
|
case *ast.Ident:
|
|
|
|
name = t.Name
|
|
|
|
case *ast.SelectorExpr:
|
|
|
|
name = t.Sel.Name
|
|
|
|
}
|
|
|
|
|
2018-03-25 16:21:00 +00:00
|
|
|
switch name {
|
|
|
|
case "len":
|
2020-04-24 09:24:08 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SIZE)
|
2018-03-25 16:21:00 +00:00
|
|
|
case "append":
|
2019-09-12 14:39:23 +00:00
|
|
|
arg := expr.Args[0]
|
|
|
|
typ := c.typeInfo.Types[arg].Type
|
2020-05-13 15:09:55 +00:00
|
|
|
if isByteSlice(typ) {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.CAT)
|
2019-09-12 14:39:23 +00:00
|
|
|
} else {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.OVER)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SWAP)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.APPEND)
|
2019-09-12 14:39:23 +00:00
|
|
|
}
|
2020-01-28 14:18:38 +00:00
|
|
|
case "panic":
|
|
|
|
arg := expr.Args[0]
|
|
|
|
if isExprNil(arg) {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DROP)
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.THROW)
|
2020-05-13 15:09:55 +00:00
|
|
|
} else if isString(c.typeInfo.Types[arg].Type) {
|
2020-01-29 07:08:24 +00:00
|
|
|
ast.Walk(c, arg)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Runtime.Log")
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.THROW)
|
2020-01-28 14:18:38 +00:00
|
|
|
} else {
|
|
|
|
c.prog.Err = errors.New("panic should have string or nil argument")
|
|
|
|
}
|
2020-04-28 12:46:03 +00:00
|
|
|
case "ToInteger", "ToByteArray", "ToBool":
|
|
|
|
typ := vm.IntegerT
|
|
|
|
switch name {
|
|
|
|
case "ToByteArray":
|
|
|
|
typ = vm.ByteArrayT
|
|
|
|
case "ToBool":
|
|
|
|
typ = vm.BooleanT
|
|
|
|
}
|
|
|
|
emit.Instruction(c.prog.BinWriter, opcode.CONVERT, []byte{byte(typ)})
|
2018-04-22 18:11:37 +00:00
|
|
|
case "SHA256":
|
2020-04-28 13:37:42 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, "Neo.Crypto.SHA256")
|
2020-01-27 07:59:57 +00:00
|
|
|
case "AppCall":
|
2020-05-07 11:38:19 +00:00
|
|
|
c.emitReverse(len(expr.Args))
|
2020-01-29 07:08:24 +00:00
|
|
|
buf := c.getByteArray(expr.Args[0])
|
|
|
|
if len(buf) != 20 {
|
|
|
|
c.prog.Err = errors.New("invalid script hash")
|
|
|
|
}
|
2020-05-07 11:38:19 +00:00
|
|
|
emit.Syscall(c.prog.BinWriter, "System.Contract.Call")
|
2018-08-23 17:44:17 +00:00
|
|
|
case "Equals":
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.EQUAL)
|
2018-07-02 13:02:00 +00:00
|
|
|
case "FromAddress":
|
|
|
|
// We can be sure that this is a ast.BasicLit just containing a simple
|
2019-02-13 18:01:10 +00:00
|
|
|
// address string. Note that the string returned from calling Value will
|
|
|
|
// contain double quotes that need to be stripped.
|
2018-07-02 13:02:00 +00:00
|
|
|
addressStr := expr.Args[0].(*ast.BasicLit).Value
|
|
|
|
addressStr = strings.Replace(addressStr, "\"", "", 2)
|
2019-12-25 14:34:18 +00:00
|
|
|
uint160, err := address.StringToUint160(addressStr)
|
2018-07-02 13:02:00 +00:00
|
|
|
if err != nil {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = err
|
|
|
|
return
|
2018-07-02 13:02:00 +00:00
|
|
|
}
|
2019-11-27 09:20:31 +00:00
|
|
|
bytes := uint160.BytesBE()
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Bytes(c.prog.BinWriter, bytes)
|
2018-03-25 16:21:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 07:08:24 +00:00
|
|
|
// transformArgs returns a list of function arguments
|
|
|
|
// which should be put on stack.
|
|
|
|
// There are special cases for builtins:
|
2020-05-07 11:38:19 +00:00
|
|
|
// 1. With FromAddress, parameter conversion is happening at compile-time
|
2020-01-29 07:08:24 +00:00
|
|
|
// so there is no need to push parameters on stack and perform an actual call
|
2020-05-07 11:38:19 +00:00
|
|
|
// 2. With panic, generated code depends on if argument was nil or a string so
|
2020-01-29 07:08:24 +00:00
|
|
|
// it should be handled accordingly.
|
|
|
|
func transformArgs(fun ast.Expr, args []ast.Expr) []ast.Expr {
|
|
|
|
switch f := fun.(type) {
|
|
|
|
case *ast.SelectorExpr:
|
2020-05-07 11:38:19 +00:00
|
|
|
if f.Sel.Name == "FromAddress" {
|
2020-01-29 07:08:24 +00:00
|
|
|
return args[1:]
|
|
|
|
}
|
|
|
|
case *ast.Ident:
|
|
|
|
if f.Name == "panic" {
|
|
|
|
return args[1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return args
|
|
|
|
}
|
|
|
|
|
2018-02-27 09:04:24 +00:00
|
|
|
func (c *codegen) convertByteArray(lit *ast.CompositeLit) {
|
|
|
|
buf := make([]byte, len(lit.Elts))
|
|
|
|
for i := 0; i < len(lit.Elts); i++ {
|
2020-05-13 15:09:55 +00:00
|
|
|
t := c.typeAndValueOf(lit.Elts[i])
|
2018-02-27 09:04:24 +00:00
|
|
|
val, _ := constant.Int64Val(t.Value)
|
|
|
|
buf[i] = byte(val)
|
|
|
|
}
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Bytes(c.prog.BinWriter, buf)
|
2018-02-27 09:04:24 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 14:06:15 +00:00
|
|
|
func (c *codegen) convertMap(lit *ast.CompositeLit) {
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NEWMAP)
|
2020-01-23 14:06:15 +00:00
|
|
|
for i := range lit.Elts {
|
|
|
|
elem := lit.Elts[i].(*ast.KeyValueExpr)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
2020-01-23 14:06:15 +00:00
|
|
|
ast.Walk(c, elem.Key)
|
|
|
|
ast.Walk(c, elem.Value)
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SETITEM)
|
2020-01-23 14:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
func (c *codegen) convertStruct(lit *ast.CompositeLit) {
|
2018-02-24 09:06:48 +00:00
|
|
|
// Create a new structScope to initialize and store
|
|
|
|
// the positions of its variables.
|
2020-05-13 15:09:55 +00:00
|
|
|
strct, ok := c.typeOf(lit).Underlying().(*types.Struct)
|
2018-02-24 09:06:48 +00:00
|
|
|
if !ok {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("the given literal is not of type struct: %v", lit)
|
|
|
|
return
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NOP)
|
|
|
|
emit.Int(c.prog.BinWriter, int64(strct.NumFields()))
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NEWSTRUCT)
|
2018-02-19 09:24:28 +00:00
|
|
|
|
2018-02-24 09:06:48 +00:00
|
|
|
// We need to locally store all the fields, even if they are not initialized.
|
|
|
|
// We will initialize all fields to their "zero" value.
|
2018-02-27 09:04:24 +00:00
|
|
|
for i := 0; i < strct.NumFields(); i++ {
|
|
|
|
sField := strct.Field(i)
|
2018-02-24 09:06:48 +00:00
|
|
|
fieldAdded := false
|
|
|
|
|
|
|
|
// Fields initialized by the program.
|
|
|
|
for _, field := range lit.Elts {
|
|
|
|
f := field.(*ast.KeyValueExpr)
|
|
|
|
fieldName := f.Key.(*ast.Ident).Name
|
|
|
|
|
|
|
|
if sField.Name() == fieldName {
|
2020-02-11 08:10:51 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
|
|
|
|
2018-02-27 09:04:24 +00:00
|
|
|
pos := indexOfStruct(strct, fieldName)
|
2020-02-11 08:10:51 +00:00
|
|
|
emit.Int(c.prog.BinWriter, int64(pos))
|
|
|
|
|
|
|
|
ast.Walk(c, f.Value)
|
|
|
|
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SETITEM)
|
2018-02-24 09:06:48 +00:00
|
|
|
fieldAdded = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if fieldAdded {
|
|
|
|
continue
|
|
|
|
}
|
2018-02-27 09:04:24 +00:00
|
|
|
|
2019-11-22 14:16:52 +00:00
|
|
|
typeAndVal, err := typeAndValueForField(sField)
|
|
|
|
if err != nil {
|
|
|
|
c.prog.Err = err
|
|
|
|
return
|
|
|
|
}
|
2020-02-11 08:10:51 +00:00
|
|
|
|
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DUP)
|
|
|
|
emit.Int(c.prog.BinWriter, int64(i))
|
2018-02-27 09:04:24 +00:00
|
|
|
c.emitLoadConst(typeAndVal)
|
2020-02-11 08:10:51 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SETITEM)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-24 09:06:48 +00:00
|
|
|
func (c *codegen) convertToken(tok token.Token) {
|
|
|
|
switch tok {
|
|
|
|
case token.ADD_ASSIGN:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.ADD)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.SUB_ASSIGN:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SUB)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.MUL_ASSIGN:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.MUL)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.QUO_ASSIGN:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DIV)
|
2019-12-19 10:11:05 +00:00
|
|
|
case token.REM_ASSIGN:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.MOD)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.ADD:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.ADD)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.SUB:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SUB)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.MUL:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.MUL)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.QUO:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DIV)
|
2019-12-19 10:11:05 +00:00
|
|
|
case token.REM:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.MOD)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.LSS:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.LT)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.LEQ:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.LTE)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.GTR:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.GT)
|
2018-02-24 09:06:48 +00:00
|
|
|
case token.GEQ:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.GTE)
|
2018-04-02 15:04:42 +00:00
|
|
|
case token.EQL:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NUMEQUAL)
|
2018-04-02 15:04:42 +00:00
|
|
|
case token.NEQ:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NUMNOTEQUAL)
|
2018-04-02 15:04:42 +00:00
|
|
|
case token.DEC:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.DEC)
|
2018-04-02 15:04:42 +00:00
|
|
|
case token.INC:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.INC)
|
2018-04-04 19:41:19 +00:00
|
|
|
case token.NOT:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.NOT)
|
2018-10-26 14:02:32 +00:00
|
|
|
case token.AND:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.AND)
|
2018-10-26 14:02:32 +00:00
|
|
|
case token.OR:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.OR)
|
2018-10-26 14:02:32 +00:00
|
|
|
case token.SHL:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SHL)
|
2018-10-26 14:02:32 +00:00
|
|
|
case token.SHR:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.SHR)
|
2018-10-26 14:02:32 +00:00
|
|
|
case token.XOR:
|
2020-02-03 14:58:21 +00:00
|
|
|
emit.Opcode(c.prog.BinWriter, opcode.XOR)
|
2018-02-24 09:06:48 +00:00
|
|
|
default:
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("compiler could not convert token: %s", tok)
|
|
|
|
return
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 09:24:28 +00:00
|
|
|
func (c *codegen) newFunc(decl *ast.FuncDecl) *funcScope {
|
|
|
|
f := newFuncScope(decl, c.newLabel())
|
|
|
|
c.funcs[f.name] = f
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:10:20 +00:00
|
|
|
func (c *codegen) newLambda(u uint16, lit *ast.FuncLit) {
|
|
|
|
name := fmt.Sprintf("lambda@%d", u)
|
|
|
|
c.lambda[name] = newFuncScope(&ast.FuncDecl{
|
|
|
|
Name: ast.NewIdent(name),
|
|
|
|
Type: lit.Type,
|
|
|
|
Body: lit.Body,
|
|
|
|
}, u)
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:16:32 +00:00
|
|
|
func (c *codegen) compile(info *buildInfo, pkg *loader.PackageInfo) error {
|
2019-10-22 14:56:03 +00:00
|
|
|
// Resolve the entrypoint of the program.
|
2018-02-25 12:26:56 +00:00
|
|
|
main, mainFile := resolveEntryPoint(mainIdent, pkg)
|
2018-02-19 09:24:28 +00:00
|
|
|
if main == nil {
|
2019-11-22 14:16:52 +00:00
|
|
|
c.prog.Err = fmt.Errorf("could not find func main. Did you forget to declare it? ")
|
2020-03-31 13:16:32 +00:00
|
|
|
return c.prog.Err
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 09:04:24 +00:00
|
|
|
funUsage := analyzeFuncUsage(info.program.AllPackages)
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Bring all imported functions into scope.
|
2018-02-25 12:26:56 +00:00
|
|
|
for _, pkg := range info.program.AllPackages {
|
|
|
|
for _, f := range pkg.Files {
|
|
|
|
c.resolveFuncDecls(f)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 08:54:35 +00:00
|
|
|
c.traverseGlobals(mainFile)
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// convert the entry point first.
|
2018-02-25 12:26:56 +00:00
|
|
|
c.convertFuncDecl(mainFile, main)
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// sort map keys to generate code deterministically.
|
2019-02-15 13:38:16 +00:00
|
|
|
keys := make([]*types.Package, 0, len(info.program.AllPackages))
|
|
|
|
for p := range info.program.AllPackages {
|
|
|
|
keys = append(keys, p)
|
|
|
|
}
|
|
|
|
sort.Slice(keys, func(i, j int) bool { return keys[i].Path() < keys[j].Path() })
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Generate the code for the program.
|
2019-02-15 13:38:16 +00:00
|
|
|
for _, k := range keys {
|
|
|
|
pkg := info.program.AllPackages[k]
|
2018-02-25 12:26:56 +00:00
|
|
|
c.typeInfo = &pkg.Info
|
2018-02-27 09:04:24 +00:00
|
|
|
|
2018-02-25 12:26:56 +00:00
|
|
|
for _, f := range pkg.Files {
|
|
|
|
for _, decl := range f.Decls {
|
|
|
|
switch n := decl.(type) {
|
|
|
|
case *ast.FuncDecl:
|
2019-10-22 14:56:03 +00:00
|
|
|
// Don't convert the function if it's not used. This will save a lot
|
2018-02-27 09:04:24 +00:00
|
|
|
// of bytecode space.
|
|
|
|
if n.Name.Name != mainIdent && funUsage.funcUsed(n.Name.Name) {
|
2018-02-25 12:26:56 +00:00
|
|
|
c.convertFuncDecl(f, n)
|
|
|
|
}
|
2018-02-24 09:06:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:16:32 +00:00
|
|
|
return c.prog.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
func newCodegen(info *buildInfo, pkg *loader.PackageInfo) *codegen {
|
|
|
|
return &codegen{
|
|
|
|
buildInfo: info,
|
|
|
|
prog: io.NewBufBinWriter(),
|
|
|
|
l: []int{},
|
|
|
|
funcs: map[string]*funcScope{},
|
2020-05-06 15:10:20 +00:00
|
|
|
lambda: map[string]*funcScope{},
|
2020-05-07 08:54:35 +00:00
|
|
|
globals: map[string]int{},
|
2020-03-31 13:16:32 +00:00
|
|
|
labels: map[labelWithType]uint16{},
|
|
|
|
typeInfo: &pkg.Info,
|
2020-03-31 13:57:35 +00:00
|
|
|
|
|
|
|
sequencePoints: make(map[string][]DebugSeqPoint),
|
2020-03-31 13:16:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CodeGen compiles the program to bytecode.
|
2020-04-02 12:38:53 +00:00
|
|
|
func CodeGen(info *buildInfo) ([]byte, *DebugInfo, error) {
|
2020-03-31 13:16:32 +00:00
|
|
|
pkg := info.program.Package(info.initialPackage)
|
|
|
|
c := newCodegen(info, pkg)
|
|
|
|
|
|
|
|
if err := c.compile(info, pkg); err != nil {
|
2020-04-02 12:38:53 +00:00
|
|
|
return nil, nil, err
|
2019-11-22 10:06:32 +00:00
|
|
|
}
|
2020-03-31 13:16:32 +00:00
|
|
|
|
2019-11-22 10:06:32 +00:00
|
|
|
buf := c.prog.Bytes()
|
2020-02-21 08:57:24 +00:00
|
|
|
if err := c.writeJumps(buf); err != nil {
|
2020-04-02 12:38:53 +00:00
|
|
|
return nil, nil, err
|
2020-02-21 08:57:24 +00:00
|
|
|
}
|
2020-04-02 12:38:53 +00:00
|
|
|
return buf, c.emitDebugInfo(), nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *codegen) resolveFuncDecls(f *ast.File) {
|
|
|
|
for _, decl := range f.Decls {
|
|
|
|
switch n := decl.(type) {
|
|
|
|
case *ast.FuncDecl:
|
|
|
|
if n.Name.Name != mainIdent {
|
|
|
|
c.newFunc(n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-21 08:57:24 +00:00
|
|
|
func (c *codegen) writeJumps(b []byte) error {
|
2020-02-03 09:10:07 +00:00
|
|
|
ctx := vm.NewContext(b)
|
|
|
|
for op, _, err := ctx.Next(); err == nil && ctx.NextIP() < len(b); op, _, err = ctx.Next() {
|
|
|
|
switch op {
|
2020-04-23 08:56:36 +00:00
|
|
|
case opcode.JMP, opcode.JMPIFNOT, opcode.JMPIF, opcode.CALL,
|
|
|
|
opcode.JMPEQ, opcode.JMPNE,
|
|
|
|
opcode.JMPGT, opcode.JMPGE, opcode.JMPLE, opcode.JMPLT:
|
|
|
|
panic("short jumps are not yet supported")
|
|
|
|
case opcode.JMPL, opcode.JMPIFL, opcode.JMPIFNOTL,
|
|
|
|
opcode.JMPEQL, opcode.JMPNEL,
|
|
|
|
opcode.JMPGTL, opcode.JMPGEL, opcode.JMPLEL, opcode.JMPLTL,
|
2020-05-06 15:10:20 +00:00
|
|
|
opcode.CALLL, opcode.PUSHA:
|
2020-02-03 09:10:07 +00:00
|
|
|
// we can't use arg returned by ctx.Next() because it is copied
|
2020-02-21 08:57:24 +00:00
|
|
|
nextIP := ctx.NextIP()
|
2020-04-23 08:56:36 +00:00
|
|
|
arg := b[nextIP-4:]
|
2020-02-03 09:10:07 +00:00
|
|
|
|
2020-02-21 08:57:24 +00:00
|
|
|
index := binary.LittleEndian.Uint16(arg)
|
|
|
|
if int(index) > len(c.l) {
|
|
|
|
return fmt.Errorf("unexpected label number: %d (max %d)", index, len(c.l))
|
|
|
|
}
|
2020-05-06 15:10:20 +00:00
|
|
|
var offset int
|
|
|
|
if op == opcode.PUSHA {
|
|
|
|
offset = c.l[index]
|
|
|
|
} else {
|
|
|
|
offset = c.l[index] - nextIP + 5
|
|
|
|
}
|
2020-04-23 08:56:36 +00:00
|
|
|
if offset > math.MaxInt32 || offset < math.MinInt32 {
|
|
|
|
return fmt.Errorf("label offset is too big at the instruction %d: %d (max %d, min %d)",
|
|
|
|
nextIP-5, offset, math.MaxInt32, math.MinInt32)
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
2020-04-23 08:56:36 +00:00
|
|
|
binary.LittleEndian.PutUint32(arg, uint32(offset))
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-21 08:57:24 +00:00
|
|
|
return nil
|
2018-02-19 09:24:28 +00:00
|
|
|
}
|