aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/runtime.go
blob: 3b6d49a72d5c764aa969b99f8048c9ce711918fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package runtime

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

// Run is runtime entrypoint.
func Run(stateDB vm.StateDB, ins []Instruction, registers []*Operand) (ret []byte, err error) {
    for _, in := range ins {
        for i := 0; i < len(in.Input); i++ {
            if !in.Input[i].IsImmediate {
                in.Input[i] = registers[in.Input[i].RegisterIndex]
            }
        }
        errCode := jumpTable[in.Op](&common.Context{}, in.Input, registers, in.Output)
        if errCode != nil {
            err = se.Error{
                Position: in.Position,
                Code:     errCode.(se.ErrorCode),
                Category: se.ErrorCategoryRuntime,
            }
            return nil, err
        }
    }
    // TODO: ret = ABIEncode(ins[len(ins)-1].Output)
    return
}