431da83085b16c995a57c43278916ed32939e307
[cacao.git] / src / vm / jit / i386 / disass.c
1 /* src/vm/jit/i386/disass.c - wrapper functions for GNU binutils disassembler
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Andreas  Krall
28             Reinhard Grafl
29
30    Changes: Christian Thalinger
31
32    $Id: disass.c 6260 2006-12-28 20:56:09Z twisti $
33
34 */
35
36
37 #include "config.h"
38
39 #include <assert.h>
40 #include <dis-asm.h>
41 #include <stdarg.h>
42
43 #include "vm/types.h"
44
45 #include "vm/global.h"
46 #include "vm/jit/disass.h"
47
48
49 /* disassinstr *****************************************************************
50
51    Outputs a disassembler listing of one machine code instruction on
52    'stdout'.
53
54    code: instructions machine code
55
56 *******************************************************************************/
57
58 u1 *disassinstr(u1 *code)
59 {
60         s4 seqlen;
61         s4 i;
62
63         if (!disass_initialized) {
64                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
65
66                 /* setting the struct members must be done after
67                    INIT_DISASSEMBLE_INFO */
68
69                 info.mach             = bfd_mach_i386_i386;
70                 info.read_memory_func = &disass_buffer_read_memory;
71
72                 disass_initialized = 1;
73         }
74
75         printf("0x%08x:   ", (s4) code);
76
77         disass_len = 0;
78
79         seqlen = print_insn_i386((bfd_vma) (ptrint) code, &info);
80
81         for (i = 0; i < seqlen; i++, code++) {
82                 printf("%02x ", *code);
83         }
84
85         for (; i < 8; i++) {
86                 printf("   ");
87         }
88
89         printf("   %s\n", disass_buf);
90
91         return code;
92 }
93
94
95 /*
96  * These are local overrides for various environment variables in Emacs.
97  * Please do not remove this and leave it at the end of the file, where
98  * Emacs will automagically detect them.
99  * ---------------------------------------------------------------------
100  * Local variables:
101  * mode: c
102  * indent-tabs-mode: t
103  * c-basic-offset: 4
104  * tab-width: 4
105  * End:
106  */