18cebee2691193df8e0f3f7528b21dbcaa0db26a
[cacao.git] / src / vm / jit / arm / disass.c
1 /* src/vm/jit/arm/disass.c - wrapper functions for GNU binutils disassembler
2
3    Copyright (C) 1996-2005, 2006, 2007 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    $Id: disass.c 7333 2007-02-11 22:17:27Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <dis-asm.h>
33 #include <stdio.h>
34
35 #include "vm/types.h"
36
37 #include "vm/global.h"
38
39 #include "vm/jit/disass.h"
40
41
42 /* disassinstr *****************************************************************
43
44    Outputs a disassembler listing of one machine code instruction on
45    'stdout'.
46
47    code: pointer to instructions machine code
48
49 *******************************************************************************/
50
51 u1 *disassinstr(u1 *code)
52 {
53         if (!disass_initialized) {
54                 INIT_DISASSEMBLE_INFO(info, stdout, disass_printf);
55                 info.read_memory_func = &disass_buffer_read_memory;
56                 disass_initialized = true;
57         }
58
59         printf("0x%08x:   %08x    ", (u4) code, *((s4 *) code));
60
61 #if defined(__ARMEL__)
62         print_insn_little_arm((bfd_vma) code, &info);
63 #else
64         print_insn_big_arm((bfd_vma) code, &info);
65 #endif
66
67         printf("\n");
68
69         /* 1 instruction is 4-bytes long */
70         return code + 4;
71 }
72
73
74 /*
75  * These are local overrides for various environment variables in Emacs.
76  * Please do not remove this and leave it at the end of the file, where
77  * Emacs will automagically detect them.
78  * ---------------------------------------------------------------------
79  * Local variables:
80  * mode: c
81  * indent-tabs-mode: t
82  * c-basic-offset: 4
83  * tab-width: 4
84  * End:
85  */