sh-dis.c
来自「基于4个mips核的noc设计」· C语言 代码 · 共 739 行 · 第 1/2 页
C
739 行
/* Disassemble SH instructions. Copyright 1993, 1994, 1995, 1997, 1998, 2000 Free Software Foundation, Inc.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#include <stdio.h>#include "sysdep.h"#define STATIC_TABLE#define DEFINE_TABLE#include "sh-opc.h"#include "dis-asm.h"#define LITTLE_BIT 2static voidprint_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 voidprint_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; unsigned 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 voidprint_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 voidprint_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; unsigned int nib1, nib2, nib3; char *dc = NULL; 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 intprint_insn_shx (memaddr, info) bfd_vma memaddr; struct disassemble_info *info;{ fprintf_ftype fprintf_fn = info->fprintf_func; void *stream = info->stream; unsigned char insn[2]; unsigned char nibs[4]; 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); if (status != 0) { info->memory_error_func (status, memaddr, info); return -1; } if (info->flags & LITTLE_BIT) { nibs[0] = (insn[1] >> 4) & 0xf; nibs[1] = insn[1] & 0xf; nibs[2] = (insn[0] >> 4) & 0xf; nibs[3] = insn[0] & 0xf; } else { nibs[0] = (insn[0] >> 4) & 0xf; nibs[1] = insn[0] & 0xf; nibs[2] = (insn[1] >> 4) & 0xf; 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; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?