1 /* Disassemble AVR instructions.
2 Copyright 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
7 This file is part of libopcodes.
9 This library 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 3, or (at your option)
14 It is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17 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., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
28 #include "libiberty.h"
35 int insn_size; /* In words. */
37 unsigned int bin_opcode;
40 #define AVR_INSN(NAME, CONSTR, OPCODE, SIZE, ISA, BIN) \
41 {#NAME, CONSTR, OPCODE, SIZE, ISA, BIN},
43 const struct avr_opcodes_s avr_opcodes[] =
45 #include "opcode/avr.h"
46 {NULL, NULL, NULL, 0, 0, 0}
49 static const char * comment_start = "0x";
52 avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constraint,
53 char *buf, char *comment, int regs, int *sym, bfd_vma *sym_addr)
60 /* Any register operand. */
63 insn = (insn & 0xf) | ((insn & 0x0200) >> 5); /* Source register. */
65 insn = (insn & 0x01f0) >> 4; /* Destination register. */
67 sprintf (buf, "r%d", insn);
72 sprintf (buf, "r%d", 16 + (insn & 0xf));
74 sprintf (buf, "r%d", 16 + ((insn & 0xf0) >> 4));
78 sprintf (buf, "r%d", 24 + ((insn & 0x30) >> 3));
83 sprintf (buf, "r%d", 16 + (insn & 7));
85 sprintf (buf, "r%d", 16 + ((insn >> 4) & 7));
90 sprintf (buf, "r%d", (insn & 0xf) * 2);
92 sprintf (buf, "r%d", ((insn & 0xf0) >> 3));
99 switch (insn & 0x100f)
101 case 0x0000: xyz = "Z"; break;
102 case 0x1001: xyz = "Z+"; break;
103 case 0x1002: xyz = "-Z"; break;
104 case 0x0008: xyz = "Y"; break;
105 case 0x1009: xyz = "Y+"; break;
106 case 0x100a: xyz = "-Y"; break;
107 case 0x100c: xyz = "X"; break;
108 case 0x100d: xyz = "X+"; break;
109 case 0x100e: xyz = "-X"; break;
110 default: xyz = "??"; ok = 0;
114 if (AVR_UNDEF_P (insn))
115 sprintf (comment, _("undefined"));
124 if (AVR_UNDEF_P (insn))
125 sprintf (comment, _("undefined"));
133 x |= (insn >> 7) & (3 << 3);
134 x |= (insn >> 8) & (1 << 5);
140 sprintf (buf, "+%d", x);
141 sprintf (comment, "0x%02x", x);
147 *sym_addr = ((((insn & 1) | ((insn & 0x1f0) >> 3)) << 16) | insn2) * 2;
148 /* See PR binutils/2454. Ideally we would like to display the hex
149 value of the address only once, but this would mean recoding
150 objdump_print_address() which would affect many targets. */
151 sprintf (buf, "%#lx", (unsigned long) *sym_addr);
152 strcpy (comment, comment_start);
157 int rel_addr = (((insn & 0xfff) ^ 0x800) - 0x800) * 2;
158 sprintf (buf, ".%+-8d", rel_addr);
160 *sym_addr = pc + 2 + rel_addr;
161 strcpy (comment, comment_start);
167 int rel_addr = ((((insn >> 3) & 0x7f) ^ 0x40) - 0x40) * 2;
169 sprintf (buf, ".%+-8d", rel_addr);
171 *sym_addr = pc + 2 + rel_addr;
172 strcpy (comment, comment_start);
177 sprintf (buf, "0x%04X", insn2);
181 sprintf (buf, "0x%02X", ((insn & 0xf00) >> 4) | (insn & 0xf));
182 sprintf (comment, "%d", ((insn & 0xf00) >> 4) | (insn & 0xf));
187 fprintf (stderr, _("Internal disassembler error"));
195 x = (insn & 0xf) | ((insn >> 2) & 0x30);
196 sprintf (buf, "0x%02x", x);
197 sprintf (comment, "%d", x);
202 sprintf (buf, "%d", insn & 7);
206 sprintf (buf, "%d", (insn >> 4) & 7);
214 x |= (insn >> 5) & 0x30;
215 sprintf (buf, "0x%02x", x);
216 sprintf (comment, "%d", x);
224 x = (insn >> 3) & 0x1f;
225 sprintf (buf, "0x%02x", x);
226 sprintf (comment, "%d", x);
236 fprintf (stderr, _("unknown constraint `%c'"), constraint);
243 static unsigned short
244 avrdis_opcode (bfd_vma addr, disassemble_info *info)
249 status = info->read_memory_func (addr, buffer, 2, info);
252 return bfd_getl16 (buffer);
254 info->memory_error_func (status, addr, info);
260 print_insn_avr (bfd_vma addr, disassemble_info *info)
262 unsigned int insn, insn2;
263 const struct avr_opcodes_s *opcode;
264 static unsigned int *maskptr;
265 void *stream = info->stream;
266 fprintf_ftype prin = info->fprintf_func;
267 static unsigned int *avr_bin_masks;
268 static int initialized;
271 char op1[20], op2[20], comment1[40], comment2[40];
272 int sym_op1 = 0, sym_op2 = 0;
273 bfd_vma sym_addr1, sym_addr2;
278 unsigned int nopcodes;
280 /* PR 4045: Try to avoid duplicating the 0x prefix that
281 objdump_print_addr() will put on addresses when there
282 is no symbol table available. */
283 if (info->symtab_size == 0)
286 nopcodes = sizeof (avr_opcodes) / sizeof (struct avr_opcodes_s);
288 avr_bin_masks = xmalloc (nopcodes * sizeof (unsigned int));
290 for (opcode = avr_opcodes, maskptr = avr_bin_masks;
295 unsigned int bin = 0;
296 unsigned int mask = 0;
298 for (s = opcode->opcode; *s; ++s)
303 mask |= (*s == '1' || *s == '0');
305 assert (s - opcode->opcode == 16);
306 assert (opcode->bin_opcode == bin);
313 insn = avrdis_opcode (addr, info);
315 for (opcode = avr_opcodes, maskptr = avr_bin_masks;
318 if ((insn & *maskptr) == opcode->bin_opcode)
321 /* Special case: disassemble `ldd r,b+0' as `ld r,b', and
322 `std b+0,r' as `st b,r' (next entry in the table). */
324 if (AVR_DISP0_P (insn))
334 char *op = opcode->constraints;
339 if (opcode->insn_size > 1)
341 insn2 = avrdis_opcode (addr + 2, info);
345 if (*op && *op != '?')
347 int regs = REGISTER_P (*op);
349 ok = avr_operand (insn, insn2, addr, *op, op1, comment1, 0, &sym_op1, &sym_addr1);
351 if (ok && *(++op) == ',')
352 ok = avr_operand (insn, insn2, addr, *(++op), op2,
353 *comment1 ? comment2 : comment1, regs, &sym_op2, &sym_addr2);
359 /* Unknown opcode, or invalid combination of operands. */
360 sprintf (op1, "0x%04x", insn);
362 sprintf (comment1, "????");
366 (*prin) (stream, "%s", ok ? opcode->name : ".word");
369 (*prin) (stream, "\t%s", op1);
372 (*prin) (stream, ", %s", op2);
375 (*prin) (stream, "\t; %s", comment1);
378 info->print_address_func (sym_addr1, info);
381 (*prin) (stream, " %s", comment2);
384 info->print_address_func (sym_addr2, info);