1 /* Print instructions for the Motorola 88000, for GDB and GNU Binutils.
2 Copyright (c) 1986, 1987, 1988, 1989, 1990, 1991, 1993, 1998
3 Free Software Foundation, Inc.
4 Contributed by Data General Corporation, November 1989.
5 Partially derived from an earlier printcmd.c.
7 This file is part of GDB and the GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #include "opcode/m88k.h"
27 INSTAB *hashtable[HASHVAL] = {0};
30 m88kdis PARAMS ((bfd_vma, unsigned long, struct disassemble_info *));
33 printop PARAMS ((struct disassemble_info *, OPSPEC *,
34 unsigned long, bfd_vma, int));
37 init_disasm PARAMS ((void));
40 install PARAMS ((INSTAB *instptr));
43 * Disassemble an M88000 Instruction
46 * This module decodes the instruction at memaddr.
50 * Revision 1.0 11/08/85 Creation date by Motorola
51 * 05/11/89 R. Trawick adapted to GDB interface.
52 * 07/12/93 Ian Lance Taylor updated to
57 print_insn_m88k (memaddr, info)
59 struct disassemble_info *info;
64 /* Instruction addresses may have low two bits set. Clear them. */
65 memaddr &=~ (bfd_vma) 3;
67 status = (*info->read_memory_func) (memaddr, buffer, 4, info);
70 (*info->memory_error_func) (status, memaddr, info);
74 return m88kdis (memaddr, bfd_getb32 (buffer), info);
78 * disassemble the instruction in 'instruction'.
79 * 'pc' should be the address of this instruction, it will
80 * be used to print the target address if this is a relative jump or call
81 * the disassembled instruction is written to 'info'.
82 * The function returns the length of this instruction in bytes.
86 m88kdis (pc, instruction, info)
88 unsigned long instruction;
89 struct disassemble_info *info;
91 static int ihashtab_initialized = 0;
97 if (! ihashtab_initialized)
100 /* create the appropriate mask to isolate the opcode */
102 class = instruction & DEFMASK;
103 if ((class >= SFU0) && (class <= SFU7))
105 if (instruction < SFU1)
110 else if (class == RRR)
112 else if (class == RRI10)
115 /* isolate the opcode */
116 opcode = instruction & opmask;
118 /* search the hash table with the isolated opcode */
119 for (entry_ptr = hashtable[opcode % HASHVAL];
120 (entry_ptr != NULL) && (entry_ptr->opcode != opcode);
121 entry_ptr = entry_ptr->next)
124 if (entry_ptr == NULL)
125 (*info->fprintf_func) (info->stream, "word\t%08x", instruction);
128 (*info->fprintf_func) (info->stream, "%s", entry_ptr->mnemonic);
129 printop (info, &(entry_ptr->op1), instruction, pc, 1);
130 printop (info, &(entry_ptr->op2), instruction, pc, 0);
131 printop (info, &(entry_ptr->op3), instruction, pc, 0);
138 * Decode an Operand of an Instruction
140 * Functional Description
142 * This module formats and writes an operand of an instruction to info
143 * based on the operand specification. When the first flag is set this
144 * is the first operand of an instruction. Undefined operand types
145 * cause a <dis error> message.
148 * disassemble_info where the operand may be printed
149 * OPSPEC *opptr Pointer to an operand specification
150 * UINT inst Instruction from which operand is extracted
151 * UINT pc PC of instruction; used for pc-relative disp.
152 * int first Flag which if nonzero indicates the first
153 * operand of an instruction
157 * The operand specified is extracted from the instruction and is
158 * written to buf in the format specified. The operand is preceded
159 * by a comma if it is not the first operand of an instruction and it
160 * is not a register indirect form. Registers are preceded by 'r' and
161 * hex values by '0x'.
165 * Revision 1.0 11/08/85 Creation date
169 printop (info, opptr, inst, pc, first)
170 struct disassemble_info *info;
179 if (opptr->width == 0)
190 (*info->fprintf_func) (info->stream, ",");
198 (*info->fprintf_func) (info->stream, "cr%d",
199 UEXT (inst, opptr->offset, opptr->width));
203 (*info->fprintf_func) (info->stream, "fcr%d",
204 UEXT (inst, opptr->offset, opptr->width));
208 (*info->fprintf_func) (info->stream, "[r%d]",
209 UEXT (inst, opptr->offset, opptr->width));
213 (*info->fprintf_func) (info->stream, "r%d",
214 UEXT (inst, opptr->offset, opptr->width));
218 (*info->fprintf_func) (info->stream, "x%d",
219 UEXT (inst, opptr->offset, opptr->width));
223 extracted_field = UEXT (inst, opptr->offset, opptr->width);
224 if (extracted_field == 0)
225 (*info->fprintf_func) (info->stream, "0");
227 (*info->fprintf_func) (info->stream, "0x%02x", extracted_field);
231 extracted_field = UEXT (inst, opptr->offset, opptr->width);
232 (*info->fprintf_func) (info->stream, "%d", extracted_field);
236 extracted_field = UEXT (inst, opptr->offset, opptr->width);
237 switch (extracted_field & 0x0f)
239 case 0x1: cond_mask_sym = "gt0"; break;
240 case 0x2: cond_mask_sym = "eq0"; break;
241 case 0x3: cond_mask_sym = "ge0"; break;
242 case 0xc: cond_mask_sym = "lt0"; break;
243 case 0xd: cond_mask_sym = "ne0"; break;
244 case 0xe: cond_mask_sym = "le0"; break;
245 default: cond_mask_sym = NULL; break;
247 if (cond_mask_sym != NULL)
248 (*info->fprintf_func) (info->stream, "%s", cond_mask_sym);
250 (*info->fprintf_func) (info->stream, "%x", extracted_field);
254 (*info->print_address_func)
255 (pc + (4 * (SEXT (inst, opptr->offset, opptr->width))),
260 (*info->fprintf_func) (info->stream, "%d,r%d",
261 UEXT (inst, opptr->offset, 5),
262 UEXT (inst, (opptr->offset) + 5, 5));
266 (*info->fprintf_func) (info->stream, "%d<%d>",
267 UEXT (inst, (opptr->offset) + 5, 5),
268 UEXT (inst, opptr->offset, 5));
272 /* xgettext:c-format */
273 (*info->fprintf_func) (info->stream, _("# <dis error: %08x>"), inst);
278 * Initialize the Disassembler Instruction Table
280 * Initialize the hash table and instruction table for the disassembler.
281 * This should be called once before the first call to disasm().
287 * If the debug option is selected, certain statistics about the hashing
288 * distribution are written to stdout.
292 * Revision 1.0 11/08/85 Creation date
300 for (i = 0; i < HASHVAL; i++)
303 size = sizeof (instructions) / sizeof (INSTAB);
304 for (i = 0; i < size; i++)
305 install (&instructions[i]);
309 * Insert an instruction into the disassembler table by hashing the
310 * opcode and inserting it into the linked list for that hash value.
314 * INSTAB *instptr Pointer to the entry in the instruction table
317 * Revision 1.0 11/08/85 Creation date
318 * 05/11/89 R. TRAWICK ADAPTED FROM MOTOROLA
327 i = (instptr->opcode) % HASHVAL;
328 instptr->next = hashtable[i];
329 hashtable[i] = instptr;