stack.go 2.2 KB
Newer Older
obscuren's avatar
obscuren committed
1 2 3 4
package ethchain

import (
	"fmt"
obscuren's avatar
obscuren committed
5
	_ "github.com/ethereum/eth-go/ethutil"
obscuren's avatar
obscuren committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	"math/big"
)

type OpType int

const (
	tNorm = iota
	tData
	tExtro
	tCrypto
)

type TxCallback func(opType OpType) bool

// Simple push/pop stack mechanism
type Stack struct {
	data []*big.Int
}

func NewStack() *Stack {
	return &Stack{}
}

obscuren's avatar
obscuren committed
29 30 31 32
func (st *Stack) Data() []*big.Int {
	return st.data
}

33 34 35 36
func (st *Stack) Len() int {
	return len(st.data)
}

obscuren's avatar
obscuren committed
37
func (st *Stack) Pop() *big.Int {
38 39 40 41
	str := st.data[len(st.data)-1]

	copy(st.data[:len(st.data)-1], st.data[:len(st.data)-1])
	st.data = st.data[:len(st.data)-1]
42 43 44 45 46

	return str
}

func (st *Stack) Popn() (*big.Int, *big.Int) {
47 48 49 50
	ints := st.data[len(st.data)-2:]

	copy(st.data[:len(st.data)-2], st.data[:len(st.data)-2])
	st.data = st.data[:len(st.data)-2]
51 52 53 54 55

	return ints[0], ints[1]
}

func (st *Stack) Peek() *big.Int {
56
	str := st.data[len(st.data)-1]
57 58 59 60 61 62 63 64 65 66 67 68 69 70

	return str
}

func (st *Stack) Peekn() (*big.Int, *big.Int) {
	ints := st.data[:2]

	return ints[0], ints[1]
}

func (st *Stack) Push(d *big.Int) {
	st.data = append(st.data, d)
}
func (st *Stack) Print() {
71
	fmt.Println("### stack ###")
72 73 74 75 76 77 78 79 80 81
	if len(st.data) > 0 {
		for i, val := range st.data {
			fmt.Printf("%-3d  %v\n", i, val)
		}
	} else {
		fmt.Println("-- empty --")
	}
	fmt.Println("#############")
}

obscuren's avatar
obscuren committed
82 83
type Memory struct {
	store []byte
obscuren's avatar
obscuren committed
84 85
}

obscuren's avatar
obscuren committed
86 87
func (m *Memory) Set(offset, size int64, value []byte) {
	totSize := offset + size
obscuren's avatar
obscuren committed
88
	lenSize := int64(len(m.store) - 1)
obscuren's avatar
obscuren committed
89 90 91 92 93
	if totSize > lenSize {
		// Calculate the diff between the sizes
		diff := totSize - lenSize
		if diff > 0 {
			// Create a new empty slice and append it
obscuren's avatar
obscuren committed
94
			newSlice := make([]byte, diff-1)
obscuren's avatar
obscuren committed
95 96
			// Resize slice
			m.store = append(m.store, newSlice...)
obscuren's avatar
obscuren committed
97 98
		}
	}
obscuren's avatar
obscuren committed
99
	copy(m.store[offset:offset+size], value)
obscuren's avatar
obscuren committed
100 101 102 103
}

func (m *Memory) Get(offset, size int64) []byte {
	return m.store[offset : offset+size]
obscuren's avatar
obscuren committed
104
}
obscuren's avatar
obscuren committed
105

106 107 108 109
func (m *Memory) Len() int {
	return len(m.store)
}

obscuren's avatar
obscuren committed
110 111 112 113
func (m *Memory) Data() []byte {
	return m.store
}

obscuren's avatar
obscuren committed
114
func (m *Memory) Print() {
115
	fmt.Printf("### mem %d bytes ###\n", len(m.store))
obscuren's avatar
obscuren committed
116
	if len(m.store) > 0 {
117
		addr := 0
118
		for i := 0; i+32 <= len(m.store); i += 32 {
obscuren's avatar
obscuren committed
119
			fmt.Printf("%03d: % x\n", addr, m.store[i:i+32])
120 121
			addr++
		}
obscuren's avatar
obscuren committed
122 123 124
	} else {
		fmt.Println("-- empty --")
	}
125
	fmt.Println("####################")
obscuren's avatar
obscuren committed
126
}