]>
Commit | Line | Data |
---|---|---|
318b02b6 KR |
1 | /* Opcode table for the ARM. |
2 | ||
ff15324f | 3 | Copyright 1994, 1995 Free Software Foundation, Inc. |
318b02b6 KR |
4 | |
5 | This program is free software; you can redistribute it and/or modify | |
6 | it under the terms of the GNU General Public License as published by | |
7 | the Free Software Foundation; either version 2, or (at your option) | |
8 | any later version. | |
9 | ||
10 | This program is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | GNU General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU General Public License | |
16 | along with this program; if not, write to the Free Software | |
943fbd5b | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
318b02b6 KR |
18 | |
19 | ||
20 | struct arm_opcode { | |
21 | unsigned long value, mask; /* recognise instruction if (op&mask)==value */ | |
22 | char *assembler; /* how to disassemble this instruction */ | |
23 | }; | |
24 | ||
25 | /* format of the assembler string : | |
26 | ||
27 | %% % | |
28 | %<bitfield>d print the bitfield in decimal | |
29 | %<bitfield>x print the bitfield in hex | |
30 | %<bitfield>r print as an ARM register | |
ff15324f KR |
31 | %<bitfield>f print a floating point constant if >7 else a |
32 | floating point register | |
318b02b6 KR |
33 | %c print condition code (always bits 28-31) |
34 | %P print floating point precision in arithmetic insn | |
35 | %Q print floating point precision in ldf/stf insn | |
36 | %R print floating point rounding mode | |
37 | %<bitnum>'c print specified char iff bit is one | |
38 | %<bitnum>`c print specified char iff bit is zero | |
39 | %<bitnum>?ab print a if bit is one else print b | |
40 | %p print 'p' iff bits 12-15 are 15 | |
41 | %t print 't' iff bit 21 set and bit 24 clear | |
50569dee | 42 | %h print 'h' iff bit 5 set, else print 'b' |
318b02b6 KR |
43 | %o print operand2 (immediate or register + shift) |
44 | %a print address for ldr/str instruction | |
50569dee | 45 | %s print address for ldr/str halfword/signextend instruction |
318b02b6 KR |
46 | %b print branch destination |
47 | %A print address for ldc/stc/ldf/stf instruction | |
48 | %m print register mask for ldm/stm instruction | |
49 | %C print the PSR sub type. | |
50 | %F print the COUNT field of a LFM/SFM instruction. | |
51 | */ | |
52 | ||
ff15324f KR |
53 | /* Note: There is a partial ordering in this table - it must be searched from |
54 | the top to obtain a correct match. */ | |
55 | ||
318b02b6 KR |
56 | static struct arm_opcode arm_opcodes[] = { |
57 | /* ARM instructions */ | |
58 | {0x00000090, 0x0fe000f0, "mul%c%20's\t%16-19r, %0-3r, %8-11r"}, | |
59 | {0x00200090, 0x0fe000f0, "mla%c%20's\t%16-19r, %0-3r, %8-11r, %12-15r"}, | |
60 | {0x01000090, 0x0fb00ff0, "swp%c%22'b\t%12-15r, %0-3r, [%16-19r]"}, | |
ff15324f KR |
61 | {0x00800090, 0x0fa000f0, "%22?sumull%c%20's\t%12-15r, %16-19r, %0-3r, %8-11r"}, |
62 | {0x00a00090, 0x0fa000f0, "%22?sumlal%c%20's\t%12-15r, %16-19r, %0-3r, %8-11r"}, | |
50569dee JSC |
63 | {0x00000090, 0x0e100090, "str%c%6's%h\t%12-15r, %s"}, |
64 | {0x00100090, 0x0e100090, "ldr%c%6's%h\t%12-15r, %s"}, | |
318b02b6 KR |
65 | {0x00000000, 0x0de00000, "and%c%20's\t%12-15r, %16-19r, %o"}, |
66 | {0x00200000, 0x0de00000, "eor%c%20's\t%12-15r, %16-19r, %o"}, | |
67 | {0x00400000, 0x0de00000, "sub%c%20's\t%12-15r, %16-19r, %o"}, | |
68 | {0x00600000, 0x0de00000, "rsb%c%20's\t%12-15r, %16-19r, %o"}, | |
69 | {0x00800000, 0x0de00000, "add%c%20's\t%12-15r, %16-19r, %o"}, | |
70 | {0x00a00000, 0x0de00000, "adc%c%20's\t%12-15r, %16-19r, %o"}, | |
71 | {0x00c00000, 0x0de00000, "sbc%c%20's\t%12-15r, %16-19r, %o"}, | |
72 | {0x00e00000, 0x0de00000, "rsc%c%20's\t%12-15r, %16-19r, %o"}, | |
73 | {0x0120f000, 0x0db6f000, "msr%c\t%22?scpsr%C, %o"}, | |
74 | {0x010f0000, 0x0fbf0fff, "mrs%c\t%12-15r, %22?scpsr"}, | |
75 | {0x01000000, 0x0de00000, "tst%c%p\t%16-19r, %o"}, | |
76 | {0x01200000, 0x0de00000, "teq%c%p\t%16-19r, %o"}, | |
77 | {0x01400000, 0x0de00000, "cmp%c%p\t%16-19r, %o"}, | |
78 | {0x01600000, 0x0de00000, "cmn%c%p\t%16-19r, %o"}, | |
79 | {0x01800000, 0x0de00000, "orr%c%20's\t%12-15r, %16-19r, %o"}, | |
80 | {0x01a00000, 0x0de00000, "mov%c%20's\t%12-15r, %o"}, | |
81 | {0x01c00000, 0x0de00000, "bic%c%20's\t%12-15r, %16-19r, %o"}, | |
82 | {0x01e00000, 0x0de00000, "mvn%c%20's\t%12-15r, %o"}, | |
83 | {0x04000000, 0x0c100000, "str%c%22'b%t\t%12-15r, %a"}, | |
84 | {0x04100000, 0x0c100000, "ldr%c%22'b%t\t%12-15r, %a"}, | |
ff15324f KR |
85 | {0x08000000, 0x0e100000, "stm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"}, |
86 | {0x08100000, 0x0e100000, "ldm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"}, | |
318b02b6 KR |
87 | {0x0a000000, 0x0e000000, "b%24'l%c\t%b"}, |
88 | {0x0f000000, 0x0f000000, "swi%c\t%0-23x"}, | |
89 | ||
90 | /* Floating point coprocessor instructions */ | |
91 | {0x0e000100, 0x0ff08f10, "adf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
92 | {0x0e100100, 0x0ff08f10, "muf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
93 | {0x0e200100, 0x0ff08f10, "suf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
94 | {0x0e300100, 0x0ff08f10, "rsf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
95 | {0x0e400100, 0x0ff08f10, "dvf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
96 | {0x0e500100, 0x0ff08f10, "rdf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
97 | {0x0e600100, 0x0ff08f10, "pow%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
98 | {0x0e700100, 0x0ff08f10, "rpw%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
99 | {0x0e800100, 0x0ff08f10, "rmf%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
100 | {0x0e900100, 0x0ff08f10, "fml%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
101 | {0x0ea00100, 0x0ff08f10, "fdv%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
102 | {0x0eb00100, 0x0ff08f10, "frd%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
103 | {0x0ec00100, 0x0ff08f10, "pol%c%P%R\t%12-14f, %16-18f, %0-3f"}, | |
104 | {0x0e008100, 0x0ff08f10, "mvf%c%P%R\t%12-14f, %0-3f"}, | |
105 | {0x0e108100, 0x0ff08f10, "mnf%c%P%R\t%12-14f, %0-3f"}, | |
106 | {0x0e208100, 0x0ff08f10, "abs%c%P%R\t%12-14f, %0-3f"}, | |
107 | {0x0e308100, 0x0ff08f10, "rnd%c%P%R\t%12-14f, %0-3f"}, | |
108 | {0x0e408100, 0x0ff08f10, "sqt%c%P%R\t%12-14f, %0-3f"}, | |
109 | {0x0e508100, 0x0ff08f10, "log%c%P%R\t%12-14f, %0-3f"}, | |
110 | {0x0e608100, 0x0ff08f10, "lgn%c%P%R\t%12-14f, %0-3f"}, | |
111 | {0x0e708100, 0x0ff08f10, "exp%c%P%R\t%12-14f, %0-3f"}, | |
112 | {0x0e808100, 0x0ff08f10, "sin%c%P%R\t%12-14f, %0-3f"}, | |
113 | {0x0e908100, 0x0ff08f10, "cos%c%P%R\t%12-14f, %0-3f"}, | |
114 | {0x0ea08100, 0x0ff08f10, "tan%c%P%R\t%12-14f, %0-3f"}, | |
115 | {0x0eb08100, 0x0ff08f10, "asn%c%P%R\t%12-14f, %0-3f"}, | |
116 | {0x0ec08100, 0x0ff08f10, "acs%c%P%R\t%12-14f, %0-3f"}, | |
117 | {0x0ed08100, 0x0ff08f10, "atn%c%P%R\t%12-14f, %0-3f"}, | |
118 | {0x0ee08100, 0x0ff08f10, "urd%c%P%R\t%12-14f, %0-3f"}, | |
119 | {0x0ef08100, 0x0ff08f10, "nrm%c%P%R\t%12-14f, %0-3f"}, | |
120 | {0x0e000110, 0x0ff00f1f, "flt%c%P%R\t%16-18f, %12-15r"}, | |
121 | {0x0e100110, 0x0fff0f98, "fix%c%R\t%12-15r, %0-2f"}, | |
122 | {0x0e200110, 0x0fff0fff, "wfs%c\t%12-15r"}, | |
123 | {0x0e300110, 0x0fff0fff, "rfs%c\t%12-15r"}, | |
124 | {0x0e400110, 0x0fff0fff, "wfc%c\t%12-15r"}, | |
125 | {0x0e500110, 0x0fff0fff, "rfc%c\t%12-15r"}, | |
126 | {0x0e90f110, 0x0ff8fff0, "cmf%c\t%16-18f, %0-3f"}, | |
127 | {0x0eb0f110, 0x0ff8fff0, "cnf%c\t%16-18f, %0-3f"}, | |
128 | {0x0ed0f110, 0x0ff8fff0, "cmfe%c\t%16-18f, %0-3f"}, | |
129 | {0x0ef0f110, 0x0ff8fff0, "cnfe%c\t%16-18f, %0-3f"}, | |
130 | {0x0c000100, 0x0e100f00, "stf%c%Q\t%12-14f, %A"}, | |
131 | {0x0c100100, 0x0e100f00, "ldf%c%Q\t%12-14f, %A"}, | |
318b02b6 KR |
132 | {0x0c000200, 0x0e100f00, "sfm%c\t%12-14f, %F, %A"}, |
133 | {0x0c100200, 0x0e100f00, "lfm%c\t%12-14f, %F, %A"}, | |
134 | ||
135 | /* Generic coprocessor instructions */ | |
136 | {0x0e000000, 0x0f000010, "cdp%c\t%8-11d, %20-23d, cr%12-15d, cr%16-19d, cr%0-3d, {%5-7d}"}, | |
137 | {0x0e100010, 0x0f100010, "mrc%c\t%8-11d, %21-23d, %12-15r, cr%16-19d, cr%0-3d, {%5-7d}"}, | |
138 | {0x0e000010, 0x0f100010, "mcr%c\t%8-11d, %21-23d, %12-15r, cr%16-19d, cr%0-3d, {%5-7d}"}, | |
ff15324f KR |
139 | {0x0c000000, 0x0e100000, "stc%c%22'l\t%8-11d, cr%12-15d, %A"}, |
140 | {0x0c100000, 0x0e100000, "ldc%c%22'l\t%8-11d, cr%12-15d, %A"}, | |
318b02b6 KR |
141 | /* the rest */ |
142 | {0x00000000, 0x00000000, "undefined instruction %0-31x"}, | |
143 | {0x00000000, 0x00000000, 0} | |
144 | }; | |
145 | ||
146 | #define BDISP(x) ((((x) & 0xffffff) ^ 0x800000) - 0x800000) |