* Removed all Id tags.
[cacao.git] / src / vm / jit / s390 / disass.c
1 /* src/vm/jit/x86_64/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: Christian Thalinger
31
32 */
33
34
35 #include "config.h"
36
37 #include <dis-asm.h>
38 #include <stdio.h>
39
40 #include "vm/types.h"
41
42 #include "vm/global.h"
43 #include "vm/jit/disass.h"
44
45
46 /* global variables ***********************************************************/
47
48 /* name table for 16 integer registers */
49
50 char *regs[] = {
51         "r0",
52         "r1",
53         "r2",
54         "r3",
55         "r4",
56         "r5",
57         "r6",
58         "r7",
59     "r8",
60     "r9",
61     "r10",
62     "r11",
63     "r12",
64     "r13",
65     "r14",
66     "r15"
67 };
68
69
70 /* disass_pseudo_instr *********************************************************
71
72    Outputs a disassembler listing of one pseudo instruction instruction on
73    `stdout'.
74         
75    Returns number of bytes consumed or 0 if code does not contain a pseudo 
76    instruction.
77
78    code: pointer to machine code
79
80 *******************************************************************************/
81
82 static s4 disass_pseudo_instr(u1 *code) {
83         switch (code[0]) {
84                 /* Trap */
85                 case 0x02:
86                         snprintf(disass_buf, 512, "ill\t0x%02hhx (pseudo)", code[1]);
87                         return 2;
88                 /* Not recognized */
89                 default:
90                         return 0;
91         }
92 }
93
94 /* disassinstr *****************************************************************
95
96    Outputs a disassembler listing of one machine code instruction on
97    `stdout'.
98
99    code: pointer to machine code
100
101 *******************************************************************************/
102
103 u1 *disassinstr(u1 *code)
104 {
105         s4 seqlen;
106         s4 i;
107
108         if (!disass_initialized) {
109                 INIT_DISASSEMBLE_INFO(info, NULL, disass_printf);
110
111                 /* setting the struct members must be done after
112                    INIT_DISASSEMBLE_INFO */
113
114                 info.mach             = bfd_mach_s390_31;
115                 info.read_memory_func = &disass_buffer_read_memory;
116
117                 disass_initialized = true;
118         }
119
120         printf("0x%08x:   ", (s4) code);
121
122         disass_len = 0;
123
124         seqlen = disass_pseudo_instr(code);
125
126         if (seqlen == 0) {
127                 seqlen = print_insn_s390((bfd_vma) code, &info);
128         }
129
130         for (i = 0; i < seqlen; i++, code++) {
131                 printf("%02x ", *code);
132         }
133         
134         for (; i < 10; i++) {
135                 printf("   ");
136         }
137
138         printf("   %s\n", disass_buf);
139
140         return code;
141 }
142
143
144 /*
145  * These are local overrides for various environment variables in Emacs.
146  * Please do not remove this and leave it at the end of the file, where
147  * Emacs will automagically detect them.
148  * ---------------------------------------------------------------------
149  * Local variables:
150  * mode: c
151  * indent-tabs-mode: t
152  * c-basic-offset: 4
153  * tab-width: 4
154  * End:
155  */