10155725b96c5d30f7519d9ea8c94086a1f6df8e
[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    $Id: arch.h 5330 2006-09-05 18:43:12Z edwin $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33 #include <dis-asm.h>
34 #include <stdarg.h>
35
36 #include "vm/types.h"
37
38 #include "vm/global.h"
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: instructions machine code
48
49 *******************************************************************************/
50
51 u1 *disassinstr(u1 *code)
52 {
53         s4 seqlen;
54         s4 i;
55
56         if (!disass_initialized) {
57                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
58
59                 /* setting the struct members must be done after
60                    INIT_DISASSEMBLE_INFO */
61
62                 info.mach             = bfd_mach_mcfv4e;        /* this is optimistic */
63                 info.read_memory_func = &disass_buffer_read_memory;
64
65                 disass_initialized = 1;
66         }
67
68         /* must be reset */
69         disass_len = 0;
70
71         printf("0x%08x:   ", (s4) code);
72
73         /* 0x51fc is tpf "trap false" but not recognized correctly by binutils, make output more readable by skipping it */
74         if (*((u2*)code) == 0x51fc) {
75                 printf("%04x\n", *((u2*)code));
76                 return (code+2);
77         }
78
79         seqlen = print_insn_m68k((bfd_vma) (ptrint) code, &info);
80
81         for (i = 0; i < seqlen; i+=2, code+=2) {
82                 printf("%04x ", *((u2*)code));
83         }
84
85         for (; i < 6; i+=2) {
86                 printf("     ");
87         }
88
89         printf("   %s\n", disass_buf);
90
91         return code;
92 }
93
94
95 /*
96  * These are local overrides for various environment variables in Emacs.
97  * Please do not remove this and leave it at the end of the file, where
98  * Emacs will automagically detect them.
99  * ---------------------------------------------------------------------
100  * Local variables:
101  * mode: c
102  * indent-tabs-mode: t
103  * c-basic-offset: 4
104  * tab-width: 4
105  * End:
106  */