Initial revision
[deliverable/binutils-gdb.git] / include / m68k-opcode.h
1 /* Opcode table for m68000/m68020 and m68881.
2 Copyright (C) 1989, Free Software Foundation.
3
4 This file is part of GDB, the GNU Debugger and GAS, the GNU Assembler.
5
6 Both GDB and GAS are free software; you can redistribute and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GDB and GAS are distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GDB or GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 /*
21 $Id$
22 $Log$
23 Revision 1.1 1991/05/19 00:19:41 rich
24 Initial revision
25
26 * Revision 1.1.1.1 1991/03/21 21:26:44 gumby
27 * Back from Intel with Steve
28 *
29 * Revision 1.1 1991/03/21 21:26:43 gumby
30 * Initial revision
31 *
32 * Revision 1.1 1991/03/13 00:33:57 chrisb
33 * Initial revision
34 *
35 * Revision 1.1 1991/02/22 16:48:06 sac
36 * Initial revision
37 *
38 */
39 struct m68k_opcode
40 {
41 char *name;
42 unsigned long opcode;
43 unsigned long match;
44 char *args;
45 };
46
47 /* We store four bytes of opcode for all opcodes because that
48 is the most any of them need. The actual length of an instruction
49 is always at least 2 bytes, and is as much longer as necessary to
50 hold the operands it has.
51
52 The match component is a mask saying which bits must match
53 particular opcode in order for an instruction to be an instance
54 of that opcode.
55
56 The args component is a string containing two characters
57 for each operand of the instruction. The first specifies
58 the kind of operand; the second, the place it is stored. */
59
60 /* Kinds of operands:
61 D data register only. Stored as 3 bits.
62 A address register only. Stored as 3 bits.
63 R either kind of register. Stored as 4 bits.
64 F floating point coprocessor register only. Stored as 3 bits.
65 O an offset (or width): immediate data 0-31 or data register.
66 Stored as 6 bits in special format for BF... insns.
67 + autoincrement only. Stored as 3 bits (number of the address register).
68 - autodecrement only. Stored as 3 bits (number of the address register).
69 Q quick immediate data. Stored as 3 bits.
70 This matches an immediate operand only when value is in range 1 .. 8.
71 M moveq immediate data. Stored as 8 bits.
72 This matches an immediate operand only when value is in range -128..127
73 T trap vector immediate data. Stored as 4 bits.
74
75 k K-factor for fmove.p instruction. Stored as a 7-bit constant or
76 a three bit register offset, depending on the field type.
77
78 # immediate data. Stored in special places (b, w or l)
79 which say how many bits to store.
80 ^ immediate data for floating point instructions. Special places
81 are offset by 2 bytes from '#'...
82 B pc-relative address, converted to an offset
83 that is treated as immediate data.
84 d displacement and register. Stores the register as 3 bits
85 and stores the displacement in the entire second word.
86
87 C the CCR. No need to store it; this is just for filtering validity.
88 S the SR. No need to store, just as with CCR.
89 U the USP. No need to store, just as with CCR.
90
91 I Coprocessor ID. Not printed if 1. The Coprocessor ID is always
92 extracted from the 'd' field of word one, which means that an extended
93 coprocessor opcode can be skipped using the 'i' place, if needed.
94
95 s System Control register for the floating point coprocessor.
96 S List of system control registers for floating point coprocessor.
97
98 J Misc register for movec instruction, stored in 'j' format.
99 Possible values:
100 000 SFC Source Function Code reg
101 001 DFC Data Function Code reg
102 002 CACR Cache Control Register
103 800 USP User Stack Pointer
104 801 VBR Vector Base reg
105 802 CAAR Cache Address Register
106 803 MSP Master Stack Pointer
107 804 ISP Interrupt Stack Pointer
108
109 L Register list of the type d0-d7/a0-a7 etc.
110 (New! Improved! Can also hold fp0-fp7, as well!)
111 The assembler tries to see if the registers match the insn by
112 looking at where the insn wants them stored.
113
114 l Register list like L, but with all the bits reversed.
115 Used for going the other way. . .
116
117 They are all stored as 6 bits using an address mode and a register number;
118 they differ in which addressing modes they match.
119
120 * all (modes 0-6,7.*)
121 ~ alterable memory (modes 2-6,7.0,7.1)(not 0,1,7.~)
122 % alterable (modes 0-6,7.0,7.1)(not 7.~)
123 ; data (modes 0,2-6,7.*)(not 1)
124 @ data, but not immediate (modes 0,2-6,7.? ? ?)(not 1,7.?) This may really be ;, the 68020 book says it is
125 ! control (modes 2,5,6,7.*-)(not 0,1,3,4,7.4)
126 & alterable control (modes 2,5,6,7.0,7.1)(not 0,1,7.? ? ?)
127 $ alterable data (modes 0,2-6,7.0,7.1)(not 1,7.~)
128 ? alterable control, or data register (modes 0,2,5,6,7.0,7.1)(not 1,3,4,7.~)
129 / control, or data register (modes 0,2,5,6,7.0,7.1,7.2,7.3)(not 1,3,4,7.4)
130 */
131
132 /* JF: for the 68851 */
133 /*
134 I didn't use much imagination in choosing the
135 following codes, so many of them aren't very
136 mnemonic. -rab
137
138 P pmmu register
139 Possible values:
140 000 TC Translation Control reg
141 100 CAL Current Access Level
142 101 VAL Validate Access Level
143 110 SCC Stack Change Control
144 111 AC Access Control
145
146 W wide pmmu registers
147 Possible values:
148 001 DRP Dma Root Pointer
149 010 SRP Supervisor Root Pointer
150 011 CRP Cpu Root Pointer
151
152 f function code register
153 0 SFC
154 1 DFC
155
156 V VAL register only
157
158 X BADx, BACx
159 100 BAD Breakpoint Acknowledge Data
160 101 BAC Breakpoint Acknowledge Control
161
162 Y PSR
163 Z PCSR
164
165 | memory (modes 2-6, 7.*)
166
167 */
168
169 /* Places to put an operand, for non-general operands:
170 s source, low bits of first word.
171 d dest, shifted 9 in first word
172 1 second word, shifted 12
173 2 second word, shifted 6
174 3 second word, shifted 0
175 4 third word, shifted 12
176 5 third word, shifted 6
177 6 third word, shifted 0
178 7 second word, shifted 7
179 8 second word, shifted 10
180 D store in both place 1 and place 3; for divul and divsl.
181 b second word, low byte
182 w second word (entire)
183 l second and third word (entire)
184 g branch offset for bra and similar instructions.
185 The place to store depends on the magnitude of offset.
186 t store in both place 7 and place 8; for floating point operations
187 c branch offset for cpBcc operations.
188 The place to store is word two if bit six of word one is zero,
189 and words two and three if bit six of word one is one.
190 i Increment by two, to skip over coprocessor extended operands. Only
191 works with the 'I' format.
192 k Dynamic K-factor field. Bits 6-4 of word 2, used as a register number.
193 Also used for dynamic fmovem instruction.
194 C floating point coprocessor constant - 7 bits. Also used for static
195 K-factors...
196 j Movec register #, stored in 12 low bits of second word.
197
198 Places to put operand, for general operands:
199 d destination, shifted 6 bits in first word
200 b source, at low bit of first word, and immediate uses one byte
201 w source, at low bit of first word, and immediate uses two bytes
202 l source, at low bit of first word, and immediate uses four bytes
203 s source, at low bit of first word.
204 Used sometimes in contexts where immediate is not allowed anyway.
205 f single precision float, low bit of 1st word, immediate uses 4 bytes
206 F double precision float, low bit of 1st word, immediate uses 8 bytes
207 x extended precision float, low bit of 1st word, immediate uses 12 bytes
208 p packed float, low bit of 1st word, immediate uses 12 bytes
209 */
210
211 #define one(x) ((x) << 16)
212 #define two(x, y) (((x) << 16) + y)
213
214 /*
215 *** DANGER WILL ROBINSON ***
216
217 The assembler requires that all instances of the same mnemonic must be
218 consecutive. If they aren't, the assembler will bomb at runtime
219 */
220 struct m68k_opcode m68k_opcodes[] =
221 {
222 {"abcd", one(0140400), one(0170770), "DsDd"},
223 {"abcd", one(0140410), one(0170770), "-s-d"},
224
225 /* Add instructions */
226 {"addal", one(0150700), one(0170700), "*lAd"},
227 {"addaw", one(0150300), one(0170700), "*wAd"},
228 {"addib", one(0003000), one(0177700), "#b$b"},
229 {"addil", one(0003200), one(0177700), "#l$l"},
230 {"addiw", one(0003100), one(0177700), "#w$w"},
231 {"addqb", one(0050000), one(0170700), "Qd$b"},
232 {"addql", one(0050200), one(0170700), "Qd%l"},
233 {"addqw", one(0050100), one(0170700), "Qd%w"},
234
235 {"addb", one(0050000), one(0170700), "Qd$b"}, /* addq written as add */
236 {"addb", one(0003000), one(0177700), "#b$b"}, /* addi written as add */
237 {"addb", one(0150000), one(0170700), ";bDd"}, /* addb <ea>, Dd */
238 {"addb", one(0150400), one(0170700), "Dd~b"}, /* addb Dd, <ea> */
239
240 {"addw", one(0050100), one(0170700), "Qd%w"}, /* addq written as add */
241 {"addw", one(0003100), one(0177700), "#w$w"}, /* addi written as add */
242 {"addw", one(0150300), one(0170700), "*wAd"}, /* adda written as add */
243 {"addw", one(0150100), one(0170700), "*wDd"}, /* addw <ea>, Dd */
244 {"addw", one(0150500), one(0170700), "Dd~w"}, /* addw Dd, <ea> */
245
246 {"addl", one(0050200), one(0170700), "Qd%l"}, /* addq written as add */
247 {"addl", one(0003200), one(0177700), "#l$l"}, /* addi written as add */
248 {"addl", one(0150700), one(0170700), "*lAd"}, /* adda written as add */
249 {"addl", one(0150200), one(0170700), "*lDd"}, /* addl <ea>, Dd */
250 {"addl", one(0150600), one(0170700), "Dd~l"}, /* addl Dd, <ea> */
251
252 {"addxb", one(0150400), one(0170770), "DsDd"},
253 {"addxb", one(0150410), one(0170770), "-s-d"},
254 {"addxl", one(0150600), one(0170770), "DsDd"},
255 {"addxl", one(0150610), one(0170770), "-s-d"},
256 {"addxw", one(0150500), one(0170770), "DsDd"},
257 {"addxw", one(0150510), one(0170770), "-s-d"},
258
259 {"andib", one(0001000), one(0177700), "#b$b"},
260 {"andib", one(0001074), one(0177777), "#bCb"}, /* andi to ccr */
261 {"andiw", one(0001100), one(0177700), "#w$w"},
262 {"andiw", one(0001174), one(0177777), "#wSw"}, /* andi to sr */
263 {"andil", one(0001200), one(0177700), "#l$l"},
264
265 {"andb", one(0001000), one(0177700), "#b$b"}, /* andi written as or */
266 {"andb", one(0001074), one(0177777), "#bCb"}, /* andi to ccr */
267 {"andb", one(0140000), one(0170700), ";bDd"}, /* memory to register */
268 {"andb", one(0140400), one(0170700), "Dd~b"}, /* register to memory */
269 {"andw", one(0001100), one(0177700), "#w$w"}, /* andi written as or */
270 {"andw", one(0001174), one(0177777), "#wSw"}, /* andi to sr */
271 {"andw", one(0140100), one(0170700), ";wDd"}, /* memory to register */
272 {"andw", one(0140500), one(0170700), "Dd~w"}, /* register to memory */
273 {"andl", one(0001200), one(0177700), "#l$l"}, /* andi written as or */
274 {"andl", one(0140200), one(0170700), ";lDd"}, /* memory to register */
275 {"andl", one(0140600), one(0170700), "Dd~l"}, /* register to memory */
276
277 {"aslb", one(0160400), one(0170770), "QdDs"},
278 {"aslb", one(0160440), one(0170770), "DdDs"},
279 {"asll", one(0160600), one(0170770), "QdDs"},
280 {"asll", one(0160640), one(0170770), "DdDs"},
281 {"aslw", one(0160500), one(0170770), "QdDs"},
282 {"aslw", one(0160540), one(0170770), "DdDs"},
283 {"aslw", one(0160700), one(0177700), "~s"}, /* Shift memory */
284 {"asrb", one(0160000), one(0170770), "QdDs"},
285 {"asrb", one(0160040), one(0170770), "DdDs"},
286 {"asrl", one(0160200), one(0170770), "QdDs"},
287 {"asrl", one(0160240), one(0170770), "DdDs"},
288 {"asrw", one(0160100), one(0170770), "QdDs"},
289 {"asrw", one(0160140), one(0170770), "DdDs"},
290 {"asrw", one(0160300), one(0177700), "~s"}, /* Shift memory */
291
292 {"bhi", one(0061000), one(0177400), "Bg"},
293 {"bls", one(0061400), one(0177400), "Bg"},
294 {"bcc", one(0062000), one(0177400), "Bg"},
295 {"bcs", one(0062400), one(0177400), "Bg"},
296 {"bne", one(0063000), one(0177400), "Bg"},
297 {"beq", one(0063400), one(0177400), "Bg"},
298 {"bvc", one(0064000), one(0177400), "Bg"},
299 {"bvs", one(0064400), one(0177400), "Bg"},
300 {"bpl", one(0065000), one(0177400), "Bg"},
301 {"bmi", one(0065400), one(0177400), "Bg"},
302 {"bge", one(0066000), one(0177400), "Bg"},
303 {"blt", one(0066400), one(0177400), "Bg"},
304 {"bgt", one(0067000), one(0177400), "Bg"},
305 {"ble", one(0067400), one(0177400), "Bg"},
306
307 {"bchg", one(0000500), one(0170700), "Dd$s"},
308 {"bchg", one(0004100), one(0177700), "#b$s"},
309 {"bclr", one(0000600), one(0170700), "Dd$s"},
310 {"bclr", one(0004200), one(0177700), "#b$s"},
311 {"bfchg", two(0165300, 0), two(0177700, 0170000), "?sO2O3"},
312 {"bfclr", two(0166300, 0), two(0177700, 0170000), "?sO2O3"},
313 {"bfexts", two(0165700, 0), two(0177700, 0100000), "/sO2O3D1"},
314 {"bfextu", two(0164700, 0), two(0177700, 0100000), "/sO2O3D1"},
315 {"bfffo", two(0166700, 0), two(0177700, 0100000), "/sO2O3D1"},
316 {"bfins", two(0167700, 0), two(0177700, 0100000), "D1?sO2O3"},
317 {"bfset", two(0167300, 0), two(0177700, 0170000), "?sO2O3"},
318 {"bftst", two(0164300, 0), two(0177700, 0170000), "/sO2O3"},
319 {"bset", one(0000700), one(0170700), "Dd$s"},
320 {"bset", one(0004300), one(0177700), "#b$s"},
321 {"btst", one(0000400), one(0170700), "Dd@s"},
322 {"btst", one(0004000), one(0177700), "#b@s"},
323
324 {"bkpt", one(0044110), one(0177770), "Qs"},
325 {"bra", one(0060000), one(0177400), "Bg"},
326 {"bras", one(0060000), one(0177400), "Bw"},
327 {"bsr", one(0060400), one(0177400), "Bg"},
328 {"bsrs", one(0060400), one(0177400), "Bw"},
329
330 {"callm", one(0003300), one(0177700), "#b!s"},
331 {"cas2l", two(0007374, 0), two(0177777, 0107070), "D3D6D2D5R1R4"}, /* JF FOO this is really a 3 word ins */
332 {"cas2w", two(0006374, 0), two(0177777, 0107070), "D3D6D2D5R1R4"}, /* JF ditto */
333 {"casb", two(0005300, 0), two(0177700, 0177070), "D3D2~s"},
334 {"casl", two(0007300, 0), two(0177700, 0177070), "D3D2~s"},
335 {"casw", two(0006300, 0), two(0177700, 0177070), "D3D2~s"},
336
337 /* {"chk", one(0040600), one(0170700), ";wDd"}, JF FOO this looks wrong */
338 {"chk2b", two(0000300, 0004000), two(0177700, 07777), "!sR1"},
339 {"chk2l", two(0002300, 0004000), two(0177700, 07777), "!sR1"},
340 {"chk2w", two(0001300, 0004000), two(0177700, 07777), "!sR1"},
341 {"chkl", one(0040400), one(0170700), ";lDd"},
342 {"chkw", one(0040600), one(0170700), ";wDd"},
343 {"clrb", one(0041000), one(0177700), "$s"},
344 {"clrl", one(0041200), one(0177700), "$s"},
345 {"clrw", one(0041100), one(0177700), "$s"},
346
347 {"cmp2b", two(0000300, 0), two(0177700, 07777), "!sR1"},
348 {"cmp2l", two(0002300, 0), two(0177700, 07777), "!sR1"},
349 {"cmp2w", two(0001300, 0), two(0177700, 07777), "!sR1"},
350 {"cmpal", one(0130700), one(0170700), "*lAd"},
351 {"cmpaw", one(0130300), one(0170700), "*wAd"},
352 {"cmpib", one(0006000), one(0177700), "#b;b"},
353 {"cmpil", one(0006200), one(0177700), "#l;l"},
354 {"cmpiw", one(0006100), one(0177700), "#w;w"},
355 {"cmpb", one(0006000), one(0177700), "#b;b"}, /* cmpi written as cmp */
356 {"cmpb", one(0130000), one(0170700), ";bDd"},
357 {"cmpw", one(0006100), one(0177700), "#w;w"},
358 {"cmpw", one(0130100), one(0170700), "*wDd"},
359 {"cmpw", one(0130300), one(0170700), "*wAd"}, /* cmpa written as cmp */
360 {"cmpl", one(0006200), one(0177700), "#l;l"},
361 {"cmpl", one(0130200), one(0170700), "*lDd"},
362 {"cmpl", one(0130700), one(0170700), "*lAd"},
363 {"cmpmb", one(0130410), one(0170770), "+s+d"},
364 {"cmpml", one(0130610), one(0170770), "+s+d"},
365 {"cmpmw", one(0130510), one(0170770), "+s+d"},
366
367 {"dbcc", one(0052310), one(0177770), "DsBw"},
368 {"dbcs", one(0052710), one(0177770), "DsBw"},
369 {"dbeq", one(0053710), one(0177770), "DsBw"},
370 {"dbf", one(0050710), one(0177770), "DsBw"},
371 {"dbge", one(0056310), one(0177770), "DsBw"},
372 {"dbgt", one(0057310), one(0177770), "DsBw"},
373 {"dbhi", one(0051310), one(0177770), "DsBw"},
374 {"dble", one(0057710), one(0177770), "DsBw"},
375 {"dbls", one(0051710), one(0177770), "DsBw"},
376 {"dblt", one(0056710), one(0177770), "DsBw"},
377 {"dbmi", one(0055710), one(0177770), "DsBw"},
378 {"dbne", one(0053310), one(0177770), "DsBw"},
379 {"dbpl", one(0055310), one(0177770), "DsBw"},
380 {"dbra", one(0050710), one(0177770), "DsBw"},
381 {"dbt", one(0050310), one(0177770), "DsBw"},
382 {"dbvc", one(0054310), one(0177770), "DsBw"},
383 {"dbvs", one(0054710), one(0177770), "DsBw"},
384
385 {"divsl", two(0046100, 0006000), two(0177700, 0107770), ";lD3D1"},
386 {"divsl", two(0046100, 0004000), two(0177700, 0107770), ";lDD"},
387 {"divsll", two(0046100, 0004000), two(0177700, 0107770), ";lD3D1"},
388 {"divsw", one(0100700), one(0170700), ";wDd"},
389 {"divs", one(0100700), one(0170700), ";wDd"},
390 {"divul", two(0046100, 0002000), two(0177700, 0107770), ";lD3D1"},
391 {"divul", two(0046100, 0000000), two(0177700, 0107770), ";lDD"},
392 {"divull", two(0046100, 0000000), two(0177700, 0107770), ";lD3D1"},
393 {"divuw", one(0100300), one(0170700), ";wDd"},
394 {"divu", one(0100300), one(0170700), ";wDd"},
395 {"eorb", one(0005000), one(0177700), "#b$s"}, /* eori written as or */
396 {"eorb", one(0005074), one(0177777), "#bCs"}, /* eori to ccr */
397 {"eorb", one(0130400), one(0170700), "Dd$s"}, /* register to memory */
398 {"eorib", one(0005000), one(0177700), "#b$s"},
399 {"eorib", one(0005074), one(0177777), "#bCs"}, /* eori to ccr */
400 {"eoril", one(0005200), one(0177700), "#l$s"},
401 {"eoriw", one(0005100), one(0177700), "#w$s"},
402 {"eoriw", one(0005174), one(0177777), "#wSs"}, /* eori to sr */
403 {"eorl", one(0005200), one(0177700), "#l$s"},
404 {"eorl", one(0130600), one(0170700), "Dd$s"},
405 {"eorw", one(0005100), one(0177700), "#w$s"},
406 {"eorw", one(0005174), one(0177777), "#wSs"}, /* eori to sr */
407 {"eorw", one(0130500), one(0170700), "Dd$s"},
408
409 {"exg", one(0140500), one(0170770), "DdDs"},
410 {"exg", one(0140510), one(0170770), "AdAs"},
411 {"exg", one(0140610), one(0170770), "DdAs"},
412 {"exg", one(0140610), one(0170770), "AsDd"},
413
414 {"extw", one(0044200), one(0177770), "Ds"},
415 {"extl", one(0044300), one(0177770), "Ds"},
416 {"extbl", one(0044700), one(0177770), "Ds"},
417 {"extb.l", one(0044700), one(0177770), "Ds"}, /* Not sure we should support this one*/
418
419 {"illegal", one(0045374), one(0177777), ""},
420 {"jmp", one(0047300), one(0177700), "!s"},
421 {"jsr", one(0047200), one(0177700), "!s"},
422 {"lea", one(0040700), one(0170700), "!sAd"},
423 {"linkw", one(0047120), one(0177770), "As#w"},
424 {"linkl", one(0044010), one(0177770), "As#l"},
425 {"link", one(0047120), one(0177770), "As#w"},
426 {"link", one(0044010), one(0177770), "As#l"},
427
428 {"lslb", one(0160410), one(0170770), "QdDs"}, /* lsrb #Q, Ds */
429 {"lslb", one(0160450), one(0170770), "DdDs"}, /* lsrb Dd, Ds */
430 {"lslw", one(0160510), one(0170770), "QdDs"}, /* lsrb #Q, Ds */
431 {"lslw", one(0160550), one(0170770), "DdDs"}, /* lsrb Dd, Ds */
432 {"lslw", one(0161700), one(0177700), "~s"}, /* Shift memory */
433 {"lsll", one(0160610), one(0170770), "QdDs"}, /* lsrb #Q, Ds */
434 {"lsll", one(0160650), one(0170770), "DdDs"}, /* lsrb Dd, Ds */
435
436 {"lsrb", one(0160010), one(0170770), "QdDs"} /* lsrb #Q, Ds */,
437 {"lsrb", one(0160050), one(0170770), "DdDs"}, /* lsrb Dd, Ds */
438 {"lsrl", one(0160210), one(0170770), "QdDs"}, /* lsrb #Q, Ds */
439 {"lsrl", one(0160250), one(0170770), "DdDs"}, /* lsrb #Q, Ds */
440 {"lsrw", one(0160110), one(0170770), "QdDs"}, /* lsrb #Q, Ds */
441 {"lsrw", one(0160150), one(0170770), "DdDs"}, /* lsrb #Q, Ds */
442 {"lsrw", one(0161300), one(0177700), "~s"}, /* Shift memory */
443
444 {"moveal", one(0020100), one(0170700), "*lAd"},
445 {"moveaw", one(0030100), one(0170700), "*wAd"},
446 {"moveb", one(0010000), one(0170000), ";b$d"}, /* move */
447 {"movel", one(0070000), one(0170400), "MsDd"}, /* moveq written as move */
448 {"movel", one(0020000), one(0170000), "*l$d"},
449 {"movel", one(0020100), one(0170700), "*lAd"},
450 {"movel", one(0047140), one(0177770), "AsUd"}, /* move to USP */
451 {"movel", one(0047150), one(0177770), "UdAs"}, /* move from USP */
452
453 {"movec", one(0047173), one(0177777), "R1Jj"},
454 {"movec", one(0047173), one(0177777), "R1#j"},
455 {"movec", one(0047172), one(0177777), "JjR1"},
456 {"movec", one(0047172), one(0177777), "#jR1"},
457
458 /* JF added these next four for the assembler */
459 {"moveml", one(0044300), one(0177700), "Lw&s"}, /* movem reg to mem. */
460 {"moveml", one(0044340), one(0177770), "lw-s"}, /* movem reg to autodecrement. */
461 {"moveml", one(0046300), one(0177700), "!sLw"}, /* movem mem to reg. */
462 {"moveml", one(0046330), one(0177770), "+sLw"}, /* movem autoinc to reg. */
463
464 {"moveml", one(0044300), one(0177700), "#w&s"}, /* movem reg to mem. */
465 {"moveml", one(0044340), one(0177770), "#w-s"}, /* movem reg to autodecrement. */
466 {"moveml", one(0046300), one(0177700), "!s#w"}, /* movem mem to reg. */
467 {"moveml", one(0046330), one(0177770), "+s#w"}, /* movem autoinc to reg. */
468
469 /* JF added these next four for the assembler */
470 {"movemw", one(0044200), one(0177700), "Lw&s"}, /* movem reg to mem. */
471 {"movemw", one(0044240), one(0177770), "lw-s"}, /* movem reg to autodecrement. */
472 {"movemw", one(0046200), one(0177700), "!sLw"}, /* movem mem to reg. */
473 {"movemw", one(0046230), one(0177770), "+sLw"}, /* movem autoinc to reg. */
474
475 {"movemw", one(0044200), one(0177700), "#w&s"}, /* movem reg to mem. */
476 {"movemw", one(0044240), one(0177770), "#w-s"}, /* movem reg to autodecrement. */
477 {"movemw", one(0046200), one(0177700), "!s#w"}, /* movem mem to reg. */
478 {"movemw", one(0046230), one(0177770), "+s#w"}, /* movem autoinc to reg. */
479
480 {"movepl", one(0000510), one(0170770), "dsDd"}, /* memory to register */
481 {"movepl", one(0000710), one(0170770), "Ddds"}, /* register to memory */
482 {"movepw", one(0000410), one(0170770), "dsDd"}, /* memory to register */
483 {"movepw", one(0000610), one(0170770), "Ddds"}, /* register to memory */
484 {"moveq", one(0070000), one(0170400), "MsDd"},
485 {"movew", one(0030000), one(0170000), "*w$d"},
486 {"movew", one(0030100), one(0170700), "*wAd"}, /* movea, written as move */
487 {"movew", one(0040300), one(0177700), "Ss$s"}, /* Move from sr */
488 {"movew", one(0041300), one(0177700), "Cs$s"}, /* Move from ccr */
489 {"movew", one(0042300), one(0177700), ";wCd"}, /* move to ccr */
490 {"movew", one(0043300), one(0177700), ";wSd"}, /* move to sr */
491
492 {"movesb", two(0007000, 0), two(0177700, 07777), "~sR1"}, /* moves from memory */
493 {"movesb", two(0007000, 04000), two(0177700, 07777), "R1~s"}, /* moves to memory */
494 {"movesl", two(0007200, 0), two(0177700, 07777), "~sR1"}, /* moves from memory */
495 {"movesl", two(0007200, 04000), two(0177700, 07777), "R1~s"}, /* moves to memory */
496 {"movesw", two(0007100, 0), two(0177700, 07777), "~sR1"}, /* moves from memory */
497 {"movesw", two(0007100, 04000), two(0177700, 07777), "R1~s"}, /* moves to memory */
498
499 {"mulsl", two(0046000, 004000), two(0177700, 0107770), ";lD1"},
500 {"mulsl", two(0046000, 006000), two(0177700, 0107770), ";lD3D1"},
501 {"mulsw", one(0140700), one(0170700), ";wDd"},
502 {"muls", one(0140700), one(0170700), ";wDd"},
503 {"mulul", two(0046000, 000000), two(0177700, 0107770), ";lD1"},
504 {"mulul", two(0046000, 002000), two(0177700, 0107770), ";lD3D1"},
505 {"muluw", one(0140300), one(0170700), ";wDd"},
506 {"mulu", one(0140300), one(0170700), ";wDd"},
507 {"nbcd", one(0044000), one(0177700), "$s"},
508 {"negb", one(0042000), one(0177700), "$s"},
509 {"negl", one(0042200), one(0177700), "$s"},
510 {"negw", one(0042100), one(0177700), "$s"},
511 {"negxb", one(0040000), one(0177700), "$s"},
512 {"negxl", one(0040200), one(0177700), "$s"},
513 {"negxw", one(0040100), one(0177700), "$s"},
514 {"nop", one(0047161), one(0177777), ""},
515 {"notb", one(0043000), one(0177700), "$s"},
516 {"notl", one(0043200), one(0177700), "$s"},
517 {"notw", one(0043100), one(0177700), "$s"},
518
519 {"orb", one(0000000), one(0177700), "#b$s"}, /* ori written as or */
520 {"orb", one(0000074), one(0177777), "#bCs"}, /* ori to ccr */
521 {"orb", one(0100000), one(0170700), ";bDd"}, /* memory to register */
522 {"orb", one(0100400), one(0170700), "Dd~s"}, /* register to memory */
523 {"orib", one(0000000), one(0177700), "#b$s"},
524 {"orib", one(0000074), one(0177777), "#bCs"}, /* ori to ccr */
525 {"oril", one(0000200), one(0177700), "#l$s"},
526 {"oriw", one(0000100), one(0177700), "#w$s"},
527 {"oriw", one(0000174), one(0177777), "#wSs"}, /* ori to sr */
528 {"orl", one(0000200), one(0177700), "#l$s"},
529 {"orl", one(0100200), one(0170700), ";lDd"}, /* memory to register */
530 {"orl", one(0100600), one(0170700), "Dd~s"}, /* register to memory */
531 {"orw", one(0000100), one(0177700), "#w$s"},
532 {"orw", one(0000174), one(0177777), "#wSs"}, /* ori to sr */
533 {"orw", one(0100100), one(0170700), ";wDd"}, /* memory to register */
534 {"orw", one(0100500), one(0170700), "Dd~s"}, /* register to memory */
535
536 {"pack", one(0100500), one(0170770), "DsDd#w"}, /* pack Ds, Dd, #w */
537 {"pack", one(0100510), one(0170770), "-s-d#w"}, /* pack -(As), -(Ad), #w */
538 {"pea", one(0044100), one(0177700), "!s"},
539 {"reset", one(0047160), one(0177777), ""},
540
541 {"rolb", one(0160430), one(0170770), "QdDs"}, /* rorb #Q, Ds */
542 {"rolb", one(0160470), one(0170770), "DdDs"}, /* rorb Dd, Ds */
543 {"roll", one(0160630), one(0170770), "QdDs"}, /* rorb #Q, Ds */
544 {"roll", one(0160670), one(0170770), "DdDs"}, /* rorb Dd, Ds */
545 {"rolw", one(0160530), one(0170770), "QdDs"}, /* rorb #Q, Ds */
546 {"rolw", one(0160570), one(0170770), "DdDs"}, /* rorb Dd, Ds */
547 {"rolw", one(0163700), one(0177700), "~s"}, /* Rotate memory */
548 {"rorb", one(0160030), one(0170770), "QdDs"}, /* rorb #Q, Ds */
549 {"rorb", one(0160070), one(0170770), "DdDs"}, /* rorb Dd, Ds */
550 {"rorl", one(0160230), one(0170770), "QdDs"}, /* rorb #Q, Ds */
551 {"rorl", one(0160270), one(0170770), "DdDs"}, /* rorb Dd, Ds */
552 {"rorw", one(0160130), one(0170770), "QdDs"}, /* rorb #Q, Ds */
553 {"rorw", one(0160170), one(0170770), "DdDs"}, /* rorb Dd, Ds */
554 {"rorw", one(0163300), one(0177700), "~s"}, /* Rotate memory */
555
556 {"roxlb", one(0160420), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
557 {"roxlb", one(0160460), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
558 {"roxll", one(0160620), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
559 {"roxll", one(0160660), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
560 {"roxlw", one(0160520), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
561 {"roxlw", one(0160560), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
562 {"roxlw", one(0162700), one(0177700), "~s"}, /* Rotate memory */
563 {"roxrb", one(0160020), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
564 {"roxrb", one(0160060), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
565 {"roxrl", one(0160220), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
566 {"roxrl", one(0160260), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
567 {"roxrw", one(0160120), one(0170770), "QdDs"}, /* roxrb #Q, Ds */
568 {"roxrw", one(0160160), one(0170770), "DdDs"}, /* roxrb Dd, Ds */
569 {"roxrw", one(0162300), one(0177700), "~s"}, /* Rotate memory */
570
571 {"rtd", one(0047164), one(0177777), "#w"},
572 {"rte", one(0047163), one(0177777), ""},
573 {"rtm", one(0003300), one(0177760), "Rs"},
574 {"rtr", one(0047167), one(0177777), ""},
575 {"rts", one(0047165), one(0177777), ""},
576
577 {"scc", one(0052300), one(0177700), "$s"},
578 {"scs", one(0052700), one(0177700), "$s"},
579 {"seq", one(0053700), one(0177700), "$s"},
580 {"sf", one(0050700), one(0177700), "$s"},
581 {"sge", one(0056300), one(0177700), "$s"},
582 {"sgt", one(0057300), one(0177700), "$s"},
583 {"shi", one(0051300), one(0177700), "$s"},
584 {"sle", one(0057700), one(0177700), "$s"},
585 {"sls", one(0051700), one(0177700), "$s"},
586 {"slt", one(0056700), one(0177700), "$s"},
587 {"smi", one(0055700), one(0177700), "$s"},
588 {"sne", one(0053300), one(0177700), "$s"},
589 {"spl", one(0055300), one(0177700), "$s"},
590 {"st", one(0050300), one(0177700), "$s"},
591 {"svc", one(0054300), one(0177700), "$s"},
592 {"svs", one(0054700), one(0177700), "$s"},
593
594 {"sbcd", one(0100400), one(0170770), "DsDd"},
595 {"sbcd", one(0100410), one(0170770), "-s-d"},
596 {"stop", one(0047162), one(0177777), "#w"},
597
598 {"subal", one(0110700), one(0170700), "*lAd"},
599 {"subaw", one(0110300), one(0170700), "*wAd"},
600 {"subb", one(0050400), one(0170700), "Qd%s"}, /* subq written as sub */
601 {"subb", one(0002000), one(0177700), "#b$s"}, /* subi written as sub */
602 {"subb", one(0110000), one(0170700), ";bDd"}, /* subb ? ?, Dd */
603 {"subb", one(0110400), one(0170700), "Dd~s"}, /* subb Dd, ? ? */
604 {"subib", one(0002000), one(0177700), "#b$s"},
605 {"subil", one(0002200), one(0177700), "#l$s"},
606 {"subiw", one(0002100), one(0177700), "#w$s"},
607 {"subl", one(0050600), one(0170700), "Qd%s"},
608 {"subl", one(0002200), one(0177700), "#l$s"},
609 {"subl", one(0110700), one(0170700), "*lAd"},
610 {"subl", one(0110200), one(0170700), "*lDd"},
611 {"subl", one(0110600), one(0170700), "Dd~s"},
612 {"subqb", one(0050400), one(0170700), "Qd%s"},
613 {"subql", one(0050600), one(0170700), "Qd%s"},
614 {"subqw", one(0050500), one(0170700), "Qd%s"},
615 {"subw", one(0050500), one(0170700), "Qd%s"},
616 {"subw", one(0002100), one(0177700), "#w$s"},
617 {"subw", one(0110100), one(0170700), "*wDd"},
618 {"subw", one(0110300), one(0170700), "*wAd"}, /* suba written as sub */
619 {"subw", one(0110500), one(0170700), "Dd~s"},
620 {"subxb", one(0110400), one(0170770), "DsDd"}, /* subxb Ds, Dd */
621 {"subxb", one(0110410), one(0170770), "-s-d"}, /* subxb -(As), -(Ad) */
622 {"subxl", one(0110600), one(0170770), "DsDd"},
623 {"subxl", one(0110610), one(0170770), "-s-d"},
624 {"subxw", one(0110500), one(0170770), "DsDd"},
625 {"subxw", one(0110510), one(0170770), "-s-d"},
626
627 {"swap", one(0044100), one(0177770), "Ds"},
628
629 {"tas", one(0045300), one(0177700), "$s"},
630 {"trap", one(0047100), one(0177760), "Ts"},
631
632 {"trapcc", one(0052374), one(0177777), ""},
633 {"trapcs", one(0052774), one(0177777), ""},
634 {"trapeq", one(0053774), one(0177777), ""},
635 {"trapf", one(0050774), one(0177777), ""},
636 {"trapge", one(0056374), one(0177777), ""},
637 {"trapgt", one(0057374), one(0177777), ""},
638 {"traphi", one(0051374), one(0177777), ""},
639 {"traple", one(0057774), one(0177777), ""},
640 {"trapls", one(0051774), one(0177777), ""},
641 {"traplt", one(0056774), one(0177777), ""},
642 {"trapmi", one(0055774), one(0177777), ""},
643 {"trapne", one(0053374), one(0177777), ""},
644 {"trappl", one(0055374), one(0177777), ""},
645 {"trapt", one(0050374), one(0177777), ""},
646 {"trapvc", one(0054374), one(0177777), ""},
647 {"trapvs", one(0054774), one(0177777), ""},
648
649 {"trapcc.w", one(0052372), one(0177777), ""},
650 {"trapcs.w", one(0052772), one(0177777), ""},
651 {"trapeq.w", one(0053772), one(0177777), ""},
652 {"trapf.w", one(0050772), one(0177777), ""},
653 {"trapge.w", one(0056372), one(0177777), ""},
654 {"trapgt.w", one(0057372), one(0177777), ""},
655 {"traphi.w", one(0051372), one(0177777), ""},
656 {"traple.w", one(0057772), one(0177777), ""},
657 {"trapls.w", one(0051772), one(0177777), ""},
658 {"traplt.w", one(0056772), one(0177777), ""},
659 {"trapmi.w", one(0055772), one(0177777), ""},
660 {"trapne.w", one(0053372), one(0177777), ""},
661 {"trappl.w", one(0055372), one(0177777), ""},
662 {"trapt.w", one(0050372), one(0177777), ""},
663 {"trapvc.w", one(0054372), one(0177777), ""},
664 {"trapvs.w", one(0054772), one(0177777), ""},
665
666 {"trapcc.l", one(0052373), one(0177777), ""},
667 {"trapcs.l", one(0052773), one(0177777), ""},
668 {"trapeq.l", one(0053773), one(0177777), ""},
669 {"trapf.l", one(0050773), one(0177777), ""},
670 {"trapge.l", one(0056373), one(0177777), ""},
671 {"trapgt.l", one(0057373), one(0177777), ""},
672 {"traphi.l", one(0051373), one(0177777), ""},
673 {"traple.l", one(0057773), one(0177777), ""},
674 {"trapls.l", one(0051773), one(0177777), ""},
675 {"traplt.l", one(0056773), one(0177777), ""},
676 {"trapmi.l", one(0055773), one(0177777), ""},
677 {"trapne.l", one(0053373), one(0177777), ""},
678 {"trappl.l", one(0055373), one(0177777), ""},
679 {"trapt.l", one(0050373), one(0177777), ""},
680 {"trapvc.l", one(0054373), one(0177777), ""},
681 {"trapvs.l", one(0054773), one(0177777), ""},
682
683 {"trapv", one(0047166), one(0177777), ""},
684
685 {"tstb", one(0045000), one(0177700), ";b"},
686 {"tstw", one(0045100), one(0177700), "*w"},
687 {"tstl", one(0045200), one(0177700), "*l"},
688
689 {"unlk", one(0047130), one(0177770), "As"},
690 {"unpk", one(0100600), one(0170770), "DsDd#w"},
691 {"unpk", one(0100610), one(0170770), "-s-d#w"},
692 /* JF floating pt stuff moved down here */
693
694 {"fabsb", two(0xF000, 0x5818), two(0xF1C0, 0xFC7F), "Ii;bF7"},
695 {"fabsd", two(0xF000, 0x5418), two(0xF1C0, 0xFC7F), "Ii;FF7"},
696 {"fabsl", two(0xF000, 0x4018), two(0xF1C0, 0xFC7F), "Ii;lF7"},
697 {"fabsp", two(0xF000, 0x4C18), two(0xF1C0, 0xFC7F), "Ii;pF7"},
698 {"fabss", two(0xF000, 0x4418), two(0xF1C0, 0xFC7F), "Ii;fF7"},
699 {"fabsw", two(0xF000, 0x5018), two(0xF1C0, 0xFC7F), "Ii;wF7"},
700 {"fabsx", two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiF8F7"},
701 {"fabsx", two(0xF000, 0x4818), two(0xF1C0, 0xFC7F), "Ii;xF7"},
702 {"fabsx", two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiFt"},
703
704 {"facosb", two(0xF000, 0x581C), two(0xF1C0, 0xFC7F), "Ii;bF7"},
705 {"facosd", two(0xF000, 0x541C), two(0xF1C0, 0xFC7F), "Ii;FF7"},
706 {"facosl", two(0xF000, 0x401C), two(0xF1C0, 0xFC7F), "Ii;lF7"},
707 {"facosp", two(0xF000, 0x4C1C), two(0xF1C0, 0xFC7F), "Ii;pF7"},
708 {"facoss", two(0xF000, 0x441C), two(0xF1C0, 0xFC7F), "Ii;fF7"},
709 {"facosw", two(0xF000, 0x501C), two(0xF1C0, 0xFC7F), "Ii;wF7"},
710 {"facosx", two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiF8F7"},
711 {"facosx", two(0xF000, 0x481C), two(0xF1C0, 0xFC7F), "Ii;xF7"},
712 {"facosx", two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiFt"},
713
714 {"faddb", two(0xF000, 0x5822), two(0xF1C0, 0xFC7F), "Ii;bF7"},
715 {"faddd", two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "Ii;FF7"},
716 {"faddl", two(0xF000, 0x4022), two(0xF1C0, 0xFC7F), "Ii;lF7"},
717 {"faddp", two(0xF000, 0x4C22), two(0xF1C0, 0xFC7F), "Ii;pF7"},
718 {"fadds", two(0xF000, 0x4422), two(0xF1C0, 0xFC7F), "Ii;fF7"},
719 {"faddw", two(0xF000, 0x5022), two(0xF1C0, 0xFC7F), "Ii;wF7"},
720 {"faddx", two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiF8F7"},
721 {"faddx", two(0xF000, 0x4822), two(0xF1C0, 0xFC7F), "Ii;xF7"},
722 /* {"faddx", two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiFt"}, JF removed */
723
724 {"fasinb", two(0xF000, 0x580C), two(0xF1C0, 0xFC7F), "Ii;bF7"},
725 {"fasind", two(0xF000, 0x540C), two(0xF1C0, 0xFC7F), "Ii;FF7"},
726 {"fasinl", two(0xF000, 0x400C), two(0xF1C0, 0xFC7F), "Ii;lF7"},
727 {"fasinp", two(0xF000, 0x4C0C), two(0xF1C0, 0xFC7F), "Ii;pF7"},
728 {"fasins", two(0xF000, 0x440C), two(0xF1C0, 0xFC7F), "Ii;fF7"},
729 {"fasinw", two(0xF000, 0x500C), two(0xF1C0, 0xFC7F), "Ii;wF7"},
730 {"fasinx", two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiF8F7"},
731 {"fasinx", two(0xF000, 0x480C), two(0xF1C0, 0xFC7F), "Ii;xF7"},
732 {"fasinx", two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiFt"},
733
734 {"fatanb", two(0xF000, 0x580A), two(0xF1C0, 0xFC7F), "Ii;bF7"},
735 {"fatand", two(0xF000, 0x540A), two(0xF1C0, 0xFC7F), "Ii;FF7"},
736 {"fatanl", two(0xF000, 0x400A), two(0xF1C0, 0xFC7F), "Ii;lF7"},
737 {"fatanp", two(0xF000, 0x4C0A), two(0xF1C0, 0xFC7F), "Ii;pF7"},
738 {"fatans", two(0xF000, 0x440A), two(0xF1C0, 0xFC7F), "Ii;fF7"},
739 {"fatanw", two(0xF000, 0x500A), two(0xF1C0, 0xFC7F), "Ii;wF7"},
740 {"fatanx", two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiF8F7"},
741 {"fatanx", two(0xF000, 0x480A), two(0xF1C0, 0xFC7F), "Ii;xF7"},
742 {"fatanx", two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiFt"},
743
744 {"fatanhb", two(0xF000, 0x580D), two(0xF1C0, 0xFC7F), "Ii;bF7"},
745 {"fatanhd", two(0xF000, 0x540D), two(0xF1C0, 0xFC7F), "Ii;FF7"},
746 {"fatanhl", two(0xF000, 0x400D), two(0xF1C0, 0xFC7F), "Ii;lF7"},
747 {"fatanhp", two(0xF000, 0x4C0D), two(0xF1C0, 0xFC7F), "Ii;pF7"},
748 {"fatanhs", two(0xF000, 0x440D), two(0xF1C0, 0xFC7F), "Ii;fF7"},
749 {"fatanhw", two(0xF000, 0x500D), two(0xF1C0, 0xFC7F), "Ii;wF7"},
750 {"fatanhx", two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiF8F7"},
751 {"fatanhx", two(0xF000, 0x480D), two(0xF1C0, 0xFC7F), "Ii;xF7"},
752 {"fatanhx", two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiFt"},
753
754 {"fbeq", one(0xF081), one(0xF1BF), "IdBc"},
755 {"fbf", one(0xF080), one(0xF1BF), "IdBc"},
756 {"fbge", one(0xF093), one(0xF1BF), "IdBc"},
757 {"fbgl", one(0xF096), one(0xF1BF), "IdBc"},
758 {"fbgle", one(0xF097), one(0xF1BF), "IdBc"},
759 {"fbgt", one(0xF092), one(0xF1BF), "IdBc"},
760 {"fble", one(0xF095), one(0xF1BF), "IdBc"},
761 {"fblt", one(0xF094), one(0xF1BF), "IdBc"},
762 {"fbne", one(0xF08E), one(0xF1BF), "IdBc"},
763 {"fbnge", one(0xF09C), one(0xF1BF), "IdBc"},
764 {"fbngl", one(0xF099), one(0xF1BF), "IdBc"},
765 {"fbngle", one(0xF098), one(0xF1BF), "IdBc"},
766 {"fbngt", one(0xF09D), one(0xF1BF), "IdBc"},
767 {"fbnle", one(0xF09A), one(0xF1BF), "IdBc"},
768 {"fbnlt", one(0xF09B), one(0xF1BF), "IdBc"},
769 {"fboge", one(0xF083), one(0xF1BF), "IdBc"},
770 {"fbogl", one(0xF086), one(0xF1BF), "IdBc"},
771 {"fbogt", one(0xF082), one(0xF1BF), "IdBc"},
772 {"fbole", one(0xF085), one(0xF1BF), "IdBc"},
773 {"fbolt", one(0xF084), one(0xF1BF), "IdBc"},
774 {"fbor", one(0xF087), one(0xF1BF), "IdBc"},
775 {"fbseq", one(0xF091), one(0xF1BF), "IdBc"},
776 {"fbsf", one(0xF090), one(0xF1BF), "IdBc"},
777 {"fbsne", one(0xF09E), one(0xF1BF), "IdBc"},
778 {"fbst", one(0xF09F), one(0xF1BF), "IdBc"},
779 {"fbt", one(0xF08F), one(0xF1BF), "IdBc"},
780 {"fbueq", one(0xF089), one(0xF1BF), "IdBc"},
781 {"fbuge", one(0xF08B), one(0xF1BF), "IdBc"},
782 {"fbugt", one(0xF08A), one(0xF1BF), "IdBc"},
783 {"fbule", one(0xF08D), one(0xF1BF), "IdBc"},
784 {"fbult", one(0xF08C), one(0xF1BF), "IdBc"},
785 {"fbun", one(0xF088), one(0xF1BF), "IdBc"},
786
787 {"fcmpb", two(0xF000, 0x5838), two(0xF1C0, 0xFC7F), "Ii;bF7"},
788 {"fcmpd", two(0xF000, 0x5438), two(0xF1C0, 0xFC7F), "Ii;FF7"},
789 {"fcmpl", two(0xF000, 0x4038), two(0xF1C0, 0xFC7F), "Ii;lF7"},
790 {"fcmpp", two(0xF000, 0x4C38), two(0xF1C0, 0xFC7F), "Ii;pF7"},
791 {"fcmps", two(0xF000, 0x4438), two(0xF1C0, 0xFC7F), "Ii;fF7"},
792 {"fcmpw", two(0xF000, 0x5038), two(0xF1C0, 0xFC7F), "Ii;wF7"},
793 {"fcmpx", two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiF8F7"},
794 {"fcmpx", two(0xF000, 0x4838), two(0xF1C0, 0xFC7F), "Ii;xF7"},
795 /* {"fcmpx", two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiFt"}, JF removed */
796
797 {"fcosb", two(0xF000, 0x581D), two(0xF1C0, 0xFC7F), "Ii;bF7"},
798 {"fcosd", two(0xF000, 0x541D), two(0xF1C0, 0xFC7F), "Ii;FF7"},
799 {"fcosl", two(0xF000, 0x401D), two(0xF1C0, 0xFC7F), "Ii;lF7"},
800 {"fcosp", two(0xF000, 0x4C1D), two(0xF1C0, 0xFC7F), "Ii;pF7"},
801 {"fcoss", two(0xF000, 0x441D), two(0xF1C0, 0xFC7F), "Ii;fF7"},
802 {"fcosw", two(0xF000, 0x501D), two(0xF1C0, 0xFC7F), "Ii;wF7"},
803 {"fcosx", two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiF8F7"},
804 {"fcosx", two(0xF000, 0x481D), two(0xF1C0, 0xFC7F), "Ii;xF7"},
805 {"fcosx", two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiFt"},
806
807 {"fcoshb", two(0xF000, 0x5819), two(0xF1C0, 0xFC7F), "Ii;bF7"},
808 {"fcoshd", two(0xF000, 0x5419), two(0xF1C0, 0xFC7F), "Ii;FF7"},
809 {"fcoshl", two(0xF000, 0x4019), two(0xF1C0, 0xFC7F), "Ii;lF7"},
810 {"fcoshp", two(0xF000, 0x4C19), two(0xF1C0, 0xFC7F), "Ii;pF7"},
811 {"fcoshs", two(0xF000, 0x4419), two(0xF1C0, 0xFC7F), "Ii;fF7"},
812 {"fcoshw", two(0xF000, 0x5019), two(0xF1C0, 0xFC7F), "Ii;wF7"},
813 {"fcoshx", two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiF8F7"},
814 {"fcoshx", two(0xF000, 0x4819), two(0xF1C0, 0xFC7F), "Ii;xF7"},
815 {"fcoshx", two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiFt"},
816
817 {"fdbeq", two(0xF048, 0x0001), two(0xF1F8, 0xFFFF), "IiDsBw"},
818 {"fdbf", two(0xF048, 0x0000), two(0xF1F8, 0xFFFF), "IiDsBw"},
819 {"fdbge", two(0xF048, 0x0013), two(0xF1F8, 0xFFFF), "IiDsBw"},
820 {"fdbgl", two(0xF048, 0x0016), two(0xF1F8, 0xFFFF), "IiDsBw"},
821 {"fdbgle", two(0xF048, 0x0017), two(0xF1F8, 0xFFFF), "IiDsBw"},
822 {"fdbgt", two(0xF048, 0x0012), two(0xF1F8, 0xFFFF), "IiDsBw"},
823 {"fdble", two(0xF048, 0x0015), two(0xF1F8, 0xFFFF), "IiDsBw"},
824 {"fdblt", two(0xF048, 0x0014), two(0xF1F8, 0xFFFF), "IiDsBw"},
825 {"fdbne", two(0xF048, 0x000E), two(0xF1F8, 0xFFFF), "IiDsBw"},
826 {"fdbnge", two(0xF048, 0x001C), two(0xF1F8, 0xFFFF), "IiDsBw"},
827 {"fdbngl", two(0xF048, 0x0019), two(0xF1F8, 0xFFFF), "IiDsBw"},
828 {"fdbngle", two(0xF048, 0x0018), two(0xF1F8, 0xFFFF), "IiDsBw"},
829 {"fdbngt", two(0xF048, 0x001D), two(0xF1F8, 0xFFFF), "IiDsBw"},
830 {"fdbnle", two(0xF048, 0x001A), two(0xF1F8, 0xFFFF), "IiDsBw"},
831 {"fdbnlt", two(0xF048, 0x001B), two(0xF1F8, 0xFFFF), "IiDsBw"},
832 {"fdboge", two(0xF048, 0x0003), two(0xF1F8, 0xFFFF), "IiDsBw"},
833 {"fdbogl", two(0xF048, 0x0006), two(0xF1F8, 0xFFFF), "IiDsBw"},
834 {"fdbogt", two(0xF048, 0x0002), two(0xF1F8, 0xFFFF), "IiDsBw"},
835 {"fdbole", two(0xF048, 0x0005), two(0xF1F8, 0xFFFF), "IiDsBw"},
836 {"fdbolt", two(0xF048, 0x0004), two(0xF1F8, 0xFFFF), "IiDsBw"},
837 {"fdbor", two(0xF048, 0x0007), two(0xF1F8, 0xFFFF), "IiDsBw"},
838 {"fdbseq", two(0xF048, 0x0011), two(0xF1F8, 0xFFFF), "IiDsBw"},
839 {"fdbsf", two(0xF048, 0x0010), two(0xF1F8, 0xFFFF), "IiDsBw"},
840 {"fdbsne", two(0xF048, 0x001E), two(0xF1F8, 0xFFFF), "IiDsBw"},
841 {"fdbst", two(0xF048, 0x001F), two(0xF1F8, 0xFFFF), "IiDsBw"},
842 {"fdbt", two(0xF048, 0x000F), two(0xF1F8, 0xFFFF), "IiDsBw"},
843 {"fdbueq", two(0xF048, 0x0009), two(0xF1F8, 0xFFFF), "IiDsBw"},
844 {"fdbuge", two(0xF048, 0x000B), two(0xF1F8, 0xFFFF), "IiDsBw"},
845 {"fdbugt", two(0xF048, 0x000A), two(0xF1F8, 0xFFFF), "IiDsBw"},
846 {"fdbule", two(0xF048, 0x000D), two(0xF1F8, 0xFFFF), "IiDsBw"},
847 {"fdbult", two(0xF048, 0x000C), two(0xF1F8, 0xFFFF), "IiDsBw"},
848 {"fdbun", two(0xF048, 0x0008), two(0xF1F8, 0xFFFF), "IiDsBw"},
849
850 {"fdivb", two(0xF000, 0x5820), two(0xF1C0, 0xFC7F), "Ii;bF7"},
851 {"fdivd", two(0xF000, 0x5420), two(0xF1C0, 0xFC7F), "Ii;FF7"},
852 {"fdivl", two(0xF000, 0x4020), two(0xF1C0, 0xFC7F), "Ii;lF7"},
853 {"fdivp", two(0xF000, 0x4C20), two(0xF1C0, 0xFC7F), "Ii;pF7"},
854 {"fdivs", two(0xF000, 0x4420), two(0xF1C0, 0xFC7F), "Ii;fF7"},
855 {"fdivw", two(0xF000, 0x5020), two(0xF1C0, 0xFC7F), "Ii;wF7"},
856 {"fdivx", two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiF8F7"},
857 {"fdivx", two(0xF000, 0x4820), two(0xF1C0, 0xFC7F), "Ii;xF7"},
858 /* {"fdivx", two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiFt"}, JF */
859
860 {"fetoxb", two(0xF000, 0x5810), two(0xF1C0, 0xFC7F), "Ii;bF7"},
861 {"fetoxd", two(0xF000, 0x5410), two(0xF1C0, 0xFC7F), "Ii;FF7"},
862 {"fetoxl", two(0xF000, 0x4010), two(0xF1C0, 0xFC7F), "Ii;lF7"},
863 {"fetoxp", two(0xF000, 0x4C10), two(0xF1C0, 0xFC7F), "Ii;pF7"},
864 {"fetoxs", two(0xF000, 0x4410), two(0xF1C0, 0xFC7F), "Ii;fF7"},
865 {"fetoxw", two(0xF000, 0x5010), two(0xF1C0, 0xFC7F), "Ii;wF7"},
866 {"fetoxx", two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiF8F7"},
867 {"fetoxx", two(0xF000, 0x4810), two(0xF1C0, 0xFC7F), "Ii;xF7"},
868 {"fetoxx", two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiFt"},
869
870 {"fetoxm1b", two(0xF000, 0x5808), two(0xF1C0, 0xFC7F), "Ii;bF7"},
871 {"fetoxm1d", two(0xF000, 0x5408), two(0xF1C0, 0xFC7F), "Ii;FF7"},
872 {"fetoxm1l", two(0xF000, 0x4008), two(0xF1C0, 0xFC7F), "Ii;lF7"},
873 {"fetoxm1p", two(0xF000, 0x4C08), two(0xF1C0, 0xFC7F), "Ii;pF7"},
874 {"fetoxm1s", two(0xF000, 0x4408), two(0xF1C0, 0xFC7F), "Ii;fF7"},
875 {"fetoxm1w", two(0xF000, 0x5008), two(0xF1C0, 0xFC7F), "Ii;wF7"},
876 {"fetoxm1x", two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiF8F7"},
877 {"fetoxm1x", two(0xF000, 0x4808), two(0xF1C0, 0xFC7F), "Ii;xF7"},
878 {"fetoxm1x", two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiFt"},
879
880 {"fgetexpb", two(0xF000, 0x581E), two(0xF1C0, 0xFC7F), "Ii;bF7"},
881 {"fgetexpd", two(0xF000, 0x541E), two(0xF1C0, 0xFC7F), "Ii;FF7"},
882 {"fgetexpl", two(0xF000, 0x401E), two(0xF1C0, 0xFC7F), "Ii;lF7"},
883 {"fgetexpp", two(0xF000, 0x4C1E), two(0xF1C0, 0xFC7F), "Ii;pF7"},
884 {"fgetexps", two(0xF000, 0x441E), two(0xF1C0, 0xFC7F), "Ii;fF7"},
885 {"fgetexpw", two(0xF000, 0x501E), two(0xF1C0, 0xFC7F), "Ii;wF7"},
886 {"fgetexpx", two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiF8F7"},
887 {"fgetexpx", two(0xF000, 0x481E), two(0xF1C0, 0xFC7F), "Ii;xF7"},
888 {"fgetexpx", two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiFt"},
889
890 {"fgetmanb", two(0xF000, 0x581F), two(0xF1C0, 0xFC7F), "Ii;bF7"},
891 {"fgetmand", two(0xF000, 0x541F), two(0xF1C0, 0xFC7F), "Ii;FF7"},
892 {"fgetmanl", two(0xF000, 0x401F), two(0xF1C0, 0xFC7F), "Ii;lF7"},
893 {"fgetmanp", two(0xF000, 0x4C1F), two(0xF1C0, 0xFC7F), "Ii;pF7"},
894 {"fgetmans", two(0xF000, 0x441F), two(0xF1C0, 0xFC7F), "Ii;fF7"},
895 {"fgetmanw", two(0xF000, 0x501F), two(0xF1C0, 0xFC7F), "Ii;wF7"},
896 {"fgetmanx", two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiF8F7"},
897 {"fgetmanx", two(0xF000, 0x481F), two(0xF1C0, 0xFC7F), "Ii;xF7"},
898 {"fgetmanx", two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiFt"},
899
900 {"fintb", two(0xF000, 0x5801), two(0xF1C0, 0xFC7F), "Ii;bF7"},
901 {"fintd", two(0xF000, 0x5401), two(0xF1C0, 0xFC7F), "Ii;FF7"},
902 {"fintl", two(0xF000, 0x4001), two(0xF1C0, 0xFC7F), "Ii;lF7"},
903 {"fintp", two(0xF000, 0x4C01), two(0xF1C0, 0xFC7F), "Ii;pF7"},
904 {"fints", two(0xF000, 0x4401), two(0xF1C0, 0xFC7F), "Ii;fF7"},
905 {"fintw", two(0xF000, 0x5001), two(0xF1C0, 0xFC7F), "Ii;wF7"},
906 {"fintx", two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiF8F7"},
907 {"fintx", two(0xF000, 0x4801), two(0xF1C0, 0xFC7F), "Ii;xF7"},
908 {"fintx", two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiFt"},
909
910 {"fintrzb", two(0xF000, 0x5803), two(0xF1C0, 0xFC7F), "Ii;bF7"},
911 {"fintrzd", two(0xF000, 0x5403), two(0xF1C0, 0xFC7F), "Ii;FF7"},
912 {"fintrzl", two(0xF000, 0x4003), two(0xF1C0, 0xFC7F), "Ii;lF7"},
913 {"fintrzp", two(0xF000, 0x4C03), two(0xF1C0, 0xFC7F), "Ii;pF7"},
914 {"fintrzs", two(0xF000, 0x4403), two(0xF1C0, 0xFC7F), "Ii;fF7"},
915 {"fintrzw", two(0xF000, 0x5003), two(0xF1C0, 0xFC7F), "Ii;wF7"},
916 {"fintrzx", two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiF8F7"},
917 {"fintrzx", two(0xF000, 0x4803), two(0xF1C0, 0xFC7F), "Ii;xF7"},
918 {"fintrzx", two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiFt"},
919
920 {"flog10b", two(0xF000, 0x5815), two(0xF1C0, 0xFC7F), "Ii;bF7"},
921 {"flog10d", two(0xF000, 0x5415), two(0xF1C0, 0xFC7F), "Ii;FF7"},
922 {"flog10l", two(0xF000, 0x4015), two(0xF1C0, 0xFC7F), "Ii;lF7"},
923 {"flog10p", two(0xF000, 0x4C15), two(0xF1C0, 0xFC7F), "Ii;pF7"},
924 {"flog10s", two(0xF000, 0x4415), two(0xF1C0, 0xFC7F), "Ii;fF7"},
925 {"flog10w", two(0xF000, 0x5015), two(0xF1C0, 0xFC7F), "Ii;wF7"},
926 {"flog10x", two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiF8F7"},
927 {"flog10x", two(0xF000, 0x4815), two(0xF1C0, 0xFC7F), "Ii;xF7"},
928 {"flog10x", two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiFt"},
929
930 {"flog2b", two(0xF000, 0x5816), two(0xF1C0, 0xFC7F), "Ii;bF7"},
931 {"flog2d", two(0xF000, 0x5416), two(0xF1C0, 0xFC7F), "Ii;FF7"},
932 {"flog2l", two(0xF000, 0x4016), two(0xF1C0, 0xFC7F), "Ii;lF7"},
933 {"flog2p", two(0xF000, 0x4C16), two(0xF1C0, 0xFC7F), "Ii;pF7"},
934 {"flog2s", two(0xF000, 0x4416), two(0xF1C0, 0xFC7F), "Ii;fF7"},
935 {"flog2w", two(0xF000, 0x5016), two(0xF1C0, 0xFC7F), "Ii;wF7"},
936 {"flog2x", two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiF8F7"},
937 {"flog2x", two(0xF000, 0x4816), two(0xF1C0, 0xFC7F), "Ii;xF7"},
938 {"flog2x", two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiFt"},
939
940 {"flognb", two(0xF000, 0x5814), two(0xF1C0, 0xFC7F), "Ii;bF7"},
941 {"flognd", two(0xF000, 0x5414), two(0xF1C0, 0xFC7F), "Ii;FF7"},
942 {"flognl", two(0xF000, 0x4014), two(0xF1C0, 0xFC7F), "Ii;lF7"},
943 {"flognp", two(0xF000, 0x4C14), two(0xF1C0, 0xFC7F), "Ii;pF7"},
944 {"flogns", two(0xF000, 0x4414), two(0xF1C0, 0xFC7F), "Ii;fF7"},
945 {"flognw", two(0xF000, 0x5014), two(0xF1C0, 0xFC7F), "Ii;wF7"},
946 {"flognx", two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiF8F7"},
947 {"flognx", two(0xF000, 0x4814), two(0xF1C0, 0xFC7F), "Ii;xF7"},
948 {"flognx", two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiFt"},
949
950 {"flognp1b", two(0xF000, 0x5806), two(0xF1C0, 0xFC7F), "Ii;bF7"},
951 {"flognp1d", two(0xF000, 0x5406), two(0xF1C0, 0xFC7F), "Ii;FF7"},
952 {"flognp1l", two(0xF000, 0x4006), two(0xF1C0, 0xFC7F), "Ii;lF7"},
953 {"flognp1p", two(0xF000, 0x4C06), two(0xF1C0, 0xFC7F), "Ii;pF7"},
954 {"flognp1s", two(0xF000, 0x4406), two(0xF1C0, 0xFC7F), "Ii;fF7"},
955 {"flognp1w", two(0xF000, 0x5006), two(0xF1C0, 0xFC7F), "Ii;wF7"},
956 {"flognp1x", two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiF8F7"},
957 {"flognp1x", two(0xF000, 0x4806), two(0xF1C0, 0xFC7F), "Ii;xF7"},
958 {"flognp1x", two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiFt"},
959
960 {"fmodb", two(0xF000, 0x5821), two(0xF1C0, 0xFC7F), "Ii;bF7"},
961 {"fmodd", two(0xF000, 0x5421), two(0xF1C0, 0xFC7F), "Ii;FF7"},
962 {"fmodl", two(0xF000, 0x4021), two(0xF1C0, 0xFC7F), "Ii;lF7"},
963 {"fmodp", two(0xF000, 0x4C21), two(0xF1C0, 0xFC7F), "Ii;pF7"},
964 {"fmods", two(0xF000, 0x4421), two(0xF1C0, 0xFC7F), "Ii;fF7"},
965 {"fmodw", two(0xF000, 0x5021), two(0xF1C0, 0xFC7F), "Ii;wF7"},
966 {"fmodx", two(0xF000, 0x0021), two(0xF1C0, 0xE07F), "IiF8F7"},
967 {"fmodx", two(0xF000, 0x4821), two(0xF1C0, 0xFC7F), "Ii;xF7"},
968 /* {"fmodx", two(0xF000, 0x0021), two(0xF1C0, 0xE07F), "IiFt"}, JF */
969
970 {"fmoveb", two(0xF000, 0x5800), two(0xF1C0, 0xFC7F), "Ii;bF7"}, /* fmove from <ea> to fp<n> */
971 {"fmoveb", two(0xF000, 0x7800), two(0xF1C0, 0xFC7F), "IiF7@b"}, /* fmove from fp<n> to <ea> */
972 {"fmoved", two(0xF000, 0x5400), two(0xF1C0, 0xFC7F), "Ii;FF7"}, /* fmove from <ea> to fp<n> */
973 {"fmoved", two(0xF000, 0x7400), two(0xF1C0, 0xFC7F), "IiF7@F"}, /* fmove from fp<n> to <ea> */
974 {"fmovel", two(0xF000, 0x4000), two(0xF1C0, 0xFC7F), "Ii;lF7"}, /* fmove from <ea> to fp<n> */
975 {"fmovel", two(0xF000, 0x6000), two(0xF1C0, 0xFC7F), "IiF7@l"}, /* fmove from fp<n> to <ea> */
976 /* Warning: The addressing modes on these are probably not right:
977 esp, Areg direct is only allowed for FPI */
978 /* fmove.l from/to system control registers: */
979 {"fmovel", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8@s"},
980 {"fmovel", two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ls8"},
981
982 /* {"fmovel", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8@s"},
983 {"fmovel", two(0xF000, 0x8000), two(0xF2C0, 0xE3FF), "Ii*ss8"}, */
984
985 {"fmovep", two(0xF000, 0x4C00), two(0xF1C0, 0xFC7F), "Ii;pF7"}, /* fmove from <ea> to fp<n> */
986 {"fmovep", two(0xF000, 0x6C00), two(0xF1C0, 0xFC00), "IiF7@pkC"}, /* fmove.p with k-factors: */
987 {"fmovep", two(0xF000, 0x7C00), two(0xF1C0, 0xFC0F), "IiF7@pDk"}, /* fmove.p with k-factors: */
988
989 {"fmoves", two(0xF000, 0x4400), two(0xF1C0, 0xFC7F), "Ii;fF7"}, /* fmove from <ea> to fp<n> */
990 {"fmoves", two(0xF000, 0x6400), two(0xF1C0, 0xFC7F), "IiF7@f"}, /* fmove from fp<n> to <ea> */
991 {"fmovew", two(0xF000, 0x5000), two(0xF1C0, 0xFC7F), "Ii;wF7"}, /* fmove from <ea> to fp<n> */
992 {"fmovew", two(0xF000, 0x7000), two(0xF1C0, 0xFC7F), "IiF7@w"}, /* fmove from fp<n> to <ea> */
993 {"fmovex", two(0xF000, 0x0000), two(0xF1C0, 0xE07F), "IiF8F7"}, /* fmove from <ea> to fp<n> */
994 {"fmovex", two(0xF000, 0x4800), two(0xF1C0, 0xFC7F), "Ii;xF7"}, /* fmove from <ea> to fp<n> */
995 {"fmovex", two(0xF000, 0x6800), two(0xF1C0, 0xFC7F), "IiF7@x"}, /* fmove from fp<n> to <ea> */
996 /* JF removed {"fmovex", two(0xF000, 0x0000), two(0xF1C0, 0xE07F), "IiFt"}, / * fmove from <ea> to fp<n> */
997
998 {"fmovecrx", two(0xF000, 0x5C00), two(0xF1FF, 0xFC00), "Ii#CF7"}, /* fmovecr.x #ccc, FPn */
999 {"fmovecr", two(0xF000, 0x5C00), two(0xF1FF, 0xFC00), "Ii#CF7"},
1000
1001 /* Other fmovemx. */
1002 {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s"}, /* fmovem.x to autodecrement, static and dynamic */
1003 {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s"}, /* fmovem.x to autodecrement, static and dynamic */
1004
1005 {"fmovemx", two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s"}, /* fmovem.x to autodecrement, static and dynamic */
1006
1007 {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s"}, /* fmovem.x to control, static and dynamic: */
1008 {"fmovemx", two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s"}, /* fmovem.x to control, static and dynamic: */
1009 {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3"}, /* fmovem.x from control, static and dynamic: */
1010 {"fmovemx", two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk"}, /* fmovem.x from control, static and dynamic: */
1011 {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s"}, /* fmovem.x to control, static and dynamic: */
1012 {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3"}, /* fmovem.x from control, static and dynamic: */
1013
1014 {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3"}, /* fmovem.x from autoincrement, static and dynamic: */
1015 {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3"}, /* fmovem.x from autoincrement, static and dynamic: */
1016 {"fmovemx", two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk"}, /* fmovem.x from autoincrement, static and dynamic: */
1017
1018 {"fmoveml", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8@s"},
1019 {"fmoveml", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Ii#8@s"},
1020 {"fmoveml", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8@s"},
1021
1022 {"fmoveml", two(0xF000, 0x8000), two(0xF2C0, 0xE3FF), "Ii*sL8"},
1023 {"fmoveml", two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*s#8"},
1024 {"fmoveml", two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ss8"},
1025
1026 /* fmovemx with register lists */
1027 {"fmovem", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s"}, /* fmovem.x to autodecrement, static and dynamic */
1028 {"fmovem", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s"}, /* fmovem.x to control, static and dynamic: */
1029 {"fmovem", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3"}, /* fmovem.x from autoincrement, static and dynamic: */
1030 {"fmovem", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3"}, /* fmovem.x from control, static and dynamic: */
1031
1032 /* Alternate mnemonics for GNU as and GNU CC */
1033 {"fmovem", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s"}, /* fmovem.x to autodecrement, static and dynamic */
1034 {"fmovem", two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s"}, /* fmovem.x to autodecrement, static and dynamic */
1035
1036 {"fmovem", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s"}, /* fmovem.x to control, static and dynamic: */
1037 {"fmovem", two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s"}, /* fmovem.x to control, static and dynamic: */
1038
1039 {"fmovem", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3"}, /* fmovem.x from autoincrement, static and dynamic: */
1040 {"fmovem", two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk"}, /* fmovem.x from autoincrement, static and dynamic: */
1041
1042 {"fmovem", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3"}, /* fmovem.x from control, static and dynamic: */
1043 {"fmovem", two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk"}, /* fmovem.x from control, static and dynamic: */
1044
1045 /* fmoveml a FP-control register */
1046 {"fmovem", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8@s"},
1047 {"fmovem", two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ss8"},
1048
1049 /* fmoveml a FP-control reglist */
1050 {"fmovem", two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8@s"},
1051 {"fmovem", two(0xF000, 0x8000), two(0xF2C0, 0xE3FF), "Ii*sL8"},
1052
1053 {"fmulb", two(0xF000, 0x5823), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1054 {"fmuld", two(0xF000, 0x5423), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1055 {"fmull", two(0xF000, 0x4023), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1056 {"fmulp", two(0xF000, 0x4C23), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1057 {"fmuls", two(0xF000, 0x4423), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1058 {"fmulw", two(0xF000, 0x5023), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1059 {"fmulx", two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiF8F7"},
1060 {"fmulx", two(0xF000, 0x4823), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1061 /* {"fmulx", two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiFt"}, JF */
1062
1063 {"fnegb", two(0xF000, 0x581A), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1064 {"fnegd", two(0xF000, 0x541A), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1065 {"fnegl", two(0xF000, 0x401A), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1066 {"fnegp", two(0xF000, 0x4C1A), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1067 {"fnegs", two(0xF000, 0x441A), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1068 {"fnegw", two(0xF000, 0x501A), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1069 {"fnegx", two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiF8F7"},
1070 {"fnegx", two(0xF000, 0x481A), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1071 {"fnegx", two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiFt"},
1072
1073 {"fnop", two(0xF280, 0x0000), two(0xFFFF, 0xFFFF), "Ii"},
1074
1075 {"fremb", two(0xF000, 0x5825), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1076 {"fremd", two(0xF000, 0x5425), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1077 {"freml", two(0xF000, 0x4025), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1078 {"fremp", two(0xF000, 0x4C25), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1079 {"frems", two(0xF000, 0x4425), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1080 {"fremw", two(0xF000, 0x5025), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1081 {"fremx", two(0xF000, 0x0025), two(0xF1C0, 0xE07F), "IiF8F7"},
1082 {"fremx", two(0xF000, 0x4825), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1083 /* {"fremx", two(0xF000, 0x0025), two(0xF1C0, 0xE07F), "IiFt"}, JF */
1084
1085 {"frestore", one(0xF140), one(0xF1C0), "Id&s"},
1086 {"frestore", one(0xF158), one(0xF1F8), "Id+s"},
1087 {"fsave", one(0xF100), one(0xF1C0), "Id&s"},
1088 {"fsave", one(0xF120), one(0xF1F8), "Id-s"},
1089
1090 {"fsincosb", two(0xF000, 0x5830), two(0xF1C0, 0xFC78), "Ii;bF7FC"},
1091 {"fsincosd", two(0xF000, 0x5430), two(0xF1C0, 0xFC78), "Ii;FF7FC"},
1092 {"fsincosl", two(0xF000, 0x4030), two(0xF1C0, 0xFC78), "Ii;lF7FC"},
1093 {"fsincosp", two(0xF000, 0x4C30), two(0xF1C0, 0xFC78), "Ii;pF7FC"},
1094 {"fsincoss", two(0xF000, 0x4430), two(0xF1C0, 0xFC78), "Ii;fF7FC"},
1095 {"fsincosw", two(0xF000, 0x5030), two(0xF1C0, 0xFC78), "Ii;wF7FC"},
1096 {"fsincosx", two(0xF000, 0x0030), two(0xF1C0, 0xE078), "IiF8F7FC"},
1097 {"fsincosx", two(0xF000, 0x4830), two(0xF1C0, 0xFC78), "Ii;xF7FC"},
1098
1099
1100 #ifdef comment
1101 /* gas's version had these. */
1102 {"fsincosb", two(0xF000, 0x5830), two(0xF1C0, 0xFC78), "Ii;bF3F7"},
1103 {"fsincosd", two(0xF000, 0x5430), two(0xF1C0, 0xFC78), "Ii;FF3F7"},
1104 {"fsincosl", two(0xF000, 0x4030), two(0xF1C0, 0xFC78), "Ii;lF3F7"},
1105 {"fsincosp", two(0xF000, 0x4C30), two(0xF1C0, 0xFC78), "Ii;pF3F7"},
1106 {"fsincoss", two(0xF000, 0x4430), two(0xF1C0, 0xFC78), "Ii;fF3F7"},
1107 {"fsincosw", two(0xF000, 0x5030), two(0xF1C0, 0xFC78), "Ii;wF3F7"},
1108 {"fsincosx", two(0xF000, 0x0030), two(0xF1C0, 0xE078), "IiF8F3F7"},
1109 {"fsincosx", two(0xF000, 0x4830), two(0xF1C0, 0xFC78), "Ii;xF3F7"},
1110 #endif /* comment */
1111
1112 {"fscaleb", two(0xF000, 0x5826), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1113 {"fscaled", two(0xF000, 0x5426), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1114 {"fscalel", two(0xF000, 0x4026), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1115 {"fscalep", two(0xF000, 0x4C26), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1116 {"fscales", two(0xF000, 0x4426), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1117 {"fscalew", two(0xF000, 0x5026), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1118 {"fscalex", two(0xF000, 0x0026), two(0xF1C0, 0xE07F), "IiF8F7"},
1119 {"fscalex", two(0xF000, 0x4826), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1120 /* {"fscalex", two(0xF000, 0x0026), two(0xF1C0, 0xE07F), "IiFt"}, JF */
1121
1122 /* $ is necessary to prevent the assembler from using PC-relative.
1123 If @ were used, "label: fseq label" could produce "ftrapeq",
1124 because "label" became "pc@label". */
1125 {"fseq", two(0xF040, 0x0001), two(0xF1C0, 0xFFFF), "Ii$s"},
1126 {"fsf", two(0xF040, 0x0000), two(0xF1C0, 0xFFFF), "Ii$s"},
1127 {"fsge", two(0xF040, 0x0013), two(0xF1C0, 0xFFFF), "Ii$s"},
1128 {"fsgl", two(0xF040, 0x0016), two(0xF1C0, 0xFFFF), "Ii$s"},
1129 {"fsgle", two(0xF040, 0x0017), two(0xF1C0, 0xFFFF), "Ii$s"},
1130 {"fsgt", two(0xF040, 0x0012), two(0xF1C0, 0xFFFF), "Ii$s"},
1131 {"fsle", two(0xF040, 0x0015), two(0xF1C0, 0xFFFF), "Ii$s"},
1132 {"fslt", two(0xF040, 0x0014), two(0xF1C0, 0xFFFF), "Ii$s"},
1133 {"fsne", two(0xF040, 0x000E), two(0xF1C0, 0xFFFF), "Ii$s"},
1134 {"fsnge", two(0xF040, 0x001C), two(0xF1C0, 0xFFFF), "Ii$s"},
1135 {"fsngl", two(0xF040, 0x0019), two(0xF1C0, 0xFFFF), "Ii$s"},
1136 {"fsngle", two(0xF040, 0x0018), two(0xF1C0, 0xFFFF), "Ii$s"},
1137 {"fsngt", two(0xF040, 0x001D), two(0xF1C0, 0xFFFF), "Ii$s"},
1138 {"fsnle", two(0xF040, 0x001A), two(0xF1C0, 0xFFFF), "Ii$s"},
1139 {"fsnlt", two(0xF040, 0x001B), two(0xF1C0, 0xFFFF), "Ii$s"},
1140 {"fsoge", two(0xF040, 0x0003), two(0xF1C0, 0xFFFF), "Ii$s"},
1141 {"fsogl", two(0xF040, 0x0006), two(0xF1C0, 0xFFFF), "Ii$s"},
1142 {"fsogt", two(0xF040, 0x0002), two(0xF1C0, 0xFFFF), "Ii$s"},
1143 {"fsole", two(0xF040, 0x0005), two(0xF1C0, 0xFFFF), "Ii$s"},
1144 {"fsolt", two(0xF040, 0x0004), two(0xF1C0, 0xFFFF), "Ii$s"},
1145 {"fsor", two(0xF040, 0x0007), two(0xF1C0, 0xFFFF), "Ii$s"},
1146 {"fsseq", two(0xF040, 0x0011), two(0xF1C0, 0xFFFF), "Ii$s"},
1147 {"fssf", two(0xF040, 0x0010), two(0xF1C0, 0xFFFF), "Ii$s"},
1148 {"fssne", two(0xF040, 0x001E), two(0xF1C0, 0xFFFF), "Ii$s"},
1149 {"fsst", two(0xF040, 0x001F), two(0xF1C0, 0xFFFF), "Ii$s"},
1150 {"fst", two(0xF040, 0x000F), two(0xF1C0, 0xFFFF), "Ii$s"},
1151 {"fsueq", two(0xF040, 0x0009), two(0xF1C0, 0xFFFF), "Ii$s"},
1152 {"fsuge", two(0xF040, 0x000B), two(0xF1C0, 0xFFFF), "Ii$s"},
1153 {"fsugt", two(0xF040, 0x000A), two(0xF1C0, 0xFFFF), "Ii$s"},
1154 {"fsule", two(0xF040, 0x000D), two(0xF1C0, 0xFFFF), "Ii$s"},
1155 {"fsult", two(0xF040, 0x000C), two(0xF1C0, 0xFFFF), "Ii$s"},
1156 {"fsun", two(0xF040, 0x0008), two(0xF1C0, 0xFFFF), "Ii$s"},
1157
1158 {"fsgldivb", two(0xF000, 0x5824), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1159 {"fsgldivd", two(0xF000, 0x5424), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1160 {"fsgldivl", two(0xF000, 0x4024), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1161 {"fsgldivp", two(0xF000, 0x4C24), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1162 {"fsgldivs", two(0xF000, 0x4424), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1163 {"fsgldivw", two(0xF000, 0x5024), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1164 {"fsgldivx", two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiF8F7"},
1165 {"fsgldivx", two(0xF000, 0x4824), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1166 {"fsgldivx", two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiFt"},
1167
1168 {"fsglmulb", two(0xF000, 0x5827), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1169 {"fsglmuld", two(0xF000, 0x5427), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1170 {"fsglmull", two(0xF000, 0x4027), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1171 {"fsglmulp", two(0xF000, 0x4C27), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1172 {"fsglmuls", two(0xF000, 0x4427), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1173 {"fsglmulw", two(0xF000, 0x5027), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1174 {"fsglmulx", two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiF8F7"},
1175 {"fsglmulx", two(0xF000, 0x4827), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1176 {"fsglmulx", two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiFt"},
1177
1178 {"fsinb", two(0xF000, 0x580E), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1179 {"fsind", two(0xF000, 0x540E), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1180 {"fsinl", two(0xF000, 0x400E), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1181 {"fsinp", two(0xF000, 0x4C0E), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1182 {"fsins", two(0xF000, 0x440E), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1183 {"fsinw", two(0xF000, 0x500E), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1184 {"fsinx", two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiF8F7"},
1185 {"fsinx", two(0xF000, 0x480E), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1186 {"fsinx", two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiFt"},
1187
1188 {"fsinhb", two(0xF000, 0x5802), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1189 {"fsinhd", two(0xF000, 0x5402), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1190 {"fsinhl", two(0xF000, 0x4002), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1191 {"fsinhp", two(0xF000, 0x4C02), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1192 {"fsinhs", two(0xF000, 0x4402), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1193 {"fsinhw", two(0xF000, 0x5002), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1194 {"fsinhx", two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiF8F7"},
1195 {"fsinhx", two(0xF000, 0x4802), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1196 {"fsinhx", two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiFt"},
1197
1198 {"fsqrtb", two(0xF000, 0x5804), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1199 {"fsqrtd", two(0xF000, 0x5404), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1200 {"fsqrtl", two(0xF000, 0x4004), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1201 {"fsqrtp", two(0xF000, 0x4C04), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1202 {"fsqrts", two(0xF000, 0x4404), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1203 {"fsqrtw", two(0xF000, 0x5004), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1204 {"fsqrtx", two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiF8F7"},
1205 {"fsqrtx", two(0xF000, 0x4804), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1206 {"fsqrtx", two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiFt"},
1207
1208 {"fsubb", two(0xF000, 0x5828), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1209 {"fsubd", two(0xF000, 0x5428), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1210 {"fsubl", two(0xF000, 0x4028), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1211 {"fsubp", two(0xF000, 0x4C28), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1212 {"fsubs", two(0xF000, 0x4428), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1213 {"fsubw", two(0xF000, 0x5028), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1214 {"fsubx", two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiF8F7"},
1215 {"fsubx", two(0xF000, 0x4828), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1216 {"fsubx", two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiFt"},
1217
1218 {"ftanb", two(0xF000, 0x580F), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1219 {"ftand", two(0xF000, 0x540F), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1220 {"ftanl", two(0xF000, 0x400F), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1221 {"ftanp", two(0xF000, 0x4C0F), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1222 {"ftans", two(0xF000, 0x440F), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1223 {"ftanw", two(0xF000, 0x500F), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1224 {"ftanx", two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiF8F7"},
1225 {"ftanx", two(0xF000, 0x480F), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1226 {"ftanx", two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiFt"},
1227
1228 {"ftanhb", two(0xF000, 0x5809), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1229 {"ftanhd", two(0xF000, 0x5409), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1230 {"ftanhl", two(0xF000, 0x4009), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1231 {"ftanhp", two(0xF000, 0x4C09), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1232 {"ftanhs", two(0xF000, 0x4409), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1233 {"ftanhw", two(0xF000, 0x5009), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1234 {"ftanhx", two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiF8F7"},
1235 {"ftanhx", two(0xF000, 0x4809), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1236 {"ftanhx", two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiFt"},
1237
1238 {"ftentoxb", two(0xF000, 0x5812), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1239 {"ftentoxd", two(0xF000, 0x5412), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1240 {"ftentoxl", two(0xF000, 0x4012), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1241 {"ftentoxp", two(0xF000, 0x4C12), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1242 {"ftentoxs", two(0xF000, 0x4412), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1243 {"ftentoxw", two(0xF000, 0x5012), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1244 {"ftentoxx", two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiF8F7"},
1245 {"ftentoxx", two(0xF000, 0x4812), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1246 {"ftentoxx", two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiFt"},
1247
1248 {"ftrapeq", two(0xF07C, 0x0001), two(0xF1FF, 0xFFFF), "Ii"},
1249 {"ftrapf", two(0xF07C, 0x0000), two(0xF1FF, 0xFFFF), "Ii"},
1250 {"ftrapge", two(0xF07C, 0x0013), two(0xF1FF, 0xFFFF), "Ii"},
1251 {"ftrapgl", two(0xF07C, 0x0016), two(0xF1FF, 0xFFFF), "Ii"},
1252 {"ftrapgle", two(0xF07C, 0x0017), two(0xF1FF, 0xFFFF), "Ii"},
1253 {"ftrapgt", two(0xF07C, 0x0012), two(0xF1FF, 0xFFFF), "Ii"},
1254 {"ftraple", two(0xF07C, 0x0015), two(0xF1FF, 0xFFFF), "Ii"},
1255 {"ftraplt", two(0xF07C, 0x0014), two(0xF1FF, 0xFFFF), "Ii"},
1256 {"ftrapne", two(0xF07C, 0x000E), two(0xF1FF, 0xFFFF), "Ii"},
1257 {"ftrapnge", two(0xF07C, 0x001C), two(0xF1FF, 0xFFFF), "Ii"},
1258 {"ftrapngl", two(0xF07C, 0x0019), two(0xF1FF, 0xFFFF), "Ii"},
1259 {"ftrapngle", two(0xF07C, 0x0018), two(0xF1FF, 0xFFFF), "Ii"},
1260 {"ftrapngt", two(0xF07C, 0x001D), two(0xF1FF, 0xFFFF), "Ii"},
1261 {"ftrapnle", two(0xF07C, 0x001A), two(0xF1FF, 0xFFFF), "Ii"},
1262 {"ftrapnlt", two(0xF07C, 0x001B), two(0xF1FF, 0xFFFF), "Ii"},
1263 {"ftrapoge", two(0xF07C, 0x0003), two(0xF1FF, 0xFFFF), "Ii"},
1264 {"ftrapogl", two(0xF07C, 0x0006), two(0xF1FF, 0xFFFF), "Ii"},
1265 {"ftrapogt", two(0xF07C, 0x0002), two(0xF1FF, 0xFFFF), "Ii"},
1266 {"ftrapole", two(0xF07C, 0x0005), two(0xF1FF, 0xFFFF), "Ii"},
1267 {"ftrapolt", two(0xF07C, 0x0004), two(0xF1FF, 0xFFFF), "Ii"},
1268 {"ftrapor", two(0xF07C, 0x0007), two(0xF1FF, 0xFFFF), "Ii"},
1269 {"ftrapseq", two(0xF07C, 0x0011), two(0xF1FF, 0xFFFF), "Ii"},
1270 {"ftrapsf", two(0xF07C, 0x0010), two(0xF1FF, 0xFFFF), "Ii"},
1271 {"ftrapsne", two(0xF07C, 0x001E), two(0xF1FF, 0xFFFF), "Ii"},
1272 {"ftrapst", two(0xF07C, 0x001F), two(0xF1FF, 0xFFFF), "Ii"},
1273 {"ftrapt", two(0xF07C, 0x000F), two(0xF1FF, 0xFFFF), "Ii"},
1274 {"ftrapueq", two(0xF07C, 0x0009), two(0xF1FF, 0xFFFF), "Ii"},
1275 {"ftrapuge", two(0xF07C, 0x000B), two(0xF1FF, 0xFFFF), "Ii"},
1276 {"ftrapugt", two(0xF07C, 0x000A), two(0xF1FF, 0xFFFF), "Ii"},
1277 {"ftrapule", two(0xF07C, 0x000D), two(0xF1FF, 0xFFFF), "Ii"},
1278 {"ftrapult", two(0xF07C, 0x000C), two(0xF1FF, 0xFFFF), "Ii"},
1279 {"ftrapun", two(0xF07C, 0x0008), two(0xF1FF, 0xFFFF), "Ii"},
1280
1281 {"ftrapeqw", two(0xF07A, 0x0001), two(0xF1FF, 0xFFFF), "Ii^w"},
1282 {"ftrapfw", two(0xF07A, 0x0000), two(0xF1FF, 0xFFFF), "Ii^w"},
1283 {"ftrapgew", two(0xF07A, 0x0013), two(0xF1FF, 0xFFFF), "Ii^w"},
1284 {"ftrapglw", two(0xF07A, 0x0016), two(0xF1FF, 0xFFFF), "Ii^w"},
1285 {"ftrapglew", two(0xF07A, 0x0017), two(0xF1FF, 0xFFFF), "Ii^w"},
1286 {"ftrapgtw", two(0xF07A, 0x0012), two(0xF1FF, 0xFFFF), "Ii^w"},
1287 {"ftraplew", two(0xF07A, 0x0015), two(0xF1FF, 0xFFFF), "Ii^w"},
1288 {"ftrapltw", two(0xF07A, 0x0014), two(0xF1FF, 0xFFFF), "Ii^w"},
1289 {"ftrapnew", two(0xF07A, 0x000E), two(0xF1FF, 0xFFFF), "Ii^w"},
1290 {"ftrapngew", two(0xF07A, 0x001C), two(0xF1FF, 0xFFFF), "Ii^w"},
1291 {"ftrapnglw", two(0xF07A, 0x0019), two(0xF1FF, 0xFFFF), "Ii^w"},
1292 {"ftrapnglew", two(0xF07A, 0x0018), two(0xF1FF, 0xFFFF), "Ii^w"},
1293 {"ftrapngtw", two(0xF07A, 0x001D), two(0xF1FF, 0xFFFF), "Ii^w"},
1294 {"ftrapnlew", two(0xF07A, 0x001A), two(0xF1FF, 0xFFFF), "Ii^w"},
1295 {"ftrapnltw", two(0xF07A, 0x001B), two(0xF1FF, 0xFFFF), "Ii^w"},
1296 {"ftrapogew", two(0xF07A, 0x0003), two(0xF1FF, 0xFFFF), "Ii^w"},
1297 {"ftrapoglw", two(0xF07A, 0x0006), two(0xF1FF, 0xFFFF), "Ii^w"},
1298 {"ftrapogtw", two(0xF07A, 0x0002), two(0xF1FF, 0xFFFF), "Ii^w"},
1299 {"ftrapolew", two(0xF07A, 0x0005), two(0xF1FF, 0xFFFF), "Ii^w"},
1300 {"ftrapoltw", two(0xF07A, 0x0004), two(0xF1FF, 0xFFFF), "Ii^w"},
1301 {"ftraporw", two(0xF07A, 0x0007), two(0xF1FF, 0xFFFF), "Ii^w"},
1302 {"ftrapseqw", two(0xF07A, 0x0011), two(0xF1FF, 0xFFFF), "Ii^w"},
1303 {"ftrapsfw", two(0xF07A, 0x0010), two(0xF1FF, 0xFFFF), "Ii^w"},
1304 {"ftrapsnew", two(0xF07A, 0x001E), two(0xF1FF, 0xFFFF), "Ii^w"},
1305 {"ftrapstw", two(0xF07A, 0x001F), two(0xF1FF, 0xFFFF), "Ii^w"},
1306 {"ftraptw", two(0xF07A, 0x000F), two(0xF1FF, 0xFFFF), "Ii^w"},
1307 {"ftrapueqw", two(0xF07A, 0x0009), two(0xF1FF, 0xFFFF), "Ii^w"},
1308 {"ftrapugew", two(0xF07A, 0x000B), two(0xF1FF, 0xFFFF), "Ii^w"},
1309 {"ftrapugtw", two(0xF07A, 0x000A), two(0xF1FF, 0xFFFF), "Ii^w"},
1310 {"ftrapulew", two(0xF07A, 0x000D), two(0xF1FF, 0xFFFF), "Ii^w"},
1311 {"ftrapultw", two(0xF07A, 0x000C), two(0xF1FF, 0xFFFF), "Ii^w"},
1312 {"ftrapunw", two(0xF07A, 0x0008), two(0xF1FF, 0xFFFF), "Ii^w"},
1313
1314 {"ftrapeql", two(0xF07B, 0x0001), two(0xF1FF, 0xFFFF), "Ii^l"},
1315 {"ftrapfl", two(0xF07B, 0x0000), two(0xF1FF, 0xFFFF), "Ii^l"},
1316 {"ftrapgel", two(0xF07B, 0x0013), two(0xF1FF, 0xFFFF), "Ii^l"},
1317 {"ftrapgll", two(0xF07B, 0x0016), two(0xF1FF, 0xFFFF), "Ii^l"},
1318 {"ftrapglel", two(0xF07B, 0x0017), two(0xF1FF, 0xFFFF), "Ii^l"},
1319 {"ftrapgtl", two(0xF07B, 0x0012), two(0xF1FF, 0xFFFF), "Ii^l"},
1320 {"ftraplel", two(0xF07B, 0x0015), two(0xF1FF, 0xFFFF), "Ii^l"},
1321 {"ftrapltl", two(0xF07B, 0x0014), two(0xF1FF, 0xFFFF), "Ii^l"},
1322 {"ftrapnel", two(0xF07B, 0x000E), two(0xF1FF, 0xFFFF), "Ii^l"},
1323 {"ftrapngel", two(0xF07B, 0x001C), two(0xF1FF, 0xFFFF), "Ii^l"},
1324 {"ftrapngll", two(0xF07B, 0x0019), two(0xF1FF, 0xFFFF), "Ii^l"},
1325 {"ftrapnglel", two(0xF07B, 0x0018), two(0xF1FF, 0xFFFF), "Ii^l"},
1326 {"ftrapngtl", two(0xF07B, 0x001D), two(0xF1FF, 0xFFFF), "Ii^l"},
1327 {"ftrapnlel", two(0xF07B, 0x001A), two(0xF1FF, 0xFFFF), "Ii^l"},
1328 {"ftrapnltl", two(0xF07B, 0x001B), two(0xF1FF, 0xFFFF), "Ii^l"},
1329 {"ftrapogel", two(0xF07B, 0x0003), two(0xF1FF, 0xFFFF), "Ii^l"},
1330 {"ftrapogll", two(0xF07B, 0x0006), two(0xF1FF, 0xFFFF), "Ii^l"},
1331 {"ftrapogtl", two(0xF07B, 0x0002), two(0xF1FF, 0xFFFF), "Ii^l"},
1332 {"ftrapolel", two(0xF07B, 0x0005), two(0xF1FF, 0xFFFF), "Ii^l"},
1333 {"ftrapoltl", two(0xF07B, 0x0004), two(0xF1FF, 0xFFFF), "Ii^l"},
1334 {"ftraporl", two(0xF07B, 0x0007), two(0xF1FF, 0xFFFF), "Ii^l"},
1335 {"ftrapseql", two(0xF07B, 0x0011), two(0xF1FF, 0xFFFF), "Ii^l"},
1336 {"ftrapsfl", two(0xF07B, 0x0010), two(0xF1FF, 0xFFFF), "Ii^l"},
1337 {"ftrapsnel", two(0xF07B, 0x001E), two(0xF1FF, 0xFFFF), "Ii^l"},
1338 {"ftrapstl", two(0xF07B, 0x001F), two(0xF1FF, 0xFFFF), "Ii^l"},
1339 {"ftraptl", two(0xF07B, 0x000F), two(0xF1FF, 0xFFFF), "Ii^l"},
1340 {"ftrapueql", two(0xF07B, 0x0009), two(0xF1FF, 0xFFFF), "Ii^l"},
1341 {"ftrapugel", two(0xF07B, 0x000B), two(0xF1FF, 0xFFFF), "Ii^l"},
1342 {"ftrapugtl", two(0xF07B, 0x000A), two(0xF1FF, 0xFFFF), "Ii^l"},
1343 {"ftrapulel", two(0xF07B, 0x000D), two(0xF1FF, 0xFFFF), "Ii^l"},
1344 {"ftrapultl", two(0xF07B, 0x000C), two(0xF1FF, 0xFFFF), "Ii^l"},
1345 {"ftrapunl", two(0xF07B, 0x0008), two(0xF1FF, 0xFFFF), "Ii^l"},
1346
1347 {"ftstb", two(0xF000, 0x583A), two(0xF1C0, 0xFC7F), "Ii;b"},
1348 {"ftstd", two(0xF000, 0x543A), two(0xF1C0, 0xFC7F), "Ii;F"},
1349 {"ftstl", two(0xF000, 0x403A), two(0xF1C0, 0xFC7F), "Ii;l"},
1350 {"ftstp", two(0xF000, 0x4C3A), two(0xF1C0, 0xFC7F), "Ii;p"},
1351 {"ftsts", two(0xF000, 0x443A), two(0xF1C0, 0xFC7F), "Ii;f"},
1352 {"ftstw", two(0xF000, 0x503A), two(0xF1C0, 0xFC7F), "Ii;w"},
1353 {"ftstx", two(0xF000, 0x003A), two(0xF1C0, 0xE07F), "IiF8"},
1354 {"ftstx", two(0xF000, 0x483A), two(0xF1C0, 0xFC7F), "Ii;x"},
1355
1356 {"ftwotoxb", two(0xF000, 0x5811), two(0xF1C0, 0xFC7F), "Ii;bF7"},
1357 {"ftwotoxd", two(0xF000, 0x5411), two(0xF1C0, 0xFC7F), "Ii;FF7"},
1358 {"ftwotoxl", two(0xF000, 0x4011), two(0xF1C0, 0xFC7F), "Ii;lF7"},
1359 {"ftwotoxp", two(0xF000, 0x4C11), two(0xF1C0, 0xFC7F), "Ii;pF7"},
1360 {"ftwotoxs", two(0xF000, 0x4411), two(0xF1C0, 0xFC7F), "Ii;fF7"},
1361 {"ftwotoxw", two(0xF000, 0x5011), two(0xF1C0, 0xFC7F), "Ii;wF7"},
1362 {"ftwotoxx", two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiF8F7"},
1363 {"ftwotoxx", two(0xF000, 0x4811), two(0xF1C0, 0xFC7F), "Ii;xF7"},
1364 {"ftwotoxx", two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiFt"},
1365
1366
1367 {"fjeq", one(0xF081), one(0xF1FF), "IdBc"},
1368 {"fjf", one(0xF080), one(0xF1FF), "IdBc"},
1369 {"fjge", one(0xF093), one(0xF1FF), "IdBc"},
1370 {"fjgl", one(0xF096), one(0xF1FF), "IdBc"},
1371 {"fjgle", one(0xF097), one(0xF1FF), "IdBc"},
1372 {"fjgt", one(0xF092), one(0xF1FF), "IdBc"},
1373 {"fjle", one(0xF095), one(0xF1FF), "IdBc"},
1374 {"fjlt", one(0xF094), one(0xF1FF), "IdBc"},
1375 {"fjne", one(0xF08E), one(0xF1FF), "IdBc"},
1376 {"fjnge", one(0xF09C), one(0xF1FF), "IdBc"},
1377 {"fjngl", one(0xF099), one(0xF1FF), "IdBc"},
1378 {"fjngle", one(0xF098), one(0xF1FF), "IdBc"},
1379 {"fjngt", one(0xF09D), one(0xF1FF), "IdBc"},
1380 {"fjnle", one(0xF09A), one(0xF1FF), "IdBc"},
1381 {"fjnlt", one(0xF09B), one(0xF1FF), "IdBc"},
1382 {"fjoge", one(0xF083), one(0xF1FF), "IdBc"},
1383 {"fjogl", one(0xF086), one(0xF1FF), "IdBc"},
1384 {"fjogt", one(0xF082), one(0xF1FF), "IdBc"},
1385 {"fjole", one(0xF085), one(0xF1FF), "IdBc"},
1386 {"fjolt", one(0xF084), one(0xF1FF), "IdBc"},
1387 {"fjor", one(0xF087), one(0xF1FF), "IdBc"},
1388 {"fjseq", one(0xF091), one(0xF1FF), "IdBc"},
1389 {"fjsf", one(0xF090), one(0xF1FF), "IdBc"},
1390 {"fjsne", one(0xF09E), one(0xF1FF), "IdBc"},
1391 {"fjst", one(0xF09F), one(0xF1FF), "IdBc"},
1392 {"fjt", one(0xF08F), one(0xF1FF), "IdBc"},
1393 {"fjueq", one(0xF089), one(0xF1FF), "IdBc"},
1394 {"fjuge", one(0xF08B), one(0xF1FF), "IdBc"},
1395 {"fjugt", one(0xF08A), one(0xF1FF), "IdBc"},
1396 {"fjule", one(0xF08D), one(0xF1FF), "IdBc"},
1397 {"fjult", one(0xF08C), one(0xF1FF), "IdBc"},
1398 {"fjun", one(0xF088), one(0xF1FF), "IdBc"},
1399
1400 /* The assembler will ignore attempts to force a short offset */
1401
1402 {"bhis", one(0061000), one(0177400), "Bg"},
1403 {"blss", one(0061400), one(0177400), "Bg"},
1404 {"bccs", one(0062000), one(0177400), "Bg"},
1405 {"bcss", one(0062400), one(0177400), "Bg"},
1406 {"bnes", one(0063000), one(0177400), "Bg"},
1407 {"beqs", one(0063400), one(0177400), "Bg"},
1408 {"bvcs", one(0064000), one(0177400), "Bg"},
1409 {"bvss", one(0064400), one(0177400), "Bg"},
1410 {"bpls", one(0065000), one(0177400), "Bg"},
1411 {"bmis", one(0065400), one(0177400), "Bg"},
1412 {"bges", one(0066000), one(0177400), "Bg"},
1413 {"blts", one(0066400), one(0177400), "Bg"},
1414 {"bgts", one(0067000), one(0177400), "Bg"},
1415 {"bles", one(0067400), one(0177400), "Bg"},
1416
1417 /* Alternate mnemonics for SUN */
1418
1419 {"jbsr", one(0060400), one(0177400), "Bg"},
1420 {"jbsr", one(0047200), one(0177700), "!s"},
1421 {"jra", one(0060000), one(0177400), "Bg"},
1422 {"jra", one(0047300), one(0177700), "!s"},
1423
1424 {"jhi", one(0061000), one(0177400), "Bg"},
1425 {"jls", one(0061400), one(0177400), "Bg"},
1426 {"jcc", one(0062000), one(0177400), "Bg"},
1427 {"jcs", one(0062400), one(0177400), "Bg"},
1428 {"jne", one(0063000), one(0177400), "Bg"},
1429 {"jeq", one(0063400), one(0177400), "Bg"},
1430 {"jvc", one(0064000), one(0177400), "Bg"},
1431 {"jvs", one(0064400), one(0177400), "Bg"},
1432 {"jpl", one(0065000), one(0177400), "Bg"},
1433 {"jmi", one(0065400), one(0177400), "Bg"},
1434 {"jge", one(0066000), one(0177400), "Bg"},
1435 {"jlt", one(0066400), one(0177400), "Bg"},
1436 {"jgt", one(0067000), one(0177400), "Bg"},
1437 {"jle", one(0067400), one(0177400), "Bg"},
1438
1439 /* Short offsets are ignored */
1440
1441 {"jbsrs", one(0060400), one(0177400), "Bg"},
1442 {"jras", one(0060000), one(0177400), "Bg"},
1443 {"jhis", one(0061000), one(0177400), "Bg"},
1444 {"jlss", one(0061400), one(0177400), "Bg"},
1445 {"jccs", one(0062000), one(0177400), "Bg"},
1446 {"jcss", one(0062400), one(0177400), "Bg"},
1447 {"jnes", one(0063000), one(0177400), "Bg"},
1448 {"jeqs", one(0063400), one(0177400), "Bg"},
1449 {"jvcs", one(0064000), one(0177400), "Bg"},
1450 {"jvss", one(0064400), one(0177400), "Bg"},
1451 {"jpls", one(0065000), one(0177400), "Bg"},
1452 {"jmis", one(0065400), one(0177400), "Bg"},
1453 {"jges", one(0066000), one(0177400), "Bg"},
1454 {"jlts", one(0066400), one(0177400), "Bg"},
1455 {"jgts", one(0067000), one(0177400), "Bg"},
1456 {"jles", one(0067400), one(0177400), "Bg"},
1457
1458 {"movql", one(0070000), one(0170400), "MsDd"},
1459 {"moveql", one(0070000), one(0170400), "MsDd"},
1460 {"moval", one(0020100), one(0170700), "*lAd"},
1461 {"movaw", one(0030100), one(0170700), "*wAd"},
1462 {"movb", one(0010000), one(0170000), ";b$d"}, /* mov */
1463 {"movl", one(0070000), one(0170400), "MsDd"}, /* movq written as mov */
1464 {"movl", one(0020000), one(0170000), "*l$d"},
1465 {"movl", one(0020100), one(0170700), "*lAd"},
1466 {"movl", one(0047140), one(0177770), "AsUd"}, /* mov to USP */
1467 {"movl", one(0047150), one(0177770), "UdAs"}, /* mov from USP */
1468 {"movc", one(0047173), one(0177777), "R1Jj"},
1469 {"movc", one(0047173), one(0177777), "R1#j"},
1470 {"movc", one(0047172), one(0177777), "JjR1"},
1471 {"movc", one(0047172), one(0177777), "#jR1"},
1472 {"movml", one(0044300), one(0177700), "#w&s"}, /* movm reg to mem. */
1473 {"movml", one(0044340), one(0177770), "#w-s"}, /* movm reg to autodecrement. */
1474 {"movml", one(0046300), one(0177700), "!s#w"}, /* movm mem to reg. */
1475 {"movml", one(0046330), one(0177770), "+s#w"}, /* movm autoinc to reg. */
1476 {"movml", one(0044300), one(0177700), "Lw&s"}, /* movm reg to mem. */
1477 {"movml", one(0044340), one(0177770), "lw-s"}, /* movm reg to autodecrement. */
1478 {"movml", one(0046300), one(0177700), "!sLw"}, /* movm mem to reg. */
1479 {"movml", one(0046330), one(0177770), "+sLw"}, /* movm autoinc to reg. */
1480 {"movmw", one(0044200), one(0177700), "#w&s"}, /* movm reg to mem. */
1481 {"movmw", one(0044240), one(0177770), "#w-s"}, /* movm reg to autodecrement. */
1482 {"movmw", one(0046200), one(0177700), "!s#w"}, /* movm mem to reg. */
1483 {"movmw", one(0046230), one(0177770), "+s#w"}, /* movm autoinc to reg. */
1484 {"movmw", one(0044200), one(0177700), "Lw&s"}, /* movm reg to mem. */
1485 {"movmw", one(0044240), one(0177770), "lw-s"}, /* movm reg to autodecrement. */
1486 {"movmw", one(0046200), one(0177700), "!sLw"}, /* movm mem to reg. */
1487 {"movmw", one(0046230), one(0177770), "+sLw"}, /* movm autoinc to reg. */
1488 {"movpl", one(0000510), one(0170770), "dsDd"}, /* memory to register */
1489 {"movpl", one(0000710), one(0170770), "Ddds"}, /* register to memory */
1490 {"movpw", one(0000410), one(0170770), "dsDd"}, /* memory to register */
1491 {"movpw", one(0000610), one(0170770), "Ddds"}, /* register to memory */
1492 {"movq", one(0070000), one(0170400), "MsDd"},
1493 {"movw", one(0030000), one(0170000), "*w$d"},
1494 {"movw", one(0030100), one(0170700), "*wAd"}, /* mova, written as mov */
1495 {"movw", one(0040300), one(0177700), "Ss$s"}, /* Move from sr */
1496 {"movw", one(0041300), one(0177700), "Cs$s"}, /* Move from ccr */
1497 {"movw", one(0042300), one(0177700), ";wCd"}, /* mov to ccr */
1498 {"movw", one(0043300), one(0177700), ";wSd"}, /* mov to sr */
1499
1500 {"movsb", two(0007000, 0), two(0177700, 07777), "~sR1"},
1501 {"movsb", two(0007000, 04000), two(0177700, 07777), "R1~s"},
1502 {"movsl", two(0007200, 0), two(0177700, 07777), "~sR1"},
1503 {"movsl", two(0007200, 04000), two(0177700, 07777), "R1~s"},
1504 {"movsw", two(0007100, 0), two(0177700, 07777), "~sR1"},
1505 {"movsw", two(0007100, 04000), two(0177700, 07777), "R1~s"},
1506
1507 #ifdef m68851
1508 /* name */ /* opcode */ /* match */ /* args */
1509
1510 {"pbac", one(0xf0c7), one(0xffbf), "Bc"},
1511 {"pbacw", one(0xf087), one(0xffbf), "Bc"},
1512 {"pbas", one(0xf0c6), one(0xffbf), "Bc"},
1513 {"pbasw", one(0xf086), one(0xffbf), "Bc"},
1514 {"pbbc", one(0xf0c1), one(0xffbf), "Bc"},
1515 {"pbbcw", one(0xf081), one(0xffbf), "Bc"},
1516 {"pbbs", one(0xf0c0), one(0xffbf), "Bc"},
1517 {"pbbsw", one(0xf080), one(0xffbf), "Bc"},
1518 {"pbcc", one(0xf0cf), one(0xffbf), "Bc"},
1519 {"pbccw", one(0xf08f), one(0xffbf), "Bc"},
1520 {"pbcs", one(0xf0ce), one(0xffbf), "Bc"},
1521 {"pbcsw", one(0xf08e), one(0xffbf), "Bc"},
1522 {"pbgc", one(0xf0cd), one(0xffbf), "Bc"},
1523 {"pbgcw", one(0xf08d), one(0xffbf), "Bc"},
1524 {"pbgs", one(0xf0cc), one(0xffbf), "Bc"},
1525 {"pbgsw", one(0xf08c), one(0xffbf), "Bc"},
1526 {"pbic", one(0xf0cb), one(0xffbf), "Bc"},
1527 {"pbicw", one(0xf08b), one(0xffbf), "Bc"},
1528 {"pbis", one(0xf0ca), one(0xffbf), "Bc"},
1529 {"pbisw", one(0xf08a), one(0xffbf), "Bc"},
1530 {"pblc", one(0xf0c3), one(0xffbf), "Bc"},
1531 {"pblcw", one(0xf083), one(0xffbf), "Bc"},
1532 {"pbls", one(0xf0c2), one(0xffbf), "Bc"},
1533 {"pblsw", one(0xf082), one(0xffbf), "Bc"},
1534 {"pbsc", one(0xf0c5), one(0xffbf), "Bc"},
1535 {"pbscw", one(0xf085), one(0xffbf), "Bc"},
1536 {"pbss", one(0xf0c4), one(0xffbf), "Bc"},
1537 {"pbssw", one(0xf084), one(0xffbf), "Bc"},
1538 {"pbwc", one(0xf0c9), one(0xffbf), "Bc"},
1539 {"pbwcw", one(0xf089), one(0xffbf), "Bc"},
1540 {"pbws", one(0xf0c8), one(0xffbf), "Bc"},
1541 {"pbwsw", one(0xf088), one(0xffbf), "Bc"},
1542
1543
1544 {"pdbac", two(0xf048, 0x0007), two(0xfff8, 0xffff), "DsBw"},
1545 {"pdbas", two(0xf048, 0x0006), two(0xfff8, 0xffff), "DsBw"},
1546 {"pdbbc", two(0xf048, 0x0001), two(0xfff8, 0xffff), "DsBw"},
1547 {"pdbbs", two(0xf048, 0x0000), two(0xfff8, 0xffff), "DsBw"},
1548 {"pdbcc", two(0xf048, 0x000f), two(0xfff8, 0xffff), "DsBw"},
1549 {"pdbcs", two(0xf048, 0x000e), two(0xfff8, 0xffff), "DsBw"},
1550 {"pdbgc", two(0xf048, 0x000d), two(0xfff8, 0xffff), "DsBw"},
1551 {"pdbgs", two(0xf048, 0x000c), two(0xfff8, 0xffff), "DsBw"},
1552 {"pdbic", two(0xf048, 0x000b), two(0xfff8, 0xffff), "DsBw"},
1553 {"pdbis", two(0xf048, 0x000a), two(0xfff8, 0xffff), "DsBw"},
1554 {"pdblc", two(0xf048, 0x0003), two(0xfff8, 0xffff), "DsBw"},
1555 {"pdbls", two(0xf048, 0x0002), two(0xfff8, 0xffff), "DsBw"},
1556 {"pdbsc", two(0xf048, 0x0005), two(0xfff8, 0xffff), "DsBw"},
1557 {"pdbss", two(0xf048, 0x0004), two(0xfff8, 0xffff), "DsBw"},
1558 {"pdbwc", two(0xf048, 0x0009), two(0xfff8, 0xffff), "DsBw"},
1559 {"pdbws", two(0xf048, 0x0008), two(0xfff8, 0xffff), "DsBw"},
1560
1561 {"pflusha", two(0xf000, 0x2400), two(0xffff, 0xffff), "" },
1562
1563 {"pflush", two(0xf000, 0x3010), two(0xffc0, 0xfe10), "T3T9" },
1564 {"pflush", two(0xf000, 0x3810), two(0xffc0, 0xfe10), "T3T9&s" },
1565 {"pflush", two(0xf000, 0x3008), two(0xffc0, 0xfe18), "D3T9" },
1566 {"pflush", two(0xf000, 0x3808), two(0xffc0, 0xfe18), "D3T9&s" },
1567 {"pflush", two(0xf000, 0x3000), two(0xffc0, 0xfe1e), "f3T9" },
1568 {"pflush", two(0xf000, 0x3800), two(0xffc0, 0xfe1e), "f3T9&s" },
1569
1570 {"pflushs", two(0xf000, 0x3410), two(0xfff8, 0xfe10), "T3T9" },
1571 {"pflushs", two(0xf000, 0x3c00), two(0xfff8, 0xfe00), "T3T9&s" },
1572
1573 #ifdef comment
1574 /* gas's version had this instead. */
1575 {"pflushs", two(0xf000, 0x3c10), two(0xfff8, 0xfe00), "T3T9&s" },
1576 #endif /* comment */
1577
1578 {"pflushs", two(0xf000, 0x3408), two(0xfff8, 0xfe18), "D3T9" },
1579 {"pflushs", two(0xf000, 0x3c08), two(0xfff8, 0xfe18), "D3T9&s" },
1580 {"pflushs", two(0xf000, 0x3400), two(0xfff8, 0xfe1e), "f3T9" },
1581 {"pflushs", two(0xf000, 0x3c00), two(0xfff8, 0xfe1e), "f3T9&s"},
1582
1583 {"pflushr", two(0xf000, 0xa000), two(0xffc0, 0xffff), "|s" },
1584
1585 {"ploadr", two(0xf000, 0x2210), two(0xffc0, 0xfff0), "T3&s" },
1586 {"ploadr", two(0xf000, 0x2208), two(0xffc0, 0xfff8), "D3&s" },
1587 {"ploadr", two(0xf000, 0x2200), two(0xffc0, 0xfffe), "f3&s" },
1588 {"ploadw", two(0xf000, 0x2010), two(0xffc0, 0xfff0), "T3&s" },
1589 {"ploadw", two(0xf000, 0x2008), two(0xffc0, 0xfff8), "D3&s" },
1590 {"ploadw", two(0xf000, 0x2000), two(0xffc0, 0xfffe), "f3&s" },
1591
1592 /* TC, CRP, DRP, SRP, CAL, VAL, SCC, AC */
1593 {"pmove", two(0xf000, 0x4000), two(0xffc0, 0xe3ff), "*sP8" },
1594 {"pmove", two(0xf000, 0x4200), two(0xffc0, 0xe3ff), "P8%s" },
1595 {"pmove", two(0xf000, 0x4000), two(0xffc0, 0xe3ff), "|sW8" },
1596 {"pmove", two(0xf000, 0x4200), two(0xffc0, 0xe3ff), "W8~s" },
1597
1598 /* BADx, BACx */
1599 {"pmove", two(0xf000, 0x6200), two(0xffc0, 0xe3e3), "*sX3" },
1600 {"pmove", two(0xf000, 0x6000), two(0xffc0, 0xe3e3), "X3%s" },
1601
1602 /* PSR, PCSR */
1603 /* {"pmove", two(0xf000, 0x6100), two(oxffc0, oxffff), "*sZ8" }, */
1604 {"pmove", two(0xf000, 0x6000), two(0xffc0, 0xffff), "*sY8" },
1605 {"pmove", two(0xf000, 0x6200), two(0xffc0, 0xffff), "Y8%s" },
1606 {"pmove", two(0xf000, 0x6600), two(0xffc0, 0xffff), "Z8%s" },
1607
1608 {"prestore", one(0xf140), one(0xffc0), "&s"},
1609 {"prestore", one(0xf158), one(0xfff8), "+s"},
1610 {"psave", one(0xf100), one(0xffc0), "&s"},
1611 {"psave", one(0xf100), one(0xffc0), "+s"},
1612
1613 {"psac", two(0xf040, 0x0007), two(0xffc0, 0xffff), "@s"},
1614 {"psas", two(0xf040, 0x0006), two(0xffc0, 0xffff), "@s"},
1615 {"psbc", two(0xf040, 0x0001), two(0xffc0, 0xffff), "@s"},
1616 {"psbs", two(0xf040, 0x0000), two(0xffc0, 0xffff), "@s"},
1617 {"pscc", two(0xf040, 0x000f), two(0xffc0, 0xffff), "@s"},
1618 {"pscs", two(0xf040, 0x000e), two(0xffc0, 0xffff), "@s"},
1619 {"psgc", two(0xf040, 0x000d), two(0xffc0, 0xffff), "@s"},
1620 {"psgs", two(0xf040, 0x000c), two(0xffc0, 0xffff), "@s"},
1621 {"psic", two(0xf040, 0x000b), two(0xffc0, 0xffff), "@s"},
1622 {"psis", two(0xf040, 0x000a), two(0xffc0, 0xffff), "@s"},
1623 {"pslc", two(0xf040, 0x0003), two(0xffc0, 0xffff), "@s"},
1624 {"psls", two(0xf040, 0x0002), two(0xffc0, 0xffff), "@s"},
1625 {"pssc", two(0xf040, 0x0005), two(0xffc0, 0xffff), "@s"},
1626 {"psss", two(0xf040, 0x0004), two(0xffc0, 0xffff), "@s"},
1627 {"pswc", two(0xf040, 0x0009), two(0xffc0, 0xffff), "@s"},
1628 {"psws", two(0xf040, 0x0008), two(0xffc0, 0xffff), "@s"},
1629
1630 {"ptestr", two(0xf000, 0x8210), two(0xffc0, 0xe3f0), "T3&sQ8" },
1631 {"ptestr", two(0xf000, 0x8310), two(0xffc0, 0xe310), "T3&sQ8A9" },
1632 {"ptestr", two(0xf000, 0x8208), two(0xffc0, 0xe3f8), "D3&sQ8" },
1633 {"ptestr", two(0xf000, 0x8308), two(0xffc0, 0xe318), "D3&sQ8A9" },
1634 {"ptestr", two(0xf000, 0x8200), two(0xffc0, 0xe3fe), "f3&sQ8" },
1635 {"ptestr", two(0xf000, 0x8300), two(0xffc0, 0xe31e), "f3&sQ8A9" },
1636
1637 {"ptestw", two(0xf000, 0x8010), two(0xffc0, 0xe3f0), "T3&sQ8" },
1638 {"ptestw", two(0xf000, 0x8110), two(0xffc0, 0xe310), "T3&sQ8A9" },
1639 {"ptestw", two(0xf000, 0x8008), two(0xffc0, 0xe3f8), "D3&sQ8" },
1640 {"ptestw", two(0xf000, 0x8108), two(0xffc0, 0xe318), "D3&sQ8A9" },
1641 {"ptestw", two(0xf000, 0x8000), two(0xffc0, 0xe3fe), "f3&sQ8" },
1642 {"ptestw", two(0xf000, 0x8100), two(0xffc0, 0xe31e), "f3&sQ8A9" },
1643
1644 {"ptrapacw", two(0xf07a, 0x0007), two(0xffff, 0xffff), "#w"},
1645 {"ptrapacl", two(0xf07b, 0x0007), two(0xffff, 0xffff), "#l"},
1646 {"ptrapac", two(0xf07c, 0x0007), two(0xffff, 0xffff), ""},
1647
1648 {"ptrapasw", two(0xf07a, 0x0006), two(0xffff, 0xffff), "#w"},
1649 {"ptrapasl", two(0xf07b, 0x0006), two(0xffff, 0xffff), "#l"},
1650 {"ptrapas", two(0xf07c, 0x0006), two(0xffff, 0xffff), ""},
1651
1652 {"ptrapbcw", two(0xf07a, 0x0001), two(0xffff, 0xffff), "#w"},
1653 {"ptrapbcl", two(0xf07b, 0x0001), two(0xffff, 0xffff), "#l"},
1654 {"ptrapbc", two(0xf07c, 0x0001), two(0xffff, 0xffff), ""},
1655
1656 {"ptrapbsw", two(0xf07a, 0x0000), two(0xffff, 0xffff), "#w"},
1657 {"ptrapbsl", two(0xf07b, 0x0000), two(0xffff, 0xffff), "#l"},
1658 {"ptrapbs", two(0xf07c, 0x0000), two(0xffff, 0xffff), ""},
1659
1660 {"ptrapccw", two(0xf07a, 0x000f), two(0xffff, 0xffff), "#w"},
1661 {"ptrapccl", two(0xf07b, 0x000f), two(0xffff, 0xffff), "#l"},
1662 {"ptrapcc", two(0xf07c, 0x000f), two(0xffff, 0xffff), ""},
1663
1664 {"ptrapcsw", two(0xf07a, 0x000e), two(0xffff, 0xffff), "#w"},
1665 {"ptrapcsl", two(0xf07b, 0x000e), two(0xffff, 0xffff), "#l"},
1666 {"ptrapcs", two(0xf07c, 0x000e), two(0xffff, 0xffff), ""},
1667
1668 {"ptrapgcw", two(0xf07a, 0x000d), two(0xffff, 0xffff), "#w"},
1669 {"ptrapgcl", two(0xf07b, 0x000d), two(0xffff, 0xffff), "#l"},
1670 {"ptrapgc", two(0xf07c, 0x000d), two(0xffff, 0xffff), ""},
1671
1672 {"ptrapgsw", two(0xf07a, 0x000c), two(0xffff, 0xffff), "#w"},
1673 {"ptrapgsl", two(0xf07b, 0x000c), two(0xffff, 0xffff), "#l"},
1674 {"ptrapgs", two(0xf07c, 0x000c), two(0xffff, 0xffff), ""},
1675
1676 {"ptrapicw", two(0xf07a, 0x000b), two(0xffff, 0xffff), "#w"},
1677 {"ptrapicl", two(0xf07b, 0x000b), two(0xffff, 0xffff), "#l"},
1678 {"ptrapic", two(0xf07c, 0x000b), two(0xffff, 0xffff), ""},
1679
1680 {"ptrapisw", two(0xf07a, 0x000a), two(0xffff, 0xffff), "#w"},
1681 {"ptrapisl", two(0xf07b, 0x000a), two(0xffff, 0xffff), "#l"},
1682 {"ptrapis", two(0xf07c, 0x000a), two(0xffff, 0xffff), ""},
1683
1684 {"ptraplcw", two(0xf07a, 0x0003), two(0xffff, 0xffff), "#w"},
1685 {"ptraplcl", two(0xf07b, 0x0003), two(0xffff, 0xffff), "#l"},
1686 {"ptraplc", two(0xf07c, 0x0003), two(0xffff, 0xffff), ""},
1687
1688 {"ptraplsw", two(0xf07a, 0x0002), two(0xffff, 0xffff), "#w"},
1689 {"ptraplsl", two(0xf07b, 0x0002), two(0xffff, 0xffff), "#l"},
1690 {"ptrapls", two(0xf07c, 0x0002), two(0xffff, 0xffff), ""},
1691
1692 {"ptrapscw", two(0xf07a, 0x0005), two(0xffff, 0xffff), "#w"},
1693 {"ptrapscl", two(0xf07b, 0x0005), two(0xffff, 0xffff), "#l"},
1694 {"ptrapsc", two(0xf07c, 0x0005), two(0xffff, 0xffff), ""},
1695
1696 {"ptrapssw", two(0xf07a, 0x0004), two(0xffff, 0xffff), "#w"},
1697 {"ptrapssl", two(0xf07b, 0x0004), two(0xffff, 0xffff), "#l"},
1698 {"ptrapss", two(0xf07c, 0x0004), two(0xffff, 0xffff), ""},
1699
1700 {"ptrapwcw", two(0xf07a, 0x0009), two(0xffff, 0xffff), "#w"},
1701 {"ptrapwcl", two(0xf07b, 0x0009), two(0xffff, 0xffff), "#l"},
1702 {"ptrapwc", two(0xf07c, 0x0009), two(0xffff, 0xffff), ""},
1703
1704 {"ptrapwsw", two(0xf07a, 0x0008), two(0xffff, 0xffff), "#w"},
1705 {"ptrapwsl", two(0xf07b, 0x0008), two(0xffff, 0xffff), "#l"},
1706 {"ptrapws", two(0xf07c, 0x0008), two(0xffff, 0xffff), ""},
1707
1708 {"pvalid", two(0xf000, 0x2800), two(0xffc0, 0xffff), "Vs&s"},
1709 {"pvalid", two(0xf000, 0x2c00), two(0xffc0, 0xfff8), "A3&s" },
1710
1711 #endif /* m68851 */
1712
1713 };
1714
1715 int numopcodes=sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
1716
1717 struct m68k_opcode *endop = m68k_opcodes+sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
This page took 0.201533 seconds and 5 git commands to generate.