aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/runtime.go
blob: 3ea12f119784fc9b436abacf0878460177be25f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package runtime

import (
    "github.com/dexon-foundation/dexon/core/vm"
    "github.com/dexon-foundation/dexon/core/vm/sqlvm/common"
)

// Run is runtime entrypoint.
func Run(stateDB vm.StateDB, ins []Instruction, registers []*Operand) (ret []byte, err error) {
    for _, in := range ins {
        opFunc := jumpTable[in.Op]
        err = opFunc(&common.Context{}, in.Input, registers, in.Output)
        if err != nil {
            return nil, err
        }
    }
    // TODO: ret = ABIEncode(ins[len(ins)-1].Output)
    return
}