2017-01-05 10:52:10 +00:00
|
|
|
package vm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
)
|
|
|
|
|
2017-01-04 19:17:24 +00:00
|
|
|
func makeStackFunc(pop, push int) stackValidationFunc {
|
2017-01-05 10:52:10 +00:00
|
|
|
return func(stack *Stack) error {
|
|
|
|
if err := stack.require(pop); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-04 19:17:24 +00:00
|
|
|
if stack.len()+push-pop > int(params.StackLimit) {
|
2017-02-02 14:25:42 +00:00
|
|
|
return fmt.Errorf("stack limit reached %d (%d)", stack.len(), params.StackLimit)
|
2017-01-05 10:52:10 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 12:39:26 +00:00
|
|
|
|
|
|
|
func makeDupStackFunc(n int) stackValidationFunc {
|
2017-01-04 19:17:24 +00:00
|
|
|
return makeStackFunc(n, n+1)
|
2017-02-08 12:39:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func makeSwapStackFunc(n int) stackValidationFunc {
|
2017-01-04 19:17:24 +00:00
|
|
|
return makeStackFunc(n, n)
|
2017-02-08 12:39:26 +00:00
|
|
|
}
|