*** empty log message ***
[deliverable/binutils-gdb.git] / opcodes / ppc-opc.c
CommitLineData
252b5132 1/* ppc-opc.c -- PowerPC opcode list
5e8cb021
AM
2 Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
252b5132
RH
4 Written by Ian Lance Taylor, Cygnus Support
5
112290ab 6 This file is part of GDB, GAS, and the GNU binutils.
252b5132 7
112290ab
NC
8 GDB, GAS, and the GNU binutils are free software; you can redistribute
9 them and/or modify them under the terms of the GNU General Public
10 License as published by the Free Software Foundation; either version
11 2, or (at your option) any later version.
252b5132 12
112290ab
NC
13 GDB, GAS, and the GNU binutils are distributed in the hope that they
14 will be useful, but WITHOUT ANY WARRANTY; without even the implied
15 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
16 the GNU General Public License for more details.
252b5132 17
112290ab
NC
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 Free
f4321104
NC
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
252b5132
RH
22
23#include <stdio.h>
0d8dfecf 24#include "sysdep.h"
252b5132
RH
25#include "opcode/ppc.h"
26#include "opintl.h"
27
28/* This file holds the PowerPC opcode table. The opcode table
29 includes almost all of the extended instruction mnemonics. This
30 permits the disassembler to use them, and simplifies the assembler
31 logic, at the cost of increasing the table size. The table is
32 strictly constant data, so the compiler should be able to put it in
33 the .text section.
34
35 This file also holds the operand table. All knowledge about
36 inserting operands into instructions and vice-versa is kept in this
37 file. */
38\f
39/* Local insertion and extraction functions. */
40
c168870a
AM
41static unsigned long insert_bat (unsigned long, long, int, const char **);
42static long extract_bat (unsigned long, int, int *);
43static unsigned long insert_bba (unsigned long, long, int, const char **);
44static long extract_bba (unsigned long, int, int *);
45static unsigned long insert_bd (unsigned long, long, int, const char **);
46static long extract_bd (unsigned long, int, int *);
47static unsigned long insert_bdm (unsigned long, long, int, const char **);
48static long extract_bdm (unsigned long, int, int *);
49static unsigned long insert_bdp (unsigned long, long, int, const char **);
50static long extract_bdp (unsigned long, int, int *);
c168870a
AM
51static unsigned long insert_bo (unsigned long, long, int, const char **);
52static long extract_bo (unsigned long, int, int *);
53static unsigned long insert_boe (unsigned long, long, int, const char **);
54static long extract_boe (unsigned long, int, int *);
55static unsigned long insert_dq (unsigned long, long, int, const char **);
56static long extract_dq (unsigned long, int, int *);
57static unsigned long insert_ds (unsigned long, long, int, const char **);
58static long extract_ds (unsigned long, int, int *);
59static unsigned long insert_de (unsigned long, long, int, const char **);
60static long extract_de (unsigned long, int, int *);
61static unsigned long insert_des (unsigned long, long, int, const char **);
62static long extract_des (unsigned long, int, int *);
63static unsigned long insert_fxm (unsigned long, long, int, const char **);
64static long extract_fxm (unsigned long, int, int *);
65static unsigned long insert_li (unsigned long, long, int, const char **);
66static long extract_li (unsigned long, int, int *);
67static unsigned long insert_mbe (unsigned long, long, int, const char **);
68static long extract_mbe (unsigned long, int, int *);
69static unsigned long insert_mb6 (unsigned long, long, int, const char **);
70static long extract_mb6 (unsigned long, int, int *);
71static unsigned long insert_nb (unsigned long, long, int, const char **);
72static long extract_nb (unsigned long, int, int *);
73static unsigned long insert_nsi (unsigned long, long, int, const char **);
74static long extract_nsi (unsigned long, int, int *);
75static unsigned long insert_ral (unsigned long, long, int, const char **);
76static unsigned long insert_ram (unsigned long, long, int, const char **);
77static unsigned long insert_raq (unsigned long, long, int, const char **);
78static unsigned long insert_ras (unsigned long, long, int, const char **);
79static unsigned long insert_rbs (unsigned long, long, int, const char **);
80static long extract_rbs (unsigned long, int, int *);
81static unsigned long insert_rsq (unsigned long, long, int, const char **);
82static unsigned long insert_rtq (unsigned long, long, int, const char **);
83static unsigned long insert_sh6 (unsigned long, long, int, const char **);
84static long extract_sh6 (unsigned long, int, int *);
85static unsigned long insert_spr (unsigned long, long, int, const char **);
86static long extract_spr (unsigned long, int, int *);
da99ee72
AM
87static unsigned long insert_sprg (unsigned long, long, int, const char **);
88static long extract_sprg (unsigned long, int, int *);
c168870a
AM
89static unsigned long insert_tbr (unsigned long, long, int, const char **);
90static long extract_tbr (unsigned long, int, int *);
91static unsigned long insert_ev2 (unsigned long, long, int, const char **);
92static long extract_ev2 (unsigned long, int, int *);
93static unsigned long insert_ev4 (unsigned long, long, int, const char **);
94static long extract_ev4 (unsigned long, int, int *);
95static unsigned long insert_ev8 (unsigned long, long, int, const char **);
96static long extract_ev8 (unsigned long, int, int *);
252b5132
RH
97\f
98/* The operands table.
99
100 The fields are bits, shift, insert, extract, flags.
101
102 We used to put parens around the various additions, like the one
103 for BA just below. However, that caused trouble with feeble
104 compilers with a limit on depth of a parenthesized expression, like
105 (reportedly) the compiler in Microsoft Developer Studio 5. So we
106 omit the parens, since the macros are never used in a context where
107 the addition will be ambiguous. */
108
109const struct powerpc_operand powerpc_operands[] =
110{
111 /* The zero index is used to indicate the end of the list of
112 operands. */
113#define UNUSED 0
bbac1f2a 114 { 0, 0, NULL, NULL, 0 },
252b5132
RH
115
116 /* The BA field in an XL form instruction. */
117#define BA UNUSED + 1
118#define BA_MASK (0x1f << 16)
bbac1f2a 119 { 5, 16, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
120
121 /* The BA field in an XL form instruction when it must be the same
122 as the BT field in the same instruction. */
123#define BAT BA + 1
11b37b7b 124 { 5, 16, insert_bat, extract_bat, PPC_OPERAND_FAKE },
252b5132
RH
125
126 /* The BB field in an XL form instruction. */
127#define BB BAT + 1
128#define BB_MASK (0x1f << 11)
bbac1f2a 129 { 5, 11, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
130
131 /* The BB field in an XL form instruction when it must be the same
132 as the BA field in the same instruction. */
133#define BBA BB + 1
11b37b7b 134 { 5, 11, insert_bba, extract_bba, PPC_OPERAND_FAKE },
252b5132
RH
135
136 /* The BD field in a B form instruction. The lower two bits are
137 forced to zero. */
138#define BD BBA + 1
11b37b7b 139 { 16, 0, insert_bd, extract_bd, PPC_OPERAND_RELATIVE | PPC_OPERAND_SIGNED },
252b5132
RH
140
141 /* The BD field in a B form instruction when absolute addressing is
142 used. */
143#define BDA BD + 1
11b37b7b 144 { 16, 0, insert_bd, extract_bd, PPC_OPERAND_ABSOLUTE | PPC_OPERAND_SIGNED },
252b5132
RH
145
146 /* The BD field in a B form instruction when the - modifier is used.
147 This sets the y bit of the BO field appropriately. */
148#define BDM BDA + 1
11b37b7b
AM
149 { 16, 0, insert_bdm, extract_bdm,
150 PPC_OPERAND_RELATIVE | PPC_OPERAND_SIGNED },
252b5132
RH
151
152 /* The BD field in a B form instruction when the - modifier is used
153 and absolute address is used. */
154#define BDMA BDM + 1
11b37b7b
AM
155 { 16, 0, insert_bdm, extract_bdm,
156 PPC_OPERAND_ABSOLUTE | PPC_OPERAND_SIGNED },
252b5132
RH
157
158 /* The BD field in a B form instruction when the + modifier is used.
159 This sets the y bit of the BO field appropriately. */
160#define BDP BDMA + 1
11b37b7b
AM
161 { 16, 0, insert_bdp, extract_bdp,
162 PPC_OPERAND_RELATIVE | PPC_OPERAND_SIGNED },
252b5132
RH
163
164 /* The BD field in a B form instruction when the + modifier is used
165 and absolute addressing is used. */
166#define BDPA BDP + 1
11b37b7b
AM
167 { 16, 0, insert_bdp, extract_bdp,
168 PPC_OPERAND_ABSOLUTE | PPC_OPERAND_SIGNED },
252b5132
RH
169
170 /* The BF field in an X or XL form instruction. */
171#define BF BDPA + 1
bbac1f2a 172 { 3, 23, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
173
174 /* An optional BF field. This is used for comparison instructions,
175 in which an omitted BF field is taken as zero. */
176#define OBF BF + 1
bbac1f2a 177 { 3, 23, NULL, NULL, PPC_OPERAND_CR | PPC_OPERAND_OPTIONAL },
252b5132
RH
178
179 /* The BFA field in an X or XL form instruction. */
180#define BFA OBF + 1
bbac1f2a 181 { 3, 18, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
182
183 /* The BI field in a B form or XL form instruction. */
184#define BI BFA + 1
185#define BI_MASK (0x1f << 16)
bbac1f2a 186 { 5, 16, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
187
188 /* The BO field in a B form instruction. Certain values are
189 illegal. */
190#define BO BI + 1
191#define BO_MASK (0x1f << 21)
11b37b7b 192 { 5, 21, insert_bo, extract_bo, 0 },
252b5132
RH
193
194 /* The BO field in a B form instruction when the + or - modifier is
195 used. This is like the BO field, but it must be even. */
196#define BOE BO + 1
11b37b7b 197 { 5, 21, insert_boe, extract_boe, 0 },
252b5132 198
d0618d1c 199#define BH BOE + 1
bbac1f2a 200 { 2, 11, NULL, NULL, PPC_OPERAND_OPTIONAL },
d0618d1c 201
252b5132 202 /* The BT field in an X or XL form instruction. */
d0618d1c 203#define BT BH + 1
bbac1f2a 204 { 5, 21, NULL, NULL, PPC_OPERAND_CR },
252b5132
RH
205
206 /* The condition register number portion of the BI field in a B form
207 or XL form instruction. This is used for the extended
208 conditional branch mnemonics, which set the lower two bits of the
209 BI field. This field is optional. */
210#define CR BT + 1
bbac1f2a 211 { 3, 18, NULL, NULL, PPC_OPERAND_CR | PPC_OPERAND_OPTIONAL },
252b5132 212
23976049
EZ
213 /* The CRB field in an X form instruction. */
214#define CRB CR + 1
bbac1f2a 215 { 5, 6, NULL, NULL, 0 },
23976049
EZ
216
217 /* The CRFD field in an X form instruction. */
218#define CRFD CRB + 1
bbac1f2a 219 { 3, 23, NULL, NULL, PPC_OPERAND_CR },
23976049
EZ
220
221 /* The CRFS field in an X form instruction. */
222#define CRFS CRFD + 1
bbac1f2a 223 { 3, 0, NULL, NULL, PPC_OPERAND_CR },
23976049 224
418c1742 225 /* The CT field in an X form instruction. */
23976049 226#define CT CRFS + 1
bbac1f2a 227 { 5, 21, NULL, NULL, PPC_OPERAND_OPTIONAL },
418c1742 228
252b5132
RH
229 /* The D field in a D form instruction. This is a displacement off
230 a register, and implies that the next operand is a register in
231 parentheses. */
418c1742 232#define D CT + 1
bbac1f2a 233 { 16, 0, NULL, NULL, PPC_OPERAND_PARENS | PPC_OPERAND_SIGNED },
252b5132 234
418c1742
MG
235 /* The DE field in a DE form instruction. This is like D, but is 12
236 bits only. */
237#define DE D + 1
238 { 14, 0, insert_de, extract_de, PPC_OPERAND_PARENS },
239
240 /* The DES field in a DES form instruction. This is like DS, but is 14
241 bits only (12 stored.) */
242#define DES DE + 1
243 { 14, 0, insert_des, extract_des, PPC_OPERAND_PARENS | PPC_OPERAND_SIGNED },
244
adadcc0c
AM
245 /* The DQ field in a DQ form instruction. This is like D, but the
246 lower four bits are forced to zero. */
247#define DQ DES + 1
248 { 16, 0, insert_dq, extract_dq,
249 PPC_OPERAND_PARENS | PPC_OPERAND_SIGNED | PPC_OPERAND_DQ },
250
252b5132
RH
251 /* The DS field in a DS form instruction. This is like D, but the
252 lower two bits are forced to zero. */
adadcc0c 253#define DS DQ + 1
6ba045b1
AM
254 { 16, 0, insert_ds, extract_ds,
255 PPC_OPERAND_PARENS | PPC_OPERAND_SIGNED | PPC_OPERAND_DS },
252b5132
RH
256
257 /* The E field in a wrteei instruction. */
258#define E DS + 1
bbac1f2a 259 { 1, 15, NULL, NULL, 0 },
252b5132
RH
260
261 /* The FL1 field in a POWER SC form instruction. */
262#define FL1 E + 1
bbac1f2a 263 { 4, 12, NULL, NULL, 0 },
252b5132
RH
264
265 /* The FL2 field in a POWER SC form instruction. */
266#define FL2 FL1 + 1
bbac1f2a 267 { 3, 2, NULL, NULL, 0 },
252b5132
RH
268
269 /* The FLM field in an XFL form instruction. */
270#define FLM FL2 + 1
bbac1f2a 271 { 8, 17, NULL, NULL, 0 },
252b5132
RH
272
273 /* The FRA field in an X or A form instruction. */
274#define FRA FLM + 1
275#define FRA_MASK (0x1f << 16)
bbac1f2a 276 { 5, 16, NULL, NULL, PPC_OPERAND_FPR },
252b5132
RH
277
278 /* The FRB field in an X or A form instruction. */
279#define FRB FRA + 1
280#define FRB_MASK (0x1f << 11)
bbac1f2a 281 { 5, 11, NULL, NULL, PPC_OPERAND_FPR },
252b5132
RH
282
283 /* The FRC field in an A form instruction. */
284#define FRC FRB + 1
285#define FRC_MASK (0x1f << 6)
bbac1f2a 286 { 5, 6, NULL, NULL, PPC_OPERAND_FPR },
252b5132
RH
287
288 /* The FRS field in an X form instruction or the FRT field in a D, X
289 or A form instruction. */
290#define FRS FRC + 1
291#define FRT FRS
bbac1f2a 292 { 5, 21, NULL, NULL, PPC_OPERAND_FPR },
252b5132
RH
293
294 /* The FXM field in an XFX instruction. */
295#define FXM FRS + 1
296#define FXM_MASK (0xff << 12)
c168870a
AM
297 { 8, 12, insert_fxm, extract_fxm, 0 },
298
299 /* Power4 version for mfcr. */
300#define FXM4 FXM + 1
301 { 8, 12, insert_fxm, extract_fxm, PPC_OPERAND_OPTIONAL },
252b5132
RH
302
303 /* The L field in a D or X form instruction. */
c168870a 304#define L FXM4 + 1
e612bb4d 305 { 1, 21, NULL, NULL, PPC_OPERAND_OPTIONAL },
252b5132 306
1ed8e1e4
AM
307 /* The LEV field in a POWER SVC form instruction. */
308#define SVC_LEV L + 1
bbac1f2a 309 { 7, 5, NULL, NULL, 0 },
252b5132 310
1ed8e1e4
AM
311 /* The LEV field in an SC form instruction. */
312#define LEV SVC_LEV + 1
313 { 7, 5, NULL, NULL, PPC_OPERAND_OPTIONAL },
314
252b5132
RH
315 /* The LI field in an I form instruction. The lower two bits are
316 forced to zero. */
317#define LI LEV + 1
11b37b7b 318 { 26, 0, insert_li, extract_li, PPC_OPERAND_RELATIVE | PPC_OPERAND_SIGNED },
252b5132
RH
319
320 /* The LI field in an I form instruction when used as an absolute
321 address. */
322#define LIA LI + 1
11b37b7b 323 { 26, 0, insert_li, extract_li, PPC_OPERAND_ABSOLUTE | PPC_OPERAND_SIGNED },
252b5132 324
6ba045b1
AM
325 /* The LS field in an X (sync) form instruction. */
326#define LS LIA + 1
bbac1f2a 327 { 2, 21, NULL, NULL, PPC_OPERAND_OPTIONAL },
6ba045b1 328
252b5132 329 /* The MB field in an M form instruction. */
6ba045b1 330#define MB LS + 1
252b5132 331#define MB_MASK (0x1f << 6)
bbac1f2a 332 { 5, 6, NULL, NULL, 0 },
252b5132
RH
333
334 /* The ME field in an M form instruction. */
335#define ME MB + 1
336#define ME_MASK (0x1f << 1)
bbac1f2a 337 { 5, 1, NULL, NULL, 0 },
252b5132
RH
338
339 /* The MB and ME fields in an M form instruction expressed a single
340 operand which is a bitmask indicating which bits to select. This
341 is a two operand form using PPC_OPERAND_NEXT. See the
342 description in opcode/ppc.h for what this means. */
343#define MBE ME + 1
bbac1f2a 344 { 5, 6, NULL, NULL, PPC_OPERAND_OPTIONAL | PPC_OPERAND_NEXT },
11b37b7b 345 { 32, 0, insert_mbe, extract_mbe, 0 },
252b5132
RH
346
347 /* The MB or ME field in an MD or MDS form instruction. The high
348 bit is wrapped to the low end. */
349#define MB6 MBE + 2
350#define ME6 MB6
351#define MB6_MASK (0x3f << 5)
11b37b7b 352 { 6, 5, insert_mb6, extract_mb6, 0 },
252b5132 353
9fa87a06
MG
354 /* The MO field in an mbar instruction. */
355#define MO MB6 + 1
bbac1f2a 356 { 5, 21, NULL, NULL, PPC_OPERAND_OPTIONAL },
9fa87a06 357
252b5132
RH
358 /* The NB field in an X form instruction. The value 32 is stored as
359 0. */
9fa87a06 360#define NB MO + 1
11b37b7b 361 { 6, 11, insert_nb, extract_nb, 0 },
252b5132
RH
362
363 /* The NSI field in a D form instruction. This is the same as the
364 SI field, only negated. */
365#define NSI NB + 1
366 { 16, 0, insert_nsi, extract_nsi,
11b37b7b 367 PPC_OPERAND_NEGATIVE | PPC_OPERAND_SIGNED },
252b5132 368
adadcc0c 369 /* The RA field in an D, DS, DQ, X, XO, M, or MDS form instruction. */
914749f6 370#define RA NSI + 1
252b5132 371#define RA_MASK (0x1f << 16)
bbac1f2a 372 { 5, 16, NULL, NULL, PPC_OPERAND_GPR },
252b5132 373
fdd12ef3
AM
374 /* As above, but 0 in the RA field means zero, not r0. */
375#define RA0 RA + 1
bbac1f2a 376 { 5, 16, NULL, NULL, PPC_OPERAND_GPR_0 },
fdd12ef3
AM
377
378 /* The RA field in the DQ form lq instruction, which has special
adadcc0c 379 value restrictions. */
fdd12ef3 380#define RAQ RA0 + 1
bbac1f2a 381 { 5, 16, insert_raq, NULL, PPC_OPERAND_GPR_0 },
adadcc0c 382
252b5132
RH
383 /* The RA field in a D or X form instruction which is an updating
384 load, which means that the RA field may not be zero and may not
385 equal the RT field. */
adadcc0c 386#define RAL RAQ + 1
bbac1f2a 387 { 5, 16, insert_ral, NULL, PPC_OPERAND_GPR_0 },
252b5132
RH
388
389 /* The RA field in an lmw instruction, which has special value
390 restrictions. */
391#define RAM RAL + 1
bbac1f2a 392 { 5, 16, insert_ram, NULL, PPC_OPERAND_GPR_0 },
252b5132
RH
393
394 /* The RA field in a D or X form instruction which is an updating
395 store or an updating floating point load, which means that the RA
396 field may not be zero. */
397#define RAS RAM + 1
bbac1f2a 398 { 5, 16, insert_ras, NULL, PPC_OPERAND_GPR_0 },
252b5132 399
1f6c9eb0 400 /* The RA field of the tlbwe instruction, which is optional. */
fdd12ef3 401#define RAOPT RAS + 1
bbac1f2a 402 { 5, 16, NULL, NULL, PPC_OPERAND_GPR | PPC_OPERAND_OPTIONAL },
1f6c9eb0 403
252b5132 404 /* The RB field in an X, XO, M, or MDS form instruction. */
fdd12ef3 405#define RB RAOPT + 1
252b5132 406#define RB_MASK (0x1f << 11)
bbac1f2a 407 { 5, 11, NULL, NULL, PPC_OPERAND_GPR },
252b5132
RH
408
409 /* The RB field in an X form instruction when it must be the same as
410 the RS field in the instruction. This is used for extended
411 mnemonics like mr. */
412#define RBS RB + 1
11b37b7b 413 { 5, 1, insert_rbs, extract_rbs, PPC_OPERAND_FAKE },
252b5132
RH
414
415 /* The RS field in a D, DS, X, XFX, XS, M, MD or MDS form
416 instruction or the RT field in a D, DS, X, XFX or XO form
417 instruction. */
418#define RS RBS + 1
419#define RT RS
420#define RT_MASK (0x1f << 21)
bbac1f2a 421 { 5, 21, NULL, NULL, PPC_OPERAND_GPR },
252b5132 422
fdd12ef3 423 /* The RS field of the DS form stq instruction, which has special
adadcc0c
AM
424 value restrictions. */
425#define RSQ RS + 1
bbac1f2a 426 { 5, 21, insert_rsq, NULL, PPC_OPERAND_GPR_0 },
adadcc0c
AM
427
428 /* The RT field of the DQ form lq instruction, which has special
429 value restrictions. */
430#define RTQ RSQ + 1
bbac1f2a 431 { 5, 21, insert_rtq, NULL, PPC_OPERAND_GPR_0 },
adadcc0c 432
1f6c9eb0
ZW
433 /* The RS field of the tlbwe instruction, which is optional. */
434#define RSO RTQ + 1
eed0d89a 435#define RTO RSO
bbac1f2a 436 { 5, 21, NULL, NULL, PPC_OPERAND_GPR | PPC_OPERAND_OPTIONAL },
1f6c9eb0 437
252b5132 438 /* The SH field in an X or M form instruction. */
1f6c9eb0 439#define SH RSO + 1
252b5132 440#define SH_MASK (0x1f << 11)
bbac1f2a 441 { 5, 11, NULL, NULL, 0 },
252b5132
RH
442
443 /* The SH field in an MD form instruction. This is split. */
444#define SH6 SH + 1
445#define SH6_MASK ((0x1f << 11) | (1 << 1))
11b37b7b 446 { 6, 1, insert_sh6, extract_sh6, 0 },
252b5132 447
1f6c9eb0
ZW
448 /* The SH field of the tlbwe instruction, which is optional. */
449#define SHO SH6 + 1
bbac1f2a 450 { 5, 11,NULL, NULL, PPC_OPERAND_OPTIONAL },
1f6c9eb0 451
252b5132 452 /* The SI field in a D form instruction. */
1f6c9eb0 453#define SI SHO + 1
bbac1f2a 454 { 16, 0, NULL, NULL, PPC_OPERAND_SIGNED },
252b5132
RH
455
456 /* The SI field in a D form instruction when we accept a wide range
457 of positive values. */
458#define SISIGNOPT SI + 1
bbac1f2a 459 { 16, 0, NULL, NULL, PPC_OPERAND_SIGNED | PPC_OPERAND_SIGNOPT },
252b5132
RH
460
461 /* The SPR field in an XFX form instruction. This is flipped--the
462 lower 5 bits are stored in the upper 5 and vice- versa. */
463#define SPR SISIGNOPT + 1
914749f6 464#define PMR SPR
252b5132 465#define SPR_MASK (0x3ff << 11)
11b37b7b 466 { 10, 11, insert_spr, extract_spr, 0 },
252b5132
RH
467
468 /* The BAT index number in an XFX form m[ft]ibat[lu] instruction. */
469#define SPRBAT SPR + 1
470#define SPRBAT_MASK (0x3 << 17)
bbac1f2a 471 { 2, 17, NULL, NULL, 0 },
252b5132
RH
472
473 /* The SPRG register number in an XFX form m[ft]sprg instruction. */
474#define SPRG SPRBAT + 1
da99ee72 475 { 5, 16, insert_sprg, extract_sprg, 0 },
252b5132
RH
476
477 /* The SR field in an X form instruction. */
478#define SR SPRG + 1
bbac1f2a 479 { 4, 16, NULL, NULL, 0 },
252b5132 480
f5c120c5
MG
481 /* The STRM field in an X AltiVec form instruction. */
482#define STRM SR + 1
483#define STRM_MASK (0x3 << 21)
bbac1f2a 484 { 2, 21, NULL, NULL, 0 },
f5c120c5 485
252b5132 486 /* The SV field in a POWER SC form instruction. */
f5c120c5 487#define SV STRM + 1
bbac1f2a 488 { 14, 2, NULL, NULL, 0 },
252b5132
RH
489
490 /* The TBR field in an XFX form instruction. This is like the SPR
491 field, but it is optional. */
492#define TBR SV + 1
11b37b7b 493 { 10, 11, insert_tbr, extract_tbr, PPC_OPERAND_OPTIONAL },
252b5132
RH
494
495 /* The TO field in a D or X form instruction. */
496#define TO TBR + 1
497#define TO_MASK (0x1f << 21)
bbac1f2a 498 { 5, 21, NULL, NULL, 0 },
252b5132
RH
499
500 /* The U field in an X form instruction. */
501#define U TO + 1
bbac1f2a 502 { 4, 12, NULL, NULL, 0 },
252b5132
RH
503
504 /* The UI field in a D form instruction. */
505#define UI U + 1
bbac1f2a 506 { 16, 0, NULL, NULL, 0 },
786e2c0f 507
112290ab 508 /* The VA field in a VA, VX or VXR form instruction. */
786e2c0f
C
509#define VA UI + 1
510#define VA_MASK (0x1f << 16)
bbac1f2a 511 { 5, 16, NULL, NULL, PPC_OPERAND_VR },
786e2c0f 512
112290ab 513 /* The VB field in a VA, VX or VXR form instruction. */
786e2c0f
C
514#define VB VA + 1
515#define VB_MASK (0x1f << 11)
bbac1f2a 516 { 5, 11, NULL, NULL, PPC_OPERAND_VR },
786e2c0f 517
112290ab 518 /* The VC field in a VA form instruction. */
786e2c0f
C
519#define VC VB + 1
520#define VC_MASK (0x1f << 6)
bbac1f2a 521 { 5, 6, NULL, NULL, PPC_OPERAND_VR },
786e2c0f 522
112290ab 523 /* The VD or VS field in a VA, VX, VXR or X form instruction. */
786e2c0f
C
524#define VD VC + 1
525#define VS VD
526#define VD_MASK (0x1f << 21)
bbac1f2a 527 { 5, 21, NULL, NULL, PPC_OPERAND_VR },
786e2c0f 528
112290ab 529 /* The SIMM field in a VX form instruction. */
786e2c0f 530#define SIMM VD + 1
bbac1f2a 531 { 5, 16, NULL, NULL, PPC_OPERAND_SIGNED},
786e2c0f 532
112290ab 533 /* The UIMM field in a VX form instruction. */
786e2c0f 534#define UIMM SIMM + 1
bbac1f2a 535 { 5, 16, NULL, NULL, 0 },
786e2c0f 536
112290ab 537 /* The SHB field in a VA form instruction. */
786e2c0f 538#define SHB UIMM + 1
bbac1f2a 539 { 4, 6, NULL, NULL, 0 },
ff3a6ee3 540
112290ab 541 /* The other UIMM field in a EVX form instruction. */
23976049 542#define EVUIMM SHB + 1
bbac1f2a 543 { 5, 11, NULL, NULL, 0 },
23976049 544
112290ab 545 /* The other UIMM field in a half word EVX form instruction. */
23976049 546#define EVUIMM_2 EVUIMM + 1
95e172a5 547 { 32, 11, insert_ev2, extract_ev2, PPC_OPERAND_PARENS },
23976049 548
112290ab 549 /* The other UIMM field in a word EVX form instruction. */
23976049 550#define EVUIMM_4 EVUIMM_2 + 1
95e172a5 551 { 32, 11, insert_ev4, extract_ev4, PPC_OPERAND_PARENS },
23976049 552
112290ab 553 /* The other UIMM field in a double EVX form instruction. */
23976049 554#define EVUIMM_8 EVUIMM_4 + 1
ced05688 555 { 32, 11, insert_ev8, extract_ev8, PPC_OPERAND_PARENS },
23976049 556
ff3a6ee3 557 /* The WS field. */
23976049 558#define WS EVUIMM_8 + 1
ff3a6ee3 559#define WS_MASK (0x7 << 11)
bbac1f2a 560 { 3, 11, NULL, NULL, 0 },
ff3a6ee3 561
5ae2e65e
AM
562 /* The L field in an mtmsrd instruction */
563#define MTMSRD_L WS + 1
bbac1f2a 564 { 1, 16, NULL, NULL, PPC_OPERAND_OPTIONAL },
5ae2e65e 565
252b5132
RH
566};
567
568/* The functions used to insert and extract complicated operands. */
569
570/* The BA field in an XL form instruction when it must be the same as
571 the BT field in the same instruction. This operand is marked FAKE.
572 The insertion function just copies the BT field into the BA field,
573 and the extraction function just checks that the fields are the
574 same. */
575
252b5132 576static unsigned long
2fbfdc41
AM
577insert_bat (unsigned long insn,
578 long value ATTRIBUTE_UNUSED,
579 int dialect ATTRIBUTE_UNUSED,
580 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
581{
582 return insn | (((insn >> 21) & 0x1f) << 16);
583}
584
585static long
2fbfdc41
AM
586extract_bat (unsigned long insn,
587 int dialect ATTRIBUTE_UNUSED,
588 int *invalid)
252b5132 589{
8427c424 590 if (((insn >> 21) & 0x1f) != ((insn >> 16) & 0x1f))
252b5132
RH
591 *invalid = 1;
592 return 0;
593}
594
595/* The BB field in an XL form instruction when it must be the same as
596 the BA field in the same instruction. This operand is marked FAKE.
597 The insertion function just copies the BA field into the BB field,
598 and the extraction function just checks that the fields are the
599 same. */
600
252b5132 601static unsigned long
2fbfdc41
AM
602insert_bba (unsigned long insn,
603 long value ATTRIBUTE_UNUSED,
604 int dialect ATTRIBUTE_UNUSED,
605 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
606{
607 return insn | (((insn >> 16) & 0x1f) << 11);
608}
609
610static long
2fbfdc41
AM
611extract_bba (unsigned long insn,
612 int dialect ATTRIBUTE_UNUSED,
613 int *invalid)
252b5132 614{
8427c424 615 if (((insn >> 16) & 0x1f) != ((insn >> 11) & 0x1f))
252b5132
RH
616 *invalid = 1;
617 return 0;
618}
619
620/* The BD field in a B form instruction. The lower two bits are
621 forced to zero. */
622
252b5132 623static unsigned long
2fbfdc41
AM
624insert_bd (unsigned long insn,
625 long value,
626 int dialect ATTRIBUTE_UNUSED,
627 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
628{
629 return insn | (value & 0xfffc);
630}
631
252b5132 632static long
2fbfdc41
AM
633extract_bd (unsigned long insn,
634 int dialect ATTRIBUTE_UNUSED,
635 int *invalid ATTRIBUTE_UNUSED)
252b5132 636{
802a735e 637 return ((insn & 0xfffc) ^ 0x8000) - 0x8000;
252b5132
RH
638}
639
640/* The BD field in a B form instruction when the - modifier is used.
641 This modifier means that the branch is not expected to be taken.
94efba12
AM
642 For chips built to versions of the architecture prior to version 2
643 (ie. not Power4 compatible), we set the y bit of the BO field to 1
644 if the offset is negative. When extracting, we require that the y
645 bit be 1 and that the offset be positive, since if the y bit is 0
646 we just want to print the normal form of the instruction.
647 Power4 compatible targets use two bits, "a", and "t", instead of
648 the "y" bit. "at" == 00 => no hint, "at" == 01 => unpredictable,
649 "at" == 10 => not taken, "at" == 11 => taken. The "t" bit is 00001
650 in BO field, the "a" bit is 00010 for branch on CR(BI) and 01000
651 for branch on CTR. We only handle the taken/not-taken hint here. */
252b5132 652
252b5132 653static unsigned long
2fbfdc41
AM
654insert_bdm (unsigned long insn,
655 long value,
656 int dialect,
657 const char **errmsg ATTRIBUTE_UNUSED)
252b5132 658{
94efba12 659 if ((dialect & PPC_OPCODE_POWER4) == 0)
802a735e
AM
660 {
661 if ((value & 0x8000) != 0)
662 insn |= 1 << 21;
663 }
664 else
665 {
666 if ((insn & (0x14 << 21)) == (0x04 << 21))
667 insn |= 0x02 << 21;
668 else if ((insn & (0x14 << 21)) == (0x10 << 21))
669 insn |= 0x08 << 21;
670 }
252b5132
RH
671 return insn | (value & 0xfffc);
672}
673
674static long
2fbfdc41
AM
675extract_bdm (unsigned long insn,
676 int dialect,
677 int *invalid)
252b5132 678{
8427c424 679 if ((dialect & PPC_OPCODE_POWER4) == 0)
802a735e 680 {
8427c424
AM
681 if (((insn & (1 << 21)) == 0) != ((insn & (1 << 15)) == 0))
682 *invalid = 1;
802a735e 683 }
8427c424
AM
684 else
685 {
686 if ((insn & (0x17 << 21)) != (0x06 << 21)
687 && (insn & (0x1d << 21)) != (0x18 << 21))
688 *invalid = 1;
689 }
690
802a735e 691 return ((insn & 0xfffc) ^ 0x8000) - 0x8000;
252b5132
RH
692}
693
694/* The BD field in a B form instruction when the + modifier is used.
695 This is like BDM, above, except that the branch is expected to be
696 taken. */
697
252b5132 698static unsigned long
2fbfdc41
AM
699insert_bdp (unsigned long insn,
700 long value,
701 int dialect,
702 const char **errmsg ATTRIBUTE_UNUSED)
252b5132 703{
94efba12 704 if ((dialect & PPC_OPCODE_POWER4) == 0)
802a735e
AM
705 {
706 if ((value & 0x8000) == 0)
707 insn |= 1 << 21;
708 }
709 else
710 {
711 if ((insn & (0x14 << 21)) == (0x04 << 21))
712 insn |= 0x03 << 21;
713 else if ((insn & (0x14 << 21)) == (0x10 << 21))
714 insn |= 0x09 << 21;
715 }
252b5132
RH
716 return insn | (value & 0xfffc);
717}
718
719static long
2fbfdc41
AM
720extract_bdp (unsigned long insn,
721 int dialect,
722 int *invalid)
252b5132 723{
8427c424 724 if ((dialect & PPC_OPCODE_POWER4) == 0)
802a735e 725 {
8427c424
AM
726 if (((insn & (1 << 21)) == 0) == ((insn & (1 << 15)) == 0))
727 *invalid = 1;
728 }
729 else
730 {
731 if ((insn & (0x17 << 21)) != (0x07 << 21)
732 && (insn & (0x1d << 21)) != (0x19 << 21))
733 *invalid = 1;
802a735e 734 }
8427c424 735
802a735e 736 return ((insn & 0xfffc) ^ 0x8000) - 0x8000;
252b5132
RH
737}
738
739/* Check for legal values of a BO field. */
740
741static int
2fbfdc41 742valid_bo (long value, int dialect)
252b5132 743{
94efba12 744 if ((dialect & PPC_OPCODE_POWER4) == 0)
252b5132 745 {
802a735e
AM
746 /* Certain encodings have bits that are required to be zero.
747 These are (z must be zero, y may be anything):
748 001zy
749 011zy
750 1z00y
751 1z01y
752 1z1zz
753 */
754 switch (value & 0x14)
755 {
756 default:
757 case 0:
758 return 1;
759 case 0x4:
760 return (value & 0x2) == 0;
761 case 0x10:
762 return (value & 0x8) == 0;
763 case 0x14:
764 return value == 0x14;
765 }
766 }
767 else
768 {
769 /* Certain encodings have bits that are required to be zero.
770 These are (z must be zero, a & t may be anything):
771 0000z
772 0001z
773 0100z
774 0101z
775 001at
776 011at
777 1a00t
778 1a01t
779 1z1zz
780 */
781 if ((value & 0x14) == 0)
782 return (value & 0x1) == 0;
783 else if ((value & 0x14) == 0x14)
784 return value == 0x14;
785 else
786 return 1;
252b5132
RH
787 }
788}
789
790/* The BO field in a B form instruction. Warn about attempts to set
791 the field to an illegal value. */
792
793static unsigned long
2fbfdc41
AM
794insert_bo (unsigned long insn,
795 long value,
796 int dialect,
797 const char **errmsg)
252b5132 798{
8427c424 799 if (!valid_bo (value, dialect))
252b5132
RH
800 *errmsg = _("invalid conditional option");
801 return insn | ((value & 0x1f) << 21);
802}
803
804static long
2fbfdc41
AM
805extract_bo (unsigned long insn,
806 int dialect,
807 int *invalid)
252b5132
RH
808{
809 long value;
810
811 value = (insn >> 21) & 0x1f;
8427c424 812 if (!valid_bo (value, dialect))
252b5132
RH
813 *invalid = 1;
814 return value;
815}
816
817/* The BO field in a B form instruction when the + or - modifier is
818 used. This is like the BO field, but it must be even. When
819 extracting it, we force it to be even. */
820
821static unsigned long
2fbfdc41
AM
822insert_boe (unsigned long insn,
823 long value,
824 int dialect,
825 const char **errmsg)
252b5132 826{
8427c424
AM
827 if (!valid_bo (value, dialect))
828 *errmsg = _("invalid conditional option");
829 else if ((value & 1) != 0)
830 *errmsg = _("attempt to set y bit when using + or - modifier");
831
252b5132
RH
832 return insn | ((value & 0x1f) << 21);
833}
834
835static long
2fbfdc41
AM
836extract_boe (unsigned long insn,
837 int dialect,
838 int *invalid)
252b5132
RH
839{
840 long value;
841
842 value = (insn >> 21) & 0x1f;
8427c424 843 if (!valid_bo (value, dialect))
252b5132
RH
844 *invalid = 1;
845 return value & 0x1e;
846}
847
8427c424
AM
848/* The DQ field in a DQ form instruction. This is like D, but the
849 lower four bits are forced to zero. */
adadcc0c 850
adadcc0c 851static unsigned long
2fbfdc41
AM
852insert_dq (unsigned long insn,
853 long value,
854 int dialect ATTRIBUTE_UNUSED,
8427c424 855 const char **errmsg)
adadcc0c 856{
8427c424 857 if ((value & 0xf) != 0)
adadcc0c
AM
858 *errmsg = _("offset not a multiple of 16");
859 return insn | (value & 0xfff0);
860}
861
adadcc0c 862static long
2fbfdc41
AM
863extract_dq (unsigned long insn,
864 int dialect ATTRIBUTE_UNUSED,
865 int *invalid ATTRIBUTE_UNUSED)
adadcc0c
AM
866{
867 return ((insn & 0xfff0) ^ 0x8000) - 0x8000;
868}
869
23976049 870static unsigned long
2fbfdc41
AM
871insert_ev2 (unsigned long insn,
872 long value,
873 int dialect ATTRIBUTE_UNUSED,
8427c424 874 const char **errmsg)
23976049 875{
8427c424 876 if ((value & 1) != 0)
23976049 877 *errmsg = _("offset not a multiple of 2");
8427c424 878 if ((value > 62) != 0)
23976049 879 *errmsg = _("offset greater than 62");
914749f6 880 return insn | ((value & 0x3e) << 10);
23976049
EZ
881}
882
883static long
2fbfdc41
AM
884extract_ev2 (unsigned long insn,
885 int dialect ATTRIBUTE_UNUSED,
886 int *invalid ATTRIBUTE_UNUSED)
23976049 887{
914749f6 888 return (insn >> 10) & 0x3e;
23976049
EZ
889}
890
891static unsigned long
2fbfdc41
AM
892insert_ev4 (unsigned long insn,
893 long value,
894 int dialect ATTRIBUTE_UNUSED,
8427c424 895 const char **errmsg)
23976049 896{
8427c424 897 if ((value & 3) != 0)
23976049 898 *errmsg = _("offset not a multiple of 4");
8427c424 899 if ((value > 124) != 0)
23976049 900 *errmsg = _("offset greater than 124");
914749f6 901 return insn | ((value & 0x7c) << 9);
23976049
EZ
902}
903
904static long
2fbfdc41
AM
905extract_ev4 (unsigned long insn,
906 int dialect ATTRIBUTE_UNUSED,
907 int *invalid ATTRIBUTE_UNUSED)
23976049 908{
914749f6 909 return (insn >> 9) & 0x7c;
23976049
EZ
910}
911
912static unsigned long
2fbfdc41
AM
913insert_ev8 (unsigned long insn,
914 long value,
915 int dialect ATTRIBUTE_UNUSED,
8427c424 916 const char **errmsg)
23976049 917{
8427c424 918 if ((value & 7) != 0)
23976049 919 *errmsg = _("offset not a multiple of 8");
8427c424 920 if ((value > 248) != 0)
23976049
EZ
921 *errmsg = _("offset greater than 248");
922 return insn | ((value & 0xf8) << 8);
923}
924
925static long
2fbfdc41
AM
926extract_ev8 (unsigned long insn,
927 int dialect ATTRIBUTE_UNUSED,
8427c424 928 int *invalid ATTRIBUTE_UNUSED)
23976049
EZ
929{
930 return (insn >> 8) & 0xf8;
931}
932
252b5132
RH
933/* The DS field in a DS form instruction. This is like D, but the
934 lower two bits are forced to zero. */
935
252b5132 936static unsigned long
2fbfdc41
AM
937insert_ds (unsigned long insn,
938 long value,
939 int dialect ATTRIBUTE_UNUSED,
940 const char **errmsg)
252b5132 941{
8427c424 942 if ((value & 3) != 0)
6ba045b1 943 *errmsg = _("offset not a multiple of 4");
252b5132
RH
944 return insn | (value & 0xfffc);
945}
946
252b5132 947static long
2fbfdc41
AM
948extract_ds (unsigned long insn,
949 int dialect ATTRIBUTE_UNUSED,
950 int *invalid ATTRIBUTE_UNUSED)
252b5132 951{
802a735e 952 return ((insn & 0xfffc) ^ 0x8000) - 0x8000;
252b5132
RH
953}
954
418c1742
MG
955/* The DE field in a DE form instruction. */
956
418c1742 957static unsigned long
2fbfdc41
AM
958insert_de (unsigned long insn,
959 long value,
960 int dialect ATTRIBUTE_UNUSED,
961 const char **errmsg)
418c1742 962{
8427c424 963 if (value > 2047 || value < -2048)
418c1742
MG
964 *errmsg = _("offset not between -2048 and 2047");
965 return insn | ((value << 4) & 0xfff0);
966}
967
418c1742 968static long
2fbfdc41
AM
969extract_de (unsigned long insn,
970 int dialect ATTRIBUTE_UNUSED,
971 int *invalid ATTRIBUTE_UNUSED)
418c1742
MG
972{
973 return (insn & 0xfff0) >> 4;
974}
975
976/* The DES field in a DES form instruction. */
977
418c1742 978static unsigned long
2fbfdc41
AM
979insert_des (unsigned long insn,
980 long value,
981 int dialect ATTRIBUTE_UNUSED,
982 const char **errmsg)
418c1742 983{
8427c424 984 if (value > 8191 || value < -8192)
418c1742 985 *errmsg = _("offset not between -8192 and 8191");
8427c424 986 else if ((value & 3) != 0)
418c1742
MG
987 *errmsg = _("offset not a multiple of 4");
988 return insn | ((value << 2) & 0xfff0);
989}
990
418c1742 991static long
2fbfdc41
AM
992extract_des (unsigned long insn,
993 int dialect ATTRIBUTE_UNUSED,
994 int *invalid ATTRIBUTE_UNUSED)
418c1742 995{
802a735e 996 return (((insn >> 2) & 0x3ffc) ^ 0x2000) - 0x2000;
418c1742
MG
997}
998
2fbfdc41
AM
999/* FXM mask in mfcr and mtcrf instructions. */
1000
1001static unsigned long
1002insert_fxm (unsigned long insn,
1003 long value,
1004 int dialect,
1005 const char **errmsg)
c168870a 1006{
98e69875
AM
1007 /* If we're handling the mfocrf and mtocrf insns ensure that exactly
1008 one bit of the mask field is set. */
1009 if ((insn & (1 << 20)) != 0)
1010 {
1011 if (value == 0 || (value & -value) != value)
1012 {
1013 *errmsg = _("invalid mask field");
1014 value = 0;
1015 }
1016 }
1017
c168870a
AM
1018 /* If the optional field on mfcr is missing that means we want to use
1019 the old form of the instruction that moves the whole cr. In that
1020 case we'll have VALUE zero. There doesn't seem to be a way to
1021 distinguish this from the case where someone writes mfcr %r3,0. */
98e69875 1022 else if (value == 0)
c168870a
AM
1023 ;
1024
1025 /* If only one bit of the FXM field is set, we can use the new form
661bd698 1026 of the instruction, which is faster. Unlike the Power4 branch hint
a30e9cc4
AM
1027 encoding, this is not backward compatible. Do not generate the
1028 new form unless -mpower4 has been given, or -many and the two
1029 operand form of mfcr was used. */
1030 else if ((value & -value) == value
1031 && ((dialect & PPC_OPCODE_POWER4) != 0
1032 || ((dialect & PPC_OPCODE_ANY) != 0
1033 && (insn & (0x3ff << 1)) == 19 << 1)))
c168870a
AM
1034 insn |= 1 << 20;
1035
1036 /* Any other value on mfcr is an error. */
1037 else if ((insn & (0x3ff << 1)) == 19 << 1)
1038 {
8427c424 1039 *errmsg = _("ignoring invalid mfcr mask");
c168870a
AM
1040 value = 0;
1041 }
1042
1043 return insn | ((value & 0xff) << 12);
1044}
1045
2fbfdc41
AM
1046static long
1047extract_fxm (unsigned long insn,
98e69875 1048 int dialect ATTRIBUTE_UNUSED,
2fbfdc41 1049 int *invalid)
c168870a
AM
1050{
1051 long mask = (insn >> 12) & 0xff;
1052
1053 /* Is this a Power4 insn? */
1054 if ((insn & (1 << 20)) != 0)
1055 {
98e69875
AM
1056 /* Exactly one bit of MASK should be set. */
1057 if (mask == 0 || (mask & -mask) != mask)
8427c424 1058 *invalid = 1;
c168870a
AM
1059 }
1060
1061 /* Check that non-power4 form of mfcr has a zero MASK. */
1062 else if ((insn & (0x3ff << 1)) == 19 << 1)
1063 {
8427c424 1064 if (mask != 0)
c168870a
AM
1065 *invalid = 1;
1066 }
1067
1068 return mask;
1069}
1070
252b5132
RH
1071/* The LI field in an I form instruction. The lower two bits are
1072 forced to zero. */
1073
252b5132 1074static unsigned long
2fbfdc41
AM
1075insert_li (unsigned long insn,
1076 long value,
1077 int dialect ATTRIBUTE_UNUSED,
1078 const char **errmsg)
252b5132 1079{
8427c424 1080 if ((value & 3) != 0)
252b5132
RH
1081 *errmsg = _("ignoring least significant bits in branch offset");
1082 return insn | (value & 0x3fffffc);
1083}
1084
252b5132 1085static long
2fbfdc41
AM
1086extract_li (unsigned long insn,
1087 int dialect ATTRIBUTE_UNUSED,
1088 int *invalid ATTRIBUTE_UNUSED)
252b5132 1089{
802a735e 1090 return ((insn & 0x3fffffc) ^ 0x2000000) - 0x2000000;
252b5132
RH
1091}
1092
1093/* The MB and ME fields in an M form instruction expressed as a single
1094 operand which is itself a bitmask. The extraction function always
1095 marks it as invalid, since we never want to recognize an
1096 instruction which uses a field of this type. */
1097
1098static unsigned long
2fbfdc41
AM
1099insert_mbe (unsigned long insn,
1100 long value,
1101 int dialect ATTRIBUTE_UNUSED,
1102 const char **errmsg)
252b5132
RH
1103{
1104 unsigned long uval, mask;
1105 int mb, me, mx, count, last;
1106
1107 uval = value;
1108
1109 if (uval == 0)
1110 {
8427c424 1111 *errmsg = _("illegal bitmask");
252b5132
RH
1112 return insn;
1113 }
1114
1115 mb = 0;
1116 me = 32;
1117 if ((uval & 1) != 0)
1118 last = 1;
1119 else
1120 last = 0;
1121 count = 0;
1122
1123 /* mb: location of last 0->1 transition */
1124 /* me: location of last 1->0 transition */
1125 /* count: # transitions */
1126
0deb7ac5 1127 for (mx = 0, mask = 1L << 31; mx < 32; ++mx, mask >>= 1)
252b5132
RH
1128 {
1129 if ((uval & mask) && !last)
1130 {
1131 ++count;
1132 mb = mx;
1133 last = 1;
1134 }
1135 else if (!(uval & mask) && last)
1136 {
1137 ++count;
1138 me = mx;
1139 last = 0;
1140 }
1141 }
1142 if (me == 0)
1143 me = 32;
1144
1145 if (count != 2 && (count != 0 || ! last))
8427c424 1146 *errmsg = _("illegal bitmask");
252b5132
RH
1147
1148 return insn | (mb << 6) | ((me - 1) << 1);
1149}
1150
1151static long
2fbfdc41
AM
1152extract_mbe (unsigned long insn,
1153 int dialect ATTRIBUTE_UNUSED,
1154 int *invalid)
252b5132
RH
1155{
1156 long ret;
1157 int mb, me;
1158 int i;
1159
8427c424 1160 *invalid = 1;
252b5132
RH
1161
1162 mb = (insn >> 6) & 0x1f;
1163 me = (insn >> 1) & 0x1f;
1164 if (mb < me + 1)
1165 {
1166 ret = 0;
1167 for (i = mb; i <= me; i++)
0deb7ac5 1168 ret |= 1L << (31 - i);
252b5132
RH
1169 }
1170 else if (mb == me + 1)
8427c424 1171 ret = ~0;
252b5132
RH
1172 else /* (mb > me + 1) */
1173 {
2fbfdc41 1174 ret = ~0;
252b5132 1175 for (i = me + 1; i < mb; i++)
0deb7ac5 1176 ret &= ~(1L << (31 - i));
252b5132
RH
1177 }
1178 return ret;
1179}
1180
1181/* The MB or ME field in an MD or MDS form instruction. The high bit
1182 is wrapped to the low end. */
1183
252b5132 1184static unsigned long
2fbfdc41
AM
1185insert_mb6 (unsigned long insn,
1186 long value,
1187 int dialect ATTRIBUTE_UNUSED,
1188 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
1189{
1190 return insn | ((value & 0x1f) << 6) | (value & 0x20);
1191}
1192
252b5132 1193static long
2fbfdc41
AM
1194extract_mb6 (unsigned long insn,
1195 int dialect ATTRIBUTE_UNUSED,
1196 int *invalid ATTRIBUTE_UNUSED)
252b5132
RH
1197{
1198 return ((insn >> 6) & 0x1f) | (insn & 0x20);
1199}
1200
1201/* The NB field in an X form instruction. The value 32 is stored as
1202 0. */
1203
1204static unsigned long
2fbfdc41
AM
1205insert_nb (unsigned long insn,
1206 long value,
1207 int dialect ATTRIBUTE_UNUSED,
1208 const char **errmsg)
252b5132
RH
1209{
1210 if (value < 0 || value > 32)
1211 *errmsg = _("value out of range");
1212 if (value == 32)
1213 value = 0;
1214 return insn | ((value & 0x1f) << 11);
1215}
1216
252b5132 1217static long
2fbfdc41
AM
1218extract_nb (unsigned long insn,
1219 int dialect ATTRIBUTE_UNUSED,
1220 int *invalid ATTRIBUTE_UNUSED)
252b5132
RH
1221{
1222 long ret;
1223
1224 ret = (insn >> 11) & 0x1f;
1225 if (ret == 0)
1226 ret = 32;
1227 return ret;
1228}
1229
1230/* The NSI field in a D form instruction. This is the same as the SI
1231 field, only negated. The extraction function always marks it as
1232 invalid, since we never want to recognize an instruction which uses
1233 a field of this type. */
1234
252b5132 1235static unsigned long
2fbfdc41
AM
1236insert_nsi (unsigned long insn,
1237 long value,
1238 int dialect ATTRIBUTE_UNUSED,
1239 const char **errmsg ATTRIBUTE_UNUSED)
252b5132 1240{
2fbfdc41 1241 return insn | (-value & 0xffff);
252b5132
RH
1242}
1243
1244static long
2fbfdc41
AM
1245extract_nsi (unsigned long insn,
1246 int dialect ATTRIBUTE_UNUSED,
1247 int *invalid)
252b5132 1248{
8427c424 1249 *invalid = 1;
2fbfdc41 1250 return -(((insn & 0xffff) ^ 0x8000) - 0x8000);
252b5132
RH
1251}
1252
1253/* The RA field in a D or X form instruction which is an updating
1254 load, which means that the RA field may not be zero and may not
1255 equal the RT field. */
1256
1257static unsigned long
2fbfdc41
AM
1258insert_ral (unsigned long insn,
1259 long value,
1260 int dialect ATTRIBUTE_UNUSED,
1261 const char **errmsg)
252b5132
RH
1262{
1263 if (value == 0
1264 || (unsigned long) value == ((insn >> 21) & 0x1f))
1265 *errmsg = "invalid register operand when updating";
1266 return insn | ((value & 0x1f) << 16);
1267}
1268
1269/* The RA field in an lmw instruction, which has special value
1270 restrictions. */
1271
1272static unsigned long
2fbfdc41
AM
1273insert_ram (unsigned long insn,
1274 long value,
1275 int dialect ATTRIBUTE_UNUSED,
1276 const char **errmsg)
252b5132
RH
1277{
1278 if ((unsigned long) value >= ((insn >> 21) & 0x1f))
1279 *errmsg = _("index register in load range");
1280 return insn | ((value & 0x1f) << 16);
1281}
1282
fdd12ef3 1283/* The RA field in the DQ form lq instruction, which has special
8427c424 1284 value restrictions. */
adadcc0c 1285
adadcc0c 1286static unsigned long
2fbfdc41
AM
1287insert_raq (unsigned long insn,
1288 long value,
1289 int dialect ATTRIBUTE_UNUSED,
1290 const char **errmsg)
adadcc0c
AM
1291{
1292 long rtvalue = (insn & RT_MASK) >> 21;
1293
8427c424 1294 if (value == rtvalue)
adadcc0c
AM
1295 *errmsg = _("source and target register operands must be different");
1296 return insn | ((value & 0x1f) << 16);
1297}
1298
252b5132
RH
1299/* The RA field in a D or X form instruction which is an updating
1300 store or an updating floating point load, which means that the RA
1301 field may not be zero. */
1302
1303static unsigned long
2fbfdc41
AM
1304insert_ras (unsigned long insn,
1305 long value,
1306 int dialect ATTRIBUTE_UNUSED,
1307 const char **errmsg)
252b5132
RH
1308{
1309 if (value == 0)
1310 *errmsg = _("invalid register operand when updating");
1311 return insn | ((value & 0x1f) << 16);
1312}
1313
1314/* The RB field in an X form instruction when it must be the same as
1315 the RS field in the instruction. This is used for extended
1316 mnemonics like mr. This operand is marked FAKE. The insertion
1317 function just copies the BT field into the BA field, and the
1318 extraction function just checks that the fields are the same. */
1319
252b5132 1320static unsigned long
2fbfdc41
AM
1321insert_rbs (unsigned long insn,
1322 long value ATTRIBUTE_UNUSED,
1323 int dialect ATTRIBUTE_UNUSED,
1324 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
1325{
1326 return insn | (((insn >> 21) & 0x1f) << 11);
1327}
1328
1329static long
2fbfdc41
AM
1330extract_rbs (unsigned long insn,
1331 int dialect ATTRIBUTE_UNUSED,
1332 int *invalid)
252b5132 1333{
8427c424 1334 if (((insn >> 21) & 0x1f) != ((insn >> 11) & 0x1f))
252b5132
RH
1335 *invalid = 1;
1336 return 0;
1337}
1338
8427c424
AM
1339/* The RT field of the DQ form lq instruction, which has special
1340 value restrictions. */
adadcc0c 1341
adadcc0c 1342static unsigned long
2fbfdc41
AM
1343insert_rtq (unsigned long insn,
1344 long value,
1345 int dialect ATTRIBUTE_UNUSED,
1346 const char **errmsg)
adadcc0c 1347{
8427c424 1348 if ((value & 1) != 0)
adadcc0c
AM
1349 *errmsg = _("target register operand must be even");
1350 return insn | ((value & 0x1f) << 21);
1351}
1352
fdd12ef3 1353/* The RS field of the DS form stq instruction, which has special
8427c424 1354 value restrictions. */
adadcc0c 1355
adadcc0c 1356static unsigned long
2fbfdc41
AM
1357insert_rsq (unsigned long insn,
1358 long value ATTRIBUTE_UNUSED,
1359 int dialect ATTRIBUTE_UNUSED,
1360 const char **errmsg)
adadcc0c 1361{
8427c424 1362 if ((value & 1) != 0)
adadcc0c
AM
1363 *errmsg = _("source register operand must be even");
1364 return insn | ((value & 0x1f) << 21);
1365}
1366
252b5132
RH
1367/* The SH field in an MD form instruction. This is split. */
1368
252b5132 1369static unsigned long
2fbfdc41
AM
1370insert_sh6 (unsigned long insn,
1371 long value,
1372 int dialect ATTRIBUTE_UNUSED,
1373 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
1374{
1375 return insn | ((value & 0x1f) << 11) | ((value & 0x20) >> 4);
1376}
1377
252b5132 1378static long
2fbfdc41
AM
1379extract_sh6 (unsigned long insn,
1380 int dialect ATTRIBUTE_UNUSED,
1381 int *invalid ATTRIBUTE_UNUSED)
252b5132
RH
1382{
1383 return ((insn >> 11) & 0x1f) | ((insn << 4) & 0x20);
1384}
1385
1386/* The SPR field in an XFX form instruction. This is flipped--the
1387 lower 5 bits are stored in the upper 5 and vice- versa. */
1388
1389static unsigned long
2fbfdc41
AM
1390insert_spr (unsigned long insn,
1391 long value,
1392 int dialect ATTRIBUTE_UNUSED,
1393 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
1394{
1395 return insn | ((value & 0x1f) << 16) | ((value & 0x3e0) << 6);
1396}
1397
1398static long
2fbfdc41
AM
1399extract_spr (unsigned long insn,
1400 int dialect ATTRIBUTE_UNUSED,
1401 int *invalid ATTRIBUTE_UNUSED)
252b5132
RH
1402{
1403 return ((insn >> 16) & 0x1f) | ((insn >> 6) & 0x3e0);
1404}
1405
da99ee72
AM
1406/* Some dialects have 8 SPRG registers instead of the standard 4. */
1407
1408static unsigned long
1409insert_sprg (unsigned long insn,
1410 long value,
1411 int dialect,
1412 const char **errmsg)
1413{
1414 /* This check uses PPC_OPCODE_403 because PPC405 is later defined
1415 as a synonym. If ever a 405 specific dialect is added this
1416 check should use that instead. */
1417 if (value > 7
1418 || (value > 3
1419 && (dialect & (PPC_OPCODE_BOOKE | PPC_OPCODE_403)) == 0))
1420 *errmsg = _("invalid sprg number");
1421
1422 /* If this is mfsprg4..7 then use spr 260..263 which can be read in
1423 user mode. Anything else must use spr 272..279. */
1424 if (value <= 3 || (insn & 0x100) != 0)
1425 value |= 0x10;
1426
1427 return insn | ((value & 0x17) << 16);
1428}
1429
1430static long
1431extract_sprg (unsigned long insn,
1432 int dialect,
1433 int *invalid)
1434{
1435 unsigned long val = (insn >> 16) & 0x1f;
1436
1437 /* mfsprg can use 260..263 and 272..279. mtsprg only uses spr 272..279
1438 If not BOOKE or 405, then both use only 272..275. */
1439 if (val <= 3
1440 || (val < 0x10 && (insn & 0x100) != 0)
1441 || (val - 0x10 > 3
1442 && (dialect & (PPC_OPCODE_BOOKE | PPC_OPCODE_403)) == 0))
1443 *invalid = 1;
1444 return val & 7;
1445}
1446
252b5132
RH
1447/* The TBR field in an XFX instruction. This is just like SPR, but it
1448 is optional. When TBR is omitted, it must be inserted as 268 (the
1449 magic number of the TB register). These functions treat 0
1450 (indicating an omitted optional operand) as 268. This means that
1451 ``mftb 4,0'' is not handled correctly. This does not matter very
1452 much, since the architecture manual does not define mftb as
1453 accepting any values other than 268 or 269. */
1454
1455#define TB (268)
1456
1457static unsigned long
2fbfdc41
AM
1458insert_tbr (unsigned long insn,
1459 long value,
1460 int dialect ATTRIBUTE_UNUSED,
1461 const char **errmsg ATTRIBUTE_UNUSED)
252b5132
RH
1462{
1463 if (value == 0)
1464 value = TB;
1465 return insn | ((value & 0x1f) << 16) | ((value & 0x3e0) << 6);
1466}
1467
1468static long
2fbfdc41
AM
1469extract_tbr (unsigned long insn,
1470 int dialect ATTRIBUTE_UNUSED,
1471 int *invalid ATTRIBUTE_UNUSED)
252b5132
RH
1472{
1473 long ret;
1474
1475 ret = ((insn >> 16) & 0x1f) | ((insn >> 6) & 0x3e0);
1476 if (ret == TB)
1477 ret = 0;
1478 return ret;
1479}
1480\f
1481/* Macros used to form opcodes. */
1482
1483/* The main opcode. */
1484#define OP(x) ((((unsigned long)(x)) & 0x3f) << 26)
1485#define OP_MASK OP (0x3f)
1486
1487/* The main opcode combined with a trap code in the TO field of a D
1488 form instruction. Used for extended mnemonics for the trap
1489 instructions. */
1490#define OPTO(x,to) (OP (x) | ((((unsigned long)(to)) & 0x1f) << 21))
1491#define OPTO_MASK (OP_MASK | TO_MASK)
1492
1493/* The main opcode combined with a comparison size bit in the L field
1494 of a D form or X form instruction. Used for extended mnemonics for
1495 the comparison instructions. */
1496#define OPL(x,l) (OP (x) | ((((unsigned long)(l)) & 1) << 21))
1497#define OPL_MASK OPL (0x3f,1)
1498
1499/* An A form instruction. */
1500#define A(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x1f) << 1) | (((unsigned long)(rc)) & 1))
1501#define A_MASK A (0x3f, 0x1f, 1)
1502
1503/* An A_MASK with the FRB field fixed. */
1504#define AFRB_MASK (A_MASK | FRB_MASK)
1505
1506/* An A_MASK with the FRC field fixed. */
1507#define AFRC_MASK (A_MASK | FRC_MASK)
1508
1509/* An A_MASK with the FRA and FRC fields fixed. */
1510#define AFRAFRC_MASK (A_MASK | FRA_MASK | FRC_MASK)
1511
1512/* A B form instruction. */
1513#define B(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 1) << 1) | ((lk) & 1))
1514#define B_MASK B (0x3f, 1, 1)
1515
1516/* A B form instruction setting the BO field. */
1517#define BBO(op, bo, aa, lk) (B ((op), (aa), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))
1518#define BBO_MASK BBO (0x3f, 0x1f, 1, 1)
1519
1520/* A BBO_MASK with the y bit of the BO field removed. This permits
1521 matching a conditional branch regardless of the setting of the y
94efba12 1522 bit. Similarly for the 'at' bits used for power4 branch hints. */
802a735e
AM
1523#define Y_MASK (((unsigned long) 1) << 21)
1524#define AT1_MASK (((unsigned long) 3) << 21)
1525#define AT2_MASK (((unsigned long) 9) << 21)
1526#define BBOY_MASK (BBO_MASK &~ Y_MASK)
1527#define BBOAT_MASK (BBO_MASK &~ AT1_MASK)
252b5132
RH
1528
1529/* A B form instruction setting the BO field and the condition bits of
1530 the BI field. */
1531#define BBOCB(op, bo, cb, aa, lk) \
1532 (BBO ((op), (bo), (aa), (lk)) | ((((unsigned long)(cb)) & 0x3) << 16))
1533#define BBOCB_MASK BBOCB (0x3f, 0x1f, 0x3, 1, 1)
1534
1535/* A BBOCB_MASK with the y bit of the BO field removed. */
1536#define BBOYCB_MASK (BBOCB_MASK &~ Y_MASK)
802a735e
AM
1537#define BBOATCB_MASK (BBOCB_MASK &~ AT1_MASK)
1538#define BBOAT2CB_MASK (BBOCB_MASK &~ AT2_MASK)
252b5132
RH
1539
1540/* A BBOYCB_MASK in which the BI field is fixed. */
1541#define BBOYBI_MASK (BBOYCB_MASK | BI_MASK)
802a735e 1542#define BBOATBI_MASK (BBOAT2CB_MASK | BI_MASK)
252b5132 1543
23976049
EZ
1544/* An Context form instruction. */
1545#define CTX(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x7))
fdd12ef3 1546#define CTX_MASK CTX(0x3f, 0x7)
23976049
EZ
1547
1548/* An User Context form instruction. */
1549#define UCTX(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x1f))
fdd12ef3 1550#define UCTX_MASK UCTX(0x3f, 0x1f)
23976049 1551
252b5132
RH
1552/* The main opcode mask with the RA field clear. */
1553#define DRA_MASK (OP_MASK | RA_MASK)
1554
1555/* A DS form instruction. */
1556#define DSO(op, xop) (OP (op) | ((xop) & 0x3))
1557#define DS_MASK DSO (0x3f, 3)
1558
418c1742
MG
1559/* A DE form instruction. */
1560#define DEO(op, xop) (OP (op) | ((xop) & 0xf))
1561#define DE_MASK DEO (0x3e, 0xf)
1562
23976049
EZ
1563/* An EVSEL form instruction. */
1564#define EVSEL(op, xop) (OP (op) | (((unsigned long)(xop)) & 0xff) << 3)
1565#define EVSEL_MASK EVSEL(0x3f, 0xff)
1566
252b5132
RH
1567/* An M form instruction. */
1568#define M(op, rc) (OP (op) | ((rc) & 1))
1569#define M_MASK M (0x3f, 1)
1570
1571/* An M form instruction with the ME field specified. */
1572#define MME(op, me, rc) (M ((op), (rc)) | ((((unsigned long)(me)) & 0x1f) << 1))
1573
1574/* An M_MASK with the MB and ME fields fixed. */
1575#define MMBME_MASK (M_MASK | MB_MASK | ME_MASK)
1576
1577/* An M_MASK with the SH and ME fields fixed. */
1578#define MSHME_MASK (M_MASK | SH_MASK | ME_MASK)
1579
1580/* An MD form instruction. */
1581#define MD(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x7) << 2) | ((rc) & 1))
1582#define MD_MASK MD (0x3f, 0x7, 1)
1583
1584/* An MD_MASK with the MB field fixed. */
1585#define MDMB_MASK (MD_MASK | MB6_MASK)
1586
1587/* An MD_MASK with the SH field fixed. */
1588#define MDSH_MASK (MD_MASK | SH6_MASK)
1589
1590/* An MDS form instruction. */
1591#define MDS(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0xf) << 1) | ((rc) & 1))
1592#define MDS_MASK MDS (0x3f, 0xf, 1)
1593
1594/* An MDS_MASK with the MB field fixed. */
1595#define MDSMB_MASK (MDS_MASK | MB6_MASK)
1596
1597/* An SC form instruction. */
1598#define SC(op, sa, lk) (OP (op) | ((((unsigned long)(sa)) & 1) << 1) | ((lk) & 1))
1599#define SC_MASK (OP_MASK | (((unsigned long)0x3ff) << 16) | (((unsigned long)1) << 1) | 1)
1600
112290ab 1601/* An VX form instruction. */
786e2c0f
C
1602#define VX(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x7ff))
1603
112290ab 1604/* The mask for an VX form instruction. */
786e2c0f
C
1605#define VX_MASK VX(0x3f, 0x7ff)
1606
112290ab 1607/* An VA form instruction. */
2613489e 1608#define VXA(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x03f))
786e2c0f 1609
112290ab 1610/* The mask for an VA form instruction. */
2613489e 1611#define VXA_MASK VXA(0x3f, 0x3f)
786e2c0f 1612
112290ab 1613/* An VXR form instruction. */
786e2c0f
C
1614#define VXR(op, xop, rc) (OP (op) | (((rc) & 1) << 10) | (((unsigned long)(xop)) & 0x3ff))
1615
112290ab 1616/* The mask for a VXR form instruction. */
786e2c0f
C
1617#define VXR_MASK VXR(0x3f, 0x3ff, 1)
1618
252b5132
RH
1619/* An X form instruction. */
1620#define X(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1))
1621
1622/* An X form instruction with the RC bit specified. */
1623#define XRC(op, xop, rc) (X ((op), (xop)) | ((rc) & 1))
1624
1625/* The mask for an X form instruction. */
1626#define X_MASK XRC (0x3f, 0x3ff, 1)
1627
1628/* An X_MASK with the RA field fixed. */
1629#define XRA_MASK (X_MASK | RA_MASK)
1630
1631/* An X_MASK with the RB field fixed. */
1632#define XRB_MASK (X_MASK | RB_MASK)
1633
1634/* An X_MASK with the RT field fixed. */
1635#define XRT_MASK (X_MASK | RT_MASK)
1636
1637/* An X_MASK with the RA and RB fields fixed. */
1638#define XRARB_MASK (X_MASK | RA_MASK | RB_MASK)
1639
112290ab 1640/* An XRARB_MASK, but with the L bit clear. */
5ae2e65e
AM
1641#define XRLARB_MASK (XRARB_MASK & ~((unsigned long) 1 << 16))
1642
252b5132
RH
1643/* An X_MASK with the RT and RA fields fixed. */
1644#define XRTRA_MASK (X_MASK | RT_MASK | RA_MASK)
1645
98acc1c5
AM
1646/* An XRTRA_MASK, but with L bit clear. */
1647#define XRTLRA_MASK (XRTRA_MASK & ~((unsigned long) 1 << 21))
1648
f3806e43
BE
1649/* An X form instruction with the L bit specified. */
1650#define XOPL(op, xop, l) (X ((op), (xop)) | ((((unsigned long)(l)) & 1) << 21))
252b5132
RH
1651
1652/* The mask for an X form comparison instruction. */
1653#define XCMP_MASK (X_MASK | (((unsigned long)1) << 22))
1654
520ceea4
BE
1655/* The mask for an X form comparison instruction with the L field
1656 fixed. */
1657#define XCMPL_MASK (XCMP_MASK | (((unsigned long)1) << 21))
252b5132
RH
1658
1659/* An X form trap instruction with the TO field specified. */
1660#define XTO(op, xop, to) (X ((op), (xop)) | ((((unsigned long)(to)) & 0x1f) << 21))
1661#define XTO_MASK (X_MASK | TO_MASK)
1662
e0c21649
GK
1663/* An X form tlb instruction with the SH field specified. */
1664#define XTLB(op, xop, sh) (X ((op), (xop)) | ((((unsigned long)(sh)) & 0x1f) << 11))
1665#define XTLB_MASK (X_MASK | SH_MASK)
1666
6ba045b1
AM
1667/* An X form sync instruction. */
1668#define XSYNC(op, xop, l) (X ((op), (xop)) | ((((unsigned long)(l)) & 3) << 21))
1669
1670/* An X form sync instruction with everything filled in except the LS field. */
1671#define XSYNC_MASK (0xff9fffff)
1672
f5c120c5
MG
1673/* An X form AltiVec dss instruction. */
1674#define XDSS(op, xop, a) (X ((op), (xop)) | ((((unsigned long)(a)) & 1) << 25))
1675#define XDSS_MASK XDSS(0x3f, 0x3ff, 1)
1676
252b5132
RH
1677/* An XFL form instruction. */
1678#define XFL(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1) | (((unsigned long)(rc)) & 1))
1679#define XFL_MASK (XFL (0x3f, 0x3ff, 1) | (((unsigned long)1) << 25) | (((unsigned long)1) << 16))
1680
23976049
EZ
1681/* An X form isel instruction. */
1682#define XISEL(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x1f) << 1))
1683#define XISEL_MASK XISEL(0x3f, 0x1f)
1684
252b5132
RH
1685/* An XL form instruction with the LK field set to 0. */
1686#define XL(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1))
1687
1688/* An XL form instruction which uses the LK field. */
1689#define XLLK(op, xop, lk) (XL ((op), (xop)) | ((lk) & 1))
1690
1691/* The mask for an XL form instruction. */
1692#define XL_MASK XLLK (0x3f, 0x3ff, 1)
1693
1694/* An XL form instruction which explicitly sets the BO field. */
1695#define XLO(op, bo, xop, lk) \
1696 (XLLK ((op), (xop), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))
1697#define XLO_MASK (XL_MASK | BO_MASK)
1698
1699/* An XL form instruction which explicitly sets the y bit of the BO
1700 field. */
1701#define XLYLK(op, xop, y, lk) (XLLK ((op), (xop), (lk)) | ((((unsigned long)(y)) & 1) << 21))
1702#define XLYLK_MASK (XL_MASK | Y_MASK)
1703
1704/* An XL form instruction which sets the BO field and the condition
1705 bits of the BI field. */
1706#define XLOCB(op, bo, cb, xop, lk) \
1707 (XLO ((op), (bo), (xop), (lk)) | ((((unsigned long)(cb)) & 3) << 16))
1708#define XLOCB_MASK XLOCB (0x3f, 0x1f, 0x3, 0x3ff, 1)
1709
1710/* An XL_MASK or XLYLK_MASK or XLOCB_MASK with the BB field fixed. */
1711#define XLBB_MASK (XL_MASK | BB_MASK)
1712#define XLYBB_MASK (XLYLK_MASK | BB_MASK)
1713#define XLBOCBBB_MASK (XLOCB_MASK | BB_MASK)
1714
d0618d1c
AM
1715/* A mask for branch instructions using the BH field. */
1716#define XLBH_MASK (XL_MASK | (0x1c << 11))
1717
252b5132
RH
1718/* An XL_MASK with the BO and BB fields fixed. */
1719#define XLBOBB_MASK (XL_MASK | BO_MASK | BB_MASK)
1720
1721/* An XL_MASK with the BO, BI and BB fields fixed. */
1722#define XLBOBIBB_MASK (XL_MASK | BO_MASK | BI_MASK | BB_MASK)
1723
1724/* An XO form instruction. */
1725#define XO(op, xop, oe, rc) \
1726 (OP (op) | ((((unsigned long)(xop)) & 0x1ff) << 1) | ((((unsigned long)(oe)) & 1) << 10) | (((unsigned long)(rc)) & 1))
1727#define XO_MASK XO (0x3f, 0x1ff, 1, 1)
1728
1729/* An XO_MASK with the RB field fixed. */
1730#define XORB_MASK (XO_MASK | RB_MASK)
1731
1732/* An XS form instruction. */
1733#define XS(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x1ff) << 2) | (((unsigned long)(rc)) & 1))
1734#define XS_MASK XS (0x3f, 0x1ff, 1)
1735
1736/* A mask for the FXM version of an XFX form instruction. */
98e69875 1737#define XFXFXM_MASK (X_MASK | (1 << 11) | (1 << 20))
252b5132
RH
1738
1739/* An XFX form instruction with the FXM field filled in. */
98e69875
AM
1740#define XFXM(op, xop, fxm, p4) \
1741 (X ((op), (xop)) | ((((unsigned long)(fxm)) & 0xff) << 12) \
1742 | ((unsigned long)(p4) << 20))
252b5132
RH
1743
1744/* An XFX form instruction with the SPR field filled in. */
1745#define XSPR(op, xop, spr) \
1746 (X ((op), (xop)) | ((((unsigned long)(spr)) & 0x1f) << 16) | ((((unsigned long)(spr)) & 0x3e0) << 6))
1747#define XSPR_MASK (X_MASK | SPR_MASK)
1748
1749/* An XFX form instruction with the SPR field filled in except for the
1750 SPRBAT field. */
1751#define XSPRBAT_MASK (XSPR_MASK &~ SPRBAT_MASK)
1752
1753/* An XFX form instruction with the SPR field filled in except for the
1754 SPRG field. */
da99ee72 1755#define XSPRG_MASK (XSPR_MASK & ~(0x17 << 16))
252b5132
RH
1756
1757/* An X form instruction with everything filled in except the E field. */
1758#define XE_MASK (0xffff7fff)
1759
23976049
EZ
1760/* An X form user context instruction. */
1761#define XUC(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x1f))
1762#define XUC_MASK XUC(0x3f, 0x1f)
1763
252b5132
RH
1764/* The BO encodings used in extended conditional branch mnemonics. */
1765#define BODNZF (0x0)
1766#define BODNZFP (0x1)
1767#define BODZF (0x2)
1768#define BODZFP (0x3)
252b5132
RH
1769#define BODNZT (0x8)
1770#define BODNZTP (0x9)
1771#define BODZT (0xa)
1772#define BODZTP (0xb)
802a735e
AM
1773
1774#define BOF (0x4)
1775#define BOFP (0x5)
94efba12
AM
1776#define BOFM4 (0x6)
1777#define BOFP4 (0x7)
252b5132
RH
1778#define BOT (0xc)
1779#define BOTP (0xd)
94efba12
AM
1780#define BOTM4 (0xe)
1781#define BOTP4 (0xf)
802a735e 1782
252b5132
RH
1783#define BODNZ (0x10)
1784#define BODNZP (0x11)
1785#define BODZ (0x12)
1786#define BODZP (0x13)
94efba12
AM
1787#define BODNZM4 (0x18)
1788#define BODNZP4 (0x19)
1789#define BODZM4 (0x1a)
1790#define BODZP4 (0x1b)
802a735e 1791
252b5132
RH
1792#define BOU (0x14)
1793
1794/* The BI condition bit encodings used in extended conditional branch
1795 mnemonics. */
1796#define CBLT (0)
1797#define CBGT (1)
1798#define CBEQ (2)
1799#define CBSO (3)
1800
1801/* The TO encodings used in extended trap mnemonics. */
1802#define TOLGT (0x1)
1803#define TOLLT (0x2)
1804#define TOEQ (0x4)
1805#define TOLGE (0x5)
1806#define TOLNL (0x5)
1807#define TOLLE (0x6)
1808#define TOLNG (0x6)
1809#define TOGT (0x8)
1810#define TOGE (0xc)
1811#define TONL (0xc)
1812#define TOLT (0x10)
1813#define TOLE (0x14)
1814#define TONG (0x14)
1815#define TONE (0x18)
1816#define TOU (0x1f)
1817\f
1818/* Smaller names for the flags so each entry in the opcodes table will
1819 fit on a single line. */
1820#undef PPC
661bd698
AM
1821#define PPC PPC_OPCODE_PPC
1822#define PPCCOM PPC_OPCODE_PPC | PPC_OPCODE_COMMON
94efba12 1823#define NOPOWER4 PPC_OPCODE_NOPOWER4 | PPCCOM
661bd698 1824#define POWER4 PPC_OPCODE_POWER4
1ed8e1e4 1825#define POWER5 PPC_OPCODE_POWER5
661bd698
AM
1826#define PPC32 PPC_OPCODE_32 | PPC_OPCODE_PPC
1827#define PPC64 PPC_OPCODE_64 | PPC_OPCODE_PPC
418c1742 1828#define PPC403 PPC_OPCODE_403
e0c21649 1829#define PPC405 PPC403
7d5b217e 1830#define PPC440 PPC_OPCODE_440
252b5132
RH
1831#define PPC750 PPC
1832#define PPC860 PPC
a404d431 1833#define PPCVEC PPC_OPCODE_ALTIVEC
661bd698
AM
1834#define POWER PPC_OPCODE_POWER
1835#define POWER2 PPC_OPCODE_POWER | PPC_OPCODE_POWER2
1836#define PPCPWR2 PPC_OPCODE_PPC | PPC_OPCODE_POWER | PPC_OPCODE_POWER2
1837#define POWER32 PPC_OPCODE_POWER | PPC_OPCODE_32
1838#define COM PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON
1839#define COM32 PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON | PPC_OPCODE_32
1840#define M601 PPC_OPCODE_POWER | PPC_OPCODE_601
1841#define PWRCOM PPC_OPCODE_POWER | PPC_OPCODE_601 | PPC_OPCODE_COMMON
252b5132 1842#define MFDEC1 PPC_OPCODE_POWER
dde1b132 1843#define MFDEC2 PPC_OPCODE_PPC | PPC_OPCODE_601 | PPC_OPCODE_BOOKE
418c1742
MG
1844#define BOOKE PPC_OPCODE_BOOKE
1845#define BOOKE64 PPC_OPCODE_BOOKE64
23976049 1846#define CLASSIC PPC_OPCODE_CLASSIC
36ae0db3 1847#define PPCE300 PPC_OPCODE_E300
23976049
EZ
1848#define PPCSPE PPC_OPCODE_SPE
1849#define PPCISEL PPC_OPCODE_ISEL
1850#define PPCEFS PPC_OPCODE_EFS
1851#define PPCBRLK PPC_OPCODE_BRLOCK
1852#define PPCPMR PPC_OPCODE_PMR
1853#define PPCCHLK PPC_OPCODE_CACHELCK
dde1b132 1854#define PPCCHLK64 PPC_OPCODE_CACHELCK | PPC_OPCODE_BOOKE64
23976049 1855#define PPCRFMCI PPC_OPCODE_RFMCI
252b5132
RH
1856\f
1857/* The opcode table.
1858
1859 The format of the opcode table is:
1860
1861 NAME OPCODE MASK FLAGS { OPERANDS }
1862
1863 NAME is the name of the instruction.
1864 OPCODE is the instruction opcode.
1865 MASK is the opcode mask; this is used to tell the disassembler
1866 which bits in the actual opcode must match OPCODE.
1867 FLAGS are flags indicated what processors support the instruction.
1868 OPERANDS is the list of operands.
1869
1870 The disassembler reads the table in order and prints the first
1871 instruction which matches, so this table is sorted to put more
1872 specific instructions before more general instructions. It is also
1873 sorted by major opcode. */
1874
1875const struct powerpc_opcode powerpc_opcodes[] = {
adadcc0c 1876{ "attn", X(0,256), X_MASK, POWER4, { 0 } },
252b5132
RH
1877{ "tdlgti", OPTO(2,TOLGT), OPTO_MASK, PPC64, { RA, SI } },
1878{ "tdllti", OPTO(2,TOLLT), OPTO_MASK, PPC64, { RA, SI } },
1879{ "tdeqi", OPTO(2,TOEQ), OPTO_MASK, PPC64, { RA, SI } },
1880{ "tdlgei", OPTO(2,TOLGE), OPTO_MASK, PPC64, { RA, SI } },
1881{ "tdlnli", OPTO(2,TOLNL), OPTO_MASK, PPC64, { RA, SI } },
1882{ "tdllei", OPTO(2,TOLLE), OPTO_MASK, PPC64, { RA, SI } },
1883{ "tdlngi", OPTO(2,TOLNG), OPTO_MASK, PPC64, { RA, SI } },
1884{ "tdgti", OPTO(2,TOGT), OPTO_MASK, PPC64, { RA, SI } },
1885{ "tdgei", OPTO(2,TOGE), OPTO_MASK, PPC64, { RA, SI } },
1886{ "tdnli", OPTO(2,TONL), OPTO_MASK, PPC64, { RA, SI } },
1887{ "tdlti", OPTO(2,TOLT), OPTO_MASK, PPC64, { RA, SI } },
1888{ "tdlei", OPTO(2,TOLE), OPTO_MASK, PPC64, { RA, SI } },
1889{ "tdngi", OPTO(2,TONG), OPTO_MASK, PPC64, { RA, SI } },
1890{ "tdnei", OPTO(2,TONE), OPTO_MASK, PPC64, { RA, SI } },
1891{ "tdi", OP(2), OP_MASK, PPC64, { TO, RA, SI } },
1892
1893{ "twlgti", OPTO(3,TOLGT), OPTO_MASK, PPCCOM, { RA, SI } },
1894{ "tlgti", OPTO(3,TOLGT), OPTO_MASK, PWRCOM, { RA, SI } },
1895{ "twllti", OPTO(3,TOLLT), OPTO_MASK, PPCCOM, { RA, SI } },
1896{ "tllti", OPTO(3,TOLLT), OPTO_MASK, PWRCOM, { RA, SI } },
1897{ "tweqi", OPTO(3,TOEQ), OPTO_MASK, PPCCOM, { RA, SI } },
1898{ "teqi", OPTO(3,TOEQ), OPTO_MASK, PWRCOM, { RA, SI } },
1899{ "twlgei", OPTO(3,TOLGE), OPTO_MASK, PPCCOM, { RA, SI } },
1900{ "tlgei", OPTO(3,TOLGE), OPTO_MASK, PWRCOM, { RA, SI } },
1901{ "twlnli", OPTO(3,TOLNL), OPTO_MASK, PPCCOM, { RA, SI } },
1902{ "tlnli", OPTO(3,TOLNL), OPTO_MASK, PWRCOM, { RA, SI } },
1903{ "twllei", OPTO(3,TOLLE), OPTO_MASK, PPCCOM, { RA, SI } },
1904{ "tllei", OPTO(3,TOLLE), OPTO_MASK, PWRCOM, { RA, SI } },
1905{ "twlngi", OPTO(3,TOLNG), OPTO_MASK, PPCCOM, { RA, SI } },
1906{ "tlngi", OPTO(3,TOLNG), OPTO_MASK, PWRCOM, { RA, SI } },
1907{ "twgti", OPTO(3,TOGT), OPTO_MASK, PPCCOM, { RA, SI } },
1908{ "tgti", OPTO(3,TOGT), OPTO_MASK, PWRCOM, { RA, SI } },
1909{ "twgei", OPTO(3,TOGE), OPTO_MASK, PPCCOM, { RA, SI } },
1910{ "tgei", OPTO(3,TOGE), OPTO_MASK, PWRCOM, { RA, SI } },
1911{ "twnli", OPTO(3,TONL), OPTO_MASK, PPCCOM, { RA, SI } },
1912{ "tnli", OPTO(3,TONL), OPTO_MASK, PWRCOM, { RA, SI } },
1913{ "twlti", OPTO(3,TOLT), OPTO_MASK, PPCCOM, { RA, SI } },
1914{ "tlti", OPTO(3,TOLT), OPTO_MASK, PWRCOM, { RA, SI } },
1915{ "twlei", OPTO(3,TOLE), OPTO_MASK, PPCCOM, { RA, SI } },
1916{ "tlei", OPTO(3,TOLE), OPTO_MASK, PWRCOM, { RA, SI } },
1917{ "twngi", OPTO(3,TONG), OPTO_MASK, PPCCOM, { RA, SI } },
1918{ "tngi", OPTO(3,TONG), OPTO_MASK, PWRCOM, { RA, SI } },
1919{ "twnei", OPTO(3,TONE), OPTO_MASK, PPCCOM, { RA, SI } },
1920{ "tnei", OPTO(3,TONE), OPTO_MASK, PWRCOM, { RA, SI } },
1921{ "twi", OP(3), OP_MASK, PPCCOM, { TO, RA, SI } },
1922{ "ti", OP(3), OP_MASK, PWRCOM, { TO, RA, SI } },
e0c21649 1923
7d5b217e
AM
1924{ "macchw", XO(4,172,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1925{ "macchw.", XO(4,172,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1926{ "macchwo", XO(4,172,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1927{ "macchwo.", XO(4,172,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1928{ "macchws", XO(4,236,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1929{ "macchws.", XO(4,236,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1930{ "macchwso", XO(4,236,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1931{ "macchwso.", XO(4,236,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1932{ "macchwsu", XO(4,204,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1933{ "macchwsu.", XO(4,204,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1934{ "macchwsuo", XO(4,204,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1935{ "macchwsuo.", XO(4,204,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1936{ "macchwu", XO(4,140,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1937{ "macchwu.", XO(4,140,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1938{ "macchwuo", XO(4,140,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1939{ "macchwuo.", XO(4,140,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1940{ "machhw", XO(4,44,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1941{ "machhw.", XO(4,44,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1942{ "machhwo", XO(4,44,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1943{ "machhwo.", XO(4,44,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1944{ "machhws", XO(4,108,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1945{ "machhws.", XO(4,108,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1946{ "machhwso", XO(4,108,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1947{ "machhwso.", XO(4,108,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1948{ "machhwsu", XO(4,76,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1949{ "machhwsu.", XO(4,76,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1950{ "machhwsuo", XO(4,76,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1951{ "machhwsuo.", XO(4,76,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1952{ "machhwu", XO(4,12,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1953{ "machhwu.", XO(4,12,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1954{ "machhwuo", XO(4,12,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1955{ "machhwuo.", XO(4,12,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1956{ "maclhw", XO(4,428,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1957{ "maclhw.", XO(4,428,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1958{ "maclhwo", XO(4,428,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1959{ "maclhwo.", XO(4,428,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1960{ "maclhws", XO(4,492,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1961{ "maclhws.", XO(4,492,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1962{ "maclhwso", XO(4,492,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1963{ "maclhwso.", XO(4,492,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1964{ "maclhwsu", XO(4,460,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1965{ "maclhwsu.", XO(4,460,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1966{ "maclhwsuo", XO(4,460,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1967{ "maclhwsuo.", XO(4,460,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1968{ "maclhwu", XO(4,396,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1969{ "maclhwu.", XO(4,396,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1970{ "maclhwuo", XO(4,396,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1971{ "maclhwuo.", XO(4,396,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1972{ "mulchw", XRC(4,168,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1973{ "mulchw.", XRC(4,168,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1974{ "mulchwu", XRC(4,136,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1975{ "mulchwu.", XRC(4,136,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1976{ "mulhhw", XRC(4,40,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1977{ "mulhhw.", XRC(4,40,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1978{ "mulhhwu", XRC(4,8,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1979{ "mulhhwu.", XRC(4,8,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1980{ "mullhw", XRC(4,424,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1981{ "mullhw.", XRC(4,424,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1982{ "mullhwu", XRC(4,392,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1983{ "mullhwu.", XRC(4,392,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1984{ "nmacchw", XO(4,174,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1985{ "nmacchw.", XO(4,174,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1986{ "nmacchwo", XO(4,174,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1987{ "nmacchwo.", XO(4,174,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1988{ "nmacchws", XO(4,238,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1989{ "nmacchws.", XO(4,238,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1990{ "nmacchwso", XO(4,238,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1991{ "nmacchwso.", XO(4,238,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1992{ "nmachhw", XO(4,46,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1993{ "nmachhw.", XO(4,46,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1994{ "nmachhwo", XO(4,46,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1995{ "nmachhwo.", XO(4,46,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1996{ "nmachhws", XO(4,110,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1997{ "nmachhws.", XO(4,110,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1998{ "nmachhwso", XO(4,110,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1999{ "nmachhwso.", XO(4,110,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2000{ "nmaclhw", XO(4,430,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2001{ "nmaclhw.", XO(4,430,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2002{ "nmaclhwo", XO(4,430,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2003{ "nmaclhwo.", XO(4,430,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2004{ "nmaclhws", XO(4,494,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2005{ "nmaclhws.", XO(4,494,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2006{ "nmaclhwso", XO(4,494,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2007{ "nmaclhwso.", XO(4,494,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
786e2c0f 2008{ "mfvscr", VX(4, 1540), VX_MASK, PPCVEC, { VD } },
f5c120c5 2009{ "mtvscr", VX(4, 1604), VX_MASK, PPCVEC, { VB } },
12c64a4e
AH
2010
2011 /* Double-precision opcodes. */
2012 /* Some of these conflict with AltiVec, so move them before, since
2013 PPCVEC includes the PPC_OPCODE_PPC set. */
0e06657a 2014{ "efscfd", VX(4, 719), VX_MASK, PPCEFS, { RS, RB } },
12c64a4e
AH
2015{ "efdabs", VX(4, 740), VX_MASK, PPCEFS, { RS, RA } },
2016{ "efdnabs", VX(4, 741), VX_MASK, PPCEFS, { RS, RA } },
2017{ "efdneg", VX(4, 742), VX_MASK, PPCEFS, { RS, RA } },
2018{ "efdadd", VX(4, 736), VX_MASK, PPCEFS, { RS, RA, RB } },
2019{ "efdsub", VX(4, 737), VX_MASK, PPCEFS, { RS, RA, RB } },
2020{ "efdmul", VX(4, 744), VX_MASK, PPCEFS, { RS, RA, RB } },
2021{ "efddiv", VX(4, 745), VX_MASK, PPCEFS, { RS, RA, RB } },
2022{ "efdcmpgt", VX(4, 748), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2023{ "efdcmplt", VX(4, 749), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2024{ "efdcmpeq", VX(4, 750), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2025{ "efdtstgt", VX(4, 764), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2026{ "efdtstlt", VX(4, 765), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2027{ "efdtsteq", VX(4, 766), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2028{ "efdcfsi", VX(4, 753), VX_MASK, PPCEFS, { RS, RB } },
2029{ "efdcfsid", VX(4, 739), VX_MASK, PPCEFS, { RS, RB } },
2030{ "efdcfui", VX(4, 752), VX_MASK, PPCEFS, { RS, RB } },
2031{ "efdcfuid", VX(4, 738), VX_MASK, PPCEFS, { RS, RB } },
2032{ "efdcfsf", VX(4, 755), VX_MASK, PPCEFS, { RS, RB } },
2033{ "efdcfuf", VX(4, 754), VX_MASK, PPCEFS, { RS, RB } },
2034{ "efdctsi", VX(4, 757), VX_MASK, PPCEFS, { RS, RB } },
2035{ "efdctsidz",VX(4, 747), VX_MASK, PPCEFS, { RS, RB } },
2036{ "efdctsiz", VX(4, 762), VX_MASK, PPCEFS, { RS, RB } },
2037{ "efdctui", VX(4, 756), VX_MASK, PPCEFS, { RS, RB } },
2038{ "efdctuidz",VX(4, 746), VX_MASK, PPCEFS, { RS, RB } },
2039{ "efdctuiz", VX(4, 760), VX_MASK, PPCEFS, { RS, RB } },
2040{ "efdctsf", VX(4, 759), VX_MASK, PPCEFS, { RS, RB } },
2041{ "efdctuf", VX(4, 758), VX_MASK, PPCEFS, { RS, RB } },
2042{ "efdcfs", VX(4, 751), VX_MASK, PPCEFS, { RS, RB } },
2043 /* End of double-precision opcodes. */
2044
786e2c0f
C
2045{ "vaddcuw", VX(4, 384), VX_MASK, PPCVEC, { VD, VA, VB } },
2046{ "vaddfp", VX(4, 10), VX_MASK, PPCVEC, { VD, VA, VB } },
2047{ "vaddsbs", VX(4, 768), VX_MASK, PPCVEC, { VD, VA, VB } },
2048{ "vaddshs", VX(4, 832), VX_MASK, PPCVEC, { VD, VA, VB } },
2049{ "vaddsws", VX(4, 896), VX_MASK, PPCVEC, { VD, VA, VB } },
2050{ "vaddubm", VX(4, 0), VX_MASK, PPCVEC, { VD, VA, VB } },
2051{ "vaddubs", VX(4, 512), VX_MASK, PPCVEC, { VD, VA, VB } },
2052{ "vadduhm", VX(4, 64), VX_MASK, PPCVEC, { VD, VA, VB } },
2053{ "vadduhs", VX(4, 576), VX_MASK, PPCVEC, { VD, VA, VB } },
2054{ "vadduwm", VX(4, 128), VX_MASK, PPCVEC, { VD, VA, VB } },
2055{ "vadduws", VX(4, 640), VX_MASK, PPCVEC, { VD, VA, VB } },
2056{ "vand", VX(4, 1028), VX_MASK, PPCVEC, { VD, VA, VB } },
2057{ "vandc", VX(4, 1092), VX_MASK, PPCVEC, { VD, VA, VB } },
2058{ "vavgsb", VX(4, 1282), VX_MASK, PPCVEC, { VD, VA, VB } },
2059{ "vavgsh", VX(4, 1346), VX_MASK, PPCVEC, { VD, VA, VB } },
2060{ "vavgsw", VX(4, 1410), VX_MASK, PPCVEC, { VD, VA, VB } },
2061{ "vavgub", VX(4, 1026), VX_MASK, PPCVEC, { VD, VA, VB } },
2062{ "vavguh", VX(4, 1090), VX_MASK, PPCVEC, { VD, VA, VB } },
2063{ "vavguw", VX(4, 1154), VX_MASK, PPCVEC, { VD, VA, VB } },
2064{ "vcfsx", VX(4, 842), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2065{ "vcfux", VX(4, 778), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2066{ "vcmpbfp", VXR(4, 966, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2067{ "vcmpbfp.", VXR(4, 966, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2068{ "vcmpeqfp", VXR(4, 198, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2069{ "vcmpeqfp.", VXR(4, 198, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2070{ "vcmpequb", VXR(4, 6, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2071{ "vcmpequb.", VXR(4, 6, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2072{ "vcmpequh", VXR(4, 70, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2073{ "vcmpequh.", VXR(4, 70, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2074{ "vcmpequw", VXR(4, 134, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2075{ "vcmpequw.", VXR(4, 134, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2076{ "vcmpgefp", VXR(4, 454, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2077{ "vcmpgefp.", VXR(4, 454, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2078{ "vcmpgtfp", VXR(4, 710, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2079{ "vcmpgtfp.", VXR(4, 710, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2080{ "vcmpgtsb", VXR(4, 774, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2081{ "vcmpgtsb.", VXR(4, 774, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2082{ "vcmpgtsh", VXR(4, 838, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2083{ "vcmpgtsh.", VXR(4, 838, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2084{ "vcmpgtsw", VXR(4, 902, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2085{ "vcmpgtsw.", VXR(4, 902, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2086{ "vcmpgtub", VXR(4, 518, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2087{ "vcmpgtub.", VXR(4, 518, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2088{ "vcmpgtuh", VXR(4, 582, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2089{ "vcmpgtuh.", VXR(4, 582, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2090{ "vcmpgtuw", VXR(4, 646, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2091{ "vcmpgtuw.", VXR(4, 646, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2092{ "vctsxs", VX(4, 970), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2093{ "vctuxs", VX(4, 906), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2094{ "vexptefp", VX(4, 394), VX_MASK, PPCVEC, { VD, VB } },
2095{ "vlogefp", VX(4, 458), VX_MASK, PPCVEC, { VD, VB } },
294b41b3 2096{ "vmaddfp", VXA(4, 46), VXA_MASK, PPCVEC, { VD, VA, VC, VB } },
786e2c0f
C
2097{ "vmaxfp", VX(4, 1034), VX_MASK, PPCVEC, { VD, VA, VB } },
2098{ "vmaxsb", VX(4, 258), VX_MASK, PPCVEC, { VD, VA, VB } },
2099{ "vmaxsh", VX(4, 322), VX_MASK, PPCVEC, { VD, VA, VB } },
2100{ "vmaxsw", VX(4, 386), VX_MASK, PPCVEC, { VD, VA, VB } },
2101{ "vmaxub", VX(4, 2), VX_MASK, PPCVEC, { VD, VA, VB } },
2102{ "vmaxuh", VX(4, 66), VX_MASK, PPCVEC, { VD, VA, VB } },
2103{ "vmaxuw", VX(4, 130), VX_MASK, PPCVEC, { VD, VA, VB } },
2104{ "vmhaddshs", VXA(4, 32), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2105{ "vmhraddshs", VXA(4, 33), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2106{ "vminfp", VX(4, 1098), VX_MASK, PPCVEC, { VD, VA, VB } },
2107{ "vminsb", VX(4, 770), VX_MASK, PPCVEC, { VD, VA, VB } },
2108{ "vminsh", VX(4, 834), VX_MASK, PPCVEC, { VD, VA, VB } },
2109{ "vminsw", VX(4, 898), VX_MASK, PPCVEC, { VD, VA, VB } },
2110{ "vminub", VX(4, 514), VX_MASK, PPCVEC, { VD, VA, VB } },
2111{ "vminuh", VX(4, 578), VX_MASK, PPCVEC, { VD, VA, VB } },
2112{ "vminuw", VX(4, 642), VX_MASK, PPCVEC, { VD, VA, VB } },
2113{ "vmladduhm", VXA(4, 34), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2114{ "vmrghb", VX(4, 12), VX_MASK, PPCVEC, { VD, VA, VB } },
2115{ "vmrghh", VX(4, 76), VX_MASK, PPCVEC, { VD, VA, VB } },
2116{ "vmrghw", VX(4, 140), VX_MASK, PPCVEC, { VD, VA, VB } },
2117{ "vmrglb", VX(4, 268), VX_MASK, PPCVEC, { VD, VA, VB } },
2118{ "vmrglh", VX(4, 332), VX_MASK, PPCVEC, { VD, VA, VB } },
2119{ "vmrglw", VX(4, 396), VX_MASK, PPCVEC, { VD, VA, VB } },
2120{ "vmsummbm", VXA(4, 37), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2121{ "vmsumshm", VXA(4, 40), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2122{ "vmsumshs", VXA(4, 41), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
d2f75a6f
GK
2123{ "vmsumubm", VXA(4, 36), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2124{ "vmsumuhm", VXA(4, 38), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2125{ "vmsumuhs", VXA(4, 39), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
786e2c0f
C
2126{ "vmulesb", VX(4, 776), VX_MASK, PPCVEC, { VD, VA, VB } },
2127{ "vmulesh", VX(4, 840), VX_MASK, PPCVEC, { VD, VA, VB } },
2128{ "vmuleub", VX(4, 520), VX_MASK, PPCVEC, { VD, VA, VB } },
2129{ "vmuleuh", VX(4, 584), VX_MASK, PPCVEC, { VD, VA, VB } },
2130{ "vmulosb", VX(4, 264), VX_MASK, PPCVEC, { VD, VA, VB } },
2131{ "vmulosh", VX(4, 328), VX_MASK, PPCVEC, { VD, VA, VB } },
2132{ "vmuloub", VX(4, 8), VX_MASK, PPCVEC, { VD, VA, VB } },
2133{ "vmulouh", VX(4, 72), VX_MASK, PPCVEC, { VD, VA, VB } },
2134{ "vnmsubfp", VXA(4, 47), VXA_MASK, PPCVEC, { VD, VA, VC, VB } },
2135{ "vnor", VX(4, 1284), VX_MASK, PPCVEC, { VD, VA, VB } },
2136{ "vor", VX(4, 1156), VX_MASK, PPCVEC, { VD, VA, VB } },
2137{ "vperm", VXA(4, 43), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2138{ "vpkpx", VX(4, 782), VX_MASK, PPCVEC, { VD, VA, VB } },
2139{ "vpkshss", VX(4, 398), VX_MASK, PPCVEC, { VD, VA, VB } },
2140{ "vpkshus", VX(4, 270), VX_MASK, PPCVEC, { VD, VA, VB } },
2141{ "vpkswss", VX(4, 462), VX_MASK, PPCVEC, { VD, VA, VB } },
2142{ "vpkswus", VX(4, 334), VX_MASK, PPCVEC, { VD, VA, VB } },
2143{ "vpkuhum", VX(4, 14), VX_MASK, PPCVEC, { VD, VA, VB } },
2144{ "vpkuhus", VX(4, 142), VX_MASK, PPCVEC, { VD, VA, VB } },
2145{ "vpkuwum", VX(4, 78), VX_MASK, PPCVEC, { VD, VA, VB } },
2146{ "vpkuwus", VX(4, 206), VX_MASK, PPCVEC, { VD, VA, VB } },
2147{ "vrefp", VX(4, 266), VX_MASK, PPCVEC, { VD, VB } },
2148{ "vrfim", VX(4, 714), VX_MASK, PPCVEC, { VD, VB } },
2149{ "vrfin", VX(4, 522), VX_MASK, PPCVEC, { VD, VB } },
2150{ "vrfip", VX(4, 650), VX_MASK, PPCVEC, { VD, VB } },
2151{ "vrfiz", VX(4, 586), VX_MASK, PPCVEC, { VD, VB } },
2152{ "vrlb", VX(4, 4), VX_MASK, PPCVEC, { VD, VA, VB } },
2153{ "vrlh", VX(4, 68), VX_MASK, PPCVEC, { VD, VA, VB } },
2154{ "vrlw", VX(4, 132), VX_MASK, PPCVEC, { VD, VA, VB } },
2155{ "vrsqrtefp", VX(4, 330), VX_MASK, PPCVEC, { VD, VB } },
2156{ "vsel", VXA(4, 42), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2157{ "vsl", VX(4, 452), VX_MASK, PPCVEC, { VD, VA, VB } },
2158{ "vslb", VX(4, 260), VX_MASK, PPCVEC, { VD, VA, VB } },
2159{ "vsldoi", VXA(4, 44), VXA_MASK, PPCVEC, { VD, VA, VB, SHB } },
2160{ "vslh", VX(4, 324), VX_MASK, PPCVEC, { VD, VA, VB } },
2161{ "vslo", VX(4, 1036), VX_MASK, PPCVEC, { VD, VA, VB } },
1da5001c 2162{ "vslw", VX(4, 388), VX_MASK, PPCVEC, { VD, VA, VB } },
786e2c0f
C
2163{ "vspltb", VX(4, 524), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2164{ "vsplth", VX(4, 588), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2165{ "vspltisb", VX(4, 780), VX_MASK, PPCVEC, { VD, SIMM } },
2166{ "vspltish", VX(4, 844), VX_MASK, PPCVEC, { VD, SIMM } },
2167{ "vspltisw", VX(4, 908), VX_MASK, PPCVEC, { VD, SIMM } },
2168{ "vspltw", VX(4, 652), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2169{ "vsr", VX(4, 708), VX_MASK, PPCVEC, { VD, VA, VB } },
2170{ "vsrab", VX(4, 772), VX_MASK, PPCVEC, { VD, VA, VB } },
2171{ "vsrah", VX(4, 836), VX_MASK, PPCVEC, { VD, VA, VB } },
2172{ "vsraw", VX(4, 900), VX_MASK, PPCVEC, { VD, VA, VB } },
2173{ "vsrb", VX(4, 516), VX_MASK, PPCVEC, { VD, VA, VB } },
2174{ "vsrh", VX(4, 580), VX_MASK, PPCVEC, { VD, VA, VB } },
2175{ "vsro", VX(4, 1100), VX_MASK, PPCVEC, { VD, VA, VB } },
2176{ "vsrw", VX(4, 644), VX_MASK, PPCVEC, { VD, VA, VB } },
2177{ "vsubcuw", VX(4, 1408), VX_MASK, PPCVEC, { VD, VA, VB } },
2178{ "vsubfp", VX(4, 74), VX_MASK, PPCVEC, { VD, VA, VB } },
2179{ "vsubsbs", VX(4, 1792), VX_MASK, PPCVEC, { VD, VA, VB } },
2180{ "vsubshs", VX(4, 1856), VX_MASK, PPCVEC, { VD, VA, VB } },
2181{ "vsubsws", VX(4, 1920), VX_MASK, PPCVEC, { VD, VA, VB } },
2182{ "vsububm", VX(4, 1024), VX_MASK, PPCVEC, { VD, VA, VB } },
2183{ "vsububs", VX(4, 1536), VX_MASK, PPCVEC, { VD, VA, VB } },
2184{ "vsubuhm", VX(4, 1088), VX_MASK, PPCVEC, { VD, VA, VB } },
2185{ "vsubuhs", VX(4, 1600), VX_MASK, PPCVEC, { VD, VA, VB } },
2186{ "vsubuwm", VX(4, 1152), VX_MASK, PPCVEC, { VD, VA, VB } },
2187{ "vsubuws", VX(4, 1664), VX_MASK, PPCVEC, { VD, VA, VB } },
2188{ "vsumsws", VX(4, 1928), VX_MASK, PPCVEC, { VD, VA, VB } },
2189{ "vsum2sws", VX(4, 1672), VX_MASK, PPCVEC, { VD, VA, VB } },
2190{ "vsum4sbs", VX(4, 1800), VX_MASK, PPCVEC, { VD, VA, VB } },
2191{ "vsum4shs", VX(4, 1608), VX_MASK, PPCVEC, { VD, VA, VB } },
2192{ "vsum4ubs", VX(4, 1544), VX_MASK, PPCVEC, { VD, VA, VB } },
2193{ "vupkhpx", VX(4, 846), VX_MASK, PPCVEC, { VD, VB } },
2194{ "vupkhsb", VX(4, 526), VX_MASK, PPCVEC, { VD, VB } },
2195{ "vupkhsh", VX(4, 590), VX_MASK, PPCVEC, { VD, VB } },
2196{ "vupklpx", VX(4, 974), VX_MASK, PPCVEC, { VD, VB } },
2197{ "vupklsb", VX(4, 654), VX_MASK, PPCVEC, { VD, VB } },
2198{ "vupklsh", VX(4, 718), VX_MASK, PPCVEC, { VD, VB } },
2199{ "vxor", VX(4, 1220), VX_MASK, PPCVEC, { VD, VA, VB } },
252b5132 2200
914749f6
AH
2201{ "evaddw", VX(4, 512), VX_MASK, PPCSPE, { RS, RA, RB } },
2202{ "evaddiw", VX(4, 514), VX_MASK, PPCSPE, { RS, RB, UIMM } },
2203{ "evsubfw", VX(4, 516), VX_MASK, PPCSPE, { RS, RA, RB } },
2204{ "evsubw", VX(4, 516), VX_MASK, PPCSPE, { RS, RB, RA } },
2205{ "evsubifw", VX(4, 518), VX_MASK, PPCSPE, { RS, UIMM, RB } },
2206{ "evsubiw", VX(4, 518), VX_MASK, PPCSPE, { RS, RB, UIMM } },
2207{ "evabs", VX(4, 520), VX_MASK, PPCSPE, { RS, RA } },
2208{ "evneg", VX(4, 521), VX_MASK, PPCSPE, { RS, RA } },
2209{ "evextsb", VX(4, 522), VX_MASK, PPCSPE, { RS, RA } },
2210{ "evextsh", VX(4, 523), VX_MASK, PPCSPE, { RS, RA } },
2211{ "evrndw", VX(4, 524), VX_MASK, PPCSPE, { RS, RA } },
2212{ "evcntlzw", VX(4, 525), VX_MASK, PPCSPE, { RS, RA } },
2213{ "evcntlsw", VX(4, 526), VX_MASK, PPCSPE, { RS, RA } },
2214
2215{ "brinc", VX(4, 527), VX_MASK, PPCSPE, { RS, RA, RB } },
2216
2217{ "evand", VX(4, 529), VX_MASK, PPCSPE, { RS, RA, RB } },
2218{ "evandc", VX(4, 530), VX_MASK, PPCSPE, { RS, RA, RB } },
dde1b132 2219{ "evmr", VX(4, 535), VX_MASK, PPCSPE, { RS, RA, BBA } },
914749f6
AH
2220{ "evor", VX(4, 535), VX_MASK, PPCSPE, { RS, RA, RB } },
2221{ "evorc", VX(4, 539), VX_MASK, PPCSPE, { RS, RA, RB } },
2222{ "evxor", VX(4, 534), VX_MASK, PPCSPE, { RS, RA, RB } },
2223{ "eveqv", VX(4, 537), VX_MASK, PPCSPE, { RS, RA, RB } },
2224{ "evnand", VX(4, 542), VX_MASK, PPCSPE, { RS, RA, RB } },
dde1b132 2225{ "evnot", VX(4, 536), VX_MASK, PPCSPE, { RS, RA, BBA } },
914749f6
AH
2226{ "evnor", VX(4, 536), VX_MASK, PPCSPE, { RS, RA, RB } },
2227
2228{ "evrlw", VX(4, 552), VX_MASK, PPCSPE, { RS, RA, RB } },
2229{ "evrlwi", VX(4, 554), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2230{ "evslw", VX(4, 548), VX_MASK, PPCSPE, { RS, RA, RB } },
2231{ "evslwi", VX(4, 550), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2232{ "evsrws", VX(4, 545), VX_MASK, PPCSPE, { RS, RA, RB } },
2233{ "evsrwu", VX(4, 544), VX_MASK, PPCSPE, { RS, RA, RB } },
2234{ "evsrwis", VX(4, 547), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2235{ "evsrwiu", VX(4, 546), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2236{ "evsplati", VX(4, 553), VX_MASK, PPCSPE, { RS, SIMM } },
2237{ "evsplatfi", VX(4, 555), VX_MASK, PPCSPE, { RS, SIMM } },
fe587977
AH
2238{ "evmergehi", VX(4, 556), VX_MASK, PPCSPE, { RS, RA, RB } },
2239{ "evmergelo", VX(4, 557), VX_MASK, PPCSPE, { RS, RA, RB } },
2240{ "evmergehilo",VX(4,558), VX_MASK, PPCSPE, { RS, RA, RB } },
2241{ "evmergelohi",VX(4,559), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049
EZ
2242
2243{ "evcmpgts", VX(4, 561), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2244{ "evcmpgtu", VX(4, 560), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2245{ "evcmplts", VX(4, 563), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2246{ "evcmpltu", VX(4, 562), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2247{ "evcmpeq", VX(4, 564), VX_MASK, PPCSPE, { CRFD, RA, RB } },
914749f6 2248{ "evsel", EVSEL(4,79),EVSEL_MASK, PPCSPE, { RS, RA, RB, CRFS } },
23976049
EZ
2249
2250{ "evldd", VX(4, 769), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2251{ "evlddx", VX(4, 768), VX_MASK, PPCSPE, { RS, RA, RB } },
2252{ "evldw", VX(4, 771), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2253{ "evldwx", VX(4, 770), VX_MASK, PPCSPE, { RS, RA, RB } },
2254{ "evldh", VX(4, 773), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2255{ "evldhx", VX(4, 772), VX_MASK, PPCSPE, { RS, RA, RB } },
2256{ "evlwhe", VX(4, 785), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2257{ "evlwhex", VX(4, 784), VX_MASK, PPCSPE, { RS, RA, RB } },
2258{ "evlwhou", VX(4, 789), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2259{ "evlwhoux", VX(4, 788), VX_MASK, PPCSPE, { RS, RA, RB } },
2260{ "evlwhos", VX(4, 791), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2261{ "evlwhosx", VX(4, 790), VX_MASK, PPCSPE, { RS, RA, RB } },
2262{ "evlwwsplat",VX(4, 793), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2263{ "evlwwsplatx",VX(4, 792), VX_MASK, PPCSPE, { RS, RA, RB } },
2264{ "evlwhsplat",VX(4, 797), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2265{ "evlwhsplatx",VX(4, 796), VX_MASK, PPCSPE, { RS, RA, RB } },
2266{ "evlhhesplat",VX(4, 777), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2267{ "evlhhesplatx",VX(4, 776), VX_MASK, PPCSPE, { RS, RA, RB } },
2268{ "evlhhousplat",VX(4, 781), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2269{ "evlhhousplatx",VX(4, 780), VX_MASK, PPCSPE, { RS, RA, RB } },
2270{ "evlhhossplat",VX(4, 783), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2271{ "evlhhossplatx",VX(4, 782), VX_MASK, PPCSPE, { RS, RA, RB } },
2272
2273{ "evstdd", VX(4, 801), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2274{ "evstddx", VX(4, 800), VX_MASK, PPCSPE, { RS, RA, RB } },
2275{ "evstdw", VX(4, 803), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2276{ "evstdwx", VX(4, 802), VX_MASK, PPCSPE, { RS, RA, RB } },
2277{ "evstdh", VX(4, 805), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2278{ "evstdhx", VX(4, 804), VX_MASK, PPCSPE, { RS, RA, RB } },
2279{ "evstwwe", VX(4, 825), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2280{ "evstwwex", VX(4, 824), VX_MASK, PPCSPE, { RS, RA, RB } },
2281{ "evstwwo", VX(4, 829), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2282{ "evstwwox", VX(4, 828), VX_MASK, PPCSPE, { RS, RA, RB } },
2283{ "evstwhe", VX(4, 817), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2284{ "evstwhex", VX(4, 816), VX_MASK, PPCSPE, { RS, RA, RB } },
2285{ "evstwho", VX(4, 821), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2286{ "evstwhox", VX(4, 820), VX_MASK, PPCSPE, { RS, RA, RB } },
2287
914749f6
AH
2288{ "evfsabs", VX(4, 644), VX_MASK, PPCSPE, { RS, RA } },
2289{ "evfsnabs", VX(4, 645), VX_MASK, PPCSPE, { RS, RA } },
2290{ "evfsneg", VX(4, 646), VX_MASK, PPCSPE, { RS, RA } },
2291{ "evfsadd", VX(4, 640), VX_MASK, PPCSPE, { RS, RA, RB } },
2292{ "evfssub", VX(4, 641), VX_MASK, PPCSPE, { RS, RA, RB } },
2293{ "evfsmul", VX(4, 648), VX_MASK, PPCSPE, { RS, RA, RB } },
2294{ "evfsdiv", VX(4, 649), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049
EZ
2295{ "evfscmpgt", VX(4, 652), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2296{ "evfscmplt", VX(4, 653), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2297{ "evfscmpeq", VX(4, 654), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2298{ "evfststgt", VX(4, 668), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2299{ "evfststlt", VX(4, 669), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2300{ "evfststeq", VX(4, 670), VX_MASK, PPCSPE, { CRFD, RA, RB } },
914749f6
AH
2301{ "evfscfui", VX(4, 656), VX_MASK, PPCSPE, { RS, RB } },
2302{ "evfsctuiz", VX(4, 664), VX_MASK, PPCSPE, { RS, RB } },
2303{ "evfscfsi", VX(4, 657), VX_MASK, PPCSPE, { RS, RB } },
2304{ "evfscfuf", VX(4, 658), VX_MASK, PPCSPE, { RS, RB } },
2305{ "evfscfsf", VX(4, 659), VX_MASK, PPCSPE, { RS, RB } },
2306{ "evfsctui", VX(4, 660), VX_MASK, PPCSPE, { RS, RB } },
2307{ "evfsctsi", VX(4, 661), VX_MASK, PPCSPE, { RS, RB } },
2308{ "evfsctsiz", VX(4, 666), VX_MASK, PPCSPE, { RS, RB } },
2309{ "evfsctuf", VX(4, 662), VX_MASK, PPCSPE, { RS, RB } },
2310{ "evfsctsf", VX(4, 663), VX_MASK, PPCSPE, { RS, RB } },
2311
2312{ "efsabs", VX(4, 708), VX_MASK, PPCEFS, { RS, RA } },
2313{ "efsnabs", VX(4, 709), VX_MASK, PPCEFS, { RS, RA } },
2314{ "efsneg", VX(4, 710), VX_MASK, PPCEFS, { RS, RA } },
2315{ "efsadd", VX(4, 704), VX_MASK, PPCEFS, { RS, RA, RB } },
2316{ "efssub", VX(4, 705), VX_MASK, PPCEFS, { RS, RA, RB } },
2317{ "efsmul", VX(4, 712), VX_MASK, PPCEFS, { RS, RA, RB } },
2318{ "efsdiv", VX(4, 713), VX_MASK, PPCEFS, { RS, RA, RB } },
23976049
EZ
2319{ "efscmpgt", VX(4, 716), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2320{ "efscmplt", VX(4, 717), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2321{ "efscmpeq", VX(4, 718), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2322{ "efststgt", VX(4, 732), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2323{ "efststlt", VX(4, 733), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2324{ "efststeq", VX(4, 734), VX_MASK, PPCEFS, { CRFD, RA, RB } },
914749f6
AH
2325{ "efscfui", VX(4, 720), VX_MASK, PPCEFS, { RS, RB } },
2326{ "efsctuiz", VX(4, 728), VX_MASK, PPCEFS, { RS, RB } },
2327{ "efscfsi", VX(4, 721), VX_MASK, PPCEFS, { RS, RB } },
2328{ "efscfuf", VX(4, 722), VX_MASK, PPCEFS, { RS, RB } },
2329{ "efscfsf", VX(4, 723), VX_MASK, PPCEFS, { RS, RB } },
2330{ "efsctui", VX(4, 724), VX_MASK, PPCEFS, { RS, RB } },
2331{ "efsctsi", VX(4, 725), VX_MASK, PPCEFS, { RS, RB } },
2332{ "efsctsiz", VX(4, 730), VX_MASK, PPCEFS, { RS, RB } },
2333{ "efsctuf", VX(4, 726), VX_MASK, PPCEFS, { RS, RB } },
2334{ "efsctsf", VX(4, 727), VX_MASK, PPCEFS, { RS, RB } },
2335
914749f6
AH
2336{ "evmhossf", VX(4, 1031), VX_MASK, PPCSPE, { RS, RA, RB } },
2337{ "evmhossfa", VX(4, 1063), VX_MASK, PPCSPE, { RS, RA, RB } },
2338{ "evmhosmf", VX(4, 1039), VX_MASK, PPCSPE, { RS, RA, RB } },
2339{ "evmhosmfa", VX(4, 1071), VX_MASK, PPCSPE, { RS, RA, RB } },
2340{ "evmhosmi", VX(4, 1037), VX_MASK, PPCSPE, { RS, RA, RB } },
2341{ "evmhosmia", VX(4, 1069), VX_MASK, PPCSPE, { RS, RA, RB } },
2342{ "evmhoumi", VX(4, 1036), VX_MASK, PPCSPE, { RS, RA, RB } },
2343{ "evmhoumia", VX(4, 1068), VX_MASK, PPCSPE, { RS, RA, RB } },
2344{ "evmhessf", VX(4, 1027), VX_MASK, PPCSPE, { RS, RA, RB } },
2345{ "evmhessfa", VX(4, 1059), VX_MASK, PPCSPE, { RS, RA, RB } },
2346{ "evmhesmf", VX(4, 1035), VX_MASK, PPCSPE, { RS, RA, RB } },
2347{ "evmhesmfa", VX(4, 1067), VX_MASK, PPCSPE, { RS, RA, RB } },
2348{ "evmhesmi", VX(4, 1033), VX_MASK, PPCSPE, { RS, RA, RB } },
2349{ "evmhesmia", VX(4, 1065), VX_MASK, PPCSPE, { RS, RA, RB } },
2350{ "evmheumi", VX(4, 1032), VX_MASK, PPCSPE, { RS, RA, RB } },
2351{ "evmheumia", VX(4, 1064), VX_MASK, PPCSPE, { RS, RA, RB } },
2352
2353{ "evmhossfaaw",VX(4, 1287), VX_MASK, PPCSPE, { RS, RA, RB } },
2354{ "evmhossiaaw",VX(4, 1285), VX_MASK, PPCSPE, { RS, RA, RB } },
2355{ "evmhosmfaaw",VX(4, 1295), VX_MASK, PPCSPE, { RS, RA, RB } },
2356{ "evmhosmiaaw",VX(4, 1293), VX_MASK, PPCSPE, { RS, RA, RB } },
2357{ "evmhousiaaw",VX(4, 1284), VX_MASK, PPCSPE, { RS, RA, RB } },
2358{ "evmhoumiaaw",VX(4, 1292), VX_MASK, PPCSPE, { RS, RA, RB } },
2359{ "evmhessfaaw",VX(4, 1283), VX_MASK, PPCSPE, { RS, RA, RB } },
2360{ "evmhessiaaw",VX(4, 1281), VX_MASK, PPCSPE, { RS, RA, RB } },
2361{ "evmhesmfaaw",VX(4, 1291), VX_MASK, PPCSPE, { RS, RA, RB } },
2362{ "evmhesmiaaw",VX(4, 1289), VX_MASK, PPCSPE, { RS, RA, RB } },
2363{ "evmheusiaaw",VX(4, 1280), VX_MASK, PPCSPE, { RS, RA, RB } },
2364{ "evmheumiaaw",VX(4, 1288), VX_MASK, PPCSPE, { RS, RA, RB } },
2365
2366{ "evmhossfanw",VX(4, 1415), VX_MASK, PPCSPE, { RS, RA, RB } },
2367{ "evmhossianw",VX(4, 1413), VX_MASK, PPCSPE, { RS, RA, RB } },
2368{ "evmhosmfanw",VX(4, 1423), VX_MASK, PPCSPE, { RS, RA, RB } },
2369{ "evmhosmianw",VX(4, 1421), VX_MASK, PPCSPE, { RS, RA, RB } },
2370{ "evmhousianw",VX(4, 1412), VX_MASK, PPCSPE, { RS, RA, RB } },
2371{ "evmhoumianw",VX(4, 1420), VX_MASK, PPCSPE, { RS, RA, RB } },
2372{ "evmhessfanw",VX(4, 1411), VX_MASK, PPCSPE, { RS, RA, RB } },
2373{ "evmhessianw",VX(4, 1409), VX_MASK, PPCSPE, { RS, RA, RB } },
2374{ "evmhesmfanw",VX(4, 1419), VX_MASK, PPCSPE, { RS, RA, RB } },
2375{ "evmhesmianw",VX(4, 1417), VX_MASK, PPCSPE, { RS, RA, RB } },
2376{ "evmheusianw",VX(4, 1408), VX_MASK, PPCSPE, { RS, RA, RB } },
2377{ "evmheumianw",VX(4, 1416), VX_MASK, PPCSPE, { RS, RA, RB } },
2378
2379{ "evmhogsmfaa",VX(4, 1327), VX_MASK, PPCSPE, { RS, RA, RB } },
2380{ "evmhogsmiaa",VX(4, 1325), VX_MASK, PPCSPE, { RS, RA, RB } },
2381{ "evmhogumiaa",VX(4, 1324), VX_MASK, PPCSPE, { RS, RA, RB } },
2382{ "evmhegsmfaa",VX(4, 1323), VX_MASK, PPCSPE, { RS, RA, RB } },
2383{ "evmhegsmiaa",VX(4, 1321), VX_MASK, PPCSPE, { RS, RA, RB } },
2384{ "evmhegumiaa",VX(4, 1320), VX_MASK, PPCSPE, { RS, RA, RB } },
2385
2386{ "evmhogsmfan",VX(4, 1455), VX_MASK, PPCSPE, { RS, RA, RB } },
2387{ "evmhogsmian",VX(4, 1453), VX_MASK, PPCSPE, { RS, RA, RB } },
2388{ "evmhogumian",VX(4, 1452), VX_MASK, PPCSPE, { RS, RA, RB } },
2389{ "evmhegsmfan",VX(4, 1451), VX_MASK, PPCSPE, { RS, RA, RB } },
2390{ "evmhegsmian",VX(4, 1449), VX_MASK, PPCSPE, { RS, RA, RB } },
2391{ "evmhegumian",VX(4, 1448), VX_MASK, PPCSPE, { RS, RA, RB } },
2392
2393{ "evmwhssf", VX(4, 1095), VX_MASK, PPCSPE, { RS, RA, RB } },
2394{ "evmwhssfa", VX(4, 1127), VX_MASK, PPCSPE, { RS, RA, RB } },
2395{ "evmwhsmf", VX(4, 1103), VX_MASK, PPCSPE, { RS, RA, RB } },
2396{ "evmwhsmfa", VX(4, 1135), VX_MASK, PPCSPE, { RS, RA, RB } },
2397{ "evmwhsmi", VX(4, 1101), VX_MASK, PPCSPE, { RS, RA, RB } },
2398{ "evmwhsmia", VX(4, 1133), VX_MASK, PPCSPE, { RS, RA, RB } },
2399{ "evmwhumi", VX(4, 1100), VX_MASK, PPCSPE, { RS, RA, RB } },
2400{ "evmwhumia", VX(4, 1132), VX_MASK, PPCSPE, { RS, RA, RB } },
2401
914749f6
AH
2402{ "evmwlumi", VX(4, 1096), VX_MASK, PPCSPE, { RS, RA, RB } },
2403{ "evmwlumia", VX(4, 1128), VX_MASK, PPCSPE, { RS, RA, RB } },
2404
914749f6 2405{ "evmwlssiaaw",VX(4, 1345), VX_MASK, PPCSPE, { RS, RA, RB } },
914749f6
AH
2406{ "evmwlsmiaaw",VX(4, 1353), VX_MASK, PPCSPE, { RS, RA, RB } },
2407{ "evmwlusiaaw",VX(4, 1344), VX_MASK, PPCSPE, { RS, RA, RB } },
2408{ "evmwlumiaaw",VX(4, 1352), VX_MASK, PPCSPE, { RS, RA, RB } },
2409
914749f6 2410{ "evmwlssianw",VX(4, 1473), VX_MASK, PPCSPE, { RS, RA, RB } },
914749f6
AH
2411{ "evmwlsmianw",VX(4, 1481), VX_MASK, PPCSPE, { RS, RA, RB } },
2412{ "evmwlusianw",VX(4, 1472), VX_MASK, PPCSPE, { RS, RA, RB } },
2413{ "evmwlumianw",VX(4, 1480), VX_MASK, PPCSPE, { RS, RA, RB } },
2414
914749f6
AH
2415{ "evmwssf", VX(4, 1107), VX_MASK, PPCSPE, { RS, RA, RB } },
2416{ "evmwssfa", VX(4, 1139), VX_MASK, PPCSPE, { RS, RA, RB } },
2417{ "evmwsmf", VX(4, 1115), VX_MASK, PPCSPE, { RS, RA, RB } },
2418{ "evmwsmfa", VX(4, 1147), VX_MASK, PPCSPE, { RS, RA, RB } },
2419{ "evmwsmi", VX(4, 1113), VX_MASK, PPCSPE, { RS, RA, RB } },
2420{ "evmwsmia", VX(4, 1145), VX_MASK, PPCSPE, { RS, RA, RB } },
2421{ "evmwumi", VX(4, 1112), VX_MASK, PPCSPE, { RS, RA, RB } },
2422{ "evmwumia", VX(4, 1144), VX_MASK, PPCSPE, { RS, RA, RB } },
2423
2424{ "evmwssfaa", VX(4, 1363), VX_MASK, PPCSPE, { RS, RA, RB } },
2425{ "evmwsmfaa", VX(4, 1371), VX_MASK, PPCSPE, { RS, RA, RB } },
2426{ "evmwsmiaa", VX(4, 1369), VX_MASK, PPCSPE, { RS, RA, RB } },
2427{ "evmwumiaa", VX(4, 1368), VX_MASK, PPCSPE, { RS, RA, RB } },
2428
2429{ "evmwssfan", VX(4, 1491), VX_MASK, PPCSPE, { RS, RA, RB } },
2430{ "evmwsmfan", VX(4, 1499), VX_MASK, PPCSPE, { RS, RA, RB } },
2431{ "evmwsmian", VX(4, 1497), VX_MASK, PPCSPE, { RS, RA, RB } },
2432{ "evmwumian", VX(4, 1496), VX_MASK, PPCSPE, { RS, RA, RB } },
2433
2434{ "evaddssiaaw",VX(4, 1217), VX_MASK, PPCSPE, { RS, RA } },
2435{ "evaddsmiaaw",VX(4, 1225), VX_MASK, PPCSPE, { RS, RA } },
2436{ "evaddusiaaw",VX(4, 1216), VX_MASK, PPCSPE, { RS, RA } },
2437{ "evaddumiaaw",VX(4, 1224), VX_MASK, PPCSPE, { RS, RA } },
2438
2439{ "evsubfssiaaw",VX(4, 1219), VX_MASK, PPCSPE, { RS, RA } },
2440{ "evsubfsmiaaw",VX(4, 1227), VX_MASK, PPCSPE, { RS, RA } },
2441{ "evsubfusiaaw",VX(4, 1218), VX_MASK, PPCSPE, { RS, RA } },
2442{ "evsubfumiaaw",VX(4, 1226), VX_MASK, PPCSPE, { RS, RA } },
2443
2444{ "evmra", VX(4, 1220), VX_MASK, PPCSPE, { RS, RA } },
2445
2446{ "evdivws", VX(4, 1222), VX_MASK, PPCSPE, { RS, RA, RB } },
2447{ "evdivwu", VX(4, 1223), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049 2448
252b5132
RH
2449{ "mulli", OP(7), OP_MASK, PPCCOM, { RT, RA, SI } },
2450{ "muli", OP(7), OP_MASK, PWRCOM, { RT, RA, SI } },
2451
2452{ "subfic", OP(8), OP_MASK, PPCCOM, { RT, RA, SI } },
2453{ "sfi", OP(8), OP_MASK, PWRCOM, { RT, RA, SI } },
2454
2455{ "dozi", OP(9), OP_MASK, M601, { RT, RA, SI } },
2456
418c1742
MG
2457{ "bce", B(9,0,0), B_MASK, BOOKE64, { BO, BI, BD } },
2458{ "bcel", B(9,0,1), B_MASK, BOOKE64, { BO, BI, BD } },
2459{ "bcea", B(9,1,0), B_MASK, BOOKE64, { BO, BI, BDA } },
2460{ "bcela", B(9,1,1), B_MASK, BOOKE64, { BO, BI, BDA } },
2461
252b5132
RH
2462{ "cmplwi", OPL(10,0), OPL_MASK, PPCCOM, { OBF, RA, UI } },
2463{ "cmpldi", OPL(10,1), OPL_MASK, PPC64, { OBF, RA, UI } },
661bd698 2464{ "cmpli", OP(10), OP_MASK, PPC, { BF, L, RA, UI } },
252b5132
RH
2465{ "cmpli", OP(10), OP_MASK, PWRCOM, { BF, RA, UI } },
2466
2467{ "cmpwi", OPL(11,0), OPL_MASK, PPCCOM, { OBF, RA, SI } },
2468{ "cmpdi", OPL(11,1), OPL_MASK, PPC64, { OBF, RA, SI } },
661bd698 2469{ "cmpi", OP(11), OP_MASK, PPC, { BF, L, RA, SI } },
252b5132
RH
2470{ "cmpi", OP(11), OP_MASK, PWRCOM, { BF, RA, SI } },
2471
2472{ "addic", OP(12), OP_MASK, PPCCOM, { RT, RA, SI } },
2473{ "ai", OP(12), OP_MASK, PWRCOM, { RT, RA, SI } },
2474{ "subic", OP(12), OP_MASK, PPCCOM, { RT, RA, NSI } },
2475
2476{ "addic.", OP(13), OP_MASK, PPCCOM, { RT, RA, SI } },
2477{ "ai.", OP(13), OP_MASK, PWRCOM, { RT, RA, SI } },
2478{ "subic.", OP(13), OP_MASK, PPCCOM, { RT, RA, NSI } },
2479
2480{ "li", OP(14), DRA_MASK, PPCCOM, { RT, SI } },
2481{ "lil", OP(14), DRA_MASK, PWRCOM, { RT, SI } },
fdd12ef3
AM
2482{ "addi", OP(14), OP_MASK, PPCCOM, { RT, RA0, SI } },
2483{ "cal", OP(14), OP_MASK, PWRCOM, { RT, D, RA0 } },
2484{ "subi", OP(14), OP_MASK, PPCCOM, { RT, RA0, NSI } },
2485{ "la", OP(14), OP_MASK, PPCCOM, { RT, D, RA0 } },
252b5132
RH
2486
2487{ "lis", OP(15), DRA_MASK, PPCCOM, { RT, SISIGNOPT } },
2488{ "liu", OP(15), DRA_MASK, PWRCOM, { RT, SISIGNOPT } },
fdd12ef3
AM
2489{ "addis", OP(15), OP_MASK, PPCCOM, { RT,RA0,SISIGNOPT } },
2490{ "cau", OP(15), OP_MASK, PWRCOM, { RT,RA0,SISIGNOPT } },
2491{ "subis", OP(15), OP_MASK, PPCCOM, { RT, RA0, NSI } },
252b5132 2492
112290ab
NC
2493{ "bdnz-", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BDM } },
2494{ "bdnz+", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BDP } },
2495{ "bdnz", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BD } },
2496{ "bdn", BBO(16,BODNZ,0,0), BBOATBI_MASK, PWRCOM, { BD } },
2497{ "bdnzl-", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BDM } },
2498{ "bdnzl+", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BDP } },
2499{ "bdnzl", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BD } },
2500{ "bdnl", BBO(16,BODNZ,0,1), BBOATBI_MASK, PWRCOM, { BD } },
2501{ "bdnza-", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDMA } },
2502{ "bdnza+", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDPA } },
2503{ "bdnza", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDA } },
2504{ "bdna", BBO(16,BODNZ,1,0), BBOATBI_MASK, PWRCOM, { BDA } },
2505{ "bdnzla-", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDMA } },
2506{ "bdnzla+", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDPA } },
2507{ "bdnzla", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDA } },
2508{ "bdnla", BBO(16,BODNZ,1,1), BBOATBI_MASK, PWRCOM, { BDA } },
2509{ "bdz-", BBO(16,BODZ,0,0), BBOATBI_MASK, PPCCOM, { BDM } },
2510{ "bdz+", BBO(16,BODZ,0,0), BBOATBI_MASK, PPCCOM, { BDP } },
2511{ "bdz", BBO(16,BODZ,0,0), BBOATBI_MASK, COM, { BD } },
2512{ "bdzl-", BBO(16,BODZ,0,1), BBOATBI_MASK, PPCCOM, { BDM } },
2513{ "bdzl+", BBO(16,BODZ,0,1), BBOATBI_MASK, PPCCOM, { BDP } },
2514{ "bdzl", BBO(16,BODZ,0,1), BBOATBI_MASK, COM, { BD } },
2515{ "bdza-", BBO(16,BODZ,1,0), BBOATBI_MASK, PPCCOM, { BDMA } },
2516{ "bdza+", BBO(16,BODZ,1,0), BBOATBI_MASK, PPCCOM, { BDPA } },
2517{ "bdza", BBO(16,BODZ,1,0), BBOATBI_MASK, COM, { BDA } },
2518{ "bdzla-", BBO(16,BODZ,1,1), BBOATBI_MASK, PPCCOM, { BDMA } },
2519{ "bdzla+", BBO(16,BODZ,1,1), BBOATBI_MASK, PPCCOM, { BDPA } },
2520{ "bdzla", BBO(16,BODZ,1,1), BBOATBI_MASK, COM, { BDA } },
802a735e
AM
2521{ "blt-", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2522{ "blt+", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2523{ "blt", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2524{ "bltl-", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2525{ "bltl+", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2526{ "bltl", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2527{ "blta-", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2528{ "blta+", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2529{ "blta", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2530{ "bltla-", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2531{ "bltla+", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2532{ "bltla", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2533{ "bgt-", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2534{ "bgt+", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2535{ "bgt", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2536{ "bgtl-", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2537{ "bgtl+", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2538{ "bgtl", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2539{ "bgta-", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2540{ "bgta+", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2541{ "bgta", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2542{ "bgtla-", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2543{ "bgtla+", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2544{ "bgtla", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2545{ "beq-", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2546{ "beq+", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2547{ "beq", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, COM, { CR, BD } },
2548{ "beql-", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2549{ "beql+", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2550{ "beql", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, COM, { CR, BD } },
2551{ "beqa-", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2552{ "beqa+", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2553{ "beqa", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2554{ "beqla-", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2555{ "beqla+", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2556{ "beqla", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2557{ "bso-", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2558{ "bso+", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2559{ "bso", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, COM, { CR, BD } },
2560{ "bsol-", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2561{ "bsol+", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2562{ "bsol", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, COM, { CR, BD } },
2563{ "bsoa-", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2564{ "bsoa+", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2565{ "bsoa", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2566{ "bsola-", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2567{ "bsola+", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2568{ "bsola", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2569{ "bun-", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2570{ "bun+", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2571{ "bun", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BD } },
2572{ "bunl-", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2573{ "bunl+", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2574{ "bunl", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BD } },
2575{ "buna-", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2576{ "buna+", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2577{ "buna", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2578{ "bunla-", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2579{ "bunla+", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2580{ "bunla", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2581{ "bge-", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2582{ "bge+", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2583{ "bge", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2584{ "bgel-", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2585{ "bgel+", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2586{ "bgel", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2587{ "bgea-", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2588{ "bgea+", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2589{ "bgea", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2590{ "bgela-", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2591{ "bgela+", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2592{ "bgela", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2593{ "bnl-", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2594{ "bnl+", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2595{ "bnl", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2596{ "bnll-", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2597{ "bnll+", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2598{ "bnll", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2599{ "bnla-", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2600{ "bnla+", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2601{ "bnla", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2602{ "bnlla-", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2603{ "bnlla+", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2604{ "bnlla", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2605{ "ble-", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2606{ "ble+", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2607{ "ble", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2608{ "blel-", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2609{ "blel+", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2610{ "blel", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2611{ "blea-", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2612{ "blea+", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2613{ "blea", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2614{ "blela-", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2615{ "blela+", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2616{ "blela", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2617{ "bng-", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2618{ "bng+", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2619{ "bng", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2620{ "bngl-", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2621{ "bngl+", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2622{ "bngl", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2623{ "bnga-", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2624{ "bnga+", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2625{ "bnga", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2626{ "bngla-", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2627{ "bngla+", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2628{ "bngla", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2629{ "bne-", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2630{ "bne+", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2631{ "bne", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, COM, { CR, BD } },
2632{ "bnel-", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2633{ "bnel+", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2634{ "bnel", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, COM, { CR, BD } },
2635{ "bnea-", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2636{ "bnea+", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2637{ "bnea", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2638{ "bnela-", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2639{ "bnela+", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2640{ "bnela", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2641{ "bns-", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2642{ "bns+", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2643{ "bns", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, COM, { CR, BD } },
2644{ "bnsl-", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2645{ "bnsl+", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2646{ "bnsl", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, COM, { CR, BD } },
2647{ "bnsa-", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2648{ "bnsa+", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2649{ "bnsa", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2650{ "bnsla-", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2651{ "bnsla+", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2652{ "bnsla", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2653{ "bnu-", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2654{ "bnu+", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2655{ "bnu", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BD } },
2656{ "bnul-", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2657{ "bnul+", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2658{ "bnul", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BD } },
2659{ "bnua-", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2660{ "bnua+", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2661{ "bnua", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2662{ "bnula-", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2663{ "bnula+", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2664{ "bnula", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDA } },
94efba12
AM
2665{ "bdnzt-", BBO(16,BODNZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2666{ "bdnzt+", BBO(16,BODNZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2667{ "bdnzt", BBO(16,BODNZT,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2668{ "bdnztl-", BBO(16,BODNZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2669{ "bdnztl+", BBO(16,BODNZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2670{ "bdnztl", BBO(16,BODNZT,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2671{ "bdnzta-", BBO(16,BODNZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2672{ "bdnzta+", BBO(16,BODNZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2673{ "bdnzta", BBO(16,BODNZT,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2674{ "bdnztla-",BBO(16,BODNZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2675{ "bdnztla+",BBO(16,BODNZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2676{ "bdnztla", BBO(16,BODNZT,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2677{ "bdnzf-", BBO(16,BODNZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2678{ "bdnzf+", BBO(16,BODNZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2679{ "bdnzf", BBO(16,BODNZF,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2680{ "bdnzfl-", BBO(16,BODNZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2681{ "bdnzfl+", BBO(16,BODNZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2682{ "bdnzfl", BBO(16,BODNZF,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2683{ "bdnzfa-", BBO(16,BODNZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2684{ "bdnzfa+", BBO(16,BODNZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2685{ "bdnzfa", BBO(16,BODNZF,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2686{ "bdnzfla-",BBO(16,BODNZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2687{ "bdnzfla+",BBO(16,BODNZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2688{ "bdnzfla", BBO(16,BODNZF,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
802a735e
AM
2689{ "bt-", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BDM } },
2690{ "bt+", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BDP } },
2691{ "bt", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BD } },
2692{ "bbt", BBO(16,BOT,0,0), BBOAT_MASK, PWRCOM, { BI, BD } },
2693{ "btl-", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BDM } },
2694{ "btl+", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BDP } },
2695{ "btl", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BD } },
2696{ "bbtl", BBO(16,BOT,0,1), BBOAT_MASK, PWRCOM, { BI, BD } },
2697{ "bta-", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2698{ "bta+", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2699{ "bta", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDA } },
2700{ "bbta", BBO(16,BOT,1,0), BBOAT_MASK, PWRCOM, { BI, BDA } },
2701{ "btla-", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2702{ "btla+", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2703{ "btla", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDA } },
2704{ "bbtla", BBO(16,BOT,1,1), BBOAT_MASK, PWRCOM, { BI, BDA } },
2705{ "bf-", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BDM } },
2706{ "bf+", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BDP } },
2707{ "bf", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BD } },
2708{ "bbf", BBO(16,BOF,0,0), BBOAT_MASK, PWRCOM, { BI, BD } },
2709{ "bfl-", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BDM } },
2710{ "bfl+", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BDP } },
2711{ "bfl", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BD } },
2712{ "bbfl", BBO(16,BOF,0,1), BBOAT_MASK, PWRCOM, { BI, BD } },
2713{ "bfa-", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2714{ "bfa+", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2715{ "bfa", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDA } },
2716{ "bbfa", BBO(16,BOF,1,0), BBOAT_MASK, PWRCOM, { BI, BDA } },
2717{ "bfla-", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2718{ "bfla+", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2719{ "bfla", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDA } },
2720{ "bbfla", BBO(16,BOF,1,1), BBOAT_MASK, PWRCOM, { BI, BDA } },
94efba12
AM
2721{ "bdzt-", BBO(16,BODZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2722{ "bdzt+", BBO(16,BODZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2723{ "bdzt", BBO(16,BODZT,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2724{ "bdztl-", BBO(16,BODZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2725{ "bdztl+", BBO(16,BODZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2726{ "bdztl", BBO(16,BODZT,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2727{ "bdzta-", BBO(16,BODZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2728{ "bdzta+", BBO(16,BODZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2729{ "bdzta", BBO(16,BODZT,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2730{ "bdztla-", BBO(16,BODZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2731{ "bdztla+", BBO(16,BODZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2732{ "bdztla", BBO(16,BODZT,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2733{ "bdzf-", BBO(16,BODZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2734{ "bdzf+", BBO(16,BODZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2735{ "bdzf", BBO(16,BODZF,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2736{ "bdzfl-", BBO(16,BODZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2737{ "bdzfl+", BBO(16,BODZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2738{ "bdzfl", BBO(16,BODZF,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2739{ "bdzfa-", BBO(16,BODZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2740{ "bdzfa+", BBO(16,BODZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2741{ "bdzfa", BBO(16,BODZF,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2742{ "bdzfla-", BBO(16,BODZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2743{ "bdzfla+", BBO(16,BODZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2744{ "bdzfla", BBO(16,BODZF,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
d2f75a6f
GK
2745{ "bc-", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDM } },
2746{ "bc+", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDP } },
252b5132 2747{ "bc", B(16,0,0), B_MASK, COM, { BO, BI, BD } },
d2f75a6f
GK
2748{ "bcl-", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDM } },
2749{ "bcl+", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDP } },
252b5132 2750{ "bcl", B(16,0,1), B_MASK, COM, { BO, BI, BD } },
d2f75a6f
GK
2751{ "bca-", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2752{ "bca+", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDPA } },
252b5132 2753{ "bca", B(16,1,0), B_MASK, COM, { BO, BI, BDA } },
d2f75a6f
GK
2754{ "bcla-", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2755{ "bcla+", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDPA } },
252b5132
RH
2756{ "bcla", B(16,1,1), B_MASK, COM, { BO, BI, BDA } },
2757
1ed8e1e4
AM
2758{ "sc", SC(17,1,0), SC_MASK, PPC, { LEV } },
2759{ "svc", SC(17,0,0), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
2760{ "svcl", SC(17,0,1), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
252b5132
RH
2761{ "svca", SC(17,1,0), SC_MASK, PWRCOM, { SV } },
2762{ "svcla", SC(17,1,1), SC_MASK, POWER, { SV } },
2763
418c1742
MG
2764{ "b", B(18,0,0), B_MASK, COM, { LI } },
2765{ "bl", B(18,0,1), B_MASK, COM, { LI } },
2766{ "ba", B(18,1,0), B_MASK, COM, { LIA } },
2767{ "bla", B(18,1,1), B_MASK, COM, { LIA } },
252b5132 2768
112290ab 2769{ "mcrf", XL(19,0), XLBB_MASK|(3 << 21)|(3 << 16), COM, { BF, BFA } },
252b5132
RH
2770
2771{ "blr", XLO(19,BOU,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
2772{ "br", XLO(19,BOU,16,0), XLBOBIBB_MASK, PWRCOM, { 0 } },
2773{ "blrl", XLO(19,BOU,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
2774{ "brl", XLO(19,BOU,16,1), XLBOBIBB_MASK, PWRCOM, { 0 } },
2775{ "bdnzlr", XLO(19,BODNZ,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2776{ "bdnzlr-", XLO(19,BODNZ,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2777{ "bdnzlr-", XLO(19,BODNZM4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2778{ "bdnzlr+", XLO(19,BODNZP,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2779{ "bdnzlr+", XLO(19,BODNZP4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2780{ "bdnzlrl", XLO(19,BODNZ,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2781{ "bdnzlrl-",XLO(19,BODNZ,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2782{ "bdnzlrl-",XLO(19,BODNZM4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2783{ "bdnzlrl+",XLO(19,BODNZP,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2784{ "bdnzlrl+",XLO(19,BODNZP4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2785{ "bdzlr", XLO(19,BODZ,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2786{ "bdzlr-", XLO(19,BODZ,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2787{ "bdzlr-", XLO(19,BODZM4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2788{ "bdzlr+", XLO(19,BODZP,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2789{ "bdzlr+", XLO(19,BODZP4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2790{ "bdzlrl", XLO(19,BODZ,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2791{ "bdzlrl-", XLO(19,BODZ,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2792{ "bdzlrl-", XLO(19,BODZM4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2793{ "bdzlrl+", XLO(19,BODZP,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2794{ "bdzlrl+", XLO(19,BODZP4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2795{ "bltlr", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2796{ "bltlr-", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2797{ "bltlr-", XLOCB(19,BOTM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2798{ "bltlr+", XLOCB(19,BOTP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2799{ "bltlr+", XLOCB(19,BOTP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2800{ "bltr", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2801{ "bltlrl", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2802{ "bltlrl-", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2803{ "bltlrl-", XLOCB(19,BOTM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2804{ "bltlrl+", XLOCB(19,BOTP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2805{ "bltlrl+", XLOCB(19,BOTP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2806{ "bltrl", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2807{ "bgtlr", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2808{ "bgtlr-", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2809{ "bgtlr-", XLOCB(19,BOTM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2810{ "bgtlr+", XLOCB(19,BOTP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2811{ "bgtlr+", XLOCB(19,BOTP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2812{ "bgtr", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2813{ "bgtlrl", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2814{ "bgtlrl-", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2815{ "bgtlrl-", XLOCB(19,BOTM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2816{ "bgtlrl+", XLOCB(19,BOTP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2817{ "bgtlrl+", XLOCB(19,BOTP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2818{ "bgtrl", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2819{ "beqlr", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2820{ "beqlr-", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2821{ "beqlr-", XLOCB(19,BOTM4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2822{ "beqlr+", XLOCB(19,BOTP,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2823{ "beqlr+", XLOCB(19,BOTP4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2824{ "beqr", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2825{ "beqlrl", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2826{ "beqlrl-", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2827{ "beqlrl-", XLOCB(19,BOTM4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2828{ "beqlrl+", XLOCB(19,BOTP,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2829{ "beqlrl+", XLOCB(19,BOTP4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2830{ "beqrl", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2831{ "bsolr", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2832{ "bsolr-", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2833{ "bsolr-", XLOCB(19,BOTM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2834{ "bsolr+", XLOCB(19,BOTP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2835{ "bsolr+", XLOCB(19,BOTP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2836{ "bsor", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2837{ "bsolrl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2838{ "bsolrl-", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2839{ "bsolrl-", XLOCB(19,BOTM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2840{ "bsolrl+", XLOCB(19,BOTP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2841{ "bsolrl+", XLOCB(19,BOTP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2842{ "bsorl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2843{ "bunlr", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2844{ "bunlr-", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2845{ "bunlr-", XLOCB(19,BOTM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2846{ "bunlr+", XLOCB(19,BOTP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2847{ "bunlr+", XLOCB(19,BOTP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2848{ "bunlrl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2849{ "bunlrl-", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2850{ "bunlrl-", XLOCB(19,BOTM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2851{ "bunlrl+", XLOCB(19,BOTP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2852{ "bunlrl+", XLOCB(19,BOTP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2853{ "bgelr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2854{ "bgelr-", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2855{ "bgelr-", XLOCB(19,BOFM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2856{ "bgelr+", XLOCB(19,BOFP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2857{ "bgelr+", XLOCB(19,BOFP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2858{ "bger", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2859{ "bgelrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2860{ "bgelrl-", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2861{ "bgelrl-", XLOCB(19,BOFM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2862{ "bgelrl+", XLOCB(19,BOFP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2863{ "bgelrl+", XLOCB(19,BOFP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2864{ "bgerl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2865{ "bnllr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2866{ "bnllr-", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2867{ "bnllr-", XLOCB(19,BOFM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2868{ "bnllr+", XLOCB(19,BOFP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2869{ "bnllr+", XLOCB(19,BOFP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2870{ "bnlr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2871{ "bnllrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2872{ "bnllrl-", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2873{ "bnllrl-", XLOCB(19,BOFM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2874{ "bnllrl+", XLOCB(19,BOFP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2875{ "bnllrl+", XLOCB(19,BOFP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2876{ "bnlrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2877{ "blelr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2878{ "blelr-", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2879{ "blelr-", XLOCB(19,BOFM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2880{ "blelr+", XLOCB(19,BOFP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2881{ "blelr+", XLOCB(19,BOFP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2882{ "bler", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2883{ "blelrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2884{ "blelrl-", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2885{ "blelrl-", XLOCB(19,BOFM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2886{ "blelrl+", XLOCB(19,BOFP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2887{ "blelrl+", XLOCB(19,BOFP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2888{ "blerl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2889{ "bnglr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2890{ "bnglr-", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2891{ "bnglr-", XLOCB(19,BOFM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2892{ "bnglr+", XLOCB(19,BOFP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2893{ "bnglr+", XLOCB(19,BOFP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2894{ "bngr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2895{ "bnglrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2896{ "bnglrl-", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2897{ "bnglrl-", XLOCB(19,BOFM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2898{ "bnglrl+", XLOCB(19,BOFP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2899{ "bnglrl+", XLOCB(19,BOFP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2900{ "bngrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2901{ "bnelr", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2902{ "bnelr-", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2903{ "bnelr-", XLOCB(19,BOFM4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2904{ "bnelr+", XLOCB(19,BOFP,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2905{ "bnelr+", XLOCB(19,BOFP4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2906{ "bner", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2907{ "bnelrl", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2908{ "bnelrl-", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2909{ "bnelrl-", XLOCB(19,BOFM4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2910{ "bnelrl+", XLOCB(19,BOFP,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2911{ "bnelrl+", XLOCB(19,BOFP4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2912{ "bnerl", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2913{ "bnslr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2914{ "bnslr-", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2915{ "bnslr-", XLOCB(19,BOFM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2916{ "bnslr+", XLOCB(19,BOFP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2917{ "bnslr+", XLOCB(19,BOFP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2918{ "bnsr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2919{ "bnslrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2920{ "bnslrl-", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2921{ "bnslrl-", XLOCB(19,BOFM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2922{ "bnslrl+", XLOCB(19,BOFP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2923{ "bnslrl+", XLOCB(19,BOFP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2924{ "bnsrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2925{ "bnulr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2926{ "bnulr-", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2927{ "bnulr-", XLOCB(19,BOFM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2928{ "bnulr+", XLOCB(19,BOFP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2929{ "bnulr+", XLOCB(19,BOFP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2930{ "bnulrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2931{ "bnulrl-", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2932{ "bnulrl-", XLOCB(19,BOFM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2933{ "bnulrl+", XLOCB(19,BOFP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2934{ "bnulrl+", XLOCB(19,BOFP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2935{ "btlr", XLO(19,BOT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2936{ "btlr-", XLO(19,BOT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2937{ "btlr-", XLO(19,BOTM4,16,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2938{ "btlr+", XLO(19,BOTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2939{ "btlr+", XLO(19,BOTP4,16,0), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2940{ "bbtr", XLO(19,BOT,16,0), XLBOBB_MASK, PWRCOM, { BI } },
2941{ "btlrl", XLO(19,BOT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2942{ "btlrl-", XLO(19,BOT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2943{ "btlrl-", XLO(19,BOTM4,16,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2944{ "btlrl+", XLO(19,BOTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2945{ "btlrl+", XLO(19,BOTP4,16,1), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2946{ "bbtrl", XLO(19,BOT,16,1), XLBOBB_MASK, PWRCOM, { BI } },
2947{ "bflr", XLO(19,BOF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2948{ "bflr-", XLO(19,BOF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2949{ "bflr-", XLO(19,BOFM4,16,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2950{ "bflr+", XLO(19,BOFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2951{ "bflr+", XLO(19,BOFP4,16,0), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2952{ "bbfr", XLO(19,BOF,16,0), XLBOBB_MASK, PWRCOM, { BI } },
2953{ "bflrl", XLO(19,BOF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2954{ "bflrl-", XLO(19,BOF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2955{ "bflrl-", XLO(19,BOFM4,16,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2956{ "bflrl+", XLO(19,BOFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2957{ "bflrl+", XLO(19,BOFP4,16,1), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2958{ "bbfrl", XLO(19,BOF,16,1), XLBOBB_MASK, PWRCOM, { BI } },
2959{ "bdnztlr", XLO(19,BODNZT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2960{ "bdnztlr-",XLO(19,BODNZT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2961{ "bdnztlr+",XLO(19,BODNZTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2962{ "bdnztlrl",XLO(19,BODNZT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2963{ "bdnztlrl-",XLO(19,BODNZT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2964{ "bdnztlrl+",XLO(19,BODNZTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2965{ "bdnzflr", XLO(19,BODNZF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2966{ "bdnzflr-",XLO(19,BODNZF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2967{ "bdnzflr+",XLO(19,BODNZFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2968{ "bdnzflrl",XLO(19,BODNZF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2969{ "bdnzflrl-",XLO(19,BODNZF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2970{ "bdnzflrl+",XLO(19,BODNZFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2971{ "bdztlr", XLO(19,BODZT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2972{ "bdztlr-", XLO(19,BODZT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2973{ "bdztlr+", XLO(19,BODZTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2974{ "bdztlrl", XLO(19,BODZT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2975{ "bdztlrl-",XLO(19,BODZT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2976{ "bdztlrl+",XLO(19,BODZTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2977{ "bdzflr", XLO(19,BODZF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2978{ "bdzflr-", XLO(19,BODZF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2979{ "bdzflr+", XLO(19,BODZFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2980{ "bdzflrl", XLO(19,BODZF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2981{ "bdzflrl-",XLO(19,BODZF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2982{ "bdzflrl+",XLO(19,BODZFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
d2f75a6f
GK
2983{ "bclr+", XLYLK(19,16,1,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
2984{ "bclrl+", XLYLK(19,16,1,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
2985{ "bclr-", XLYLK(19,16,0,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
2986{ "bclrl-", XLYLK(19,16,0,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
d0618d1c
AM
2987{ "bclr", XLLK(19,16,0), XLBH_MASK, PPCCOM, { BO, BI, BH } },
2988{ "bclrl", XLLK(19,16,1), XLBH_MASK, PPCCOM, { BO, BI, BH } },
252b5132
RH
2989{ "bcr", XLLK(19,16,0), XLBB_MASK, PWRCOM, { BO, BI } },
2990{ "bcrl", XLLK(19,16,1), XLBB_MASK, PWRCOM, { BO, BI } },
418c1742
MG
2991{ "bclre", XLLK(19,17,0), XLBB_MASK, BOOKE64, { BO, BI } },
2992{ "bclrel", XLLK(19,17,1), XLBB_MASK, BOOKE64, { BO, BI } },
252b5132 2993
f509565f
GK
2994{ "rfid", XL(19,18), 0xffffffff, PPC64, { 0 } },
2995
252b5132
RH
2996{ "crnot", XL(19,33), XL_MASK, PPCCOM, { BT, BA, BBA } },
2997{ "crnor", XL(19,33), XL_MASK, COM, { BT, BA, BB } },
112290ab 2998{ "rfmci", X(19,38), 0xffffffff, PPCRFMCI, { 0 } },
252b5132
RH
2999
3000{ "rfi", XL(19,50), 0xffffffff, COM, { 0 } },
823bbe9d 3001{ "rfci", XL(19,51), 0xffffffff, PPC403 | BOOKE, { 0 } },
252b5132
RH
3002
3003{ "rfsvc", XL(19,82), 0xffffffff, POWER, { 0 } },
3004
3005{ "crandc", XL(19,129), XL_MASK, COM, { BT, BA, BB } },
3006
3007{ "isync", XL(19,150), 0xffffffff, PPCCOM, { 0 } },
3008{ "ics", XL(19,150), 0xffffffff, PWRCOM, { 0 } },
3009
3010{ "crclr", XL(19,193), XL_MASK, PPCCOM, { BT, BAT, BBA } },
3011{ "crxor", XL(19,193), XL_MASK, COM, { BT, BA, BB } },
3012
3013{ "crnand", XL(19,225), XL_MASK, COM, { BT, BA, BB } },
3014
3015{ "crand", XL(19,257), XL_MASK, COM, { BT, BA, BB } },
3016
1ed8e1e4
AM
3017{ "hrfid", XL(19,274), 0xffffffff, POWER5, { 0 } },
3018
252b5132
RH
3019{ "crset", XL(19,289), XL_MASK, PPCCOM, { BT, BAT, BBA } },
3020{ "creqv", XL(19,289), XL_MASK, COM, { BT, BA, BB } },
3021
3022{ "crorc", XL(19,417), XL_MASK, COM, { BT, BA, BB } },
3023
3024{ "crmove", XL(19,449), XL_MASK, PPCCOM, { BT, BA, BBA } },
3025{ "cror", XL(19,449), XL_MASK, COM, { BT, BA, BB } },
3026
3027{ "bctr", XLO(19,BOU,528,0), XLBOBIBB_MASK, COM, { 0 } },
3028{ "bctrl", XLO(19,BOU,528,1), XLBOBIBB_MASK, COM, { 0 } },
3029{ "bltctr", XLOCB(19,BOT,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3030{ "bltctr-", XLOCB(19,BOT,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3031{ "bltctr-", XLOCB(19,BOTM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3032{ "bltctr+", XLOCB(19,BOTP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3033{ "bltctr+", XLOCB(19,BOTP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3034{ "bltctrl", XLOCB(19,BOT,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3035{ "bltctrl-",XLOCB(19,BOT,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3036{ "bltctrl-",XLOCB(19,BOTM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3037{ "bltctrl+",XLOCB(19,BOTP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3038{ "bltctrl+",XLOCB(19,BOTP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3039{ "bgtctr", XLOCB(19,BOT,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3040{ "bgtctr-", XLOCB(19,BOT,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3041{ "bgtctr-", XLOCB(19,BOTM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3042{ "bgtctr+", XLOCB(19,BOTP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3043{ "bgtctr+", XLOCB(19,BOTP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3044{ "bgtctrl", XLOCB(19,BOT,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3045{ "bgtctrl-",XLOCB(19,BOT,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3046{ "bgtctrl-",XLOCB(19,BOTM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3047{ "bgtctrl+",XLOCB(19,BOTP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3048{ "bgtctrl+",XLOCB(19,BOTP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3049{ "beqctr", XLOCB(19,BOT,CBEQ,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3050{ "beqctr-", XLOCB(19,BOT,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3051{ "beqctr-", XLOCB(19,BOTM4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3052{ "beqctr+", XLOCB(19,BOTP,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3053{ "beqctr+", XLOCB(19,BOTP4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3054{ "beqctrl", XLOCB(19,BOT,CBEQ,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3055{ "beqctrl-",XLOCB(19,BOT,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3056{ "beqctrl-",XLOCB(19,BOTM4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3057{ "beqctrl+",XLOCB(19,BOTP,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3058{ "beqctrl+",XLOCB(19,BOTP4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3059{ "bsoctr", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3060{ "bsoctr-", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3061{ "bsoctr-", XLOCB(19,BOTM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3062{ "bsoctr+", XLOCB(19,BOTP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3063{ "bsoctr+", XLOCB(19,BOTP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3064{ "bsoctrl", XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3065{ "bsoctrl-",XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3066{ "bsoctrl-",XLOCB(19,BOTM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3067{ "bsoctrl+",XLOCB(19,BOTP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3068{ "bsoctrl+",XLOCB(19,BOTP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3069{ "bunctr", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3070{ "bunctr-", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3071{ "bunctr-", XLOCB(19,BOTM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3072{ "bunctr+", XLOCB(19,BOTP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3073{ "bunctr+", XLOCB(19,BOTP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3074{ "bunctrl", XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3075{ "bunctrl-",XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3076{ "bunctrl-",XLOCB(19,BOTM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3077{ "bunctrl+",XLOCB(19,BOTP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3078{ "bunctrl+",XLOCB(19,BOTP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3079{ "bgectr", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3080{ "bgectr-", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3081{ "bgectr-", XLOCB(19,BOFM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3082{ "bgectr+", XLOCB(19,BOFP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3083{ "bgectr+", XLOCB(19,BOFP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3084{ "bgectrl", XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3085{ "bgectrl-",XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3086{ "bgectrl-",XLOCB(19,BOFM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3087{ "bgectrl+",XLOCB(19,BOFP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3088{ "bgectrl+",XLOCB(19,BOFP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3089{ "bnlctr", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3090{ "bnlctr-", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3091{ "bnlctr-", XLOCB(19,BOFM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3092{ "bnlctr+", XLOCB(19,BOFP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3093{ "bnlctr+", XLOCB(19,BOFP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3094{ "bnlctrl", XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3095{ "bnlctrl-",XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3096{ "bnlctrl-",XLOCB(19,BOFM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3097{ "bnlctrl+",XLOCB(19,BOFP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3098{ "bnlctrl+",XLOCB(19,BOFP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3099{ "blectr", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3100{ "blectr-", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3101{ "blectr-", XLOCB(19,BOFM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3102{ "blectr+", XLOCB(19,BOFP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3103{ "blectr+", XLOCB(19,BOFP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3104{ "blectrl", XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3105{ "blectrl-",XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3106{ "blectrl-",XLOCB(19,BOFM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3107{ "blectrl+",XLOCB(19,BOFP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3108{ "blectrl+",XLOCB(19,BOFP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3109{ "bngctr", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3110{ "bngctr-", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3111{ "bngctr-", XLOCB(19,BOFM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3112{ "bngctr+", XLOCB(19,BOFP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3113{ "bngctr+", XLOCB(19,BOFP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3114{ "bngctrl", XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3115{ "bngctrl-",XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3116{ "bngctrl-",XLOCB(19,BOFM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3117{ "bngctrl+",XLOCB(19,BOFP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3118{ "bngctrl+",XLOCB(19,BOFP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3119{ "bnectr", XLOCB(19,BOF,CBEQ,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3120{ "bnectr-", XLOCB(19,BOF,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3121{ "bnectr-", XLOCB(19,BOFM4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3122{ "bnectr+", XLOCB(19,BOFP,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3123{ "bnectr+", XLOCB(19,BOFP4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3124{ "bnectrl", XLOCB(19,BOF,CBEQ,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3125{ "bnectrl-",XLOCB(19,BOF,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3126{ "bnectrl-",XLOCB(19,BOFM4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3127{ "bnectrl+",XLOCB(19,BOFP,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3128{ "bnectrl+",XLOCB(19,BOFP4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3129{ "bnsctr", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3130{ "bnsctr-", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3131{ "bnsctr-", XLOCB(19,BOFM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3132{ "bnsctr+", XLOCB(19,BOFP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3133{ "bnsctr+", XLOCB(19,BOFP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3134{ "bnsctrl", XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3135{ "bnsctrl-",XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3136{ "bnsctrl-",XLOCB(19,BOFM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3137{ "bnsctrl+",XLOCB(19,BOFP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3138{ "bnsctrl+",XLOCB(19,BOFP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3139{ "bnuctr", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3140{ "bnuctr-", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3141{ "bnuctr-", XLOCB(19,BOFM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3142{ "bnuctr+", XLOCB(19,BOFP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3143{ "bnuctr+", XLOCB(19,BOFP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3144{ "bnuctrl", XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3145{ "bnuctrl-",XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3146{ "bnuctrl-",XLOCB(19,BOFM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3147{ "bnuctrl+",XLOCB(19,BOFP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3148{ "bnuctrl+",XLOCB(19,BOFP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3149{ "btctr", XLO(19,BOT,528,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3150{ "btctr-", XLO(19,BOT,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3151{ "btctr-", XLO(19,BOTM4,528,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3152{ "btctr+", XLO(19,BOTP,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3153{ "btctr+", XLO(19,BOTP4,528,0), XLBOBB_MASK, POWER4, { BI } },
252b5132 3154{ "btctrl", XLO(19,BOT,528,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3155{ "btctrl-", XLO(19,BOT,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3156{ "btctrl-", XLO(19,BOTM4,528,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3157{ "btctrl+", XLO(19,BOTP,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3158{ "btctrl+", XLO(19,BOTP4,528,1), XLBOBB_MASK, POWER4, { BI } },
252b5132 3159{ "bfctr", XLO(19,BOF,528,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3160{ "bfctr-", XLO(19,BOF,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3161{ "bfctr-", XLO(19,BOFM4,528,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3162{ "bfctr+", XLO(19,BOFP,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3163{ "bfctr+", XLO(19,BOFP4,528,0), XLBOBB_MASK, POWER4, { BI } },
252b5132 3164{ "bfctrl", XLO(19,BOF,528,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3165{ "bfctrl-", XLO(19,BOF,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3166{ "bfctrl-", XLO(19,BOFM4,528,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3167{ "bfctrl+", XLO(19,BOFP,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3168{ "bfctrl+", XLO(19,BOFP4,528,1), XLBOBB_MASK, POWER4, { BI } },
d2f75a6f
GK
3169{ "bcctr-", XLYLK(19,528,0,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
3170{ "bcctr+", XLYLK(19,528,1,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
d2f75a6f
GK
3171{ "bcctrl-", XLYLK(19,528,0,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
3172{ "bcctrl+", XLYLK(19,528,1,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
d0618d1c
AM
3173{ "bcctr", XLLK(19,528,0), XLBH_MASK, PPCCOM, { BO, BI, BH } },
3174{ "bcctrl", XLLK(19,528,1), XLBH_MASK, PPCCOM, { BO, BI, BH } },
252b5132
RH
3175{ "bcc", XLLK(19,528,0), XLBB_MASK, PWRCOM, { BO, BI } },
3176{ "bccl", XLLK(19,528,1), XLBB_MASK, PWRCOM, { BO, BI } },
418c1742
MG
3177{ "bcctre", XLLK(19,529,0), XLYBB_MASK, BOOKE64, { BO, BI } },
3178{ "bcctrel", XLLK(19,529,1), XLYBB_MASK, BOOKE64, { BO, BI } },
252b5132
RH
3179
3180{ "rlwimi", M(20,0), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3181{ "rlimi", M(20,0), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3182
3183{ "rlwimi.", M(20,1), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3184{ "rlimi.", M(20,1), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3185
3186{ "rotlwi", MME(21,31,0), MMBME_MASK, PPCCOM, { RA, RS, SH } },
3187{ "clrlwi", MME(21,31,0), MSHME_MASK, PPCCOM, { RA, RS, MB } },
3188{ "rlwinm", M(21,0), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3189{ "rlinm", M(21,0), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3190{ "rotlwi.", MME(21,31,1), MMBME_MASK, PPCCOM, { RA,RS,SH } },
3191{ "clrlwi.", MME(21,31,1), MSHME_MASK, PPCCOM, { RA, RS, MB } },
3192{ "rlwinm.", M(21,1), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3193{ "rlinm.", M(21,1), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3194
3195{ "rlmi", M(22,0), M_MASK, M601, { RA,RS,RB,MBE,ME } },
3196{ "rlmi.", M(22,1), M_MASK, M601, { RA,RS,RB,MBE,ME } },
3197
418c1742
MG
3198{ "be", B(22,0,0), B_MASK, BOOKE64, { LI } },
3199{ "bel", B(22,0,1), B_MASK, BOOKE64, { LI } },
3200{ "bea", B(22,1,0), B_MASK, BOOKE64, { LIA } },
3201{ "bela", B(22,1,1), B_MASK, BOOKE64, { LIA } },
3202
252b5132
RH
3203{ "rotlw", MME(23,31,0), MMBME_MASK, PPCCOM, { RA, RS, RB } },
3204{ "rlwnm", M(23,0), M_MASK, PPCCOM, { RA,RS,RB,MBE,ME } },
3205{ "rlnm", M(23,0), M_MASK, PWRCOM, { RA,RS,RB,MBE,ME } },
3206{ "rotlw.", MME(23,31,1), MMBME_MASK, PPCCOM, { RA, RS, RB } },
3207{ "rlwnm.", M(23,1), M_MASK, PPCCOM, { RA,RS,RB,MBE,ME } },
3208{ "rlnm.", M(23,1), M_MASK, PWRCOM, { RA,RS,RB,MBE,ME } },
3209
3210{ "nop", OP(24), 0xffffffff, PPCCOM, { 0 } },
3211{ "ori", OP(24), OP_MASK, PPCCOM, { RA, RS, UI } },
3212{ "oril", OP(24), OP_MASK, PWRCOM, { RA, RS, UI } },
3213
3214{ "oris", OP(25), OP_MASK, PPCCOM, { RA, RS, UI } },
3215{ "oriu", OP(25), OP_MASK, PWRCOM, { RA, RS, UI } },
3216
3217{ "xori", OP(26), OP_MASK, PPCCOM, { RA, RS, UI } },
3218{ "xoril", OP(26), OP_MASK, PWRCOM, { RA, RS, UI } },
3219
3220{ "xoris", OP(27), OP_MASK, PPCCOM, { RA, RS, UI } },
3221{ "xoriu", OP(27), OP_MASK, PWRCOM, { RA, RS, UI } },
3222
3223{ "andi.", OP(28), OP_MASK, PPCCOM, { RA, RS, UI } },
3224{ "andil.", OP(28), OP_MASK, PWRCOM, { RA, RS, UI } },
3225
3226{ "andis.", OP(29), OP_MASK, PPCCOM, { RA, RS, UI } },
3227{ "andiu.", OP(29), OP_MASK, PWRCOM, { RA, RS, UI } },
3228
3229{ "rotldi", MD(30,0,0), MDMB_MASK, PPC64, { RA, RS, SH6 } },
3230{ "clrldi", MD(30,0,0), MDSH_MASK, PPC64, { RA, RS, MB6 } },
3231{ "rldicl", MD(30,0,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3232{ "rotldi.", MD(30,0,1), MDMB_MASK, PPC64, { RA, RS, SH6 } },
3233{ "clrldi.", MD(30,0,1), MDSH_MASK, PPC64, { RA, RS, MB6 } },
3234{ "rldicl.", MD(30,0,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3235
3236{ "rldicr", MD(30,1,0), MD_MASK, PPC64, { RA, RS, SH6, ME6 } },
3237{ "rldicr.", MD(30,1,1), MD_MASK, PPC64, { RA, RS, SH6, ME6 } },
3238
3239{ "rldic", MD(30,2,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3240{ "rldic.", MD(30,2,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3241
3242{ "rldimi", MD(30,3,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3243{ "rldimi.", MD(30,3,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3244
3245{ "rotld", MDS(30,8,0), MDSMB_MASK, PPC64, { RA, RS, RB } },
3246{ "rldcl", MDS(30,8,0), MDS_MASK, PPC64, { RA, RS, RB, MB6 } },
3247{ "rotld.", MDS(30,8,1), MDSMB_MASK, PPC64, { RA, RS, RB } },
3248{ "rldcl.", MDS(30,8,1), MDS_MASK, PPC64, { RA, RS, RB, MB6 } },
3249
3250{ "rldcr", MDS(30,9,0), MDS_MASK, PPC64, { RA, RS, RB, ME6 } },
3251{ "rldcr.", MDS(30,9,1), MDS_MASK, PPC64, { RA, RS, RB, ME6 } },
3252
520ceea4
BE
3253{ "cmpw", XOPL(31,0,0), XCMPL_MASK, PPCCOM, { OBF, RA, RB } },
3254{ "cmpd", XOPL(31,0,1), XCMPL_MASK, PPC64, { OBF, RA, RB } },
661bd698 3255{ "cmp", X(31,0), XCMP_MASK, PPC, { BF, L, RA, RB } },
520ceea4 3256{ "cmp", X(31,0), XCMPL_MASK, PWRCOM, { BF, RA, RB } },
252b5132
RH
3257
3258{ "twlgt", XTO(31,4,TOLGT), XTO_MASK, PPCCOM, { RA, RB } },
3259{ "tlgt", XTO(31,4,TOLGT), XTO_MASK, PWRCOM, { RA, RB } },
3260{ "twllt", XTO(31,4,TOLLT), XTO_MASK, PPCCOM, { RA, RB } },
3261{ "tllt", XTO(31,4,TOLLT), XTO_MASK, PWRCOM, { RA, RB } },
3262{ "tweq", XTO(31,4,TOEQ), XTO_MASK, PPCCOM, { RA, RB } },
3263{ "teq", XTO(31,4,TOEQ), XTO_MASK, PWRCOM, { RA, RB } },
3264{ "twlge", XTO(31,4,TOLGE), XTO_MASK, PPCCOM, { RA, RB } },
3265{ "tlge", XTO(31,4,TOLGE), XTO_MASK, PWRCOM, { RA, RB } },
3266{ "twlnl", XTO(31,4,TOLNL), XTO_MASK, PPCCOM, { RA, RB } },
3267{ "tlnl", XTO(31,4,TOLNL), XTO_MASK, PWRCOM, { RA, RB } },
3268{ "twlle", XTO(31,4,TOLLE), XTO_MASK, PPCCOM, { RA, RB } },
3269{ "tlle", XTO(31,4,TOLLE), XTO_MASK, PWRCOM, { RA, RB } },
3270{ "twlng", XTO(31,4,TOLNG), XTO_MASK, PPCCOM, { RA, RB } },
3271{ "tlng", XTO(31,4,TOLNG), XTO_MASK, PWRCOM, { RA, RB } },
3272{ "twgt", XTO(31,4,TOGT), XTO_MASK, PPCCOM, { RA, RB } },
3273{ "tgt", XTO(31,4,TOGT), XTO_MASK, PWRCOM, { RA, RB } },
3274{ "twge", XTO(31,4,TOGE), XTO_MASK, PPCCOM, { RA, RB } },
3275{ "tge", XTO(31,4,TOGE), XTO_MASK, PWRCOM, { RA, RB } },
3276{ "twnl", XTO(31,4,TONL), XTO_MASK, PPCCOM, { RA, RB } },
3277{ "tnl", XTO(31,4,TONL), XTO_MASK, PWRCOM, { RA, RB } },
3278{ "twlt", XTO(31,4,TOLT), XTO_MASK, PPCCOM, { RA, RB } },
3279{ "tlt", XTO(31,4,TOLT), XTO_MASK, PWRCOM, { RA, RB } },
3280{ "twle", XTO(31,4,TOLE), XTO_MASK, PPCCOM, { RA, RB } },
3281{ "tle", XTO(31,4,TOLE), XTO_MASK, PWRCOM, { RA, RB } },
3282{ "twng", XTO(31,4,TONG), XTO_MASK, PPCCOM, { RA, RB } },
3283{ "tng", XTO(31,4,TONG), XTO_MASK, PWRCOM, { RA, RB } },
3284{ "twne", XTO(31,4,TONE), XTO_MASK, PPCCOM, { RA, RB } },
3285{ "tne", XTO(31,4,TONE), XTO_MASK, PWRCOM, { RA, RB } },
3286{ "trap", XTO(31,4,TOU), 0xffffffff, PPCCOM, { 0 } },
3287{ "tw", X(31,4), X_MASK, PPCCOM, { TO, RA, RB } },
3288{ "t", X(31,4), X_MASK, PWRCOM, { TO, RA, RB } },
3289
3290{ "subfc", XO(31,8,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3291{ "sf", XO(31,8,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3292{ "subc", XO(31,8,0,0), XO_MASK, PPC, { RT, RB, RA } },
3293{ "subfc.", XO(31,8,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3294{ "sf.", XO(31,8,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3295{ "subc.", XO(31,8,0,1), XO_MASK, PPCCOM, { RT, RB, RA } },
3296{ "subfco", XO(31,8,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3297{ "sfo", XO(31,8,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3298{ "subco", XO(31,8,1,0), XO_MASK, PPC, { RT, RB, RA } },
3299{ "subfco.", XO(31,8,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3300{ "sfo.", XO(31,8,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3301{ "subco.", XO(31,8,1,1), XO_MASK, PPC, { RT, RB, RA } },
3302
3303{ "mulhdu", XO(31,9,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3304{ "mulhdu.", XO(31,9,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3305
3306{ "addc", XO(31,10,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3307{ "a", XO(31,10,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3308{ "addc.", XO(31,10,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3309{ "a.", XO(31,10,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3310{ "addco", XO(31,10,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3311{ "ao", XO(31,10,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3312{ "addco.", XO(31,10,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3313{ "ao.", XO(31,10,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3314
3315{ "mulhwu", XO(31,11,0,0), XO_MASK, PPC, { RT, RA, RB } },
3316{ "mulhwu.", XO(31,11,0,1), XO_MASK, PPC, { RT, RA, RB } },
3317
dde1b132
NC
3318{ "isellt", X(31,15), X_MASK, PPCISEL, { RT, RA, RB } },
3319{ "iselgt", X(31,47), X_MASK, PPCISEL, { RT, RA, RB } },
3320{ "iseleq", X(31,79), X_MASK, PPCISEL, { RT, RA, RB } },
3321{ "isel", XISEL(31,15), XISEL_MASK, PPCISEL, { RT, RA, RB, CRB } },
23976049 3322
98e69875 3323{ "mfocrf", XFXM(31,19,0,1), XFXFXM_MASK, COM, { RT, FXM } },
c168870a
AM
3324{ "mfcr", X(31,19), XRARB_MASK, NOPOWER4, { RT } },
3325{ "mfcr", X(31,19), XFXFXM_MASK, POWER4, { RT, FXM4 } },
252b5132 3326
fdd12ef3 3327{ "lwarx", X(31,20), X_MASK, PPC, { RT, RA0, RB } },
252b5132 3328
fdd12ef3 3329{ "ldx", X(31,21), X_MASK, PPC64, { RT, RA0, RB } },
252b5132 3330
36ae0db3 3331{ "icbt", X(31,22), X_MASK, BOOKE|PPCE300, { CT, RA, RB } },
823bbe9d 3332{ "icbt", X(31,262), XRT_MASK, PPC403, { RA, RB } },
418c1742 3333
fdd12ef3 3334{ "lwzx", X(31,23), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
3335{ "lx", X(31,23), X_MASK, PWRCOM, { RT, RA, RB } },
3336
3337{ "slw", XRC(31,24,0), X_MASK, PPCCOM, { RA, RS, RB } },
3338{ "sl", XRC(31,24,0), X_MASK, PWRCOM, { RA, RS, RB } },
3339{ "slw.", XRC(31,24,1), X_MASK, PPCCOM, { RA, RS, RB } },
3340{ "sl.", XRC(31,24,1), X_MASK, PWRCOM, { RA, RS, RB } },
3341
3342{ "cntlzw", XRC(31,26,0), XRB_MASK, PPCCOM, { RA, RS } },
3343{ "cntlz", XRC(31,26,0), XRB_MASK, PWRCOM, { RA, RS } },
3344{ "cntlzw.", XRC(31,26,1), XRB_MASK, PPCCOM, { RA, RS } },
3345{ "cntlz.", XRC(31,26,1), XRB_MASK, PWRCOM, { RA, RS } },
3346
3347{ "sld", XRC(31,27,0), X_MASK, PPC64, { RA, RS, RB } },
3348{ "sld.", XRC(31,27,1), X_MASK, PPC64, { RA, RS, RB } },
3349
3350{ "and", XRC(31,28,0), X_MASK, COM, { RA, RS, RB } },
3351{ "and.", XRC(31,28,1), X_MASK, COM, { RA, RS, RB } },
3352
3353{ "maskg", XRC(31,29,0), X_MASK, M601, { RA, RS, RB } },
3354{ "maskg.", XRC(31,29,1), X_MASK, M601, { RA, RS, RB } },
3355
418c1742
MG
3356{ "icbte", X(31,30), X_MASK, BOOKE64, { CT, RA, RB } },
3357
fdd12ef3 3358{ "lwzxe", X(31,31), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3359
520ceea4
BE
3360{ "cmplw", XOPL(31,32,0), XCMPL_MASK, PPCCOM, { OBF, RA, RB } },
3361{ "cmpld", XOPL(31,32,1), XCMPL_MASK, PPC64, { OBF, RA, RB } },
661bd698 3362{ "cmpl", X(31,32), XCMP_MASK, PPC, { BF, L, RA, RB } },
520ceea4 3363{ "cmpl", X(31,32), XCMPL_MASK, PWRCOM, { BF, RA, RB } },
252b5132
RH
3364
3365{ "subf", XO(31,40,0,0), XO_MASK, PPC, { RT, RA, RB } },
3366{ "sub", XO(31,40,0,0), XO_MASK, PPC, { RT, RB, RA } },
3367{ "subf.", XO(31,40,0,1), XO_MASK, PPC, { RT, RA, RB } },
3368{ "sub.", XO(31,40,0,1), XO_MASK, PPC, { RT, RB, RA } },
3369{ "subfo", XO(31,40,1,0), XO_MASK, PPC, { RT, RA, RB } },
3370{ "subo", XO(31,40,1,0), XO_MASK, PPC, { RT, RB, RA } },
3371{ "subfo.", XO(31,40,1,1), XO_MASK, PPC, { RT, RA, RB } },
3372{ "subo.", XO(31,40,1,1), XO_MASK, PPC, { RT, RB, RA } },
3373
3374{ "ldux", X(31,53), X_MASK, PPC64, { RT, RAL, RB } },
3375
3376{ "dcbst", X(31,54), XRT_MASK, PPC, { RA, RB } },
3377
3378{ "lwzux", X(31,55), X_MASK, PPCCOM, { RT, RAL, RB } },
3379{ "lux", X(31,55), X_MASK, PWRCOM, { RT, RA, RB } },
3380
418c1742
MG
3381{ "dcbste", X(31,62), XRT_MASK, BOOKE64, { RA, RB } },
3382
3383{ "lwzuxe", X(31,63), X_MASK, BOOKE64, { RT, RAL, RB } },
3384
252b5132
RH
3385{ "cntlzd", XRC(31,58,0), XRB_MASK, PPC64, { RA, RS } },
3386{ "cntlzd.", XRC(31,58,1), XRB_MASK, PPC64, { RA, RS } },
3387
418c1742
MG
3388{ "andc", XRC(31,60,0), X_MASK, COM, { RA, RS, RB } },
3389{ "andc.", XRC(31,60,1), X_MASK, COM, { RA, RS, RB } },
252b5132
RH
3390
3391{ "tdlgt", XTO(31,68,TOLGT), XTO_MASK, PPC64, { RA, RB } },
3392{ "tdllt", XTO(31,68,TOLLT), XTO_MASK, PPC64, { RA, RB } },
3393{ "tdeq", XTO(31,68,TOEQ), XTO_MASK, PPC64, { RA, RB } },
3394{ "tdlge", XTO(31,68,TOLGE), XTO_MASK, PPC64, { RA, RB } },
3395{ "tdlnl", XTO(31,68,TOLNL), XTO_MASK, PPC64, { RA, RB } },
3396{ "tdlle", XTO(31,68,TOLLE), XTO_MASK, PPC64, { RA, RB } },
3397{ "tdlng", XTO(31,68,TOLNG), XTO_MASK, PPC64, { RA, RB } },
3398{ "tdgt", XTO(31,68,TOGT), XTO_MASK, PPC64, { RA, RB } },
3399{ "tdge", XTO(31,68,TOGE), XTO_MASK, PPC64, { RA, RB } },
3400{ "tdnl", XTO(31,68,TONL), XTO_MASK, PPC64, { RA, RB } },
3401{ "tdlt", XTO(31,68,TOLT), XTO_MASK, PPC64, { RA, RB } },
3402{ "tdle", XTO(31,68,TOLE), XTO_MASK, PPC64, { RA, RB } },
3403{ "tdng", XTO(31,68,TONG), XTO_MASK, PPC64, { RA, RB } },
3404{ "tdne", XTO(31,68,TONE), XTO_MASK, PPC64, { RA, RB } },
3405{ "td", X(31,68), X_MASK, PPC64, { TO, RA, RB } },
3406
3407{ "mulhd", XO(31,73,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3408{ "mulhd.", XO(31,73,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3409
3410{ "mulhw", XO(31,75,0,0), XO_MASK, PPC, { RT, RA, RB } },
3411{ "mulhw.", XO(31,75,0,1), XO_MASK, PPC, { RT, RA, RB } },
3412
7d5b217e
AM
3413{ "dlmzb", XRC(31,78,0), X_MASK, PPC403|PPC440, { RA, RS, RB } },
3414{ "dlmzb.", XRC(31,78,1), X_MASK, PPC403|PPC440, { RA, RS, RB } },
3415
f509565f
GK
3416{ "mtsrd", X(31,82), XRB_MASK|(1<<20), PPC64, { SR, RS } },
3417
252b5132
RH
3418{ "mfmsr", X(31,83), XRARB_MASK, COM, { RT } },
3419
fdd12ef3 3420{ "ldarx", X(31,84), X_MASK, PPC64, { RT, RA0, RB } },
252b5132
RH
3421
3422{ "dcbf", X(31,86), XRT_MASK, PPC, { RA, RB } },
3423
fdd12ef3 3424{ "lbzx", X(31,87), X_MASK, COM, { RT, RA0, RB } },
252b5132 3425
418c1742
MG
3426{ "dcbfe", X(31,94), XRT_MASK, BOOKE64, { RA, RB } },
3427
fdd12ef3 3428{ "lbzxe", X(31,95), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3429
252b5132
RH
3430{ "neg", XO(31,104,0,0), XORB_MASK, COM, { RT, RA } },
3431{ "neg.", XO(31,104,0,1), XORB_MASK, COM, { RT, RA } },
3432{ "nego", XO(31,104,1,0), XORB_MASK, COM, { RT, RA } },
3433{ "nego.", XO(31,104,1,1), XORB_MASK, COM, { RT, RA } },
3434
3435{ "mul", XO(31,107,0,0), XO_MASK, M601, { RT, RA, RB } },
3436{ "mul.", XO(31,107,0,1), XO_MASK, M601, { RT, RA, RB } },
3437{ "mulo", XO(31,107,1,0), XO_MASK, M601, { RT, RA, RB } },
3438{ "mulo.", XO(31,107,1,1), XO_MASK, M601, { RT, RA, RB } },
3439
f509565f
GK
3440{ "mtsrdin", X(31,114), XRA_MASK, PPC64, { RS, RB } },
3441
2dd46b8b 3442{ "clf", X(31,118), XTO_MASK, POWER, { RA, RB } },
252b5132
RH
3443
3444{ "lbzux", X(31,119), X_MASK, COM, { RT, RAL, RB } },
3445
1ed8e1e4
AM
3446{ "popcntb", X(31,122), XRB_MASK, POWER5, { RA, RS } },
3447
252b5132
RH
3448{ "not", XRC(31,124,0), X_MASK, COM, { RA, RS, RBS } },
3449{ "nor", XRC(31,124,0), X_MASK, COM, { RA, RS, RB } },
3450{ "not.", XRC(31,124,1), X_MASK, COM, { RA, RS, RBS } },
3451{ "nor.", XRC(31,124,1), X_MASK, COM, { RA, RS, RB } },
3452
fdd12ef3 3453{ "lwarxe", X(31,126), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742
MG
3454
3455{ "lbzuxe", X(31,127), X_MASK, BOOKE64, { RT, RAL, RB } },
3456
823bbe9d 3457{ "wrtee", X(31,131), XRARB_MASK, PPC403 | BOOKE, { RS } },
252b5132 3458
23976049
EZ
3459{ "dcbtstls",X(31,134), X_MASK, PPCCHLK, { CT, RA, RB }},
3460
252b5132
RH
3461{ "subfe", XO(31,136,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3462{ "sfe", XO(31,136,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3463{ "subfe.", XO(31,136,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3464{ "sfe.", XO(31,136,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3465{ "subfeo", XO(31,136,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3466{ "sfeo", XO(31,136,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3467{ "subfeo.", XO(31,136,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3468{ "sfeo.", XO(31,136,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3469
3470{ "adde", XO(31,138,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3471{ "ae", XO(31,138,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3472{ "adde.", XO(31,138,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3473{ "ae.", XO(31,138,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3474{ "addeo", XO(31,138,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3475{ "aeo", XO(31,138,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3476{ "addeo.", XO(31,138,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3477{ "aeo.", XO(31,138,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3478
dde1b132 3479{ "dcbtstlse",X(31,142),X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3480
98e69875
AM
3481{ "mtocrf", XFXM(31,144,0,1), XFXFXM_MASK, COM, { FXM, RS } },
3482{ "mtcr", XFXM(31,144,0xff,0), XRARB_MASK, COM, { RS }},
252b5132
RH
3483{ "mtcrf", X(31,144), XFXFXM_MASK, COM, { FXM, RS } },
3484
3485{ "mtmsr", X(31,146), XRARB_MASK, COM, { RS } },
3486
fdd12ef3 3487{ "stdx", X(31,149), X_MASK, PPC64, { RS, RA0, RB } },
252b5132 3488
fdd12ef3 3489{ "stwcx.", XRC(31,150,1), X_MASK, PPC, { RS, RA0, RB } },
252b5132 3490
fdd12ef3 3491{ "stwx", X(31,151), X_MASK, PPCCOM, { RS, RA0, RB } },
252b5132
RH
3492{ "stx", X(31,151), X_MASK, PWRCOM, { RS, RA, RB } },
3493
fdd12ef3 3494{ "stwcxe.", XRC(31,158,1), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3495
fdd12ef3 3496{ "stwxe", X(31,159), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3497
252b5132
RH
3498{ "slq", XRC(31,152,0), X_MASK, M601, { RA, RS, RB } },
3499{ "slq.", XRC(31,152,1), X_MASK, M601, { RA, RS, RB } },
3500
3501{ "sle", XRC(31,153,0), X_MASK, M601, { RA, RS, RB } },
3502{ "sle.", XRC(31,153,1), X_MASK, M601, { RA, RS, RB } },
3503
823bbe9d 3504{ "wrteei", X(31,163), XE_MASK, PPC403 | BOOKE, { E } },
252b5132 3505
23976049 3506{ "dcbtls", X(31,166), X_MASK, PPCCHLK, { CT, RA, RB }},
dde1b132 3507{ "dcbtlse", X(31,174), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3508
82674a1f 3509{ "mtmsrd", X(31,178), XRLARB_MASK, PPC64, { RS, MTMSRD_L } },
f509565f 3510
252b5132
RH
3511{ "stdux", X(31,181), X_MASK, PPC64, { RS, RAS, RB } },
3512
3513{ "stwux", X(31,183), X_MASK, PPCCOM, { RS, RAS, RB } },
fdd12ef3 3514{ "stux", X(31,183), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132
RH
3515
3516{ "sliq", XRC(31,184,0), X_MASK, M601, { RA, RS, SH } },
3517{ "sliq.", XRC(31,184,1), X_MASK, M601, { RA, RS, SH } },
3518
418c1742
MG
3519{ "stwuxe", X(31,191), X_MASK, BOOKE64, { RS, RAS, RB } },
3520
252b5132
RH
3521{ "subfze", XO(31,200,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3522{ "sfze", XO(31,200,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3523{ "subfze.", XO(31,200,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3524{ "sfze.", XO(31,200,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3525{ "subfzeo", XO(31,200,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3526{ "sfzeo", XO(31,200,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3527{ "subfzeo.",XO(31,200,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3528{ "sfzeo.", XO(31,200,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3529
3530{ "addze", XO(31,202,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3531{ "aze", XO(31,202,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3532{ "addze.", XO(31,202,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3533{ "aze.", XO(31,202,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3534{ "addzeo", XO(31,202,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3535{ "azeo", XO(31,202,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3536{ "addzeo.", XO(31,202,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3537{ "azeo.", XO(31,202,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3538
3539{ "mtsr", X(31,210), XRB_MASK|(1<<20), COM32, { SR, RS } },
3540
fdd12ef3 3541{ "stdcx.", XRC(31,214,1), X_MASK, PPC64, { RS, RA0, RB } },
252b5132 3542
fdd12ef3 3543{ "stbx", X(31,215), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
3544
3545{ "sllq", XRC(31,216,0), X_MASK, M601, { RA, RS, RB } },
3546{ "sllq.", XRC(31,216,1), X_MASK, M601, { RA, RS, RB } },
3547
3548{ "sleq", XRC(31,217,0), X_MASK, M601, { RA, RS, RB } },
3549{ "sleq.", XRC(31,217,1), X_MASK, M601, { RA, RS, RB } },
3550
fdd12ef3 3551{ "stbxe", X(31,223), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3552
23976049
EZ
3553{ "icblc", X(31,230), X_MASK, PPCCHLK, { CT, RA, RB }},
3554
252b5132
RH
3555{ "subfme", XO(31,232,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3556{ "sfme", XO(31,232,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3557{ "subfme.", XO(31,232,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3558{ "sfme.", XO(31,232,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3559{ "subfmeo", XO(31,232,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3560{ "sfmeo", XO(31,232,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3561{ "subfmeo.",XO(31,232,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3562{ "sfmeo.", XO(31,232,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3563
3564{ "mulld", XO(31,233,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3565{ "mulld.", XO(31,233,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3566{ "mulldo", XO(31,233,1,0), XO_MASK, PPC64, { RT, RA, RB } },
3567{ "mulldo.", XO(31,233,1,1), XO_MASK, PPC64, { RT, RA, RB } },
3568
3569{ "addme", XO(31,234,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3570{ "ame", XO(31,234,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3571{ "addme.", XO(31,234,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3572{ "ame.", XO(31,234,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3573{ "addmeo", XO(31,234,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3574{ "ameo", XO(31,234,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3575{ "addmeo.", XO(31,234,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3576{ "ameo.", XO(31,234,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3577
3578{ "mullw", XO(31,235,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3579{ "muls", XO(31,235,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3580{ "mullw.", XO(31,235,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3581{ "muls.", XO(31,235,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3582{ "mullwo", XO(31,235,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3583{ "mulso", XO(31,235,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3584{ "mullwo.", XO(31,235,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3585{ "mulso.", XO(31,235,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3586
dde1b132 3587{ "icblce", X(31,238), X_MASK, PPCCHLK64, { CT, RA, RB }},
252b5132
RH
3588{ "mtsrin", X(31,242), XRA_MASK, PPC32, { RS, RB } },
3589{ "mtsri", X(31,242), XRA_MASK, POWER32, { RS, RB } },
3590
e5d2b64f 3591{ "dcbtst", X(31,246), X_MASK, PPC, { CT, RA, RB } },
252b5132
RH
3592
3593{ "stbux", X(31,247), X_MASK, COM, { RS, RAS, RB } },
3594
3595{ "slliq", XRC(31,248,0), X_MASK, M601, { RA, RS, SH } },
3596{ "slliq.", XRC(31,248,1), X_MASK, M601, { RA, RS, SH } },
3597
418c1742
MG
3598{ "dcbtste", X(31,253), X_MASK, BOOKE64, { CT, RA, RB } },
3599
3600{ "stbuxe", X(31,255), X_MASK, BOOKE64, { RS, RAS, RB } },
3601
9fa87a06
MG
3602{ "mfdcrx", X(31,259), X_MASK, BOOKE, { RS, RA } },
3603
252b5132
RH
3604{ "doz", XO(31,264,0,0), XO_MASK, M601, { RT, RA, RB } },
3605{ "doz.", XO(31,264,0,1), XO_MASK, M601, { RT, RA, RB } },
3606{ "dozo", XO(31,264,1,0), XO_MASK, M601, { RT, RA, RB } },
3607{ "dozo.", XO(31,264,1,1), XO_MASK, M601, { RT, RA, RB } },
3608
3609{ "add", XO(31,266,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3610{ "cax", XO(31,266,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3611{ "add.", XO(31,266,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3612{ "cax.", XO(31,266,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3613{ "addo", XO(31,266,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3614{ "caxo", XO(31,266,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3615{ "addo.", XO(31,266,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3616{ "caxo.", XO(31,266,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3617
5e8cb021 3618{ "tlbiel", X(31,274), XRTLRA_MASK, POWER4, { RB, L } },
c1a34e60 3619
418c1742
MG
3620{ "mfapidi", X(31,275), X_MASK, BOOKE, { RT, RA } },
3621
252b5132
RH
3622{ "lscbx", XRC(31,277,0), X_MASK, M601, { RT, RA, RB } },
3623{ "lscbx.", XRC(31,277,1), X_MASK, M601, { RT, RA, RB } },
3624
e5d2b64f 3625{ "dcbt", X(31,278), X_MASK, PPC, { CT, RA, RB } },
252b5132 3626
fdd12ef3 3627{ "lhzx", X(31,279), X_MASK, COM, { RT, RA0, RB } },
252b5132 3628
252b5132
RH
3629{ "eqv", XRC(31,284,0), X_MASK, COM, { RA, RS, RB } },
3630{ "eqv.", XRC(31,284,1), X_MASK, COM, { RA, RS, RB } },
3631
418c1742
MG
3632{ "dcbte", X(31,286), X_MASK, BOOKE64, { CT, RA, RB } },
3633
fdd12ef3 3634{ "lhzxe", X(31,287), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3635
98acc1c5 3636{ "tlbie", X(31,306), XRTLRA_MASK, PPC, { RB, L } },
fdd12ef3 3637{ "tlbi", X(31,306), XRT_MASK, POWER, { RA0, RB } },
252b5132
RH
3638
3639{ "eciwx", X(31,310), X_MASK, PPC, { RT, RA, RB } },
3640
3641{ "lhzux", X(31,311), X_MASK, COM, { RT, RAL, RB } },
3642
3643{ "xor", XRC(31,316,0), X_MASK, COM, { RA, RS, RB } },
3644{ "xor.", XRC(31,316,1), X_MASK, COM, { RA, RS, RB } },
3645
418c1742
MG
3646{ "lhzuxe", X(31,319), X_MASK, BOOKE64, { RT, RAL, RB } },
3647
dde1b132
NC
3648{ "mfexisr", XSPR(31,323,64), XSPR_MASK, PPC403, { RT } },
3649{ "mfexier", XSPR(31,323,66), XSPR_MASK, PPC403, { RT } },
3650{ "mfbr0", XSPR(31,323,128), XSPR_MASK, PPC403, { RT } },
3651{ "mfbr1", XSPR(31,323,129), XSPR_MASK, PPC403, { RT } },
3652{ "mfbr2", XSPR(31,323,130), XSPR_MASK, PPC403, { RT } },
3653{ "mfbr3", XSPR(31,323,131), XSPR_MASK, PPC403, { RT } },
3654{ "mfbr4", XSPR(31,323,132), XSPR_MASK, PPC403, { RT } },
3655{ "mfbr5", XSPR(31,323,133), XSPR_MASK, PPC403, { RT } },
3656{ "mfbr6", XSPR(31,323,134), XSPR_MASK, PPC403, { RT } },
3657{ "mfbr7", XSPR(31,323,135), XSPR_MASK, PPC403, { RT } },
3658{ "mfbear", XSPR(31,323,144), XSPR_MASK, PPC403, { RT } },
3659{ "mfbesr", XSPR(31,323,145), XSPR_MASK, PPC403, { RT } },
3660{ "mfiocr", XSPR(31,323,160), XSPR_MASK, PPC403, { RT } },
252b5132
RH
3661{ "mfdmacr0", XSPR(31,323,192), XSPR_MASK, PPC403, { RT } },
3662{ "mfdmact0", XSPR(31,323,193), XSPR_MASK, PPC403, { RT } },
3663{ "mfdmada0", XSPR(31,323,194), XSPR_MASK, PPC403, { RT } },
3664{ "mfdmasa0", XSPR(31,323,195), XSPR_MASK, PPC403, { RT } },
3665{ "mfdmacc0", XSPR(31,323,196), XSPR_MASK, PPC403, { RT } },
3666{ "mfdmacr1", XSPR(31,323,200), XSPR_MASK, PPC403, { RT } },
3667{ "mfdmact1", XSPR(31,323,201), XSPR_MASK, PPC403, { RT } },
3668{ "mfdmada1", XSPR(31,323,202), XSPR_MASK, PPC403, { RT } },
3669{ "mfdmasa1", XSPR(31,323,203), XSPR_MASK, PPC403, { RT } },
3670{ "mfdmacc1", XSPR(31,323,204), XSPR_MASK, PPC403, { RT } },
3671{ "mfdmacr2", XSPR(31,323,208), XSPR_MASK, PPC403, { RT } },
3672{ "mfdmact2", XSPR(31,323,209), XSPR_MASK, PPC403, { RT } },
3673{ "mfdmada2", XSPR(31,323,210), XSPR_MASK, PPC403, { RT } },
3674{ "mfdmasa2", XSPR(31,323,211), XSPR_MASK, PPC403, { RT } },
3675{ "mfdmacc2", XSPR(31,323,212), XSPR_MASK, PPC403, { RT } },
3676{ "mfdmacr3", XSPR(31,323,216), XSPR_MASK, PPC403, { RT } },
3677{ "mfdmact3", XSPR(31,323,217), XSPR_MASK, PPC403, { RT } },
3678{ "mfdmada3", XSPR(31,323,218), XSPR_MASK, PPC403, { RT } },
3679{ "mfdmasa3", XSPR(31,323,219), XSPR_MASK, PPC403, { RT } },
3680{ "mfdmacc3", XSPR(31,323,220), XSPR_MASK, PPC403, { RT } },
dde1b132 3681{ "mfdmasr", XSPR(31,323,224), XSPR_MASK, PPC403, { RT } },
823bbe9d 3682{ "mfdcr", X(31,323), X_MASK, PPC403 | BOOKE, { RT, SPR } },
252b5132
RH
3683
3684{ "div", XO(31,331,0,0), XO_MASK, M601, { RT, RA, RB } },
3685{ "div.", XO(31,331,0,1), XO_MASK, M601, { RT, RA, RB } },
3686{ "divo", XO(31,331,1,0), XO_MASK, M601, { RT, RA, RB } },
3687{ "divo.", XO(31,331,1,1), XO_MASK, M601, { RT, RA, RB } },
3688
914749f6 3689{ "mfpmr", X(31,334), X_MASK, PPCPMR, { RT, PMR }},
23976049 3690
dde1b132
NC
3691{ "mfmq", XSPR(31,339,0), XSPR_MASK, M601, { RT } },
3692{ "mfxer", XSPR(31,339,1), XSPR_MASK, COM, { RT } },
3693{ "mfrtcu", XSPR(31,339,4), XSPR_MASK, COM, { RT } },
3694{ "mfrtcl", XSPR(31,339,5), XSPR_MASK, COM, { RT } },
3695{ "mfdec", XSPR(31,339,6), XSPR_MASK, MFDEC1, { RT } },
823bbe9d 3696{ "mfdec", XSPR(31,339,22), XSPR_MASK, MFDEC2, { RT } },
dde1b132
NC
3697{ "mflr", XSPR(31,339,8), XSPR_MASK, COM, { RT } },
3698{ "mfctr", XSPR(31,339,9), XSPR_MASK, COM, { RT } },
3699{ "mftid", XSPR(31,339,17), XSPR_MASK, POWER, { RT } },
3700{ "mfdsisr", XSPR(31,339,18), XSPR_MASK, COM, { RT } },
3701{ "mfdar", XSPR(31,339,19), XSPR_MASK, COM, { RT } },
dde1b132
NC
3702{ "mfsdr0", XSPR(31,339,24), XSPR_MASK, POWER, { RT } },
3703{ "mfsdr1", XSPR(31,339,25), XSPR_MASK, COM, { RT } },
3704{ "mfsrr0", XSPR(31,339,26), XSPR_MASK, COM, { RT } },
3705{ "mfsrr1", XSPR(31,339,27), XSPR_MASK, COM, { RT } },
3706{ "mfpid", XSPR(31,339,48), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3707{ "mfpid", XSPR(31,339,945), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3708{ "mfcsrr0", XSPR(31,339,58), XSPR_MASK, BOOKE, { RT } },
3709{ "mfcsrr1", XSPR(31,339,59), XSPR_MASK, BOOKE, { RT } },
3710{ "mfdear", XSPR(31,339,61), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3711{ "mfdear", XSPR(31,339,981), XSPR_MASK, PPC403, { RT } },
dde1b132 3712{ "mfesr", XSPR(31,339,62), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3713{ "mfesr", XSPR(31,339,980), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3714{ "mfivpr", XSPR(31,339,63), XSPR_MASK, BOOKE, { RT } },
3715{ "mfcmpa", XSPR(31,339,144), XSPR_MASK, PPC860, { RT } },
3716{ "mfcmpb", XSPR(31,339,145), XSPR_MASK, PPC860, { RT } },
3717{ "mfcmpc", XSPR(31,339,146), XSPR_MASK, PPC860, { RT } },
3718{ "mfcmpd", XSPR(31,339,147), XSPR_MASK, PPC860, { RT } },
3719{ "mficr", XSPR(31,339,148), XSPR_MASK, PPC860, { RT } },
3720{ "mfder", XSPR(31,339,149), XSPR_MASK, PPC860, { RT } },
3721{ "mfcounta", XSPR(31,339,150), XSPR_MASK, PPC860, { RT } },
3722{ "mfcountb", XSPR(31,339,151), XSPR_MASK, PPC860, { RT } },
3723{ "mfcmpe", XSPR(31,339,152), XSPR_MASK, PPC860, { RT } },
3724{ "mfcmpf", XSPR(31,339,153), XSPR_MASK, PPC860, { RT } },
3725{ "mfcmpg", XSPR(31,339,154), XSPR_MASK, PPC860, { RT } },
3726{ "mfcmph", XSPR(31,339,155), XSPR_MASK, PPC860, { RT } },
3727{ "mflctrl1", XSPR(31,339,156), XSPR_MASK, PPC860, { RT } },
3728{ "mflctrl2", XSPR(31,339,157), XSPR_MASK, PPC860, { RT } },
3729{ "mfictrl", XSPR(31,339,158), XSPR_MASK, PPC860, { RT } },
3730{ "mfbar", XSPR(31,339,159), XSPR_MASK, PPC860, { RT } },
3731{ "mfvrsave", XSPR(31,339,256), XSPR_MASK, PPCVEC, { RT } },
3732{ "mfusprg0", XSPR(31,339,256), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3733{ "mftb", X(31,371), X_MASK, CLASSIC, { RT, TBR } },
661bd698 3734{ "mftb", XSPR(31,339,268), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3735{ "mftbl", XSPR(31,371,268), XSPR_MASK, CLASSIC, { RT } },
661bd698 3736{ "mftbl", XSPR(31,339,268), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3737{ "mftbu", XSPR(31,371,269), XSPR_MASK, CLASSIC, { RT } },
661bd698 3738{ "mftbu", XSPR(31,339,269), XSPR_MASK, BOOKE, { RT } },
da99ee72 3739{ "mfsprg", XSPR(31,339,256), XSPRG_MASK, PPC, { RT, SPRG } },
dde1b132
NC
3740{ "mfsprg0", XSPR(31,339,272), XSPR_MASK, PPC, { RT } },
3741{ "mfsprg1", XSPR(31,339,273), XSPR_MASK, PPC, { RT } },
3742{ "mfsprg2", XSPR(31,339,274), XSPR_MASK, PPC, { RT } },
3743{ "mfsprg3", XSPR(31,339,275), XSPR_MASK, PPC, { RT } },
da99ee72
AM
3744{ "mfsprg4", XSPR(31,339,260), XSPR_MASK, PPC405 | BOOKE, { RT } },
3745{ "mfsprg5", XSPR(31,339,261), XSPR_MASK, PPC405 | BOOKE, { RT } },
3746{ "mfsprg6", XSPR(31,339,262), XSPR_MASK, PPC405 | BOOKE, { RT } },
3747{ "mfsprg7", XSPR(31,339,263), XSPR_MASK, PPC405 | BOOKE, { RT } },
dde1b132
NC
3748{ "mfasr", XSPR(31,339,280), XSPR_MASK, PPC64, { RT } },
3749{ "mfear", XSPR(31,339,282), XSPR_MASK, PPC, { RT } },
3750{ "mfpir", XSPR(31,339,286), XSPR_MASK, BOOKE, { RT } },
3751{ "mfpvr", XSPR(31,339,287), XSPR_MASK, PPC, { RT } },
3752{ "mfdbsr", XSPR(31,339,304), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3753{ "mfdbsr", XSPR(31,339,1008), XSPR_MASK, PPC403, { RT } },
dde1b132 3754{ "mfdbcr0", XSPR(31,339,308), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3755{ "mfdbcr0", XSPR(31,339,1010), XSPR_MASK, PPC405, { RT } },
dde1b132 3756{ "mfdbcr1", XSPR(31,339,309), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3757{ "mfdbcr1", XSPR(31,339,957), XSPR_MASK, PPC405, { RT } },
dde1b132
NC
3758{ "mfdbcr2", XSPR(31,339,310), XSPR_MASK, BOOKE, { RT } },
3759{ "mfiac1", XSPR(31,339,312), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3760{ "mfiac1", XSPR(31,339,1012), XSPR_MASK, PPC403, { RT } },
dde1b132 3761{ "mfiac2", XSPR(31,339,313), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3762{ "mfiac2", XSPR(31,339,1013), XSPR_MASK, PPC403, { RT } },
dde1b132 3763{ "mfiac3", XSPR(31,339,314), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3764{ "mfiac3", XSPR(31,339,948), XSPR_MASK, PPC405, { RT } },
dde1b132 3765{ "mfiac4", XSPR(31,339,315), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3766{ "mfiac4", XSPR(31,339,949), XSPR_MASK, PPC405, { RT } },
dde1b132 3767{ "mfdac1", XSPR(31,339,316), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3768{ "mfdac1", XSPR(31,339,1014), XSPR_MASK, PPC403, { RT } },
dde1b132 3769{ "mfdac2", XSPR(31,339,317), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3770{ "mfdac2", XSPR(31,339,1015), XSPR_MASK, PPC403, { RT } },
dde1b132 3771{ "mfdvc1", XSPR(31,339,318), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3772{ "mfdvc1", XSPR(31,339,950), XSPR_MASK, PPC405, { RT } },
dde1b132 3773{ "mfdvc2", XSPR(31,339,319), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3774{ "mfdvc2", XSPR(31,339,951), XSPR_MASK, PPC405, { RT } },
dde1b132 3775{ "mftsr", XSPR(31,339,336), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3776{ "mftsr", XSPR(31,339,984), XSPR_MASK, PPC403, { RT } },
dde1b132 3777{ "mftcr", XSPR(31,339,340), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3778{ "mftcr", XSPR(31,339,986), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3779{ "mfivor0", XSPR(31,339,400), XSPR_MASK, BOOKE, { RT } },
3780{ "mfivor1", XSPR(31,339,401), XSPR_MASK, BOOKE, { RT } },
3781{ "mfivor2", XSPR(31,339,402), XSPR_MASK, BOOKE, { RT } },
3782{ "mfivor3", XSPR(31,339,403), XSPR_MASK, BOOKE, { RT } },
3783{ "mfivor4", XSPR(31,339,404), XSPR_MASK, BOOKE, { RT } },
3784{ "mfivor5", XSPR(31,339,405), XSPR_MASK, BOOKE, { RT } },
3785{ "mfivor6", XSPR(31,339,406), XSPR_MASK, BOOKE, { RT } },
3786{ "mfivor7", XSPR(31,339,407), XSPR_MASK, BOOKE, { RT } },
3787{ "mfivor8", XSPR(31,339,408), XSPR_MASK, BOOKE, { RT } },
3788{ "mfivor9", XSPR(31,339,409), XSPR_MASK, BOOKE, { RT } },
3789{ "mfivor10", XSPR(31,339,410), XSPR_MASK, BOOKE, { RT } },
3790{ "mfivor11", XSPR(31,339,411), XSPR_MASK, BOOKE, { RT } },
3791{ "mfivor12", XSPR(31,339,412), XSPR_MASK, BOOKE, { RT } },
3792{ "mfivor13", XSPR(31,339,413), XSPR_MASK, BOOKE, { RT } },
3793{ "mfivor14", XSPR(31,339,414), XSPR_MASK, BOOKE, { RT } },
3794{ "mfivor15", XSPR(31,339,415), XSPR_MASK, BOOKE, { RT } },
3795{ "mfspefscr", XSPR(31,339,512), XSPR_MASK, PPCSPE, { RT } },
3796{ "mfbbear", XSPR(31,339,513), XSPR_MASK, PPCBRLK, { RT } },
914749f6 3797{ "mfbbtar", XSPR(31,339,514), XSPR_MASK, PPCBRLK, { RT } },
f0b26da6
AH
3798{ "mfivor32", XSPR(31,339,528), XSPR_MASK, PPCSPE, { RT } },
3799{ "mfivor33", XSPR(31,339,529), XSPR_MASK, PPCSPE, { RT } },
3800{ "mfivor34", XSPR(31,339,530), XSPR_MASK, PPCSPE, { RT } },
2f3b8700 3801{ "mfivor35", XSPR(31,339,531), XSPR_MASK, PPCPMR, { RT } },
dde1b132
NC
3802{ "mfibatu", XSPR(31,339,528), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3803{ "mfibatl", XSPR(31,339,529), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3804{ "mfdbatu", XSPR(31,339,536), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3805{ "mfdbatl", XSPR(31,339,537), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3806{ "mfic_cst", XSPR(31,339,560), XSPR_MASK, PPC860, { RT } },
3807{ "mfic_adr", XSPR(31,339,561), XSPR_MASK, PPC860, { RT } },
3808{ "mfic_dat", XSPR(31,339,562), XSPR_MASK, PPC860, { RT } },
3809{ "mfdc_cst", XSPR(31,339,568), XSPR_MASK, PPC860, { RT } },
3810{ "mfdc_adr", XSPR(31,339,569), XSPR_MASK, PPC860, { RT } },
dde1b132 3811{ "mfmcsrr0", XSPR(31,339,570), XSPR_MASK, PPCRFMCI, { RT } },
1f04b05f 3812{ "mfdc_dat", XSPR(31,339,570), XSPR_MASK, PPC860, { RT } },
dde1b132
NC
3813{ "mfmcsrr1", XSPR(31,339,571), XSPR_MASK, PPCRFMCI, { RT } },
3814{ "mfmcsr", XSPR(31,339,572), XSPR_MASK, PPCRFMCI, { RT } },
23d59c56 3815{ "mfmcar", XSPR(31,339,573), XSPR_MASK, PPCRFMCI, { RT } },
dde1b132
NC
3816{ "mfdpdr", XSPR(31,339,630), XSPR_MASK, PPC860, { RT } },
3817{ "mfdpir", XSPR(31,339,631), XSPR_MASK, PPC860, { RT } },
3818{ "mfimmr", XSPR(31,339,638), XSPR_MASK, PPC860, { RT } },
3819{ "mfmi_ctr", XSPR(31,339,784), XSPR_MASK, PPC860, { RT } },
3820{ "mfmi_ap", XSPR(31,339,786), XSPR_MASK, PPC860, { RT } },
3821{ "mfmi_epn", XSPR(31,339,787), XSPR_MASK, PPC860, { RT } },
3822{ "mfmi_twc", XSPR(31,339,789), XSPR_MASK, PPC860, { RT } },
3823{ "mfmi_rpn", XSPR(31,339,790), XSPR_MASK, PPC860, { RT } },
3824{ "mfmd_ctr", XSPR(31,339,792), XSPR_MASK, PPC860, { RT } },
3825{ "mfm_casid", XSPR(31,339,793), XSPR_MASK, PPC860, { RT } },
3826{ "mfmd_ap", XSPR(31,339,794), XSPR_MASK, PPC860, { RT } },
3827{ "mfmd_epn", XSPR(31,339,795), XSPR_MASK, PPC860, { RT } },
3828{ "mfmd_twb", XSPR(31,339,796), XSPR_MASK, PPC860, { RT } },
3829{ "mfmd_twc", XSPR(31,339,797), XSPR_MASK, PPC860, { RT } },
3830{ "mfmd_rpn", XSPR(31,339,798), XSPR_MASK, PPC860, { RT } },
3831{ "mfm_tw", XSPR(31,339,799), XSPR_MASK, PPC860, { RT } },
3832{ "mfmi_dbcam", XSPR(31,339,816), XSPR_MASK, PPC860, { RT } },
3833{ "mfmi_dbram0",XSPR(31,339,817), XSPR_MASK, PPC860, { RT } },
3834{ "mfmi_dbram1",XSPR(31,339,818), XSPR_MASK, PPC860, { RT } },
3835{ "mfmd_dbcam", XSPR(31,339,824), XSPR_MASK, PPC860, { RT } },
3836{ "mfmd_dbram0",XSPR(31,339,825), XSPR_MASK, PPC860, { RT } },
3837{ "mfmd_dbram1",XSPR(31,339,826), XSPR_MASK, PPC860, { RT } },
3838{ "mfummcr0", XSPR(31,339,936), XSPR_MASK, PPC750, { RT } },
3839{ "mfupmc1", XSPR(31,339,937), XSPR_MASK, PPC750, { RT } },
3840{ "mfupmc2", XSPR(31,339,938), XSPR_MASK, PPC750, { RT } },
3841{ "mfusia", XSPR(31,339,939), XSPR_MASK, PPC750, { RT } },
3842{ "mfummcr1", XSPR(31,339,940), XSPR_MASK, PPC750, { RT } },
3843{ "mfupmc3", XSPR(31,339,941), XSPR_MASK, PPC750, { RT } },
3844{ "mfupmc4", XSPR(31,339,942), XSPR_MASK, PPC750, { RT } },
3845{ "mfzpr", XSPR(31,339,944), XSPR_MASK, PPC403, { RT } },
dde1b132 3846{ "mfccr0", XSPR(31,339,947), XSPR_MASK, PPC405, { RT } },
252b5132
RH
3847{ "mfmmcr0", XSPR(31,339,952), XSPR_MASK, PPC750, { RT } },
3848{ "mfpmc1", XSPR(31,339,953), XSPR_MASK, PPC750, { RT } },
e0c21649 3849{ "mfsgr", XSPR(31,339,953), XSPR_MASK, PPC403, { RT } },
252b5132 3850{ "mfpmc2", XSPR(31,339,954), XSPR_MASK, PPC750, { RT } },
e0c21649 3851{ "mfdcwr", XSPR(31,339,954), XSPR_MASK, PPC403, { RT } },
252b5132 3852{ "mfsia", XSPR(31,339,955), XSPR_MASK, PPC750, { RT } },
e0c21649 3853{ "mfsler", XSPR(31,339,955), XSPR_MASK, PPC405, { RT } },
252b5132 3854{ "mfmmcr1", XSPR(31,339,956), XSPR_MASK, PPC750, { RT } },
e0c21649 3855{ "mfsu0r", XSPR(31,339,956), XSPR_MASK, PPC405, { RT } },
252b5132
RH
3856{ "mfpmc3", XSPR(31,339,957), XSPR_MASK, PPC750, { RT } },
3857{ "mfpmc4", XSPR(31,339,958), XSPR_MASK, PPC750, { RT } },
dde1b132 3858{ "mficdbdr", XSPR(31,339,979), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3859{ "mfevpr", XSPR(31,339,982), XSPR_MASK, PPC403, { RT } },
3860{ "mfcdbcr", XSPR(31,339,983), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3861{ "mfpit", XSPR(31,339,987), XSPR_MASK, PPC403, { RT } },
3862{ "mftbhi", XSPR(31,339,988), XSPR_MASK, PPC403, { RT } },
3863{ "mftblo", XSPR(31,339,989), XSPR_MASK, PPC403, { RT } },
3864{ "mfsrr2", XSPR(31,339,990), XSPR_MASK, PPC403, { RT } },
3865{ "mfsrr3", XSPR(31,339,991), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3866{ "mfl2cr", XSPR(31,339,1017), XSPR_MASK, PPC750, { RT } },
3867{ "mfdccr", XSPR(31,339,1018), XSPR_MASK, PPC403, { RT } },
3868{ "mficcr", XSPR(31,339,1019), XSPR_MASK, PPC403, { RT } },
3869{ "mfictc", XSPR(31,339,1019), XSPR_MASK, PPC750, { RT } },
3870{ "mfpbl1", XSPR(31,339,1020), XSPR_MASK, PPC403, { RT } },
3871{ "mfthrm1", XSPR(31,339,1020), XSPR_MASK, PPC750, { RT } },
3872{ "mfpbu1", XSPR(31,339,1021), XSPR_MASK, PPC403, { RT } },
3873{ "mfthrm2", XSPR(31,339,1021), XSPR_MASK, PPC750, { RT } },
3874{ "mfpbl2", XSPR(31,339,1022), XSPR_MASK, PPC403, { RT } },
3875{ "mfthrm3", XSPR(31,339,1022), XSPR_MASK, PPC750, { RT } },
3876{ "mfpbu2", XSPR(31,339,1023), XSPR_MASK, PPC403, { RT } },
3877{ "mfspr", X(31,339), X_MASK, COM, { RT, SPR } },
252b5132 3878
fdd12ef3 3879{ "lwax", X(31,341), X_MASK, PPC64, { RT, RA0, RB } },
252b5132 3880
f5c120c5
MG
3881{ "dst", XDSS(31,342,0), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3882{ "dstt", XDSS(31,342,1), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3883
fdd12ef3 3884{ "lhax", X(31,343), X_MASK, COM, { RT, RA0, RB } },
252b5132 3885
fdd12ef3 3886{ "lhaxe", X(31,351), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3887
f5c120c5
MG
3888{ "dstst", XDSS(31,374,0), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3889{ "dststt", XDSS(31,374,1), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3890
7d5b217e 3891{ "dccci", X(31,454), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132
RH
3892
3893{ "abs", XO(31,360,0,0), XORB_MASK, M601, { RT, RA } },
3894{ "abs.", XO(31,360,0,1), XORB_MASK, M601, { RT, RA } },
3895{ "abso", XO(31,360,1,0), XORB_MASK, M601, { RT, RA } },
3896{ "abso.", XO(31,360,1,1), XORB_MASK, M601, { RT, RA } },
3897
3898{ "divs", XO(31,363,0,0), XO_MASK, M601, { RT, RA, RB } },
3899{ "divs.", XO(31,363,0,1), XO_MASK, M601, { RT, RA, RB } },
3900{ "divso", XO(31,363,1,0), XO_MASK, M601, { RT, RA, RB } },
3901{ "divso.", XO(31,363,1,1), XO_MASK, M601, { RT, RA, RB } },
3902
3903{ "tlbia", X(31,370), 0xffffffff, PPC, { 0 } },
3904
252b5132
RH
3905{ "lwaux", X(31,373), X_MASK, PPC64, { RT, RAL, RB } },
3906
3907{ "lhaux", X(31,375), X_MASK, COM, { RT, RAL, RB } },
3908
418c1742
MG
3909{ "lhauxe", X(31,383), X_MASK, BOOKE64, { RT, RAL, RB } },
3910
9fa87a06
MG
3911{ "mtdcrx", X(31,387), X_MASK, BOOKE, { RA, RS } },
3912
23976049
EZ
3913{ "dcblc", X(31,390), X_MASK, PPCCHLK, { CT, RA, RB }},
3914
418c1742
MG
3915{ "subfe64", XO(31,392,0,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3916{ "subfe64o",XO(31,392,1,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3917
3918{ "adde64", XO(31,394,0,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3919{ "adde64o", XO(31,394,1,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3920
dde1b132 3921{ "dcblce", X(31,398), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3922
6ba045b1
AM
3923{ "slbmte", X(31,402), XRA_MASK, PPC64, { RS, RB } },
3924
fdd12ef3 3925{ "sthx", X(31,407), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
3926
3927{ "lfqx", X(31,791), X_MASK, POWER2, { FRT, RA, RB } },
3928
3929{ "lfqux", X(31,823), X_MASK, POWER2, { FRT, RA, RB } },
3930
3931{ "stfqx", X(31,919), X_MASK, POWER2, { FRS, RA, RB } },
3932
3933{ "stfqux", X(31,951), X_MASK, POWER2, { FRS, RA, RB } },
3934
3935{ "orc", XRC(31,412,0), X_MASK, COM, { RA, RS, RB } },
3936{ "orc.", XRC(31,412,1), X_MASK, COM, { RA, RS, RB } },
3937
3938{ "sradi", XS(31,413,0), XS_MASK, PPC64, { RA, RS, SH6 } },
3939{ "sradi.", XS(31,413,1), XS_MASK, PPC64, { RA, RS, SH6 } },
3940
fdd12ef3 3941{ "sthxe", X(31,415), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3942
252b5132
RH
3943{ "slbie", X(31,434), XRTRA_MASK, PPC64, { RB } },
3944
3945{ "ecowx", X(31,438), X_MASK, PPC, { RT, RA, RB } },
3946
3947{ "sthux", X(31,439), X_MASK, COM, { RS, RAS, RB } },
3948
418c1742
MG
3949{ "sthuxe", X(31,447), X_MASK, BOOKE64, { RS, RAS, RB } },
3950
252b5132
RH
3951{ "mr", XRC(31,444,0), X_MASK, COM, { RA, RS, RBS } },
3952{ "or", XRC(31,444,0), X_MASK, COM, { RA, RS, RB } },
3953{ "mr.", XRC(31,444,1), X_MASK, COM, { RA, RS, RBS } },
3954{ "or.", XRC(31,444,1), X_MASK, COM, { RA, RS, RB } },
3955
823bbe9d
AM
3956{ "mtexisr", XSPR(31,451,64), XSPR_MASK, PPC403, { RS } },
3957{ "mtexier", XSPR(31,451,66), XSPR_MASK, PPC403, { RS } },
3958{ "mtbr0", XSPR(31,451,128), XSPR_MASK, PPC403, { RS } },
3959{ "mtbr1", XSPR(31,451,129), XSPR_MASK, PPC403, { RS } },
3960{ "mtbr2", XSPR(31,451,130), XSPR_MASK, PPC403, { RS } },
3961{ "mtbr3", XSPR(31,451,131), XSPR_MASK, PPC403, { RS } },
3962{ "mtbr4", XSPR(31,451,132), XSPR_MASK, PPC403, { RS } },
3963{ "mtbr5", XSPR(31,451,133), XSPR_MASK, PPC403, { RS } },
3964{ "mtbr6", XSPR(31,451,134), XSPR_MASK, PPC403, { RS } },
3965{ "mtbr7", XSPR(31,451,135), XSPR_MASK, PPC403, { RS } },
3966{ "mtbear", XSPR(31,451,144), XSPR_MASK, PPC403, { RS } },
3967{ "mtbesr", XSPR(31,451,145), XSPR_MASK, PPC403, { RS } },
3968{ "mtiocr", XSPR(31,451,160), XSPR_MASK, PPC403, { RS } },
3969{ "mtdmacr0", XSPR(31,451,192), XSPR_MASK, PPC403, { RS } },
3970{ "mtdmact0", XSPR(31,451,193), XSPR_MASK, PPC403, { RS } },
3971{ "mtdmada0", XSPR(31,451,194), XSPR_MASK, PPC403, { RS } },
3972{ "mtdmasa0", XSPR(31,451,195), XSPR_MASK, PPC403, { RS } },
3973{ "mtdmacc0", XSPR(31,451,196), XSPR_MASK, PPC403, { RS } },
3974{ "mtdmacr1", XSPR(31,451,200), XSPR_MASK, PPC403, { RS } },
3975{ "mtdmact1", XSPR(31,451,201), XSPR_MASK, PPC403, { RS } },
3976{ "mtdmada1", XSPR(31,451,202), XSPR_MASK, PPC403, { RS } },
3977{ "mtdmasa1", XSPR(31,451,203), XSPR_MASK, PPC403, { RS } },
3978{ "mtdmacc1", XSPR(31,451,204), XSPR_MASK, PPC403, { RS } },
3979{ "mtdmacr2", XSPR(31,451,208), XSPR_MASK, PPC403, { RS } },
3980{ "mtdmact2", XSPR(31,451,209), XSPR_MASK, PPC403, { RS } },
3981{ "mtdmada2", XSPR(31,451,210), XSPR_MASK, PPC403, { RS } },
3982{ "mtdmasa2", XSPR(31,451,211), XSPR_MASK, PPC403, { RS } },
3983{ "mtdmacc2", XSPR(31,451,212), XSPR_MASK, PPC403, { RS } },
3984{ "mtdmacr3", XSPR(31,451,216), XSPR_MASK, PPC403, { RS } },
3985{ "mtdmact3", XSPR(31,451,217), XSPR_MASK, PPC403, { RS } },
3986{ "mtdmada3", XSPR(31,451,218), XSPR_MASK, PPC403, { RS } },
3987{ "mtdmasa3", XSPR(31,451,219), XSPR_MASK, PPC403, { RS } },
3988{ "mtdmacc3", XSPR(31,451,220), XSPR_MASK, PPC403, { RS } },
3989{ "mtdmasr", XSPR(31,451,224), XSPR_MASK, PPC403, { RS } },
3990{ "mtdcr", X(31,451), X_MASK, PPC403 | BOOKE, { SPR, RS } },
252b5132 3991
418c1742
MG
3992{ "subfze64",XO(31,456,0,0), XORB_MASK, BOOKE64, { RT, RA } },
3993{ "subfze64o",XO(31,456,1,0), XORB_MASK, BOOKE64, { RT, RA } },
3994
252b5132
RH
3995{ "divdu", XO(31,457,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3996{ "divdu.", XO(31,457,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3997{ "divduo", XO(31,457,1,0), XO_MASK, PPC64, { RT, RA, RB } },
3998{ "divduo.", XO(31,457,1,1), XO_MASK, PPC64, { RT, RA, RB } },
3999
418c1742
MG
4000{ "addze64", XO(31,458,0,0), XORB_MASK, BOOKE64, { RT, RA } },
4001{ "addze64o",XO(31,458,1,0), XORB_MASK, BOOKE64, { RT, RA } },
4002
252b5132
RH
4003{ "divwu", XO(31,459,0,0), XO_MASK, PPC, { RT, RA, RB } },
4004{ "divwu.", XO(31,459,0,1), XO_MASK, PPC, { RT, RA, RB } },
4005{ "divwuo", XO(31,459,1,0), XO_MASK, PPC, { RT, RA, RB } },
4006{ "divwuo.", XO(31,459,1,1), XO_MASK, PPC, { RT, RA, RB } },
4007
dde1b132
NC
4008{ "mtmq", XSPR(31,467,0), XSPR_MASK, M601, { RS } },
4009{ "mtxer", XSPR(31,467,1), XSPR_MASK, COM, { RS } },
4010{ "mtlr", XSPR(31,467,8), XSPR_MASK, COM, { RS } },
4011{ "mtctr", XSPR(31,467,9), XSPR_MASK, COM, { RS } },
4012{ "mttid", XSPR(31,467,17), XSPR_MASK, POWER, { RS } },
4013{ "mtdsisr", XSPR(31,467,18), XSPR_MASK, COM, { RS } },
4014{ "mtdar", XSPR(31,467,19), XSPR_MASK, COM, { RS } },
4015{ "mtrtcu", XSPR(31,467,20), XSPR_MASK, COM, { RS } },
4016{ "mtrtcl", XSPR(31,467,21), XSPR_MASK, COM, { RS } },
4017{ "mtdec", XSPR(31,467,22), XSPR_MASK, COM, { RS } },
4018{ "mtsdr0", XSPR(31,467,24), XSPR_MASK, POWER, { RS } },
4019{ "mtsdr1", XSPR(31,467,25), XSPR_MASK, COM, { RS } },
4020{ "mtsrr0", XSPR(31,467,26), XSPR_MASK, COM, { RS } },
4021{ "mtsrr1", XSPR(31,467,27), XSPR_MASK, COM, { RS } },
4022{ "mtpid", XSPR(31,467,48), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4023{ "mtpid", XSPR(31,467,945), XSPR_MASK, PPC403, { RS } },
dde1b132
NC
4024{ "mtdecar", XSPR(31,467,54), XSPR_MASK, BOOKE, { RS } },
4025{ "mtcsrr0", XSPR(31,467,58), XSPR_MASK, BOOKE, { RS } },
4026{ "mtcsrr1", XSPR(31,467,59), XSPR_MASK, BOOKE, { RS } },
4027{ "mtdear", XSPR(31,467,61), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4028{ "mtdear", XSPR(31,467,981), XSPR_MASK, PPC403, { RS } },
dde1b132 4029{ "mtesr", XSPR(31,467,62), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4030{ "mtesr", XSPR(31,467,980), XSPR_MASK, PPC403, { RS } },
dde1b132 4031{ "mtivpr", XSPR(31,467,63), XSPR_MASK, BOOKE, { RS } },
823bbe9d
AM
4032{ "mtcmpa", XSPR(31,467,144), XSPR_MASK, PPC860, { RS } },
4033{ "mtcmpb", XSPR(31,467,145), XSPR_MASK, PPC860, { RS } },
4034{ "mtcmpc", XSPR(31,467,146), XSPR_MASK, PPC860, { RS } },
4035{ "mtcmpd", XSPR(31,467,147), XSPR_MASK, PPC860, { RS } },
4036{ "mticr", XSPR(31,467,148), XSPR_MASK, PPC860, { RS } },
4037{ "mtder", XSPR(31,467,149), XSPR_MASK, PPC860, { RS } },
4038{ "mtcounta", XSPR(31,467,150), XSPR_MASK, PPC860, { RS } },
4039{ "mtcountb", XSPR(31,467,151), XSPR_MASK, PPC860, { RS } },
4040{ "mtcmpe", XSPR(31,467,152), XSPR_MASK, PPC860, { RS } },
4041{ "mtcmpf", XSPR(31,467,153), XSPR_MASK, PPC860, { RS } },
4042{ "mtcmpg", XSPR(31,467,154), XSPR_MASK, PPC860, { RS } },
4043{ "mtcmph", XSPR(31,467,155), XSPR_MASK, PPC860, { RS } },
4044{ "mtlctrl1", XSPR(31,467,156), XSPR_MASK, PPC860, { RS } },
4045{ "mtlctrl2", XSPR(31,467,157), XSPR_MASK, PPC860, { RS } },
4046{ "mtictrl", XSPR(31,467,158), XSPR_MASK, PPC860, { RS } },
4047{ "mtbar", XSPR(31,467,159), XSPR_MASK, PPC860, { RS } },
4048{ "mtvrsave", XSPR(31,467,256), XSPR_MASK, PPCVEC, { RS } },
dde1b132 4049{ "mtusprg0", XSPR(31,467,256), XSPR_MASK, BOOKE, { RS } },
da99ee72 4050{ "mtsprg", XSPR(31,467,256), XSPRG_MASK,PPC, { SPRG, RS } },
823bbe9d
AM
4051{ "mtsprg0", XSPR(31,467,272), XSPR_MASK, PPC, { RS } },
4052{ "mtsprg1", XSPR(31,467,273), XSPR_MASK, PPC, { RS } },
4053{ "mtsprg2", XSPR(31,467,274), XSPR_MASK, PPC, { RS } },
4054{ "mtsprg3", XSPR(31,467,275), XSPR_MASK, PPC, { RS } },
4055{ "mtsprg4", XSPR(31,467,276), XSPR_MASK, PPC405 | BOOKE, { RS } },
4056{ "mtsprg5", XSPR(31,467,277), XSPR_MASK, PPC405 | BOOKE, { RS } },
4057{ "mtsprg6", XSPR(31,467,278), XSPR_MASK, PPC405 | BOOKE, { RS } },
4058{ "mtsprg7", XSPR(31,467,279), XSPR_MASK, PPC405 | BOOKE, { RS } },
dde1b132
NC
4059{ "mtasr", XSPR(31,467,280), XSPR_MASK, PPC64, { RS } },
4060{ "mtear", XSPR(31,467,282), XSPR_MASK, PPC, { RS } },
4061{ "mttbl", XSPR(31,467,284), XSPR_MASK, PPC, { RS } },
4062{ "mttbu", XSPR(31,467,285), XSPR_MASK, PPC, { RS } },
4063{ "mtdbsr", XSPR(31,467,304), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4064{ "mtdbsr", XSPR(31,467,1008), XSPR_MASK, PPC403, { RS } },
dde1b132 4065{ "mtdbcr0", XSPR(31,467,308), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4066{ "mtdbcr0", XSPR(31,467,1010), XSPR_MASK, PPC405, { RS } },
dde1b132 4067{ "mtdbcr1", XSPR(31,467,309), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4068{ "mtdbcr1", XSPR(31,467,957), XSPR_MASK, PPC405, { RS } },
dde1b132
NC
4069{ "mtdbcr2", XSPR(31,467,310), XSPR_MASK, BOOKE, { RS } },
4070{ "mtiac1", XSPR(31,467,312), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4071{ "mtiac1", XSPR(31,467,1012), XSPR_MASK, PPC403, { RS } },
dde1b132 4072{ "mtiac2", XSPR(31,467,313), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4073{ "mtiac2", XSPR(31,467,1013), XSPR_MASK, PPC403, { RS } },
dde1b132 4074{ "mtiac3", XSPR(31,467,314), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4075{ "mtiac3", XSPR(31,467,948), XSPR_MASK, PPC405, { RS } },
dde1b132 4076{ "mtiac4", XSPR(31,467,315), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4077{ "mtiac4", XSPR(31,467,949), XSPR_MASK, PPC405, { RS } },
dde1b132 4078{ "mtdac1", XSPR(31,467,316), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4079{ "mtdac1", XSPR(31,467,1014), XSPR_MASK, PPC403, { RS } },
dde1b132 4080{ "mtdac2", XSPR(31,467,317), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4081{ "mtdac2", XSPR(31,467,1015), XSPR_MASK, PPC403, { RS } },
dde1b132 4082{ "mtdvc1", XSPR(31,467,318), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4083{ "mtdvc1", XSPR(31,467,950), XSPR_MASK, PPC405, { RS } },
dde1b132 4084{ "mtdvc2", XSPR(31,467,319), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4085{ "mtdvc2", XSPR(31,467,951), XSPR_MASK, PPC405, { RS } },
dde1b132 4086{ "mttsr", XSPR(31,467,336), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4087{ "mttsr", XSPR(31,467,984), XSPR_MASK, PPC403, { RS } },
dde1b132 4088{ "mttcr", XSPR(31,467,340), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4089{ "mttcr", XSPR(31,467,986), XSPR_MASK, PPC403, { RS } },
dde1b132
NC
4090{ "mtivor0", XSPR(31,467,400), XSPR_MASK, BOOKE, { RS } },
4091{ "mtivor1", XSPR(31,467,401), XSPR_MASK, BOOKE, { RS } },
4092{ "mtivor2", XSPR(31,467,402), XSPR_MASK, BOOKE, { RS } },
4093{ "mtivor3", XSPR(31,467,403), XSPR_MASK, BOOKE, { RS } },
4094{ "mtivor4", XSPR(31,467,404), XSPR_MASK, BOOKE, { RS } },
4095{ "mtivor5", XSPR(31,467,405), XSPR_MASK, BOOKE, { RS } },
4096{ "mtivor6", XSPR(31,467,406), XSPR_MASK, BOOKE, { RS } },
4097{ "mtivor7", XSPR(31,467,407), XSPR_MASK, BOOKE, { RS } },
4098{ "mtivor8", XSPR(31,467,408), XSPR_MASK, BOOKE, { RS } },
4099{ "mtivor9", XSPR(31,467,409), XSPR_MASK, BOOKE, { RS } },
4100{ "mtivor10", XSPR(31,467,410), XSPR_MASK, BOOKE, { RS } },
4101{ "mtivor11", XSPR(31,467,411), XSPR_MASK, BOOKE, { RS } },
4102{ "mtivor12", XSPR(31,467,412), XSPR_MASK, BOOKE, { RS } },
4103{ "mtivor13", XSPR(31,467,413), XSPR_MASK, BOOKE, { RS } },
4104{ "mtivor14", XSPR(31,467,414), XSPR_MASK, BOOKE, { RS } },
4105{ "mtivor15", XSPR(31,467,415), XSPR_MASK, BOOKE, { RS } },
42a2f80a 4106{ "mtspefscr", XSPR(31,467,512), XSPR_MASK, PPCSPE, { RS } },
dde1b132 4107{ "mtbbear", XSPR(31,467,513), XSPR_MASK, PPCBRLK, { RS } },
914749f6 4108{ "mtbbtar", XSPR(31,467,514), XSPR_MASK, PPCBRLK, { RS } },
f0b26da6
AH
4109{ "mtivor32", XSPR(31,467,528), XSPR_MASK, PPCSPE, { RS } },
4110{ "mtivor33", XSPR(31,467,529), XSPR_MASK, PPCSPE, { RS } },
4111{ "mtivor34", XSPR(31,467,530), XSPR_MASK, PPCSPE, { RS } },
2f3b8700 4112{ "mtivor35", XSPR(31,467,531), XSPR_MASK, PPCPMR, { RS } },
dde1b132
NC
4113{ "mtibatu", XSPR(31,467,528), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4114{ "mtibatl", XSPR(31,467,529), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4115{ "mtdbatu", XSPR(31,467,536), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4116{ "mtdbatl", XSPR(31,467,537), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4117{ "mtmcsrr0", XSPR(31,467,570), XSPR_MASK, PPCRFMCI, { RS } },
4118{ "mtmcsrr1", XSPR(31,467,571), XSPR_MASK, PPCRFMCI, { RS } },
4119{ "mtmcsr", XSPR(31,467,572), XSPR_MASK, PPCRFMCI, { RS } },
823bbe9d
AM
4120{ "mtummcr0", XSPR(31,467,936), XSPR_MASK, PPC750, { RS } },
4121{ "mtupmc1", XSPR(31,467,937), XSPR_MASK, PPC750, { RS } },
4122{ "mtupmc2", XSPR(31,467,938), XSPR_MASK, PPC750, { RS } },
4123{ "mtusia", XSPR(31,467,939), XSPR_MASK, PPC750, { RS } },
4124{ "mtummcr1", XSPR(31,467,940), XSPR_MASK, PPC750, { RS } },
4125{ "mtupmc3", XSPR(31,467,941), XSPR_MASK, PPC750, { RS } },
4126{ "mtupmc4", XSPR(31,467,942), XSPR_MASK, PPC750, { RS } },
4127{ "mtzpr", XSPR(31,467,944), XSPR_MASK, PPC403, { RS } },
4128{ "mtccr0", XSPR(31,467,947), XSPR_MASK, PPC405, { RS } },
4129{ "mtmmcr0", XSPR(31,467,952), XSPR_MASK, PPC750, { RS } },
4130{ "mtsgr", XSPR(31,467,953), XSPR_MASK, PPC403, { RS } },
4131{ "mtpmc1", XSPR(31,467,953), XSPR_MASK, PPC750, { RS } },
4132{ "mtdcwr", XSPR(31,467,954), XSPR_MASK, PPC403, { RS } },
4133{ "mtpmc2", XSPR(31,467,954), XSPR_MASK, PPC750, { RS } },
4134{ "mtsler", XSPR(31,467,955), XSPR_MASK, PPC405, { RS } },
4135{ "mtsia", XSPR(31,467,955), XSPR_MASK, PPC750, { RS } },
4136{ "mtsu0r", XSPR(31,467,956), XSPR_MASK, PPC405, { RS } },
4137{ "mtmmcr1", XSPR(31,467,956), XSPR_MASK, PPC750, { RS } },
4138{ "mtpmc3", XSPR(31,467,957), XSPR_MASK, PPC750, { RS } },
4139{ "mtpmc4", XSPR(31,467,958), XSPR_MASK, PPC750, { RS } },
4140{ "mticdbdr", XSPR(31,467,979), XSPR_MASK, PPC403, { RS } },
4141{ "mtevpr", XSPR(31,467,982), XSPR_MASK, PPC403, { RS } },
4142{ "mtcdbcr", XSPR(31,467,983), XSPR_MASK, PPC403, { RS } },
4143{ "mtpit", XSPR(31,467,987), XSPR_MASK, PPC403, { RS } },
4144{ "mttbhi", XSPR(31,467,988), XSPR_MASK, PPC403, { RS } },
4145{ "mttblo", XSPR(31,467,989), XSPR_MASK, PPC403, { RS } },
4146{ "mtsrr2", XSPR(31,467,990), XSPR_MASK, PPC403, { RS } },
4147{ "mtsrr3", XSPR(31,467,991), XSPR_MASK, PPC403, { RS } },
4148{ "mtl2cr", XSPR(31,467,1017), XSPR_MASK, PPC750, { RS } },
4149{ "mtdccr", XSPR(31,467,1018), XSPR_MASK, PPC403, { RS } },
4150{ "mticcr", XSPR(31,467,1019), XSPR_MASK, PPC403, { RS } },
4151{ "mtictc", XSPR(31,467,1019), XSPR_MASK, PPC750, { RS } },
4152{ "mtpbl1", XSPR(31,467,1020), XSPR_MASK, PPC403, { RS } },
4153{ "mtthrm1", XSPR(31,467,1020), XSPR_MASK, PPC750, { RS } },
4154{ "mtpbu1", XSPR(31,467,1021), XSPR_MASK, PPC403, { RS } },
4155{ "mtthrm2", XSPR(31,467,1021), XSPR_MASK, PPC750, { RS } },
4156{ "mtpbl2", XSPR(31,467,1022), XSPR_MASK, PPC403, { RS } },
4157{ "mtthrm3", XSPR(31,467,1022), XSPR_MASK, PPC750, { RS } },
4158{ "mtpbu2", XSPR(31,467,1023), XSPR_MASK, PPC403, { RS } },
dde1b132 4159{ "mtspr", X(31,467), X_MASK, COM, { SPR, RS } },
252b5132
RH
4160
4161{ "dcbi", X(31,470), XRT_MASK, PPC, { RA, RB } },
4162
4163{ "nand", XRC(31,476,0), X_MASK, COM, { RA, RS, RB } },
4164{ "nand.", XRC(31,476,1), X_MASK, COM, { RA, RS, RB } },
4165
418c1742
MG
4166{ "dcbie", X(31,478), XRT_MASK, BOOKE64, { RA, RB } },
4167
7d5b217e 4168{ "dcread", X(31,486), X_MASK, PPC403|PPC440, { RT, RA, RB }},
252b5132 4169
914749f6 4170{ "mtpmr", X(31,462), X_MASK, PPCPMR, { PMR, RS }},
23976049
EZ
4171
4172{ "icbtls", X(31,486), X_MASK, PPCCHLK, { CT, RA, RB }},
4173
252b5132 4174{ "nabs", XO(31,488,0,0), XORB_MASK, M601, { RT, RA } },
418c1742 4175{ "subfme64",XO(31,488,0,0), XORB_MASK, BOOKE64, { RT, RA } },
252b5132
RH
4176{ "nabs.", XO(31,488,0,1), XORB_MASK, M601, { RT, RA } },
4177{ "nabso", XO(31,488,1,0), XORB_MASK, M601, { RT, RA } },
418c1742 4178{ "subfme64o",XO(31,488,1,0), XORB_MASK, BOOKE64, { RT, RA } },
252b5132
RH
4179{ "nabso.", XO(31,488,1,1), XORB_MASK, M601, { RT, RA } },
4180
4181{ "divd", XO(31,489,0,0), XO_MASK, PPC64, { RT, RA, RB } },
4182{ "divd.", XO(31,489,0,1), XO_MASK, PPC64, { RT, RA, RB } },
4183{ "divdo", XO(31,489,1,0), XO_MASK, PPC64, { RT, RA, RB } },
4184{ "divdo.", XO(31,489,1,1), XO_MASK, PPC64, { RT, RA, RB } },
4185
418c1742
MG
4186{ "addme64", XO(31,490,0,0), XORB_MASK, BOOKE64, { RT, RA } },
4187{ "addme64o",XO(31,490,1,0), XORB_MASK, BOOKE64, { RT, RA } },
4188
252b5132
RH
4189{ "divw", XO(31,491,0,0), XO_MASK, PPC, { RT, RA, RB } },
4190{ "divw.", XO(31,491,0,1), XO_MASK, PPC, { RT, RA, RB } },
4191{ "divwo", XO(31,491,1,0), XO_MASK, PPC, { RT, RA, RB } },
4192{ "divwo.", XO(31,491,1,1), XO_MASK, PPC, { RT, RA, RB } },
4193
dde1b132 4194{ "icbtlse", X(31,494), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 4195
252b5132
RH
4196{ "slbia", X(31,498), 0xffffffff, PPC64, { 0 } },
4197
4198{ "cli", X(31,502), XRB_MASK, POWER, { RT, RA } },
4199
418c1742
MG
4200{ "stdcxe.", XRC(31,511,1), X_MASK, BOOKE64, { RS, RA, RB } },
4201
252b5132
RH
4202{ "mcrxr", X(31,512), XRARB_MASK|(3<<21), COM, { BF } },
4203
23976049 4204{ "bblels", X(31,518), X_MASK, PPCBRLK, { 0 }},
dde1b132 4205{ "mcrxr64", X(31,544), XRARB_MASK|(3<<21), BOOKE64, { BF } },
418c1742 4206
252b5132
RH
4207{ "clcs", X(31,531), XRB_MASK, M601, { RT, RA } },
4208
fdd12ef3 4209{ "lswx", X(31,533), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
4210{ "lsx", X(31,533), X_MASK, PWRCOM, { RT, RA, RB } },
4211
fdd12ef3 4212{ "lwbrx", X(31,534), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
4213{ "lbrx", X(31,534), X_MASK, PWRCOM, { RT, RA, RB } },
4214
fdd12ef3 4215{ "lfsx", X(31,535), X_MASK, COM, { FRT, RA0, RB } },
252b5132
RH
4216
4217{ "srw", XRC(31,536,0), X_MASK, PPCCOM, { RA, RS, RB } },
4218{ "sr", XRC(31,536,0), X_MASK, PWRCOM, { RA, RS, RB } },
4219{ "srw.", XRC(31,536,1), X_MASK, PPCCOM, { RA, RS, RB } },
4220{ "sr.", XRC(31,536,1), X_MASK, PWRCOM, { RA, RS, RB } },
4221
4222{ "rrib", XRC(31,537,0), X_MASK, M601, { RA, RS, RB } },
4223{ "rrib.", XRC(31,537,1), X_MASK, M601, { RA, RS, RB } },
4224
4225{ "srd", XRC(31,539,0), X_MASK, PPC64, { RA, RS, RB } },
4226{ "srd.", XRC(31,539,1), X_MASK, PPC64, { RA, RS, RB } },
4227
4228{ "maskir", XRC(31,541,0), X_MASK, M601, { RA, RS, RB } },
4229{ "maskir.", XRC(31,541,1), X_MASK, M601, { RA, RS, RB } },
4230
fdd12ef3 4231{ "lwbrxe", X(31,542), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4232
fdd12ef3 4233{ "lfsxe", X(31,543), X_MASK, BOOKE64, { FRT, RA0, RB } },
418c1742 4234
23976049 4235{ "bbelr", X(31,550), X_MASK, PPCBRLK, { 0 }},
fdd12ef3 4236
252b5132
RH
4237{ "tlbsync", X(31,566), 0xffffffff, PPC, { 0 } },
4238
4239{ "lfsux", X(31,567), X_MASK, COM, { FRT, RAS, RB } },
4240
418c1742
MG
4241{ "lfsuxe", X(31,575), X_MASK, BOOKE64, { FRT, RAS, RB } },
4242
252b5132
RH
4243{ "mfsr", X(31,595), XRB_MASK|(1<<20), COM32, { RT, SR } },
4244
fdd12ef3
AM
4245{ "lswi", X(31,597), X_MASK, PPCCOM, { RT, RA0, NB } },
4246{ "lsi", X(31,597), X_MASK, PWRCOM, { RT, RA0, NB } },
252b5132 4247
661bd698 4248{ "lwsync", XSYNC(31,598,1), 0xffffffff, PPC, { 0 } },
6ba045b1 4249{ "ptesync", XSYNC(31,598,2), 0xffffffff, PPC64, { 0 } },
b6be6416 4250{ "msync", X(31,598), 0xffffffff, BOOKE, { 0 } },
6ba045b1 4251{ "sync", X(31,598), XSYNC_MASK, PPCCOM, { LS } },
252b5132
RH
4252{ "dcs", X(31,598), 0xffffffff, PWRCOM, { 0 } },
4253
fdd12ef3 4254{ "lfdx", X(31,599), X_MASK, COM, { FRT, RA0, RB } },
252b5132 4255
fdd12ef3 4256{ "lfdxe", X(31,607), X_MASK, BOOKE64, { FRT, RA0, RB } },
418c1742 4257
252b5132
RH
4258{ "mfsri", X(31,627), X_MASK, PWRCOM, { RT, RA, RB } },
4259
4260{ "dclst", X(31,630), XRB_MASK, PWRCOM, { RS, RA } },
4261
4262{ "lfdux", X(31,631), X_MASK, COM, { FRT, RAS, RB } },
4263
418c1742
MG
4264{ "lfduxe", X(31,639), X_MASK, BOOKE64, { FRT, RAS, RB } },
4265
252b5132
RH
4266{ "mfsrin", X(31,659), XRA_MASK, PPC32, { RT, RB } },
4267
fdd12ef3
AM
4268{ "stswx", X(31,661), X_MASK, PPCCOM, { RS, RA0, RB } },
4269{ "stsx", X(31,661), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132 4270
fdd12ef3
AM
4271{ "stwbrx", X(31,662), X_MASK, PPCCOM, { RS, RA0, RB } },
4272{ "stbrx", X(31,662), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132 4273
fdd12ef3 4274{ "stfsx", X(31,663), X_MASK, COM, { FRS, RA0, RB } },
252b5132
RH
4275
4276{ "srq", XRC(31,664,0), X_MASK, M601, { RA, RS, RB } },
4277{ "srq.", XRC(31,664,1), X_MASK, M601, { RA, RS, RB } },
4278
4279{ "sre", XRC(31,665,0), X_MASK, M601, { RA, RS, RB } },
4280{ "sre.", XRC(31,665,1), X_MASK, M601, { RA, RS, RB } },
4281
fdd12ef3 4282{ "stwbrxe", X(31,670), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4283
fdd12ef3
AM
4284{ "stfsxe", X(31,671), X_MASK, BOOKE64, { FRS, RA0, RB } },
4285
252b5132
RH
4286{ "stfsux", X(31,695), X_MASK, COM, { FRS, RAS, RB } },
4287
4288{ "sriq", XRC(31,696,0), X_MASK, M601, { RA, RS, SH } },
4289{ "sriq.", XRC(31,696,1), X_MASK, M601, { RA, RS, SH } },
4290
418c1742
MG
4291{ "stfsuxe", X(31,703), X_MASK, BOOKE64, { FRS, RAS, RB } },
4292
fdd12ef3
AM
4293{ "stswi", X(31,725), X_MASK, PPCCOM, { RS, RA0, NB } },
4294{ "stsi", X(31,725), X_MASK, PWRCOM, { RS, RA0, NB } },
252b5132 4295
fdd12ef3 4296{ "stfdx", X(31,727), X_MASK, COM, { FRS, RA0, RB } },
252b5132
RH
4297
4298{ "srlq", XRC(31,728,0), X_MASK, M601, { RA, RS, RB } },
4299{ "srlq.", XRC(31,728,1), X_MASK, M601, { RA, RS, RB } },
4300
4301{ "sreq", XRC(31,729,0), X_MASK, M601, { RA, RS, RB } },
4302{ "sreq.", XRC(31,729,1), X_MASK, M601, { RA, RS, RB } },
4303
fdd12ef3
AM
4304{ "stfdxe", X(31,735), X_MASK, BOOKE64, { FRS, RA0, RB } },
4305
823bbe9d 4306{ "dcba", X(31,758), XRT_MASK, PPC405 | BOOKE, { RA, RB } },
e0c21649 4307
252b5132
RH
4308{ "stfdux", X(31,759), X_MASK, COM, { FRS, RAS, RB } },
4309
4310{ "srliq", XRC(31,760,0), X_MASK, M601, { RA, RS, SH } },
4311{ "srliq.", XRC(31,760,1), X_MASK, M601, { RA, RS, SH } },
4312
418c1742
MG
4313{ "dcbae", X(31,766), XRT_MASK, BOOKE64, { RA, RB } },
4314
4315{ "stfduxe", X(31,767), X_MASK, BOOKE64, { FRS, RAS, RB } },
4316
4317{ "tlbivax", X(31,786), XRT_MASK, BOOKE, { RA, RB } },
dde1b132 4318{ "tlbivaxe",X(31,787), XRT_MASK, BOOKE64, { RA, RB } },
418c1742 4319
fdd12ef3 4320{ "lhbrx", X(31,790), X_MASK, COM, { RT, RA0, RB } },
252b5132
RH
4321
4322{ "sraw", XRC(31,792,0), X_MASK, PPCCOM, { RA, RS, RB } },
4323{ "sra", XRC(31,792,0), X_MASK, PWRCOM, { RA, RS, RB } },
4324{ "sraw.", XRC(31,792,1), X_MASK, PPCCOM, { RA, RS, RB } },
4325{ "sra.", XRC(31,792,1), X_MASK, PWRCOM, { RA, RS, RB } },
4326
4327{ "srad", XRC(31,794,0), X_MASK, PPC64, { RA, RS, RB } },
4328{ "srad.", XRC(31,794,1), X_MASK, PPC64, { RA, RS, RB } },
4329
fdd12ef3 4330{ "lhbrxe", X(31,798), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4331
fdd12ef3
AM
4332{ "ldxe", X(31,799), X_MASK, BOOKE64, { RT, RA0, RB } },
4333{ "lduxe", X(31,831), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4334
252b5132
RH
4335{ "rac", X(31,818), X_MASK, PWRCOM, { RT, RA, RB } },
4336
f5c120c5 4337{ "dss", XDSS(31,822,0), XDSS_MASK, PPCVEC, { STRM } },
eb0fdfed 4338{ "dssall", XDSS(31,822,1), XDSS_MASK, PPCVEC, { 0 } },
f5c120c5 4339
252b5132
RH
4340{ "srawi", XRC(31,824,0), X_MASK, PPCCOM, { RA, RS, SH } },
4341{ "srai", XRC(31,824,0), X_MASK, PWRCOM, { RA, RS, SH } },
4342{ "srawi.", XRC(31,824,1), X_MASK, PPCCOM, { RA, RS, SH } },
4343{ "srai.", XRC(31,824,1), X_MASK, PWRCOM, { RA, RS, SH } },
4344
6ba045b1
AM
4345{ "slbmfev", X(31,851), XRA_MASK, PPC64, { RT, RB } },
4346
b6be6416 4347{ "mbar", X(31,854), X_MASK, BOOKE, { MO } },
252b5132
RH
4348{ "eieio", X(31,854), 0xffffffff, PPC, { 0 } },
4349
eed0d89a
AM
4350{ "tlbsx", XRC(31,914,0), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4351{ "tlbsx.", XRC(31,914,1), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
dde1b132
NC
4352{ "tlbsxe", XRC(31,915,0), X_MASK, BOOKE64, { RA, RB } },
4353{ "tlbsxe.", XRC(31,915,1), X_MASK, BOOKE64, { RA, RB } },
418c1742 4354
6ba045b1
AM
4355{ "slbmfee", X(31,915), XRA_MASK, PPC64, { RT, RB } },
4356
fdd12ef3 4357{ "sthbrx", X(31,918), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
4358
4359{ "sraq", XRC(31,920,0), X_MASK, M601, { RA, RS, RB } },
4360{ "sraq.", XRC(31,920,1), X_MASK, M601, { RA, RS, RB } },
4361
4362{ "srea", XRC(31,921,0), X_MASK, M601, { RA, RS, RB } },
4363{ "srea.", XRC(31,921,1), X_MASK, M601, { RA, RS, RB } },
4364
4365{ "extsh", XRC(31,922,0), XRB_MASK, PPCCOM, { RA, RS } },
4366{ "exts", XRC(31,922,0), XRB_MASK, PWRCOM, { RA, RS } },
4367{ "extsh.", XRC(31,922,1), XRB_MASK, PPCCOM, { RA, RS } },
4368{ "exts.", XRC(31,922,1), XRB_MASK, PWRCOM, { RA, RS } },
4369
fdd12ef3 4370{ "sthbrxe", X(31,926), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4371
fdd12ef3 4372{ "stdxe", X(31,927), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4373
e0c21649
GK
4374{ "tlbrehi", XTLB(31,946,0), XTLB_MASK, PPC403, { RT, RA } },
4375{ "tlbrelo", XTLB(31,946,1), XTLB_MASK, PPC403, { RT, RA } },
eed0d89a 4376{ "tlbre", X(31,946), X_MASK, PPC403|BOOKE, { RSO, RAOPT, SHO } },
252b5132
RH
4377
4378{ "sraiq", XRC(31,952,0), X_MASK, M601, { RA, RS, SH } },
4379{ "sraiq.", XRC(31,952,1), X_MASK, M601, { RA, RS, SH } },
4380
4381{ "extsb", XRC(31,954,0), XRB_MASK, PPC, { RA, RS} },
4382{ "extsb.", XRC(31,954,1), XRB_MASK, PPC, { RA, RS} },
4383
418c1742
MG
4384{ "stduxe", X(31,959), X_MASK, BOOKE64, { RS, RAS, RB } },
4385
7d5b217e 4386{ "iccci", X(31,966), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132 4387
e0c21649
GK
4388{ "tlbwehi", XTLB(31,978,0), XTLB_MASK, PPC403, { RT, RA } },
4389{ "tlbwelo", XTLB(31,978,1), XTLB_MASK, PPC403, { RT, RA } },
fdd12ef3 4390{ "tlbwe", X(31,978), X_MASK, PPC403|BOOKE, { RSO, RAOPT, SHO } },
823bbe9d 4391{ "tlbld", X(31,978), XRTRA_MASK, PPC, { RB } },
252b5132
RH
4392
4393{ "icbi", X(31,982), XRT_MASK, PPC, { RA, RB } },
4394
fdd12ef3 4395{ "stfiwx", X(31,983), X_MASK, PPC, { FRS, RA0, RB } },
252b5132 4396
dde1b132
NC
4397{ "extsw", XRC(31,986,0), XRB_MASK, PPC64 | BOOKE64,{ RA, RS } },
4398{ "extsw.", XRC(31,986,1), XRB_MASK, PPC64, { RA, RS } },
252b5132 4399
7d5b217e 4400{ "icread", X(31,998), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132 4401
418c1742 4402{ "icbie", X(31,990), XRT_MASK, BOOKE64, { RA, RB } },
fdd12ef3 4403{ "stfiwxe", X(31,991), X_MASK, BOOKE64, { FRS, RA0, RB } },
418c1742 4404
252b5132
RH
4405{ "tlbli", X(31,1010), XRTRA_MASK, PPC, { RB } },
4406
f3806e43 4407{ "dcbzl", XOPL(31,1014,1), XRT_MASK,POWER4, { RA, RB } },
252b5132
RH
4408{ "dcbz", X(31,1014), XRT_MASK, PPC, { RA, RB } },
4409{ "dclz", X(31,1014), XRT_MASK, PPC, { RA, RB } },
4410
418c1742
MG
4411{ "dcbze", X(31,1022), XRT_MASK, BOOKE64, { RA, RB } },
4412
786e2c0f
C
4413{ "lvebx", X(31, 7), X_MASK, PPCVEC, { VD, RA, RB } },
4414{ "lvehx", X(31, 39), X_MASK, PPCVEC, { VD, RA, RB } },
4415{ "lvewx", X(31, 71), X_MASK, PPCVEC, { VD, RA, RB } },
4416{ "lvsl", X(31, 6), X_MASK, PPCVEC, { VD, RA, RB } },
4417{ "lvsr", X(31, 38), X_MASK, PPCVEC, { VD, RA, RB } },
4418{ "lvx", X(31, 103), X_MASK, PPCVEC, { VD, RA, RB } },
4419{ "lvxl", X(31, 359), X_MASK, PPCVEC, { VD, RA, RB } },
4420{ "stvebx", X(31, 135), X_MASK, PPCVEC, { VS, RA, RB } },
4421{ "stvehx", X(31, 167), X_MASK, PPCVEC, { VS, RA, RB } },
4422{ "stvewx", X(31, 199), X_MASK, PPCVEC, { VS, RA, RB } },
4423{ "stvx", X(31, 231), X_MASK, PPCVEC, { VS, RA, RB } },
4424{ "stvxl", X(31, 487), X_MASK, PPCVEC, { VS, RA, RB } },
4425
fdd12ef3
AM
4426{ "lwz", OP(32), OP_MASK, PPCCOM, { RT, D, RA0 } },
4427{ "l", OP(32), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132
RH
4428
4429{ "lwzu", OP(33), OP_MASK, PPCCOM, { RT, D, RAL } },
fdd12ef3 4430{ "lu", OP(33), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132 4431
fdd12ef3 4432{ "lbz", OP(34), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4433
4434{ "lbzu", OP(35), OP_MASK, COM, { RT, D, RAL } },
4435
fdd12ef3
AM
4436{ "stw", OP(36), OP_MASK, PPCCOM, { RS, D, RA0 } },
4437{ "st", OP(36), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132
RH
4438
4439{ "stwu", OP(37), OP_MASK, PPCCOM, { RS, D, RAS } },
fdd12ef3 4440{ "stu", OP(37), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132 4441
fdd12ef3 4442{ "stb", OP(38), OP_MASK, COM, { RS, D, RA0 } },
252b5132
RH
4443
4444{ "stbu", OP(39), OP_MASK, COM, { RS, D, RAS } },
4445
fdd12ef3 4446{ "lhz", OP(40), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4447
4448{ "lhzu", OP(41), OP_MASK, COM, { RT, D, RAL } },
4449
fdd12ef3 4450{ "lha", OP(42), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4451
4452{ "lhau", OP(43), OP_MASK, COM, { RT, D, RAL } },
4453
fdd12ef3 4454{ "sth", OP(44), OP_MASK, COM, { RS, D, RA0 } },
252b5132
RH
4455
4456{ "sthu", OP(45), OP_MASK, COM, { RS, D, RAS } },
4457
4458{ "lmw", OP(46), OP_MASK, PPCCOM, { RT, D, RAM } },
fdd12ef3 4459{ "lm", OP(46), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132 4460
fdd12ef3
AM
4461{ "stmw", OP(47), OP_MASK, PPCCOM, { RS, D, RA0 } },
4462{ "stm", OP(47), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132 4463
fdd12ef3 4464{ "lfs", OP(48), OP_MASK, COM, { FRT, D, RA0 } },
252b5132
RH
4465
4466{ "lfsu", OP(49), OP_MASK, COM, { FRT, D, RAS } },
4467
fdd12ef3 4468{ "lfd", OP(50), OP_MASK, COM, { FRT, D, RA0 } },
252b5132
RH
4469
4470{ "lfdu", OP(51), OP_MASK, COM, { FRT, D, RAS } },
4471
fdd12ef3 4472{ "stfs", OP(52), OP_MASK, COM, { FRS, D, RA0 } },
252b5132
RH
4473
4474{ "stfsu", OP(53), OP_MASK, COM, { FRS, D, RAS } },
4475
fdd12ef3 4476{ "stfd", OP(54), OP_MASK, COM, { FRS, D, RA0 } },
252b5132
RH
4477
4478{ "stfdu", OP(55), OP_MASK, COM, { FRS, D, RAS } },
4479
adadcc0c
AM
4480{ "lq", OP(56), OP_MASK, POWER4, { RTQ, DQ, RAQ } },
4481
fdd12ef3 4482{ "lfq", OP(56), OP_MASK, POWER2, { FRT, D, RA0 } },
252b5132 4483
fdd12ef3 4484{ "lfqu", OP(57), OP_MASK, POWER2, { FRT, D, RA0 } },
252b5132 4485
fdd12ef3 4486{ "lbze", DEO(58,0), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4487{ "lbzue", DEO(58,1), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4488{ "lhze", DEO(58,2), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4489{ "lhzue", DEO(58,3), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4490{ "lhae", DEO(58,4), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4491{ "lhaue", DEO(58,5), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4492{ "lwze", DEO(58,6), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4493{ "lwzue", DEO(58,7), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4494{ "stbe", DEO(58,8), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742 4495{ "stbue", DEO(58,9), DE_MASK, BOOKE64, { RS, DE, RAS } },
fdd12ef3 4496{ "sthe", DEO(58,10), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742 4497{ "sthue", DEO(58,11), DE_MASK, BOOKE64, { RS, DE, RAS } },
fdd12ef3 4498{ "stwe", DEO(58,14), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742
MG
4499{ "stwue", DEO(58,15), DE_MASK, BOOKE64, { RS, DE, RAS } },
4500
fdd12ef3 4501{ "ld", DSO(58,0), DS_MASK, PPC64, { RT, DS, RA0 } },
802a735e
AM
4502
4503{ "ldu", DSO(58,1), DS_MASK, PPC64, { RT, DS, RAL } },
4504
fdd12ef3
AM
4505{ "lwa", DSO(58,2), DS_MASK, PPC64, { RT, DS, RA0 } },
4506
252b5132
RH
4507{ "fdivs", A(59,18,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4508{ "fdivs.", A(59,18,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4509
4510{ "fsubs", A(59,20,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4511{ "fsubs.", A(59,20,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4512
4513{ "fadds", A(59,21,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4514{ "fadds.", A(59,21,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4515
4516{ "fsqrts", A(59,22,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4517{ "fsqrts.", A(59,22,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4518
4519{ "fres", A(59,24,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4520{ "fres.", A(59,24,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4521
4522{ "fmuls", A(59,25,0), AFRB_MASK, PPC, { FRT, FRA, FRC } },
4523{ "fmuls.", A(59,25,1), AFRB_MASK, PPC, { FRT, FRA, FRC } },
4524
ce7a772b
AM
4525{ "frsqrtes", A(59,26,0), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4526{ "frsqrtes.",A(59,26,1), AFRAFRC_MASK, POWER5, { FRT, FRB } },
1ed8e1e4 4527
252b5132
RH
4528{ "fmsubs", A(59,28,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4529{ "fmsubs.", A(59,28,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4530
4531{ "fmadds", A(59,29,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4532{ "fmadds.", A(59,29,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4533
4534{ "fnmsubs", A(59,30,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4535{ "fnmsubs.",A(59,30,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4536
4537{ "fnmadds", A(59,31,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4538{ "fnmadds.",A(59,31,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4539
4540{ "stfq", OP(60), OP_MASK, POWER2, { FRS, D, RA } },
4541
4542{ "stfqu", OP(61), OP_MASK, POWER2, { FRS, D, RA } },
4543
fdd12ef3
AM
4544{ "lde", DEO(62,0), DE_MASK, BOOKE64, { RT, DES, RA0 } },
4545{ "ldue", DEO(62,1), DE_MASK, BOOKE64, { RT, DES, RA0 } },
4546{ "lfse", DEO(62,4), DE_MASK, BOOKE64, { FRT, DES, RA0 } },
418c1742 4547{ "lfsue", DEO(62,5), DE_MASK, BOOKE64, { FRT, DES, RAS } },
fdd12ef3 4548{ "lfde", DEO(62,6), DE_MASK, BOOKE64, { FRT, DES, RA0 } },
418c1742 4549{ "lfdue", DEO(62,7), DE_MASK, BOOKE64, { FRT, DES, RAS } },
fdd12ef3 4550{ "stde", DEO(62,8), DE_MASK, BOOKE64, { RS, DES, RA0 } },
418c1742 4551{ "stdue", DEO(62,9), DE_MASK, BOOKE64, { RS, DES, RAS } },
fdd12ef3 4552{ "stfse", DEO(62,12), DE_MASK, BOOKE64, { FRS, DES, RA0 } },
418c1742 4553{ "stfsue", DEO(62,13), DE_MASK, BOOKE64, { FRS, DES, RAS } },
fdd12ef3 4554{ "stfde", DEO(62,14), DE_MASK, BOOKE64, { FRS, DES, RA0 } },
418c1742
MG
4555{ "stfdue", DEO(62,15), DE_MASK, BOOKE64, { FRS, DES, RAS } },
4556
fdd12ef3 4557{ "std", DSO(62,0), DS_MASK, PPC64, { RS, DS, RA0 } },
802a735e
AM
4558
4559{ "stdu", DSO(62,1), DS_MASK, PPC64, { RS, DS, RAS } },
4560
fdd12ef3
AM
4561{ "stq", DSO(62,2), DS_MASK, POWER4, { RSQ, DS, RA0 } },
4562
252b5132
RH
4563{ "fcmpu", X(63,0), X_MASK|(3<<21), COM, { BF, FRA, FRB } },
4564
4565{ "frsp", XRC(63,12,0), XRA_MASK, COM, { FRT, FRB } },
4566{ "frsp.", XRC(63,12,1), XRA_MASK, COM, { FRT, FRB } },
4567
4568{ "fctiw", XRC(63,14,0), XRA_MASK, PPCCOM, { FRT, FRB } },
4569{ "fcir", XRC(63,14,0), XRA_MASK, POWER2, { FRT, FRB } },
4570{ "fctiw.", XRC(63,14,1), XRA_MASK, PPCCOM, { FRT, FRB } },
4571{ "fcir.", XRC(63,14,1), XRA_MASK, POWER2, { FRT, FRB } },
4572
4573{ "fctiwz", XRC(63,15,0), XRA_MASK, PPCCOM, { FRT, FRB } },
4574{ "fcirz", XRC(63,15,0), XRA_MASK, POWER2, { FRT, FRB } },
4575{ "fctiwz.", XRC(63,15,1), XRA_MASK, PPCCOM, { FRT, FRB } },
4576{ "fcirz.", XRC(63,15,1), XRA_MASK, POWER2, { FRT, FRB } },
4577
4578{ "fdiv", A(63,18,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4579{ "fd", A(63,18,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4580{ "fdiv.", A(63,18,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4581{ "fd.", A(63,18,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4582
4583{ "fsub", A(63,20,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4584{ "fs", A(63,20,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4585{ "fsub.", A(63,20,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4586{ "fs.", A(63,20,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4587
4588{ "fadd", A(63,21,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4589{ "fa", A(63,21,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4590{ "fadd.", A(63,21,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4591{ "fa.", A(63,21,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4592
4593{ "fsqrt", A(63,22,0), AFRAFRC_MASK, PPCPWR2, { FRT, FRB } },
4594{ "fsqrt.", A(63,22,1), AFRAFRC_MASK, PPCPWR2, { FRT, FRB } },
4595
4596{ "fsel", A(63,23,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4597{ "fsel.", A(63,23,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4598
1ed8e1e4
AM
4599{ "fre", A(63,24,0), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4600{ "fre.", A(63,24,1), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4601
252b5132
RH
4602{ "fmul", A(63,25,0), AFRB_MASK, PPCCOM, { FRT, FRA, FRC } },
4603{ "fm", A(63,25,0), AFRB_MASK, PWRCOM, { FRT, FRA, FRC } },
4604{ "fmul.", A(63,25,1), AFRB_MASK, PPCCOM, { FRT, FRA, FRC } },
4605{ "fm.", A(63,25,1), AFRB_MASK, PWRCOM, { FRT, FRA, FRC } },
4606
4607{ "frsqrte", A(63,26,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4608{ "frsqrte.",A(63,26,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4609
4610{ "fmsub", A(63,28,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4611{ "fms", A(63,28,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4612{ "fmsub.", A(63,28,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4613{ "fms.", A(63,28,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4614
4615{ "fmadd", A(63,29,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4616{ "fma", A(63,29,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4617{ "fmadd.", A(63,29,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4618{ "fma.", A(63,29,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4619
4620{ "fnmsub", A(63,30,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4621{ "fnms", A(63,30,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4622{ "fnmsub.", A(63,30,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4623{ "fnms.", A(63,30,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4624
4625{ "fnmadd", A(63,31,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4626{ "fnma", A(63,31,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4627{ "fnmadd.", A(63,31,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4628{ "fnma.", A(63,31,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4629
4630{ "fcmpo", X(63,32), X_MASK|(3<<21), COM, { BF, FRA, FRB } },
4631
4632{ "mtfsb1", XRC(63,38,0), XRARB_MASK, COM, { BT } },
4633{ "mtfsb1.", XRC(63,38,1), XRARB_MASK, COM, { BT } },
4634
4635{ "fneg", XRC(63,40,0), XRA_MASK, COM, { FRT, FRB } },
4636{ "fneg.", XRC(63,40,1), XRA_MASK, COM, { FRT, FRB } },
4637
4638{ "mcrfs", X(63,64), XRB_MASK|(3<<21)|(3<<16), COM, { BF, BFA } },
4639
4640{ "mtfsb0", XRC(63,70,0), XRARB_MASK, COM, { BT } },
4641{ "mtfsb0.", XRC(63,70,1), XRARB_MASK, COM, { BT } },
4642
4643{ "fmr", XRC(63,72,0), XRA_MASK, COM, { FRT, FRB } },
4644{ "fmr.", XRC(63,72,1), XRA_MASK, COM, { FRT, FRB } },
4645
4646{ "mtfsfi", XRC(63,134,0), XRA_MASK|(3<<21)|(1<<11), COM, { BF, U } },
4647{ "mtfsfi.", XRC(63,134,1), XRA_MASK|(3<<21)|(1<<11), COM, { BF, U } },
4648
4649{ "fnabs", XRC(63,136,0), XRA_MASK, COM, { FRT, FRB } },
4650{ "fnabs.", XRC(63,136,1), XRA_MASK, COM, { FRT, FRB } },
4651
4652{ "fabs", XRC(63,264,0), XRA_MASK, COM, { FRT, FRB } },
4653{ "fabs.", XRC(63,264,1), XRA_MASK, COM, { FRT, FRB } },
4654
ce7a772b
AM
4655{ "frin", XRC(63,392,0), XRA_MASK, POWER5, { FRT, FRB } },
4656{ "frin.", XRC(63,392,1), XRA_MASK, POWER5, { FRT, FRB } },
4657{ "friz", XRC(63,424,0), XRA_MASK, POWER5, { FRT, FRB } },
4658{ "friz.", XRC(63,424,1), XRA_MASK, POWER5, { FRT, FRB } },
4659{ "frip", XRC(63,456,0), XRA_MASK, POWER5, { FRT, FRB } },
4660{ "frip.", XRC(63,456,1), XRA_MASK, POWER5, { FRT, FRB } },
4661{ "frim", XRC(63,488,0), XRA_MASK, POWER5, { FRT, FRB } },
4662{ "frim.", XRC(63,488,1), XRA_MASK, POWER5, { FRT, FRB } },
4663
252b5132
RH
4664{ "mffs", XRC(63,583,0), XRARB_MASK, COM, { FRT } },
4665{ "mffs.", XRC(63,583,1), XRARB_MASK, COM, { FRT } },
4666
4667{ "mtfsf", XFL(63,711,0), XFL_MASK, COM, { FLM, FRB } },
4668{ "mtfsf.", XFL(63,711,1), XFL_MASK, COM, { FLM, FRB } },
4669
4670{ "fctid", XRC(63,814,0), XRA_MASK, PPC64, { FRT, FRB } },
4671{ "fctid.", XRC(63,814,1), XRA_MASK, PPC64, { FRT, FRB } },
4672
4673{ "fctidz", XRC(63,815,0), XRA_MASK, PPC64, { FRT, FRB } },
4674{ "fctidz.", XRC(63,815,1), XRA_MASK, PPC64, { FRT, FRB } },
4675
4676{ "fcfid", XRC(63,846,0), XRA_MASK, PPC64, { FRT, FRB } },
4677{ "fcfid.", XRC(63,846,1), XRA_MASK, PPC64, { FRT, FRB } },
4678
4679};
4680
4681const int powerpc_num_opcodes =
4682 sizeof (powerpc_opcodes) / sizeof (powerpc_opcodes[0]);
4683\f
4684/* The macro table. This is only used by the assembler. */
4685
4686/* The expressions of the form (-x ! 31) & (x | 31) have the value 0
4687 when x=0; 32-x when x is between 1 and 31; are negative if x is
4688 negative; and are 32 or more otherwise. This is what you want
4689 when, for instance, you are emulating a right shift by a
4690 rotate-left-and-mask, because the underlying instructions support
4691 shifts of size 0 but not shifts of size 32. By comparison, when
4692 extracting x bits from some word you want to use just 32-x, because
4693 the underlying instructions don't support extracting 0 bits but do
4694 support extracting the whole word (32 bits in this case). */
4695
4696const struct powerpc_macro powerpc_macros[] = {
4697{ "extldi", 4, PPC64, "rldicr %0,%1,%3,(%2)-1" },
4698{ "extldi.", 4, PPC64, "rldicr. %0,%1,%3,(%2)-1" },
4699{ "extrdi", 4, PPC64, "rldicl %0,%1,(%2)+(%3),64-(%2)" },
4700{ "extrdi.", 4, PPC64, "rldicl. %0,%1,(%2)+(%3),64-(%2)" },
4701{ "insrdi", 4, PPC64, "rldimi %0,%1,64-((%2)+(%3)),%3" },
4702{ "insrdi.", 4, PPC64, "rldimi. %0,%1,64-((%2)+(%3)),%3" },
4703{ "rotrdi", 3, PPC64, "rldicl %0,%1,(-(%2)!63)&((%2)|63),0" },
4704{ "rotrdi.", 3, PPC64, "rldicl. %0,%1,(-(%2)!63)&((%2)|63),0" },
4705{ "sldi", 3, PPC64, "rldicr %0,%1,%2,63-(%2)" },
4706{ "sldi.", 3, PPC64, "rldicr. %0,%1,%2,63-(%2)" },
4707{ "srdi", 3, PPC64, "rldicl %0,%1,(-(%2)!63)&((%2)|63),%2" },
4708{ "srdi.", 3, PPC64, "rldicl. %0,%1,(-(%2)!63)&((%2)|63),%2" },
4709{ "clrrdi", 3, PPC64, "rldicr %0,%1,0,63-(%2)" },
4710{ "clrrdi.", 3, PPC64, "rldicr. %0,%1,0,63-(%2)" },
4711{ "clrlsldi",4, PPC64, "rldic %0,%1,%3,(%2)-(%3)" },
4712{ "clrlsldi.",4, PPC64, "rldic. %0,%1,%3,(%2)-(%3)" },
4713
4714{ "extlwi", 4, PPCCOM, "rlwinm %0,%1,%3,0,(%2)-1" },
4715{ "extlwi.", 4, PPCCOM, "rlwinm. %0,%1,%3,0,(%2)-1" },
29ef7e54
AM
4716{ "extrwi", 4, PPCCOM, "rlwinm %0,%1,((%2)+(%3))&((%2)+(%3)<>32),32-(%2),31" },
4717{ "extrwi.", 4, PPCCOM, "rlwinm. %0,%1,((%2)+(%3))&((%2)+(%3)<>32),32-(%2),31" },
252b5132
RH
4718{ "inslwi", 4, PPCCOM, "rlwimi %0,%1,(-(%3)!31)&((%3)|31),%3,(%2)+(%3)-1" },
4719{ "inslwi.", 4, PPCCOM, "rlwimi. %0,%1,(-(%3)!31)&((%3)|31),%3,(%2)+(%3)-1"},
4720{ "insrwi", 4, PPCCOM, "rlwimi %0,%1,32-((%2)+(%3)),%3,(%2)+(%3)-1" },
4721{ "insrwi.", 4, PPCCOM, "rlwimi. %0,%1,32-((%2)+(%3)),%3,(%2)+(%3)-1"},
4722{ "rotrwi", 3, PPCCOM, "rlwinm %0,%1,(-(%2)!31)&((%2)|31),0,31" },
4723{ "rotrwi.", 3, PPCCOM, "rlwinm. %0,%1,(-(%2)!31)&((%2)|31),0,31" },
4724{ "slwi", 3, PPCCOM, "rlwinm %0,%1,%2,0,31-(%2)" },
4725{ "sli", 3, PWRCOM, "rlinm %0,%1,%2,0,31-(%2)" },
4726{ "slwi.", 3, PPCCOM, "rlwinm. %0,%1,%2,0,31-(%2)" },
4727{ "sli.", 3, PWRCOM, "rlinm. %0,%1,%2,0,31-(%2)" },
4728{ "srwi", 3, PPCCOM, "rlwinm %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4729{ "sri", 3, PWRCOM, "rlinm %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4730{ "srwi.", 3, PPCCOM, "rlwinm. %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4731{ "sri.", 3, PWRCOM, "rlinm. %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4732{ "clrrwi", 3, PPCCOM, "rlwinm %0,%1,0,0,31-(%2)" },
4733{ "clrrwi.", 3, PPCCOM, "rlwinm. %0,%1,0,0,31-(%2)" },
4734{ "clrlslwi",4, PPCCOM, "rlwinm %0,%1,%3,(%2)-(%3),31-(%3)" },
4735{ "clrlslwi.",4, PPCCOM, "rlwinm. %0,%1,%3,(%2)-(%3),31-(%3)" },
252b5132
RH
4736};
4737
4738const int powerpc_num_macros =
4739 sizeof (powerpc_macros) / sizeof (powerpc_macros[0]);
This page took 0.660272 seconds and 4 git commands to generate.