* Removed all Id tags.
[cacao.git] / src / vm / jit / m68k / disass.c
1 /* src/vm/jit/m68k/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 */
26
27
28 #include "config.h"
29
30 #include <assert.h>
31 #include <dis-asm.h>
32 #include <stdarg.h>
33
34 #include "vm/types.h"
35
36 #include "vm/global.h"
37 #include "vm/jit/disass.h"
38
39
40 /* disassinstr *****************************************************************
41
42    Outputs a disassembler listing of one machine code instruction on
43    'stdout'.
44
45    code: instructions machine code
46
47 *******************************************************************************/
48
49 u1 *disassinstr(u1 *code)
50 {
51         s4 seqlen;
52         s4 i;
53
54         if (!disass_initialized) {
55                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
56
57                 /* setting the struct members must be done after
58                    INIT_DISASSEMBLE_INFO */
59
60                 info.mach             = bfd_mach_mcfv4e;        /* this is optimistic */
61                 info.read_memory_func = &disass_buffer_read_memory;
62
63                 disass_initialized = 1;
64         }
65
66         /* must be reset */
67         disass_len = 0;
68
69         printf("0x%08x:   ", (s4) code);
70
71         /* 0x51fc is tpf "trap false" but not recognized correctly by binutils, make output more readable by skipping it */
72         if (*((u2*)code) == 0x51fc) {
73                 printf("%04x\n", *((u2*)code));
74                 return (code+2);
75         }
76
77         seqlen = print_insn_m68k((bfd_vma) (ptrint) code, &info);
78
79         for (i = 0; i < seqlen; i+=2, code+=2) {
80                 printf("%04x ", *((u2*)code));
81         }
82
83         for (; i < 6; i+=2) {
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  */