aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/memory_table.go
blob: 3141a2f61aa2c852f112dac803949f0c0ad62027 (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
package vm

import (
    "math/big"

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

func memorySha3(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), stack.Back(1))
}

func memoryCalldataCopy(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), stack.Back(2))
}

func memoryCodeCopy(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), stack.Back(2))
}

func memoryExtCodeCopy(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(1), stack.Back(3))
}

func memoryMLoad(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), big.NewInt(32))
}

func memoryMStore8(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), big.NewInt(1))
}

func memoryMStore(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), big.NewInt(32))
}

func memoryCreate(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(1), stack.Back(2))
}

func memoryCall(stack *Stack) *big.Int {
    x := calcMemSize(stack.Back(5), stack.Back(6))
    y := calcMemSize(stack.Back(3), stack.Back(4))

    return math.BigMax(x, y)
}

func memoryCallCode(stack *Stack) *big.Int {
    x := calcMemSize(stack.Back(5), stack.Back(6))
    y := calcMemSize(stack.Back(3), stack.Back(4))

    return math.BigMax(x, y)
}
func memoryDelegateCall(stack *Stack) *big.Int {
    x := calcMemSize(stack.Back(4), stack.Back(5))
    y := calcMemSize(stack.Back(2), stack.Back(3))

    return math.BigMax(x, y)
}

func memoryReturn(stack *Stack) *big.Int {
    return calcMemSize(stack.Back(0), stack.Back(1))
}

func memoryLog(stack *Stack) *big.Int {
    mSize, mStart := stack.Back(1), stack.Back(0)
    return calcMemSize(mStart, mSize)
}