1 /* Disassemble Motorola M*Core instructions.
2 Copyright (C) 1993, 1999, 2000 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "mcore-opc.h"
26 /* Mask for each mcore_opclass: */
27 static const unsigned short imsk
[] =
62 /* OPSR */ 0xFFF8, /* psrset/psrclr */
64 /* JC */ 0, /* JC,JU,JL don't appear in object */
69 /* OB2 */ 0 /* OB2 won't appear in object. */
72 static const char * grname
[] =
74 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
75 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
78 static const char X
[] = "??";
80 static const char * crname
[] =
82 "psr", "vbr", "epsr", "fpsr", "epc", "fpc", "ss0", "ss1",
83 "ss2", "ss3", "ss4", "gcr", "gsr", X
, X
, X
,
84 X
, X
, X
, X
, X
, X
, X
, X
,
85 X
, X
, X
, X
, X
, X
, X
, X
88 static const unsigned isiz
[] = { 2, 0, 1, 0 };
91 print_insn_mcore (memaddr
, info
)
93 struct disassemble_info
* info
;
95 unsigned char ibytes
[4];
96 fprintf_ftype fprintf
= info
->fprintf_func
;
97 void * stream
= info
->stream
;
99 mcore_opcode_info
* op
;
102 info
->bytes_per_chunk
= 2;
104 status
= info
->read_memory_func (memaddr
, ibytes
, 2, info
);
108 info
->memory_error_func (status
, memaddr
, info
);
112 if (info
->endian
== BFD_ENDIAN_BIG
)
113 inst
= (ibytes
[0] << 8) | ibytes
[1];
114 else if (info
->endian
== BFD_ENDIAN_LITTLE
)
115 inst
= (ibytes
[1] << 8) | ibytes
[0];
119 /* Just a linear search of the table. */
120 for (op
= mcore_table
; op
->name
!= 0; op
++)
121 if (op
->inst
== (inst
& imsk
[op
->opclass
]))
125 fprintf (stream
, ".short 0x%04x", inst
);
128 const char * name
= grname
[inst
& 0x0F];
130 fprintf (stream
, "%s", op
->name
);
135 case OT
: fprintf (stream
, "\t%d", inst
& 0x3); break;
138 case JSR
: fprintf (stream
, "\t%s", name
); break;
139 case OC
: fprintf (stream
, "\t%s, %s", name
, crname
[(inst
>> 4) & 0x1F]); break;
140 case O1R1
: fprintf (stream
, "\t%s, r1", name
); break;
142 case O2
: fprintf (stream
, "\t%s, %s", name
, grname
[(inst
>> 4) & 0xF]); break;
143 case X1
: fprintf (stream
, "\tr1, %s", name
); break;
144 case OI
: fprintf (stream
, "\t%s, %d", name
, ((inst
>> 4) & 0x1F) + 1); break;
145 case RM
: fprintf (stream
, "\t%s-r15, (r0)", name
); break;
146 case RQ
: fprintf (stream
, "\tr4-r7, (%s)", name
); break;
155 case OMc
: fprintf (stream
, "\t%s, %d", name
, (inst
>> 4) & 0x1F); break;
156 case I7
: fprintf (stream
, "\t%s, %d", name
, (inst
>> 4) & 0x7F); break;
157 case LS
: fprintf (stream
, "\t%s, (%s, %d)", grname
[(inst
>> 8) & 0xF],
158 name
, ((inst
>> 4) & 0xF) << isiz
[(inst
>> 13) & 3]);
163 long val
= inst
& 0x3FF;
168 fprintf (stream
, "\t0x%x", memaddr
+ 2 + (val
<<1));
170 if (strcmp (op
->name
, "bsr") == 0)
172 /* For bsr, we'll try to get a symbol for the target. */
173 val
= memaddr
+ 2 + (val
<< 1);
175 if (info
->print_address_func
&& val
!= 0)
177 fprintf (stream
, "\t// ");
178 info
->print_address_func (val
, info
);
187 val
= (inst
& 0x000F);
188 fprintf (stream
, "\t%s, 0x%x",
189 grname
[(inst
>> 4) & 0xF], memaddr
- (val
<< 1));
197 val
= (memaddr
+ 2 + ((inst
& 0xFF) << 2)) & 0xFFFFFFFC;
199 status
= info
->read_memory_func (val
, ibytes
, 4, info
);
202 info
->memory_error_func (status
, memaddr
, info
);
206 if (info
->endian
== BFD_ENDIAN_LITTLE
)
207 val
= (ibytes
[3] << 24) | (ibytes
[2] << 16)
208 | (ibytes
[1] << 8) | (ibytes
[0]);
210 val
= (ibytes
[0] << 24) | (ibytes
[1] << 16)
211 | (ibytes
[2] << 8) | (ibytes
[3]);
213 /* Removed [] around literal value to match ABI syntax 12/95. */
214 fprintf (stream
, "\t%s, 0x%X", grname
[(inst
>> 8) & 0xF], val
);
217 fprintf (stream
, "\t// from address pool at 0x%x",
218 (memaddr
+ 2 + ((inst
& 0xFF) << 2)) & 0xFFFFFFFC);
226 val
= (memaddr
+ 2 + ((inst
& 0xFF) << 2)) & 0xFFFFFFFC;
228 status
= info
->read_memory_func (val
, ibytes
, 4, info
);
231 info
->memory_error_func (status
, memaddr
, info
);
235 if (info
->endian
== BFD_ENDIAN_LITTLE
)
236 val
= (ibytes
[3] << 24) | (ibytes
[2] << 16)
237 | (ibytes
[1] << 8) | (ibytes
[0]);
239 val
= (ibytes
[0] << 24) | (ibytes
[1] << 16)
240 | (ibytes
[2] << 8) | (ibytes
[3]);
242 /* Removed [] around literal value to match ABI syntax 12/95. */
243 fprintf (stream
, "\t0x%X", val
);
244 /* For jmpi/jsri, we'll try to get a symbol for the target. */
245 if (info
->print_address_func
&& val
!= 0)
247 fprintf (stream
, "\t// ");
248 info
->print_address_func (val
, info
);
252 fprintf (stream
, "\t// from address pool at 0x%x",
253 (memaddr
+ 2 + ((inst
& 0xFF) << 2)) & 0xFFFFFFFC);
260 static char * fields
[] =
262 "af", "ie", "fe", "fe,ie",
263 "ee", "ee,ie", "ee,fe", "ee,fe,ie"
266 fprintf (stream
, "\t%s", fields
[inst
& 0x7]);
271 /* If the disassembler lags the instruction set. */
272 fprintf (stream
, "\tundecoded operands, inst is 0x%04x", inst
);
277 /* Say how many bytes we consumed. */