Skip to content

Commit

Permalink
core/vm: expose intpool to stack dup method
Browse files Browse the repository at this point in the history
Improve the duplication method of the stack to reuse big ints by passing
in an existing integer pool.
  • Loading branch information
obscuren committed May 23, 2017
1 parent e16a7ef commit 10582a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/vm/instructions.go
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ func makePush(size uint64, pushByteSize int) executionFunc {
// make push instruction function
func makeDup(size int64) executionFunc {
return func(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) {
stack.dup(int(size))
stack.dup(evm.interpreter.intPool, int(size))
return nil, nil
}
}
Expand Down
4 changes: 2 additions & 2 deletions core/vm/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ func (st *Stack) swap(n int) {
st.data[st.len()-n], st.data[st.len()-1] = st.data[st.len()-1], st.data[st.len()-n]
}

func (st *Stack) dup(n int) {
st.push(new(big.Int).Set(st.data[st.len()-n]))
func (st *Stack) dup(pool *intPool, n int) {
st.push(pool.get().Set(st.data[st.len()-n]))
}

func (st *Stack) peek() *big.Int {
Expand Down

0 comments on commit 10582a9

Please sign in to comment.