common.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  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. // GNU Lesser General Public License for more details.
  13. //
  14. // 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. package vm
  17. import (
  18. "math/big"
  19. "github.com/ethereum/go-ethereum/common"
  20. "github.com/ethereum/go-ethereum/common/math"
  21. )
  22. // calculates the memory size required for a step
  23. func calcMemSize(off, l *big.Int) *big.Int {
  24. if l.Sign() == 0 {
  25. return common.Big0
  26. }
  27. return new(big.Int).Add(off, l)
  28. }
  29. // getData returns a slice from the data based on the start and size and pads
  30. // up to size with zero's. This function is overflow safe.
  31. func getData(data []byte, start uint64, size uint64) []byte {
  32. length := uint64(len(data))
  33. if start > length {
  34. start = length
  35. }
  36. end := start + size
  37. if end > length {
  38. end = length
  39. }
  40. return common.RightPadBytes(data[start:end], int(size))
  41. }
  42. // getDataBig returns a slice from the data based on the start and size and pads
  43. // up to size with zero's. This function is overflow safe.
  44. func getDataBig(data []byte, start *big.Int, size *big.Int) []byte {
  45. dlen := big.NewInt(int64(len(data)))
  46. s := math.BigMin(start, dlen)
  47. e := math.BigMin(new(big.Int).Add(s, size), dlen)
  48. return common.RightPadBytes(data[s.Uint64():e.Uint64()], int(size.Uint64()))
  49. }
  50. // bigUint64 returns the integer casted to a uint64 and returns whether it
  51. // overflowed in the process.
  52. func bigUint64(v *big.Int) (uint64, bool) {
  53. return v.Uint64(), v.BitLen() > 64
  54. }
  55. // toWordSize returns the ceiled word size required for memory expansion.
  56. func toWordSize(size uint64) uint64 {
  57. if size > math.MaxUint64-31 {
  58. return math.MaxUint64/32 + 1
  59. }
  60. return (size + 31) / 32
  61. }
  62. func allZero(b []byte) bool {
  63. for _, byte := range b {
  64. if byte != 0 {
  65. return false
  66. }
  67. }
  68. return true
  69. }