亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? alpha-dis.c

?? QEMU 0.91 source code, supports ARM processor including S3C24xx series
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* alpha-dis.c -- Disassemble Alpha AXP instructions   Copyright 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.   Contributed by Richard Henderson <rth@tamu.edu>,   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 redistributethem and/or modify them under the terms of the GNU General PublicLicense as published by the Free Software Foundation; either version2, or (at your option) any later version.GDB, GAS, and the GNU binutils are distributed in the hope that theywill be useful, but WITHOUT ANY WARRANTY; without even the impliedwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  Seethe GNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this file; see the file COPYING.  If not, write to the FreeSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA02111-1307, USA.  */#include <stdio.h>#include "dis-asm.h"/* The opcode table is an array of struct alpha_opcode.  */struct alpha_opcode{  /* The opcode name.  */  const char *name;  /* The opcode itself.  Those bits which will be filled in with     operands are zeroes.  */  unsigned opcode;  /* The opcode mask.  This is used by the disassembler.  This is a     mask containing ones indicating those bits which must match the     opcode field, and zeroes indicating those bits which need not     match (and are presumably filled in by operands).  */  unsigned mask;  /* One bit flags for the opcode.  These are primarily used to     indicate specific processors and environments support the     instructions.  The defined values are listed below. */  unsigned flags;  /* An array of operand codes.  Each code is an index into the     operand table.  They appear in the order which the operands must     appear in assembly code, and are terminated by a zero.  */  unsigned char operands[4];};/* The table itself is sorted by major opcode number, and is otherwise   in the order in which the disassembler should consider   instructions.  */extern const struct alpha_opcode alpha_opcodes[];extern const unsigned alpha_num_opcodes;/* Values defined for the flags field of a struct alpha_opcode.  *//* CPU Availability */#define AXP_OPCODE_BASE  0x0001  /* Base architecture -- all cpus.  */#define AXP_OPCODE_EV4   0x0002  /* EV4 specific PALcode insns.  */#define AXP_OPCODE_EV5   0x0004  /* EV5 specific PALcode insns.  */#define AXP_OPCODE_EV6   0x0008  /* EV6 specific PALcode insns.  */#define AXP_OPCODE_BWX   0x0100  /* Byte/word extension (amask bit 0).  */#define AXP_OPCODE_CIX   0x0200  /* "Count" extension (amask bit 1).  */#define AXP_OPCODE_MAX   0x0400  /* Multimedia extension (amask bit 8).  */#define AXP_OPCODE_NOPAL (~(AXP_OPCODE_EV4|AXP_OPCODE_EV5|AXP_OPCODE_EV6))/* A macro to extract the major opcode from an instruction.  */#define AXP_OP(i)	(((i) >> 26) & 0x3F)/* The total number of major opcodes. */#define AXP_NOPS	0x40/* The operands table is an array of struct alpha_operand.  */struct alpha_operand{  /* The number of bits in the operand.  */  unsigned int bits : 5;  /* How far the operand is left shifted in the instruction.  */  unsigned int shift : 5;  /* The default relocation type for this operand.  */  signed int default_reloc : 16;  /* One bit syntax flags.  */  unsigned int flags : 16;  /* Insertion function.  This is used by the assembler.  To insert an     operand value into an instruction, check this field.     If it is NULL, execute         i |= (op & ((1 << o->bits) - 1)) << o->shift;     (i is the instruction which we are filling in, o is a pointer to     this structure, and op is the opcode value; this assumes twos     complement arithmetic).     If this field is not NULL, then simply call it with the     instruction and the operand value.  It will return the new value     of the instruction.  If the ERRMSG argument is not NULL, then if     the operand value is illegal, *ERRMSG will be set to a warning     string (the operand will be inserted in any case).  If the     operand value is legal, *ERRMSG will be unchanged (most operands     can accept any value).  */  unsigned (*insert) PARAMS ((unsigned instruction, int op,			      const char **errmsg));  /* Extraction function.  This is used by the disassembler.  To     extract this operand type from an instruction, check this field.     If it is NULL, compute         op = ((i) >> o->shift) & ((1 << o->bits) - 1);	 if ((o->flags & AXP_OPERAND_SIGNED) != 0	     && (op & (1 << (o->bits - 1))) != 0)	   op -= 1 << o->bits;     (i is the instruction, o is a pointer to this structure, and op     is the result; this assumes twos complement arithmetic).     If this field is not NULL, then simply call it with the     instruction value.  It will return the value of the operand.  If     the INVALID argument is not NULL, *INVALID will be set to     non-zero if this operand type can not actually be extracted from     this operand (i.e., the instruction does not match).  If the     operand is valid, *INVALID will not be changed.  */  int (*extract) PARAMS ((unsigned instruction, int *invalid));};/* Elements in the table are retrieved by indexing with values from   the operands field of the alpha_opcodes table.  */extern const struct alpha_operand alpha_operands[];extern const unsigned alpha_num_operands;/* Values defined for the flags field of a struct alpha_operand.  *//* Mask for selecting the type for typecheck purposes */#define AXP_OPERAND_TYPECHECK_MASK					\  (AXP_OPERAND_PARENS | AXP_OPERAND_COMMA | AXP_OPERAND_IR |		\   AXP_OPERAND_FPR | AXP_OPERAND_RELATIVE | AXP_OPERAND_SIGNED | 	\   AXP_OPERAND_UNSIGNED)/* This operand does not actually exist in the assembler input.  This   is used to support extended mnemonics, for which two operands fields   are identical.  The assembler should call the insert function with   any op value.  The disassembler should call the extract function,   ignore the return value, and check the value placed in the invalid   argument.  */#define AXP_OPERAND_FAKE	01/* The operand should be wrapped in parentheses rather than separated   from the previous by a comma.  This is used for the load and store   instructions which want their operands to look like "Ra,disp(Rb)".  */#define AXP_OPERAND_PARENS	02/* Used in combination with PARENS, this supresses the supression of   the comma.  This is used for "jmp Ra,(Rb),hint".  */#define AXP_OPERAND_COMMA	04/* This operand names an integer register.  */#define AXP_OPERAND_IR		010/* This operand names a floating point register.  */#define AXP_OPERAND_FPR		020/* This operand is a relative branch displacement.  The disassembler   prints these symbolically if possible.  */#define AXP_OPERAND_RELATIVE	040/* This operand takes signed values.  */#define AXP_OPERAND_SIGNED	0100/* This operand takes unsigned values.  This exists primarily so that   a flags value of 0 can be treated as end-of-arguments.  */#define AXP_OPERAND_UNSIGNED	0200/* Supress overflow detection on this field.  This is used for hints. */#define AXP_OPERAND_NOOVERFLOW	0400/* Mask for optional argument default value.  */#define AXP_OPERAND_OPTIONAL_MASK 07000/* This operand defaults to zero.  This is used for jump hints.  */#define AXP_OPERAND_DEFAULT_ZERO 01000/* This operand should default to the first (real) operand and is used   in conjunction with AXP_OPERAND_OPTIONAL.  This allows   "and $0,3,$0" to be written as "and $0,3", etc.  I don't like   it, but it's what DEC does.  */#define AXP_OPERAND_DEFAULT_FIRST 02000/* Similarly, this operand should default to the second (real) operand.   This allows "negl $0" instead of "negl $0,$0".  */#define AXP_OPERAND_DEFAULT_SECOND 04000/* Register common names */#define AXP_REG_V0	0#define AXP_REG_T0	1#define AXP_REG_T1	2#define AXP_REG_T2	3#define AXP_REG_T3	4#define AXP_REG_T4	5#define AXP_REG_T5	6#define AXP_REG_T6	7#define AXP_REG_T7	8#define AXP_REG_S0	9#define AXP_REG_S1	10#define AXP_REG_S2	11#define AXP_REG_S3	12#define AXP_REG_S4	13#define AXP_REG_S5	14#define AXP_REG_FP	15#define AXP_REG_A0	16#define AXP_REG_A1	17#define AXP_REG_A2	18#define AXP_REG_A3	19#define AXP_REG_A4	20#define AXP_REG_A5	21#define AXP_REG_T8	22#define AXP_REG_T9	23#define AXP_REG_T10	24#define AXP_REG_T11	25#define AXP_REG_RA	26#define AXP_REG_PV	27#define AXP_REG_T12	27#define AXP_REG_AT	28#define AXP_REG_GP	29#define AXP_REG_SP	30#define AXP_REG_ZERO	31#define bfd_mach_alpha_ev4  0x10#define bfd_mach_alpha_ev5  0x20#define bfd_mach_alpha_ev6  0x30enum bfd_reloc_code_real {    BFD_RELOC_23_PCREL_S2,    BFD_RELOC_ALPHA_HINT};/* 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 segment.   This file also holds the operand table.  All knowledge about inserting   and extracting operands from instructions 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 },

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美激情一二三区| 国产精品婷婷午夜在线观看| 日韩电影免费在线观看网站| 欧美一卡二卡在线| 国产福利一区二区三区视频在线| 亚洲欧洲三级电影| 欧美一级免费大片| 91在线视频官网| 美女mm1313爽爽久久久蜜臀| 国产精品素人一区二区| 欧美日韩精品一区二区三区四区| 国产一区二区伦理片| 亚洲黄色免费电影| 久久久综合视频| 色噜噜狠狠色综合中国| 国产乱子伦视频一区二区三区 | 欧美一级黄色录像| 不卡的电影网站| 蜜臀久久久久久久| 亚洲欧美日韩在线播放| 欧美精品一区二区三区视频 | 亚洲视频电影在线| 欧美一二三区在线观看| 日本高清视频一区二区| 国产乱国产乱300精品| 天天综合天天综合色| 中文字幕一区二区三区在线播放| 日韩午夜电影av| 欧美在线综合视频| av欧美精品.com| 国产一区二区成人久久免费影院| 午夜精品久久久久久久蜜桃app| 国产三级精品视频| 日韩视频免费直播| 欧美又粗又大又爽| 色综合天天综合网国产成人综合天| 国产美女av一区二区三区| 午夜视频在线观看一区二区| 日本一区二区三区电影| 精品国产网站在线观看| 欧美片网站yy| 精品视频1区2区3区| 一本一道波多野结衣一区二区| 国产精品99久久久久久宅男| 麻豆精品视频在线观看| 日日噜噜夜夜狠狠视频欧美人| 亚洲精品水蜜桃| 综合欧美一区二区三区| 亚洲欧美在线视频| 国产精品你懂的在线欣赏| 国产日韩欧美一区二区三区乱码 | 国产精品一区二区视频| 精品一区二区在线免费观看| 蜜臀久久99精品久久久久宅男 | 亚洲制服丝袜一区| 亚洲精品乱码久久久久久| 亚洲欧洲韩国日本视频| 国产精品免费aⅴ片在线观看| 久久精品一二三| 国产性色一区二区| 国产精品国产三级国产有无不卡 | 日韩三级高清在线| 91精品国产综合久久国产大片| 欧美影院午夜播放| 在线不卡的av| 精品国内二区三区| 国产午夜久久久久| 国产精品国产三级国产专播品爱网| 国产精品对白交换视频| 亚洲日本青草视频在线怡红院| 国产精品美女久久久久久久网站| 国产精品乱人伦| 亚洲美女免费在线| 五月激情丁香一区二区三区| 免费成人在线影院| 国产精品99久久久久久久女警| 成人午夜av在线| 色中色一区二区| 欧美日韩亚洲不卡| 精品国产污网站| 亚洲视频每日更新| 热久久久久久久| 国产白丝精品91爽爽久久| 色综合欧美在线视频区| 欧美情侣在线播放| 国产亚洲自拍一区| 亚洲精品视频免费看| 免费欧美高清视频| 不卡一二三区首页| 91精品啪在线观看国产60岁| 精品对白一区国产伦| 国产精品久久久久国产精品日日| 一区二区在线观看视频在线观看| 亚洲二区在线观看| 日韩精品久久理论片| 国产伦精品一区二区三区视频青涩 | 欧美一区二区三区精品| 久久久国产一区二区三区四区小说 | 国产精品一区二区在线看| 色婷婷狠狠综合| 精品国产免费人成在线观看| 久久精品欧美日韩| 亚洲欧美偷拍三级| 国产在线乱码一区二区三区| 91成人免费在线| 欧美日韩亚洲另类| 国产精品视频麻豆| 无码av免费一区二区三区试看| 国产suv一区二区三区88区| 91福利在线播放| 精品少妇一区二区| 中文字幕欧美一| 九一九一国产精品| 在线看日本不卡| 中文字幕av资源一区| 日韩激情一二三区| 色老汉av一区二区三区| 国产日本亚洲高清| 日本不卡一区二区三区高清视频| 成人精品小蝌蚪| 精品久久久久一区二区国产| 一区二区三区视频在线看| 国产精品夜夜爽| 日韩一区二区在线看片| 亚洲一区二区三区视频在线播放 | 欧美三级日本三级少妇99| 精品国产一区二区精华| 污片在线观看一区二区| 日本精品一级二级| 国产清纯白嫩初高生在线观看91 | 亚洲摸摸操操av| 国产精品白丝av| 91精品国产免费| 天天综合色天天综合色h| 91偷拍与自偷拍精品| 日本一区二区三区四区在线视频| 蜜桃视频第一区免费观看| 欧美日韩中文一区| 亚洲欧美另类在线| 99久久精品免费看国产| 国产女同性恋一区二区| 激情久久久久久久久久久久久久久久| 欧洲一区二区三区在线| 国产日韩影视精品| 国产黄色成人av| 欧美精品一区二区三区蜜桃| 蜜桃久久久久久| 精品电影一区二区三区| 美女任你摸久久| 精品剧情在线观看| 国模少妇一区二区三区| 精品国产免费一区二区三区四区 | 国产精品一区二区你懂的| 精品国产伦一区二区三区观看体验| 日韩精品欧美精品| 日韩一区二区高清| 久久精品国产77777蜜臀| 日韩一区二区三区精品视频| 成人免费小视频| 99精品视频中文字幕| 亚洲一区在线免费观看| 日韩一区二区三区av| 国产成都精品91一区二区三| 国产精品大尺度| 欧美日韩mp4| 国产一区在线观看视频| 亚洲啪啪综合av一区二区三区| 欧美日韩mp4| 国产一区二区三区黄视频| 亚洲色图清纯唯美| 91精品国产综合久久精品麻豆| 国模一区二区三区白浆| 亚洲欧美另类久久久精品| 在线观看91av| 成人黄色a**站在线观看| 亚洲超碰97人人做人人爱| 久久婷婷成人综合色| 色94色欧美sute亚洲线路二| 六月婷婷色综合| 成人免费在线视频观看| 日韩三级精品电影久久久| 91亚洲永久精品| 久久99精品久久久久| 亚洲人成精品久久久久久| 精品理论电影在线观看| 在线欧美日韩国产| 国产精品一区二区男女羞羞无遮挡 | 亚洲自拍偷拍av| 久久久久国色av免费看影院| 91久久精品一区二区三区| 国产精品456| 日日摸夜夜添夜夜添亚洲女人| 中文字幕中文字幕一区二区 | wwwwww.欧美系列| 色欧美日韩亚洲| 国产盗摄一区二区三区| 日韩av网站免费在线| 亚洲男人的天堂在线aⅴ视频| 久久综合给合久久狠狠狠97色69| 欧美无砖专区一中文字|