~ubuntu-branches/ubuntu/utopic/binutils-arm64-cross/utopic

« back to all changes in this revision

Viewing changes to binutils-2.23.52.20130611/opcodes/m68k-opc.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-06-20 17:38:09 UTC
  • Revision ID: package-import@ubuntu.com-20130620173809-app8lzgvymy5fg6c
Tags: 0.7
Build-depend on binutils-source (>= 2.23.52.20130620-1~).

Show diffs side-by-side

added added

removed removed

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