a29b5358593379cb8d3f3d654335127910b541f6
[cacao.git] / src / vm / jit / powerpc / disass.c
1 /* src/vm/jit/powerpc/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: Stefan Ring
31             Christian Thalinger
32
33    $Id: disass.c 4320 2006-01-20 12:01:15Z twisti $
34
35 */
36
37
38 #include "config.h"
39
40 #include <dis-asm.h>
41 #include <stdio.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         "r0",
51         "r1",
52         "r2",
53         "r3",
54         "r4",
55         "r5",
56         "r6",
57         "r7",
58         "r8",
59         "r9",
60         "r10",
61         "r11",
62         "r12",
63         "r13",
64         "r14",
65         "r15",
66         "r16",
67         "r17",
68         "r18",
69         "r19",
70         "r20",
71         "r21",
72         "r22",
73         "r23",
74         "r24",
75         "r25",
76         "r26",
77         "r27",
78         "r28",
79         "r29",
80         "r30",
81         "r31",
82 };
83
84
85 /* disassinstr *****************************************************************
86
87    Outputs a disassembler listing of one machine code instruction on
88    `stdout'.
89
90    code: pointer to machine code
91
92 *******************************************************************************/
93
94 u1 *disassinstr(u1 *code)
95 {
96         if (!disass_initialized) {
97                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
98
99                 /* setting the struct members must be done after
100                    INIT_DISASSEMBLE_INFO */
101
102                 info.read_memory_func = &disass_buffer_read_memory;
103
104                 disass_initialized = true;
105         }
106
107         printf("0x%08x:   %08x    ", (s4) code, *((s4 *) code));
108
109         print_insn_big_powerpc((bfd_vma) code, &info);
110
111         printf("\n");
112
113         return code + 4;
114 }
115
116
117 /*
118  * These are local overrides for various environment variables in Emacs.
119  * Please do not remove this and leave it at the end of the file, where
120  * Emacs will automagically detect them.
121  * ---------------------------------------------------------------------
122  * Local variables:
123  * mode: c
124  * indent-tabs-mode: t
125  * c-basic-offset: 4
126  * tab-width: 4
127  * End:
128  */