stack.go 2.33 KB
Newer Older
1
// Copyright 2014 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
5 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16

obscuren's avatar
obscuren committed
17
package vm
18 19 20

import (
	"fmt"
21
	"sync"
22 23

	"github.com/holiman/uint256"
24 25
)

26 27 28 29 30 31
var stackPool = sync.Pool{
	New: func() interface{} {
		return &Stack{data: make([]uint256.Int, 0, 16)}
	},
}

32
// Stack is an object for basic stack operations. Items popped to the stack are
33 34
// expected to be changed and modified. stack does not take care of adding newly
// initialised objects.
35
type Stack struct {
36
	data []uint256.Int
37 38
}

39
func newstack() *Stack {
40 41 42 43 44 45
	return stackPool.Get().(*Stack)
}

func returnStack(s *Stack) {
	s.data = s.data[:0]
	stackPool.Put(s)
46 47
}

48 49
// Data returns the underlying uint256.Int array.
func (st *Stack) Data() []uint256.Int {
50
	return st.data
51 52
}

53
func (st *Stack) push(d *uint256.Int) {
obscuren's avatar
obscuren committed
54
	// NOTE push limit (1024) is checked in baseCheck
55
	st.data = append(st.data, *d)
56 57
}

58
func (st *Stack) pop() (ret uint256.Int) {
59 60
	ret = st.data[len(st.data)-1]
	st.data = st.data[:len(st.data)-1]
obscuren's avatar
obscuren committed
61
	return
62 63
}

64
func (st *Stack) len() int {
65
	return len(st.data)
obscuren's avatar
obscuren committed
66 67
}

68
func (st *Stack) swap(n int) {
obscuren's avatar
obscuren committed
69
	st.data[st.len()-n], st.data[st.len()-1] = st.data[st.len()-1], st.data[st.len()-n]
obscuren's avatar
obscuren committed
70 71
}

72 73
func (st *Stack) dup(n int) {
	st.push(&st.data[st.len()-n])
74 75
}

76 77
func (st *Stack) peek() *uint256.Int {
	return &st.data[st.len()-1]
78 79
}

80
// Back returns the n'th item in stack
81 82
func (st *Stack) Back(n int) *uint256.Int {
	return &st.data[st.len()-n-1]
83 84
}

85
// Print dumps the content of the stack
86
func (st *Stack) Print() {
87 88 89
	fmt.Println("### stack ###")
	if len(st.data) > 0 {
		for i, val := range st.data {
90
			fmt.Printf("%-3d  %s\n", i, val.String())
91 92 93 94 95 96
		}
	} else {
		fmt.Println("-- empty --")
	}
	fmt.Println("#############")
}