Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* Opcode table for m680[012346]0/m6888[12]/m68851/mcf5200. |
6f2750fe | 2 | Copyright (C) 1989-2016 Free Software Foundation, Inc. |
252b5132 | 3 | |
9b201bb5 | 4 | This file is part of the GNU opcodes library. |
252b5132 | 5 | |
9b201bb5 NC |
6 | This library is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 3, or (at your option) | |
9 | any later version. | |
252b5132 | 10 | |
9b201bb5 NC |
11 | It is distributed in the hope that it will be useful, but WITHOUT |
12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | |
13 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | |
14 | License for more details. | |
252b5132 | 15 | |
3e602632 | 16 | You should have received a copy of the GNU General Public License |
9b201bb5 NC |
17 | along with this file; see the file COPYING. If not, write to the |
18 | Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, | |
19 | MA 02110-1301, USA. */ | |
252b5132 | 20 | |
0d8dfecf | 21 | #include "sysdep.h" |
252b5132 RH |
22 | #include "opcode/m68k.h" |
23 | ||
24 | #define one(x) ((unsigned int) (x) << 16) | |
25 | #define two(x, y) (((unsigned int) (x) << 16) + (y)) | |
26 | ||
27 | /* The assembler requires that all instances of the same mnemonic must | |
28 | be consecutive. If they aren't, the assembler will bomb at | |
29 | runtime. */ | |
30 | ||
afa2158f NS |
31 | /* Format strings consist of pairs of characters. The first describes |
32 | the type of the operand and the second describes the encoding. | |
33 | include/opcodes/m68k.h describes them in detail. */ | |
34 | ||
252b5132 RH |
35 | const struct m68k_opcode m68k_opcodes[] = |
36 | { | |
be8c092b NC |
37 | {"abcd", 2, one(0140400), one(0170770), "DsDd", m68000up }, |
38 | {"abcd", 2, one(0140410), one(0170770), "-s-d", m68000up }, | |
252b5132 | 39 | |
be8c092b NC |
40 | {"addaw", 2, one(0150300), one(0170700), "*wAd", m68000up }, |
41 | {"addal", 2, one(0150700), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
252b5132 | 42 | |
be8c092b NC |
43 | {"addib", 4, one(0003000), one(0177700), "#b$s", m68000up }, |
44 | {"addiw", 4, one(0003100), one(0177700), "#w$s", m68000up }, | |
45 | {"addil", 6, one(0003200), one(0177700), "#l$s", m68000up }, | |
46 | {"addil", 6, one(0003200), one(0177700), "#lDs", mcfisa_a }, | |
252b5132 | 47 | |
be8c092b NC |
48 | {"addqb", 2, one(0050000), one(0170700), "Qd$b", m68000up }, |
49 | {"addqw", 2, one(0050100), one(0170700), "Qd%w", m68000up }, | |
50 | {"addql", 2, one(0050200), one(0170700), "Qd%l", m68000up | mcfisa_a }, | |
252b5132 RH |
51 | |
52 | /* The add opcode can generate the adda, addi, and addq instructions. */ | |
be8c092b NC |
53 | {"addb", 2, one(0050000), one(0170700), "Qd$b", m68000up }, |
54 | {"addb", 4, one(0003000), one(0177700), "#b$s", m68000up }, | |
55 | {"addb", 2, one(0150000), one(0170700), ";bDd", m68000up }, | |
56 | {"addb", 2, one(0150400), one(0170700), "Dd~b", m68000up }, | |
57 | {"addw", 2, one(0050100), one(0170700), "Qd%w", m68000up }, | |
58 | {"addw", 2, one(0150300), one(0170700), "*wAd", m68000up }, | |
59 | {"addw", 4, one(0003100), one(0177700), "#w$s", m68000up }, | |
60 | {"addw", 2, one(0150100), one(0170700), "*wDd", m68000up }, | |
61 | {"addw", 2, one(0150500), one(0170700), "Dd~w", m68000up }, | |
62 | {"addl", 2, one(0050200), one(0170700), "Qd%l", m68000up | mcfisa_a }, | |
63 | {"addl", 6, one(0003200), one(0177700), "#l$s", m68000up }, | |
64 | {"addl", 6, one(0003200), one(0177700), "#lDs", mcfisa_a }, | |
65 | {"addl", 2, one(0150700), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
66 | {"addl", 2, one(0150200), one(0170700), "*lDd", m68000up | mcfisa_a }, | |
67 | {"addl", 2, one(0150600), one(0170700), "Dd~l", m68000up | mcfisa_a }, | |
68 | ||
69 | {"addxb", 2, one(0150400), one(0170770), "DsDd", m68000up }, | |
70 | {"addxb", 2, one(0150410), one(0170770), "-s-d", m68000up }, | |
71 | {"addxw", 2, one(0150500), one(0170770), "DsDd", m68000up }, | |
72 | {"addxw", 2, one(0150510), one(0170770), "-s-d", m68000up }, | |
73 | {"addxl", 2, one(0150600), one(0170770), "DsDd", m68000up | mcfisa_a }, | |
74 | {"addxl", 2, one(0150610), one(0170770), "-s-d", m68000up }, | |
75 | ||
76 | {"andib", 4, one(0001000), one(0177700), "#b$s", m68000up }, | |
77 | {"andib", 4, one(0001074), one(0177777), "#bCs", m68000up }, | |
78 | {"andiw", 4, one(0001100), one(0177700), "#w$s", m68000up }, | |
79 | {"andiw", 4, one(0001174), one(0177777), "#wSs", m68000up }, | |
80 | {"andil", 6, one(0001200), one(0177700), "#l$s", m68000up }, | |
81 | {"andil", 6, one(0001200), one(0177700), "#lDs", mcfisa_a }, | |
82 | {"andi", 4, one(0001100), one(0177700), "#w$s", m68000up }, | |
83 | {"andi", 4, one(0001074), one(0177777), "#bCs", m68000up }, | |
84 | {"andi", 4, one(0001174), one(0177777), "#wSs", m68000up }, | |
252b5132 RH |
85 | |
86 | /* The and opcode can generate the andi instruction. */ | |
be8c092b NC |
87 | {"andb", 4, one(0001000), one(0177700), "#b$s", m68000up }, |
88 | {"andb", 4, one(0001074), one(0177777), "#bCs", m68000up }, | |
89 | {"andb", 2, one(0140000), one(0170700), ";bDd", m68000up }, | |
90 | {"andb", 2, one(0140400), one(0170700), "Dd~b", m68000up }, | |
91 | {"andw", 4, one(0001100), one(0177700), "#w$s", m68000up }, | |
92 | {"andw", 4, one(0001174), one(0177777), "#wSs", m68000up }, | |
93 | {"andw", 2, one(0140100), one(0170700), ";wDd", m68000up }, | |
94 | {"andw", 2, one(0140500), one(0170700), "Dd~w", m68000up }, | |
95 | {"andl", 6, one(0001200), one(0177700), "#l$s", m68000up }, | |
96 | {"andl", 6, one(0001200), one(0177700), "#lDs", mcfisa_a }, | |
97 | {"andl", 2, one(0140200), one(0170700), ";lDd", m68000up | mcfisa_a }, | |
98 | {"andl", 2, one(0140600), one(0170700), "Dd~l", m68000up | mcfisa_a }, | |
cc16ba8c BE |
99 | {"and", 4, one(0001100), one(0177700), "#w$w", m68000up }, |
100 | {"and", 4, one(0001074), one(0177777), "#bCs", m68000up }, | |
101 | {"and", 4, one(0001174), one(0177777), "#wSs", m68000up }, | |
102 | {"and", 2, one(0140100), one(0170700), ";wDd", m68000up }, | |
103 | {"and", 2, one(0140500), one(0170700), "Dd~w", m68000up }, | |
be8c092b NC |
104 | |
105 | {"aslb", 2, one(0160400), one(0170770), "QdDs", m68000up }, | |
106 | {"aslb", 2, one(0160440), one(0170770), "DdDs", m68000up }, | |
107 | {"aslw", 2, one(0160500), one(0170770), "QdDs", m68000up }, | |
108 | {"aslw", 2, one(0160540), one(0170770), "DdDs", m68000up }, | |
109 | {"aslw", 2, one(0160700), one(0177700), "~s", m68000up }, | |
110 | {"asll", 2, one(0160600), one(0170770), "QdDs", m68000up | mcfisa_a }, | |
111 | {"asll", 2, one(0160640), one(0170770), "DdDs", m68000up | mcfisa_a }, | |
112 | ||
113 | {"asrb", 2, one(0160000), one(0170770), "QdDs", m68000up }, | |
114 | {"asrb", 2, one(0160040), one(0170770), "DdDs", m68000up }, | |
115 | {"asrw", 2, one(0160100), one(0170770), "QdDs", m68000up }, | |
116 | {"asrw", 2, one(0160140), one(0170770), "DdDs", m68000up }, | |
117 | {"asrw", 2, one(0160300), one(0177700), "~s", m68000up }, | |
118 | {"asrl", 2, one(0160200), one(0170770), "QdDs", m68000up | mcfisa_a }, | |
119 | {"asrl", 2, one(0160240), one(0170770), "DdDs", m68000up | mcfisa_a }, | |
120 | ||
121 | {"bhiw", 2, one(0061000), one(0177777), "BW", m68000up | mcfisa_a }, | |
122 | {"blsw", 2, one(0061400), one(0177777), "BW", m68000up | mcfisa_a }, | |
123 | {"bccw", 2, one(0062000), one(0177777), "BW", m68000up | mcfisa_a }, | |
124 | {"bcsw", 2, one(0062400), one(0177777), "BW", m68000up | mcfisa_a }, | |
125 | {"bnew", 2, one(0063000), one(0177777), "BW", m68000up | mcfisa_a }, | |
126 | {"beqw", 2, one(0063400), one(0177777), "BW", m68000up | mcfisa_a }, | |
127 | {"bvcw", 2, one(0064000), one(0177777), "BW", m68000up | mcfisa_a }, | |
128 | {"bvsw", 2, one(0064400), one(0177777), "BW", m68000up | mcfisa_a }, | |
129 | {"bplw", 2, one(0065000), one(0177777), "BW", m68000up | mcfisa_a }, | |
130 | {"bmiw", 2, one(0065400), one(0177777), "BW", m68000up | mcfisa_a }, | |
131 | {"bgew", 2, one(0066000), one(0177777), "BW", m68000up | mcfisa_a }, | |
132 | {"bltw", 2, one(0066400), one(0177777), "BW", m68000up | mcfisa_a }, | |
133 | {"bgtw", 2, one(0067000), one(0177777), "BW", m68000up | mcfisa_a }, | |
134 | {"blew", 2, one(0067400), one(0177777), "BW", m68000up | mcfisa_a }, | |
135 | ||
9a2e615a NS |
136 | {"bhil", 2, one(0061377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, |
137 | {"blsl", 2, one(0061777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
138 | {"bccl", 2, one(0062377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
139 | {"bcsl", 2, one(0062777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
140 | {"bnel", 2, one(0063377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
141 | {"beql", 2, one(0063777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
142 | {"bvcl", 2, one(0064377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
143 | {"bvsl", 2, one(0064777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
144 | {"bpll", 2, one(0065377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
145 | {"bmil", 2, one(0065777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
146 | {"bgel", 2, one(0066377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
147 | {"bltl", 2, one(0066777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
148 | {"bgtl", 2, one(0067377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
149 | {"blel", 2, one(0067777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, | |
be8c092b NC |
150 | |
151 | {"bhis", 2, one(0061000), one(0177400), "BB", m68000up | mcfisa_a }, | |
152 | {"blss", 2, one(0061400), one(0177400), "BB", m68000up | mcfisa_a }, | |
153 | {"bccs", 2, one(0062000), one(0177400), "BB", m68000up | mcfisa_a }, | |
154 | {"bcss", 2, one(0062400), one(0177400), "BB", m68000up | mcfisa_a }, | |
155 | {"bnes", 2, one(0063000), one(0177400), "BB", m68000up | mcfisa_a }, | |
156 | {"beqs", 2, one(0063400), one(0177400), "BB", m68000up | mcfisa_a }, | |
157 | {"bvcs", 2, one(0064000), one(0177400), "BB", m68000up | mcfisa_a }, | |
158 | {"bvss", 2, one(0064400), one(0177400), "BB", m68000up | mcfisa_a }, | |
159 | {"bpls", 2, one(0065000), one(0177400), "BB", m68000up | mcfisa_a }, | |
160 | {"bmis", 2, one(0065400), one(0177400), "BB", m68000up | mcfisa_a }, | |
161 | {"bges", 2, one(0066000), one(0177400), "BB", m68000up | mcfisa_a }, | |
162 | {"blts", 2, one(0066400), one(0177400), "BB", m68000up | mcfisa_a }, | |
163 | {"bgts", 2, one(0067000), one(0177400), "BB", m68000up | mcfisa_a }, | |
164 | {"bles", 2, one(0067400), one(0177400), "BB", m68000up | mcfisa_a }, | |
165 | ||
166 | {"jhi", 2, one(0061000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
167 | {"jls", 2, one(0061400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
168 | {"jcc", 2, one(0062000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
169 | {"jcs", 2, one(0062400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
170 | {"jne", 2, one(0063000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
171 | {"jeq", 2, one(0063400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
172 | {"jvc", 2, one(0064000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
173 | {"jvs", 2, one(0064400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
174 | {"jpl", 2, one(0065000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
175 | {"jmi", 2, one(0065400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
176 | {"jge", 2, one(0066000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
177 | {"jlt", 2, one(0066400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
178 | {"jgt", 2, one(0067000), one(0177400), "Bg", m68000up | mcfisa_a }, | |
179 | {"jle", 2, one(0067400), one(0177400), "Bg", m68000up | mcfisa_a }, | |
180 | ||
181 | {"bchg", 2, one(0000500), one(0170700), "Dd$s", m68000up | mcfisa_a }, | |
182 | {"bchg", 4, one(0004100), one(0177700), "#b$s", m68000up }, | |
183 | {"bchg", 4, one(0004100), one(0177700), "#bqs", mcfisa_a }, | |
184 | ||
185 | {"bclr", 2, one(0000600), one(0170700), "Dd$s", m68000up | mcfisa_a }, | |
186 | {"bclr", 4, one(0004200), one(0177700), "#b$s", m68000up }, | |
187 | {"bclr", 4, one(0004200), one(0177700), "#bqs", mcfisa_a }, | |
188 | ||
189 | {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, | |
190 | {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, | |
191 | {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, | |
192 | {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, | |
193 | {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, | |
194 | {"bfins", 4, two(0167700, 0), two(0177700, 0100000), "D1?sO2O3", m68020up }, | |
195 | {"bfset", 4, two(0167300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, | |
196 | {"bftst", 4, two(0164300, 0), two(0177700, 0170000), "/sO2O3", m68020up }, | |
197 | ||
3bdcfdf4 | 198 | {"bgnd", 2, one(0045372), one(0177777), "", cpu32 | fido_a }, |
be8c092b | 199 | |
9a2e615a | 200 | {"bitrev", 2, one(0000300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, |
be8c092b NC |
201 | |
202 | {"bkpt", 2, one(0044110), one(0177770), "ts", m68010up }, | |
203 | ||
204 | {"braw", 2, one(0060000), one(0177777), "BW", m68000up | mcfisa_a }, | |
3bdcfdf4 | 205 | {"bral", 2, one(0060377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b}, |
be8c092b NC |
206 | {"bras", 2, one(0060000), one(0177400), "BB", m68000up | mcfisa_a }, |
207 | ||
208 | {"bset", 2, one(0000700), one(0170700), "Dd$s", m68000up | mcfisa_a }, | |
209 | {"bset", 2, one(0000700), one(0170700), "Ddvs", mcfisa_a }, | |
210 | {"bset", 4, one(0004300), one(0177700), "#b$s", m68000up }, | |
211 | {"bset", 4, one(0004300), one(0177700), "#bqs", mcfisa_a }, | |
212 | ||
213 | {"bsrw", 2, one(0060400), one(0177777), "BW", m68000up | mcfisa_a }, | |
9a2e615a | 214 | {"bsrl", 2, one(0060777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, |
be8c092b NC |
215 | {"bsrs", 2, one(0060400), one(0177400), "BB", m68000up | mcfisa_a }, |
216 | ||
217 | {"btst", 2, one(0000400), one(0170700), "Dd;b", m68000up | mcfisa_a }, | |
218 | {"btst", 4, one(0004000), one(0177700), "#b@s", m68000up }, | |
219 | {"btst", 4, one(0004000), one(0177700), "#bqs", mcfisa_a }, | |
220 | ||
9a2e615a | 221 | {"byterev", 2, one(0001300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, |
be8c092b NC |
222 | |
223 | {"callm", 4, one(0003300), one(0177700), "#b!s", m68020 }, | |
224 | ||
225 | {"cas2w", 6, two(0006374,0), two(0177777,0007070), "D3D6D2D5r1r4", m68020up }, | |
226 | {"cas2w", 6, two(0006374,0), two(0177777,0007070), "D3D6D2D5R1R4", m68020up }, | |
227 | {"cas2l", 6, two(0007374,0), two(0177777,0007070), "D3D6D2D5r1r4", m68020up }, | |
228 | {"cas2l", 6, two(0007374,0), two(0177777,0007070), "D3D6D2D5R1R4", m68020up }, | |
229 | ||
230 | {"casb", 4, two(0005300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, | |
231 | {"casw", 4, two(0006300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, | |
232 | {"casl", 4, two(0007300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, | |
233 | ||
3bdcfdf4 KH |
234 | {"chk2b", 4, two(0000300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, |
235 | {"chk2w", 4, two(0001300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, | |
236 | {"chk2l", 4, two(0002300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, | |
be8c092b NC |
237 | |
238 | {"chkl", 2, one(0040400), one(0170700), ";lDd", m68000up }, | |
239 | {"chkw", 2, one(0040600), one(0170700), ";wDd", m68000up }, | |
252b5132 RH |
240 | |
241 | #define SCOPE_LINE (0x1 << 3) | |
242 | #define SCOPE_PAGE (0x2 << 3) | |
243 | #define SCOPE_ALL (0x3 << 3) | |
244 | ||
be8c092b NC |
245 | {"cinva", 2, one(0xf400|SCOPE_ALL), one(0xff38), "ce", m68040up }, |
246 | {"cinvl", 2, one(0xf400|SCOPE_LINE), one(0xff38), "ceas", m68040up }, | |
247 | {"cinvp", 2, one(0xf400|SCOPE_PAGE), one(0xff38), "ceas", m68040up }, | |
252b5132 | 248 | |
be8c092b NC |
249 | {"cpusha", 2, one(0xf420|SCOPE_ALL), one(0xff38), "ce", m68040up }, |
250 | {"cpushl", 2, one(0xf420|SCOPE_LINE), one(0xff38), "ceas", m68040up | mcfisa_a }, | |
251 | {"cpushp", 2, one(0xf420|SCOPE_PAGE), one(0xff38), "ceas", m68040up }, | |
252b5132 RH |
252 | |
253 | #undef SCOPE_LINE | |
254 | #undef SCOPE_PAGE | |
255 | #undef SCOPE_ALL | |
256 | ||
be8c092b NC |
257 | {"clrb", 2, one(0041000), one(0177700), "$s", m68000up | mcfisa_a }, |
258 | {"clrw", 2, one(0041100), one(0177700), "$s", m68000up | mcfisa_a }, | |
259 | {"clrl", 2, one(0041200), one(0177700), "$s", m68000up | mcfisa_a }, | |
252b5132 | 260 | |
3bdcfdf4 KH |
261 | {"cmp2b", 4, two(0000300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, |
262 | {"cmp2w", 4, two(0001300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, | |
263 | {"cmp2l", 4, two(0002300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, | |
252b5132 | 264 | |
be8c092b NC |
265 | {"cmpaw", 2, one(0130300), one(0170700), "*wAd", m68000up }, |
266 | {"cmpal", 2, one(0130700), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
252b5132 | 267 | |
be8c092b | 268 | {"cmpib", 4, one(0006000), one(0177700), "#b@s", m68000up }, |
9a2e615a | 269 | {"cmpib", 4, one(0006000), one(0177700), "#bDs", mcfisa_b | mcfisa_c }, |
be8c092b | 270 | {"cmpiw", 4, one(0006100), one(0177700), "#w@s", m68000up }, |
9a2e615a | 271 | {"cmpiw", 4, one(0006100), one(0177700), "#wDs", mcfisa_b | mcfisa_c }, |
be8c092b NC |
272 | {"cmpil", 6, one(0006200), one(0177700), "#l@s", m68000up }, |
273 | {"cmpil", 6, one(0006200), one(0177700), "#lDs", mcfisa_a }, | |
252b5132 | 274 | |
be8c092b NC |
275 | {"cmpmb", 2, one(0130410), one(0170770), "+s+d", m68000up }, |
276 | {"cmpmw", 2, one(0130510), one(0170770), "+s+d", m68000up }, | |
277 | {"cmpml", 2, one(0130610), one(0170770), "+s+d", m68000up }, | |
252b5132 RH |
278 | |
279 | /* The cmp opcode can generate the cmpa, cmpm, and cmpi instructions. */ | |
be8c092b | 280 | {"cmpb", 4, one(0006000), one(0177700), "#b@s", m68000up }, |
9a2e615a | 281 | {"cmpb", 4, one(0006000), one(0177700), "#bDs", mcfisa_b | mcfisa_c }, |
be8c092b NC |
282 | {"cmpb", 2, one(0130410), one(0170770), "+s+d", m68000up }, |
283 | {"cmpb", 2, one(0130000), one(0170700), ";bDd", m68000up }, | |
9a2e615a | 284 | {"cmpb", 2, one(0130000), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, |
be8c092b NC |
285 | {"cmpw", 2, one(0130300), one(0170700), "*wAd", m68000up }, |
286 | {"cmpw", 4, one(0006100), one(0177700), "#w@s", m68000up }, | |
9a2e615a | 287 | {"cmpw", 4, one(0006100), one(0177700), "#wDs", mcfisa_b | mcfisa_c }, |
be8c092b | 288 | {"cmpw", 2, one(0130510), one(0170770), "+s+d", m68000up }, |
9a2e615a | 289 | {"cmpw", 2, one(0130100), one(0170700), "*wDd", m68000up | mcfisa_b | mcfisa_c }, |
be8c092b NC |
290 | {"cmpl", 2, one(0130700), one(0170700), "*lAd", m68000up | mcfisa_a }, |
291 | {"cmpl", 6, one(0006200), one(0177700), "#l@s", m68000up }, | |
292 | {"cmpl", 6, one(0006200), one(0177700), "#lDs", mcfisa_a }, | |
293 | {"cmpl", 2, one(0130610), one(0170770), "+s+d", m68000up }, | |
294 | {"cmpl", 2, one(0130200), one(0170700), "*lDd", m68000up | mcfisa_a }, | |
43e65147 | 295 | |
afa2158f NS |
296 | {"cp0bcbusy",2, one (0176300), one (01777770), "BW", mcfisa_a}, |
297 | {"cp1bcbusy",2, one (0177300), one (01777770), "BW", mcfisa_a}, | |
298 | {"cp0nop", 4, two (0176000,0), two (01777477,0170777), "jE", mcfisa_a}, | |
299 | {"cp1nop", 4, two (0177000,0), two (01777477,0170777), "jE", mcfisa_a}, | |
300 | /* These all have 2 opcode words, but no fixed bits in the second | |
301 | word. We use a leading ' ' in the args string to indicate the | |
302 | extra opcode word. */ | |
303 | {"cp0ldb", 6, one (0176000), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
304 | {"cp1ldb", 6, one (0177000), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
305 | {"cp0ldw", 6, one (0176100), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
306 | {"cp1ldw", 6, one (0177100), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
307 | {"cp0ldl", 6, one (0176200), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
308 | {"cp1ldl", 6, one (0177200), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
309 | {"cp0ld", 6, one (0176200), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
310 | {"cp1ld", 6, one (0177200), one (01777700), ".pwR1jEK3", mcfisa_a}, | |
311 | {"cp0stb", 6, one (0176400), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
312 | {"cp1stb", 6, one (0177400), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
313 | {"cp0stw", 6, one (0176500), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
314 | {"cp1stw", 6, one (0177500), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
315 | {"cp0stl", 6, one (0176600), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
316 | {"cp1stl", 6, one (0177600), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
317 | {"cp0st", 6, one (0176600), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
318 | {"cp1st", 6, one (0177600), one (01777700), ".R1pwjEK3", mcfisa_a}, | |
43e65147 | 319 | |
be8c092b NC |
320 | {"dbcc", 2, one(0052310), one(0177770), "DsBw", m68000up }, |
321 | {"dbcs", 2, one(0052710), one(0177770), "DsBw", m68000up }, | |
322 | {"dbeq", 2, one(0053710), one(0177770), "DsBw", m68000up }, | |
323 | {"dbf", 2, one(0050710), one(0177770), "DsBw", m68000up }, | |
324 | {"dbge", 2, one(0056310), one(0177770), "DsBw", m68000up }, | |
325 | {"dbgt", 2, one(0057310), one(0177770), "DsBw", m68000up }, | |
326 | {"dbhi", 2, one(0051310), one(0177770), "DsBw", m68000up }, | |
327 | {"dble", 2, one(0057710), one(0177770), "DsBw", m68000up }, | |
328 | {"dbls", 2, one(0051710), one(0177770), "DsBw", m68000up }, | |
329 | {"dblt", 2, one(0056710), one(0177770), "DsBw", m68000up }, | |
330 | {"dbmi", 2, one(0055710), one(0177770), "DsBw", m68000up }, | |
331 | {"dbne", 2, one(0053310), one(0177770), "DsBw", m68000up }, | |
332 | {"dbpl", 2, one(0055310), one(0177770), "DsBw", m68000up }, | |
333 | {"dbt", 2, one(0050310), one(0177770), "DsBw", m68000up }, | |
334 | {"dbvc", 2, one(0054310), one(0177770), "DsBw", m68000up }, | |
335 | {"dbvs", 2, one(0054710), one(0177770), "DsBw", m68000up }, | |
336 | ||
337 | {"divsw", 2, one(0100700), one(0170700), ";wDd", m68000up | mcfhwdiv }, | |
338 | ||
3bdcfdf4 KH |
339 | {"divsl", 4, two(0046100,0006000),two(0177700,0107770),";lD3D1", m68020up | cpu32 | fido_a }, |
340 | {"divsl", 4, two(0046100,0004000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, | |
be8c092b NC |
341 | {"divsl", 4, two(0046100,0004000),two(0177700,0107770),"qsDD", mcfhwdiv }, |
342 | ||
3bdcfdf4 KH |
343 | {"divsll", 4, two(0046100,0004000),two(0177700,0107770),";lD3D1",m68020up | cpu32 | fido_a }, |
344 | {"divsll", 4, two(0046100,0004000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, | |
be8c092b NC |
345 | |
346 | {"divuw", 2, one(0100300), one(0170700), ";wDd", m68000up | mcfhwdiv }, | |
347 | ||
3bdcfdf4 KH |
348 | {"divul", 4, two(0046100,0002000),two(0177700,0107770),";lD3D1", m68020up | cpu32 | fido_a }, |
349 | {"divul", 4, two(0046100,0000000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, | |
be8c092b NC |
350 | {"divul", 4, two(0046100,0000000),two(0177700,0107770),"qsDD", mcfhwdiv }, |
351 | ||
3bdcfdf4 KH |
352 | {"divull", 4, two(0046100,0000000),two(0177700,0107770),";lD3D1",m68020up | cpu32 | fido_a }, |
353 | {"divull", 4, two(0046100,0000000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, | |
be8c092b NC |
354 | |
355 | {"eorib", 4, one(0005000), one(0177700), "#b$s", m68000up }, | |
356 | {"eorib", 4, one(0005074), one(0177777), "#bCs", m68000up }, | |
357 | {"eoriw", 4, one(0005100), one(0177700), "#w$s", m68000up }, | |
358 | {"eoriw", 4, one(0005174), one(0177777), "#wSs", m68000up }, | |
359 | {"eoril", 6, one(0005200), one(0177700), "#l$s", m68000up }, | |
360 | {"eoril", 6, one(0005200), one(0177700), "#lDs", mcfisa_a }, | |
361 | {"eori", 4, one(0005074), one(0177777), "#bCs", m68000up }, | |
362 | {"eori", 4, one(0005174), one(0177777), "#wSs", m68000up }, | |
363 | {"eori", 4, one(0005100), one(0177700), "#w$s", m68000up }, | |
252b5132 RH |
364 | |
365 | /* The eor opcode can generate the eori instruction. */ | |
be8c092b NC |
366 | {"eorb", 4, one(0005000), one(0177700), "#b$s", m68000up }, |
367 | {"eorb", 4, one(0005074), one(0177777), "#bCs", m68000up }, | |
368 | {"eorb", 2, one(0130400), one(0170700), "Dd$s", m68000up }, | |
369 | {"eorw", 4, one(0005100), one(0177700), "#w$s", m68000up }, | |
370 | {"eorw", 4, one(0005174), one(0177777), "#wSs", m68000up }, | |
371 | {"eorw", 2, one(0130500), one(0170700), "Dd$s", m68000up }, | |
372 | {"eorl", 6, one(0005200), one(0177700), "#l$s", m68000up }, | |
373 | {"eorl", 6, one(0005200), one(0177700), "#lDs", mcfisa_a }, | |
374 | {"eorl", 2, one(0130600), one(0170700), "Dd$s", m68000up | mcfisa_a }, | |
375 | {"eor", 4, one(0005074), one(0177777), "#bCs", m68000up }, | |
376 | {"eor", 4, one(0005174), one(0177777), "#wSs", m68000up }, | |
377 | {"eor", 4, one(0005100), one(0177700), "#w$s", m68000up }, | |
378 | {"eor", 2, one(0130500), one(0170700), "Dd$s", m68000up }, | |
43e65147 | 379 | |
be8c092b NC |
380 | {"exg", 2, one(0140500), one(0170770), "DdDs", m68000up }, |
381 | {"exg", 2, one(0140510), one(0170770), "AdAs", m68000up }, | |
382 | {"exg", 2, one(0140610), one(0170770), "DdAs", m68000up }, | |
383 | {"exg", 2, one(0140610), one(0170770), "AsDd", m68000up }, | |
384 | ||
385 | {"extw", 2, one(0044200), one(0177770), "Ds", m68000up|mcfisa_a }, | |
386 | {"extl", 2, one(0044300), one(0177770), "Ds", m68000up|mcfisa_a }, | |
3bdcfdf4 | 387 | {"extbl", 2, one(0044700), one(0177770), "Ds", m68020up | cpu32 | fido_a | mcfisa_a }, |
be8c092b | 388 | |
9a2e615a | 389 | {"ff1", 2, one(0002300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, |
3e602632 | 390 | |
252b5132 RH |
391 | /* float stuff starts here */ |
392 | ||
be8c092b NC |
393 | {"fabsb", 4, two(0xF000, 0x5818), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, |
394 | {"fabsb", 4, two(0xF000, 0x5818), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
395 | {"fabsd", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
396 | {"fabsd", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
397 | {"fabsd", 4, two(0xF000, 0x5418), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
398 | {"fabsd", 4, two(0xF000, 0x5418), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
399 | {"fabsl", 4, two(0xF000, 0x4018), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
400 | {"fabsl", 4, two(0xF000, 0x4018), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
401 | {"fabsp", 4, two(0xF000, 0x4C18), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
402 | {"fabss", 4, two(0xF000, 0x4418), two(0xF1C0, 0xFC7F), "Ii;fF7", cfloat }, | |
403 | {"fabss", 4, two(0xF000, 0x4418), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
404 | {"fabsw", 4, two(0xF000, 0x5018), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
405 | {"fabsw", 4, two(0xF000, 0x5018), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
406 | {"fabsx", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
407 | {"fabsx", 4, two(0xF000, 0x4818), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
408 | {"fabsx", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
409 | ||
410 | {"fsabsb", 4, two(0xF000, 0x5858), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
411 | {"fsabsb", 4, two(0xF000, 0x5858), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
412 | {"fsabsd", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
413 | {"fsabsd", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
414 | {"fsabsd", 4, two(0xF000, 0x5458), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
415 | {"fsabsd", 4, two(0xF000, 0x5458), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
416 | {"fsabsl", 4, two(0xF000, 0x4058), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
417 | {"fsabsl", 4, two(0xF000, 0x4058), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
418 | {"fsabsp", 4, two(0xF000, 0x4C58), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
c2fe9327 | 419 | {"fsabss", 4, two(0xF000, 0x4458), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
420 | {"fsabss", 4, two(0xF000, 0x4458), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, |
421 | {"fsabsw", 4, two(0xF000, 0x5058), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
422 | {"fsabsw", 4, two(0xF000, 0x5058), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
423 | {"fsabsx", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
424 | {"fsabsx", 4, two(0xF000, 0x4858), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
425 | {"fsabsx", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
426 | ||
427 | {"fdabsb", 4, two(0xF000, 0x585C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
428 | {"fdabsb", 4, two(0xF000, 0x585c), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up}, | |
429 | {"fdabsd", 4, two(0xF000, 0x005C), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
430 | {"fdabsd", 4, two(0xF000, 0x005C), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
431 | {"fdabsd", 4, two(0xF000, 0x545C), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
432 | {"fdabsd", 4, two(0xF000, 0x545c), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up}, | |
433 | {"fdabsl", 4, two(0xF000, 0x405C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
434 | {"fdabsl", 4, two(0xF000, 0x405c), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up}, | |
435 | {"fdabsp", 4, two(0xF000, 0x4C5c), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up}, | |
c2fe9327 | 436 | {"fdabss", 4, two(0xF000, 0x445C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
437 | {"fdabss", 4, two(0xF000, 0x445c), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up}, |
438 | {"fdabsw", 4, two(0xF000, 0x505C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
439 | {"fdabsw", 4, two(0xF000, 0x505c), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up}, | |
440 | {"fdabsx", 4, two(0xF000, 0x005c), two(0xF1C0, 0xE07F), "IiF8F7", m68040up}, | |
441 | {"fdabsx", 4, two(0xF000, 0x485c), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up}, | |
442 | {"fdabsx", 4, two(0xF000, 0x005c), two(0xF1C0, 0xE07F), "IiFt", m68040up}, | |
443 | ||
444 | {"facosb", 4, two(0xF000, 0x581C), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
445 | {"facosd", 4, two(0xF000, 0x541C), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
446 | {"facosl", 4, two(0xF000, 0x401C), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
447 | {"facosp", 4, two(0xF000, 0x4C1C), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
448 | {"facoss", 4, two(0xF000, 0x441C), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
449 | {"facosw", 4, two(0xF000, 0x501C), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
450 | {"facosx", 4, two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
451 | {"facosx", 4, two(0xF000, 0x481C), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
452 | {"facosx", 4, two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
453 | ||
454 | {"faddb", 4, two(0xF000, 0x5822), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
455 | {"faddb", 4, two(0xF000, 0x5822), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
456 | {"faddd", 4, two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
457 | {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
458 | {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
459 | {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
460 | {"faddl", 4, two(0xF000, 0x4022), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
461 | {"faddl", 4, two(0xF000, 0x4022), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
462 | {"faddp", 4, two(0xF000, 0x4C22), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
463 | {"fadds", 4, two(0xF000, 0x4422), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
464 | {"fadds", 4, two(0xF000, 0x4422), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
465 | {"faddw", 4, two(0xF000, 0x5022), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
466 | {"faddw", 4, two(0xF000, 0x5022), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
467 | {"faddx", 4, two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
468 | {"faddx", 4, two(0xF000, 0x4822), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
469 | ||
470 | {"fsaddb", 4, two(0xF000, 0x5862), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
471 | {"fsaddb", 4, two(0xF000, 0x5862), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
c2fe9327 | 472 | {"fsaddd", 4, two(0xF000, 0x0062), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, |
be8c092b NC |
473 | {"fsaddd", 4, two(0xF000, 0x5462), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, |
474 | {"fsaddd", 4, two(0xF000, 0x5462), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
475 | {"fsaddl", 4, two(0xF000, 0x4062), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
476 | {"fsaddl", 4, two(0xF000, 0x4062), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
477 | {"fsaddp", 4, two(0xF000, 0x4C62), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
478 | {"fsadds", 4, two(0xF000, 0x4462), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
c2fe9327 | 479 | {"fsadds", 4, two(0xF000, 0x4462), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
480 | {"fsaddw", 4, two(0xF000, 0x5062), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, |
481 | {"fsaddw", 4, two(0xF000, 0x5062), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
482 | {"fsaddx", 4, two(0xF000, 0x0062), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
483 | {"fsaddx", 4, two(0xF000, 0x4862), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
484 | ||
c2fe9327 | 485 | {"fdaddb", 4, two(0xF000, 0x5866), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
486 | {"fdaddb", 4, two(0xF000, 0x5866), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, |
487 | {"fdaddd", 4, two(0xF000, 0x0066), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
c2fe9327 | 488 | {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b | 489 | {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, |
777b13b9 | 490 | {"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
491 | {"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, |
492 | {"fdaddp", 4, two(0xF000, 0x4C66), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
493 | {"fdadds", 4, two(0xF000, 0x4466), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
c2fe9327 PB |
494 | {"fdadds", 4, two(0xF000, 0x4466), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
495 | {"fdaddw", 4, two(0xF000, 0x5066), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
be8c092b NC |
496 | {"fdaddw", 4, two(0xF000, 0x5066), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, |
497 | {"fdaddx", 4, two(0xF000, 0x0066), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
498 | {"fdaddx", 4, two(0xF000, 0x4866), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
499 | ||
500 | {"fasinb", 4, two(0xF000, 0x580C), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
501 | {"fasind", 4, two(0xF000, 0x540C), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
502 | {"fasinl", 4, two(0xF000, 0x400C), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
503 | {"fasinp", 4, two(0xF000, 0x4C0C), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
504 | {"fasins", 4, two(0xF000, 0x440C), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
505 | {"fasinw", 4, two(0xF000, 0x500C), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
506 | {"fasinx", 4, two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
507 | {"fasinx", 4, two(0xF000, 0x480C), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
508 | {"fasinx", 4, two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
509 | ||
510 | {"fatanb", 4, two(0xF000, 0x580A), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
511 | {"fatand", 4, two(0xF000, 0x540A), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
512 | {"fatanl", 4, two(0xF000, 0x400A), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
513 | {"fatanp", 4, two(0xF000, 0x4C0A), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
514 | {"fatans", 4, two(0xF000, 0x440A), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
515 | {"fatanw", 4, two(0xF000, 0x500A), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
516 | {"fatanx", 4, two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
517 | {"fatanx", 4, two(0xF000, 0x480A), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
518 | {"fatanx", 4, two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
519 | ||
520 | {"fatanhb", 4, two(0xF000, 0x580D), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
521 | {"fatanhd", 4, two(0xF000, 0x540D), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
522 | {"fatanhl", 4, two(0xF000, 0x400D), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
523 | {"fatanhp", 4, two(0xF000, 0x4C0D), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
524 | {"fatanhs", 4, two(0xF000, 0x440D), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
525 | {"fatanhw", 4, two(0xF000, 0x500D), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
526 | {"fatanhx", 4, two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
527 | {"fatanhx", 4, two(0xF000, 0x480D), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
528 | {"fatanhx", 4, two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
529 | ||
1a2dab1f AS |
530 | /* This is the same as `fbf .+2'. */ |
531 | {"fnop", 4, two(0xF280, 0x0000), two(0xFFFF, 0xFFFF), "Ii", mfloat | cfloat }, | |
532 | ||
be8c092b NC |
533 | {"fbeq", 2, one(0xF081), one(0xF1FF), "IdBW", mfloat | cfloat }, |
534 | {"fbf", 2, one(0xF080), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
535 | {"fbge", 2, one(0xF093), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
536 | {"fbgl", 2, one(0xF096), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
537 | {"fbgle", 2, one(0xF097), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
538 | {"fbgt", 2, one(0xF092), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
539 | {"fble", 2, one(0xF095), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
540 | {"fblt", 2, one(0xF094), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
541 | {"fbne", 2, one(0xF08E), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
542 | {"fbnge", 2, one(0xF09C), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
543 | {"fbngl", 2, one(0xF099), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
544 | {"fbngle", 2, one(0xF098), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
545 | {"fbngt", 2, one(0xF09D), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
546 | {"fbnle", 2, one(0xF09A), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
547 | {"fbnlt", 2, one(0xF09B), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
548 | {"fboge", 2, one(0xF083), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
549 | {"fbogl", 2, one(0xF086), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
550 | {"fbogt", 2, one(0xF082), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
551 | {"fbole", 2, one(0xF085), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
552 | {"fbolt", 2, one(0xF084), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
553 | {"fbor", 2, one(0xF087), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
554 | {"fbseq", 2, one(0xF091), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
555 | {"fbsf", 2, one(0xF090), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
556 | {"fbsne", 2, one(0xF09E), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
557 | {"fbst", 2, one(0xF09F), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
558 | {"fbt", 2, one(0xF08F), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
559 | {"fbueq", 2, one(0xF089), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
560 | {"fbuge", 2, one(0xF08B), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
561 | {"fbugt", 2, one(0xF08A), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
562 | {"fbule", 2, one(0xF08D), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
563 | {"fbult", 2, one(0xF08C), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
564 | {"fbun", 2, one(0xF088), one(0xF1FF), "IdBW", mfloat | cfloat }, | |
565 | ||
566 | {"fbeql", 2, one(0xF0C1), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
567 | {"fbfl", 2, one(0xF0C0), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
568 | {"fbgel", 2, one(0xF0D3), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
569 | {"fbgll", 2, one(0xF0D6), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
570 | {"fbglel", 2, one(0xF0D7), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
571 | {"fbgtl", 2, one(0xF0D2), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
572 | {"fblel", 2, one(0xF0D5), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
573 | {"fbltl", 2, one(0xF0D4), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
574 | {"fbnel", 2, one(0xF0CE), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
575 | {"fbngel", 2, one(0xF0DC), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
576 | {"fbngll", 2, one(0xF0D9), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
577 | {"fbnglel", 2, one(0xF0D8), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
578 | {"fbngtl", 2, one(0xF0DD), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
579 | {"fbnlel", 2, one(0xF0DA), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
580 | {"fbnltl", 2, one(0xF0DB), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
581 | {"fbogel", 2, one(0xF0C3), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
582 | {"fbogll", 2, one(0xF0C6), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
583 | {"fbogtl", 2, one(0xF0C2), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
584 | {"fbolel", 2, one(0xF0C5), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
585 | {"fboltl", 2, one(0xF0C4), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
586 | {"fborl", 2, one(0xF0C7), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
587 | {"fbseql", 2, one(0xF0D1), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
588 | {"fbsfl", 2, one(0xF0D0), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
589 | {"fbsnel", 2, one(0xF0DE), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
590 | {"fbstl", 2, one(0xF0DF), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
591 | {"fbtl", 2, one(0xF0CF), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
592 | {"fbueql", 2, one(0xF0C9), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
593 | {"fbugel", 2, one(0xF0CB), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
594 | {"fbugtl", 2, one(0xF0CA), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
595 | {"fbulel", 2, one(0xF0CD), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
596 | {"fbultl", 2, one(0xF0CC), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
597 | {"fbunl", 2, one(0xF0C8), one(0xF1FF), "IdBC", mfloat | cfloat }, | |
598 | ||
599 | {"fjeq", 2, one(0xF081), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
600 | {"fjf", 2, one(0xF080), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
601 | {"fjge", 2, one(0xF093), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
602 | {"fjgl", 2, one(0xF096), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
603 | {"fjgle", 2, one(0xF097), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
604 | {"fjgt", 2, one(0xF092), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
605 | {"fjle", 2, one(0xF095), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
606 | {"fjlt", 2, one(0xF094), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
607 | {"fjne", 2, one(0xF08E), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
608 | {"fjnge", 2, one(0xF09C), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
609 | {"fjngl", 2, one(0xF099), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
610 | {"fjngle", 2, one(0xF098), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
611 | {"fjngt", 2, one(0xF09D), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
612 | {"fjnle", 2, one(0xF09A), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
613 | {"fjnlt", 2, one(0xF09B), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
614 | {"fjoge", 2, one(0xF083), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
615 | {"fjogl", 2, one(0xF086), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
616 | {"fjogt", 2, one(0xF082), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
617 | {"fjole", 2, one(0xF085), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
618 | {"fjolt", 2, one(0xF084), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
619 | {"fjor", 2, one(0xF087), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
620 | {"fjseq", 2, one(0xF091), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
621 | {"fjsf", 2, one(0xF090), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
622 | {"fjsne", 2, one(0xF09E), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
623 | {"fjst", 2, one(0xF09F), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
624 | {"fjt", 2, one(0xF08F), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
625 | {"fjueq", 2, one(0xF089), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
626 | {"fjuge", 2, one(0xF08B), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
627 | {"fjugt", 2, one(0xF08A), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
628 | {"fjule", 2, one(0xF08D), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
629 | {"fjult", 2, one(0xF08C), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
630 | {"fjun", 2, one(0xF088), one(0xF1BF), "IdBc", mfloat | cfloat }, | |
631 | ||
632 | {"fcmpb", 4, two(0xF000, 0x5838), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
633 | {"fcmpb", 4, two(0xF000, 0x5838), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
634 | {"fcmpd", 4, two(0xF000, 0x5438), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
635 | {"fcmpd", 4, two(0xF000, 0x5438), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
636 | {"fcmpd", 4, two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
637 | {"fcmpl", 4, two(0xF000, 0x4038), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
638 | {"fcmpl", 4, two(0xF000, 0x4038), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
639 | {"fcmpp", 4, two(0xF000, 0x4C38), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
640 | {"fcmps", 4, two(0xF000, 0x4438), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
641 | {"fcmps", 4, two(0xF000, 0x4438), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
642 | {"fcmpw", 4, two(0xF000, 0x5038), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
643 | {"fcmpw", 4, two(0xF000, 0x5038), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
644 | {"fcmpx", 4, two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
645 | {"fcmpx", 4, two(0xF000, 0x4838), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
646 | ||
647 | {"fcosb", 4, two(0xF000, 0x581D), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
648 | {"fcosd", 4, two(0xF000, 0x541D), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
649 | {"fcosl", 4, two(0xF000, 0x401D), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
650 | {"fcosp", 4, two(0xF000, 0x4C1D), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
651 | {"fcoss", 4, two(0xF000, 0x441D), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
652 | {"fcosw", 4, two(0xF000, 0x501D), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
653 | {"fcosx", 4, two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
654 | {"fcosx", 4, two(0xF000, 0x481D), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
655 | {"fcosx", 4, two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
656 | ||
657 | {"fcoshb", 4, two(0xF000, 0x5819), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
658 | {"fcoshd", 4, two(0xF000, 0x5419), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
659 | {"fcoshl", 4, two(0xF000, 0x4019), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
660 | {"fcoshp", 4, two(0xF000, 0x4C19), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
661 | {"fcoshs", 4, two(0xF000, 0x4419), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
662 | {"fcoshw", 4, two(0xF000, 0x5019), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
663 | {"fcoshx", 4, two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
664 | {"fcoshx", 4, two(0xF000, 0x4819), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
665 | {"fcoshx", 4, two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
666 | ||
667 | {"fdbeq", 4, two(0xF048, 0x0001), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
668 | {"fdbf", 4, two(0xF048, 0x0000), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
669 | {"fdbge", 4, two(0xF048, 0x0013), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
670 | {"fdbgl", 4, two(0xF048, 0x0016), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
671 | {"fdbgle", 4, two(0xF048, 0x0017), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
672 | {"fdbgt", 4, two(0xF048, 0x0012), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
673 | {"fdble", 4, two(0xF048, 0x0015), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
674 | {"fdblt", 4, two(0xF048, 0x0014), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
675 | {"fdbne", 4, two(0xF048, 0x000E), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
676 | {"fdbnge", 4, two(0xF048, 0x001C), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
677 | {"fdbngl", 4, two(0xF048, 0x0019), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
678 | {"fdbngle", 4, two(0xF048, 0x0018), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
679 | {"fdbngt", 4, two(0xF048, 0x001D), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
680 | {"fdbnle", 4, two(0xF048, 0x001A), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
681 | {"fdbnlt", 4, two(0xF048, 0x001B), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
682 | {"fdboge", 4, two(0xF048, 0x0003), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
683 | {"fdbogl", 4, two(0xF048, 0x0006), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
684 | {"fdbogt", 4, two(0xF048, 0x0002), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
685 | {"fdbole", 4, two(0xF048, 0x0005), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
686 | {"fdbolt", 4, two(0xF048, 0x0004), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
687 | {"fdbor", 4, two(0xF048, 0x0007), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
688 | {"fdbseq", 4, two(0xF048, 0x0011), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
689 | {"fdbsf", 4, two(0xF048, 0x0010), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
690 | {"fdbsne", 4, two(0xF048, 0x001E), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
691 | {"fdbst", 4, two(0xF048, 0x001F), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
692 | {"fdbt", 4, two(0xF048, 0x000F), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
693 | {"fdbueq", 4, two(0xF048, 0x0009), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
694 | {"fdbuge", 4, two(0xF048, 0x000B), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
695 | {"fdbugt", 4, two(0xF048, 0x000A), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
696 | {"fdbule", 4, two(0xF048, 0x000D), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
697 | {"fdbult", 4, two(0xF048, 0x000C), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
698 | {"fdbun", 4, two(0xF048, 0x0008), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, | |
699 | ||
700 | {"fdivb", 4, two(0xF000, 0x5820), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
701 | {"fdivb", 4, two(0xF000, 0x5820), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
702 | {"fdivd", 4, two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
703 | {"fdivd", 4, two(0xF000, 0x5420), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
704 | {"fdivd", 4, two(0xF000, 0x5420), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
705 | {"fdivl", 4, two(0xF000, 0x4020), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
706 | {"fdivl", 4, two(0xF000, 0x4020), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
707 | {"fdivp", 4, two(0xF000, 0x4C20), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
708 | {"fdivs", 4, two(0xF000, 0x4420), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
709 | {"fdivs", 4, two(0xF000, 0x4420), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
710 | {"fdivw", 4, two(0xF000, 0x5020), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
711 | {"fdivw", 4, two(0xF000, 0x5020), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
712 | {"fdivx", 4, two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
713 | {"fdivx", 4, two(0xF000, 0x4820), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
714 | ||
715 | {"fsdivb", 4, two(0xF000, 0x5860), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
716 | {"fsdivb", 4, two(0xF000, 0x5860), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
717 | {"fsdivd", 4, two(0xF000, 0x0060), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
718 | {"fsdivd", 4, two(0xF000, 0x5460), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
719 | {"fsdivd", 4, two(0xF000, 0x5460), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
720 | {"fsdivl", 4, two(0xF000, 0x4060), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
721 | {"fsdivl", 4, two(0xF000, 0x4060), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
722 | {"fsdivp", 4, two(0xF000, 0x4C60), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
723 | {"fsdivs", 4, two(0xF000, 0x4460), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
724 | {"fsdivs", 4, two(0xF000, 0x4460), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
725 | {"fsdivw", 4, two(0xF000, 0x5060), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
726 | {"fsdivw", 4, two(0xF000, 0x5060), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
727 | {"fsdivx", 4, two(0xF000, 0x0060), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
728 | {"fsdivx", 4, two(0xF000, 0x4860), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
729 | ||
730 | {"fddivb", 4, two(0xF000, 0x5864), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
731 | {"fddivb", 4, two(0xF000, 0x5864), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
732 | {"fddivd", 4, two(0xF000, 0x0064), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
733 | {"fddivd", 4, two(0xF000, 0x5464), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
734 | {"fddivd", 4, two(0xF000, 0x5464), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
735 | {"fddivl", 4, two(0xF000, 0x4064), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
736 | {"fddivl", 4, two(0xF000, 0x4064), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
737 | {"fddivp", 4, two(0xF000, 0x4C64), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
738 | {"fddivs", 4, two(0xF000, 0x4464), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
739 | {"fddivs", 4, two(0xF000, 0x4464), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
740 | {"fddivw", 4, two(0xF000, 0x5064), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
741 | {"fddivw", 4, two(0xF000, 0x5064), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
742 | {"fddivx", 4, two(0xF000, 0x0064), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
743 | {"fddivx", 4, two(0xF000, 0x4864), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
744 | ||
745 | {"fetoxb", 4, two(0xF000, 0x5810), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
746 | {"fetoxd", 4, two(0xF000, 0x5410), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
747 | {"fetoxl", 4, two(0xF000, 0x4010), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
748 | {"fetoxp", 4, two(0xF000, 0x4C10), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
749 | {"fetoxs", 4, two(0xF000, 0x4410), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
750 | {"fetoxw", 4, two(0xF000, 0x5010), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
751 | {"fetoxx", 4, two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
752 | {"fetoxx", 4, two(0xF000, 0x4810), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
753 | {"fetoxx", 4, two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
754 | ||
755 | {"fetoxm1b", 4, two(0xF000, 0x5808), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
756 | {"fetoxm1d", 4, two(0xF000, 0x5408), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
757 | {"fetoxm1l", 4, two(0xF000, 0x4008), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
758 | {"fetoxm1p", 4, two(0xF000, 0x4C08), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
759 | {"fetoxm1s", 4, two(0xF000, 0x4408), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
760 | {"fetoxm1w", 4, two(0xF000, 0x5008), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
761 | {"fetoxm1x", 4, two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
762 | {"fetoxm1x", 4, two(0xF000, 0x4808), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
763 | {"fetoxm1x", 4, two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
764 | ||
765 | {"fgetexpb", 4, two(0xF000, 0x581E), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
766 | {"fgetexpd", 4, two(0xF000, 0x541E), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
767 | {"fgetexpl", 4, two(0xF000, 0x401E), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
768 | {"fgetexpp", 4, two(0xF000, 0x4C1E), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
769 | {"fgetexps", 4, two(0xF000, 0x441E), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
770 | {"fgetexpw", 4, two(0xF000, 0x501E), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
771 | {"fgetexpx", 4, two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
772 | {"fgetexpx", 4, two(0xF000, 0x481E), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
773 | {"fgetexpx", 4, two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
774 | ||
775 | {"fgetmanb", 4, two(0xF000, 0x581F), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
776 | {"fgetmand", 4, two(0xF000, 0x541F), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
777 | {"fgetmanl", 4, two(0xF000, 0x401F), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
778 | {"fgetmanp", 4, two(0xF000, 0x4C1F), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
779 | {"fgetmans", 4, two(0xF000, 0x441F), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
780 | {"fgetmanw", 4, two(0xF000, 0x501F), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
781 | {"fgetmanx", 4, two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
782 | {"fgetmanx", 4, two(0xF000, 0x481F), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
783 | {"fgetmanx", 4, two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
784 | ||
785 | {"fintb", 4, two(0xF000, 0x5801), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
786 | {"fintb", 4, two(0xF000, 0x5801), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
787 | {"fintd", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
788 | {"fintd", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
789 | {"fintd", 4, two(0xF000, 0x5401), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
790 | {"fintd", 4, two(0xF000, 0x5401), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
791 | {"fintl", 4, two(0xF000, 0x4001), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
792 | {"fintl", 4, two(0xF000, 0x4001), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
793 | {"fintp", 4, two(0xF000, 0x4C01), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
794 | {"fints", 4, two(0xF000, 0x4401), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
795 | {"fints", 4, two(0xF000, 0x4401), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
796 | {"fintw", 4, two(0xF000, 0x5001), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
797 | {"fintw", 4, two(0xF000, 0x5001), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
798 | {"fintx", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
799 | {"fintx", 4, two(0xF000, 0x4801), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
800 | {"fintx", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
801 | ||
802 | {"fintrzb", 4, two(0xF000, 0x5803), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
803 | {"fintrzb", 4, two(0xF000, 0x5803), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
804 | {"fintrzd", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
805 | {"fintrzd", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
806 | {"fintrzd", 4, two(0xF000, 0x5403), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
807 | {"fintrzd", 4, two(0xF000, 0x5403), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
808 | {"fintrzl", 4, two(0xF000, 0x4003), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
809 | {"fintrzl", 4, two(0xF000, 0x4003), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
810 | {"fintrzp", 4, two(0xF000, 0x4C03), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
811 | {"fintrzs", 4, two(0xF000, 0x4403), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
812 | {"fintrzs", 4, two(0xF000, 0x4403), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
813 | {"fintrzw", 4, two(0xF000, 0x5003), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
814 | {"fintrzw", 4, two(0xF000, 0x5003), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
815 | {"fintrzx", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
816 | {"fintrzx", 4, two(0xF000, 0x4803), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
817 | {"fintrzx", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
818 | ||
819 | {"flog10b", 4, two(0xF000, 0x5815), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
820 | {"flog10d", 4, two(0xF000, 0x5415), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
821 | {"flog10l", 4, two(0xF000, 0x4015), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
822 | {"flog10p", 4, two(0xF000, 0x4C15), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
823 | {"flog10s", 4, two(0xF000, 0x4415), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
824 | {"flog10w", 4, two(0xF000, 0x5015), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
825 | {"flog10x", 4, two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
826 | {"flog10x", 4, two(0xF000, 0x4815), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
827 | {"flog10x", 4, two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
828 | ||
829 | {"flog2b", 4, two(0xF000, 0x5816), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
830 | {"flog2d", 4, two(0xF000, 0x5416), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
831 | {"flog2l", 4, two(0xF000, 0x4016), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
832 | {"flog2p", 4, two(0xF000, 0x4C16), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
833 | {"flog2s", 4, two(0xF000, 0x4416), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
834 | {"flog2w", 4, two(0xF000, 0x5016), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
835 | {"flog2x", 4, two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
836 | {"flog2x", 4, two(0xF000, 0x4816), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
837 | {"flog2x", 4, two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
838 | ||
839 | {"flognb", 4, two(0xF000, 0x5814), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
840 | {"flognd", 4, two(0xF000, 0x5414), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
841 | {"flognl", 4, two(0xF000, 0x4014), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
842 | {"flognp", 4, two(0xF000, 0x4C14), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
843 | {"flogns", 4, two(0xF000, 0x4414), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
844 | {"flognw", 4, two(0xF000, 0x5014), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
845 | {"flognx", 4, two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
846 | {"flognx", 4, two(0xF000, 0x4814), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
847 | {"flognx", 4, two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
848 | ||
849 | {"flognp1b", 4, two(0xF000, 0x5806), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
850 | {"flognp1d", 4, two(0xF000, 0x5406), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
851 | {"flognp1l", 4, two(0xF000, 0x4006), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
852 | {"flognp1p", 4, two(0xF000, 0x4C06), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
853 | {"flognp1s", 4, two(0xF000, 0x4406), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
854 | {"flognp1w", 4, two(0xF000, 0x5006), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
855 | {"flognp1x", 4, two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
856 | {"flognp1x", 4, two(0xF000, 0x4806), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
857 | {"flognp1x", 4, two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
858 | ||
859 | {"fmodb", 4, two(0xF000, 0x5821), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
860 | {"fmodd", 4, two(0xF000, 0x5421), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
861 | {"fmodl", 4, two(0xF000, 0x4021), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
862 | {"fmodp", 4, two(0xF000, 0x4C21), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
863 | {"fmods", 4, two(0xF000, 0x4421), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
864 | {"fmodw", 4, two(0xF000, 0x5021), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
865 | {"fmodx", 4, two(0xF000, 0x0021), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
866 | {"fmodx", 4, two(0xF000, 0x4821), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
867 | ||
868 | {"fmoveb", 4, two(0xF000, 0x5800), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
869 | {"fmoveb", 4, two(0xF000, 0x7800), two(0xF1C0, 0xFC7F), "IiF7bs", cfloat }, | |
870 | {"fmoveb", 4, two(0xF000, 0x5800), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
871 | {"fmoveb", 4, two(0xF000, 0x7800), two(0xF1C0, 0xFC7F), "IiF7$b", mfloat }, | |
872 | {"fmoved", 4, two(0xF000, 0x5400), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
873 | {"fmoved", 4, two(0xF000, 0x7400), two(0xF1C0, 0xFC7F), "IiF7~F", mfloat }, | |
874 | {"fmoved", 4, two(0xF000, 0x0000), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
875 | {"fmoved", 4, two(0xF000, 0x5400), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
876 | {"fmoved", 4, two(0xF000, 0x7400), two(0xF1C0, 0xFC7F), "IiF7ws", cfloat }, | |
877 | {"fmovel", 4, two(0xF000, 0x4000), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
878 | {"fmovel", 4, two(0xF000, 0x6000), two(0xF1C0, 0xFC7F), "IiF7$l", mfloat }, | |
f4fa50da L |
879 | /* FIXME: the next two variants should not permit moving an address |
880 | register to anything but the floating point instruction register. */ | |
be8c092b NC |
881 | {"fmovel", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, |
882 | {"fmovel", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ls8", mfloat }, | |
883 | {"fmovel", 4, two(0xF000, 0x4000), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
884 | {"fmovel", 4, two(0xF000, 0x6000), two(0xF1C0, 0xFC7F), "IiF7bs", cfloat }, | |
885 | /* Move the FP control registers. */ | |
886 | {"fmovel", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8ps", cfloat }, | |
887 | {"fmovel", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Iibss8", cfloat }, | |
888 | {"fmovep", 4, two(0xF000, 0x4C00), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
889 | {"fmovep", 4, two(0xF000, 0x6C00), two(0xF1C0, 0xFC00), "IiF7~pkC", mfloat }, | |
890 | {"fmovep", 4, two(0xF000, 0x7C00), two(0xF1C0, 0xFC0F), "IiF7~pDk", mfloat }, | |
891 | {"fmoves", 4, two(0xF000, 0x4400), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
892 | {"fmoves", 4, two(0xF000, 0x6400), two(0xF1C0, 0xFC7F), "IiF7$f", mfloat }, | |
893 | {"fmoves", 4, two(0xF000, 0x4400), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
894 | {"fmoves", 4, two(0xF000, 0x6400), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
895 | {"fmovew", 4, two(0xF000, 0x5000), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
896 | {"fmovew", 4, two(0xF000, 0x7000), two(0xF1C0, 0xFC7F), "IiF7$w", mfloat }, | |
897 | {"fmovew", 4, two(0xF000, 0x5000), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
898 | {"fmovew", 4, two(0xF000, 0x7000), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
899 | {"fmovex", 4, two(0xF000, 0x0000), two(0xF1FF, 0xE07F), "IiF8F7", mfloat }, | |
900 | {"fmovex", 4, two(0xF000, 0x4800), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
901 | {"fmovex", 4, two(0xF000, 0x6800), two(0xF1C0, 0xFC7F), "IiF7~x", mfloat }, | |
902 | ||
903 | {"fsmoveb", 4, two(0xF000, 0x5840), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
904 | {"fsmoveb", 4, two(0xF000, 0x5840), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
905 | {"fsmoveb", 4, two(0xF000, 0x7840), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
906 | {"fsmoved", 4, two(0xF000, 0x0040), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
907 | {"fsmoved", 4, two(0xF000, 0x5440), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
908 | {"fsmoved", 4, two(0xF000, 0x5440), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
909 | {"fsmoved", 4, two(0xF000, 0x7440), two(0xF1C0, 0xFC7F), "IiF7ws", cfloat }, | |
910 | {"fsmovel", 4, two(0xF000, 0x4040), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
911 | {"fsmovel", 4, two(0xF000, 0x4040), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
912 | {"fsmovel", 4, two(0xF000, 0x6040), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
913 | {"fsmoves", 4, two(0xF000, 0x4440), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
914 | {"fsmoves", 4, two(0xF000, 0x4440), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
915 | {"fsmoves", 4, two(0xF000, 0x6440), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
916 | {"fsmovew", 4, two(0xF000, 0x5040), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
917 | {"fsmovew", 4, two(0xF000, 0x5040), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
918 | {"fsmovew", 4, two(0xF000, 0x7040), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
919 | {"fsmovex", 4, two(0xF000, 0x0040), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
920 | {"fsmovex", 4, two(0xF000, 0x4840), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
921 | {"fsmovep", 4, two(0xF000, 0x4C40), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
922 | ||
923 | {"fdmoveb", 4, two(0xF000, 0x5844), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
924 | {"fdmoveb", 4, two(0xF000, 0x5844), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
925 | {"fdmoveb", 4, two(0xF000, 0x7844), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
926 | {"fdmoved", 4, two(0xF000, 0x0044), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
927 | {"fdmoved", 4, two(0xF000, 0x5444), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
928 | {"fdmoved", 4, two(0xF000, 0x5444), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
929 | {"fdmoved", 4, two(0xF000, 0x7444), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
930 | {"fdmovel", 4, two(0xF000, 0x4044), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
931 | {"fdmovel", 4, two(0xF000, 0x4044), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
932 | {"fdmovel", 4, two(0xF000, 0x6044), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
933 | {"fdmoves", 4, two(0xF000, 0x4444), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
934 | {"fdmoves", 4, two(0xF000, 0x4444), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
935 | {"fdmoves", 4, two(0xF000, 0x6444), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
936 | {"fdmovew", 4, two(0xF000, 0x5044), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
937 | {"fdmovew", 4, two(0xF000, 0x5044), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
938 | {"fdmovew", 4, two(0xF000, 0x7044), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, | |
939 | {"fdmovex", 4, two(0xF000, 0x0044), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
940 | {"fdmovex", 4, two(0xF000, 0x4844), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
941 | {"fdmovep", 4, two(0xF000, 0x4C44), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
942 | ||
943 | {"fmovecrx", 4, two(0xF000, 0x5C00), two(0xF1FF, 0xFC00), "Ii#CF7", mfloat }, | |
944 | ||
a596001e RS |
945 | {"fmovemd", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizsl3", cfloat }, |
946 | {"fmovemd", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizs#3", cfloat }, | |
947 | {"fmovemd", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Iil3ys", cfloat }, | |
948 | {"fmovemd", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Ii#3ys", cfloat }, | |
be8c092b NC |
949 | |
950 | {"fmovemx", 4, two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s", mfloat }, | |
951 | {"fmovemx", 4, two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s", mfloat }, | |
952 | {"fmovemx", 4, two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk", mfloat }, | |
953 | {"fmovemx", 4, two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk", mfloat }, | |
954 | {"fmovemx", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s", mfloat }, | |
955 | {"fmovemx", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s", mfloat }, | |
956 | {"fmovemx", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3", mfloat }, | |
957 | {"fmovemx", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3", mfloat }, | |
958 | {"fmovemx", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s", mfloat }, | |
959 | {"fmovemx", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s", mfloat }, | |
960 | {"fmovemx", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3", mfloat }, | |
961 | {"fmovemx", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3", mfloat }, | |
962 | ||
963 | {"fmoveml", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, | |
964 | {"fmoveml", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8~s", mfloat }, | |
252b5132 RH |
965 | /* FIXME: In the next instruction, we should only permit %dn if the |
966 | target is a single register. We should only permit %an if the | |
967 | target is a single %fpiar. */ | |
be8c092b NC |
968 | {"fmoveml", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*lL8", mfloat }, |
969 | ||
a596001e RS |
970 | {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizsl3", cfloat }, |
971 | {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizs#3", cfloat }, | |
972 | {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Iil3ys", cfloat }, | |
973 | {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Ii#3ys", cfloat }, | |
be8c092b NC |
974 | |
975 | {"fmovem", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s", mfloat }, | |
976 | {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s", mfloat }, | |
977 | {"fmovem", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3", mfloat }, | |
978 | {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3", mfloat }, | |
979 | {"fmovem", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s", mfloat }, | |
980 | {"fmovem", 4, two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s", mfloat }, | |
981 | {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s", mfloat }, | |
982 | {"fmovem", 4, two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s", mfloat }, | |
983 | {"fmovem", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3", mfloat }, | |
984 | {"fmovem", 4, two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk", mfloat }, | |
985 | {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3", mfloat }, | |
986 | {"fmovem", 4, two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk", mfloat }, | |
987 | {"fmovem", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, | |
988 | {"fmovem", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ss8", mfloat }, | |
989 | {"fmovem", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8~s", mfloat }, | |
990 | {"fmovem", 4, two(0xF000, 0x8000), two(0xF2C0, 0xE3FF), "Ii*sL8", mfloat }, | |
991 | ||
992 | {"fmulb", 4, two(0xF000, 0x5823), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
993 | {"fmulb", 4, two(0xF000, 0x5823), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
994 | {"fmuld", 4, two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
995 | {"fmuld", 4, two(0xF000, 0x5423), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
996 | {"fmuld", 4, two(0xF000, 0x5423), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
997 | {"fmull", 4, two(0xF000, 0x4023), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
998 | {"fmull", 4, two(0xF000, 0x4023), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
999 | {"fmulp", 4, two(0xF000, 0x4C23), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1000 | {"fmuls", 4, two(0xF000, 0x4423), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1001 | {"fmuls", 4, two(0xF000, 0x4423), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1002 | {"fmulw", 4, two(0xF000, 0x5023), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1003 | {"fmulw", 4, two(0xF000, 0x5023), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1004 | {"fmulx", 4, two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1005 | {"fmulx", 4, two(0xF000, 0x4823), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1006 | ||
1007 | {"fsmulb", 4, two(0xF000, 0x5863), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1008 | {"fsmulb", 4, two(0xF000, 0x5863), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1009 | {"fsmuld", 4, two(0xF000, 0x0063), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1010 | {"fsmuld", 4, two(0xF000, 0x5463), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1011 | {"fsmuld", 4, two(0xF000, 0x5463), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1012 | {"fsmull", 4, two(0xF000, 0x4063), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1013 | {"fsmull", 4, two(0xF000, 0x4063), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1014 | {"fsmulp", 4, two(0xF000, 0x4C63), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1015 | {"fsmuls", 4, two(0xF000, 0x4463), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1016 | {"fsmuls", 4, two(0xF000, 0x4463), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1017 | {"fsmulw", 4, two(0xF000, 0x5063), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1018 | {"fsmulw", 4, two(0xF000, 0x5063), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1019 | {"fsmulx", 4, two(0xF000, 0x0063), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1020 | {"fsmulx", 4, two(0xF000, 0x4863), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1021 | ||
1022 | {"fdmulb", 4, two(0xF000, 0x5867), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1023 | {"fdmulb", 4, two(0xF000, 0x5867), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1024 | {"fdmuld", 4, two(0xF000, 0x0067), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1025 | {"fdmuld", 4, two(0xF000, 0x5467), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1026 | {"fdmuld", 4, two(0xF000, 0x5467), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1027 | {"fdmull", 4, two(0xF000, 0x4067), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1028 | {"fdmull", 4, two(0xF000, 0x4067), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1029 | {"fdmulp", 4, two(0xF000, 0x4C67), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1030 | {"fdmuls", 4, two(0xF000, 0x4467), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1031 | {"fdmuls", 4, two(0xF000, 0x4467), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1032 | {"fdmulw", 4, two(0xF000, 0x5067), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1033 | {"fdmulw", 4, two(0xF000, 0x5067), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1034 | {"fdmulx", 4, two(0xF000, 0x0067), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1035 | {"fdmulx", 4, two(0xF000, 0x4867), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1036 | ||
1037 | {"fnegb", 4, two(0xF000, 0x581A), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1038 | {"fnegb", 4, two(0xF000, 0x581A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1039 | {"fnegd", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1040 | {"fnegd", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1041 | {"fnegd", 4, two(0xF000, 0x541A), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1042 | {"fnegd", 4, two(0xF000, 0x541A), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1043 | {"fnegl", 4, two(0xF000, 0x401A), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1044 | {"fnegl", 4, two(0xF000, 0x401A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1045 | {"fnegp", 4, two(0xF000, 0x4C1A), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1046 | {"fnegs", 4, two(0xF000, 0x441A), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1047 | {"fnegs", 4, two(0xF000, 0x441A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1048 | {"fnegw", 4, two(0xF000, 0x501A), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1049 | {"fnegw", 4, two(0xF000, 0x501A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1050 | {"fnegx", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1051 | {"fnegx", 4, two(0xF000, 0x481A), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1052 | {"fnegx", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1053 | ||
1054 | {"fsnegb", 4, two(0xF000, 0x585A), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1055 | {"fsnegb", 4, two(0xF000, 0x585A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1056 | {"fsnegd", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1057 | {"fsnegd", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1058 | {"fsnegd", 4, two(0xF000, 0x545A), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1059 | {"fsnegd", 4, two(0xF000, 0x545A), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1060 | {"fsnegl", 4, two(0xF000, 0x405A), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1061 | {"fsnegl", 4, two(0xF000, 0x405A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1062 | {"fsnegp", 4, two(0xF000, 0x4C5A), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1063 | {"fsnegs", 4, two(0xF000, 0x445A), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1064 | {"fsnegs", 4, two(0xF000, 0x445A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1065 | {"fsnegw", 4, two(0xF000, 0x505A), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1066 | {"fsnegw", 4, two(0xF000, 0x505A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1067 | {"fsnegx", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1068 | {"fsnegx", 4, two(0xF000, 0x485A), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1069 | {"fsnegx", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1070 | ||
1071 | {"fdnegb", 4, two(0xF000, 0x585E), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1072 | {"fdnegb", 4, two(0xF000, 0x585E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1073 | {"fdnegd", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1074 | {"fdnegd", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1075 | {"fdnegd", 4, two(0xF000, 0x545E), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1076 | {"fdnegd", 4, two(0xF000, 0x545E), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1077 | {"fdnegl", 4, two(0xF000, 0x405E), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1078 | {"fdnegl", 4, two(0xF000, 0x405E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1079 | {"fdnegp", 4, two(0xF000, 0x4C5E), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1080 | {"fdnegs", 4, two(0xF000, 0x445E), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1081 | {"fdnegs", 4, two(0xF000, 0x445E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1082 | {"fdnegw", 4, two(0xF000, 0x505E), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1083 | {"fdnegw", 4, two(0xF000, 0x505E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1084 | {"fdnegx", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1085 | {"fdnegx", 4, two(0xF000, 0x485E), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1086 | {"fdnegx", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1087 | ||
be8c092b NC |
1088 | {"fremb", 4, two(0xF000, 0x5825), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, |
1089 | {"fremd", 4, two(0xF000, 0x5425), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1090 | {"freml", 4, two(0xF000, 0x4025), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1091 | {"fremp", 4, two(0xF000, 0x4C25), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1092 | {"frems", 4, two(0xF000, 0x4425), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1093 | {"fremw", 4, two(0xF000, 0x5025), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1094 | {"fremx", 4, two(0xF000, 0x0025), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1095 | {"fremx", 4, two(0xF000, 0x4825), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1096 | ||
1097 | {"frestore", 2, one(0xF140), one(0xF1C0), "Id<s", mfloat }, | |
1098 | {"frestore", 2, one(0xF140), one(0xF1C0), "Idys", cfloat }, | |
1099 | ||
1100 | {"fsave", 2, one(0xF100), one(0xF1C0), "Id>s", mfloat }, | |
1101 | {"fsave", 2, one(0xF100), one(0xF1C0), "Idzs", cfloat }, | |
1102 | ||
1103 | {"fscaleb", 4, two(0xF000, 0x5826), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1104 | {"fscaled", 4, two(0xF000, 0x5426), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1105 | {"fscalel", 4, two(0xF000, 0x4026), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1106 | {"fscalep", 4, two(0xF000, 0x4C26), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1107 | {"fscales", 4, two(0xF000, 0x4426), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1108 | {"fscalew", 4, two(0xF000, 0x5026), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1109 | {"fscalex", 4, two(0xF000, 0x0026), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1110 | {"fscalex", 4, two(0xF000, 0x4826), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
252b5132 RH |
1111 | |
1112 | /* $ is necessary to prevent the assembler from using PC-relative. | |
be8c092b | 1113 | If @ were used, "label: fseq label" could produce "ftrapeq", 2, |
252b5132 | 1114 | because "label" became "pc@label". */ |
be8c092b NC |
1115 | {"fseq", 4, two(0xF040, 0x0001), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, |
1116 | {"fsf", 4, two(0xF040, 0x0000), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1117 | {"fsge", 4, two(0xF040, 0x0013), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1118 | {"fsgl", 4, two(0xF040, 0x0016), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1119 | {"fsgle", 4, two(0xF040, 0x0017), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1120 | {"fsgt", 4, two(0xF040, 0x0012), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1121 | {"fsle", 4, two(0xF040, 0x0015), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1122 | {"fslt", 4, two(0xF040, 0x0014), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1123 | {"fsne", 4, two(0xF040, 0x000E), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1124 | {"fsnge", 4, two(0xF040, 0x001C), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1125 | {"fsngl", 4, two(0xF040, 0x0019), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1126 | {"fsngle", 4, two(0xF040, 0x0018), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1127 | {"fsngt", 4, two(0xF040, 0x001D), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1128 | {"fsnle", 4, two(0xF040, 0x001A), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1129 | {"fsnlt", 4, two(0xF040, 0x001B), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1130 | {"fsoge", 4, two(0xF040, 0x0003), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1131 | {"fsogl", 4, two(0xF040, 0x0006), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1132 | {"fsogt", 4, two(0xF040, 0x0002), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1133 | {"fsole", 4, two(0xF040, 0x0005), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1134 | {"fsolt", 4, two(0xF040, 0x0004), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1135 | {"fsor", 4, two(0xF040, 0x0007), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1136 | {"fsseq", 4, two(0xF040, 0x0011), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1137 | {"fssf", 4, two(0xF040, 0x0010), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1138 | {"fssne", 4, two(0xF040, 0x001E), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1139 | {"fsst", 4, two(0xF040, 0x001F), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1140 | {"fst", 4, two(0xF040, 0x000F), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1141 | {"fsueq", 4, two(0xF040, 0x0009), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1142 | {"fsuge", 4, two(0xF040, 0x000B), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1143 | {"fsugt", 4, two(0xF040, 0x000A), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1144 | {"fsule", 4, two(0xF040, 0x000D), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1145 | {"fsult", 4, two(0xF040, 0x000C), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1146 | {"fsun", 4, two(0xF040, 0x0008), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, | |
1147 | ||
1148 | {"fsgldivb", 4, two(0xF000, 0x5824), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1149 | {"fsgldivd", 4, two(0xF000, 0x5424), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1150 | {"fsgldivl", 4, two(0xF000, 0x4024), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1151 | {"fsgldivp", 4, two(0xF000, 0x4C24), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1152 | {"fsgldivs", 4, two(0xF000, 0x4424), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1153 | {"fsgldivw", 4, two(0xF000, 0x5024), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1154 | {"fsgldivx", 4, two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1155 | {"fsgldivx", 4, two(0xF000, 0x4824), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1156 | {"fsgldivx", 4, two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1157 | ||
1158 | {"fsglmulb", 4, two(0xF000, 0x5827), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1159 | {"fsglmuld", 4, two(0xF000, 0x5427), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1160 | {"fsglmull", 4, two(0xF000, 0x4027), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1161 | {"fsglmulp", 4, two(0xF000, 0x4C27), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1162 | {"fsglmuls", 4, two(0xF000, 0x4427), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1163 | {"fsglmulw", 4, two(0xF000, 0x5027), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1164 | {"fsglmulx", 4, two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1165 | {"fsglmulx", 4, two(0xF000, 0x4827), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1166 | {"fsglmulx", 4, two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1167 | ||
1168 | {"fsinb", 4, two(0xF000, 0x580E), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1169 | {"fsind", 4, two(0xF000, 0x540E), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1170 | {"fsinl", 4, two(0xF000, 0x400E), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1171 | {"fsinp", 4, two(0xF000, 0x4C0E), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1172 | {"fsins", 4, two(0xF000, 0x440E), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1173 | {"fsinw", 4, two(0xF000, 0x500E), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1174 | {"fsinx", 4, two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1175 | {"fsinx", 4, two(0xF000, 0x480E), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1176 | {"fsinx", 4, two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1177 | ||
1178 | {"fsincosb", 4, two(0xF000, 0x5830), two(0xF1C0, 0xFC78), "Ii;bF3F7", mfloat }, | |
1179 | {"fsincosd", 4, two(0xF000, 0x5430), two(0xF1C0, 0xFC78), "Ii;FF3F7", mfloat }, | |
1180 | {"fsincosl", 4, two(0xF000, 0x4030), two(0xF1C0, 0xFC78), "Ii;lF3F7", mfloat }, | |
1181 | {"fsincosp", 4, two(0xF000, 0x4C30), two(0xF1C0, 0xFC78), "Ii;pF3F7", mfloat }, | |
1182 | {"fsincoss", 4, two(0xF000, 0x4430), two(0xF1C0, 0xFC78), "Ii;fF3F7", mfloat }, | |
1183 | {"fsincosw", 4, two(0xF000, 0x5030), two(0xF1C0, 0xFC78), "Ii;wF3F7", mfloat }, | |
1184 | {"fsincosx", 4, two(0xF000, 0x0030), two(0xF1C0, 0xE078), "IiF8F3F7", mfloat }, | |
1185 | {"fsincosx", 4, two(0xF000, 0x4830), two(0xF1C0, 0xFC78), "Ii;xF3F7", mfloat }, | |
1186 | ||
1187 | {"fsinhb", 4, two(0xF000, 0x5802), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1188 | {"fsinhd", 4, two(0xF000, 0x5402), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1189 | {"fsinhl", 4, two(0xF000, 0x4002), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1190 | {"fsinhp", 4, two(0xF000, 0x4C02), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1191 | {"fsinhs", 4, two(0xF000, 0x4402), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1192 | {"fsinhw", 4, two(0xF000, 0x5002), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1193 | {"fsinhx", 4, two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1194 | {"fsinhx", 4, two(0xF000, 0x4802), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1195 | {"fsinhx", 4, two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1196 | ||
1197 | {"fsqrtb", 4, two(0xF000, 0x5804), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1198 | {"fsqrtb", 4, two(0xF000, 0x5804), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1199 | {"fsqrtd", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1200 | {"fsqrtd", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1201 | {"fsqrtd", 4, two(0xF000, 0x5404), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1202 | {"fsqrtd", 4, two(0xF000, 0x5404), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1203 | {"fsqrtl", 4, two(0xF000, 0x4004), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1204 | {"fsqrtl", 4, two(0xF000, 0x4004), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1205 | {"fsqrtp", 4, two(0xF000, 0x4C04), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1206 | {"fsqrts", 4, two(0xF000, 0x4404), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1207 | {"fsqrts", 4, two(0xF000, 0x4404), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1208 | {"fsqrtw", 4, two(0xF000, 0x5004), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1209 | {"fsqrtw", 4, two(0xF000, 0x5004), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1210 | {"fsqrtx", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1211 | {"fsqrtx", 4, two(0xF000, 0x4804), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1212 | {"fsqrtx", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1213 | ||
1214 | {"fssqrtb", 4, two(0xF000, 0x5841), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1215 | {"fssqrtb", 4, two(0xF000, 0x5841), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1216 | {"fssqrtd", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1217 | {"fssqrtd", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1218 | {"fssqrtd", 4, two(0xF000, 0x5441), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1219 | {"fssqrtd", 4, two(0xF000, 0x5441), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1220 | {"fssqrtl", 4, two(0xF000, 0x4041), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1221 | {"fssqrtl", 4, two(0xF000, 0x4041), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1222 | {"fssqrtp", 4, two(0xF000, 0x4C41), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1223 | {"fssqrts", 4, two(0xF000, 0x4441), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1224 | {"fssqrts", 4, two(0xF000, 0x4441), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1225 | {"fssqrtw", 4, two(0xF000, 0x5041), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1226 | {"fssqrtw", 4, two(0xF000, 0x5041), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1227 | {"fssqrtx", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1228 | {"fssqrtx", 4, two(0xF000, 0x4841), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1229 | {"fssqrtx", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1230 | ||
1231 | {"fdsqrtb", 4, two(0xF000, 0x5845), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, | |
1232 | {"fdsqrtb", 4, two(0xF000, 0x5845), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1233 | {"fdsqrtd", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1234 | {"fdsqrtd", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiFt", cfloat }, | |
1235 | {"fdsqrtd", 4, two(0xF000, 0x5445), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1b3a26b5 | 1236 | {"fdsqrtd", 4, two(0xF000, 0x5445), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, |
be8c092b NC |
1237 | {"fdsqrtl", 4, two(0xF000, 0x4045), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, |
1238 | {"fdsqrtl", 4, two(0xF000, 0x4045), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1239 | {"fdsqrtp", 4, two(0xF000, 0x4C45), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1240 | {"fdsqrts", 4, two(0xF000, 0x4445), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1241 | {"fdsqrts", 4, two(0xF000, 0x4445), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1242 | {"fdsqrtw", 4, two(0xF000, 0x5045), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1243 | {"fdsqrtw", 4, two(0xF000, 0x5045), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1244 | {"fdsqrtx", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1245 | {"fdsqrtx", 4, two(0xF000, 0x4845), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1246 | {"fdsqrtx", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1247 | ||
1248 | {"fsubb", 4, two(0xF000, 0x5828), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1249 | {"fsubb", 4, two(0xF000, 0x5828), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1250 | {"fsubd", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1251 | {"fsubd", 4, two(0xF000, 0x5428), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1252 | {"fsubd", 4, two(0xF000, 0x5428), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1253 | {"fsubl", 4, two(0xF000, 0x4028), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1254 | {"fsubl", 4, two(0xF000, 0x4028), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1255 | {"fsubp", 4, two(0xF000, 0x4C28), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1256 | {"fsubs", 4, two(0xF000, 0x4428), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1257 | {"fsubs", 4, two(0xF000, 0x4428), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1258 | {"fsubw", 4, two(0xF000, 0x5028), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1259 | {"fsubw", 4, two(0xF000, 0x5028), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1260 | {"fsubx", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1261 | {"fsubx", 4, two(0xF000, 0x4828), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1262 | {"fsubx", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1263 | ||
c2fe9327 | 1264 | {"fssubb", 4, two(0xF000, 0x5868), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
1265 | {"fssubb", 4, two(0xF000, 0x5868), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, |
1266 | {"fssubd", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, | |
1267 | {"fssubd", 4, two(0xF000, 0x5468), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, | |
1268 | {"fssubd", 4, two(0xF000, 0x5468), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
1269 | {"fssubl", 4, two(0xF000, 0x4068), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, | |
1270 | {"fssubl", 4, two(0xF000, 0x4068), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1271 | {"fssubp", 4, two(0xF000, 0x4C68), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
1272 | {"fssubs", 4, two(0xF000, 0x4468), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, | |
1273 | {"fssubs", 4, two(0xF000, 0x4468), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1274 | {"fssubw", 4, two(0xF000, 0x5068), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, | |
1275 | {"fssubw", 4, two(0xF000, 0x5068), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, | |
1276 | {"fssubx", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1277 | {"fssubx", 4, two(0xF000, 0x4868), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1278 | {"fssubx", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1279 | ||
c2fe9327 | 1280 | {"fdsubb", 4, two(0xF000, 0x586c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b | 1281 | {"fdsubb", 4, two(0xF000, 0x586c), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, |
c2fe9327 PB |
1282 | {"fdsubd", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, |
1283 | {"fdsubd", 4, two(0xF000, 0x546c), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, | |
be8c092b | 1284 | {"fdsubd", 4, two(0xF000, 0x546c), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, |
c2fe9327 | 1285 | {"fdsubl", 4, two(0xF000, 0x406c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
1286 | {"fdsubl", 4, two(0xF000, 0x406c), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, |
1287 | {"fdsubp", 4, two(0xF000, 0x4C6c), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, | |
c2fe9327 | 1288 | {"fdsubs", 4, two(0xF000, 0x446c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b | 1289 | {"fdsubs", 4, two(0xF000, 0x446c), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, |
c2fe9327 | 1290 | {"fdsubw", 4, two(0xF000, 0x506c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, |
be8c092b NC |
1291 | {"fdsubw", 4, two(0xF000, 0x506c), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, |
1292 | {"fdsubx", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, | |
1293 | {"fdsubx", 4, two(0xF000, 0x486c), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, | |
1294 | {"fdsubx", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiFt", m68040up }, | |
1295 | ||
1296 | {"ftanb", 4, two(0xF000, 0x580F), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1297 | {"ftand", 4, two(0xF000, 0x540F), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1298 | {"ftanl", 4, two(0xF000, 0x400F), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1299 | {"ftanp", 4, two(0xF000, 0x4C0F), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1300 | {"ftans", 4, two(0xF000, 0x440F), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1301 | {"ftanw", 4, two(0xF000, 0x500F), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1302 | {"ftanx", 4, two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1303 | {"ftanx", 4, two(0xF000, 0x480F), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1304 | {"ftanx", 4, two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1305 | ||
1306 | {"ftanhb", 4, two(0xF000, 0x5809), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1307 | {"ftanhd", 4, two(0xF000, 0x5409), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1308 | {"ftanhl", 4, two(0xF000, 0x4009), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1309 | {"ftanhp", 4, two(0xF000, 0x4C09), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1310 | {"ftanhs", 4, two(0xF000, 0x4409), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1311 | {"ftanhw", 4, two(0xF000, 0x5009), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1312 | {"ftanhx", 4, two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1313 | {"ftanhx", 4, two(0xF000, 0x4809), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1314 | {"ftanhx", 4, two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1315 | ||
1316 | {"ftentoxb", 4, two(0xF000, 0x5812), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1317 | {"ftentoxd", 4, two(0xF000, 0x5412), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1318 | {"ftentoxl", 4, two(0xF000, 0x4012), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1319 | {"ftentoxp", 4, two(0xF000, 0x4C12), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1320 | {"ftentoxs", 4, two(0xF000, 0x4412), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1321 | {"ftentoxw", 4, two(0xF000, 0x5012), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1322 | {"ftentoxx", 4, two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1323 | {"ftentoxx", 4, two(0xF000, 0x4812), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1324 | {"ftentoxx", 4, two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1325 | ||
1326 | {"ftrapeq", 4, two(0xF07C, 0x0001), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1327 | {"ftrapf", 4, two(0xF07C, 0x0000), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1328 | {"ftrapge", 4, two(0xF07C, 0x0013), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1329 | {"ftrapgl", 4, two(0xF07C, 0x0016), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1330 | {"ftrapgle", 4, two(0xF07C, 0x0017), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1331 | {"ftrapgt", 4, two(0xF07C, 0x0012), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1332 | {"ftraple", 4, two(0xF07C, 0x0015), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1333 | {"ftraplt", 4, two(0xF07C, 0x0014), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1334 | {"ftrapne", 4, two(0xF07C, 0x000E), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1335 | {"ftrapnge", 4, two(0xF07C, 0x001C), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1336 | {"ftrapngl", 4, two(0xF07C, 0x0019), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1337 | {"ftrapngle", 4,two(0xF07C, 0x0018), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1338 | {"ftrapngt", 4, two(0xF07C, 0x001D), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1339 | {"ftrapnle", 4, two(0xF07C, 0x001A), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1340 | {"ftrapnlt", 4, two(0xF07C, 0x001B), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1341 | {"ftrapoge", 4, two(0xF07C, 0x0003), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1342 | {"ftrapogl", 4, two(0xF07C, 0x0006), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1343 | {"ftrapogt", 4, two(0xF07C, 0x0002), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1344 | {"ftrapole", 4, two(0xF07C, 0x0005), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1345 | {"ftrapolt", 4, two(0xF07C, 0x0004), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1346 | {"ftrapor", 4, two(0xF07C, 0x0007), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1347 | {"ftrapseq", 4, two(0xF07C, 0x0011), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1348 | {"ftrapsf", 4, two(0xF07C, 0x0010), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1349 | {"ftrapsne", 4, two(0xF07C, 0x001E), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1350 | {"ftrapst", 4, two(0xF07C, 0x001F), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1351 | {"ftrapt", 4, two(0xF07C, 0x000F), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1352 | {"ftrapueq", 4, two(0xF07C, 0x0009), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1353 | {"ftrapuge", 4, two(0xF07C, 0x000B), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1354 | {"ftrapugt", 4, two(0xF07C, 0x000A), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1355 | {"ftrapule", 4, two(0xF07C, 0x000D), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1356 | {"ftrapult", 4, two(0xF07C, 0x000C), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1357 | {"ftrapun", 4, two(0xF07C, 0x0008), two(0xF1FF, 0xFFFF), "Ii", mfloat }, | |
1358 | ||
1359 | {"ftrapeqw", 4, two(0xF07A, 0x0001), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1360 | {"ftrapfw", 4, two(0xF07A, 0x0000), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1361 | {"ftrapgew", 4, two(0xF07A, 0x0013), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1362 | {"ftrapglw", 4, two(0xF07A, 0x0016), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1363 | {"ftrapglew", 4,two(0xF07A, 0x0017), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1364 | {"ftrapgtw", 4, two(0xF07A, 0x0012), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1365 | {"ftraplew", 4, two(0xF07A, 0x0015), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1366 | {"ftrapltw", 4, two(0xF07A, 0x0014), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1367 | {"ftrapnew", 4, two(0xF07A, 0x000E), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1368 | {"ftrapngew", 4,two(0xF07A, 0x001C), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1369 | {"ftrapnglw", 4,two(0xF07A, 0x0019), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1370 | {"ftrapnglew", 4,two(0xF07A, 0x0018), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1371 | {"ftrapngtw", 4,two(0xF07A, 0x001D), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1372 | {"ftrapnlew", 4,two(0xF07A, 0x001A), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1373 | {"ftrapnltw", 4,two(0xF07A, 0x001B), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1374 | {"ftrapogew", 4,two(0xF07A, 0x0003), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1375 | {"ftrapoglw", 4,two(0xF07A, 0x0006), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1376 | {"ftrapogtw", 4,two(0xF07A, 0x0002), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1377 | {"ftrapolew", 4,two(0xF07A, 0x0005), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1378 | {"ftrapoltw", 4,two(0xF07A, 0x0004), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1379 | {"ftraporw", 4, two(0xF07A, 0x0007), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1380 | {"ftrapseqw", 4,two(0xF07A, 0x0011), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1381 | {"ftrapsfw", 4, two(0xF07A, 0x0010), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1382 | {"ftrapsnew", 4,two(0xF07A, 0x001E), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1383 | {"ftrapstw", 4, two(0xF07A, 0x001F), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1384 | {"ftraptw", 4, two(0xF07A, 0x000F), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1385 | {"ftrapueqw", 4,two(0xF07A, 0x0009), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1386 | {"ftrapugew", 4,two(0xF07A, 0x000B), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1387 | {"ftrapugtw", 4,two(0xF07A, 0x000A), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1388 | {"ftrapulew", 4,two(0xF07A, 0x000D), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1389 | {"ftrapultw", 4,two(0xF07A, 0x000C), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1390 | {"ftrapunw", 4, two(0xF07A, 0x0008), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, | |
1391 | ||
1392 | {"ftrapeql", 4, two(0xF07B, 0x0001), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1393 | {"ftrapfl", 4, two(0xF07B, 0x0000), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1394 | {"ftrapgel", 4, two(0xF07B, 0x0013), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1395 | {"ftrapgll", 4, two(0xF07B, 0x0016), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1396 | {"ftrapglel", 4,two(0xF07B, 0x0017), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1397 | {"ftrapgtl", 4, two(0xF07B, 0x0012), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1398 | {"ftraplel", 4, two(0xF07B, 0x0015), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1399 | {"ftrapltl", 4, two(0xF07B, 0x0014), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1400 | {"ftrapnel", 4, two(0xF07B, 0x000E), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1401 | {"ftrapngel", 4,two(0xF07B, 0x001C), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1402 | {"ftrapngll", 4,two(0xF07B, 0x0019), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1403 | {"ftrapnglel", 4,two(0xF07B, 0x0018), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1404 | {"ftrapngtl", 4,two(0xF07B, 0x001D), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1405 | {"ftrapnlel", 4,two(0xF07B, 0x001A), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1406 | {"ftrapnltl", 4,two(0xF07B, 0x001B), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1407 | {"ftrapogel", 4,two(0xF07B, 0x0003), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1408 | {"ftrapogll", 4,two(0xF07B, 0x0006), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1409 | {"ftrapogtl", 4,two(0xF07B, 0x0002), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1410 | {"ftrapolel", 4,two(0xF07B, 0x0005), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1411 | {"ftrapoltl", 4,two(0xF07B, 0x0004), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1412 | {"ftraporl", 4, two(0xF07B, 0x0007), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1413 | {"ftrapseql", 4,two(0xF07B, 0x0011), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1414 | {"ftrapsfl", 4, two(0xF07B, 0x0010), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1415 | {"ftrapsnel", 4,two(0xF07B, 0x001E), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1416 | {"ftrapstl", 4, two(0xF07B, 0x001F), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1417 | {"ftraptl", 4, two(0xF07B, 0x000F), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1418 | {"ftrapueql", 4,two(0xF07B, 0x0009), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1419 | {"ftrapugel", 4,two(0xF07B, 0x000B), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1420 | {"ftrapugtl", 4,two(0xF07B, 0x000A), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1421 | {"ftrapulel", 4,two(0xF07B, 0x000D), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1422 | {"ftrapultl", 4,two(0xF07B, 0x000C), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1423 | {"ftrapunl", 4, two(0xF07B, 0x0008), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, | |
1424 | ||
1425 | {"ftstb", 4, two(0xF000, 0x583A), two(0xF1C0, 0xFC7F), "Ii;b", mfloat }, | |
1426 | {"ftstb", 4, two(0xF000, 0x583A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, | |
1427 | {"ftstd", 4, two(0xF000, 0x003A), two(0xF1C0, 0xE07F), "IiF8", cfloat }, | |
1428 | {"ftstd", 4, two(0xF000, 0x543A), two(0xF1C0, 0xFC7F), "Ii;F", mfloat }, | |
1429 | {"ftstd", 4, two(0xF000, 0x543A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, | |
1430 | {"ftstl", 4, two(0xF000, 0x403A), two(0xF1C0, 0xFC7F), "Ii;l", mfloat }, | |
1431 | {"ftstl", 4, two(0xF000, 0x403A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, | |
1432 | {"ftstp", 4, two(0xF000, 0x4C3A), two(0xF1C0, 0xFC7F), "Ii;p", mfloat }, | |
1433 | {"ftsts", 4, two(0xF000, 0x443A), two(0xF1C0, 0xFC7F), "Ii;f", mfloat }, | |
1434 | {"ftsts", 4, two(0xF000, 0x443A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, | |
1435 | {"ftstw", 4, two(0xF000, 0x503A), two(0xF1C0, 0xFC7F), "Ii;w", mfloat }, | |
1436 | {"ftstw", 4, two(0xF000, 0x503A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, | |
1437 | {"ftstx", 4, two(0xF000, 0x003A), two(0xF1C0, 0xE07F), "IiF8", mfloat }, | |
1438 | {"ftstx", 4, two(0xF000, 0x483A), two(0xF1C0, 0xFC7F), "Ii;x", mfloat }, | |
1439 | ||
1440 | {"ftwotoxb", 4, two(0xF000, 0x5811), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, | |
1441 | {"ftwotoxd", 4, two(0xF000, 0x5411), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, | |
1442 | {"ftwotoxl", 4, two(0xF000, 0x4011), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, | |
1443 | {"ftwotoxp", 4, two(0xF000, 0x4C11), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, | |
1444 | {"ftwotoxs", 4, two(0xF000, 0x4411), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, | |
1445 | {"ftwotoxw", 4, two(0xF000, 0x5011), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, | |
1446 | {"ftwotoxx", 4, two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, | |
1447 | {"ftwotoxx", 4, two(0xF000, 0x4811), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, | |
1448 | {"ftwotoxx", 4, two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiFt", mfloat }, | |
1449 | ||
1450 | {"halt", 2, one(0045310), one(0177777), "", m68060 | mcfisa_a }, | |
1451 | ||
1452 | {"illegal", 2, one(0045374), one(0177777), "", m68000up | mcfisa_a }, | |
9a2e615a | 1453 | {"intouch", 2, one(0xf428), one(0xfff8), "As", mcfisa_b | mcfisa_c }, |
be8c092b NC |
1454 | |
1455 | {"jmp", 2, one(0047300), one(0177700), "!s", m68000up | mcfisa_a }, | |
1456 | ||
9a2e615a | 1457 | {"jra", 2, one(0060000), one(0177400), "Bb", m68000up | mcfisa_a }, |
be8c092b NC |
1458 | {"jra", 2, one(0047300), one(0177700), "!s", m68000up | mcfisa_a }, |
1459 | ||
1460 | {"jsr", 2, one(0047200), one(0177700), "!s", m68000up | mcfisa_a }, | |
1461 | ||
9a2e615a | 1462 | {"jbsr", 2, one(0060400), one(0177400), "Bs", m68000up | mcfisa_a }, |
be8c092b NC |
1463 | {"jbsr", 2, one(0047200), one(0177700), "!s", m68000up | mcfisa_a }, |
1464 | ||
1465 | {"lea", 2, one(0040700), one(0170700), "!sAd", m68000up | mcfisa_a }, | |
1466 | ||
3bdcfdf4 | 1467 | {"lpstop", 6, two(0174000,0000700),two(0177777,0177777),"#w", cpu32 | fido_a | m68060 }, |
be8c092b NC |
1468 | |
1469 | {"linkw", 4, one(0047120), one(0177770), "As#w", m68000up | mcfisa_a }, | |
3bdcfdf4 | 1470 | {"linkl", 6, one(0044010), one(0177770), "As#l", m68020up | cpu32 | fido_a }, |
be8c092b | 1471 | {"link", 4, one(0047120), one(0177770), "As#W", m68000up | mcfisa_a }, |
3bdcfdf4 | 1472 | {"link", 6, one(0044010), one(0177770), "As#l", m68020up | cpu32 | fido_a }, |
be8c092b NC |
1473 | |
1474 | {"lslb", 2, one(0160410), one(0170770), "QdDs", m68000up }, | |
1475 | {"lslb", 2, one(0160450), one(0170770), "DdDs", m68000up }, | |
1476 | {"lslw", 2, one(0160510), one(0170770), "QdDs", m68000up }, | |
1477 | {"lslw", 2, one(0160550), one(0170770), "DdDs", m68000up }, | |
1478 | {"lslw", 2, one(0161700), one(0177700), "~s", m68000up }, | |
1479 | {"lsll", 2, one(0160610), one(0170770), "QdDs", m68000up | mcfisa_a }, | |
1480 | {"lsll", 2, one(0160650), one(0170770), "DdDs", m68000up | mcfisa_a }, | |
1481 | ||
1482 | {"lsrb", 2, one(0160010), one(0170770), "QdDs", m68000up }, | |
1483 | {"lsrb", 2, one(0160050), one(0170770), "DdDs", m68000up }, | |
1484 | {"lsrw", 2, one(0160110), one(0170770), "QdDs", m68000up }, | |
1485 | {"lsrw", 2, one(0160150), one(0170770), "DdDs", m68000up }, | |
1486 | {"lsrw", 2, one(0161300), one(0177700), "~s", m68000up }, | |
1487 | {"lsrl", 2, one(0160210), one(0170770), "QdDs", m68000up | mcfisa_a }, | |
1488 | {"lsrl", 2, one(0160250), one(0170770), "DdDs", m68000up | mcfisa_a }, | |
1489 | ||
1490 | {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0910), "uNuoiI4/Rn", mcfmac }, | |
1491 | {"macw", 4, two(0xa080, 0x0200), two(0xf180, 0x0910), "uNuoMh4/Rn", mcfmac }, | |
1492 | {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0f10), "uNuo4/Rn", mcfmac }, | |
1493 | {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0900), "uMumiI", mcfmac }, | |
1494 | {"macw", 4, two(0xa000, 0x0200), two(0xf1b0, 0x0900), "uMumMh", mcfmac }, | |
1495 | {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0f00), "uMum", mcfmac }, | |
1496 | ||
1497 | {"macw", 4, two(0xa000, 0x0000), two(0xf100, 0x0900), "uNuoiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ | |
1498 | {"macw", 4, two(0xa000, 0x0200), two(0xf100, 0x0900), "uNuoMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ | |
1499 | {"macw", 4, two(0xa000, 0x0000), two(0xf100, 0x0f00), "uNuo4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ | |
1500 | {"macw", 4, two(0xa000, 0x0000), two(0xf130, 0x0900), "uMumiIeH", mcfemac },/* Ry,Rx,SF,accX. */ | |
1501 | {"macw", 4, two(0xa000, 0x0200), two(0xf130, 0x0900), "uMumMheH", mcfemac },/* Ry,Rx,+1/-1,accX. */ | |
1502 | {"macw", 4, two(0xa000, 0x0000), two(0xf130, 0x0f00), "uMumeH", mcfemac }, /* Ry,Rx,accX. */ | |
1503 | ||
1504 | {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0910), "RNRoiI4/Rn", mcfmac }, | |
1505 | {"macl", 4, two(0xa080, 0x0a00), two(0xf180, 0x0910), "RNRoMh4/Rn", mcfmac }, | |
1506 | {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0f10), "RNRo4/Rn", mcfmac }, | |
1507 | {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0b00), "RMRmiI", mcfmac }, | |
1508 | {"macl", 4, two(0xa000, 0x0a00), two(0xf1b0, 0x0b00), "RMRmMh", mcfmac }, | |
6a327e17 | 1509 | {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0900), "RMRm", mcfmac }, |
be8c092b NC |
1510 | |
1511 | {"macl", 4, two(0xa000, 0x0800), two(0xf100, 0x0900), "R3R1iI4/RneG", mcfemac }, | |
1512 | {"macl", 4, two(0xa000, 0x0a00), two(0xf100, 0x0900), "R3R1Mh4/RneG", mcfemac }, | |
1513 | {"macl", 4, two(0xa000, 0x0800), two(0xf100, 0x0f00), "R3R14/RneG", mcfemac }, | |
1514 | {"macl", 4, two(0xa000, 0x0800), two(0xf130, 0x0900), "RMRmiIeH", mcfemac }, | |
1515 | {"macl", 4, two(0xa000, 0x0a00), two(0xf130, 0x0900), "RMRmMheH", mcfemac }, | |
1516 | {"macl", 4, two(0xa000, 0x0800), two(0xf130, 0x0f00), "RMRmeH", mcfemac }, | |
3e602632 NC |
1517 | |
1518 | /* NOTE: The mcf5200 family programmer's reference manual does not | |
252b5132 RH |
1519 | indicate the byte form of the movea instruction is invalid (as it |
1520 | is on 68000 family cpus). However, experiments on the 5202 yeild | |
1521 | unexpected results. The value is copied, but it is not sign extended | |
3e602632 | 1522 | (as is done with movea.w) and the top three bytes in the address |
252b5132 RH |
1523 | register are not disturbed. I don't know if this is the intended |
1524 | behavior --- it could be a hole in instruction decoding (Motorola | |
1525 | decided not to trap all invalid instructions for performance reasons) | |
3e602632 | 1526 | --- but I suspect that it is not. |
252b5132 | 1527 | |
3e602632 NC |
1528 | I reported this to Motorola ISD Technical Communications Support, |
1529 | which replied that other coldfire assemblers reject movea.b. For | |
1530 | this reason I've decided to not allow moveab. | |
252b5132 | 1531 | |
be8c092b NC |
1532 | jtc@cygnus.com - 97/01/24. */ |
1533 | ||
1534 | {"moveal", 2, one(0020100), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
1535 | {"moveaw", 2, one(0030100), one(0170700), "*wAd", m68000up | mcfisa_a }, | |
1536 | ||
1537 | {"movclrl", 2, one(0xA1C0), one(0xf9f0), "eFRs", mcfemac }, | |
1538 | ||
1539 | {"movec", 4, one(0047173), one(0177777), "R1Jj", m68010up | mcfisa_a }, | |
1540 | {"movec", 4, one(0047173), one(0177777), "R1#j", m68010up | mcfisa_a }, | |
1541 | {"movec", 4, one(0047172), one(0177777), "JjR1", m68010up }, | |
1542 | {"movec", 4, one(0047172), one(0177777), "#jR1", m68010up }, | |
1543 | ||
1544 | {"movemw", 4, one(0044200), one(0177700), "Lw&s", m68000up }, | |
1545 | {"movemw", 4, one(0044240), one(0177770), "lw-s", m68000up }, | |
1546 | {"movemw", 4, one(0044200), one(0177700), "#w>s", m68000up }, | |
1547 | {"movemw", 4, one(0046200), one(0177700), "<sLw", m68000up }, | |
1548 | {"movemw", 4, one(0046200), one(0177700), "<s#w", m68000up }, | |
1549 | {"moveml", 4, one(0044300), one(0177700), "Lw&s", m68000up }, | |
1550 | {"moveml", 4, one(0044340), one(0177770), "lw-s", m68000up }, | |
1551 | {"moveml", 4, one(0044300), one(0177700), "#w>s", m68000up }, | |
1552 | {"moveml", 4, one(0046300), one(0177700), "<sLw", m68000up }, | |
1553 | {"moveml", 4, one(0046300), one(0177700), "<s#w", m68000up }, | |
c3732716 JB |
1554 | {"moveml", 4, one(0044300), one(0177700), "Lwys", mcfisa_a }, |
1555 | {"moveml", 4, one(0044300), one(0177700), "#wys", mcfisa_a }, | |
1556 | {"moveml", 4, one(0046300), one(0177700), "ysLw", mcfisa_a }, | |
1557 | {"moveml", 4, one(0046300), one(0177700), "ys#w", mcfisa_a }, | |
be8c092b NC |
1558 | |
1559 | {"movepw", 2, one(0000410), one(0170770), "dsDd", m68000up }, | |
1560 | {"movepw", 2, one(0000610), one(0170770), "Ddds", m68000up }, | |
1561 | {"movepl", 2, one(0000510), one(0170770), "dsDd", m68000up }, | |
1562 | {"movepl", 2, one(0000710), one(0170770), "Ddds", m68000up }, | |
1563 | ||
1564 | {"moveq", 2, one(0070000), one(0170400), "MsDd", m68000up | mcfisa_a }, | |
1565 | {"moveq", 2, one(0070000), one(0170400), "#BDd", m68000up | mcfisa_a }, | |
252b5132 RH |
1566 | |
1567 | /* The move opcode can generate the movea and moveq instructions. */ | |
be8c092b NC |
1568 | {"moveb", 2, one(0010000), one(0170000), ";b$d", m68000up }, |
1569 | {"moveb", 2, one(0010000), one(0170070), "Ds$d", mcfisa_a }, | |
1570 | {"moveb", 2, one(0010020), one(0170070), "as$d", mcfisa_a }, | |
1571 | {"moveb", 2, one(0010030), one(0170070), "+s$d", mcfisa_a }, | |
1572 | {"moveb", 2, one(0010040), one(0170070), "-s$d", mcfisa_a }, | |
1573 | {"moveb", 2, one(0010000), one(0170000), "nsqd", mcfisa_a }, | |
1574 | {"moveb", 2, one(0010000), one(0170700), "obDd", mcfisa_a }, | |
1575 | {"moveb", 2, one(0010200), one(0170700), "obad", mcfisa_a }, | |
1576 | {"moveb", 2, one(0010300), one(0170700), "ob+d", mcfisa_a }, | |
1577 | {"moveb", 2, one(0010400), one(0170700), "ob-d", mcfisa_a }, | |
83c3256e | 1578 | {"moveb", 2, one(0010074), one(0170077), "#bpd", mcfisa_b | mcfisa_c }, |
be8c092b NC |
1579 | |
1580 | {"movew", 2, one(0030000), one(0170000), "*w%d", m68000up }, | |
1581 | {"movew", 2, one(0030000), one(0170000), "ms%d", mcfisa_a }, | |
1582 | {"movew", 2, one(0030000), one(0170000), "nspd", mcfisa_a }, | |
1583 | {"movew", 2, one(0030000), one(0170000), "owmd", mcfisa_a }, | |
83c3256e | 1584 | {"movew", 2, one(0030074), one(0170077), "#wpd", mcfisa_b | mcfisa_c }, |
be8c092b NC |
1585 | {"movew", 2, one(0040300), one(0177700), "Ss$s", m68000up }, |
1586 | {"movew", 2, one(0040300), one(0177770), "SsDs", mcfisa_a }, | |
1587 | {"movew", 2, one(0041300), one(0177700), "Cs$s", m68010up }, | |
1588 | {"movew", 2, one(0041300), one(0177770), "CsDs", mcfisa_a }, | |
1589 | {"movew", 2, one(0042300), one(0177700), ";wCd", m68000up }, | |
25b07cd9 | 1590 | {"movew", 2, one(0042300), one(0177770), "DsCd", mcfisa_a }, |
be8c092b NC |
1591 | {"movew", 4, one(0042374), one(0177777), "#wCd", mcfisa_a }, |
1592 | {"movew", 2, one(0043300), one(0177700), ";wSd", m68000up }, | |
25b07cd9 | 1593 | {"movew", 2, one(0043300), one(0177770), "DsSd", mcfisa_a }, |
be8c092b NC |
1594 | {"movew", 4, one(0043374), one(0177777), "#wSd", mcfisa_a }, |
1595 | ||
1596 | {"movel", 2, one(0070000), one(0170400), "MsDd", m68000up | mcfisa_a }, | |
1597 | {"movel", 2, one(0020000), one(0170000), "*l%d", m68000up }, | |
1598 | {"movel", 2, one(0020000), one(0170000), "ms%d", mcfisa_a }, | |
1599 | {"movel", 2, one(0020000), one(0170000), "nspd", mcfisa_a }, | |
1600 | {"movel", 2, one(0020000), one(0170000), "olmd", mcfisa_a }, | |
be8c092b NC |
1601 | {"movel", 2, one(0047140), one(0177770), "AsUd", m68000up | mcfusp }, |
1602 | {"movel", 2, one(0047150), one(0177770), "UdAs", m68000up | mcfusp }, | |
1603 | {"movel", 2, one(0120600), one(0177760), "EsRs", mcfmac }, | |
1604 | {"movel", 2, one(0120400), one(0177760), "RsEs", mcfmac }, | |
1605 | {"movel", 6, one(0120474), one(0177777), "#lEs", mcfmac }, | |
1606 | {"movel", 2, one(0124600), one(0177760), "GsRs", mcfmac }, | |
1607 | {"movel", 2, one(0124400), one(0177760), "RsGs", mcfmac }, | |
1608 | {"movel", 6, one(0124474), one(0177777), "#lGs", mcfmac }, | |
1609 | {"movel", 2, one(0126600), one(0177760), "HsRs", mcfmac }, | |
1610 | {"movel", 2, one(0126400), one(0177760), "RsHs", mcfmac }, | |
1611 | {"movel", 6, one(0126474), one(0177777), "#lHs", mcfmac }, | |
1612 | {"movel", 2, one(0124700), one(0177777), "GsCs", mcfmac }, | |
1613 | ||
1614 | {"movel", 2, one(0xa180), one(0xf9f0), "eFRs", mcfemac }, /* ACCx,Rx. */ | |
1615 | {"movel", 2, one(0xab80), one(0xfbf0), "g]Rs", mcfemac }, /* ACCEXTx,Rx. */ | |
1616 | {"movel", 2, one(0xa980), one(0xfff0), "G-Rs", mcfemac }, /* macsr,Rx. */ | |
1617 | {"movel", 2, one(0xad80), one(0xfff0), "H-Rs", mcfemac }, /* mask,Rx. */ | |
1618 | {"movel", 2, one(0xa110), one(0xf9fc), "efeF", mcfemac }, /* ACCy,ACCx. */ | |
1619 | {"movel", 2, one(0xa9c0), one(0xffff), "G-C-", mcfemac }, /* macsr,ccr. */ | |
1620 | {"movel", 2, one(0xa100), one(0xf9f0), "RseF", mcfemac }, /* Rx,ACCx. */ | |
1621 | {"movel", 6, one(0xa13c), one(0xf9ff), "#leF", mcfemac }, /* #,ACCx. */ | |
1622 | {"movel", 2, one(0xab00), one(0xfbc0), "Rsg]", mcfemac }, /* Rx,ACCEXTx. */ | |
1623 | {"movel", 6, one(0xab3c), one(0xfbff), "#lg]", mcfemac }, /* #,ACCEXTx. */ | |
1624 | {"movel", 2, one(0xa900), one(0xffc0), "RsG-", mcfemac }, /* Rx,macsr. */ | |
1625 | {"movel", 6, one(0xa93c), one(0xffff), "#lG-", mcfemac }, /* #,macsr. */ | |
1626 | {"movel", 2, one(0xad00), one(0xffc0), "RsH-", mcfemac }, /* Rx,mask. */ | |
1627 | {"movel", 6, one(0xad3c), one(0xffff), "#lH-", mcfemac }, /* #,mask. */ | |
1628 | ||
1629 | {"move", 2, one(0030000), one(0170000), "*w%d", m68000up }, | |
1630 | {"move", 2, one(0030000), one(0170000), "ms%d", mcfisa_a }, | |
1631 | {"move", 2, one(0030000), one(0170000), "nspd", mcfisa_a }, | |
1632 | {"move", 2, one(0030000), one(0170000), "owmd", mcfisa_a }, | |
83c3256e | 1633 | {"move", 2, one(0030074), one(0170077), "#wpd", mcfisa_b | mcfisa_c }, |
be8c092b NC |
1634 | {"move", 2, one(0040300), one(0177700), "Ss$s", m68000up }, |
1635 | {"move", 2, one(0040300), one(0177770), "SsDs", mcfisa_a }, | |
1636 | {"move", 2, one(0041300), one(0177700), "Cs$s", m68010up }, | |
1637 | {"move", 2, one(0041300), one(0177770), "CsDs", mcfisa_a }, | |
1638 | {"move", 2, one(0042300), one(0177700), ";wCd", m68000up }, | |
1639 | {"move", 2, one(0042300), one(0177700), "DsCd", mcfisa_a }, | |
1640 | {"move", 4, one(0042374), one(0177777), "#wCd", mcfisa_a }, | |
1641 | {"move", 2, one(0043300), one(0177700), ";wSd", m68000up }, | |
1642 | {"move", 2, one(0043300), one(0177700), "DsSd", mcfisa_a }, | |
1643 | {"move", 4, one(0043374), one(0177777), "#wSd", mcfisa_a }, | |
1644 | ||
1645 | {"move", 2, one(0047140), one(0177770), "AsUd", m68000up }, | |
1646 | {"move", 2, one(0047150), one(0177770), "UdAs", m68000up }, | |
1647 | ||
9a2e615a NS |
1648 | {"mov3ql", 2, one(0120500), one(0170700), "xd%s", mcfisa_b | mcfisa_c }, |
1649 | {"mvsb", 2, one(0070400), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, | |
1650 | {"mvsw", 2, one(0070500), one(0170700), "*wDd", mcfisa_b | mcfisa_c }, | |
1651 | {"mvzb", 2, one(0070600), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, | |
1652 | {"mvzw", 2, one(0070700), one(0170700), "*wDd", mcfisa_b | mcfisa_c }, | |
be8c092b NC |
1653 | |
1654 | {"movesb", 4, two(0007000, 0), two(0177700, 07777), "~sR1", m68010up }, | |
1655 | {"movesb", 4, two(0007000, 04000), two(0177700, 07777), "R1~s", m68010up }, | |
1656 | {"movesw", 4, two(0007100, 0), two(0177700, 07777), "~sR1", m68010up }, | |
1657 | {"movesw", 4, two(0007100, 04000), two(0177700, 07777), "R1~s", m68010up }, | |
1658 | {"movesl", 4, two(0007200, 0), two(0177700, 07777), "~sR1", m68010up }, | |
1659 | {"movesl", 4, two(0007200, 04000), two(0177700, 07777), "R1~s", m68010up }, | |
1660 | ||
1661 | {"move16", 4, two(0xf620, 0x8000), two(0xfff8, 0x8fff), "+s+1", m68040up }, | |
1662 | {"move16", 2, one(0xf600), one(0xfff8), "+s_L", m68040up }, | |
1663 | {"move16", 2, one(0xf608), one(0xfff8), "_L+s", m68040up }, | |
1664 | {"move16", 2, one(0xf610), one(0xfff8), "as_L", m68040up }, | |
1665 | {"move16", 2, one(0xf618), one(0xfff8), "_Las", m68040up }, | |
1666 | ||
1667 | {"msacw", 4, two(0xa080, 0x0100), two(0xf180, 0x0910), "uNuoiI4/Rn", mcfmac }, | |
1668 | {"msacw", 4, two(0xa080, 0x0300), two(0xf180, 0x0910), "uNuoMh4/Rn", mcfmac }, | |
1669 | {"msacw", 4, two(0xa080, 0x0100), two(0xf180, 0x0f10), "uNuo4/Rn", mcfmac }, | |
1670 | {"msacw", 4, two(0xa000, 0x0100), two(0xf1b0, 0x0900), "uMumiI", mcfmac }, | |
1671 | {"msacw", 4, two(0xa000, 0x0300), two(0xf1b0, 0x0900), "uMumMh", mcfmac }, | |
1672 | {"msacw", 4, two(0xa000, 0x0100), two(0xf1b0, 0x0f00), "uMum", mcfmac }, | |
1673 | ||
57d85092 NC |
1674 | {"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0900), "uNuoiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ |
1675 | {"msacw", 4, two(0xa000, 0x0300), two(0xf100, 0x0900), "uNuoMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ | |
1676 | {"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0f00), "uNuo4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ | |
be8c092b NC |
1677 | {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0900), "uMumiIeH", mcfemac },/* Ry,Rx,SF,accX. */ |
1678 | {"msacw", 4, two(0xa000, 0x0300), two(0xf130, 0x0900), "uMumMheH", mcfemac },/* Ry,Rx,+1/-1,accX. */ | |
1679 | {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0f00), "uMumeH", mcfemac }, /* Ry,Rx,accX. */ | |
1680 | ||
1681 | {"msacl", 4, two(0xa080, 0x0900), two(0xf180, 0x0910), "RNRoiI4/Rn", mcfmac }, | |
1682 | {"msacl", 4, two(0xa080, 0x0b00), two(0xf180, 0x0910), "RNRoMh4/Rn", mcfmac }, | |
1683 | {"msacl", 4, two(0xa080, 0x0900), two(0xf180, 0x0f10), "RNRo4/Rn", mcfmac }, | |
1684 | {"msacl", 4, two(0xa000, 0x0900), two(0xf1b0, 0x0b00), "RMRmiI", mcfmac }, | |
1685 | {"msacl", 4, two(0xa000, 0x0b00), two(0xf1b0, 0x0b00), "RMRmMh", mcfmac }, | |
6a327e17 | 1686 | {"msacl", 4, two(0xa000, 0x0900), two(0xf1b0, 0x0900), "RMRm", mcfmac }, |
be8c092b NC |
1687 | |
1688 | {"msacl", 4, two(0xa000, 0x0900), two(0xf100, 0x0900), "R3R1iI4/RneG", mcfemac }, | |
1689 | {"msacl", 4, two(0xa000, 0x0b00), two(0xf100, 0x0900), "R3R1Mh4/RneG", mcfemac }, | |
1690 | {"msacl", 4, two(0xa000, 0x0900), two(0xf100, 0x0f00), "R3R14/RneG", mcfemac }, | |
1691 | {"msacl", 4, two(0xa000, 0x0900), two(0xf130, 0x0900), "RMRmiIeH", mcfemac }, | |
1692 | {"msacl", 4, two(0xa000, 0x0b00), two(0xf130, 0x0900), "RMRmMheH", mcfemac }, | |
1693 | {"msacl", 4, two(0xa000, 0x0900), two(0xf130, 0x0f00), "RMRmeH", mcfemac }, | |
1694 | ||
1695 | {"mulsw", 2, one(0140700), one(0170700), ";wDd", m68000up|mcfisa_a }, | |
3bdcfdf4 | 1696 | {"mulsl", 4, two(0046000,004000), two(0177700,0107770), ";lD1", m68020up | cpu32 | fido_a }, |
be8c092b | 1697 | {"mulsl", 4, two(0046000,004000), two(0177700,0107770), "qsD1", mcfisa_a }, |
3bdcfdf4 | 1698 | {"mulsl", 4, two(0046000,006000), two(0177700,0107770), ";lD3D1",m68020up | cpu32 | fido_a }, |
be8c092b NC |
1699 | |
1700 | {"muluw", 2, one(0140300), one(0170700), ";wDd", m68000up|mcfisa_a }, | |
3bdcfdf4 | 1701 | {"mulul", 4, two(0046000,000000), two(0177700,0107770), ";lD1", m68020up | cpu32 | fido_a }, |
be8c092b | 1702 | {"mulul", 4, two(0046000,000000), two(0177700,0107770), "qsD1", mcfisa_a }, |
3bdcfdf4 | 1703 | {"mulul", 4, two(0046000,002000), two(0177700,0107770), ";lD3D1",m68020up | cpu32 | fido_a }, |
be8c092b NC |
1704 | |
1705 | {"nbcd", 2, one(0044000), one(0177700), "$s", m68000up }, | |
1706 | ||
1707 | {"negb", 2, one(0042000), one(0177700), "$s", m68000up }, | |
1708 | {"negw", 2, one(0042100), one(0177700), "$s", m68000up }, | |
1709 | {"negl", 2, one(0042200), one(0177700), "$s", m68000up }, | |
1710 | {"negl", 2, one(0042200), one(0177700), "Ds", mcfisa_a}, | |
1711 | ||
1712 | {"negxb", 2, one(0040000), one(0177700), "$s", m68000up }, | |
1713 | {"negxw", 2, one(0040100), one(0177700), "$s", m68000up }, | |
1714 | {"negxl", 2, one(0040200), one(0177700), "$s", m68000up }, | |
1715 | {"negxl", 2, one(0040200), one(0177700), "Ds", mcfisa_a}, | |
1716 | ||
1717 | {"nop", 2, one(0047161), one(0177777), "", m68000up | mcfisa_a}, | |
1718 | ||
1719 | {"notb", 2, one(0043000), one(0177700), "$s", m68000up }, | |
1720 | {"notw", 2, one(0043100), one(0177700), "$s", m68000up }, | |
1721 | {"notl", 2, one(0043200), one(0177700), "$s", m68000up }, | |
1722 | {"notl", 2, one(0043200), one(0177700), "Ds", mcfisa_a}, | |
1723 | ||
1724 | {"orib", 4, one(0000000), one(0177700), "#b$s", m68000up }, | |
1725 | {"orib", 4, one(0000074), one(0177777), "#bCs", m68000up }, | |
1726 | {"oriw", 4, one(0000100), one(0177700), "#w$s", m68000up }, | |
1727 | {"oriw", 4, one(0000174), one(0177777), "#wSs", m68000up }, | |
1728 | {"oril", 6, one(0000200), one(0177700), "#l$s", m68000up }, | |
1729 | {"oril", 6, one(0000200), one(0177700), "#lDs", mcfisa_a }, | |
1730 | {"ori", 4, one(0000074), one(0177777), "#bCs", m68000up }, | |
1731 | {"ori", 4, one(0000100), one(0177700), "#w$s", m68000up }, | |
1732 | {"ori", 4, one(0000174), one(0177777), "#wSs", m68000up }, | |
252b5132 RH |
1733 | |
1734 | /* The or opcode can generate the ori instruction. */ | |
be8c092b NC |
1735 | {"orb", 4, one(0000000), one(0177700), "#b$s", m68000up }, |
1736 | {"orb", 4, one(0000074), one(0177777), "#bCs", m68000up }, | |
1737 | {"orb", 2, one(0100000), one(0170700), ";bDd", m68000up }, | |
1738 | {"orb", 2, one(0100400), one(0170700), "Dd~s", m68000up }, | |
1739 | {"orw", 4, one(0000100), one(0177700), "#w$s", m68000up }, | |
1740 | {"orw", 4, one(0000174), one(0177777), "#wSs", m68000up }, | |
1741 | {"orw", 2, one(0100100), one(0170700), ";wDd", m68000up }, | |
1742 | {"orw", 2, one(0100500), one(0170700), "Dd~s", m68000up }, | |
1743 | {"orl", 6, one(0000200), one(0177700), "#l$s", m68000up }, | |
1744 | {"orl", 6, one(0000200), one(0177700), "#lDs", mcfisa_a }, | |
1745 | {"orl", 2, one(0100200), one(0170700), ";lDd", m68000up | mcfisa_a }, | |
1746 | {"orl", 2, one(0100600), one(0170700), "Dd~s", m68000up | mcfisa_a }, | |
1747 | {"or", 4, one(0000074), one(0177777), "#bCs", m68000up }, | |
1748 | {"or", 4, one(0000100), one(0177700), "#w$s", m68000up }, | |
1749 | {"or", 4, one(0000174), one(0177777), "#wSs", m68000up }, | |
1750 | {"or", 2, one(0100100), one(0170700), ";wDd", m68000up }, | |
1751 | {"or", 2, one(0100500), one(0170700), "Dd~s", m68000up }, | |
1752 | ||
1753 | {"pack", 4, one(0100500), one(0170770), "DsDd#w", m68020up }, | |
1754 | {"pack", 4, one(0100510), one(0170770), "-s-d#w", m68020up }, | |
1755 | ||
1756 | {"pbac", 2, one(0xf087), one(0xffbf), "Bc", m68851 }, | |
1757 | {"pbacw", 2, one(0xf087), one(0xffff), "BW", m68851 }, | |
1758 | {"pbas", 2, one(0xf086), one(0xffbf), "Bc", m68851 }, | |
1759 | {"pbasw", 2, one(0xf086), one(0xffff), "BW", m68851 }, | |
1760 | {"pbbc", 2, one(0xf081), one(0xffbf), "Bc", m68851 }, | |
1761 | {"pbbcw", 2, one(0xf081), one(0xffff), "BW", m68851 }, | |
1762 | {"pbbs", 2, one(0xf080), one(0xffbf), "Bc", m68851 }, | |
1763 | {"pbbsw", 2, one(0xf080), one(0xffff), "BW", m68851 }, | |
1764 | {"pbcc", 2, one(0xf08f), one(0xffbf), "Bc", m68851 }, | |
1765 | {"pbccw", 2, one(0xf08f), one(0xffff), "BW", m68851 }, | |
1766 | {"pbcs", 2, one(0xf08e), one(0xffbf), "Bc", m68851 }, | |
1767 | {"pbcsw", 2, one(0xf08e), one(0xffff), "BW", m68851 }, | |
1768 | {"pbgc", 2, one(0xf08d), one(0xffbf), "Bc", m68851 }, | |
1769 | {"pbgcw", 2, one(0xf08d), one(0xffff), "BW", m68851 }, | |
1770 | {"pbgs", 2, one(0xf08c), one(0xffbf), "Bc", m68851 }, | |
1771 | {"pbgsw", 2, one(0xf08c), one(0xffff), "BW", m68851 }, | |
1772 | {"pbic", 2, one(0xf08b), one(0xffbf), "Bc", m68851 }, | |
1773 | {"pbicw", 2, one(0xf08b), one(0xffff), "BW", m68851 }, | |
1774 | {"pbis", 2, one(0xf08a), one(0xffbf), "Bc", m68851 }, | |
1775 | {"pbisw", 2, one(0xf08a), one(0xffff), "BW", m68851 }, | |
1776 | {"pblc", 2, one(0xf083), one(0xffbf), "Bc", m68851 }, | |
1777 | {"pblcw", 2, one(0xf083), one(0xffff), "BW", m68851 }, | |
1778 | {"pbls", 2, one(0xf082), one(0xffbf), "Bc", m68851 }, | |
1779 | {"pblsw", 2, one(0xf082), one(0xffff), "BW", m68851 }, | |
1780 | {"pbsc", 2, one(0xf085), one(0xffbf), "Bc", m68851 }, | |
1781 | {"pbscw", 2, one(0xf085), one(0xffff), "BW", m68851 }, | |
1782 | {"pbss", 2, one(0xf084), one(0xffbf), "Bc", m68851 }, | |
1783 | {"pbssw", 2, one(0xf084), one(0xffff), "BW", m68851 }, | |
1784 | {"pbwc", 2, one(0xf089), one(0xffbf), "Bc", m68851 }, | |
1785 | {"pbwcw", 2, one(0xf089), one(0xffff), "BW", m68851 }, | |
1786 | {"pbws", 2, one(0xf088), one(0xffbf), "Bc", m68851 }, | |
1787 | {"pbwsw", 2, one(0xf088), one(0xffff), "BW", m68851 }, | |
1788 | ||
1789 | {"pdbac", 4, two(0xf048, 0x0007), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1790 | {"pdbas", 4, two(0xf048, 0x0006), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1791 | {"pdbbc", 4, two(0xf048, 0x0001), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1792 | {"pdbbs", 4, two(0xf048, 0x0000), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1793 | {"pdbcc", 4, two(0xf048, 0x000f), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1794 | {"pdbcs", 4, two(0xf048, 0x000e), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1795 | {"pdbgc", 4, two(0xf048, 0x000d), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1796 | {"pdbgs", 4, two(0xf048, 0x000c), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1797 | {"pdbic", 4, two(0xf048, 0x000b), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1798 | {"pdbis", 4, two(0xf048, 0x000a), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1799 | {"pdblc", 4, two(0xf048, 0x0003), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1800 | {"pdbls", 4, two(0xf048, 0x0002), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1801 | {"pdbsc", 4, two(0xf048, 0x0005), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1802 | {"pdbss", 4, two(0xf048, 0x0004), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1803 | {"pdbwc", 4, two(0xf048, 0x0009), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1804 | {"pdbws", 4, two(0xf048, 0x0008), two(0xfff8, 0xffff), "DsBw", m68851 }, | |
1805 | ||
1806 | {"pea", 2, one(0044100), one(0177700), "!s", m68000up|mcfisa_a }, | |
1807 | ||
1808 | {"pflusha", 2, one(0xf518), one(0xfff8), "", m68040up }, | |
1809 | {"pflusha", 4, two(0xf000,0x2400), two(0xffff,0xffff), "", m68030 | m68851 }, | |
1810 | ||
1811 | {"pflush", 4, two(0xf000,0x3010), two(0xffc0,0xfe10), "T3T9", m68030|m68851 }, | |
1812 | {"pflush", 4, two(0xf000,0x3810), two(0xffc0,0xfe10), "T3T9&s", m68030|m68851 }, | |
1813 | {"pflush", 4, two(0xf000,0x3008), two(0xffc0,0xfe18), "D3T9", m68030|m68851 }, | |
1814 | {"pflush", 4, two(0xf000,0x3808), two(0xffc0,0xfe18), "D3T9&s", m68030|m68851 }, | |
1815 | {"pflush", 4, two(0xf000,0x3000), two(0xffc0,0xfe1e), "f3T9", m68030|m68851 }, | |
1816 | {"pflush", 4, two(0xf000,0x3800), two(0xffc0,0xfe1e), "f3T9&s", m68030|m68851 }, | |
1817 | {"pflush", 2, one(0xf508), one(0xfff8), "as", m68040up }, | |
1818 | {"pflush", 2, one(0xf508), one(0xfff8), "As", m68040up }, | |
1819 | ||
1820 | {"pflushan", 2, one(0xf510), one(0xfff8), "", m68040up }, | |
1821 | {"pflushn", 2, one(0xf500), one(0xfff8), "as", m68040up }, | |
1822 | {"pflushn", 2, one(0xf500), one(0xfff8), "As", m68040up }, | |
1823 | ||
1824 | {"pflushr", 4, two(0xf000, 0xa000), two(0xffc0, 0xffff), "|s", m68851 }, | |
1825 | ||
1826 | {"pflushs", 4, two(0xf000, 0x3410), two(0xfff8, 0xfe10), "T3T9", m68851 }, | |
1827 | {"pflushs", 4, two(0xf000, 0x3c10), two(0xfff8, 0xfe10), "T3T9&s", m68851 }, | |
1828 | {"pflushs", 4, two(0xf000, 0x3408), two(0xfff8, 0xfe18), "D3T9", m68851 }, | |
1829 | {"pflushs", 4, two(0xf000, 0x3c08), two(0xfff8, 0xfe18), "D3T9&s", m68851 }, | |
1830 | {"pflushs", 4, two(0xf000, 0x3400), two(0xfff8, 0xfe1e), "f3T9", m68851 }, | |
1831 | {"pflushs", 4, two(0xf000, 0x3c00), two(0xfff8, 0xfe1e), "f3T9&s", m68851 }, | |
1832 | ||
1833 | {"ploadr", 4, two(0xf000,0x2210), two(0xffc0,0xfff0), "T3&s", m68030|m68851 }, | |
1834 | {"ploadr", 4, two(0xf000,0x2208), two(0xffc0,0xfff8), "D3&s", m68030|m68851 }, | |
1835 | {"ploadr", 4, two(0xf000,0x2200), two(0xffc0,0xfffe), "f3&s", m68030|m68851 }, | |
1836 | {"ploadw", 4, two(0xf000,0x2010), two(0xffc0,0xfff0), "T3&s", m68030|m68851 }, | |
1837 | {"ploadw", 4, two(0xf000,0x2008), two(0xffc0,0xfff8), "D3&s", m68030|m68851 }, | |
1838 | {"ploadw", 4, two(0xf000,0x2000), two(0xffc0,0xfffe), "f3&s", m68030|m68851 }, | |
1839 | ||
1840 | {"plpar", 2, one(0xf5c8), one(0xfff8), "as", m68060 }, | |
1841 | {"plpaw", 2, one(0xf588), one(0xfff8), "as", m68060 }, | |
1842 | ||
1843 | {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xffff), "*l08", m68030|m68851 }, | |
1844 | {"pmove", 4, two(0xf000,0x5c00), two(0xffc0,0xffff), "*w18", m68851 }, | |
1845 | {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xe3ff), "*b28", m68851 }, | |
1846 | {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xffff), "08%s", m68030|m68851 }, | |
1847 | {"pmove", 4, two(0xf000,0x5e00), two(0xffc0,0xffff), "18%s", m68851 }, | |
1848 | {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xe3ff), "28%s", m68851 }, | |
1849 | {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xe3ff), "|sW8", m68030|m68851 }, | |
1850 | {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xe3ff), "W8~s", m68030|m68851 }, | |
be8c092b NC |
1851 | {"pmove", 4, two(0xf000,0x6000), two(0xffc0,0xffff), "*wY8", m68030|m68851 }, |
1852 | {"pmove", 4, two(0xf000,0x6200), two(0xffc0,0xffff), "Y8%s", m68030|m68851 }, | |
1853 | {"pmove", 4, two(0xf000,0x6600), two(0xffc0,0xffff), "Z8%s", m68851 }, | |
e143d25c AS |
1854 | {"pmove", 4, two(0xf000,0x6000), two(0xffc0,0xe3e3), "*wX3", m68851 }, |
1855 | {"pmove", 4, two(0xf000,0x6200), two(0xffc0,0xe3e3), "X3%s", m68851 }, | |
be8c092b NC |
1856 | {"pmove", 4, two(0xf000,0x0800), two(0xffc0,0xfbff), "*l38", m68030 }, |
1857 | {"pmove", 4, two(0xf000,0x0a00), two(0xffc0,0xfbff), "38%s", m68030 }, | |
1858 | ||
1859 | {"pmovefd", 4, two(0xf000, 0x4100), two(0xffc0, 0xe3ff), "*l08", m68030 }, | |
1860 | {"pmovefd", 4, two(0xf000, 0x4100), two(0xffc0, 0xe3ff), "|sW8", m68030 }, | |
1861 | {"pmovefd", 4, two(0xf000, 0x0900), two(0xffc0, 0xfbff), "*l38", m68030 }, | |
1862 | ||
1863 | {"prestore", 2, one(0xf140), one(0xffc0), "<s", m68851 }, | |
1864 | ||
1865 | {"psave", 2, one(0xf100), one(0xffc0), ">s", m68851 }, | |
1866 | ||
1867 | {"psac", 4, two(0xf040, 0x0007), two(0xffc0, 0xffff), "$s", m68851 }, | |
1868 | {"psas", 4, two(0xf040, 0x0006), two(0xffc0, 0xffff), "$s", m68851 }, | |
1869 | {"psbc", 4, two(0xf040, 0x0001), two(0xffc0, 0xffff), "$s", m68851 }, | |
1870 | {"psbs", 4, two(0xf040, 0x0000), two(0xffc0, 0xffff), "$s", m68851 }, | |
1871 | {"pscc", 4, two(0xf040, 0x000f), two(0xffc0, 0xffff), "$s", m68851 }, | |
1872 | {"pscs", 4, two(0xf040, 0x000e), two(0xffc0, 0xffff), "$s", m68851 }, | |
1873 | {"psgc", 4, two(0xf040, 0x000d), two(0xffc0, 0xffff), "$s", m68851 }, | |
1874 | {"psgs", 4, two(0xf040, 0x000c), two(0xffc0, 0xffff), "$s", m68851 }, | |
1875 | {"psic", 4, two(0xf040, 0x000b), two(0xffc0, 0xffff), "$s", m68851 }, | |
1876 | {"psis", 4, two(0xf040, 0x000a), two(0xffc0, 0xffff), "$s", m68851 }, | |
1877 | {"pslc", 4, two(0xf040, 0x0003), two(0xffc0, 0xffff), "$s", m68851 }, | |
1878 | {"psls", 4, two(0xf040, 0x0002), two(0xffc0, 0xffff), "$s", m68851 }, | |
1879 | {"pssc", 4, two(0xf040, 0x0005), two(0xffc0, 0xffff), "$s", m68851 }, | |
1880 | {"psss", 4, two(0xf040, 0x0004), two(0xffc0, 0xffff), "$s", m68851 }, | |
1881 | {"pswc", 4, two(0xf040, 0x0009), two(0xffc0, 0xffff), "$s", m68851 }, | |
1882 | {"psws", 4, two(0xf040, 0x0008), two(0xffc0, 0xffff), "$s", m68851 }, | |
1883 | ||
1884 | {"ptestr", 4, two(0xf000,0x8210), two(0xffc0, 0xe3f0), "T3&st8", m68030|m68851 }, | |
1885 | {"ptestr", 4, two(0xf000,0x8310), two(0xffc0,0xe310), "T3&st8A9", m68030|m68851 }, | |
1886 | {"ptestr", 4, two(0xf000,0x8208), two(0xffc0,0xe3f8), "D3&st8", m68030|m68851 }, | |
1887 | {"ptestr", 4, two(0xf000,0x8308), two(0xffc0,0xe318), "D3&st8A9", m68030|m68851 }, | |
1888 | {"ptestr", 4, two(0xf000,0x8200), two(0xffc0,0xe3fe), "f3&st8", m68030|m68851 }, | |
1889 | {"ptestr", 4, two(0xf000,0x8300), two(0xffc0,0xe31e), "f3&st8A9", m68030|m68851 }, | |
1890 | {"ptestr", 2, one(0xf568), one(0xfff8), "as", m68040 }, | |
1891 | ||
1892 | {"ptestw", 4, two(0xf000,0x8010), two(0xffc0,0xe3f0), "T3&st8", m68030|m68851 }, | |
1893 | {"ptestw", 4, two(0xf000,0x8110), two(0xffc0,0xe310), "T3&st8A9", m68030|m68851 }, | |
1894 | {"ptestw", 4, two(0xf000,0x8008), two(0xffc0,0xe3f8), "D3&st8", m68030|m68851 }, | |
1895 | {"ptestw", 4, two(0xf000,0x8108), two(0xffc0,0xe318), "D3&st8A9", m68030|m68851 }, | |
1896 | {"ptestw", 4, two(0xf000,0x8000), two(0xffc0,0xe3fe), "f3&st8", m68030|m68851 }, | |
1897 | {"ptestw", 4, two(0xf000,0x8100), two(0xffc0,0xe31e), "f3&st8A9", m68030|m68851 }, | |
1898 | {"ptestw", 2, one(0xf548), one(0xfff8), "as", m68040 }, | |
1899 | ||
1900 | {"ptrapacw", 6, two(0xf07a, 0x0007), two(0xffff, 0xffff), "#w", m68851 }, | |
1901 | {"ptrapacl", 6, two(0xf07b, 0x0007), two(0xffff, 0xffff), "#l", m68851 }, | |
1902 | {"ptrapac", 4, two(0xf07c, 0x0007), two(0xffff, 0xffff), "", m68851 }, | |
1903 | ||
1904 | {"ptrapasw", 6, two(0xf07a, 0x0006), two(0xffff, 0xffff), "#w", m68851 }, | |
1905 | {"ptrapasl", 6, two(0xf07b, 0x0006), two(0xffff, 0xffff), "#l", m68851 }, | |
1906 | {"ptrapas", 4, two(0xf07c, 0x0006), two(0xffff, 0xffff), "", m68851 }, | |
1907 | ||
1908 | {"ptrapbcw", 6, two(0xf07a, 0x0001), two(0xffff, 0xffff), "#w", m68851 }, | |
1909 | {"ptrapbcl", 6, two(0xf07b, 0x0001), two(0xffff, 0xffff), "#l", m68851 }, | |
1910 | {"ptrapbc", 4, two(0xf07c, 0x0001), two(0xffff, 0xffff), "", m68851 }, | |
1911 | ||
1912 | {"ptrapbsw", 6, two(0xf07a, 0x0000), two(0xffff, 0xffff), "#w", m68851 }, | |
1913 | {"ptrapbsl", 6, two(0xf07b, 0x0000), two(0xffff, 0xffff), "#l", m68851 }, | |
1914 | {"ptrapbs", 4, two(0xf07c, 0x0000), two(0xffff, 0xffff), "", m68851 }, | |
1915 | ||
1916 | {"ptrapccw", 6, two(0xf07a, 0x000f), two(0xffff, 0xffff), "#w", m68851 }, | |
1917 | {"ptrapccl", 6, two(0xf07b, 0x000f), two(0xffff, 0xffff), "#l", m68851 }, | |
1918 | {"ptrapcc", 4, two(0xf07c, 0x000f), two(0xffff, 0xffff), "", m68851 }, | |
1919 | ||
1920 | {"ptrapcsw", 6, two(0xf07a, 0x000e), two(0xffff, 0xffff), "#w", m68851 }, | |
1921 | {"ptrapcsl", 6, two(0xf07b, 0x000e), two(0xffff, 0xffff), "#l", m68851 }, | |
1922 | {"ptrapcs", 4, two(0xf07c, 0x000e), two(0xffff, 0xffff), "", m68851 }, | |
1923 | ||
1924 | {"ptrapgcw", 6, two(0xf07a, 0x000d), two(0xffff, 0xffff), "#w", m68851 }, | |
1925 | {"ptrapgcl", 6, two(0xf07b, 0x000d), two(0xffff, 0xffff), "#l", m68851 }, | |
1926 | {"ptrapgc", 4, two(0xf07c, 0x000d), two(0xffff, 0xffff), "", m68851 }, | |
1927 | ||
1928 | {"ptrapgsw", 6, two(0xf07a, 0x000c), two(0xffff, 0xffff), "#w", m68851 }, | |
1929 | {"ptrapgsl", 6, two(0xf07b, 0x000c), two(0xffff, 0xffff), "#l", m68851 }, | |
1930 | {"ptrapgs", 4, two(0xf07c, 0x000c), two(0xffff, 0xffff), "", m68851 }, | |
1931 | ||
1932 | {"ptrapicw", 6, two(0xf07a, 0x000b), two(0xffff, 0xffff), "#w", m68851 }, | |
1933 | {"ptrapicl", 6, two(0xf07b, 0x000b), two(0xffff, 0xffff), "#l", m68851 }, | |
1934 | {"ptrapic", 4, two(0xf07c, 0x000b), two(0xffff, 0xffff), "", m68851 }, | |
1935 | ||
1936 | {"ptrapisw", 6, two(0xf07a, 0x000a), two(0xffff, 0xffff), "#w", m68851 }, | |
1937 | {"ptrapisl", 6, two(0xf07b, 0x000a), two(0xffff, 0xffff), "#l", m68851 }, | |
1938 | {"ptrapis", 4, two(0xf07c, 0x000a), two(0xffff, 0xffff), "", m68851 }, | |
1939 | ||
1940 | {"ptraplcw", 6, two(0xf07a, 0x0003), two(0xffff, 0xffff), "#w", m68851 }, | |
1941 | {"ptraplcl", 6, two(0xf07b, 0x0003), two(0xffff, 0xffff), "#l", m68851 }, | |
1942 | {"ptraplc", 4, two(0xf07c, 0x0003), two(0xffff, 0xffff), "", m68851 }, | |
1943 | ||
1944 | {"ptraplsw", 6, two(0xf07a, 0x0002), two(0xffff, 0xffff), "#w", m68851 }, | |
1945 | {"ptraplsl", 6, two(0xf07b, 0x0002), two(0xffff, 0xffff), "#l", m68851 }, | |
1946 | {"ptrapls", 4, two(0xf07c, 0x0002), two(0xffff, 0xffff), "", m68851 }, | |
1947 | ||
1948 | {"ptrapscw", 6, two(0xf07a, 0x0005), two(0xffff, 0xffff), "#w", m68851 }, | |
1949 | {"ptrapscl", 6, two(0xf07b, 0x0005), two(0xffff, 0xffff), "#l", m68851 }, | |
1950 | {"ptrapsc", 4, two(0xf07c, 0x0005), two(0xffff, 0xffff), "", m68851 }, | |
1951 | ||
1952 | {"ptrapssw", 6, two(0xf07a, 0x0004), two(0xffff, 0xffff), "#w", m68851 }, | |
1953 | {"ptrapssl", 6, two(0xf07b, 0x0004), two(0xffff, 0xffff), "#l", m68851 }, | |
1954 | {"ptrapss", 4, two(0xf07c, 0x0004), two(0xffff, 0xffff), "", m68851 }, | |
1955 | ||
1956 | {"ptrapwcw", 6, two(0xf07a, 0x0009), two(0xffff, 0xffff), "#w", m68851 }, | |
1957 | {"ptrapwcl", 6, two(0xf07b, 0x0009), two(0xffff, 0xffff), "#l", m68851 }, | |
1958 | {"ptrapwc", 4, two(0xf07c, 0x0009), two(0xffff, 0xffff), "", m68851 }, | |
1959 | ||
1960 | {"ptrapwsw", 6, two(0xf07a, 0x0008), two(0xffff, 0xffff), "#w", m68851 }, | |
1961 | {"ptrapwsl", 6, two(0xf07b, 0x0008), two(0xffff, 0xffff), "#l", m68851 }, | |
1962 | {"ptrapws", 4, two(0xf07c, 0x0008), two(0xffff, 0xffff), "", m68851 }, | |
1963 | ||
1964 | {"pulse", 2, one(0045314), one(0177777), "", m68060 | mcfisa_a }, | |
1965 | ||
1966 | {"pvalid", 4, two(0xf000, 0x2800), two(0xffc0, 0xffff), "Vs&s", m68851 }, | |
1967 | {"pvalid", 4, two(0xf000, 0x2c00), two(0xffc0, 0xfff8), "A3&s", m68851 }, | |
252b5132 | 1968 | |
461d5ddd | 1969 | /* FIXME: don't allow Dw==Dx. */ |
be8c092b NC |
1970 | {"remsl", 4, two(0x4c40, 0x0800), two(0xffc0, 0x8ff8), "qsD3D1", mcfhwdiv }, |
1971 | {"remul", 4, two(0x4c40, 0x0000), two(0xffc0, 0x8ff8), "qsD3D1", mcfhwdiv }, | |
1972 | ||
1973 | {"reset", 2, one(0047160), one(0177777), "", m68000up }, | |
1974 | ||
1975 | {"rolb", 2, one(0160430), one(0170770), "QdDs", m68000up }, | |
1976 | {"rolb", 2, one(0160470), one(0170770), "DdDs", m68000up }, | |
1977 | {"rolw", 2, one(0160530), one(0170770), "QdDs", m68000up }, | |
1978 | {"rolw", 2, one(0160570), one(0170770), "DdDs", m68000up }, | |
1979 | {"rolw", 2, one(0163700), one(0177700), "~s", m68000up }, | |
1980 | {"roll", 2, one(0160630), one(0170770), "QdDs", m68000up }, | |
1981 | {"roll", 2, one(0160670), one(0170770), "DdDs", m68000up }, | |
1982 | ||
1983 | {"rorb", 2, one(0160030), one(0170770), "QdDs", m68000up }, | |
1984 | {"rorb", 2, one(0160070), one(0170770), "DdDs", m68000up }, | |
1985 | {"rorw", 2, one(0160130), one(0170770), "QdDs", m68000up }, | |
1986 | {"rorw", 2, one(0160170), one(0170770), "DdDs", m68000up }, | |
1987 | {"rorw", 2, one(0163300), one(0177700), "~s", m68000up }, | |
1988 | {"rorl", 2, one(0160230), one(0170770), "QdDs", m68000up }, | |
1989 | {"rorl", 2, one(0160270), one(0170770), "DdDs", m68000up }, | |
1990 | ||
1991 | {"roxlb", 2, one(0160420), one(0170770), "QdDs", m68000up }, | |
1992 | {"roxlb", 2, one(0160460), one(0170770), "DdDs", m68000up }, | |
1993 | {"roxlw", 2, one(0160520), one(0170770), "QdDs", m68000up }, | |
1994 | {"roxlw", 2, one(0160560), one(0170770), "DdDs", m68000up }, | |
1995 | {"roxlw", 2, one(0162700), one(0177700), "~s", m68000up }, | |
1996 | {"roxll", 2, one(0160620), one(0170770), "QdDs", m68000up }, | |
1997 | {"roxll", 2, one(0160660), one(0170770), "DdDs", m68000up }, | |
1998 | ||
1999 | {"roxrb", 2, one(0160020), one(0170770), "QdDs", m68000up }, | |
2000 | {"roxrb", 2, one(0160060), one(0170770), "DdDs", m68000up }, | |
2001 | {"roxrw", 2, one(0160120), one(0170770), "QdDs", m68000up }, | |
2002 | {"roxrw", 2, one(0160160), one(0170770), "DdDs", m68000up }, | |
2003 | {"roxrw", 2, one(0162300), one(0177700), "~s", m68000up }, | |
2004 | {"roxrl", 2, one(0160220), one(0170770), "QdDs", m68000up }, | |
2005 | {"roxrl", 2, one(0160260), one(0170770), "DdDs", m68000up }, | |
2006 | ||
2007 | {"rtd", 4, one(0047164), one(0177777), "#w", m68010up }, | |
43e65147 | 2008 | |
be8c092b | 2009 | {"rte", 2, one(0047163), one(0177777), "", m68000up | mcfisa_a }, |
43e65147 | 2010 | |
be8c092b | 2011 | {"rtm", 2, one(0003300), one(0177760), "Rs", m68020 }, |
43e65147 | 2012 | |
be8c092b | 2013 | {"rtr", 2, one(0047167), one(0177777), "", m68000up }, |
43e65147 | 2014 | |
be8c092b NC |
2015 | {"rts", 2, one(0047165), one(0177777), "", m68000up | mcfisa_a }, |
2016 | ||
9a2e615a | 2017 | {"satsl", 2, one(0046200), one(0177770), "Ds", mcfisa_b | mcfisa_c }, |
be8c092b NC |
2018 | |
2019 | {"sbcd", 2, one(0100400), one(0170770), "DsDd", m68000up }, | |
2020 | {"sbcd", 2, one(0100410), one(0170770), "-s-d", m68000up }, | |
43e65147 | 2021 | |
ee9fd255 | 2022 | {"stldsr", 6, two(0x40e7, 0x46fc), two(0xffff, 0xffff), "#w", mcfisa_aa | mcfisa_c }, |
43e65147 | 2023 | |
869ddf2a NS |
2024 | /* Traps have to come before conditional sets, as they have a more |
2025 | specific opcode. */ | |
3bdcfdf4 KH |
2026 | {"trapcc", 2, one(0052374), one(0177777), "", m68020up | cpu32 | fido_a }, |
2027 | {"trapcs", 2, one(0052774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2028 | {"trapeq", 2, one(0053774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
869ddf2a | 2029 | {"tpf", 2, one(0050774), one(0177777), "", mcfisa_a }, |
3bdcfdf4 KH |
2030 | {"trapf", 2, one(0050774), one(0177777), "", m68020up | cpu32 | fido_a | mcfisa_a }, |
2031 | {"trapge", 2, one(0056374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2032 | {"trapgt", 2, one(0057374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2033 | {"traphi", 2, one(0051374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2034 | {"traple", 2, one(0057774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2035 | {"trapls", 2, one(0051774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2036 | {"traplt", 2, one(0056774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2037 | {"trapmi", 2, one(0055774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2038 | {"trapne", 2, one(0053374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2039 | {"trappl", 2, one(0055374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2040 | {"trapt", 2, one(0050374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2041 | {"trapvc", 2, one(0054374), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2042 | {"trapvs", 2, one(0054774), one(0177777), "", m68020up | cpu32 | fido_a }, | |
2043 | ||
2044 | {"trapccw", 4, one(0052372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2045 | {"trapcsw", 4, one(0052772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2046 | {"trapeqw", 4, one(0053772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
869ddf2a | 2047 | {"tpfw", 4, one(0050772), one(0177777), "#w", mcfisa_a}, |
3bdcfdf4 KH |
2048 | {"trapfw", 4, one(0050772), one(0177777), "#w", m68020up | cpu32 | fido_a | mcfisa_a}, |
2049 | {"trapgew", 4, one(0056372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2050 | {"trapgtw", 4, one(0057372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2051 | {"traphiw", 4, one(0051372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2052 | {"traplew", 4, one(0057772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2053 | {"traplsw", 4, one(0051772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2054 | {"trapltw", 4, one(0056772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2055 | {"trapmiw", 4, one(0055772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2056 | {"trapnew", 4, one(0053372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2057 | {"trapplw", 4, one(0055372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2058 | {"traptw", 4, one(0050372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2059 | {"trapvcw", 4, one(0054372), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2060 | {"trapvsw", 4, one(0054772), one(0177777), "#w", m68020up | cpu32 | fido_a }, | |
2061 | ||
2062 | {"trapccl", 6, one(0052373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2063 | {"trapcsl", 6, one(0052773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2064 | {"trapeql", 6, one(0053773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
869ddf2a | 2065 | {"tpfl", 6, one(0050773), one(0177777), "#l", mcfisa_a}, |
3bdcfdf4 KH |
2066 | {"trapfl", 6, one(0050773), one(0177777), "#l", m68020up | cpu32 | fido_a | mcfisa_a}, |
2067 | {"trapgel", 6, one(0056373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2068 | {"trapgtl", 6, one(0057373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2069 | {"traphil", 6, one(0051373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2070 | {"traplel", 6, one(0057773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2071 | {"traplsl", 6, one(0051773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2072 | {"trapltl", 6, one(0056773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2073 | {"trapmil", 6, one(0055773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2074 | {"trapnel", 6, one(0053373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2075 | {"trappll", 6, one(0055373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2076 | {"traptl", 6, one(0050373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2077 | {"trapvcl", 6, one(0054373), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
2078 | {"trapvsl", 6, one(0054773), one(0177777), "#l", m68020up | cpu32 | fido_a }, | |
869ddf2a NS |
2079 | |
2080 | {"trapv", 2, one(0047166), one(0177777), "", m68000up }, | |
2081 | ||
be8c092b NC |
2082 | {"scc", 2, one(0052300), one(0177700), "$s", m68000up }, |
2083 | {"scc", 2, one(0052300), one(0177700), "Ds", mcfisa_a }, | |
2084 | {"scs", 2, one(0052700), one(0177700), "$s", m68000up }, | |
2085 | {"scs", 2, one(0052700), one(0177700), "Ds", mcfisa_a }, | |
2086 | {"seq", 2, one(0053700), one(0177700), "$s", m68000up }, | |
2087 | {"seq", 2, one(0053700), one(0177700), "Ds", mcfisa_a }, | |
2088 | {"sf", 2, one(0050700), one(0177700), "$s", m68000up }, | |
2089 | {"sf", 2, one(0050700), one(0177700), "Ds", mcfisa_a }, | |
2090 | {"sge", 2, one(0056300), one(0177700), "$s", m68000up }, | |
2091 | {"sge", 2, one(0056300), one(0177700), "Ds", mcfisa_a }, | |
2092 | {"sgt", 2, one(0057300), one(0177700), "$s", m68000up }, | |
2093 | {"sgt", 2, one(0057300), one(0177700), "Ds", mcfisa_a }, | |
2094 | {"shi", 2, one(0051300), one(0177700), "$s", m68000up }, | |
2095 | {"shi", 2, one(0051300), one(0177700), "Ds", mcfisa_a }, | |
2096 | {"sle", 2, one(0057700), one(0177700), "$s", m68000up }, | |
2097 | {"sle", 2, one(0057700), one(0177700), "Ds", mcfisa_a }, | |
2098 | {"sls", 2, one(0051700), one(0177700), "$s", m68000up }, | |
2099 | {"sls", 2, one(0051700), one(0177700), "Ds", mcfisa_a }, | |
2100 | {"slt", 2, one(0056700), one(0177700), "$s", m68000up }, | |
2101 | {"slt", 2, one(0056700), one(0177700), "Ds", mcfisa_a }, | |
2102 | {"smi", 2, one(0055700), one(0177700), "$s", m68000up }, | |
2103 | {"smi", 2, one(0055700), one(0177700), "Ds", mcfisa_a }, | |
2104 | {"sne", 2, one(0053300), one(0177700), "$s", m68000up }, | |
869ddf2a | 2105 | {"sne", 2, one(0053300), one(0177770), "Ds", mcfisa_a }, |
be8c092b | 2106 | {"spl", 2, one(0055300), one(0177700), "$s", m68000up }, |
869ddf2a | 2107 | {"spl", 2, one(0055300), one(0177770), "Ds", mcfisa_a }, |
be8c092b | 2108 | {"st", 2, one(0050300), one(0177700), "$s", m68000up }, |
869ddf2a | 2109 | {"st", 2, one(0050300), one(0177770), "Ds", mcfisa_a }, |
be8c092b | 2110 | {"svc", 2, one(0054300), one(0177700), "$s", m68000up }, |
869ddf2a | 2111 | {"svc", 2, one(0054300), one(0177770), "Ds", mcfisa_a }, |
be8c092b | 2112 | {"svs", 2, one(0054700), one(0177700), "$s", m68000up }, |
869ddf2a | 2113 | {"svs", 2, one(0054700), one(0177770), "Ds", mcfisa_a }, |
be8c092b | 2114 | |
6bd025df KH |
2115 | {"sleep", 2, one(0047170), one(0177777), "", fido_a }, |
2116 | ||
be8c092b NC |
2117 | {"stop", 4, one(0047162), one(0177777), "#w", m68000up | mcfisa_a }, |
2118 | ||
2119 | {"strldsr", 4, two(0040347,0043374), two(0177777,0177777), "#w", mcfisa_aa}, | |
2120 | ||
2121 | {"subal", 2, one(0110700), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
2122 | {"subaw", 2, one(0110300), one(0170700), "*wAd", m68000up }, | |
2123 | ||
2124 | {"subib", 4, one(0002000), one(0177700), "#b$s", m68000up }, | |
2125 | {"subiw", 4, one(0002100), one(0177700), "#w$s", m68000up }, | |
2126 | {"subil", 6, one(0002200), one(0177700), "#l$s", m68000up }, | |
2127 | {"subil", 6, one(0002200), one(0177700), "#lDs", mcfisa_a }, | |
2128 | ||
2129 | {"subqb", 2, one(0050400), one(0170700), "Qd%s", m68000up }, | |
2130 | {"subqw", 2, one(0050500), one(0170700), "Qd%s", m68000up }, | |
2131 | {"subql", 2, one(0050600), one(0170700), "Qd%s", m68000up | mcfisa_a }, | |
252b5132 RH |
2132 | |
2133 | /* The sub opcode can generate the suba, subi, and subq instructions. */ | |
be8c092b NC |
2134 | {"subb", 2, one(0050400), one(0170700), "Qd%s", m68000up }, |
2135 | {"subb", 4, one(0002000), one(0177700), "#b$s", m68000up }, | |
2136 | {"subb", 2, one(0110000), one(0170700), ";bDd", m68000up }, | |
2137 | {"subb", 2, one(0110400), one(0170700), "Dd~s", m68000up }, | |
2138 | {"subw", 2, one(0050500), one(0170700), "Qd%s", m68000up }, | |
2139 | {"subw", 4, one(0002100), one(0177700), "#w$s", m68000up }, | |
2140 | {"subw", 2, one(0110300), one(0170700), "*wAd", m68000up }, | |
2141 | {"subw", 2, one(0110100), one(0170700), "*wDd", m68000up }, | |
2142 | {"subw", 2, one(0110500), one(0170700), "Dd~s", m68000up }, | |
2143 | {"subl", 2, one(0050600), one(0170700), "Qd%s", m68000up | mcfisa_a }, | |
2144 | {"subl", 6, one(0002200), one(0177700), "#l$s", m68000up }, | |
2145 | {"subl", 6, one(0002200), one(0177700), "#lDs", mcfisa_a }, | |
2146 | {"subl", 2, one(0110700), one(0170700), "*lAd", m68000up | mcfisa_a }, | |
2147 | {"subl", 2, one(0110200), one(0170700), "*lDd", m68000up | mcfisa_a }, | |
2148 | {"subl", 2, one(0110600), one(0170700), "Dd~s", m68000up | mcfisa_a }, | |
2149 | ||
2150 | {"subxb", 2, one(0110400), one(0170770), "DsDd", m68000up }, | |
2151 | {"subxb", 2, one(0110410), one(0170770), "-s-d", m68000up }, | |
2152 | {"subxw", 2, one(0110500), one(0170770), "DsDd", m68000up }, | |
2153 | {"subxw", 2, one(0110510), one(0170770), "-s-d", m68000up }, | |
2154 | {"subxl", 2, one(0110600), one(0170770), "DsDd", m68000up | mcfisa_a }, | |
2155 | {"subxl", 2, one(0110610), one(0170770), "-s-d", m68000up }, | |
2156 | ||
2157 | {"swap", 2, one(0044100), one(0177770), "Ds", m68000up | mcfisa_a }, | |
252b5132 RH |
2158 | |
2159 | /* swbeg and swbegl are magic constants used on sysV68. The compiler | |
2160 | generates them before a switch table. They tell the debugger and | |
2161 | disassembler that a switch table follows. The parameter is the | |
2162 | number of elements in the table. swbeg means that the entries in | |
2163 | the table are word (2 byte) sized, and swbegl means that the | |
2164 | entries in the table are longword (4 byte) sized. */ | |
be8c092b NC |
2165 | {"swbeg", 4, one(0045374), one(0177777), "#w", m68000up | mcfisa_a }, |
2166 | {"swbegl", 6, one(0045375), one(0177777), "#l", m68000up | mcfisa_a }, | |
252b5132 | 2167 | |
9a2e615a | 2168 | {"tas", 2, one(0045300), one(0177700), "$s", m68000up | mcfisa_b | mcfisa_c}, |
252b5132 | 2169 | |
be8c092b NC |
2170 | #define TBL1(name,insn_size,signed,round,size) \ |
2171 | {name, insn_size, two(0174000, (signed<<11)|(!round<<10)|(size<<6)|0000400), \ | |
252b5132 | 2172 | two(0177700,0107777), "!sD1", cpu32 }, \ |
be8c092b | 2173 | {name, insn_size, two(0174000, (signed<<11)|(!round<<10)|(size<<6)), \ |
252b5132 RH |
2174 | two(0177770,0107770), "DsD3D1", cpu32 } |
2175 | #define TBL(name1, name2, name3, s, r) \ | |
be8c092b | 2176 | TBL1(name1, 4, s, r, 0), TBL1(name2, 4, s, r, 1), TBL1(name3, 4, s, r, 2) |
baee4c9e AS |
2177 | TBL("tblsb", "tblsw", "tblsl", 1, 1), |
2178 | TBL("tblsnb", "tblsnw", "tblsnl", 1, 0), | |
252b5132 RH |
2179 | TBL("tblub", "tbluw", "tblul", 0, 1), |
2180 | TBL("tblunb", "tblunw", "tblunl", 0, 0), | |
2181 | ||
be8c092b NC |
2182 | {"trap", 2, one(0047100), one(0177760), "Ts", m68000up | mcfisa_a }, |
2183 | ||
6bd025df KH |
2184 | {"trapx", 2, one(0047060), one(0177760), "Ts", fido_a }, |
2185 | ||
3bdcfdf4 | 2186 | {"tstb", 2, one(0045000), one(0177700), ";b", m68020up | cpu32 | fido_a | mcfisa_a }, |
be8c092b | 2187 | {"tstb", 2, one(0045000), one(0177700), "$b", m68000up }, |
3bdcfdf4 | 2188 | {"tstw", 2, one(0045100), one(0177700), "*w", m68020up | cpu32 | fido_a | mcfisa_a }, |
be8c092b | 2189 | {"tstw", 2, one(0045100), one(0177700), "$w", m68000up }, |
3bdcfdf4 | 2190 | {"tstl", 2, one(0045200), one(0177700), "*l", m68020up | cpu32 | fido_a | mcfisa_a }, |
be8c092b NC |
2191 | {"tstl", 2, one(0045200), one(0177700), "$l", m68000up }, |
2192 | ||
2193 | {"unlk", 2, one(0047130), one(0177770), "As", m68000up | mcfisa_a }, | |
2194 | ||
2195 | {"unpk", 4, one(0100600), one(0170770), "DsDd#w", m68020up }, | |
2196 | {"unpk", 4, one(0100610), one(0170770), "-s-d#w", m68020up }, | |
2197 | ||
2198 | {"wddatab", 2, one(0175400), one(0177700), "~s", mcfisa_a }, | |
2199 | {"wddataw", 2, one(0175500), one(0177700), "~s", mcfisa_a }, | |
2200 | {"wddatal", 2, one(0175600), one(0177700), "~s", mcfisa_a }, | |
2201 | ||
ddefa7f5 KH |
2202 | {"wdebugl", 4, two(0175720, 03), two(0177770, 0xffff), "as", mcfisa_a }, |
2203 | {"wdebugl", 4, two(0175750, 03), two(0177770, 0xffff), "ds", mcfisa_a }, | |
be8c092b NC |
2204 | {"wdebug", 4, two(0175720, 03), two(0177770, 0xffff), "as", mcfisa_a }, |
2205 | {"wdebug", 4, two(0175750, 03), two(0177770, 0xffff), "ds", mcfisa_a }, | |
252b5132 RH |
2206 | }; |
2207 | ||
2208 | const int m68k_numopcodes = sizeof m68k_opcodes / sizeof m68k_opcodes[0]; | |
2209 | ||
2210 | /* These aliases used to be in the above table, each one duplicating | |
2211 | all of the entries for its primary exactly. This table was | |
2212 | constructed by mechanical processing of the opcode table, with a | |
2213 | small number of tweaks done by hand. There are probably a lot more | |
2214 | aliases above that could be moved down here, except for very minor | |
2215 | differences. */ | |
2216 | ||
2217 | const struct m68k_opcode_alias m68k_opcode_aliases[] = | |
2218 | { | |
2219 | { "add", "addw", }, | |
2220 | { "adda", "addaw", }, | |
2221 | { "addi", "addiw", }, | |
2222 | { "addq", "addqw", }, | |
2223 | { "addx", "addxw", }, | |
2224 | { "asl", "aslw", }, | |
2225 | { "asr", "asrw", }, | |
2226 | { "bhi", "bhiw", }, | |
2227 | { "bls", "blsw", }, | |
2228 | { "bcc", "bccw", }, | |
2229 | { "bcs", "bcsw", }, | |
2230 | { "bne", "bnew", }, | |
2231 | { "beq", "beqw", }, | |
2232 | { "bvc", "bvcw", }, | |
2233 | { "bvs", "bvsw", }, | |
2234 | { "bpl", "bplw", }, | |
2235 | { "bmi", "bmiw", }, | |
2236 | { "bge", "bgew", }, | |
2237 | { "blt", "bltw", }, | |
2238 | { "bgt", "bgtw", }, | |
2239 | { "ble", "blew", }, | |
2240 | { "bra", "braw", }, | |
2241 | { "bsr", "bsrw", }, | |
2242 | { "bhib", "bhis", }, | |
2243 | { "blsb", "blss", }, | |
2244 | { "bccb", "bccs", }, | |
2245 | { "bcsb", "bcss", }, | |
2246 | { "bneb", "bnes", }, | |
2247 | { "beqb", "beqs", }, | |
2248 | { "bvcb", "bvcs", }, | |
2249 | { "bvsb", "bvss", }, | |
2250 | { "bplb", "bpls", }, | |
2251 | { "bmib", "bmis", }, | |
2252 | { "bgeb", "bges", }, | |
2253 | { "bltb", "blts", }, | |
2254 | { "bgtb", "bgts", }, | |
2255 | { "bleb", "bles", }, | |
2256 | { "brab", "bras", }, | |
2257 | { "bsrb", "bsrs", }, | |
2258 | { "bhs", "bccw" }, | |
2259 | { "bhss", "bccs" }, | |
2260 | { "bhsb", "bccs" }, | |
2261 | { "bhsw", "bccw" }, | |
2262 | { "bhsl", "bccl" }, | |
2263 | { "blo", "bcsw" }, | |
2264 | { "blos", "bcss" }, | |
2265 | { "blob", "bcss" }, | |
2266 | { "blow", "bcsw" }, | |
2267 | { "blol", "bcsl" }, | |
2268 | { "br", "braw", }, | |
2269 | { "brs", "bras", }, | |
2270 | { "brb", "bras", }, | |
2271 | { "brw", "braw", }, | |
2272 | { "brl", "bral", }, | |
be8c092b NC |
2273 | { "jfnlt", "bcc", }, /* Apparently a sun alias. */ |
2274 | { "jfngt", "ble", }, /* Apparently a sun alias. */ | |
2275 | { "jfeq", "beqs", }, /* Apparently a sun alias. */ | |
252b5132 RH |
2276 | { "bchgb", "bchg", }, |
2277 | { "bchgl", "bchg", }, | |
2278 | { "bclrb", "bclr", }, | |
2279 | { "bclrl", "bclr", }, | |
2280 | { "bsetb", "bset", }, | |
2281 | { "bsetl", "bset", }, | |
2282 | { "btstb", "btst", }, | |
2283 | { "btstl", "btst", }, | |
2284 | { "cas2", "cas2w", }, | |
2285 | { "cas", "casw", }, | |
2286 | { "chk2", "chk2w", }, | |
2287 | { "chk", "chkw", }, | |
2288 | { "clr", "clrw", }, | |
2289 | { "cmp2", "cmp2w", }, | |
2290 | { "cmpa", "cmpaw", }, | |
2291 | { "cmpi", "cmpiw", }, | |
2292 | { "cmpm", "cmpmw", }, | |
2293 | { "cmp", "cmpw", }, | |
2294 | { "dbccw", "dbcc", }, | |
2295 | { "dbcsw", "dbcs", }, | |
2296 | { "dbeqw", "dbeq", }, | |
2297 | { "dbfw", "dbf", }, | |
2298 | { "dbgew", "dbge", }, | |
2299 | { "dbgtw", "dbgt", }, | |
2300 | { "dbhiw", "dbhi", }, | |
2301 | { "dblew", "dble", }, | |
2302 | { "dblsw", "dbls", }, | |
2303 | { "dbltw", "dblt", }, | |
2304 | { "dbmiw", "dbmi", }, | |
2305 | { "dbnew", "dbne", }, | |
2306 | { "dbplw", "dbpl", }, | |
2307 | { "dbtw", "dbt", }, | |
2308 | { "dbvcw", "dbvc", }, | |
2309 | { "dbvsw", "dbvs", }, | |
2310 | { "dbhs", "dbcc", }, | |
2311 | { "dbhsw", "dbcc", }, | |
2312 | { "dbra", "dbf", }, | |
2313 | { "dbraw", "dbf", }, | |
2314 | { "tdivsl", "divsl", }, | |
2315 | { "divs", "divsw", }, | |
2316 | { "divu", "divuw", }, | |
2317 | { "ext", "extw", }, | |
2318 | { "extbw", "extw", }, | |
2319 | { "extwl", "extl", }, | |
2320 | { "fbneq", "fbne", }, | |
2321 | { "fbsneq", "fbsne", }, | |
2322 | { "fdbneq", "fdbne", }, | |
2323 | { "fdbsneq", "fdbsne", }, | |
2324 | { "fmovecr", "fmovecrx", }, | |
2325 | { "fmovm", "fmovem", }, | |
2326 | { "fsneq", "fsne", }, | |
2327 | { "fssneq", "fssne", }, | |
2328 | { "ftrapneq", "ftrapne", }, | |
2329 | { "ftrapsneq", "ftrapsne", }, | |
2330 | { "fjneq", "fjne", }, | |
2331 | { "fjsneq", "fjsne", }, | |
2332 | { "jmpl", "jmp", }, | |
2333 | { "jmps", "jmp", }, | |
2334 | { "jsrl", "jsr", }, | |
2335 | { "jsrs", "jsr", }, | |
2336 | { "leal", "lea", }, | |
2337 | { "lsl", "lslw", }, | |
2338 | { "lsr", "lsrw", }, | |
461d5ddd | 2339 | { "mac", "macw" }, |
252b5132 RH |
2340 | { "movea", "moveaw", }, |
2341 | { "movem", "movemw", }, | |
2342 | { "movml", "moveml", }, | |
2343 | { "movmw", "movemw", }, | |
2344 | { "movm", "movemw", }, | |
2345 | { "movep", "movepw", }, | |
2346 | { "movpw", "movepw", }, | |
2347 | { "moves", "movesw" }, | |
2348 | { "muls", "mulsw", }, | |
2349 | { "mulu", "muluw", }, | |
461d5ddd | 2350 | { "msac", "msacw" }, |
252b5132 RH |
2351 | { "nbcdb", "nbcd" }, |
2352 | { "neg", "negw", }, | |
2353 | { "negx", "negxw", }, | |
2354 | { "not", "notw", }, | |
2355 | { "peal", "pea", }, | |
2356 | { "rol", "rolw", }, | |
2357 | { "ror", "rorw", }, | |
2358 | { "roxl", "roxlw", }, | |
2359 | { "roxr", "roxrw", }, | |
80a523c2 | 2360 | { "sats", "satsl", }, |
252b5132 RH |
2361 | { "sbcdb", "sbcd", }, |
2362 | { "sccb", "scc", }, | |
2363 | { "scsb", "scs", }, | |
2364 | { "seqb", "seq", }, | |
2365 | { "sfb", "sf", }, | |
2366 | { "sgeb", "sge", }, | |
2367 | { "sgtb", "sgt", }, | |
2368 | { "shib", "shi", }, | |
2369 | { "sleb", "sle", }, | |
2370 | { "slsb", "sls", }, | |
2371 | { "sltb", "slt", }, | |
2372 | { "smib", "smi", }, | |
2373 | { "sneb", "sne", }, | |
2374 | { "splb", "spl", }, | |
2375 | { "stb", "st", }, | |
2376 | { "svcb", "svc", }, | |
2377 | { "svsb", "svs", }, | |
2378 | { "sfge", "sge", }, | |
2379 | { "sfgt", "sgt", }, | |
2380 | { "sfle", "sle", }, | |
2381 | { "sflt", "slt", }, | |
2382 | { "sfneq", "sne", }, | |
2383 | { "suba", "subaw", }, | |
2384 | { "subi", "subiw", }, | |
2385 | { "subq", "subqw", }, | |
2386 | { "sub", "subw", }, | |
2387 | { "subx", "subxw", }, | |
2388 | { "swapw", "swap", }, | |
2389 | { "tasb", "tas", }, | |
2390 | { "tpcc", "trapcc", }, | |
2391 | { "tcc", "trapcc", }, | |
2392 | { "tst", "tstw", }, | |
2393 | { "jbra", "jra", }, | |
2394 | { "jbhi", "jhi", }, | |
2395 | { "jbls", "jls", }, | |
2396 | { "jbcc", "jcc", }, | |
2397 | { "jbcs", "jcs", }, | |
2398 | { "jbne", "jne", }, | |
2399 | { "jbeq", "jeq", }, | |
2400 | { "jbvc", "jvc", }, | |
2401 | { "jbvs", "jvs", }, | |
2402 | { "jbpl", "jpl", }, | |
2403 | { "jbmi", "jmi", }, | |
2404 | { "jbge", "jge", }, | |
2405 | { "jblt", "jlt", }, | |
2406 | { "jbgt", "jgt", }, | |
2407 | { "jble", "jle", }, | |
2408 | { "movql", "moveq", }, | |
2409 | { "moveql", "moveq", }, | |
2410 | { "movl", "movel", }, | |
2411 | { "movq", "moveq", }, | |
2412 | { "moval", "moveal", }, | |
2413 | { "movaw", "moveaw", }, | |
2414 | { "movb", "moveb", }, | |
2415 | { "movc", "movec", }, | |
2416 | { "movecl", "movec", }, | |
2417 | { "movpl", "movepl", }, | |
2418 | { "movw", "movew", }, | |
2419 | { "movsb", "movesb", }, | |
2420 | { "movsl", "movesl", }, | |
2421 | { "movsw", "movesw", }, | |
80a523c2 | 2422 | { "mov3q", "mov3ql", }, |
252b5132 | 2423 | |
be8c092b | 2424 | { "tdivul", "divul", }, /* For m68k-svr4. */ |
252b5132 RH |
2425 | { "fmovb", "fmoveb", }, |
2426 | { "fsmovb", "fsmoveb", }, | |
2427 | { "fdmovb", "fdmoveb", }, | |
2428 | { "fmovd", "fmoved", }, | |
2429 | { "fsmovd", "fsmoved", }, | |
2430 | { "fmovl", "fmovel", }, | |
2431 | { "fsmovl", "fsmovel", }, | |
2432 | { "fdmovl", "fdmovel", }, | |
2433 | { "fmovp", "fmovep", }, | |
2434 | { "fsmovp", "fsmovep", }, | |
2435 | { "fdmovp", "fdmovep", }, | |
2436 | { "fmovs", "fmoves", }, | |
2437 | { "fsmovs", "fsmoves", }, | |
2438 | { "fdmovs", "fdmoves", }, | |
2439 | { "fmovw", "fmovew", }, | |
2440 | { "fsmovw", "fsmovew", }, | |
2441 | { "fdmovw", "fdmovew", }, | |
2442 | { "fmovx", "fmovex", }, | |
2443 | { "fsmovx", "fsmovex", }, | |
2444 | { "fdmovx", "fdmovex", }, | |
2445 | { "fmovcr", "fmovecr", }, | |
2446 | { "fmovcrx", "fmovecrx", }, | |
2447 | { "ftestb", "ftstb", }, | |
2448 | { "ftestd", "ftstd", }, | |
2449 | { "ftestl", "ftstl", }, | |
2450 | { "ftestp", "ftstp", }, | |
2451 | { "ftests", "ftsts", }, | |
2452 | { "ftestw", "ftstw", }, | |
2453 | { "ftestx", "ftstx", }, | |
3e602632 | 2454 | |
6b6e92f4 | 2455 | { "bitrevl", "bitrev", }, |
3e602632 NC |
2456 | { "byterevl", "byterev", }, |
2457 | { "ff1l", "ff1", }, | |
2458 | ||
252b5132 RH |
2459 | }; |
2460 | ||
2461 | const int m68k_numaliases = | |
2462 | sizeof m68k_opcode_aliases / sizeof m68k_opcode_aliases[0]; |