1447430300ec1e4cb79b15bab5025d01175c3a47
[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 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Andreas  Krall
28             Reinhard Grafl
29
30    Changes: Christian Thalinger
31
32    $Id: disass.c 4322 2006-01-20 12:58:36Z 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 char *regs[] = {
50         "eax",
51         "ecx",
52         "edx",
53         "ebx",
54         "esp",
55         "ebp",
56         "esi",
57         "edi"
58 };
59
60
61 /* disassinstr *****************************************************************
62
63    Outputs a disassembler listing of one machine code instruction on
64    'stdout'.
65
66    code: instructions machine code
67
68 *******************************************************************************/
69
70 u1 *disassinstr(u1 *code)
71 {
72         s4 seqlen;
73         s4 i;
74
75         if (!disass_initialized) {
76                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
77
78                 /* setting the struct members must be done after
79                    INIT_DISASSEMBLE_INFO */
80
81                 info.mach             = bfd_mach_i386_i386;
82                 info.read_memory_func = &disass_buffer_read_memory;
83
84                 disass_initialized = 1;
85         }
86
87         printf("0x%08x:   ", (s4) code);
88
89         disass_len = 0;
90
91         seqlen = print_insn_i386((bfd_vma) code, &info);
92
93         for (i = 0; i < seqlen; i++, code++) {
94                 printf("%02x ", *code);
95         }
96
97         for (; i < 8; i++) {
98                 printf("   ");
99         }
100
101         printf("   %s\n", disass_buf);
102
103         return code;
104 }
105
106
107 /*
108  * These are local overrides for various environment variables in Emacs.
109  * Please do not remove this and leave it at the end of the file, where
110  * Emacs will automagically detect them.
111  * ---------------------------------------------------------------------
112  * Local variables:
113  * mode: c
114  * indent-tabs-mode: t
115  * c-basic-offset: 4
116  * tab-width: 4
117  * End:
118  */