aboutsummaryrefslogtreecommitdiffstats
path: root/vm/common.go
blob: 5441a4ac50c13e220e6876a908537a231f501fdc (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package vm

import (
    "math"
    "math/big"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/logger"
)

var vmlogger = logger.NewLogger("VM")

// Global Debug flag indicating Debug VM (full logging)
var Debug bool

type Type byte

const (
    StdVmTy Type = iota
    JitVmTy
    MaxVmTy

    MaxCallDepth = 1025

    LogTyPretty byte = 0x1
    LogTyDiff   byte = 0x2
)

var (
    Pow256 = common.BigPow(2, 256)

    U256 = common.U256
    S256 = common.S256

    Zero = common.Big0

    max = big.NewInt(math.MaxInt64)
)

func NewVm(env Environment) VirtualMachine {
    switch env.VmType() {
    case JitVmTy:
        return NewJitVm(env)
    default:
        vmlogger.Infoln("unsupported vm type %d", env.VmType())
        fallthrough
    case StdVmTy:
        return New(env)
    }
}

func calcMemSize(off, l *big.Int) *big.Int {
    if l.Cmp(common.Big0) == 0 {
        return common.Big0
    }

    return new(big.Int).Add(off, l)
}

// Simple helper
func u256(n int64) *big.Int {
    return big.NewInt(n)
}

// Mainly used for print variables and passing to Print*
func toValue(val *big.Int) interface{} {
    // Let's assume a string on right padded zero's
    b := val.Bytes()
    if b[0] != 0 && b[len(b)-1] == 0x0 && b[len(b)-2] == 0x0 {
        return string(b)
    }

    return val
}

func getData(data []byte, start, size uint64) []byte {
    x := uint64(math.Min(float64(start), float64(len(data))))
    y := uint64(math.Min(float64(x+size), float64(len(data))))

    return common.RightPadBytes(data[x:y], int(size))
}