///////////////////////////////////////////////////////////////////////// // $Id$ ///////////////////////////////////////////////////////////////////////// // // Copyright (c) 2014-2020 Stanislav Shwartsman // Written by Stanislav Shwartsman [sshwarts at sourceforge net] // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ///////////////////////////////////////////////////////////////////////// // Compile using: // g++ -I. -I./instrument/stubs -DBX_STANDALONE_DECODER bxdisasm.cc cpu/decoder/*.cc -o bxdisasm #include #include #include #include #include "config.h" #include "cpu/decoder/instr.h" unsigned char char2byte(unsigned char input) { if(input >= '0' && input <= '9') return input - '0'; if(input >= 'A' && input <= 'F') return input - 'A' + 10; if(input >= 'a' && input <= 'f') return input - 'a' + 10; return 0; // wrong input, ignore } // This function assumes src to be a zero terminated sanitized string with // an even number of [0-9a-f] characters, and target to be sufficiently large void hex2bin(Bit8u* target, const char* src, unsigned len) { while(len >= 2 && src[0] && src[1]) { *(target++) = (unsigned) char2byte(src[0])*16 + (unsigned) char2byte(src[1]); src += 2; len -= 2; } } int main(int argn, const char **argv) { char disbuf[256]; Bit8u ibuf[16] = {0}; bool is_32 = 1, is_64 = 0; if (argn < 2) { printf("Usage: bxdisasm [-16|-32|-64] string-of-instruction-bytes\n"); exit(1); } for (int i=1;i 32) len = 32; hex2bin(ibuf, p, len); } printf("instruction bytes:"); for (int i=0;i<16;i++) printf("%02x", ibuf[i]); printf("\n"); bxInstruction_c i; disasm(ibuf, is_32, is_64, disbuf, &i, 0, 0, BX_DISASM_INTEL); printf("disasm: %s (opcode handler=%s)\n", disbuf, i.getIaOpcodeName()); disasm(ibuf, is_32, is_64, disbuf, &i, 0, 0, BX_DISASM_GAS); printf("disasm: %s (opcode handler=%s)\n", disbuf, i.getIaOpcodeName()); }