aboutsummaryrefslogtreecommitdiffstats
path: root/vm/common.go
blob: ff187001f84dd873ea536a474514aa9b9e6c7d7b (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
package vm

import (
    "math/big"

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

var vmlogger = logger.NewLogger("VM")

type Type byte

const (
    StdVmTy Type = iota
    JitVmTy

    MaxVmTy
)

var (
    GasStep         = big.NewInt(1)
    GasSha          = big.NewInt(10)
    GasSLoad        = big.NewInt(20)
    GasSStore       = big.NewInt(100)
    GasSStoreRefund = big.NewInt(100)
    GasBalance      = big.NewInt(20)
    GasCreate       = big.NewInt(100)
    GasCall         = big.NewInt(20)
    GasCreateByte   = big.NewInt(5)
    GasSha3Byte     = big.NewInt(10)
    GasSha256Byte   = big.NewInt(50)
    GasRipemdByte   = big.NewInt(50)
    GasMemory       = big.NewInt(1)
    GasData         = big.NewInt(5)
    GasTx           = big.NewInt(500)
    GasLog          = big.NewInt(32)
    GasSha256       = big.NewInt(50)
    GasRipemd       = big.NewInt(50)
    GasEcrecover    = big.NewInt(500)
    GasMemCpy       = big.NewInt(1)

    Pow256 = ethutil.BigPow(2, 256)

    LogTyPretty byte = 0x1
    LogTyDiff   byte = 0x2

    U256 = ethutil.U256
    S256 = ethutil.S256
)

const MaxCallDepth = 1025

func calcMemSize(off, l *big.Int) *big.Int {
    if l.Cmp(ethutil.Big0) == 0 {
        return ethutil.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
}