main.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright 2015 The go-ethereum Authors
  2. // This file is part of go-ethereum.
  3. //
  4. // go-ethereum is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU 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. // go-ethereum 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 General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
  16. // disasm is a pretty-printer for EVM bytecode.
  17. package main
  18. import (
  19. "encoding/hex"
  20. "fmt"
  21. "io/ioutil"
  22. "os"
  23. "strings"
  24. "github.com/ethereum/go-ethereum/core/vm"
  25. )
  26. func main() {
  27. code, err := ioutil.ReadAll(os.Stdin)
  28. if err != nil {
  29. fmt.Println(err)
  30. os.Exit(1)
  31. }
  32. code, err = hex.DecodeString(strings.TrimSpace(string(code[:])))
  33. if err != nil {
  34. fmt.Printf("Error: %v\n", err)
  35. return
  36. }
  37. fmt.Printf("%x\n", code)
  38. for pc := uint64(0); pc < uint64(len(code)); pc++ {
  39. op := vm.OpCode(code[pc])
  40. fmt.Printf("%-5d %v", pc, op)
  41. switch op {
  42. case vm.PUSH1, vm.PUSH2, vm.PUSH3, vm.PUSH4, vm.PUSH5, vm.PUSH6, vm.PUSH7, vm.PUSH8, vm.PUSH9, vm.PUSH10, vm.PUSH11, vm.PUSH12, vm.PUSH13, vm.PUSH14, vm.PUSH15, vm.PUSH16, vm.PUSH17, vm.PUSH18, vm.PUSH19, vm.PUSH20, vm.PUSH21, vm.PUSH22, vm.PUSH23, vm.PUSH24, vm.PUSH25, vm.PUSH26, vm.PUSH27, vm.PUSH28, vm.PUSH29, vm.PUSH30, vm.PUSH31, vm.PUSH32:
  43. a := uint64(op) - uint64(vm.PUSH1) + 1
  44. fmt.Printf(" => %x", code[pc+1:pc+1+a])
  45. pc += a
  46. }
  47. fmt.Println()
  48. }
  49. }