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