1999-05-03 09:29:11 +02:00
|
|
|
|
/* Instruction printing code for the ARM
|
2001-03-13 23:58:38 +01:00
|
|
|
|
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
|
|
|
|
|
Modification by James G. Smith (jsmith@cygnus.co.uk)
|
|
|
|
|
|
|
|
|
|
This file is part of libopcodes.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
|
Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
|
more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
1999-10-27 20:14:17 +02:00
|
|
|
|
#include "sysdep.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "dis-asm.h"
|
|
|
|
|
#define DEFINE_TABLE
|
|
|
|
|
#include "arm-opc.h"
|
|
|
|
|
#include "coff/internal.h"
|
|
|
|
|
#include "libcoff.h"
|
|
|
|
|
#include "opintl.h"
|
|
|
|
|
|
|
|
|
|
/* FIXME: This shouldn't be done here */
|
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
|
#include "elf/internal.h"
|
|
|
|
|
#include "elf/arm.h"
|
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
#ifndef streq
|
2000-01-27 23:17:12 +01:00
|
|
|
|
#define streq(a,b) (strcmp ((a), (b)) == 0)
|
2000-01-03 21:50:57 +01:00
|
|
|
|
#endif
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
#ifndef strneq
|
2000-01-27 23:17:12 +01:00
|
|
|
|
#define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef NUM_ELEM
|
|
|
|
|
#define NUM_ELEM(a) (sizeof (a) / sizeof (a)[0])
|
2000-01-03 21:50:57 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-06-16 04:58:52 +02:00
|
|
|
|
static char * arm_conditional[] =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{"eq", "ne", "cs", "cc", "mi", "pl", "vs", "vc",
|
|
|
|
|
"hi", "ls", "ge", "lt", "gt", "le", "", "nv"};
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
const char * name;
|
|
|
|
|
const char * description;
|
|
|
|
|
const char * reg_names[16];
|
|
|
|
|
}
|
|
|
|
|
arm_regname;
|
1999-06-16 04:24:36 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
static arm_regname regnames[] =
|
|
|
|
|
{
|
|
|
|
|
{ "raw" , "Select raw register names",
|
|
|
|
|
{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"}},
|
2000-06-26 18:50:29 +02:00
|
|
|
|
{ "gcc", "Select register names used by GCC",
|
|
|
|
|
{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "sl", "fp", "ip", "sp", "lr", "pc" }},
|
2000-01-27 23:17:12 +01:00
|
|
|
|
{ "std", "Select register names used in ARM's ISA documentation",
|
|
|
|
|
{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "sp", "lr", "pc" }},
|
|
|
|
|
{ "apcs", "Select register names used in the APCS",
|
|
|
|
|
{ "a1", "a2", "a3", "a4", "v1", "v2", "v3", "v4", "v5", "v6", "sl", "fp", "ip", "sp", "lr", "pc" }},
|
|
|
|
|
{ "atpcs", "Select register names used in the ATPCS",
|
|
|
|
|
{ "a1", "a2", "a3", "a4", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "IP", "SP", "LR", "PC" }},
|
2000-02-14 20:02:47 +01:00
|
|
|
|
{ "special-atpcs", "Select special register names used in the ATPCS",
|
2000-01-27 23:17:12 +01:00
|
|
|
|
{ "a1", "a2", "a3", "a4", "v1", "v2", "v3", "WR", "v5", "SB", "SL", "FP", "IP", "SP", "LR", "PC" }}
|
|
|
|
|
};
|
|
|
|
|
|
2000-06-26 18:50:29 +02:00
|
|
|
|
/* Default to GCC register name set. */
|
2000-01-27 23:17:12 +01:00
|
|
|
|
static unsigned int regname_selected = 1;
|
|
|
|
|
|
|
|
|
|
#define NUM_ARM_REGNAMES NUM_ELEM (regnames)
|
|
|
|
|
#define arm_regnames regnames[regname_selected].reg_names
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
static boolean force_thumb = false;
|
|
|
|
|
|
1999-06-16 04:58:52 +02:00
|
|
|
|
static char * arm_fp_const[] =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{"0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0"};
|
|
|
|
|
|
1999-06-16 04:58:52 +02:00
|
|
|
|
static char * arm_shift[] =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{"lsl", "lsr", "asr", "ror"};
|
2000-01-03 21:50:57 +01:00
|
|
|
|
|
|
|
|
|
/* Forward declarations. */
|
|
|
|
|
static void arm_decode_shift PARAMS ((long, fprintf_ftype, void *));
|
|
|
|
|
static int print_insn_arm PARAMS ((bfd_vma, struct disassemble_info *, long));
|
|
|
|
|
static int print_insn_thumb PARAMS ((bfd_vma, struct disassemble_info *, long));
|
|
|
|
|
static void parse_disassembler_options PARAMS ((char *));
|
2000-01-27 23:17:12 +01:00
|
|
|
|
static int print_insn PARAMS ((bfd_vma, struct disassemble_info *, boolean));
|
2000-02-14 20:02:47 +01:00
|
|
|
|
int get_arm_regname_num_options (void);
|
|
|
|
|
int set_arm_regname_option (int option);
|
|
|
|
|
int get_arm_regnames (int option, const char **setname,
|
|
|
|
|
const char **setdescription,
|
|
|
|
|
const char ***register_names);
|
2000-01-03 21:50:57 +01:00
|
|
|
|
|
|
|
|
|
/* Functions. */
|
2000-02-14 20:02:47 +01:00
|
|
|
|
int
|
|
|
|
|
get_arm_regname_num_options (void)
|
|
|
|
|
{
|
|
|
|
|
return NUM_ARM_REGNAMES;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
set_arm_regname_option (int option)
|
|
|
|
|
{
|
|
|
|
|
int old = regname_selected;
|
|
|
|
|
regname_selected = option;
|
|
|
|
|
return old;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
get_arm_regnames (int option, const char **setname,
|
|
|
|
|
const char **setdescription,
|
|
|
|
|
const char ***register_names)
|
|
|
|
|
{
|
|
|
|
|
*setname = regnames[option].name;
|
|
|
|
|
*setdescription = regnames[option].description;
|
|
|
|
|
*register_names = regnames[option].reg_names;
|
|
|
|
|
return 16;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
arm_decode_shift (given, func, stream)
|
|
|
|
|
long given;
|
|
|
|
|
fprintf_ftype func;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
void * stream;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
func (stream, "%s", arm_regnames[given & 0xf]);
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((given & 0xff0) != 0)
|
|
|
|
|
{
|
|
|
|
|
if ((given & 0x10) == 0)
|
|
|
|
|
{
|
|
|
|
|
int amount = (given & 0xf80) >> 7;
|
|
|
|
|
int shift = (given & 0x60) >> 5;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (amount == 0)
|
|
|
|
|
{
|
|
|
|
|
if (shift == 3)
|
|
|
|
|
{
|
|
|
|
|
func (stream, ", rrx");
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
amount = 32;
|
|
|
|
|
}
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, ", %s #%d", arm_shift[shift], amount);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
func (stream, ", %s %s", arm_shift[(given & 0x60) >> 5],
|
|
|
|
|
arm_regnames[(given & 0xf00) >> 8]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print one instruction from PC on INFO->STREAM.
|
|
|
|
|
Return the size of the instruction (always 4 on ARM). */
|
|
|
|
|
static int
|
|
|
|
|
print_insn_arm (pc, info, given)
|
1999-06-16 04:58:52 +02:00
|
|
|
|
bfd_vma pc;
|
|
|
|
|
struct disassemble_info * info;
|
|
|
|
|
long given;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct arm_opcode * insn;
|
|
|
|
|
void * stream = info->stream;
|
|
|
|
|
fprintf_ftype func = info->fprintf_func;
|
|
|
|
|
|
|
|
|
|
for (insn = arm_opcodes; insn->assembler; insn++)
|
|
|
|
|
{
|
|
|
|
|
if ((given & insn->mask) == insn->value)
|
|
|
|
|
{
|
|
|
|
|
char * c;
|
|
|
|
|
|
|
|
|
|
for (c = insn->assembler; *c; c++)
|
|
|
|
|
{
|
|
|
|
|
if (*c == '%')
|
|
|
|
|
{
|
|
|
|
|
switch (*++c)
|
|
|
|
|
{
|
|
|
|
|
case '%':
|
|
|
|
|
func (stream, "%%");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
|
if (((given & 0x000f0000) == 0x000f0000)
|
|
|
|
|
&& ((given & 0x02000000) == 0))
|
|
|
|
|
{
|
|
|
|
|
int offset = given & 0xfff;
|
|
|
|
|
|
|
|
|
|
func (stream, "[pc");
|
|
|
|
|
|
|
|
|
|
if (given & 0x01000000)
|
|
|
|
|
{
|
|
|
|
|
if ((given & 0x00800000) == 0)
|
|
|
|
|
offset = - offset;
|
|
|
|
|
|
|
|
|
|
/* pre-indexed */
|
2001-07-16 21:04:31 +02:00
|
|
|
|
func (stream, ", #%d]", offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
offset += pc + 8;
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Cope with the possibility of write-back
|
|
|
|
|
being used. Probably a very dangerous thing
|
|
|
|
|
for the programmer to do, but who are we to
|
|
|
|
|
argue ? */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (given & 0x00200000)
|
|
|
|
|
func (stream, "!");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Post indexed. */
|
2001-07-16 21:04:31 +02:00
|
|
|
|
func (stream, "], #%d", offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
offset = pc + 8; /* ie ignore the offset. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "\t; ");
|
|
|
|
|
info->print_address_func (offset, info);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
func (stream, "[%s",
|
|
|
|
|
arm_regnames[(given >> 16) & 0xf]);
|
|
|
|
|
if ((given & 0x01000000) != 0)
|
|
|
|
|
{
|
|
|
|
|
if ((given & 0x02000000) == 0)
|
|
|
|
|
{
|
|
|
|
|
int offset = given & 0xfff;
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, ", %s#%d",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""), offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
func (stream, ", %s",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""));
|
|
|
|
|
arm_decode_shift (given, func, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "]%s",
|
|
|
|
|
((given & 0x00200000) != 0) ? "!" : "");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ((given & 0x02000000) == 0)
|
|
|
|
|
{
|
|
|
|
|
int offset = given & 0xfff;
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, "], %s#%d",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""), offset);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "]");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
func (stream, "], %s",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""));
|
|
|
|
|
arm_decode_shift (given, func, stream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
|
if ((given & 0x004f0000) == 0x004f0000)
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* PC relative with immediate offset. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int offset = ((given & 0xf00) >> 4) | (given & 0xf);
|
1999-06-04 09:14:10 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((given & 0x00800000) == 0)
|
|
|
|
|
offset = -offset;
|
1999-06-04 09:14:10 +02:00
|
|
|
|
|
2001-07-16 21:04:31 +02:00
|
|
|
|
func (stream, "[pc, #%d]\t; ", offset);
|
1999-06-04 09:14:10 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(*info->print_address_func)
|
|
|
|
|
(offset + pc + 8, info);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
func (stream, "[%s",
|
|
|
|
|
arm_regnames[(given >> 16) & 0xf]);
|
|
|
|
|
if ((given & 0x01000000) != 0)
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Pre-indexed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((given & 0x00400000) == 0x00400000)
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Immediate. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int offset = ((given & 0xf00) >> 4) | (given & 0xf);
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, ", %s#%d",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""), offset);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Register. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, ", %s%s",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""),
|
|
|
|
|
arm_regnames[given & 0xf]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "]%s",
|
|
|
|
|
((given & 0x00200000) != 0) ? "!" : "");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Post-indexed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((given & 0x00400000) == 0x00400000)
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Immediate. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int offset = ((given & 0xf00) >> 4) | (given & 0xf);
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, "], %s#%d",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""), offset);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "]");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Register. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "], %s%s",
|
|
|
|
|
(((given & 0x00800000) == 0)
|
|
|
|
|
? "-" : ""),
|
|
|
|
|
arm_regnames[given & 0xf]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
|
(*info->print_address_func)
|
|
|
|
|
(BDISP (given) * 4 + pc + 8, info);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
|
func (stream, "%s",
|
|
|
|
|
arm_conditional [(given >> 28) & 0xf]);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
|
{
|
|
|
|
|
int started = 0;
|
|
|
|
|
int reg;
|
|
|
|
|
|
|
|
|
|
func (stream, "{");
|
|
|
|
|
for (reg = 0; reg < 16; reg++)
|
|
|
|
|
if ((given & (1 << reg)) != 0)
|
|
|
|
|
{
|
|
|
|
|
if (started)
|
|
|
|
|
func (stream, ", ");
|
|
|
|
|
started = 1;
|
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
}
|
|
|
|
|
func (stream, "}");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
|
if ((given & 0x02000000) != 0)
|
|
|
|
|
{
|
|
|
|
|
int rotate = (given & 0xf00) >> 7;
|
|
|
|
|
int immed = (given & 0xff);
|
1999-07-05 09:44:09 +02:00
|
|
|
|
immed = (((immed << (32 - rotate))
|
|
|
|
|
| (immed >> rotate)) & 0xffffffff);
|
|
|
|
|
func (stream, "#%d\t; 0x%x", immed, immed);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
arm_decode_shift (given, func, stream);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
if ((given & 0x0000f000) == 0x0000f000)
|
|
|
|
|
func (stream, "p");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
|
if ((given & 0x01200000) == 0x00200000)
|
|
|
|
|
func (stream, "t");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'A':
|
|
|
|
|
func (stream, "[%s", arm_regnames [(given >> 16) & 0xf]);
|
|
|
|
|
if ((given & 0x01000000) != 0)
|
|
|
|
|
{
|
|
|
|
|
int offset = given & 0xff;
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, ", %s#%d]%s",
|
|
|
|
|
((given & 0x00800000) == 0 ? "-" : ""),
|
|
|
|
|
offset * 4,
|
|
|
|
|
((given & 0x00200000) != 0 ? "!" : ""));
|
|
|
|
|
else
|
|
|
|
|
func (stream, "]");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int offset = given & 0xff;
|
|
|
|
|
if (offset)
|
|
|
|
|
func (stream, "], %s#%d",
|
|
|
|
|
((given & 0x00800000) == 0 ? "-" : ""),
|
|
|
|
|
offset * 4);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "]");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-11-25 01:21:40 +01:00
|
|
|
|
case 'B':
|
|
|
|
|
/* Print ARM V5 BLX(1) address: pc+25 bits. */
|
|
|
|
|
{
|
|
|
|
|
bfd_vma address;
|
|
|
|
|
bfd_vma offset = 0;
|
|
|
|
|
|
|
|
|
|
if (given & 0x00800000)
|
|
|
|
|
/* Is signed, hi bits should be ones. */
|
|
|
|
|
offset = (-1) ^ 0x00ffffff;
|
|
|
|
|
|
|
|
|
|
/* Offset is (SignExtend(offset field)<<2). */
|
|
|
|
|
offset += given & 0x00ffffff;
|
|
|
|
|
offset <<= 2;
|
|
|
|
|
address = offset + pc + 8;
|
|
|
|
|
|
|
|
|
|
if (given & 0x01000000)
|
|
|
|
|
/* H bit allows addressing to 2-byte boundaries. */
|
|
|
|
|
address += 2;
|
|
|
|
|
|
|
|
|
|
info->print_address_func (address, info);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2001-10-08 20:50:37 +02:00
|
|
|
|
case 'I':
|
|
|
|
|
/* Print a Cirrus/DSP shift immediate. */
|
|
|
|
|
/* Immediates are 7bit signed ints with bits 0..3 in
|
|
|
|
|
bits 0..3 of opcode and bits 4..6 in bits 5..7
|
|
|
|
|
of opcode. */
|
|
|
|
|
{
|
|
|
|
|
int imm;
|
|
|
|
|
|
|
|
|
|
imm = (given & 0xf) | ((given & 0xe0) >> 1);
|
|
|
|
|
|
|
|
|
|
/* Is ``imm'' a negative number? */
|
|
|
|
|
if (imm & 0x40)
|
|
|
|
|
imm |= (-1 << 7);
|
|
|
|
|
|
|
|
|
|
func (stream, "%d", imm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case 'C':
|
2000-07-04 07:47:22 +02:00
|
|
|
|
func (stream, "_");
|
|
|
|
|
if (given & 0x80000)
|
|
|
|
|
func (stream, "f");
|
|
|
|
|
if (given & 0x40000)
|
|
|
|
|
func (stream, "s");
|
|
|
|
|
if (given & 0x20000)
|
|
|
|
|
func (stream, "x");
|
|
|
|
|
if (given & 0x10000)
|
|
|
|
|
func (stream, "c");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'F':
|
|
|
|
|
switch (given & 0x00408000)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
func (stream, "4");
|
|
|
|
|
break;
|
|
|
|
|
case 0x8000:
|
|
|
|
|
func (stream, "1");
|
|
|
|
|
break;
|
|
|
|
|
case 0x00400000:
|
|
|
|
|
func (stream, "2");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
func (stream, "3");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'P':
|
|
|
|
|
switch (given & 0x00080080)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
func (stream, "s");
|
|
|
|
|
break;
|
|
|
|
|
case 0x80:
|
|
|
|
|
func (stream, "d");
|
|
|
|
|
break;
|
|
|
|
|
case 0x00080000:
|
|
|
|
|
func (stream, "e");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
func (stream, _("<illegal precision>"));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'Q':
|
|
|
|
|
switch (given & 0x00408000)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
func (stream, "s");
|
|
|
|
|
break;
|
|
|
|
|
case 0x8000:
|
|
|
|
|
func (stream, "d");
|
|
|
|
|
break;
|
|
|
|
|
case 0x00400000:
|
|
|
|
|
func (stream, "e");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
func (stream, "p");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'R':
|
|
|
|
|
switch (given & 0x60)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
break;
|
|
|
|
|
case 0x20:
|
|
|
|
|
func (stream, "p");
|
|
|
|
|
break;
|
|
|
|
|
case 0x40:
|
|
|
|
|
func (stream, "m");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
func (stream, "z");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
|
{
|
|
|
|
|
int bitstart = *c++ - '0';
|
|
|
|
|
int bitend = 0;
|
|
|
|
|
while (*c >= '0' && *c <= '9')
|
|
|
|
|
bitstart = (bitstart * 10) + *c++ - '0';
|
|
|
|
|
|
|
|
|
|
switch (*c)
|
|
|
|
|
{
|
|
|
|
|
case '-':
|
|
|
|
|
c++;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (*c >= '0' && *c <= '9')
|
|
|
|
|
bitend = (bitend * 10) + *c++ - '0';
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!bitend)
|
|
|
|
|
abort ();
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (*c)
|
|
|
|
|
{
|
|
|
|
|
case 'r':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "%d", reg);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "0x%08x", reg);
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Some SWI instructions have special
|
|
|
|
|
meanings. */
|
1999-06-16 04:58:52 +02:00
|
|
|
|
if ((given & 0x0fffffff) == 0x0FF00000)
|
|
|
|
|
func (stream, "\t; IMB");
|
|
|
|
|
else if ((given & 0x0fffffff) == 0x0FF00001)
|
|
|
|
|
func (stream, "\t; IMBRange");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
1999-11-16 04:37:02 +01:00
|
|
|
|
case 'X':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-11-16 04:37:02 +01:00
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-11-16 04:37:02 +01:00
|
|
|
|
func (stream, "%01x", reg & 0xf);
|
|
|
|
|
}
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case 'f':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (reg > 7)
|
|
|
|
|
func (stream, "#%s",
|
|
|
|
|
arm_fp_const[reg & 7]);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "f%d", reg);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
break;
|
2002-01-15 16:41:23 +01:00
|
|
|
|
|
|
|
|
|
case 'y':
|
|
|
|
|
case 'z':
|
|
|
|
|
{
|
|
|
|
|
int single = *c == 'y';
|
|
|
|
|
int regno;
|
|
|
|
|
|
|
|
|
|
switch (bitstart)
|
|
|
|
|
{
|
|
|
|
|
case 4: /* Sm pair */
|
|
|
|
|
func (stream, "{");
|
|
|
|
|
/* Fall through. */
|
|
|
|
|
case 0: /* Sm, Dm */
|
|
|
|
|
regno = given & 0x0000000f;
|
|
|
|
|
if (single)
|
|
|
|
|
{
|
|
|
|
|
regno <<= 1;
|
|
|
|
|
regno += (given >> 5) & 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1: /* Sd, Dd */
|
|
|
|
|
regno = (given >> 12) & 0x0000000f;
|
|
|
|
|
if (single)
|
|
|
|
|
{
|
|
|
|
|
regno <<= 1;
|
|
|
|
|
regno += (given >> 22) & 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 2: /* Sn, Dn */
|
|
|
|
|
regno = (given >> 16) & 0x0000000f;
|
|
|
|
|
if (single)
|
|
|
|
|
{
|
|
|
|
|
regno <<= 1;
|
|
|
|
|
regno += (given >> 7) & 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 3: /* List */
|
|
|
|
|
func (stream, "{");
|
|
|
|
|
regno = (given >> 12) & 0x0000000f;
|
|
|
|
|
if (single)
|
|
|
|
|
{
|
|
|
|
|
regno <<= 1;
|
|
|
|
|
regno += (given >> 22) & 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "%c%d", single ? 's' : 'd', regno);
|
|
|
|
|
|
|
|
|
|
if (bitstart == 3)
|
|
|
|
|
{
|
|
|
|
|
int count = given & 0xff;
|
|
|
|
|
|
|
|
|
|
if (single == 0)
|
|
|
|
|
count >>= 1;
|
|
|
|
|
|
|
|
|
|
if (--count)
|
|
|
|
|
{
|
|
|
|
|
func (stream, "-%c%d",
|
|
|
|
|
single ? 's' : 'd',
|
|
|
|
|
regno + count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "}");
|
|
|
|
|
}
|
|
|
|
|
else if (bitstart == 4)
|
|
|
|
|
func (stream, ", %c%d}", single ? 's' : 'd',
|
|
|
|
|
regno + 1);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case '`':
|
|
|
|
|
c++;
|
|
|
|
|
if ((given & (1 << bitstart)) == 0)
|
|
|
|
|
func (stream, "%c", *c);
|
|
|
|
|
break;
|
|
|
|
|
case '\'':
|
|
|
|
|
c++;
|
|
|
|
|
if ((given & (1 << bitstart)) != 0)
|
|
|
|
|
func (stream, "%c", *c);
|
|
|
|
|
break;
|
|
|
|
|
case '?':
|
|
|
|
|
++c;
|
|
|
|
|
if ((given & (1 << bitstart)) != 0)
|
|
|
|
|
func (stream, "%c", *c++);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "%c", *++c);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
func (stream, "%c", *c);
|
|
|
|
|
}
|
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print one instruction from PC on INFO->STREAM.
|
|
|
|
|
Return the size of the instruction. */
|
|
|
|
|
static int
|
|
|
|
|
print_insn_thumb (pc, info, given)
|
1999-06-16 04:58:52 +02:00
|
|
|
|
bfd_vma pc;
|
|
|
|
|
struct disassemble_info * info;
|
|
|
|
|
long given;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-06-16 04:58:52 +02:00
|
|
|
|
struct thumb_opcode * insn;
|
|
|
|
|
void * stream = info->stream;
|
|
|
|
|
fprintf_ftype func = info->fprintf_func;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (insn = thumb_opcodes; insn->assembler; insn++)
|
|
|
|
|
{
|
|
|
|
|
if ((given & insn->mask) == insn->value)
|
|
|
|
|
{
|
1999-06-16 04:58:52 +02:00
|
|
|
|
char * c = insn->assembler;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Special processing for Thumb 2 instruction BL sequence: */
|
|
|
|
|
if (!*c) /* Check for empty (not NULL) assembler string. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-03-06 23:33:47 +01:00
|
|
|
|
long offset;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
info->bytes_per_chunk = 4;
|
|
|
|
|
info->bytes_per_line = 4;
|
2001-03-06 23:33:47 +01:00
|
|
|
|
|
|
|
|
|
offset = BDISP23 (given);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-25 01:21:40 +01:00
|
|
|
|
if ((given & 0x10000000) == 0)
|
2001-03-06 23:33:47 +01:00
|
|
|
|
{
|
|
|
|
|
func (stream, "blx\t");
|
|
|
|
|
|
|
|
|
|
/* The spec says that bit 1 of the branch's destination
|
|
|
|
|
address comes from bit 1 of the instruction's
|
|
|
|
|
address and not from the offset in the instruction. */
|
|
|
|
|
if (offset & 0x1)
|
|
|
|
|
{
|
|
|
|
|
/* func (stream, "*malformed!* "); */
|
|
|
|
|
offset &= ~ 0x1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
offset |= ((pc & 0x2) >> 1);
|
|
|
|
|
}
|
2000-11-25 01:21:40 +01:00
|
|
|
|
else
|
2001-03-06 23:33:47 +01:00
|
|
|
|
func (stream, "bl\t");
|
|
|
|
|
|
|
|
|
|
info->print_address_func (offset * 2 + pc + 4, info);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info->bytes_per_chunk = 2;
|
|
|
|
|
info->bytes_per_line = 4;
|
|
|
|
|
|
|
|
|
|
given &= 0xffff;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (; *c; c++)
|
|
|
|
|
{
|
|
|
|
|
if (*c == '%')
|
|
|
|
|
{
|
|
|
|
|
int domaskpc = 0;
|
|
|
|
|
int domasklr = 0;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (*++c)
|
|
|
|
|
{
|
|
|
|
|
case '%':
|
|
|
|
|
func (stream, "%%");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = (given >> 3) & 0x7;
|
|
|
|
|
if (given & (1 << 6))
|
|
|
|
|
reg += 8;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'D':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reg = given & 0x7;
|
|
|
|
|
if (given & (1 << 7))
|
|
|
|
|
reg += 8;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
|
func (stream, "%s",
|
|
|
|
|
arm_conditional [(given >> 8) & 0xf]);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'N':
|
|
|
|
|
if (given & (1 << 8))
|
|
|
|
|
domasklr = 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Fall through. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case 'O':
|
|
|
|
|
if (*c == 'O' && (given & (1 << 8)))
|
|
|
|
|
domaskpc = 1;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Fall through. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case 'M':
|
|
|
|
|
{
|
|
|
|
|
int started = 0;
|
|
|
|
|
int reg;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
func (stream, "{");
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* It would be nice if we could spot
|
|
|
|
|
ranges, and generate the rS-rE format: */
|
|
|
|
|
for (reg = 0; (reg < 8); reg++)
|
|
|
|
|
if ((given & (1 << reg)) != 0)
|
|
|
|
|
{
|
|
|
|
|
if (started)
|
|
|
|
|
func (stream, ", ");
|
|
|
|
|
started = 1;
|
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (domasklr)
|
|
|
|
|
{
|
|
|
|
|
if (started)
|
|
|
|
|
func (stream, ", ");
|
|
|
|
|
started = 1;
|
2000-02-14 20:02:47 +01:00
|
|
|
|
func (stream, arm_regnames[14] /* "lr" */);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (domaskpc)
|
|
|
|
|
{
|
|
|
|
|
if (started)
|
|
|
|
|
func (stream, ", ");
|
2000-02-14 20:02:47 +01:00
|
|
|
|
func (stream, arm_regnames[15] /* "pc" */);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (stream, "}");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
|
{
|
|
|
|
|
int bitstart = *c++ - '0';
|
|
|
|
|
int bitend = 0;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (*c >= '0' && *c <= '9')
|
|
|
|
|
bitstart = (bitstart * 10) + *c++ - '0';
|
|
|
|
|
|
|
|
|
|
switch (*c)
|
|
|
|
|
{
|
|
|
|
|
case '-':
|
|
|
|
|
{
|
|
|
|
|
long reg;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
c++;
|
|
|
|
|
while (*c >= '0' && *c <= '9')
|
|
|
|
|
bitend = (bitend * 10) + *c++ - '0';
|
|
|
|
|
if (!bitend)
|
|
|
|
|
abort ();
|
|
|
|
|
reg = given >> bitstart;
|
|
|
|
|
reg &= (2 << (bitend - bitstart)) - 1;
|
|
|
|
|
switch (*c)
|
|
|
|
|
{
|
|
|
|
|
case 'r':
|
|
|
|
|
func (stream, "%s", arm_regnames[reg]);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
func (stream, "%d", reg);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'H':
|
|
|
|
|
func (stream, "%d", reg << 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'W':
|
|
|
|
|
func (stream, "%d", reg << 2);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
|
/* PC-relative address -- the bottom two
|
2000-01-27 23:17:12 +01:00
|
|
|
|
bits of the address are dropped
|
|
|
|
|
before the calculation. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
info->print_address_func
|
|
|
|
|
(((pc + 4) & ~3) + (reg << 2), info);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
|
func (stream, "0x%04x", reg);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
|
reg = ((reg ^ (1 << bitend)) - (1 << bitend));
|
|
|
|
|
func (stream, "%d", reg);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'B':
|
|
|
|
|
reg = ((reg ^ (1 << bitend)) - (1 << bitend));
|
|
|
|
|
(*info->print_address_func)
|
|
|
|
|
(reg * 2 + pc + 4, info);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
1999-06-16 04:58:52 +02:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
|
c++;
|
|
|
|
|
if ((given & (1 << bitstart)) != 0)
|
|
|
|
|
func (stream, "%c", *c);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
|
++c;
|
|
|
|
|
if ((given & (1 << bitstart)) != 0)
|
|
|
|
|
func (stream, "%c", *c++);
|
|
|
|
|
else
|
|
|
|
|
func (stream, "%c", *++c);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
1999-06-16 04:58:52 +02:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
func (stream, "%c", *c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* No match. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Parse an individual disassembler option. */
|
2000-02-07 19:27:19 +01:00
|
|
|
|
void
|
|
|
|
|
parse_arm_disassembler_option (option)
|
2000-01-03 21:50:57 +01:00
|
|
|
|
char * option;
|
1999-06-16 04:24:36 +02:00
|
|
|
|
{
|
2000-01-03 21:50:57 +01:00
|
|
|
|
if (option == NULL)
|
1999-06-16 04:24:36 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
if (strneq (option, "reg-names-", 10))
|
1999-06-16 04:24:36 +02:00
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
option += 10;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
|
|
|
|
for (i = NUM_ARM_REGNAMES; i--;)
|
|
|
|
|
if (streq (option, regnames[i].name))
|
|
|
|
|
{
|
|
|
|
|
regname_selected = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-06-16 04:24:36 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
if (i < 0)
|
|
|
|
|
fprintf (stderr, _("Unrecognised register name set: %s\n"), option);
|
1999-06-16 04:24:36 +02:00
|
|
|
|
}
|
2000-01-03 21:50:57 +01:00
|
|
|
|
else if (streq (option, "force-thumb"))
|
|
|
|
|
force_thumb = 1;
|
|
|
|
|
else if (streq (option, "no-force-thumb"))
|
|
|
|
|
force_thumb = 0;
|
1999-06-16 04:24:36 +02:00
|
|
|
|
else
|
2000-01-27 23:17:12 +01:00
|
|
|
|
fprintf (stderr, _("Unrecognised disassembler option: %s\n"), option);
|
1999-06-16 04:24:36 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* Parse the string of disassembler options, spliting it at whitespaces. */
|
2000-01-03 21:50:57 +01:00
|
|
|
|
static void
|
|
|
|
|
parse_disassembler_options (options)
|
|
|
|
|
char * options;
|
|
|
|
|
{
|
|
|
|
|
char * space;
|
|
|
|
|
|
|
|
|
|
if (options == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
space = strchr (options, ' ');
|
|
|
|
|
|
|
|
|
|
if (space)
|
|
|
|
|
{
|
|
|
|
|
* space = '\0';
|
2000-02-07 19:27:19 +01:00
|
|
|
|
parse_arm_disassembler_option (options);
|
2000-01-03 21:50:57 +01:00
|
|
|
|
* space = ' ';
|
|
|
|
|
options = space + 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
2000-02-07 19:27:19 +01:00
|
|
|
|
parse_arm_disassembler_option (options);
|
2000-01-03 21:50:57 +01:00
|
|
|
|
}
|
|
|
|
|
while (space);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* NOTE: There are no checks in these routines that
|
|
|
|
|
the relevant number of data bytes exist. */
|
|
|
|
|
static int
|
|
|
|
|
print_insn (pc, info, little)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma pc;
|
1999-06-16 04:58:52 +02:00
|
|
|
|
struct disassemble_info * info;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
boolean little;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned char b[4];
|
|
|
|
|
long given;
|
|
|
|
|
int status;
|
|
|
|
|
int is_thumb;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-06-16 04:24:36 +02:00
|
|
|
|
if (info->disassembler_options)
|
|
|
|
|
{
|
|
|
|
|
parse_disassembler_options (info->disassembler_options);
|
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
/* To avoid repeated parsing of these options, we remove them here. */
|
1999-06-16 04:24:36 +02:00
|
|
|
|
info->disassembler_options = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-03 21:50:57 +01:00
|
|
|
|
is_thumb = force_thumb;
|
|
|
|
|
|
|
|
|
|
if (!is_thumb && info->symbols != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-06-16 04:58:52 +02:00
|
|
|
|
if (bfd_asymbol_flavour (*info->symbols) == bfd_target_coff_flavour)
|
|
|
|
|
{
|
2000-01-27 21:05:32 +01:00
|
|
|
|
coff_symbol_type * cs;
|
|
|
|
|
|
1999-06-16 04:58:52 +02:00
|
|
|
|
cs = coffsymbol (*info->symbols);
|
|
|
|
|
is_thumb = ( cs->native->u.syment.n_sclass == C_THUMBEXT
|
|
|
|
|
|| cs->native->u.syment.n_sclass == C_THUMBSTAT
|
|
|
|
|
|| cs->native->u.syment.n_sclass == C_THUMBLABEL
|
|
|
|
|
|| cs->native->u.syment.n_sclass == C_THUMBEXTFUNC
|
|
|
|
|
|| cs->native->u.syment.n_sclass == C_THUMBSTATFUNC);
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_asymbol_flavour (*info->symbols) == bfd_target_elf_flavour)
|
|
|
|
|
{
|
2000-01-27 21:05:32 +01:00
|
|
|
|
elf_symbol_type * es;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
unsigned int type;
|
2000-01-27 21:05:32 +01:00
|
|
|
|
|
1999-06-16 04:58:52 +02:00
|
|
|
|
es = *(elf_symbol_type **)(info->symbols);
|
2000-01-27 23:17:12 +01:00
|
|
|
|
type = ELF_ST_TYPE (es->internal_elf_sym.st_info);
|
|
|
|
|
|
|
|
|
|
is_thumb = (type == STT_ARM_TFUNC) || (type == STT_ARM_16BIT);
|
1999-06-16 04:58:52 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
info->bytes_per_chunk = 4;
|
2000-01-27 23:17:12 +01:00
|
|
|
|
info->display_endian = little ? BFD_ENDIAN_LITTLE : BFD_ENDIAN_BIG;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
if (little)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
status = info->read_memory_func (pc, (bfd_byte *) &b[0], 4, info);
|
|
|
|
|
if (status != 0 && is_thumb)
|
|
|
|
|
{
|
|
|
|
|
info->bytes_per_chunk = 2;
|
|
|
|
|
|
|
|
|
|
status = info->read_memory_func (pc, (bfd_byte *) b, 2, info);
|
|
|
|
|
b[3] = b[2] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (status != 0)
|
|
|
|
|
{
|
|
|
|
|
info->memory_error_func (status, pc, info);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
given = (b[0]) | (b[1] << 8) | (b[2] << 16) | (b[3] << 24);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-01-27 23:17:12 +01:00
|
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
status = info->read_memory_func
|
|
|
|
|
(pc & ~ 0x3, (bfd_byte *) &b[0], 4, info);
|
|
|
|
|
if (status != 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
info->memory_error_func (status, pc, info);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_thumb)
|
|
|
|
|
{
|
|
|
|
|
if (pc & 0x2)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
given = (b[2] << 8) | b[3];
|
|
|
|
|
|
|
|
|
|
status = info->read_memory_func
|
|
|
|
|
((pc + 4) & ~ 0x3, (bfd_byte *) b, 4, info);
|
|
|
|
|
if (status != 0)
|
|
|
|
|
{
|
|
|
|
|
info->memory_error_func (status, pc + 4, info);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
given |= (b[0] << 24) | (b[1] << 16);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-01-27 23:17:12 +01:00
|
|
|
|
else
|
|
|
|
|
given = (b[0] << 8) | b[1] | (b[2] << 24) | (b[3] << 16);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2000-01-27 23:17:12 +01:00
|
|
|
|
given = (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | (b[3]);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-01-27 23:17:12 +01:00
|
|
|
|
|
2001-01-09 21:29:48 +01:00
|
|
|
|
if (info->flags & INSN_HAS_RELOC)
|
|
|
|
|
/* If the instruction has a reloc associated with it, then
|
|
|
|
|
the offset field in the instruction will actually be the
|
|
|
|
|
addend for the reloc. (We are using REL type relocs).
|
|
|
|
|
In such cases, we can ignore the pc when computing
|
|
|
|
|
addresses, since the addend is not currently pc-relative. */
|
|
|
|
|
pc = 0;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (is_thumb)
|
1999-06-16 04:58:52 +02:00
|
|
|
|
status = print_insn_thumb (pc, info, given);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
1999-06-16 04:58:52 +02:00
|
|
|
|
status = print_insn_arm (pc, info, given);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2000-01-27 23:17:12 +01:00
|
|
|
|
print_insn_big_arm (pc, info)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma pc;
|
|
|
|
|
struct disassemble_info * info;
|
|
|
|
|
{
|
2000-01-27 23:17:12 +01:00
|
|
|
|
return print_insn (pc, info, false);
|
|
|
|
|
}
|
2000-01-03 21:50:57 +01:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
int
|
|
|
|
|
print_insn_little_arm (pc, info)
|
|
|
|
|
bfd_vma pc;
|
|
|
|
|
struct disassemble_info * info;
|
|
|
|
|
{
|
|
|
|
|
return print_insn (pc, info, true);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
void
|
|
|
|
|
print_arm_disassembler_options (FILE * stream)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
fprintf (stream, _("\n\
|
|
|
|
|
The following ARM specific disassembler options are supported for use with\n\
|
|
|
|
|
the -M switch:\n"));
|
2000-01-03 21:50:57 +01:00
|
|
|
|
|
2000-01-27 23:17:12 +01:00
|
|
|
|
for (i = NUM_ARM_REGNAMES; i--;)
|
|
|
|
|
fprintf (stream, " reg-names-%s %*c%s\n",
|
|
|
|
|
regnames[i].name,
|
2001-09-19 19:40:28 +02:00
|
|
|
|
(int)(14 - strlen (regnames[i].name)), ' ',
|
2000-01-27 23:17:12 +01:00
|
|
|
|
regnames[i].description);
|
|
|
|
|
|
|
|
|
|
fprintf (stream, " force-thumb Assume all insns are Thumb insns\n");
|
|
|
|
|
fprintf (stream, " no-force-thumb Examine preceeding label to determine an insn's type\n\n");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|