76ea0177eb756d5e7479de2e52a1231e3107c976
[cacao.git] / src / vm / jit / powerpc64 / disass.c
1 /* src/vm/jit/powerpc64/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: Stefan Ring
31             Christian Thalinger
32
33    $Id: disass.c 5279 2006-08-25 11:55:21Z tbfg $
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 /* disassinstr *****************************************************************
50
51    Outputs a disassembler listing of one machine code instruction on
52    `stdout'.
53
54    code: pointer to machine code
55
56 *******************************************************************************/
57
58 u1 *disassinstr(u1 *code)
59 {
60         if (!disass_initialized) {
61                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
62
63                 /* setting the struct members must be done after
64                    INIT_DISASSEMBLE_INFO */
65
66                 info.read_memory_func = &disass_buffer_read_memory;
67
68                 disass_initialized = true;
69         }
70
71         printf("0x%016lx:   %08x    ", (s8) code, *((s4 *) code));
72
73         print_insn_big_powerpc((bfd_vma) code, &info);
74
75         printf("\n");
76
77         return code + 4;
78 }
79
80
81 /*
82  * These are local overrides for various environment variables in Emacs.
83  * Please do not remove this and leave it at the end of the file, where
84  * Emacs will automagically detect them.
85  * ---------------------------------------------------------------------
86  * Local variables:
87  * mode: c
88  * indent-tabs-mode: t
89  * c-basic-offset: 4
90  * tab-width: 4
91  * End:
92  */