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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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 },

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲精品7777| 一区二区在线观看免费视频播放 | 精品制服美女久久| av综合在线播放| 91精品国产综合久久香蕉麻豆| 国产午夜精品久久久久久免费视| 一区二区视频在线| 国产精品伊人色| 色哟哟一区二区| 精品久久免费看| 午夜成人免费电影| 成人网在线免费视频| 在线播放91灌醉迷j高跟美女 | 亚洲另类色综合网站| 久久精品国产亚洲一区二区三区 | 欧美视频在线一区二区三区| 国产精品私人自拍| 激情深爱一区二区| 欧美日韩国产大片| 一区二区三区在线视频观看| 成人免费高清视频| 久久女同互慰一区二区三区| 天天综合色天天综合| 色菇凉天天综合网| |精品福利一区二区三区| 国产九色精品成人porny| 日韩欧美精品在线| 免费高清不卡av| 91麻豆精品国产91久久久| 亚洲一区二区三区四区的| av综合在线播放| 欧美国产激情一区二区三区蜜月 | 色老综合老女人久久久| 国产精品网曝门| 99久久er热在这里只有精品66| 久久婷婷色综合| 国产伦精品一区二区三区在线观看| 欧美一区二区三区四区高清| 日日骚欧美日韩| 91精品国模一区二区三区| 奇米精品一区二区三区在线观看一| 欧美午夜视频网站| 亚洲丝袜美腿综合| 在线欧美日韩精品| 亚洲一区二区三区国产| 欧美美女一区二区在线观看| 亚洲国产精品一区二区久久| 精品视频色一区| 蜜桃一区二区三区在线| 日韩精品一区二区三区在线播放 | 亚洲一区二区三区四区在线| 91极品视觉盛宴| 婷婷久久综合九色综合伊人色| 欧美日韩大陆在线| 青草av.久久免费一区| 日韩欧美国产高清| 国产91精品久久久久久久网曝门| 国产精品无遮挡| 欧美在线观看一区| 男人操女人的视频在线观看欧美| 欧美mv和日韩mv国产网站| 国产美女精品人人做人人爽 | 亚洲国产日韩精品| 日韩欧美视频一区| 不卡一区二区三区四区| 亚洲一区二区在线视频| 日韩免费观看2025年上映的电影 | 麻豆精品在线视频| 久久久精品天堂| 色综合天天综合色综合av| 香港成人在线视频| 久久免费电影网| 不卡av免费在线观看| 亚洲a一区二区| 欧美成人官网二区| 97久久精品人人做人人爽| 蜜臀av一区二区三区| 综合网在线视频| 欧美一级日韩免费不卡| 99精品一区二区| 久久国产人妖系列| 亚洲制服丝袜av| 精品国产乱码久久久久久免费| 99视频在线观看一区三区| 日韩电影在线一区二区| 国产精品不卡视频| 精品日韩av一区二区| 91久久香蕉国产日韩欧美9色| 精品一区二区三区视频| 亚洲欧洲精品一区二区三区| 91精品国产高清一区二区三区| 成人激情午夜影院| 久久综合综合久久综合| 五月婷婷另类国产| 亚洲欧洲在线观看av| 久久综合久久久久88| 91精品国产欧美一区二区成人| 色婷婷亚洲婷婷| 国产69精品一区二区亚洲孕妇| 日韩国产精品久久久久久亚洲| 亚洲欧美在线另类| 国产欧美日韩三级| 精品国产麻豆免费人成网站| 欧美色区777第一页| 色悠久久久久综合欧美99| 99久久精品99国产精品| 成人午夜视频网站| 不卡av在线免费观看| 成人av资源下载| 成人avav在线| 成人app在线| 91蜜桃免费观看视频| 成人动漫一区二区在线| 成人免费视频视频在线观看免费| 国产在线视频不卡二| 久久91精品久久久久久秒播| 麻豆一区二区三| 国产伦精品一区二区三区视频青涩| 精品中文字幕一区二区| 玖玖九九国产精品| 国产精品99久久久久久有的能看| 紧缚捆绑精品一区二区| 美女视频黄免费的久久| 精品一区二区三区av| 国产一区二区三区电影在线观看| 国产在线不卡一区| 国产风韵犹存在线视精品| 福利一区在线观看| 99精品欧美一区二区三区综合在线| 成人蜜臀av电影| av一二三不卡影片| 色婷婷av一区二区三区大白胸| 色呦呦网站一区| 欧美一区二区三区视频在线观看| 欧美大片日本大片免费观看| 欧美男女性生活在线直播观看| 欧美性猛交xxxx乱大交退制版| 欧美日韩国产片| www激情久久| 精品成人在线观看| 国产清纯在线一区二区www| ●精品国产综合乱码久久久久 | 欧美极品aⅴ影院| 亚洲色图制服诱惑 | 99久久久精品免费观看国产蜜| 国产宾馆实践打屁股91| 91日韩一区二区三区| 在线播放中文一区| 久久久另类综合| 自拍偷拍亚洲综合| 免费在线观看不卡| 成人一区二区三区中文字幕| 91国偷自产一区二区开放时间| 4438x亚洲最大成人网| 国产天堂亚洲国产碰碰| 一区二区三区高清| 激情文学综合插| 在线欧美日韩精品| 久久人人爽人人爽| 亚洲影视资源网| 国产精品 日产精品 欧美精品| 色菇凉天天综合网| 久久精品一区二区三区不卡 | 欧美性生活影院| 久久综合av免费| 亚洲综合精品久久| 国产麻豆精品久久一二三| 欧美色涩在线第一页| 国产三级精品在线| 天堂av在线一区| 成人av免费网站| 26uuu国产一区二区三区| 视频一区中文字幕国产| 成人免费看黄yyy456| 91麻豆精品国产91久久久使用方法| 国产精品久久一级| 乱中年女人伦av一区二区| 一本在线高清不卡dvd| 国产日韩av一区| 蜜桃视频一区二区| 欧美日韩小视频| 1区2区3区国产精品| 国产成人av福利| 精品少妇一区二区三区日产乱码 | 亚洲另类春色国产| 成人免费视频app| 国产亚洲女人久久久久毛片| 日韩在线卡一卡二| 欧美日韩一区二区三区不卡| 国产精品乱人伦一区二区| 国产乱人伦精品一区二区在线观看| 欧美乱熟臀69xxxxxx| 亚洲乱码国产乱码精品精的特点| 成人国产电影网| 久久久久久毛片| 狠狠色综合日日| 久久婷婷色综合| 国产精品一区在线观看乱码 | 国产很黄免费观看久久| 欧美一区二区三区在线看|