⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alpha-opc.c

📁 基于4个mips核的noc设计
💻 C
📖 第 1 页 / 共 5 页
字号:
/* alpha-opc.c -- Alpha AXP opcode list   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.   Contributed by Richard Henderson <rth@cygnus.com>,   patterned after the PPC opcode handling written by Ian Lance Taylor.   This file is part of GDB, GAS, and the GNU binutils.   GDB, GAS, and the GNU binutils are free software; you can redistribute   them and/or modify them under the terms of the GNU General Public   License as published by the Free Software Foundation; either version   2, or (at your option) any later version.   GDB, GAS, and the GNU binutils are distributed in the hope that they   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 file; see the file COPYING.  If not, write to the   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA   02111-1307, USA.  */#include <stdio.h>#include "sysdep.h"#include "opcode/alpha.h"#include "bfd.h"#include "opintl.h"/* This file holds the Alpha AXP opcode table.  The opcode table includes   almost all of the extended instruction mnemonics.  This permits the   disassembler to use them, and simplifies the assembler logic, at the   cost of increasing the table size.  The table is strictly constant   data, so the compiler should be able to put it in the .text section.   This file also holds the operand table.  All knowledge about inserting   operands into instructions and vice-versa is kept in this file.   The information for the base instruction set was compiled from the   _Alpha Architecture Handbook_, Digital Order Number EC-QD2KB-TE,   version 2.   The information for the post-ev5 architecture extensions BWX, CIX and   MAX came from version 3 of this same document, which is also available   on-line at http://ftp.digital.com/pub/Digital/info/semiconductor   /literature/alphahb2.pdf   The information for the EV4 PALcode instructions was compiled from   _DECchip 21064 and DECchip 21064A Alpha AXP Microprocessors Hardware   Reference Manual_, Digital Order Number EC-Q9ZUA-TE, preliminary   revision dated June 1994.   The information for the EV5 PALcode instructions was compiled from   _Alpha 21164 Microprocessor Hardware Reference Manual_, Digital   Order Number EC-QAEQB-TE, preliminary revision dated April 1995.  *//* Local insertion and extraction functions */static unsigned insert_rba PARAMS((unsigned, int, const char **));static unsigned insert_rca PARAMS((unsigned, int, const char **));static unsigned insert_za PARAMS((unsigned, int, const char **));static unsigned insert_zb PARAMS((unsigned, int, const char **));static unsigned insert_zc PARAMS((unsigned, int, const char **));static unsigned insert_bdisp PARAMS((unsigned, int, const char **));static unsigned insert_jhint PARAMS((unsigned, int, const char **));static unsigned insert_ev6hwjhint PARAMS((unsigned, int, const char **));static int extract_rba PARAMS((unsigned, int *));static int extract_rca PARAMS((unsigned, int *));static int extract_za PARAMS((unsigned, int *));static int extract_zb PARAMS((unsigned, int *));static int extract_zc PARAMS((unsigned, int *));static int extract_bdisp PARAMS((unsigned, int *));static int extract_jhint PARAMS((unsigned, int *));static int extract_ev6hwjhint PARAMS((unsigned, int *));/* The operands table  */const struct alpha_operand alpha_operands[] ={  /* The fields are bits, shift, insert, extract, flags */  /* The zero index is used to indicate end-of-list */#define UNUSED		0  { 0, 0, 0, 0, 0, 0 },  /* The plain integer register fields */#define RA		(UNUSED + 1)  { 5, 21, 0, AXP_OPERAND_IR, 0, 0 },#define RB		(RA + 1)  { 5, 16, 0, AXP_OPERAND_IR, 0, 0 },#define RC		(RB + 1)  { 5, 0, 0, AXP_OPERAND_IR, 0, 0 },  /* The plain fp register fields */#define FA		(RC + 1)  { 5, 21, 0, AXP_OPERAND_FPR, 0, 0 },#define FB		(FA + 1)  { 5, 16, 0, AXP_OPERAND_FPR, 0, 0 },#define FC		(FB + 1)  { 5, 0, 0, AXP_OPERAND_FPR, 0, 0 },  /* The integer registers when they are ZERO */#define ZA		(FC + 1)  { 5, 21, 0, AXP_OPERAND_FAKE, insert_za, extract_za },#define ZB		(ZA + 1)  { 5, 16, 0, AXP_OPERAND_FAKE, insert_zb, extract_zb },#define ZC		(ZB + 1)  { 5, 0, 0, AXP_OPERAND_FAKE, insert_zc, extract_zc },  /* The RB field when it needs parentheses */#define PRB		(ZC + 1)  { 5, 16, 0, AXP_OPERAND_IR|AXP_OPERAND_PARENS, 0, 0 },  /* The RB field when it needs parentheses _and_ a preceding comma */#define CPRB		(PRB + 1)  { 5, 16, 0,    AXP_OPERAND_IR|AXP_OPERAND_PARENS|AXP_OPERAND_COMMA, 0, 0 },  /* The RB field when it must be the same as the RA field */#define RBA		(CPRB + 1)  { 5, 16, 0, AXP_OPERAND_FAKE, insert_rba, extract_rba },  /* The RC field when it must be the same as the RB field */#define RCA		(RBA + 1)  { 5, 0, 0, AXP_OPERAND_FAKE, insert_rca, extract_rca },  /* The RC field when it can *default* to RA */#define DRC1		(RCA + 1)  { 5, 0, 0,    AXP_OPERAND_IR|AXP_OPERAND_DEFAULT_FIRST, 0, 0 },  /* The RC field when it can *default* to RB */#define DRC2		(DRC1 + 1)  { 5, 0, 0,    AXP_OPERAND_IR|AXP_OPERAND_DEFAULT_SECOND, 0, 0 },  /* The FC field when it can *default* to RA */#define DFC1		(DRC2 + 1)  { 5, 0, 0,    AXP_OPERAND_FPR|AXP_OPERAND_DEFAULT_FIRST, 0, 0 },  /* The FC field when it can *default* to RB */#define DFC2		(DFC1 + 1)  { 5, 0, 0,    AXP_OPERAND_FPR|AXP_OPERAND_DEFAULT_SECOND, 0, 0 },  /* The unsigned 8-bit literal of Operate format insns */#define LIT		(DFC2 + 1)  { 8, 13, -LIT, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The signed 16-bit displacement of Memory format insns.  From here     we can't tell what relocation should be used, so don't use a default. */#define MDISP		(LIT + 1)  { 16, 0, -MDISP, AXP_OPERAND_SIGNED, 0, 0 },  /* The signed "23-bit" aligned displacement of Branch format insns */#define BDISP		(MDISP + 1)  { 21, 0, BFD_RELOC_23_PCREL_S2,     AXP_OPERAND_RELATIVE, insert_bdisp, extract_bdisp },  /* The 26-bit PALcode function */#define PALFN		(BDISP + 1)  { 26, 0, -PALFN, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The optional signed "16-bit" aligned displacement of the JMP/JSR hint */#define JMPHINT		(PALFN + 1)  { 14, 0, BFD_RELOC_ALPHA_HINT,    AXP_OPERAND_RELATIVE|AXP_OPERAND_DEFAULT_ZERO|AXP_OPERAND_NOOVERFLOW,    insert_jhint, extract_jhint },  /* The optional hint to RET/JSR_COROUTINE */#define RETHINT		(JMPHINT + 1)  { 14, 0, -RETHINT,    AXP_OPERAND_UNSIGNED|AXP_OPERAND_DEFAULT_ZERO, 0, 0 },  /* The 12-bit displacement for the ev[46] hw_{ld,st} (pal1b/pal1f) insns */#define EV4HWDISP	(RETHINT + 1)#define EV6HWDISP	(EV4HWDISP)  { 12, 0, -EV4HWDISP, AXP_OPERAND_SIGNED, 0, 0 },  /* The 5-bit index for the ev4 hw_m[ft]pr (pal19/pal1d) insns */#define EV4HWINDEX	(EV4HWDISP + 1)  { 5, 0, -EV4HWINDEX, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The 8-bit index for the oddly unqualified hw_m[tf]pr insns     that occur in DEC PALcode.  */#define EV4EXTHWINDEX	(EV4HWINDEX + 1)  { 8, 0, -EV4EXTHWINDEX, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The 10-bit displacement for the ev5 hw_{ld,st} (pal1b/pal1f) insns */#define EV5HWDISP	(EV4EXTHWINDEX + 1)  { 10, 0, -EV5HWDISP, AXP_OPERAND_SIGNED, 0, 0 },  /* The 16-bit index for the ev5 hw_m[ft]pr (pal19/pal1d) insns */#define EV5HWINDEX	(EV5HWDISP + 1)  { 16, 0, -EV5HWINDEX, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The 16-bit combined index/scoreboard mask for the ev6     hw_m[ft]pr (pal19/pal1d) insns */#define EV6HWINDEX	(EV5HWINDEX + 1)  { 16, 0, -EV6HWINDEX, AXP_OPERAND_UNSIGNED, 0, 0 },  /* The 13-bit branch hint for the ev6 hw_jmp/jsr (pal1e) insn */#define EV6HWJMPHINT	(EV6HWINDEX+ 1)  { 8, 0, -EV6HWJMPHINT,    AXP_OPERAND_RELATIVE|AXP_OPERAND_DEFAULT_ZERO|AXP_OPERAND_NOOVERFLOW,    insert_ev6hwjhint, extract_ev6hwjhint }};const unsigned alpha_num_operands = sizeof(alpha_operands)/sizeof(*alpha_operands);/* The RB field when it is the same as the RA field in the same insn.   This operand is marked fake.  The insertion function just copies   the RA field into the RB field, and the extraction function just   checks that the fields are the same. *//*ARGSUSED*/static unsignedinsert_rba(insn, value, errmsg)     unsigned insn;     int value ATTRIBUTE_UNUSED;     const char **errmsg ATTRIBUTE_UNUSED;{  return insn | (((insn >> 21) & 0x1f) << 16);}static intextract_rba(insn, invalid)     unsigned insn;     int *invalid;{  if (invalid != (int *) NULL      && ((insn >> 21) & 0x1f) != ((insn >> 16) & 0x1f))    *invalid = 1;  return 0;}/* The same for the RC field *//*ARGSUSED*/static unsignedinsert_rca(insn, value, errmsg)     unsigned insn;     int value ATTRIBUTE_UNUSED;     const char **errmsg ATTRIBUTE_UNUSED;{  return insn | ((insn >> 21) & 0x1f);}static intextract_rca(insn, invalid)     unsigned insn;     int *invalid;{  if (invalid != (int *) NULL      && ((insn >> 21) & 0x1f) != (insn & 0x1f))    *invalid = 1;  return 0;}/* Fake arguments in which the registers must be set to ZERO *//*ARGSUSED*/static unsignedinsert_za(insn, value, errmsg)     unsigned insn;     int value ATTRIBUTE_UNUSED;     const char **errmsg ATTRIBUTE_UNUSED;{  return insn | (31 << 21);}static intextract_za(insn, invalid)     unsigned insn;     int *invalid;{  if (invalid != (int *) NULL && ((insn >> 21) & 0x1f) != 31)    *invalid = 1;  return 0;}/*ARGSUSED*/static unsignedinsert_zb(insn, value, errmsg)     unsigned insn;     int value ATTRIBUTE_UNUSED;     const char **errmsg ATTRIBUTE_UNUSED;{  return insn | (31 << 16);}static intextract_zb(insn, invalid)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -