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

📄 arm-opc.h

📁 基于4个mips核的noc设计
💻 H
📖 第 1 页 / 共 2 页
字号:
/* Opcode table for the ARM.   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000   Free Software Foundation, Inc.      This program is free software; you can redistribute it and/or modify   it 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.   This program is distributed in the hope that it 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 program; if not, write to the Free Software   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */struct arm_opcode {    unsigned long value, mask;	/* recognise instruction if (op&mask)==value */    char *assembler;		/* how to disassemble this instruction */};struct thumb_opcode{    unsigned short value, mask;	/* recognise instruction if (op&mask)==value */    char * assembler;		/* how to disassemble this instruction */};/* format of the assembler string :      %%			%   %<bitfield>d		print the bitfield in decimal   %<bitfield>x		print the bitfield in hex   %<bitfield>X		print the bitfield as 1 hex digit without leading "0x"   %<bitfield>r		print as an ARM register   %<bitfield>f		print a floating point constant if >7 else a			floating point register   %c			print condition code (always bits 28-31)   %P			print floating point precision in arithmetic insn   %Q			print floating point precision in ldf/stf insn   %R			print floating point rounding mode   %<bitnum>'c		print specified char iff bit is one   %<bitnum>`c		print specified char iff bit is zero   %<bitnum>?ab		print a if bit is one else print b   %p			print 'p' iff bits 12-15 are 15   %t			print 't' iff bit 21 set and bit 24 clear   %h                   print 'h' iff bit 5 set, else print 'b'   %o			print operand2 (immediate or register + shift)   %a			print address for ldr/str instruction   %s                   print address for ldr/str halfword/signextend instruction   %b			print branch destination   %B			print arm BLX(1) destination   %A			print address for ldc/stc/ldf/stf instruction   %m			print register mask for ldm/stm instruction   %C			print the PSR sub type.   %F			print the COUNT field of a LFM/SFM instruction.Thumb specific format options:   %D                   print Thumb register (bits 0..2 as high number if bit 7 set)   %S                   print Thumb register (bits 3..5 as high number if bit 6 set)   %<bitfield>I         print bitfield as a signed decimal   				(top bit of range being the sign bit)   %M                   print Thumb register mask   %N                   print Thumb register mask (with LR)   %O                   print Thumb register mask (with PC)   %T                   print Thumb condition code (always bits 8-11)   %<bitfield>B         print Thumb branch destination (signed displacement)   %<bitfield>W         print (bitfield * 4) as a decimal   %<bitfield>H         print (bitfield * 2) as a decimal   %<bitfield>a         print (bitfield * 4) as a pc-rel offset + decoded symbol*//* Note: There is a partial ordering in this table - it must be searched from   the top to obtain a correct match. */static struct arm_opcode arm_opcodes[] ={    /* ARM instructions.  */    {0xe1a00000, 0xffffffff, "nop\t\t\t(mov r0,r0)"},    {0x012FFF10, 0x0ffffff0, "bx%c\t%0-3r"},    {0x00000090, 0x0fe000f0, "mul%c%20's\t%16-19r, %0-3r, %8-11r"},    {0x00200090, 0x0fe000f0, "mla%c%20's\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x01000090, 0x0fb00ff0, "swp%c%22'b\t%12-15r, %0-3r, [%16-19r]"},    {0x00800090, 0x0fa000f0, "%22?sumull%c%20's\t%12-15r, %16-19r, %0-3r, %8-11r"},    {0x00a00090, 0x0fa000f0, "%22?sumlal%c%20's\t%12-15r, %16-19r, %0-3r, %8-11r"},    /* XScale instructions.  */    {0x0e200010, 0x0fff0ff0, "mia%c\tacc0, %0-3r, %12-15r"},    {0x0e280010, 0x0fff0ff0, "miaph%c\tacc0, %0-3r, %12-15r"},    {0x0e2c0010, 0x0ffc0ff0, "mia%17'T%17`B%16'T%16`B%c\tacc0, %0-3r, %12-15r"},    {0x0c400000, 0x0ff00fff, "mar%c\tacc0, %12-15r, %16-19r"},    {0x0c500000, 0x0ff00fff, "mra%c\t%12-15r, %16-19r, acc0"},    {0xf450f000, 0xfc70f000, "pld\t%a"},        /* V5 Instructions.  */    {0xe1200070, 0xfff000f0, "bkpt\t0x%16-19X%12-15X%8-11X%0-3X"},    {0xfa000000, 0xfe000000, "blx\t%B"},    {0x012fff30, 0x0ffffff0, "blx%c\t%0-3r"},    {0x016f0f10, 0x0fff0ff0, "clz%c\t%12-15r, %0-3r"},    {0xfc100000, 0xfe100000, "ldc2%22'l\t%8-11d, cr%12-15d, %A"},    {0xfc000000, 0xfe100000, "stc2%22'l\t%8-11d, cr%12-15d, %A"},    {0xfe000000, 0xff000010, "cdp2\t%8-11d, %20-23d, cr%12-15d, cr%16-19d, cr%0-3d, {%5-7d}"},    {0xfe000010, 0xff100010, "mcr2\t%8-11d, %21-23d, %12-15r, cr%16-19d, cr%0-3d, {%5-7d}"},    {0xfe100010, 0xff100010, "mrc2\t%8-11d, %21-23d, %12-15r, cr%16-19d, cr%0-3d, {%5-7d}"},    /* V5E "El Segundo" Instructions.  */        {0x000000d0, 0x0e1000f0, "ldr%cd\t%12-15r, %s"},    {0x000000f0, 0x0e1000f0, "str%cd\t%12-15r, %s"},    {0x01000080, 0x0ff000f0, "smlabb%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x010000a0, 0x0ff000f0, "smlatb%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x010000c0, 0x0ff000f0, "smlabt%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x010000e0, 0x0ff000f0, "smlatt%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x01200080, 0x0ff000f0, "smlawb%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x012000c0, 0x0ff000f0, "smlawt%c\t%16-19r, %0-3r, %8-11r, %12-15r"},    {0x01400080, 0x0ff000f0, "smlalbb%c\t%12-15r, %16-19r, %0-3r, %8-11r"},    {0x014000a0, 0x0ff000f0, "smlaltb%c\t%12-15r, %16-19r, %0-3r, %8-11r"},    {0x014000c0, 0x0ff000f0, "smlalbt%c\t%12-15r, %16-19r, %0-3r, %8-11r"},    {0x014000e0, 0x0ff000f0, "smlaltt%c\t%12-15r, %16-19r, %0-3r, %8-11r"},    {0x01600080, 0x0ff0f0f0, "smulbb%c\t%16-19r, %0-3r, %8-11r"},    {0x016000a0, 0x0ff0f0f0, "smultb%c\t%16-19r, %0-3r, %8-11r"},    {0x016000c0, 0x0ff0f0f0, "smulbt%c\t%16-19r, %0-3r, %8-11r"},    {0x016000e0, 0x0ff0f0f0, "smultt%c\t%16-19r, %0-3r, %8-11r"},    {0x012000a0, 0x0ff0f0f0, "smulwb%c\t%16-19r, %0-3r, %8-11r"},    {0x012000e0, 0x0ff0f0f0, "smulwt%c\t%16-19r, %0-3r, %8-11r"},    {0x01000050, 0x0ff00ff0,  "qadd%c\t%12-15r, %0-3r, %16-19r"},    {0x01400050, 0x0ff00ff0, "qdadd%c\t%12-15r, %0-3r, %16-19r"},    {0x01200050, 0x0ff00ff0,  "qsub%c\t%12-15r, %0-3r, %16-19r"},    {0x01600050, 0x0ff00ff0, "qdsub%c\t%12-15r, %0-3r, %16-19r"},    {0x0c400000, 0x0ff00000, "mcrr%c\t%8-11d, %4-7d, %12-15r, %16-19r, cr%0-3d"},    {0x0c500000, 0x0ff00000, "mrrc%c\t%8-11d, %4-7d, %12-15r, %16-19r, cr%0-3d"},    /* ARM Instructions.  */    {0x00000090, 0x0e100090, "str%c%6's%h\t%12-15r, %s"},    {0x00100090, 0x0e100090, "ldr%c%6's%h\t%12-15r, %s"},    {0x00000000, 0x0de00000, "and%c%20's\t%12-15r, %16-19r, %o"},    {0x00200000, 0x0de00000, "eor%c%20's\t%12-15r, %16-19r, %o"},    {0x00400000, 0x0de00000, "sub%c%20's\t%12-15r, %16-19r, %o"},    {0x00600000, 0x0de00000, "rsb%c%20's\t%12-15r, %16-19r, %o"},    {0x00800000, 0x0de00000, "add%c%20's\t%12-15r, %16-19r, %o"},    {0x00a00000, 0x0de00000, "adc%c%20's\t%12-15r, %16-19r, %o"},    {0x00c00000, 0x0de00000, "sbc%c%20's\t%12-15r, %16-19r, %o"},    {0x00e00000, 0x0de00000, "rsc%c%20's\t%12-15r, %16-19r, %o"},    {0x0120f000, 0x0db0f000, "msr%c\t%22?SCPSR%C, %o"},    {0x010f0000, 0x0fbf0fff, "mrs%c\t%12-15r, %22?SCPSR"},    {0x01000000, 0x0de00000, "tst%c%p\t%16-19r, %o"},    {0x01200000, 0x0de00000, "teq%c%p\t%16-19r, %o"},    {0x01400000, 0x0de00000, "cmp%c%p\t%16-19r, %o"},    {0x01600000, 0x0de00000, "cmn%c%p\t%16-19r, %o"},    {0x01800000, 0x0de00000, "orr%c%20's\t%12-15r, %16-19r, %o"},    {0x01a00000, 0x0de00000, "mov%c%20's\t%12-15r, %o"},    {0x01c00000, 0x0de00000, "bic%c%20's\t%12-15r, %16-19r, %o"},    {0x01e00000, 0x0de00000, "mvn%c%20's\t%12-15r, %o"},    {0x04000000, 0x0e100000, "str%c%22'b%t\t%12-15r, %a"},    {0x06000000, 0x0e100ff0, "str%c%22'b%t\t%12-15r, %a"},    {0x04000000, 0x0c100010, "str%c%22'b%t\t%12-15r, %a"},    {0x06000010, 0x0e000010, "undefined"},    {0x04100000, 0x0c100000, "ldr%c%22'b%t\t%12-15r, %a"},    {0x08000000, 0x0e100000, "stm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"},    {0x08100000, 0x0e100000, "ldm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"},    {0x0a000000, 0x0e000000, "b%24'l%c\t%b"},    {0x0f000000, 0x0f000000, "swi%c\t%0-23x"},    /* Floating point coprocessor instructions */    {0x0e000100, 0x0ff08f10, "adf%c%P%R\t%12-14f, %16-18f, %0-3f"},    {0x0e100100, 0x0ff08f10, "muf%c%P%R\t%12-14f, %16-18f, %0-3f"},    {0x0e200100, 0x0ff08f10, "suf%c%P%R\t%12-14f, %16-18f, %0-3f"},    {0x0e300100, 0x0ff08f10, "rsf%c%P%R\t%12-14f, %16-18f, %0-3f"},    {0x0e400100, 0x0ff08f10, "dvf%c%P%R\t%12-14f, %16-18f, %0-3f"},

⌨️ 快捷键说明

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