1 /* Disassemble z8000 code.
2 Copyright 1992, 1993, 1998, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program 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 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
30 /* These are all indexed by nibble number (i.e only every other entry
31 of bytes is used, and every 4th entry of words). */
32 unsigned char nibbles[24];
33 unsigned char bytes[24];
34 unsigned short words[24];
36 /* Nibble number of first word not yet fetched. */
42 char instr_asmsrc[80];
43 unsigned long arg_reg[0x0f];
44 unsigned long immediate;
45 unsigned long displacement;
46 unsigned long address;
47 unsigned long cond_code;
48 unsigned long ctrl_code;
50 unsigned long interrupts;
53 /* Make sure that bytes from INFO->PRIVATE_DATA->BUFFER (inclusive)
54 to ADDR (exclusive) are valid. Returns 1 for success, longjmps
56 #define FETCH_DATA(info, nibble) \
57 ((nibble) < ((instr_data_s *) (info->private_data))->max_fetched \
58 ? 1 : fetch_data ((info), (nibble)))
61 fetch_data (info, nibble)
62 struct disassemble_info *info;
65 unsigned char mybuf[20];
67 instr_data_s *priv = (instr_data_s *) info->private_data;
69 if ((nibble % 4) != 0)
72 status = (*info->read_memory_func) (priv->insn_start,
78 (*info->memory_error_func) (status, priv->insn_start, info);
79 longjmp (priv->bailout, 1);
84 unsigned char *p = mybuf;
86 for (i = 0; i < nibble;)
88 priv->words[i] = (p[0] << 8) | p[1];
91 priv->nibbles[i++] = *p >> 4;
92 priv->nibbles[i++] = *p & 0xf;
96 priv->nibbles[i++] = *p >> 4;
97 priv->nibbles[i++] = *p & 0xf;
102 priv->max_fetched = nibble;
106 static char *codes[16] = {
125 static char *ctrl_names[8] = {
136 static int seg_length;
137 int z8k_lookup_instr PARAMS ((unsigned char *, disassemble_info *));
138 static void output_instr
139 PARAMS ((instr_data_s *, unsigned long, disassemble_info *));
140 static void unpack_instr PARAMS ((instr_data_s *, int, disassemble_info *));
141 static void unparse_instr PARAMS ((instr_data_s *, int));
144 print_insn_z8k (addr, info, is_segmented)
146 disassemble_info *info;
149 instr_data_s instr_data;
151 info->private_data = (PTR) &instr_data;
152 instr_data.max_fetched = 0;
153 instr_data.insn_start = addr;
154 if (setjmp (instr_data.bailout) != 0)
158 instr_data.tabl_index = z8k_lookup_instr (instr_data.nibbles, info);
159 if (instr_data.tabl_index > 0)
161 unpack_instr (&instr_data, is_segmented, info);
162 unparse_instr (&instr_data, is_segmented);
163 output_instr (&instr_data, addr, info);
164 return z8k_table[instr_data.tabl_index].length + seg_length;
168 FETCH_DATA (info, 4);
169 (*info->fprintf_func) (info->stream, ".word %02x%02x",
170 instr_data.bytes[0], instr_data.bytes[2]);
176 print_insn_z8001 (addr, info)
178 disassemble_info *info;
180 return print_insn_z8k (addr, info, 1);
184 print_insn_z8002 (addr, info)
186 disassemble_info *info;
188 return print_insn_z8k (addr, info, 0);
192 z8k_lookup_instr (nibbles, info)
193 unsigned char *nibbles;
194 disassemble_info *info;
197 int nibl_index, tabl_index;
199 unsigned short instr_nibl;
200 unsigned short tabl_datum, datum_class, datum_value;
204 while (!nibl_matched && z8k_table[tabl_index].name)
208 nibl_index < z8k_table[tabl_index].length * 2 && nibl_matched;
211 if ((nibl_index % 4) == 0)
212 /* Fetch one word at a time. */
213 FETCH_DATA (info, nibl_index + 4);
214 instr_nibl = nibbles[nibl_index];
216 tabl_datum = z8k_table[tabl_index].byte_info[nibl_index];
217 datum_class = tabl_datum & CLASS_MASK;
218 datum_value = ~CLASS_MASK & tabl_datum;
223 if (datum_value != instr_nibl)
227 if (!((~instr_nibl) & 0x4))
231 if (!(instr_nibl & 0x4))
235 if (!((~instr_nibl) & 0x8))
239 if (!(instr_nibl & 0x8))
243 if (!((~instr_nibl) & 0x8))
248 if (!(instr_nibl & 0x8))
257 if ((instr_nibl | 0x2) != (datum_value | 0x2))
276 output_instr (instr_data, addr, info)
277 instr_data_s *instr_data;
279 disassemble_info *info;
281 int loop, loop_limit;
285 strcpy (out_str, "\t");
287 loop_limit = (z8k_table[instr_data->tabl_index].length + seg_length) * 2;
288 FETCH_DATA (info, loop_limit);
289 for (loop = 0; loop < loop_limit; loop++)
291 sprintf (tmp_str, "%x", instr_data->nibbles[loop]);
292 strcat (out_str, tmp_str);
297 strcat (out_str, " ");
300 strcat (out_str, instr_data->instr_asmsrc);
302 (*info->fprintf_func) (info->stream, "%s", out_str);
306 unpack_instr (instr_data, is_segmented, info)
307 instr_data_s *instr_data;
309 disassemble_info *info;
311 int nibl_count, loop;
312 unsigned short instr_nibl, instr_byte, instr_word;
314 unsigned int tabl_datum, datum_class;
315 unsigned short datum_value;
320 while (z8k_table[instr_data->tabl_index].byte_info[loop] != 0)
322 FETCH_DATA (info, nibl_count + 4 - (nibl_count % 4));
323 instr_nibl = instr_data->nibbles[nibl_count];
324 instr_byte = instr_data->bytes[nibl_count & ~1];
325 instr_word = instr_data->words[nibl_count & ~3];
327 tabl_datum = z8k_table[instr_data->tabl_index].byte_info[loop];
328 datum_class = tabl_datum & CLASS_MASK;
329 datum_value = tabl_datum & ~CLASS_MASK;
337 instr_data->displacement = instr_data->insn_start + 4 +
338 (signed short) (instr_word & 0xffff);
342 if (instr_word & 0x800)
344 /* neg. 12 bit displacement */
345 instr_data->displacement = instr_data->insn_start + 2
346 - (signed short) ((instr_word & 0xfff) | 0xf000) * 2;
350 instr_data->displacement = instr_data->insn_start + 2
351 - (instr_word & 0x0fff) * 2;
363 instr_data->immediate = instr_nibl;
366 instr_data->immediate = (-instr_byte);
370 instr_data->immediate = instr_byte;
374 instr_data->immediate = instr_word;
378 FETCH_DATA (info, nibl_count + 8);
379 instr_long = (instr_data->words[nibl_count] << 16)
380 | (instr_data->words[nibl_count + 4]);
381 instr_data->immediate = instr_long;
385 instr_data->immediate = instr_nibl - 1;
388 instr_data->immediate = instr_nibl + 1;
391 instr_data->immediate = 1;
394 instr_data->immediate = 2;
397 instr_data->immediate = instr_nibl & 0x3;
404 instr_data->cond_code = instr_nibl;
409 if (instr_nibl & 0x8)
411 FETCH_DATA (info, nibl_count + 8);
412 instr_long = (instr_data->words[nibl_count] << 16)
413 | (instr_data->words[nibl_count + 4]);
414 instr_data->address = ((instr_word & 0x7f00) << 8) +
415 (instr_long & 0xffff);
421 instr_data->address = ((instr_word & 0x7f00) << 8) +
422 (instr_word & 0x00ff);
428 instr_data->address = instr_word;
434 instr_data->ctrl_code = instr_nibl & 0x7;
437 instr_data->displacement = instr_data->insn_start + 2 - (instr_byte & 0x7f) * 2;
441 instr_data->displacement = instr_data->insn_start + 2 - (instr_byte & 0x7f) * 2;
445 instr_data->interrupts = instr_nibl & 0x3;
448 instr_data->interrupts = instr_nibl & 0x3;
451 instr_data->ctrl_code = instr_nibl & 0x7;
454 instr_data->flags = instr_nibl;
457 instr_data->arg_reg[datum_value] = instr_nibl;
460 instr_data->arg_reg[datum_value] = instr_nibl;
463 instr_data->displacement = instr_data->insn_start + 2 + (signed char)instr_byte * 2;
477 unparse_instr (instr_data, is_segmented)
478 instr_data_s *instr_data;
481 unsigned short datum_value;
482 unsigned int tabl_datum, datum_class;
483 int loop, loop_limit;
484 char out_str[80], tmp_str[25];
486 sprintf (out_str, "\t%s\t", z8k_table[instr_data->tabl_index].name);
488 loop_limit = z8k_table[instr_data->tabl_index].noperands;
489 for (loop = 0; loop < loop_limit; loop++)
492 strcat (out_str, ",");
494 tabl_datum = z8k_table[instr_data->tabl_index].arg_info[loop];
495 datum_class = tabl_datum & CLASS_MASK;
496 datum_value = tabl_datum & ~CLASS_MASK;
501 sprintf (tmp_str, "0x%0lx(R%ld)", instr_data->address,
502 instr_data->arg_reg[datum_value]);
503 strcat (out_str, tmp_str);
506 sprintf (tmp_str, "r%ld(#%lx)", instr_data->arg_reg[datum_value],
507 instr_data->immediate);
508 strcat (out_str, tmp_str);
511 sprintf (tmp_str, "r%ld(R%ld)", instr_data->arg_reg[datum_value],
512 instr_data->arg_reg[ARG_RX]);
513 strcat (out_str, tmp_str);
516 sprintf (tmp_str, "0x%0lx", instr_data->displacement);
517 strcat (out_str, tmp_str);
520 sprintf (tmp_str, "#0x%0lx", instr_data->immediate);
521 strcat (out_str, tmp_str);
524 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
525 strcat (out_str, tmp_str);
528 sprintf (tmp_str, "%s", ctrl_names[instr_data->ctrl_code]);
529 strcat (out_str, tmp_str);
533 sprintf (tmp_str, "0x%0lx", instr_data->address);
534 strcat (out_str, tmp_str);
537 sprintf (tmp_str, "@R%ld", instr_data->arg_reg[datum_value]);
538 strcat (out_str, tmp_str);
541 sprintf (tmp_str, "0x%0lx", instr_data->flags);
542 strcat (out_str, tmp_str);
545 if (instr_data->arg_reg[datum_value] >= 0x8)
547 sprintf (tmp_str, "rl%ld",
548 instr_data->arg_reg[datum_value] - 0x8);
552 sprintf (tmp_str, "rh%ld", instr_data->arg_reg[datum_value]);
554 strcat (out_str, tmp_str);
557 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
558 strcat (out_str, tmp_str);
561 sprintf (tmp_str, "rq%ld", instr_data->arg_reg[datum_value]);
562 strcat (out_str, tmp_str);
565 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
566 strcat (out_str, tmp_str);
570 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
572 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
573 strcat (out_str, tmp_str);
581 strcpy (instr_data->instr_asmsrc, out_str);