1 /* Print mips instructions for GDB, the GNU debugger.
2 Copyright 1989, 1991, 1992 Free Software Foundation, Inc.
5 This file is part of GDB.
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include "opcode/mips.h"
25 /* Mips instructions are never longer than this many bytes. */
28 /* Number of elements in the opcode table. */
29 #define NOPCODES (sizeof mips_opcodes / sizeof mips_opcodes[0])
31 #define MKLONG(p) *(unsigned long*)p
34 static unsigned char *
35 print_insn_arg (d, l, stream, pc)
37 register unsigned long int *l;
50 fprintf (stream, "$%s", reg_names[((struct op_i_fmt *) l)->rs]);
54 fprintf (stream, "$%s", reg_names[((struct op_i_fmt *) l)->rt]);
58 fprintf (stream, "%d", ((struct op_i_fmt *) l)->immediate);
61 case 'j': /* same as i, but sign-extended */
62 fprintf (stream, "%d", ((struct op_b_fmt *) l)->delta);
66 print_address ((pc & 0xF0000000) | (((struct op_j_fmt *)l)->target << 2),
71 print_address ((((struct op_b_fmt *) l)->delta << 2) + pc + 4, stream);
75 fprintf (stream, "$%s", reg_names[((struct op_r_fmt *) l)->rd]);
79 fprintf (stream, "0x%x", ((struct op_r_fmt *) l)->shamt);
83 fprintf (stream, "$f%d", ((struct fop_r_fmt *) l)->fs);
87 fprintf (stream, "$f%d", ((struct fop_r_fmt *) l)->ft);
91 fprintf (stream, "$f%d", ((struct fop_r_fmt *) l)->fd);
95 fprintf (stream, "# internal error, undefined modifier(%c)", *d);
100 /* Print the mips instruction at address MEMADDR in debugged memory,
101 on STREAM. Returns length of the instruction, in bytes, which
105 print_insn (memaddr, stream)
109 unsigned char buffer[MAXLEN];
114 read_memory (memaddr, buffer, MAXLEN);
115 SWAP_TARGET_AND_HOST (buffer, MAXLEN);
117 for (i = 0; i < NOPCODES; i++)
119 register unsigned int opcode = mips_opcodes[i].opcode;
120 register unsigned int match = mips_opcodes[i].match;
121 if ((*(unsigned int*)buffer & match) == opcode)
126 /* Handle undefined instructions. */
129 fprintf (stream, "0x%x",l);
133 fprintf (stream, "%s", mips_opcodes[i].name);
135 if (!(d = mips_opcodes[i].args))
141 print_insn_arg (d++, &l, stream, memaddr);