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