Add -Wshadow to the gcc command line options used when compiling the binutils.
[binutils.git] / opcodes / mcore-dis.c
blob39412663e540b7a1e566e06fe2da81c7e1003908
1 /* Disassemble Motorola M*Core instructions.
2 Copyright 1993, 1999, 2000, 2001, 2002, 2005, 2007, 2009
3 Free Software Foundation, Inc.
5 This file is part of the GNU opcodes library.
7 This library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
22 #include "sysdep.h"
23 #include <stdio.h>
24 #define STATIC_TABLE
25 #define DEFINE_TABLE
27 #include "mcore-opc.h"
28 #include "dis-asm.h"
30 /* Mask for each mcore_opclass: */
31 static const unsigned short imsk[] = {
32 /* O0 */ 0xFFFF,
33 /* OT */ 0xFFFC,
34 /* O1 */ 0xFFF0,
35 /* OC */ 0xFE00,
36 /* O2 */ 0xFF00,
37 /* X1 */ 0xFFF0,
38 /* OI */ 0xFE00,
39 /* OB */ 0xFE00,
41 /* OMa */ 0xFFF0,
42 /* SI */ 0xFE00,
43 /* I7 */ 0xF800,
44 /* LS */ 0xF000,
45 /* BR */ 0xF800,
46 /* BL */ 0xFF00,
47 /* LR */ 0xF000,
48 /* LJ */ 0xFF00,
50 /* RM */ 0xFFF0,
51 /* RQ */ 0xFFF0,
52 /* JSR */ 0xFFF0,
53 /* JMP */ 0xFFF0,
54 /* OBRa*/ 0xFFF0,
55 /* OBRb*/ 0xFF80,
56 /* OBRc*/ 0xFF00,
57 /* OBR2*/ 0xFE00,
59 /* O1R1*/ 0xFFF0,
60 /* OMb */ 0xFF80,
61 /* OMc */ 0xFF00,
62 /* SIa */ 0xFE00,
64 /* MULSH */ 0xFF00,
65 /* OPSR */ 0xFFF8, /* psrset/psrclr */
67 /* JC */ 0, /* JC,JU,JL don't appear in object */
68 /* JU */ 0,
69 /* JL */ 0,
70 /* RSI */ 0,
71 /* DO21*/ 0,
72 /* OB2 */ 0 /* OB2 won't appear in object. */
75 static const char *grname[] = {
76 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
77 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
80 static const char X[] = "??";
82 static const char *crname[] = {
83 "psr", "vbr", "epsr", "fpsr", "epc", "fpc", "ss0", "ss1",
84 "ss2", "ss3", "ss4", "gcr", "gsr", X, X, X,
85 X, X, X, X, X, X, X, X,
86 X, X, X, X, X, X, X, X
89 static const unsigned isiz[] = { 2, 0, 1, 0 };
91 int
92 print_insn_mcore (memaddr, info)
93 bfd_vma memaddr;
94 struct disassemble_info *info;
96 unsigned char ibytes[4];
97 fprintf_ftype print_func = info->fprintf_func;
98 void *stream = info->stream;
99 unsigned short inst;
100 const mcore_opcode_info *op;
101 int status;
103 info->bytes_per_chunk = 2;
105 status = info->read_memory_func (memaddr, ibytes, 2, info);
107 if (status != 0)
109 info->memory_error_func (status, memaddr, info);
110 return -1;
113 if (info->endian == BFD_ENDIAN_BIG)
114 inst = (ibytes[0] << 8) | ibytes[1];
115 else if (info->endian == BFD_ENDIAN_LITTLE)
116 inst = (ibytes[1] << 8) | ibytes[0];
117 else
118 abort ();
120 /* Just a linear search of the table. */
121 for (op = mcore_table; op->name != 0; op++)
122 if (op->inst == (inst & imsk[op->opclass]))
123 break;
125 if (op->name == 0)
126 (*print_func) (stream, ".short 0x%04x", inst);
127 else
129 const char *name = grname[inst & 0x0F];
131 (*print_func) (stream, "%s", op->name);
133 switch (op->opclass)
135 case O0:
136 break;
138 case OT:
139 (*print_func) (stream, "\t%d", inst & 0x3);
140 break;
142 case O1:
143 case JMP:
144 case JSR:
145 (*print_func) (stream, "\t%s", name);
146 break;
148 case OC:
149 (*print_func) (stream, "\t%s, %s", name, crname[(inst >> 4) & 0x1F]);
150 break;
152 case O1R1:
153 (*print_func) (stream, "\t%s, r1", name);
154 break;
156 case MULSH:
157 case O2:
158 (*print_func) (stream, "\t%s, %s", name, grname[(inst >> 4) & 0xF]);
159 break;
161 case X1:
162 (*print_func) (stream, "\tr1, %s", name);
163 break;
165 case OI:
166 (*print_func) (stream, "\t%s, %d", name, ((inst >> 4) & 0x1F) + 1);
167 break;
169 case RM:
170 (*print_func) (stream, "\t%s-r15, (r0)", name);
171 break;
173 case RQ:
174 (*print_func) (stream, "\tr4-r7, (%s)", name);
175 break;
177 case OB:
178 case OBRa:
179 case OBRb:
180 case OBRc:
181 case SI:
182 case SIa:
183 case OMa:
184 case OMb:
185 case OMc:
186 (*print_func) (stream, "\t%s, %d", name, (inst >> 4) & 0x1F);
187 break;
189 case I7:
190 (*print_func) (stream, "\t%s, %d", name, (inst >> 4) & 0x7F);
191 break;
193 case LS:
194 (*print_func) (stream, "\t%s, (%s, %d)", grname[(inst >> 8) & 0xF],
195 name, ((inst >> 4) & 0xF) << isiz[(inst >> 13) & 3]);
196 break;
198 case BR:
200 long val = inst & 0x3FF;
202 if (inst & 0x400)
203 val |= 0xFFFFFC00;
205 (*print_func) (stream, "\t0x%lx", (long)(memaddr + 2 + (val << 1)));
207 if (strcmp (op->name, "bsr") == 0)
209 /* For bsr, we'll try to get a symbol for the target. */
210 val = memaddr + 2 + (val << 1);
212 if (info->print_address_func && val != 0)
214 (*print_func) (stream, "\t// ");
215 info->print_address_func (val, info);
219 break;
221 case BL:
223 long val;
224 val = (inst & 0x000F);
225 (*print_func) (stream, "\t%s, 0x%lx",
226 grname[(inst >> 4) & 0xF],
227 (long) (memaddr - (val << 1)));
229 break;
231 case LR:
233 unsigned long val;
235 val = (memaddr + 2 + ((inst & 0xFF) << 2)) & 0xFFFFFFFC;
237 status = info->read_memory_func (val, ibytes, 4, info);
238 if (status != 0)
240 info->memory_error_func (status, memaddr, info);
241 break;
244 if (info->endian == BFD_ENDIAN_LITTLE)
245 val = (ibytes[3] << 24) | (ibytes[2] << 16)
246 | (ibytes[1] << 8) | (ibytes[0]);
247 else
248 val = (ibytes[0] << 24) | (ibytes[1] << 16)
249 | (ibytes[2] << 8) | (ibytes[3]);
251 /* Removed [] around literal value to match ABI syntax 12/95. */
252 (*print_func) (stream, "\t%s, 0x%lX", grname[(inst >> 8) & 0xF], val);
254 if (val == 0)
255 (*print_func) (stream, "\t// from address pool at 0x%lx",
256 (long) (memaddr + 2
257 + ((inst & 0xFF) << 2)) & 0xFFFFFFFC);
259 break;
261 case LJ:
263 unsigned long val;
265 val = (memaddr + 2 + ((inst & 0xFF) << 2)) & 0xFFFFFFFC;
267 status = info->read_memory_func (val, ibytes, 4, info);
268 if (status != 0)
270 info->memory_error_func (status, memaddr, info);
271 break;
274 if (info->endian == BFD_ENDIAN_LITTLE)
275 val = (ibytes[3] << 24) | (ibytes[2] << 16)
276 | (ibytes[1] << 8) | (ibytes[0]);
277 else
278 val = (ibytes[0] << 24) | (ibytes[1] << 16)
279 | (ibytes[2] << 8) | (ibytes[3]);
281 /* Removed [] around literal value to match ABI syntax 12/95. */
282 (*print_func) (stream, "\t0x%lX", val);
283 /* For jmpi/jsri, we'll try to get a symbol for the target. */
284 if (info->print_address_func && val != 0)
286 (*print_func) (stream, "\t// ");
287 info->print_address_func (val, info);
289 else
291 (*print_func) (stream, "\t// from address pool at 0x%lx",
292 (long) (memaddr + 2
293 + ((inst & 0xFF) << 2)) & 0xFFFFFFFC);
296 break;
298 case OPSR:
300 static char *fields[] = {
301 "af", "ie", "fe", "fe,ie",
302 "ee", "ee,ie", "ee,fe", "ee,fe,ie"
305 (*print_func) (stream, "\t%s", fields[inst & 0x7]);
307 break;
309 default:
310 /* If the disassembler lags the instruction set. */
311 (*print_func) (stream, "\tundecoded operands, inst is 0x%04x", inst);
312 break;
316 /* Say how many bytes we consumed. */
317 return 2;