* Removed all Id tags.
[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 */
33
34
35 #include "config.h"
36
37 #include <assert.h>
38 #include <dis-asm.h>
39 #include <stdarg.h>
40
41 #include "vm/types.h"
42
43 #include "vm/global.h"
44 #include "vm/jit/disass.h"
45
46
47 /* disassinstr *****************************************************************
48
49    Outputs a disassembler listing of one machine code instruction on
50    'stdout'.
51
52    code: instructions machine code
53
54 *******************************************************************************/
55
56 u1 *disassinstr(u1 *code)
57 {
58         s4 seqlen;
59         s4 i;
60
61         if (!disass_initialized) {
62                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
63
64                 /* setting the struct members must be done after
65                    INIT_DISASSEMBLE_INFO */
66
67                 info.mach             = bfd_mach_i386_i386;
68                 info.read_memory_func = &disass_buffer_read_memory;
69
70                 disass_initialized = 1;
71         }
72
73         printf("0x%08x:   ", (s4) code);
74
75         disass_len = 0;
76
77         seqlen = print_insn_i386((bfd_vma) (ptrint) code, &info);
78
79         for (i = 0; i < seqlen; i++, code++) {
80                 printf("%02x ", *code);
81         }
82
83         for (; i < 8; i++) {
84                 printf("   ");
85         }
86
87         printf("   %s\n", disass_buf);
88
89         return code;
90 }
91
92
93 /*
94  * These are local overrides for various environment variables in Emacs.
95  * Please do not remove this and leave it at the end of the file, where
96  * Emacs will automagically detect them.
97  * ---------------------------------------------------------------------
98  * Local variables:
99  * mode: c
100  * indent-tabs-mode: t
101  * c-basic-offset: 4
102  * tab-width: 4
103  * End:
104  */