aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/runtime.go
blob: e6a3a000682d62be0ee148d3a5d98d3be8144bd5 (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
30
31
32
33
34
35
36
37
38
39
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]
            }
        }
        opFunc := jumpTable[in.Op]
        loadRegister(in.Input, registers)
        errCode := opFunc(&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
}

func loadRegister(input, registers []*Operand) {
    for i, operand := range input {
        if operand != nil && !operand.IsImmediate {
            input[i] = registers[operand.RegisterIndex]
        }
    }
}