mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 09:38:57 +00:00
bfd:
Reinstate bits of sh4 support that got accidentally deleted.
Add sh-dsp support.
bfd:
* archures.c (bfd_mach_sh2, bfd_mach_sh_dsp): New macros.
(bfd_mach_sh3_dsp): Likewise.
(bfd_mach_sh4): Reinstate.
(bfd_default_scan): Recognize 7410, 7708, 7729 and 7750.
* bfd-in2.h: Regenerate.
* coff-sh.c (struct sh_opcode): flags is no longer short.
(USESAS, USESAS_REG, USESR8, SETSAS, SETSAS_REG): New macros.
(sh_opcode41, sh_opcode42): Integrate as sh_opcode41.
(sh_opcode01, sh_opcode02, sh_opcode40): Add sh-dsp opcodes.
(sh_opcode41, sh_opcode4, sh_opcode80): Likewise.
(sh_opcodes): No longer const.
(sh_dsp_opcodef0, sh_dsp_opcodef): New arrays.
(sh_insn_uses_reg): Check for USESAS and USESR8.
(sh_insn_sets_reg, sh_insns_conflict): Check for SETSAS.
(_bfd_sh_align_load_span): Return early for SH4.
Modify sh_opcodes lookup table for sh-dsp / sh3-dsp.
Take into account that field b of a parallel processing insn
could be mistaken for a separate insn.
* cpu-sh.c (arch_info_struct): New array elements for
sh2, sh-dsp and sh3-dsp.
Reinstate element for sh4.
(SH2_NEXT, SH_DSP_NEXT, SH3_DSP_NEXT): New macros.
(SH4_NEXT): Reinstate.
(SH3_NEXT, SH3E_NEXT): Adjust.
* elf-bfd.h (_sh_elf_set_mach_from_flags): Declare.
* elf32-sh.c (sh_elf_set_private_flags): New function.
(sh_elf_copy_private_data, sh_elf_set_mach_from_flags): Likewise.
(sh_elf_merge_private_data): New function.
(elf_backend_object_p, bfd_elf32_bfd_set_private_bfd_flags): Define.
(bfd_elf32_bfd_copy_private_bfd_data): Define.
(bfd_elf32_bfd_merge_private_bfd_data): Change to
sh_elf_merge_private_data.
gas:
* config/tc-sh.c ("elf/sh.h"): Include.
(sh_dsp, valid_arch, reg_x, reg_y, reg_efg): New static variables.
(md.begin): Initialize target_arch.
Only include opcodes in has table that match selected architecture.
(parse_reg): Recognize register names for sh-dsp.
(parse_at): Recognize post-modify addressing.
(get_operands): The leading space is now optional.
(get_specific): Remove FDREG_N support. Add support for sh-dsp
arguments. Update valid_arch.
(build_Mytes): Add support for SDT_REG_N.
(find_cooked_opcode): New function, broken out of md_assemble.
(assemble_ppi, sh_elf_final_processing): New functions.
(md_assemble): Use find_cooked_opcode and assemble_ppi.
(md_longopts, md_parse_option): New option: -dsp.
* config/tc-sh.h (elf_tc_final_processing): Define.
(sh_elf_final_processing): Declare.
include/elf:
* sh.h: (EF_SH_MACH_MASK, EF_SH_UNKNOWN, EF_SH1, EF_SH2): New macros.
(EF_SH3, EF_SH_HAS_DSP, EF_SH_DSP, EF_SH3_DSP): Likewise.
(EF_SH_HAS_FP, EF_SH3E, EF_SH4, EF_SH_MERGE_MACH): Likewise.
opcodes:
* sh-dis.c (print_movxy, print_insn_ddt, print_dsp_reg): New functions.
(print_insn_ppi): Likewise.
(print_insn_shx): Use info->mach to select appropriate insn set.
Add support for sh-dsp. Remove FD_REG_N support.
* sh-opc.h (sh_nibble_type): Add new values for sh-dsp support.
(sh_arg_type): Likewise. Remove FD_REG_N.
(sh_dsp_reg_nums): New enum.
(arch_sh1, arch_sh2, arch_sh3, arch_sh3e, arch_sh4): New macros.
(arch_sh_dsp, arch_sh3_dsp, arch_sh1_up, arch_sh2_up): Likewise.
(arch_sh3_up, arch_sh3e_up, arch_sh4_up, arch_sh_dsp_up): Likewise.
(arch_sh3_dsp_up): Likewise.
(sh_opcode_info): New field: arch.
(sh_table): Split up insn with FD_REG_N into ones with F_REG_N and
D_REG_N. Fill in arch field. Add sh-dsp insns.
This commit is contained in:
352
opcodes/sh-dis.c
352
opcodes/sh-dis.c
@@ -24,6 +24,256 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define LITTLE_BIT 2
|
||||
|
||||
static void
|
||||
print_movxy (op, rn, rm, fprintf_fn, stream)
|
||||
sh_opcode_info *op;
|
||||
int rn, rm;
|
||||
fprintf_ftype fprintf_fn;
|
||||
void *stream;
|
||||
{
|
||||
int n;
|
||||
|
||||
fprintf_fn (stream,"%s\t", op->name);
|
||||
for (n = 0; n < 2; n++)
|
||||
{
|
||||
switch (op->arg[n])
|
||||
{
|
||||
case A_IND_N:
|
||||
fprintf_fn (stream, "@r%d", rn);
|
||||
break;
|
||||
case A_INC_N:
|
||||
fprintf_fn (stream, "@r%d+", rn);
|
||||
break;
|
||||
case A_PMOD_N:
|
||||
fprintf_fn (stream, "@r%d+r8", rn);
|
||||
break;
|
||||
case A_PMODY_N:
|
||||
fprintf_fn (stream, "@r%d+r9", rn);
|
||||
break;
|
||||
case DSP_REG_M:
|
||||
fprintf_fn (stream, "a%c", '0' + rm);
|
||||
break;
|
||||
case DSP_REG_X:
|
||||
fprintf_fn (stream, "x%c", '0' + rm);
|
||||
break;
|
||||
case DSP_REG_Y:
|
||||
fprintf_fn (stream, "y%c", '0' + rm);
|
||||
break;
|
||||
default:
|
||||
abort ();
|
||||
}
|
||||
if (n == 0)
|
||||
fprintf_fn (stream, ",");
|
||||
}
|
||||
}
|
||||
|
||||
/* Print a double data transfer insn. INSN is just the lower three
|
||||
nibbles of the insn, i.e. field a and the bit that indicates if
|
||||
a parallel processing insn follows.
|
||||
Return nonzero if a field b of a parallel processing insns follows. */
|
||||
static void
|
||||
print_insn_ddt (insn, info)
|
||||
int insn;
|
||||
struct disassemble_info *info;
|
||||
{
|
||||
fprintf_ftype fprintf_fn = info->fprintf_func;
|
||||
void *stream = info->stream;
|
||||
|
||||
/* If this is just a nop, make sure to emit something. */
|
||||
if (insn == 0x000)
|
||||
fprintf_fn (stream, "nopx\tnopy");
|
||||
|
||||
/* If a parallel processing insn was printed before,
|
||||
and we got a non-nop, emit a tab. */
|
||||
if ((insn & 0x800) && (insn & 0x3ff))
|
||||
fprintf_fn (stream, "\t");
|
||||
|
||||
/* Check if either the x or y part is invalid. */
|
||||
if (((insn & 0xc) == 0 && (insn & 0x2a0))
|
||||
|| ((insn & 3) == 0 && (insn & 0x150)))
|
||||
fprintf_fn (stream, ".word 0x%x", insn);
|
||||
else
|
||||
{
|
||||
static sh_opcode_info *first_movx, *first_movy;
|
||||
sh_opcode_info *opx, *opy;
|
||||
int insn_x, insn_y;
|
||||
|
||||
if (! first_movx)
|
||||
{
|
||||
for (first_movx = sh_table; first_movx->nibbles[1] != MOVX; )
|
||||
first_movx++;
|
||||
for (first_movy = first_movx; first_movy->nibbles[1] != MOVY; )
|
||||
first_movy++;
|
||||
}
|
||||
insn_x = (insn >> 2) & 0xb;
|
||||
if (insn_x)
|
||||
{
|
||||
for (opx = first_movx; opx->nibbles[2] != insn_x; ) opx++;
|
||||
print_movxy (opx, ((insn >> 9) & 1) + 4, (insn >> 7) & 1,
|
||||
fprintf_fn, stream);
|
||||
}
|
||||
insn_y = (insn & 3) | ((insn >> 1) & 8);
|
||||
if (insn_y)
|
||||
{
|
||||
if (insn_x)
|
||||
fprintf_fn (stream, "\t");
|
||||
for (opy = first_movy; opy->nibbles[2] != insn_y; ) opy++;
|
||||
print_movxy (opy, ((insn >> 8) & 1) + 6, (insn >> 6) & 1,
|
||||
fprintf_fn, stream);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
print_dsp_reg (rm, fprintf_fn, stream)
|
||||
int rm;
|
||||
fprintf_ftype fprintf_fn;
|
||||
void *stream;
|
||||
{
|
||||
switch (rm)
|
||||
{
|
||||
case A_A1_NUM:
|
||||
fprintf_fn (stream, "a1");
|
||||
break;
|
||||
case A_A0_NUM:
|
||||
fprintf_fn (stream, "a0");
|
||||
break;
|
||||
case A_X0_NUM:
|
||||
fprintf_fn (stream, "x0");
|
||||
break;
|
||||
case A_X1_NUM:
|
||||
fprintf_fn (stream, "x1");
|
||||
break;
|
||||
case A_Y0_NUM:
|
||||
fprintf_fn (stream, "y0");
|
||||
break;
|
||||
case A_Y1_NUM:
|
||||
fprintf_fn (stream, "y1");
|
||||
break;
|
||||
case A_M0_NUM:
|
||||
fprintf_fn (stream, "m0");
|
||||
break;
|
||||
case A_A1G_NUM:
|
||||
fprintf_fn (stream, "a1g");
|
||||
break;
|
||||
case A_M1_NUM:
|
||||
fprintf_fn (stream, "m1");
|
||||
break;
|
||||
case A_A0G_NUM:
|
||||
fprintf_fn (stream, "a0g");
|
||||
break;
|
||||
default:
|
||||
fprintf_fn (stream, "0x%x", rm);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
print_insn_ppi (field_b, info)
|
||||
int field_b;
|
||||
struct disassemble_info *info;
|
||||
{
|
||||
static char *sx_tab[] = {"x0","x1","a0","a1"};
|
||||
static char *sy_tab[] = {"y0","y1","m0","m1"};
|
||||
fprintf_ftype fprintf_fn = info->fprintf_func;
|
||||
void *stream = info->stream;
|
||||
int nib1, nib2, nib3;
|
||||
char *dc;
|
||||
sh_opcode_info *op;
|
||||
|
||||
if ((field_b & 0xe800) == 0)
|
||||
{
|
||||
fprintf_fn (stream, "psh%c\t#%d,",
|
||||
field_b & 0x1000 ? 'a' : 'l',
|
||||
(field_b >> 4) & 127);
|
||||
print_dsp_reg (field_b & 0xf, fprintf_fn, stream);
|
||||
return;
|
||||
}
|
||||
if ((field_b & 0xc000) == 0x4000 && (field_b & 0x3000) != 0x1000)
|
||||
{
|
||||
static char *du_tab[] = {"x0","y0","a0","a1"};
|
||||
static char *se_tab[] = {"x0","x1","y0","a1"};
|
||||
static char *sf_tab[] = {"y0","y1","x0","a1"};
|
||||
static char *sg_tab[] = {"m0","m1","a0","a1"};
|
||||
|
||||
if (field_b & 0x2000)
|
||||
{
|
||||
fprintf_fn (stream, "p%s %s,%s,%s\t",
|
||||
(field_b & 0x1000) ? "add" : "sub",
|
||||
sx_tab[(field_b >> 6) & 3],
|
||||
sy_tab[(field_b >> 4) & 3],
|
||||
du_tab[(field_b >> 0) & 3]);
|
||||
}
|
||||
fprintf_fn (stream, "pmuls%c%s,%s,%s",
|
||||
field_b & 0x2000 ? ' ' : '\t',
|
||||
se_tab[(field_b >> 10) & 3],
|
||||
sf_tab[(field_b >> 8) & 3],
|
||||
sg_tab[(field_b >> 2) & 3]);
|
||||
return;
|
||||
}
|
||||
|
||||
nib1 = PPIC;
|
||||
nib2 = field_b >> 12 & 0xf;
|
||||
nib3 = field_b >> 8 & 0xf;
|
||||
switch (nib3 & 0x3)
|
||||
{
|
||||
case 0:
|
||||
dc = "";
|
||||
nib1 = PPI3;
|
||||
break;
|
||||
case 1:
|
||||
dc = "";
|
||||
break;
|
||||
case 2:
|
||||
dc = "dct ";
|
||||
nib3 -= 1;
|
||||
break;
|
||||
case 3:
|
||||
dc = "dcf ";
|
||||
nib3 -= 2;
|
||||
break;
|
||||
}
|
||||
for (op = sh_table; op->name; op++)
|
||||
{
|
||||
if (op->nibbles[1] == nib1
|
||||
&& op->nibbles[2] == nib2
|
||||
&& op->nibbles[3] == nib3)
|
||||
{
|
||||
int n;
|
||||
|
||||
fprintf_fn (stream, "%s%s\t", dc, op->name);
|
||||
for (n = 0; n < 3 && op->arg[n] != A_END; n++)
|
||||
{
|
||||
if (n && op->arg[1] != A_END)
|
||||
fprintf_fn (stream, ",");
|
||||
switch (op->arg[n])
|
||||
{
|
||||
case DSP_REG_N:
|
||||
print_dsp_reg (field_b & 0xf, fprintf_fn, stream);
|
||||
break;
|
||||
case DSP_REG_X:
|
||||
fprintf_fn (stream, sx_tab[(field_b >> 6) & 3]);
|
||||
break;
|
||||
case DSP_REG_Y:
|
||||
fprintf_fn (stream, sy_tab[(field_b >> 4) & 3]);
|
||||
break;
|
||||
case A_MACH:
|
||||
fprintf_fn (stream, "mach");
|
||||
break;
|
||||
case A_MACL:
|
||||
fprintf_fn (stream ,"macl");
|
||||
break;
|
||||
default:
|
||||
abort ();
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
/* Not found. */
|
||||
fprintf_fn (stream, ".word 0x%x", field_b);
|
||||
}
|
||||
|
||||
static int
|
||||
print_insn_shx (memaddr, info)
|
||||
bfd_vma memaddr;
|
||||
@@ -36,6 +286,34 @@ print_insn_shx (memaddr, info)
|
||||
int status;
|
||||
bfd_vma relmask = ~ (bfd_vma) 0;
|
||||
sh_opcode_info *op;
|
||||
int target_arch;
|
||||
|
||||
switch (info->mach)
|
||||
{
|
||||
case bfd_mach_sh:
|
||||
target_arch = arch_sh1;
|
||||
break;
|
||||
case bfd_mach_sh2:
|
||||
target_arch = arch_sh2;
|
||||
break;
|
||||
case bfd_mach_sh_dsp:
|
||||
target_arch = arch_sh_dsp;
|
||||
break;
|
||||
case bfd_mach_sh3:
|
||||
target_arch = arch_sh3;
|
||||
break;
|
||||
case bfd_mach_sh3_dsp:
|
||||
target_arch = arch_sh3_dsp;
|
||||
break;
|
||||
case bfd_mach_sh3e:
|
||||
target_arch = arch_sh3e;
|
||||
break;
|
||||
case bfd_mach_sh4:
|
||||
target_arch = arch_sh4;
|
||||
break;
|
||||
default:
|
||||
abort ();
|
||||
}
|
||||
|
||||
status = info->read_memory_func (memaddr, insn, 2, info);
|
||||
|
||||
@@ -62,6 +340,32 @@ print_insn_shx (memaddr, info)
|
||||
nibs[3] = insn[1] & 0xf;
|
||||
}
|
||||
|
||||
if (nibs[0] == 0xf && (nibs[1] & 4) == 0 && target_arch & arch_sh_dsp_up)
|
||||
{
|
||||
if (nibs[1] & 8)
|
||||
{
|
||||
int field_b;
|
||||
|
||||
status = info->read_memory_func (memaddr + 2, insn, 2, info);
|
||||
|
||||
if (status != 0)
|
||||
{
|
||||
info->memory_error_func (status, memaddr + 2, info);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (info->flags & LITTLE_BIT)
|
||||
field_b = insn[1] << 8 | insn[0];
|
||||
else
|
||||
field_b = insn[0] << 8 | insn[1];
|
||||
|
||||
print_insn_ppi (field_b, info);
|
||||
print_insn_ddt ((nibs[1] << 8) | (nibs[2] << 4) | nibs[3], info);
|
||||
return 4;
|
||||
}
|
||||
print_insn_ddt ((nibs[1] << 8) | (nibs[2] << 4) | nibs[3], info);
|
||||
return 2;
|
||||
}
|
||||
for (op = sh_table; op->name; op++)
|
||||
{
|
||||
int n;
|
||||
@@ -72,6 +376,8 @@ print_insn_shx (memaddr, info)
|
||||
int disp_pc;
|
||||
bfd_vma disp_pc_addr = 0;
|
||||
|
||||
if ((op->arch & target_arch) == 0)
|
||||
goto fail;
|
||||
for (n = 0; n < 4; n++)
|
||||
{
|
||||
int i = op->nibbles[n];
|
||||
@@ -141,6 +447,16 @@ print_insn_shx (memaddr, info)
|
||||
case REG_B:
|
||||
rb = nibs[n] & 0x07;
|
||||
break;
|
||||
case SDT_REG_N:
|
||||
/* sh-dsp: single data transfer. */
|
||||
rn = nibs[n];
|
||||
if ((rn & 0xc) != 4)
|
||||
goto fail;
|
||||
rn = rn & 0x3;
|
||||
rn |= (rn & 2) << 1;
|
||||
break;
|
||||
case PPI:
|
||||
goto fail;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
@@ -176,6 +492,9 @@ print_insn_shx (memaddr, info)
|
||||
case A_DISP_REG_N:
|
||||
fprintf_fn (stream, "@(%d,r%d)", imm, rn);
|
||||
break;
|
||||
case A_PMOD_N:
|
||||
fprintf_fn (stream, "@r%d+r8", rn);
|
||||
break;
|
||||
case A_REG_M:
|
||||
fprintf_fn (stream, "r%d", rm);
|
||||
break;
|
||||
@@ -224,6 +543,36 @@ print_insn_shx (memaddr, info)
|
||||
case A_VBR:
|
||||
fprintf_fn (stream, "vbr");
|
||||
break;
|
||||
case A_DSR:
|
||||
fprintf_fn (stream, "dsr");
|
||||
break;
|
||||
case A_MOD:
|
||||
fprintf_fn (stream, "mod");
|
||||
break;
|
||||
case A_RE:
|
||||
fprintf_fn (stream, "re");
|
||||
break;
|
||||
case A_RS:
|
||||
fprintf_fn (stream, "rs");
|
||||
break;
|
||||
case A_A0:
|
||||
fprintf_fn (stream, "a0");
|
||||
break;
|
||||
case A_X0:
|
||||
fprintf_fn (stream, "x0");
|
||||
break;
|
||||
case A_X1:
|
||||
fprintf_fn (stream, "x1");
|
||||
break;
|
||||
case A_Y0:
|
||||
fprintf_fn (stream, "y0");
|
||||
break;
|
||||
case A_Y1:
|
||||
fprintf_fn (stream, "y1");
|
||||
break;
|
||||
case DSP_REG_M:
|
||||
print_dsp_reg (rm, fprintf_fn, stream);
|
||||
break;
|
||||
case A_SSR:
|
||||
fprintf_fn (stream, "ssr");
|
||||
break;
|
||||
@@ -245,9 +594,6 @@ print_insn_shx (memaddr, info)
|
||||
case A_DBR:
|
||||
fprintf_fn (stream, "dbr");
|
||||
break;
|
||||
case FD_REG_N:
|
||||
if (0)
|
||||
goto d_reg_n;
|
||||
case F_REG_N:
|
||||
fprintf_fn (stream, "fr%d", rn);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user