* sky test case updates for MTIR insn PR
[binutils-gdb.git] / opcodes / h8300-dis.c
blobb3a9496d5c10767c4f15d82446748371eca42294
1 /* Disassemble h8300 instructions.
2 Copyright (C) 1993 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. */
18 #define DEFINE_TABLE
20 #define h8_opcodes h8ops
21 #include "opcode/h8300.h"
22 #include "dis-asm.h"
25 /* Run through the opcodes and sort them into order to make them easy
26 to disassemble
28 static void
29 bfd_h8_disassemble_init ()
31 unsigned int i;
34 struct h8_opcode *p;
36 for (p = h8_opcodes; p->name; p++)
38 int n1 = 0;
39 int n2 = 0;
41 if ((int) p->data.nib[0] < 16)
43 n1 = (int) p->data.nib[0];
45 else
46 n1 = 0;
47 if ((int) p->data.nib[1] < 16)
49 n2 = (int) p->data.nib[1];
51 else
52 n2 = 0;
54 /* Just make sure there are an even number of nibbles in it, and
55 that the count is the same s the length */
56 for (i = 0; p->data.nib[i] != E; i++)
57 /*EMPTY*/ ;
58 if (i & 1)
59 abort ();
60 p->length = i / 2;
66 unsigned int
67 bfd_h8_disassemble (addr, info, mode)
68 bfd_vma addr;
69 disassemble_info *info;
70 int mode;
72 /* Find the first entry in the table for this opcode */
73 static CONST char *regnames[] =
75 "r0h", "r1h", "r2h", "r3h", "r4h", "r5h", "r6h", "r7h",
76 "r0l", "r1l", "r2l", "r3l", "r4l", "r5l", "r6l", "r7l"};
78 static CONST char *wregnames[] =
80 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
81 "e0", "e1", "e2", "e3", "e4", "e5", "e6", "e7"
84 static CONST char *lregnames[] =
86 "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7",
87 "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7"
91 int rs = 0;
92 int rd = 0;
93 int rdisp = 0;
94 int abs = 0;
95 int bit = 0;
96 int plen = 0;
97 static boolean init = 0;
98 struct h8_opcode *q = h8_opcodes;
99 char CONST **pregnames = mode != 0 ? lregnames : wregnames;
100 int status;
101 int l;
103 unsigned char data[20];
104 void *stream = info->stream;
105 fprintf_ftype fprintf = info->fprintf_func;
107 if (!init)
109 bfd_h8_disassemble_init ();
110 init = 1;
113 status = info->read_memory_func(addr, data, 2, info);
114 if (status != 0)
116 info->memory_error_func(status, addr, info);
117 return -1;
119 for (l = 2; status == 0 && l < 10; l+=2)
121 status = info->read_memory_func(addr+l, data+l, 2, info);
126 /* Find the exact opcode/arg combo */
127 while (q->name)
129 op_type *nib;
130 unsigned int len = 0;
132 nib = q->data.nib;
134 while (1)
136 op_type looking_for = *nib;
137 int thisnib = data[len >> 1];
139 thisnib = (len & 1) ? (thisnib & 0xf) : ((thisnib >> 4) & 0xf);
141 if (looking_for < 16 && looking_for >=0)
144 if (looking_for != thisnib)
145 goto fail;
148 else
151 if ((int) looking_for & (int) B31)
153 if (! (((int) thisnib & 0x8) != 0))
154 goto fail;
155 looking_for = (op_type) ((int) looking_for & ~(int) B31);
157 if ((int) looking_for & (int) B30)
159 if (!(((int) thisnib & 0x8) == 0))
160 goto fail;
161 looking_for = (op_type) ((int) looking_for & ~(int) B30);
164 if (looking_for & DBIT)
166 if ((looking_for & 5) != (thisnib &5)) goto fail;
167 abs = (thisnib & 0x8) ? 2 : 1;
170 else if (looking_for & (REG | IND|INC|DEC))
172 if (looking_for & SRC)
174 rs = thisnib;
176 else
178 rd = thisnib;
181 else if (looking_for & L_16)
183 abs = (data[len >> 1]) * 256 + data[(len + 2) >> 1];
184 plen = 16;
187 else if(looking_for & ABSJMP)
189 abs =
190 (data[1] << 16)
191 | (data[2] << 8)
192 | (data[3]);
194 else if(looking_for & MEMIND)
196 abs = data[1];
198 else if (looking_for & L_32)
200 int i = len >> 1;
201 abs = (data[i] << 24)
202 | (data[i + 1] << 16)
203 | (data[i + 2] << 8)
204 | (data[i+ 3]);
206 plen =32;
209 else if (looking_for & L_24)
211 int i = len >> 1;
212 abs = (data[i] << 16) | (data[i + 1] << 8)| (data[i+
213 2]);
214 plen =24;
216 else if (looking_for & IGNORE)
220 else if (looking_for & DISPREG)
222 rdisp = thisnib;
224 else if (looking_for & KBIT)
226 switch (thisnib)
228 case 9:
229 abs = 4;
230 break;
231 case 8:
232 abs = 2;
233 break;
234 case 0:
235 abs = 1;
236 break;
237 default:
238 goto fail;
241 else if (looking_for & L_8)
243 plen = 8;
244 abs = data[len >> 1];
246 else if (looking_for & L_3)
248 bit = thisnib & 0x7;
250 else if (looking_for & L_2)
252 plen = 2;
253 abs = thisnib & 0x3;
255 else if (looking_for == E)
259 int i;
261 for (i = 0; i < q->length; i++)
263 fprintf (stream, "%02x ", data[i]);
265 for (; i < 6; i++)
267 fprintf (stream, " ");
270 fprintf (stream, "%s\t", q->name);
272 /* Gross. Disgusting. */
273 if (strcmp (q->name, "ldm.l") == 0)
275 int count, high;
277 count = (data[1] >> 4) & 0x3;
278 high = data[3] & 0x7;
280 fprintf (stream, "@sp+,er%d-er%d", high - count, high);
281 return q->length;
284 if (strcmp (q->name, "stm.l") == 0)
286 int count, low;
288 count = (data[1] >> 4) & 0x3;
289 low = data[3] & 0x7;
291 fprintf (stream, "er%d-er%d,@-sp", low, low + count);
292 return q->length;
295 /* Fill in the args */
297 op_type *args = q->args.nib;
298 int hadone = 0;
301 while (*args != E)
303 int x = *args;
304 if (hadone)
305 fprintf (stream, ",");
308 if (x & L_3)
310 fprintf (stream, "#0x%x", (unsigned) bit);
312 else if (x & (IMM|KBIT|DBIT))
314 /* Bletch. For shal #2,er0 and friends. */
315 if (*(args+1) & SRC_IN_DST)
316 abs = 2;
318 fprintf (stream, "#0x%x", (unsigned) abs);
320 else if (x & REG)
322 int rn = (x & DST) ? rd : rs;
323 switch (x & SIZE)
325 case L_8:
326 fprintf (stream, "%s", regnames[rn]);
327 break;
328 case L_16:
329 fprintf (stream, "%s", wregnames[rn]);
330 break;
331 case L_P:
332 case L_32:
333 fprintf (stream, "%s", lregnames[rn]);
334 break;
339 else if (x & INC)
341 fprintf (stream, "@%s+", pregnames[rs]);
343 else if (x & DEC)
345 fprintf (stream, "@-%s", pregnames[rd]);
348 else if (x & IND)
350 int rn = (x & DST) ? rd : rs;
351 fprintf (stream, "@%s", pregnames[rn]);
354 else if (x & ABS8MEM)
356 fprintf (stream, "@0x%x:8", (unsigned) abs);
359 else if (x & (ABS|ABSJMP))
361 fprintf (stream, "@0x%x:%d", (unsigned) abs, plen);
364 else if (x & MEMIND)
366 fprintf (stream, "@@%d (%x)", abs, abs);
369 else if (x & PCREL)
371 if (x & L_16)
373 abs +=2;
374 fprintf (stream, ".%s%d (%x)", (short) abs > 0 ? "+" : "", (short) abs,
375 addr + (short) abs + 2);
377 else {
378 fprintf (stream, ".%s%d (%x)", (char) abs > 0 ? "+" : "", (char) abs,
379 addr + (char) abs + 2);
382 else if (x & DISP)
384 fprintf (stream, "@(0x%x:%d,%s)", abs,plen, pregnames[rdisp]);
387 else if (x & CCR)
389 fprintf (stream, "ccr");
391 else if (x & EXR)
393 fprintf (stream, "exr");
396 else
397 fprintf (stream, "Hmmmm %x", x);
398 hadone = 1;
399 args++;
402 return q->length;
406 else
408 fprintf (stream, "Dont understand %x \n", looking_for);
412 len++;
413 nib++;
416 fail:
417 q++;
420 /* Fell of the end */
421 fprintf (stream, "%02x %02x .word\tH'%x,H'%x",
422 data[0], data[1],
423 data[0], data[1]);
424 return 2;
427 int
428 print_insn_h8300 (addr, info)
429 bfd_vma addr;
430 disassemble_info *info;
432 return bfd_h8_disassemble (addr, info , 0);
435 int
436 print_insn_h8300h (addr, info)
437 bfd_vma addr;
438 disassemble_info *info;
440 return bfd_h8_disassemble (addr, info , 1);
443 int
444 print_insn_h8300s (addr, info)
445 bfd_vma addr;
446 disassemble_info *info;
448 return bfd_h8_disassemble (addr, info , 2);