/* src/vm/jit/i386/disass.c - wrapper functions for GNU binutils disassembler Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger, Institut f. Computersprachen - TU Wien This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Contact: cacao@cacaojvm.org Authors: Andreas Krall Reinhard Grafl Changes: Christian Thalinger $Id: disass.c 4843 2006-04-25 17:57:56Z edwin $ */ #include "config.h" #include #include #include #include "vm/types.h" #include "vm/global.h" #include "vm/jit/disass.h" char *regs[] = { "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi" }; /* disassinstr ***************************************************************** Outputs a disassembler listing of one machine code instruction on 'stdout'. code: instructions machine code *******************************************************************************/ u1 *disassinstr(u1 *code) { s4 seqlen; s4 i; if (!disass_initialized) { INIT_DISASSEMBLE_INFO(info, NULL, disass_printf); /* setting the struct members must be done after INIT_DISASSEMBLE_INFO */ info.mach = bfd_mach_i386_i386; info.read_memory_func = &disass_buffer_read_memory; disass_initialized = 1; } printf("0x%08x: ", (s4) code); disass_len = 0; seqlen = print_insn_i386((bfd_vma) (ptrint) code, &info); for (i = 0; i < seqlen; i++, code++) { printf("%02x ", *code); } for (; i < 8; i++) { printf(" "); } printf(" %s\n", disass_buf); return code; } /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: */