github.com/digdeepmining/go-atheios@v1.5.13-0.20180902133602-d5687a2e6f43/cmd/disasm/main.go (about)

     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  
    17  // disasm is a pretty-printer for EVM bytecode.
    18  package main
    19  
    20  import (
    21  	"encoding/hex"
    22  	"fmt"
    23  	"io/ioutil"
    24  	"os"
    25  	"strings"
    26  
    27  	"github.com/atheioschain/go-atheios/core/vm"
    28  )
    29  
    30  func main() {
    31  	code, err := ioutil.ReadAll(os.Stdin)
    32  	if err != nil {
    33  		fmt.Println(err)
    34  		os.Exit(1)
    35  	}
    36  	code, err = hex.DecodeString(strings.TrimSpace(string(code[:])))
    37  	if err != nil {
    38  		fmt.Printf("Error: %v\n", err)
    39  		return
    40  	}
    41  	fmt.Printf("%x\n", code)
    42  
    43  	for pc := uint64(0); pc < uint64(len(code)); pc++ {
    44  		op := vm.OpCode(code[pc])
    45  
    46  		switch op {
    47  		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:
    48  			a := uint64(op) - uint64(vm.PUSH1) + 1
    49  			u := pc + 1 + a
    50  			if uint64(len(code)) <= pc || uint64(len(code)) < u {
    51  				fmt.Printf("Error: incomplete push instruction at %v\n", pc)
    52  				return
    53  			}
    54  			fmt.Printf("%-5d  %v  => %x\n", pc, op, code[pc+1:u])
    55  			pc += a
    56  		default:
    57  			fmt.Printf("%-5d  %v\n", pc, op)
    58  		}
    59  	}
    60  }