* h8300-dis.c (bfd_h8_disassemble): Add missing consts.
[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
ede602d7 1826#define CELL PPC_OPCODE_CELL
661bd698
AM
1827#define PPC32 PPC_OPCODE_32 | PPC_OPCODE_PPC
1828#define PPC64 PPC_OPCODE_64 | PPC_OPCODE_PPC
418c1742 1829#define PPC403 PPC_OPCODE_403
e0c21649 1830#define PPC405 PPC403
7d5b217e 1831#define PPC440 PPC_OPCODE_440
252b5132
RH
1832#define PPC750 PPC
1833#define PPC860 PPC
a404d431 1834#define PPCVEC PPC_OPCODE_ALTIVEC
661bd698
AM
1835#define POWER PPC_OPCODE_POWER
1836#define POWER2 PPC_OPCODE_POWER | PPC_OPCODE_POWER2
1837#define PPCPWR2 PPC_OPCODE_PPC | PPC_OPCODE_POWER | PPC_OPCODE_POWER2
1838#define POWER32 PPC_OPCODE_POWER | PPC_OPCODE_32
1839#define COM PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON
1840#define COM32 PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON | PPC_OPCODE_32
1841#define M601 PPC_OPCODE_POWER | PPC_OPCODE_601
1842#define PWRCOM PPC_OPCODE_POWER | PPC_OPCODE_601 | PPC_OPCODE_COMMON
252b5132 1843#define MFDEC1 PPC_OPCODE_POWER
dde1b132 1844#define MFDEC2 PPC_OPCODE_PPC | PPC_OPCODE_601 | PPC_OPCODE_BOOKE
418c1742
MG
1845#define BOOKE PPC_OPCODE_BOOKE
1846#define BOOKE64 PPC_OPCODE_BOOKE64
23976049 1847#define CLASSIC PPC_OPCODE_CLASSIC
36ae0db3 1848#define PPCE300 PPC_OPCODE_E300
23976049
EZ
1849#define PPCSPE PPC_OPCODE_SPE
1850#define PPCISEL PPC_OPCODE_ISEL
1851#define PPCEFS PPC_OPCODE_EFS
1852#define PPCBRLK PPC_OPCODE_BRLOCK
1853#define PPCPMR PPC_OPCODE_PMR
1854#define PPCCHLK PPC_OPCODE_CACHELCK
dde1b132 1855#define PPCCHLK64 PPC_OPCODE_CACHELCK | PPC_OPCODE_BOOKE64
23976049 1856#define PPCRFMCI PPC_OPCODE_RFMCI
252b5132
RH
1857\f
1858/* The opcode table.
1859
1860 The format of the opcode table is:
1861
1862 NAME OPCODE MASK FLAGS { OPERANDS }
1863
1864 NAME is the name of the instruction.
1865 OPCODE is the instruction opcode.
1866 MASK is the opcode mask; this is used to tell the disassembler
1867 which bits in the actual opcode must match OPCODE.
1868 FLAGS are flags indicated what processors support the instruction.
1869 OPERANDS is the list of operands.
1870
1871 The disassembler reads the table in order and prints the first
1872 instruction which matches, so this table is sorted to put more
1873 specific instructions before more general instructions. It is also
1874 sorted by major opcode. */
1875
1876const struct powerpc_opcode powerpc_opcodes[] = {
adadcc0c 1877{ "attn", X(0,256), X_MASK, POWER4, { 0 } },
252b5132
RH
1878{ "tdlgti", OPTO(2,TOLGT), OPTO_MASK, PPC64, { RA, SI } },
1879{ "tdllti", OPTO(2,TOLLT), OPTO_MASK, PPC64, { RA, SI } },
1880{ "tdeqi", OPTO(2,TOEQ), OPTO_MASK, PPC64, { RA, SI } },
1881{ "tdlgei", OPTO(2,TOLGE), OPTO_MASK, PPC64, { RA, SI } },
1882{ "tdlnli", OPTO(2,TOLNL), OPTO_MASK, PPC64, { RA, SI } },
1883{ "tdllei", OPTO(2,TOLLE), OPTO_MASK, PPC64, { RA, SI } },
1884{ "tdlngi", OPTO(2,TOLNG), OPTO_MASK, PPC64, { RA, SI } },
1885{ "tdgti", OPTO(2,TOGT), OPTO_MASK, PPC64, { RA, SI } },
1886{ "tdgei", OPTO(2,TOGE), OPTO_MASK, PPC64, { RA, SI } },
1887{ "tdnli", OPTO(2,TONL), OPTO_MASK, PPC64, { RA, SI } },
1888{ "tdlti", OPTO(2,TOLT), OPTO_MASK, PPC64, { RA, SI } },
1889{ "tdlei", OPTO(2,TOLE), OPTO_MASK, PPC64, { RA, SI } },
1890{ "tdngi", OPTO(2,TONG), OPTO_MASK, PPC64, { RA, SI } },
1891{ "tdnei", OPTO(2,TONE), OPTO_MASK, PPC64, { RA, SI } },
1892{ "tdi", OP(2), OP_MASK, PPC64, { TO, RA, SI } },
1893
1894{ "twlgti", OPTO(3,TOLGT), OPTO_MASK, PPCCOM, { RA, SI } },
1895{ "tlgti", OPTO(3,TOLGT), OPTO_MASK, PWRCOM, { RA, SI } },
1896{ "twllti", OPTO(3,TOLLT), OPTO_MASK, PPCCOM, { RA, SI } },
1897{ "tllti", OPTO(3,TOLLT), OPTO_MASK, PWRCOM, { RA, SI } },
1898{ "tweqi", OPTO(3,TOEQ), OPTO_MASK, PPCCOM, { RA, SI } },
1899{ "teqi", OPTO(3,TOEQ), OPTO_MASK, PWRCOM, { RA, SI } },
1900{ "twlgei", OPTO(3,TOLGE), OPTO_MASK, PPCCOM, { RA, SI } },
1901{ "tlgei", OPTO(3,TOLGE), OPTO_MASK, PWRCOM, { RA, SI } },
1902{ "twlnli", OPTO(3,TOLNL), OPTO_MASK, PPCCOM, { RA, SI } },
1903{ "tlnli", OPTO(3,TOLNL), OPTO_MASK, PWRCOM, { RA, SI } },
1904{ "twllei", OPTO(3,TOLLE), OPTO_MASK, PPCCOM, { RA, SI } },
1905{ "tllei", OPTO(3,TOLLE), OPTO_MASK, PWRCOM, { RA, SI } },
1906{ "twlngi", OPTO(3,TOLNG), OPTO_MASK, PPCCOM, { RA, SI } },
1907{ "tlngi", OPTO(3,TOLNG), OPTO_MASK, PWRCOM, { RA, SI } },
1908{ "twgti", OPTO(3,TOGT), OPTO_MASK, PPCCOM, { RA, SI } },
1909{ "tgti", OPTO(3,TOGT), OPTO_MASK, PWRCOM, { RA, SI } },
1910{ "twgei", OPTO(3,TOGE), OPTO_MASK, PPCCOM, { RA, SI } },
1911{ "tgei", OPTO(3,TOGE), OPTO_MASK, PWRCOM, { RA, SI } },
1912{ "twnli", OPTO(3,TONL), OPTO_MASK, PPCCOM, { RA, SI } },
1913{ "tnli", OPTO(3,TONL), OPTO_MASK, PWRCOM, { RA, SI } },
1914{ "twlti", OPTO(3,TOLT), OPTO_MASK, PPCCOM, { RA, SI } },
1915{ "tlti", OPTO(3,TOLT), OPTO_MASK, PWRCOM, { RA, SI } },
1916{ "twlei", OPTO(3,TOLE), OPTO_MASK, PPCCOM, { RA, SI } },
1917{ "tlei", OPTO(3,TOLE), OPTO_MASK, PWRCOM, { RA, SI } },
1918{ "twngi", OPTO(3,TONG), OPTO_MASK, PPCCOM, { RA, SI } },
1919{ "tngi", OPTO(3,TONG), OPTO_MASK, PWRCOM, { RA, SI } },
1920{ "twnei", OPTO(3,TONE), OPTO_MASK, PPCCOM, { RA, SI } },
1921{ "tnei", OPTO(3,TONE), OPTO_MASK, PWRCOM, { RA, SI } },
1922{ "twi", OP(3), OP_MASK, PPCCOM, { TO, RA, SI } },
1923{ "ti", OP(3), OP_MASK, PWRCOM, { TO, RA, SI } },
e0c21649 1924
7d5b217e
AM
1925{ "macchw", XO(4,172,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1926{ "macchw.", XO(4,172,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1927{ "macchwo", XO(4,172,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1928{ "macchwo.", XO(4,172,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1929{ "macchws", XO(4,236,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1930{ "macchws.", XO(4,236,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1931{ "macchwso", XO(4,236,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1932{ "macchwso.", XO(4,236,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1933{ "macchwsu", XO(4,204,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1934{ "macchwsu.", XO(4,204,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1935{ "macchwsuo", XO(4,204,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1936{ "macchwsuo.", XO(4,204,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1937{ "macchwu", XO(4,140,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1938{ "macchwu.", XO(4,140,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1939{ "macchwuo", XO(4,140,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1940{ "macchwuo.", XO(4,140,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1941{ "machhw", XO(4,44,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1942{ "machhw.", XO(4,44,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1943{ "machhwo", XO(4,44,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1944{ "machhwo.", XO(4,44,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1945{ "machhws", XO(4,108,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1946{ "machhws.", XO(4,108,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1947{ "machhwso", XO(4,108,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1948{ "machhwso.", XO(4,108,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1949{ "machhwsu", XO(4,76,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1950{ "machhwsu.", XO(4,76,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1951{ "machhwsuo", XO(4,76,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1952{ "machhwsuo.", XO(4,76,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1953{ "machhwu", XO(4,12,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1954{ "machhwu.", XO(4,12,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1955{ "machhwuo", XO(4,12,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1956{ "machhwuo.", XO(4,12,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1957{ "maclhw", XO(4,428,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1958{ "maclhw.", XO(4,428,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1959{ "maclhwo", XO(4,428,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1960{ "maclhwo.", XO(4,428,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1961{ "maclhws", XO(4,492,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1962{ "maclhws.", XO(4,492,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1963{ "maclhwso", XO(4,492,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1964{ "maclhwso.", XO(4,492,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1965{ "maclhwsu", XO(4,460,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1966{ "maclhwsu.", XO(4,460,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1967{ "maclhwsuo", XO(4,460,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1968{ "maclhwsuo.", XO(4,460,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1969{ "maclhwu", XO(4,396,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1970{ "maclhwu.", XO(4,396,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1971{ "maclhwuo", XO(4,396,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1972{ "maclhwuo.", XO(4,396,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1973{ "mulchw", XRC(4,168,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1974{ "mulchw.", XRC(4,168,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1975{ "mulchwu", XRC(4,136,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1976{ "mulchwu.", XRC(4,136,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1977{ "mulhhw", XRC(4,40,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1978{ "mulhhw.", XRC(4,40,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1979{ "mulhhwu", XRC(4,8,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1980{ "mulhhwu.", XRC(4,8,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1981{ "mullhw", XRC(4,424,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1982{ "mullhw.", XRC(4,424,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1983{ "mullhwu", XRC(4,392,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1984{ "mullhwu.", XRC(4,392,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },
1985{ "nmacchw", XO(4,174,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1986{ "nmacchw.", XO(4,174,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1987{ "nmacchwo", XO(4,174,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1988{ "nmacchwo.", XO(4,174,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1989{ "nmacchws", XO(4,238,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1990{ "nmacchws.", XO(4,238,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1991{ "nmacchwso", XO(4,238,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1992{ "nmacchwso.", XO(4,238,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1993{ "nmachhw", XO(4,46,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1994{ "nmachhw.", XO(4,46,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1995{ "nmachhwo", XO(4,46,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1996{ "nmachhwo.", XO(4,46,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1997{ "nmachhws", XO(4,110,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1998{ "nmachhws.", XO(4,110,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
1999{ "nmachhwso", XO(4,110,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2000{ "nmachhwso.", XO(4,110,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2001{ "nmaclhw", XO(4,430,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2002{ "nmaclhw.", XO(4,430,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2003{ "nmaclhwo", XO(4,430,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2004{ "nmaclhwo.", XO(4,430,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2005{ "nmaclhws", XO(4,494,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2006{ "nmaclhws.", XO(4,494,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2007{ "nmaclhwso", XO(4,494,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
2008{ "nmaclhwso.", XO(4,494,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },
786e2c0f 2009{ "mfvscr", VX(4, 1540), VX_MASK, PPCVEC, { VD } },
f5c120c5 2010{ "mtvscr", VX(4, 1604), VX_MASK, PPCVEC, { VB } },
12c64a4e
AH
2011
2012 /* Double-precision opcodes. */
2013 /* Some of these conflict with AltiVec, so move them before, since
2014 PPCVEC includes the PPC_OPCODE_PPC set. */
0e06657a 2015{ "efscfd", VX(4, 719), VX_MASK, PPCEFS, { RS, RB } },
12c64a4e
AH
2016{ "efdabs", VX(4, 740), VX_MASK, PPCEFS, { RS, RA } },
2017{ "efdnabs", VX(4, 741), VX_MASK, PPCEFS, { RS, RA } },
2018{ "efdneg", VX(4, 742), VX_MASK, PPCEFS, { RS, RA } },
2019{ "efdadd", VX(4, 736), VX_MASK, PPCEFS, { RS, RA, RB } },
2020{ "efdsub", VX(4, 737), VX_MASK, PPCEFS, { RS, RA, RB } },
2021{ "efdmul", VX(4, 744), VX_MASK, PPCEFS, { RS, RA, RB } },
2022{ "efddiv", VX(4, 745), VX_MASK, PPCEFS, { RS, RA, RB } },
2023{ "efdcmpgt", VX(4, 748), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2024{ "efdcmplt", VX(4, 749), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2025{ "efdcmpeq", VX(4, 750), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2026{ "efdtstgt", VX(4, 764), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2027{ "efdtstlt", VX(4, 765), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2028{ "efdtsteq", VX(4, 766), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2029{ "efdcfsi", VX(4, 753), VX_MASK, PPCEFS, { RS, RB } },
2030{ "efdcfsid", VX(4, 739), VX_MASK, PPCEFS, { RS, RB } },
2031{ "efdcfui", VX(4, 752), VX_MASK, PPCEFS, { RS, RB } },
2032{ "efdcfuid", VX(4, 738), VX_MASK, PPCEFS, { RS, RB } },
2033{ "efdcfsf", VX(4, 755), VX_MASK, PPCEFS, { RS, RB } },
2034{ "efdcfuf", VX(4, 754), VX_MASK, PPCEFS, { RS, RB } },
2035{ "efdctsi", VX(4, 757), VX_MASK, PPCEFS, { RS, RB } },
2036{ "efdctsidz",VX(4, 747), VX_MASK, PPCEFS, { RS, RB } },
2037{ "efdctsiz", VX(4, 762), VX_MASK, PPCEFS, { RS, RB } },
2038{ "efdctui", VX(4, 756), VX_MASK, PPCEFS, { RS, RB } },
2039{ "efdctuidz",VX(4, 746), VX_MASK, PPCEFS, { RS, RB } },
2040{ "efdctuiz", VX(4, 760), VX_MASK, PPCEFS, { RS, RB } },
2041{ "efdctsf", VX(4, 759), VX_MASK, PPCEFS, { RS, RB } },
2042{ "efdctuf", VX(4, 758), VX_MASK, PPCEFS, { RS, RB } },
2043{ "efdcfs", VX(4, 751), VX_MASK, PPCEFS, { RS, RB } },
2044 /* End of double-precision opcodes. */
2045
786e2c0f
C
2046{ "vaddcuw", VX(4, 384), VX_MASK, PPCVEC, { VD, VA, VB } },
2047{ "vaddfp", VX(4, 10), VX_MASK, PPCVEC, { VD, VA, VB } },
2048{ "vaddsbs", VX(4, 768), VX_MASK, PPCVEC, { VD, VA, VB } },
2049{ "vaddshs", VX(4, 832), VX_MASK, PPCVEC, { VD, VA, VB } },
2050{ "vaddsws", VX(4, 896), VX_MASK, PPCVEC, { VD, VA, VB } },
2051{ "vaddubm", VX(4, 0), VX_MASK, PPCVEC, { VD, VA, VB } },
2052{ "vaddubs", VX(4, 512), VX_MASK, PPCVEC, { VD, VA, VB } },
2053{ "vadduhm", VX(4, 64), VX_MASK, PPCVEC, { VD, VA, VB } },
2054{ "vadduhs", VX(4, 576), VX_MASK, PPCVEC, { VD, VA, VB } },
2055{ "vadduwm", VX(4, 128), VX_MASK, PPCVEC, { VD, VA, VB } },
2056{ "vadduws", VX(4, 640), VX_MASK, PPCVEC, { VD, VA, VB } },
2057{ "vand", VX(4, 1028), VX_MASK, PPCVEC, { VD, VA, VB } },
2058{ "vandc", VX(4, 1092), VX_MASK, PPCVEC, { VD, VA, VB } },
2059{ "vavgsb", VX(4, 1282), VX_MASK, PPCVEC, { VD, VA, VB } },
2060{ "vavgsh", VX(4, 1346), VX_MASK, PPCVEC, { VD, VA, VB } },
2061{ "vavgsw", VX(4, 1410), VX_MASK, PPCVEC, { VD, VA, VB } },
2062{ "vavgub", VX(4, 1026), VX_MASK, PPCVEC, { VD, VA, VB } },
2063{ "vavguh", VX(4, 1090), VX_MASK, PPCVEC, { VD, VA, VB } },
2064{ "vavguw", VX(4, 1154), VX_MASK, PPCVEC, { VD, VA, VB } },
2065{ "vcfsx", VX(4, 842), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2066{ "vcfux", VX(4, 778), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2067{ "vcmpbfp", VXR(4, 966, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2068{ "vcmpbfp.", VXR(4, 966, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2069{ "vcmpeqfp", VXR(4, 198, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2070{ "vcmpeqfp.", VXR(4, 198, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2071{ "vcmpequb", VXR(4, 6, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2072{ "vcmpequb.", VXR(4, 6, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2073{ "vcmpequh", VXR(4, 70, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2074{ "vcmpequh.", VXR(4, 70, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2075{ "vcmpequw", VXR(4, 134, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2076{ "vcmpequw.", VXR(4, 134, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2077{ "vcmpgefp", VXR(4, 454, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2078{ "vcmpgefp.", VXR(4, 454, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2079{ "vcmpgtfp", VXR(4, 710, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2080{ "vcmpgtfp.", VXR(4, 710, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2081{ "vcmpgtsb", VXR(4, 774, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2082{ "vcmpgtsb.", VXR(4, 774, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2083{ "vcmpgtsh", VXR(4, 838, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2084{ "vcmpgtsh.", VXR(4, 838, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2085{ "vcmpgtsw", VXR(4, 902, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2086{ "vcmpgtsw.", VXR(4, 902, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2087{ "vcmpgtub", VXR(4, 518, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2088{ "vcmpgtub.", VXR(4, 518, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2089{ "vcmpgtuh", VXR(4, 582, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2090{ "vcmpgtuh.", VXR(4, 582, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2091{ "vcmpgtuw", VXR(4, 646, 0), VXR_MASK, PPCVEC, { VD, VA, VB } },
2092{ "vcmpgtuw.", VXR(4, 646, 1), VXR_MASK, PPCVEC, { VD, VA, VB } },
2093{ "vctsxs", VX(4, 970), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2094{ "vctuxs", VX(4, 906), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2095{ "vexptefp", VX(4, 394), VX_MASK, PPCVEC, { VD, VB } },
2096{ "vlogefp", VX(4, 458), VX_MASK, PPCVEC, { VD, VB } },
294b41b3 2097{ "vmaddfp", VXA(4, 46), VXA_MASK, PPCVEC, { VD, VA, VC, VB } },
786e2c0f
C
2098{ "vmaxfp", VX(4, 1034), VX_MASK, PPCVEC, { VD, VA, VB } },
2099{ "vmaxsb", VX(4, 258), VX_MASK, PPCVEC, { VD, VA, VB } },
2100{ "vmaxsh", VX(4, 322), VX_MASK, PPCVEC, { VD, VA, VB } },
2101{ "vmaxsw", VX(4, 386), VX_MASK, PPCVEC, { VD, VA, VB } },
2102{ "vmaxub", VX(4, 2), VX_MASK, PPCVEC, { VD, VA, VB } },
2103{ "vmaxuh", VX(4, 66), VX_MASK, PPCVEC, { VD, VA, VB } },
2104{ "vmaxuw", VX(4, 130), VX_MASK, PPCVEC, { VD, VA, VB } },
2105{ "vmhaddshs", VXA(4, 32), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2106{ "vmhraddshs", VXA(4, 33), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2107{ "vminfp", VX(4, 1098), VX_MASK, PPCVEC, { VD, VA, VB } },
2108{ "vminsb", VX(4, 770), VX_MASK, PPCVEC, { VD, VA, VB } },
2109{ "vminsh", VX(4, 834), VX_MASK, PPCVEC, { VD, VA, VB } },
2110{ "vminsw", VX(4, 898), VX_MASK, PPCVEC, { VD, VA, VB } },
2111{ "vminub", VX(4, 514), VX_MASK, PPCVEC, { VD, VA, VB } },
2112{ "vminuh", VX(4, 578), VX_MASK, PPCVEC, { VD, VA, VB } },
2113{ "vminuw", VX(4, 642), VX_MASK, PPCVEC, { VD, VA, VB } },
2114{ "vmladduhm", VXA(4, 34), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2115{ "vmrghb", VX(4, 12), VX_MASK, PPCVEC, { VD, VA, VB } },
2116{ "vmrghh", VX(4, 76), VX_MASK, PPCVEC, { VD, VA, VB } },
2117{ "vmrghw", VX(4, 140), VX_MASK, PPCVEC, { VD, VA, VB } },
2118{ "vmrglb", VX(4, 268), VX_MASK, PPCVEC, { VD, VA, VB } },
2119{ "vmrglh", VX(4, 332), VX_MASK, PPCVEC, { VD, VA, VB } },
2120{ "vmrglw", VX(4, 396), VX_MASK, PPCVEC, { VD, VA, VB } },
2121{ "vmsummbm", VXA(4, 37), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2122{ "vmsumshm", VXA(4, 40), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2123{ "vmsumshs", VXA(4, 41), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
d2f75a6f
GK
2124{ "vmsumubm", VXA(4, 36), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2125{ "vmsumuhm", VXA(4, 38), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2126{ "vmsumuhs", VXA(4, 39), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
786e2c0f
C
2127{ "vmulesb", VX(4, 776), VX_MASK, PPCVEC, { VD, VA, VB } },
2128{ "vmulesh", VX(4, 840), VX_MASK, PPCVEC, { VD, VA, VB } },
2129{ "vmuleub", VX(4, 520), VX_MASK, PPCVEC, { VD, VA, VB } },
2130{ "vmuleuh", VX(4, 584), VX_MASK, PPCVEC, { VD, VA, VB } },
2131{ "vmulosb", VX(4, 264), VX_MASK, PPCVEC, { VD, VA, VB } },
2132{ "vmulosh", VX(4, 328), VX_MASK, PPCVEC, { VD, VA, VB } },
2133{ "vmuloub", VX(4, 8), VX_MASK, PPCVEC, { VD, VA, VB } },
2134{ "vmulouh", VX(4, 72), VX_MASK, PPCVEC, { VD, VA, VB } },
2135{ "vnmsubfp", VXA(4, 47), VXA_MASK, PPCVEC, { VD, VA, VC, VB } },
2136{ "vnor", VX(4, 1284), VX_MASK, PPCVEC, { VD, VA, VB } },
2137{ "vor", VX(4, 1156), VX_MASK, PPCVEC, { VD, VA, VB } },
2138{ "vperm", VXA(4, 43), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2139{ "vpkpx", VX(4, 782), VX_MASK, PPCVEC, { VD, VA, VB } },
2140{ "vpkshss", VX(4, 398), VX_MASK, PPCVEC, { VD, VA, VB } },
2141{ "vpkshus", VX(4, 270), VX_MASK, PPCVEC, { VD, VA, VB } },
2142{ "vpkswss", VX(4, 462), VX_MASK, PPCVEC, { VD, VA, VB } },
2143{ "vpkswus", VX(4, 334), VX_MASK, PPCVEC, { VD, VA, VB } },
2144{ "vpkuhum", VX(4, 14), VX_MASK, PPCVEC, { VD, VA, VB } },
2145{ "vpkuhus", VX(4, 142), VX_MASK, PPCVEC, { VD, VA, VB } },
2146{ "vpkuwum", VX(4, 78), VX_MASK, PPCVEC, { VD, VA, VB } },
2147{ "vpkuwus", VX(4, 206), VX_MASK, PPCVEC, { VD, VA, VB } },
2148{ "vrefp", VX(4, 266), VX_MASK, PPCVEC, { VD, VB } },
2149{ "vrfim", VX(4, 714), VX_MASK, PPCVEC, { VD, VB } },
2150{ "vrfin", VX(4, 522), VX_MASK, PPCVEC, { VD, VB } },
2151{ "vrfip", VX(4, 650), VX_MASK, PPCVEC, { VD, VB } },
2152{ "vrfiz", VX(4, 586), VX_MASK, PPCVEC, { VD, VB } },
2153{ "vrlb", VX(4, 4), VX_MASK, PPCVEC, { VD, VA, VB } },
2154{ "vrlh", VX(4, 68), VX_MASK, PPCVEC, { VD, VA, VB } },
2155{ "vrlw", VX(4, 132), VX_MASK, PPCVEC, { VD, VA, VB } },
2156{ "vrsqrtefp", VX(4, 330), VX_MASK, PPCVEC, { VD, VB } },
2157{ "vsel", VXA(4, 42), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
2158{ "vsl", VX(4, 452), VX_MASK, PPCVEC, { VD, VA, VB } },
2159{ "vslb", VX(4, 260), VX_MASK, PPCVEC, { VD, VA, VB } },
2160{ "vsldoi", VXA(4, 44), VXA_MASK, PPCVEC, { VD, VA, VB, SHB } },
2161{ "vslh", VX(4, 324), VX_MASK, PPCVEC, { VD, VA, VB } },
2162{ "vslo", VX(4, 1036), VX_MASK, PPCVEC, { VD, VA, VB } },
1da5001c 2163{ "vslw", VX(4, 388), VX_MASK, PPCVEC, { VD, VA, VB } },
786e2c0f
C
2164{ "vspltb", VX(4, 524), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2165{ "vsplth", VX(4, 588), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2166{ "vspltisb", VX(4, 780), VX_MASK, PPCVEC, { VD, SIMM } },
2167{ "vspltish", VX(4, 844), VX_MASK, PPCVEC, { VD, SIMM } },
2168{ "vspltisw", VX(4, 908), VX_MASK, PPCVEC, { VD, SIMM } },
2169{ "vspltw", VX(4, 652), VX_MASK, PPCVEC, { VD, VB, UIMM } },
2170{ "vsr", VX(4, 708), VX_MASK, PPCVEC, { VD, VA, VB } },
2171{ "vsrab", VX(4, 772), VX_MASK, PPCVEC, { VD, VA, VB } },
2172{ "vsrah", VX(4, 836), VX_MASK, PPCVEC, { VD, VA, VB } },
2173{ "vsraw", VX(4, 900), VX_MASK, PPCVEC, { VD, VA, VB } },
2174{ "vsrb", VX(4, 516), VX_MASK, PPCVEC, { VD, VA, VB } },
2175{ "vsrh", VX(4, 580), VX_MASK, PPCVEC, { VD, VA, VB } },
2176{ "vsro", VX(4, 1100), VX_MASK, PPCVEC, { VD, VA, VB } },
2177{ "vsrw", VX(4, 644), VX_MASK, PPCVEC, { VD, VA, VB } },
2178{ "vsubcuw", VX(4, 1408), VX_MASK, PPCVEC, { VD, VA, VB } },
2179{ "vsubfp", VX(4, 74), VX_MASK, PPCVEC, { VD, VA, VB } },
2180{ "vsubsbs", VX(4, 1792), VX_MASK, PPCVEC, { VD, VA, VB } },
2181{ "vsubshs", VX(4, 1856), VX_MASK, PPCVEC, { VD, VA, VB } },
2182{ "vsubsws", VX(4, 1920), VX_MASK, PPCVEC, { VD, VA, VB } },
2183{ "vsububm", VX(4, 1024), VX_MASK, PPCVEC, { VD, VA, VB } },
2184{ "vsububs", VX(4, 1536), VX_MASK, PPCVEC, { VD, VA, VB } },
2185{ "vsubuhm", VX(4, 1088), VX_MASK, PPCVEC, { VD, VA, VB } },
2186{ "vsubuhs", VX(4, 1600), VX_MASK, PPCVEC, { VD, VA, VB } },
2187{ "vsubuwm", VX(4, 1152), VX_MASK, PPCVEC, { VD, VA, VB } },
2188{ "vsubuws", VX(4, 1664), VX_MASK, PPCVEC, { VD, VA, VB } },
2189{ "vsumsws", VX(4, 1928), VX_MASK, PPCVEC, { VD, VA, VB } },
2190{ "vsum2sws", VX(4, 1672), VX_MASK, PPCVEC, { VD, VA, VB } },
2191{ "vsum4sbs", VX(4, 1800), VX_MASK, PPCVEC, { VD, VA, VB } },
2192{ "vsum4shs", VX(4, 1608), VX_MASK, PPCVEC, { VD, VA, VB } },
2193{ "vsum4ubs", VX(4, 1544), VX_MASK, PPCVEC, { VD, VA, VB } },
2194{ "vupkhpx", VX(4, 846), VX_MASK, PPCVEC, { VD, VB } },
2195{ "vupkhsb", VX(4, 526), VX_MASK, PPCVEC, { VD, VB } },
2196{ "vupkhsh", VX(4, 590), VX_MASK, PPCVEC, { VD, VB } },
2197{ "vupklpx", VX(4, 974), VX_MASK, PPCVEC, { VD, VB } },
2198{ "vupklsb", VX(4, 654), VX_MASK, PPCVEC, { VD, VB } },
2199{ "vupklsh", VX(4, 718), VX_MASK, PPCVEC, { VD, VB } },
2200{ "vxor", VX(4, 1220), VX_MASK, PPCVEC, { VD, VA, VB } },
252b5132 2201
914749f6
AH
2202{ "evaddw", VX(4, 512), VX_MASK, PPCSPE, { RS, RA, RB } },
2203{ "evaddiw", VX(4, 514), VX_MASK, PPCSPE, { RS, RB, UIMM } },
2204{ "evsubfw", VX(4, 516), VX_MASK, PPCSPE, { RS, RA, RB } },
2205{ "evsubw", VX(4, 516), VX_MASK, PPCSPE, { RS, RB, RA } },
2206{ "evsubifw", VX(4, 518), VX_MASK, PPCSPE, { RS, UIMM, RB } },
2207{ "evsubiw", VX(4, 518), VX_MASK, PPCSPE, { RS, RB, UIMM } },
2208{ "evabs", VX(4, 520), VX_MASK, PPCSPE, { RS, RA } },
2209{ "evneg", VX(4, 521), VX_MASK, PPCSPE, { RS, RA } },
2210{ "evextsb", VX(4, 522), VX_MASK, PPCSPE, { RS, RA } },
2211{ "evextsh", VX(4, 523), VX_MASK, PPCSPE, { RS, RA } },
2212{ "evrndw", VX(4, 524), VX_MASK, PPCSPE, { RS, RA } },
2213{ "evcntlzw", VX(4, 525), VX_MASK, PPCSPE, { RS, RA } },
2214{ "evcntlsw", VX(4, 526), VX_MASK, PPCSPE, { RS, RA } },
2215
2216{ "brinc", VX(4, 527), VX_MASK, PPCSPE, { RS, RA, RB } },
2217
2218{ "evand", VX(4, 529), VX_MASK, PPCSPE, { RS, RA, RB } },
2219{ "evandc", VX(4, 530), VX_MASK, PPCSPE, { RS, RA, RB } },
dde1b132 2220{ "evmr", VX(4, 535), VX_MASK, PPCSPE, { RS, RA, BBA } },
914749f6
AH
2221{ "evor", VX(4, 535), VX_MASK, PPCSPE, { RS, RA, RB } },
2222{ "evorc", VX(4, 539), VX_MASK, PPCSPE, { RS, RA, RB } },
2223{ "evxor", VX(4, 534), VX_MASK, PPCSPE, { RS, RA, RB } },
2224{ "eveqv", VX(4, 537), VX_MASK, PPCSPE, { RS, RA, RB } },
2225{ "evnand", VX(4, 542), VX_MASK, PPCSPE, { RS, RA, RB } },
dde1b132 2226{ "evnot", VX(4, 536), VX_MASK, PPCSPE, { RS, RA, BBA } },
914749f6
AH
2227{ "evnor", VX(4, 536), VX_MASK, PPCSPE, { RS, RA, RB } },
2228
2229{ "evrlw", VX(4, 552), VX_MASK, PPCSPE, { RS, RA, RB } },
2230{ "evrlwi", VX(4, 554), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2231{ "evslw", VX(4, 548), VX_MASK, PPCSPE, { RS, RA, RB } },
2232{ "evslwi", VX(4, 550), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2233{ "evsrws", VX(4, 545), VX_MASK, PPCSPE, { RS, RA, RB } },
2234{ "evsrwu", VX(4, 544), VX_MASK, PPCSPE, { RS, RA, RB } },
2235{ "evsrwis", VX(4, 547), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2236{ "evsrwiu", VX(4, 546), VX_MASK, PPCSPE, { RS, RA, EVUIMM } },
2237{ "evsplati", VX(4, 553), VX_MASK, PPCSPE, { RS, SIMM } },
2238{ "evsplatfi", VX(4, 555), VX_MASK, PPCSPE, { RS, SIMM } },
fe587977
AH
2239{ "evmergehi", VX(4, 556), VX_MASK, PPCSPE, { RS, RA, RB } },
2240{ "evmergelo", VX(4, 557), VX_MASK, PPCSPE, { RS, RA, RB } },
2241{ "evmergehilo",VX(4,558), VX_MASK, PPCSPE, { RS, RA, RB } },
2242{ "evmergelohi",VX(4,559), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049
EZ
2243
2244{ "evcmpgts", VX(4, 561), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2245{ "evcmpgtu", VX(4, 560), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2246{ "evcmplts", VX(4, 563), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2247{ "evcmpltu", VX(4, 562), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2248{ "evcmpeq", VX(4, 564), VX_MASK, PPCSPE, { CRFD, RA, RB } },
914749f6 2249{ "evsel", EVSEL(4,79),EVSEL_MASK, PPCSPE, { RS, RA, RB, CRFS } },
23976049
EZ
2250
2251{ "evldd", VX(4, 769), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2252{ "evlddx", VX(4, 768), VX_MASK, PPCSPE, { RS, RA, RB } },
2253{ "evldw", VX(4, 771), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2254{ "evldwx", VX(4, 770), VX_MASK, PPCSPE, { RS, RA, RB } },
2255{ "evldh", VX(4, 773), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2256{ "evldhx", VX(4, 772), VX_MASK, PPCSPE, { RS, RA, RB } },
2257{ "evlwhe", VX(4, 785), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2258{ "evlwhex", VX(4, 784), VX_MASK, PPCSPE, { RS, RA, RB } },
2259{ "evlwhou", VX(4, 789), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2260{ "evlwhoux", VX(4, 788), VX_MASK, PPCSPE, { RS, RA, RB } },
2261{ "evlwhos", VX(4, 791), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2262{ "evlwhosx", VX(4, 790), VX_MASK, PPCSPE, { RS, RA, RB } },
2263{ "evlwwsplat",VX(4, 793), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2264{ "evlwwsplatx",VX(4, 792), VX_MASK, PPCSPE, { RS, RA, RB } },
2265{ "evlwhsplat",VX(4, 797), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2266{ "evlwhsplatx",VX(4, 796), VX_MASK, PPCSPE, { RS, RA, RB } },
2267{ "evlhhesplat",VX(4, 777), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2268{ "evlhhesplatx",VX(4, 776), VX_MASK, PPCSPE, { RS, RA, RB } },
2269{ "evlhhousplat",VX(4, 781), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2270{ "evlhhousplatx",VX(4, 780), VX_MASK, PPCSPE, { RS, RA, RB } },
2271{ "evlhhossplat",VX(4, 783), VX_MASK, PPCSPE, { RS, EVUIMM_2, RA } },
2272{ "evlhhossplatx",VX(4, 782), VX_MASK, PPCSPE, { RS, RA, RB } },
2273
2274{ "evstdd", VX(4, 801), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2275{ "evstddx", VX(4, 800), VX_MASK, PPCSPE, { RS, RA, RB } },
2276{ "evstdw", VX(4, 803), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2277{ "evstdwx", VX(4, 802), VX_MASK, PPCSPE, { RS, RA, RB } },
2278{ "evstdh", VX(4, 805), VX_MASK, PPCSPE, { RS, EVUIMM_8, RA } },
2279{ "evstdhx", VX(4, 804), VX_MASK, PPCSPE, { RS, RA, RB } },
2280{ "evstwwe", VX(4, 825), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2281{ "evstwwex", VX(4, 824), VX_MASK, PPCSPE, { RS, RA, RB } },
2282{ "evstwwo", VX(4, 829), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2283{ "evstwwox", VX(4, 828), VX_MASK, PPCSPE, { RS, RA, RB } },
2284{ "evstwhe", VX(4, 817), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2285{ "evstwhex", VX(4, 816), VX_MASK, PPCSPE, { RS, RA, RB } },
2286{ "evstwho", VX(4, 821), VX_MASK, PPCSPE, { RS, EVUIMM_4, RA } },
2287{ "evstwhox", VX(4, 820), VX_MASK, PPCSPE, { RS, RA, RB } },
2288
914749f6
AH
2289{ "evfsabs", VX(4, 644), VX_MASK, PPCSPE, { RS, RA } },
2290{ "evfsnabs", VX(4, 645), VX_MASK, PPCSPE, { RS, RA } },
2291{ "evfsneg", VX(4, 646), VX_MASK, PPCSPE, { RS, RA } },
2292{ "evfsadd", VX(4, 640), VX_MASK, PPCSPE, { RS, RA, RB } },
2293{ "evfssub", VX(4, 641), VX_MASK, PPCSPE, { RS, RA, RB } },
2294{ "evfsmul", VX(4, 648), VX_MASK, PPCSPE, { RS, RA, RB } },
2295{ "evfsdiv", VX(4, 649), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049
EZ
2296{ "evfscmpgt", VX(4, 652), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2297{ "evfscmplt", VX(4, 653), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2298{ "evfscmpeq", VX(4, 654), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2299{ "evfststgt", VX(4, 668), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2300{ "evfststlt", VX(4, 669), VX_MASK, PPCSPE, { CRFD, RA, RB } },
2301{ "evfststeq", VX(4, 670), VX_MASK, PPCSPE, { CRFD, RA, RB } },
914749f6
AH
2302{ "evfscfui", VX(4, 656), VX_MASK, PPCSPE, { RS, RB } },
2303{ "evfsctuiz", VX(4, 664), VX_MASK, PPCSPE, { RS, RB } },
2304{ "evfscfsi", VX(4, 657), VX_MASK, PPCSPE, { RS, RB } },
2305{ "evfscfuf", VX(4, 658), VX_MASK, PPCSPE, { RS, RB } },
2306{ "evfscfsf", VX(4, 659), VX_MASK, PPCSPE, { RS, RB } },
2307{ "evfsctui", VX(4, 660), VX_MASK, PPCSPE, { RS, RB } },
2308{ "evfsctsi", VX(4, 661), VX_MASK, PPCSPE, { RS, RB } },
2309{ "evfsctsiz", VX(4, 666), VX_MASK, PPCSPE, { RS, RB } },
2310{ "evfsctuf", VX(4, 662), VX_MASK, PPCSPE, { RS, RB } },
2311{ "evfsctsf", VX(4, 663), VX_MASK, PPCSPE, { RS, RB } },
2312
2313{ "efsabs", VX(4, 708), VX_MASK, PPCEFS, { RS, RA } },
2314{ "efsnabs", VX(4, 709), VX_MASK, PPCEFS, { RS, RA } },
2315{ "efsneg", VX(4, 710), VX_MASK, PPCEFS, { RS, RA } },
2316{ "efsadd", VX(4, 704), VX_MASK, PPCEFS, { RS, RA, RB } },
2317{ "efssub", VX(4, 705), VX_MASK, PPCEFS, { RS, RA, RB } },
2318{ "efsmul", VX(4, 712), VX_MASK, PPCEFS, { RS, RA, RB } },
2319{ "efsdiv", VX(4, 713), VX_MASK, PPCEFS, { RS, RA, RB } },
23976049
EZ
2320{ "efscmpgt", VX(4, 716), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2321{ "efscmplt", VX(4, 717), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2322{ "efscmpeq", VX(4, 718), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2323{ "efststgt", VX(4, 732), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2324{ "efststlt", VX(4, 733), VX_MASK, PPCEFS, { CRFD, RA, RB } },
2325{ "efststeq", VX(4, 734), VX_MASK, PPCEFS, { CRFD, RA, RB } },
914749f6
AH
2326{ "efscfui", VX(4, 720), VX_MASK, PPCEFS, { RS, RB } },
2327{ "efsctuiz", VX(4, 728), VX_MASK, PPCEFS, { RS, RB } },
2328{ "efscfsi", VX(4, 721), VX_MASK, PPCEFS, { RS, RB } },
2329{ "efscfuf", VX(4, 722), VX_MASK, PPCEFS, { RS, RB } },
2330{ "efscfsf", VX(4, 723), VX_MASK, PPCEFS, { RS, RB } },
2331{ "efsctui", VX(4, 724), VX_MASK, PPCEFS, { RS, RB } },
2332{ "efsctsi", VX(4, 725), VX_MASK, PPCEFS, { RS, RB } },
2333{ "efsctsiz", VX(4, 730), VX_MASK, PPCEFS, { RS, RB } },
2334{ "efsctuf", VX(4, 726), VX_MASK, PPCEFS, { RS, RB } },
2335{ "efsctsf", VX(4, 727), VX_MASK, PPCEFS, { RS, RB } },
2336
914749f6
AH
2337{ "evmhossf", VX(4, 1031), VX_MASK, PPCSPE, { RS, RA, RB } },
2338{ "evmhossfa", VX(4, 1063), VX_MASK, PPCSPE, { RS, RA, RB } },
2339{ "evmhosmf", VX(4, 1039), VX_MASK, PPCSPE, { RS, RA, RB } },
2340{ "evmhosmfa", VX(4, 1071), VX_MASK, PPCSPE, { RS, RA, RB } },
2341{ "evmhosmi", VX(4, 1037), VX_MASK, PPCSPE, { RS, RA, RB } },
2342{ "evmhosmia", VX(4, 1069), VX_MASK, PPCSPE, { RS, RA, RB } },
2343{ "evmhoumi", VX(4, 1036), VX_MASK, PPCSPE, { RS, RA, RB } },
2344{ "evmhoumia", VX(4, 1068), VX_MASK, PPCSPE, { RS, RA, RB } },
2345{ "evmhessf", VX(4, 1027), VX_MASK, PPCSPE, { RS, RA, RB } },
2346{ "evmhessfa", VX(4, 1059), VX_MASK, PPCSPE, { RS, RA, RB } },
2347{ "evmhesmf", VX(4, 1035), VX_MASK, PPCSPE, { RS, RA, RB } },
2348{ "evmhesmfa", VX(4, 1067), VX_MASK, PPCSPE, { RS, RA, RB } },
2349{ "evmhesmi", VX(4, 1033), VX_MASK, PPCSPE, { RS, RA, RB } },
2350{ "evmhesmia", VX(4, 1065), VX_MASK, PPCSPE, { RS, RA, RB } },
2351{ "evmheumi", VX(4, 1032), VX_MASK, PPCSPE, { RS, RA, RB } },
2352{ "evmheumia", VX(4, 1064), VX_MASK, PPCSPE, { RS, RA, RB } },
2353
2354{ "evmhossfaaw",VX(4, 1287), VX_MASK, PPCSPE, { RS, RA, RB } },
2355{ "evmhossiaaw",VX(4, 1285), VX_MASK, PPCSPE, { RS, RA, RB } },
2356{ "evmhosmfaaw",VX(4, 1295), VX_MASK, PPCSPE, { RS, RA, RB } },
2357{ "evmhosmiaaw",VX(4, 1293), VX_MASK, PPCSPE, { RS, RA, RB } },
2358{ "evmhousiaaw",VX(4, 1284), VX_MASK, PPCSPE, { RS, RA, RB } },
2359{ "evmhoumiaaw",VX(4, 1292), VX_MASK, PPCSPE, { RS, RA, RB } },
2360{ "evmhessfaaw",VX(4, 1283), VX_MASK, PPCSPE, { RS, RA, RB } },
2361{ "evmhessiaaw",VX(4, 1281), VX_MASK, PPCSPE, { RS, RA, RB } },
2362{ "evmhesmfaaw",VX(4, 1291), VX_MASK, PPCSPE, { RS, RA, RB } },
2363{ "evmhesmiaaw",VX(4, 1289), VX_MASK, PPCSPE, { RS, RA, RB } },
2364{ "evmheusiaaw",VX(4, 1280), VX_MASK, PPCSPE, { RS, RA, RB } },
2365{ "evmheumiaaw",VX(4, 1288), VX_MASK, PPCSPE, { RS, RA, RB } },
2366
2367{ "evmhossfanw",VX(4, 1415), VX_MASK, PPCSPE, { RS, RA, RB } },
2368{ "evmhossianw",VX(4, 1413), VX_MASK, PPCSPE, { RS, RA, RB } },
2369{ "evmhosmfanw",VX(4, 1423), VX_MASK, PPCSPE, { RS, RA, RB } },
2370{ "evmhosmianw",VX(4, 1421), VX_MASK, PPCSPE, { RS, RA, RB } },
2371{ "evmhousianw",VX(4, 1412), VX_MASK, PPCSPE, { RS, RA, RB } },
2372{ "evmhoumianw",VX(4, 1420), VX_MASK, PPCSPE, { RS, RA, RB } },
2373{ "evmhessfanw",VX(4, 1411), VX_MASK, PPCSPE, { RS, RA, RB } },
2374{ "evmhessianw",VX(4, 1409), VX_MASK, PPCSPE, { RS, RA, RB } },
2375{ "evmhesmfanw",VX(4, 1419), VX_MASK, PPCSPE, { RS, RA, RB } },
2376{ "evmhesmianw",VX(4, 1417), VX_MASK, PPCSPE, { RS, RA, RB } },
2377{ "evmheusianw",VX(4, 1408), VX_MASK, PPCSPE, { RS, RA, RB } },
2378{ "evmheumianw",VX(4, 1416), VX_MASK, PPCSPE, { RS, RA, RB } },
2379
2380{ "evmhogsmfaa",VX(4, 1327), VX_MASK, PPCSPE, { RS, RA, RB } },
2381{ "evmhogsmiaa",VX(4, 1325), VX_MASK, PPCSPE, { RS, RA, RB } },
2382{ "evmhogumiaa",VX(4, 1324), VX_MASK, PPCSPE, { RS, RA, RB } },
2383{ "evmhegsmfaa",VX(4, 1323), VX_MASK, PPCSPE, { RS, RA, RB } },
2384{ "evmhegsmiaa",VX(4, 1321), VX_MASK, PPCSPE, { RS, RA, RB } },
2385{ "evmhegumiaa",VX(4, 1320), VX_MASK, PPCSPE, { RS, RA, RB } },
2386
2387{ "evmhogsmfan",VX(4, 1455), VX_MASK, PPCSPE, { RS, RA, RB } },
2388{ "evmhogsmian",VX(4, 1453), VX_MASK, PPCSPE, { RS, RA, RB } },
2389{ "evmhogumian",VX(4, 1452), VX_MASK, PPCSPE, { RS, RA, RB } },
2390{ "evmhegsmfan",VX(4, 1451), VX_MASK, PPCSPE, { RS, RA, RB } },
2391{ "evmhegsmian",VX(4, 1449), VX_MASK, PPCSPE, { RS, RA, RB } },
2392{ "evmhegumian",VX(4, 1448), VX_MASK, PPCSPE, { RS, RA, RB } },
2393
2394{ "evmwhssf", VX(4, 1095), VX_MASK, PPCSPE, { RS, RA, RB } },
2395{ "evmwhssfa", VX(4, 1127), VX_MASK, PPCSPE, { RS, RA, RB } },
2396{ "evmwhsmf", VX(4, 1103), VX_MASK, PPCSPE, { RS, RA, RB } },
2397{ "evmwhsmfa", VX(4, 1135), VX_MASK, PPCSPE, { RS, RA, RB } },
2398{ "evmwhsmi", VX(4, 1101), VX_MASK, PPCSPE, { RS, RA, RB } },
2399{ "evmwhsmia", VX(4, 1133), VX_MASK, PPCSPE, { RS, RA, RB } },
2400{ "evmwhumi", VX(4, 1100), VX_MASK, PPCSPE, { RS, RA, RB } },
2401{ "evmwhumia", VX(4, 1132), VX_MASK, PPCSPE, { RS, RA, RB } },
2402
914749f6
AH
2403{ "evmwlumi", VX(4, 1096), VX_MASK, PPCSPE, { RS, RA, RB } },
2404{ "evmwlumia", VX(4, 1128), VX_MASK, PPCSPE, { RS, RA, RB } },
2405
914749f6 2406{ "evmwlssiaaw",VX(4, 1345), VX_MASK, PPCSPE, { RS, RA, RB } },
914749f6
AH
2407{ "evmwlsmiaaw",VX(4, 1353), VX_MASK, PPCSPE, { RS, RA, RB } },
2408{ "evmwlusiaaw",VX(4, 1344), VX_MASK, PPCSPE, { RS, RA, RB } },
2409{ "evmwlumiaaw",VX(4, 1352), VX_MASK, PPCSPE, { RS, RA, RB } },
2410
914749f6 2411{ "evmwlssianw",VX(4, 1473), VX_MASK, PPCSPE, { RS, RA, RB } },
914749f6
AH
2412{ "evmwlsmianw",VX(4, 1481), VX_MASK, PPCSPE, { RS, RA, RB } },
2413{ "evmwlusianw",VX(4, 1472), VX_MASK, PPCSPE, { RS, RA, RB } },
2414{ "evmwlumianw",VX(4, 1480), VX_MASK, PPCSPE, { RS, RA, RB } },
2415
914749f6
AH
2416{ "evmwssf", VX(4, 1107), VX_MASK, PPCSPE, { RS, RA, RB } },
2417{ "evmwssfa", VX(4, 1139), VX_MASK, PPCSPE, { RS, RA, RB } },
2418{ "evmwsmf", VX(4, 1115), VX_MASK, PPCSPE, { RS, RA, RB } },
2419{ "evmwsmfa", VX(4, 1147), VX_MASK, PPCSPE, { RS, RA, RB } },
2420{ "evmwsmi", VX(4, 1113), VX_MASK, PPCSPE, { RS, RA, RB } },
2421{ "evmwsmia", VX(4, 1145), VX_MASK, PPCSPE, { RS, RA, RB } },
2422{ "evmwumi", VX(4, 1112), VX_MASK, PPCSPE, { RS, RA, RB } },
2423{ "evmwumia", VX(4, 1144), VX_MASK, PPCSPE, { RS, RA, RB } },
2424
2425{ "evmwssfaa", VX(4, 1363), VX_MASK, PPCSPE, { RS, RA, RB } },
2426{ "evmwsmfaa", VX(4, 1371), VX_MASK, PPCSPE, { RS, RA, RB } },
2427{ "evmwsmiaa", VX(4, 1369), VX_MASK, PPCSPE, { RS, RA, RB } },
2428{ "evmwumiaa", VX(4, 1368), VX_MASK, PPCSPE, { RS, RA, RB } },
2429
2430{ "evmwssfan", VX(4, 1491), VX_MASK, PPCSPE, { RS, RA, RB } },
2431{ "evmwsmfan", VX(4, 1499), VX_MASK, PPCSPE, { RS, RA, RB } },
2432{ "evmwsmian", VX(4, 1497), VX_MASK, PPCSPE, { RS, RA, RB } },
2433{ "evmwumian", VX(4, 1496), VX_MASK, PPCSPE, { RS, RA, RB } },
2434
2435{ "evaddssiaaw",VX(4, 1217), VX_MASK, PPCSPE, { RS, RA } },
2436{ "evaddsmiaaw",VX(4, 1225), VX_MASK, PPCSPE, { RS, RA } },
2437{ "evaddusiaaw",VX(4, 1216), VX_MASK, PPCSPE, { RS, RA } },
2438{ "evaddumiaaw",VX(4, 1224), VX_MASK, PPCSPE, { RS, RA } },
2439
2440{ "evsubfssiaaw",VX(4, 1219), VX_MASK, PPCSPE, { RS, RA } },
2441{ "evsubfsmiaaw",VX(4, 1227), VX_MASK, PPCSPE, { RS, RA } },
2442{ "evsubfusiaaw",VX(4, 1218), VX_MASK, PPCSPE, { RS, RA } },
2443{ "evsubfumiaaw",VX(4, 1226), VX_MASK, PPCSPE, { RS, RA } },
2444
2445{ "evmra", VX(4, 1220), VX_MASK, PPCSPE, { RS, RA } },
2446
2447{ "evdivws", VX(4, 1222), VX_MASK, PPCSPE, { RS, RA, RB } },
2448{ "evdivwu", VX(4, 1223), VX_MASK, PPCSPE, { RS, RA, RB } },
23976049 2449
252b5132
RH
2450{ "mulli", OP(7), OP_MASK, PPCCOM, { RT, RA, SI } },
2451{ "muli", OP(7), OP_MASK, PWRCOM, { RT, RA, SI } },
2452
2453{ "subfic", OP(8), OP_MASK, PPCCOM, { RT, RA, SI } },
2454{ "sfi", OP(8), OP_MASK, PWRCOM, { RT, RA, SI } },
2455
2456{ "dozi", OP(9), OP_MASK, M601, { RT, RA, SI } },
2457
418c1742
MG
2458{ "bce", B(9,0,0), B_MASK, BOOKE64, { BO, BI, BD } },
2459{ "bcel", B(9,0,1), B_MASK, BOOKE64, { BO, BI, BD } },
2460{ "bcea", B(9,1,0), B_MASK, BOOKE64, { BO, BI, BDA } },
2461{ "bcela", B(9,1,1), B_MASK, BOOKE64, { BO, BI, BDA } },
2462
252b5132
RH
2463{ "cmplwi", OPL(10,0), OPL_MASK, PPCCOM, { OBF, RA, UI } },
2464{ "cmpldi", OPL(10,1), OPL_MASK, PPC64, { OBF, RA, UI } },
661bd698 2465{ "cmpli", OP(10), OP_MASK, PPC, { BF, L, RA, UI } },
252b5132
RH
2466{ "cmpli", OP(10), OP_MASK, PWRCOM, { BF, RA, UI } },
2467
2468{ "cmpwi", OPL(11,0), OPL_MASK, PPCCOM, { OBF, RA, SI } },
2469{ "cmpdi", OPL(11,1), OPL_MASK, PPC64, { OBF, RA, SI } },
661bd698 2470{ "cmpi", OP(11), OP_MASK, PPC, { BF, L, RA, SI } },
252b5132
RH
2471{ "cmpi", OP(11), OP_MASK, PWRCOM, { BF, RA, SI } },
2472
2473{ "addic", OP(12), OP_MASK, PPCCOM, { RT, RA, SI } },
2474{ "ai", OP(12), OP_MASK, PWRCOM, { RT, RA, SI } },
2475{ "subic", OP(12), OP_MASK, PPCCOM, { RT, RA, NSI } },
2476
2477{ "addic.", OP(13), OP_MASK, PPCCOM, { RT, RA, SI } },
2478{ "ai.", OP(13), OP_MASK, PWRCOM, { RT, RA, SI } },
2479{ "subic.", OP(13), OP_MASK, PPCCOM, { RT, RA, NSI } },
2480
2481{ "li", OP(14), DRA_MASK, PPCCOM, { RT, SI } },
2482{ "lil", OP(14), DRA_MASK, PWRCOM, { RT, SI } },
fdd12ef3
AM
2483{ "addi", OP(14), OP_MASK, PPCCOM, { RT, RA0, SI } },
2484{ "cal", OP(14), OP_MASK, PWRCOM, { RT, D, RA0 } },
2485{ "subi", OP(14), OP_MASK, PPCCOM, { RT, RA0, NSI } },
2486{ "la", OP(14), OP_MASK, PPCCOM, { RT, D, RA0 } },
252b5132
RH
2487
2488{ "lis", OP(15), DRA_MASK, PPCCOM, { RT, SISIGNOPT } },
2489{ "liu", OP(15), DRA_MASK, PWRCOM, { RT, SISIGNOPT } },
fdd12ef3
AM
2490{ "addis", OP(15), OP_MASK, PPCCOM, { RT,RA0,SISIGNOPT } },
2491{ "cau", OP(15), OP_MASK, PWRCOM, { RT,RA0,SISIGNOPT } },
2492{ "subis", OP(15), OP_MASK, PPCCOM, { RT, RA0, NSI } },
252b5132 2493
112290ab
NC
2494{ "bdnz-", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BDM } },
2495{ "bdnz+", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BDP } },
2496{ "bdnz", BBO(16,BODNZ,0,0), BBOATBI_MASK, PPCCOM, { BD } },
2497{ "bdn", BBO(16,BODNZ,0,0), BBOATBI_MASK, PWRCOM, { BD } },
2498{ "bdnzl-", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BDM } },
2499{ "bdnzl+", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BDP } },
2500{ "bdnzl", BBO(16,BODNZ,0,1), BBOATBI_MASK, PPCCOM, { BD } },
2501{ "bdnl", BBO(16,BODNZ,0,1), BBOATBI_MASK, PWRCOM, { BD } },
2502{ "bdnza-", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDMA } },
2503{ "bdnza+", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDPA } },
2504{ "bdnza", BBO(16,BODNZ,1,0), BBOATBI_MASK, PPCCOM, { BDA } },
2505{ "bdna", BBO(16,BODNZ,1,0), BBOATBI_MASK, PWRCOM, { BDA } },
2506{ "bdnzla-", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDMA } },
2507{ "bdnzla+", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDPA } },
2508{ "bdnzla", BBO(16,BODNZ,1,1), BBOATBI_MASK, PPCCOM, { BDA } },
2509{ "bdnla", BBO(16,BODNZ,1,1), BBOATBI_MASK, PWRCOM, { BDA } },
2510{ "bdz-", BBO(16,BODZ,0,0), BBOATBI_MASK, PPCCOM, { BDM } },
2511{ "bdz+", BBO(16,BODZ,0,0), BBOATBI_MASK, PPCCOM, { BDP } },
2512{ "bdz", BBO(16,BODZ,0,0), BBOATBI_MASK, COM, { BD } },
2513{ "bdzl-", BBO(16,BODZ,0,1), BBOATBI_MASK, PPCCOM, { BDM } },
2514{ "bdzl+", BBO(16,BODZ,0,1), BBOATBI_MASK, PPCCOM, { BDP } },
2515{ "bdzl", BBO(16,BODZ,0,1), BBOATBI_MASK, COM, { BD } },
2516{ "bdza-", BBO(16,BODZ,1,0), BBOATBI_MASK, PPCCOM, { BDMA } },
2517{ "bdza+", BBO(16,BODZ,1,0), BBOATBI_MASK, PPCCOM, { BDPA } },
2518{ "bdza", BBO(16,BODZ,1,0), BBOATBI_MASK, COM, { BDA } },
2519{ "bdzla-", BBO(16,BODZ,1,1), BBOATBI_MASK, PPCCOM, { BDMA } },
2520{ "bdzla+", BBO(16,BODZ,1,1), BBOATBI_MASK, PPCCOM, { BDPA } },
2521{ "bdzla", BBO(16,BODZ,1,1), BBOATBI_MASK, COM, { BDA } },
802a735e
AM
2522{ "blt-", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2523{ "blt+", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2524{ "blt", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2525{ "bltl-", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2526{ "bltl+", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2527{ "bltl", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2528{ "blta-", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2529{ "blta+", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2530{ "blta", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2531{ "bltla-", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2532{ "bltla+", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2533{ "bltla", BBOCB(16,BOT,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2534{ "bgt-", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2535{ "bgt+", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2536{ "bgt", BBOCB(16,BOT,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2537{ "bgtl-", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2538{ "bgtl+", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2539{ "bgtl", BBOCB(16,BOT,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2540{ "bgta-", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2541{ "bgta+", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2542{ "bgta", BBOCB(16,BOT,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2543{ "bgtla-", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2544{ "bgtla+", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2545{ "bgtla", BBOCB(16,BOT,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2546{ "beq-", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2547{ "beq+", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2548{ "beq", BBOCB(16,BOT,CBEQ,0,0), BBOATCB_MASK, COM, { CR, BD } },
2549{ "beql-", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2550{ "beql+", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2551{ "beql", BBOCB(16,BOT,CBEQ,0,1), BBOATCB_MASK, COM, { CR, BD } },
2552{ "beqa-", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2553{ "beqa+", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2554{ "beqa", BBOCB(16,BOT,CBEQ,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2555{ "beqla-", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2556{ "beqla+", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2557{ "beqla", BBOCB(16,BOT,CBEQ,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2558{ "bso-", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2559{ "bso+", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2560{ "bso", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, COM, { CR, BD } },
2561{ "bsol-", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2562{ "bsol+", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2563{ "bsol", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, COM, { CR, BD } },
2564{ "bsoa-", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2565{ "bsoa+", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2566{ "bsoa", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2567{ "bsola-", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2568{ "bsola+", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2569{ "bsola", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2570{ "bun-", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2571{ "bun+", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2572{ "bun", BBOCB(16,BOT,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BD } },
2573{ "bunl-", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2574{ "bunl+", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2575{ "bunl", BBOCB(16,BOT,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BD } },
2576{ "buna-", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2577{ "buna+", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2578{ "buna", BBOCB(16,BOT,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2579{ "bunla-", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2580{ "bunla+", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2581{ "bunla", BBOCB(16,BOT,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2582{ "bge-", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2583{ "bge+", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2584{ "bge", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2585{ "bgel-", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2586{ "bgel+", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2587{ "bgel", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2588{ "bgea-", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2589{ "bgea+", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2590{ "bgea", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2591{ "bgela-", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2592{ "bgela+", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2593{ "bgela", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2594{ "bnl-", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2595{ "bnl+", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2596{ "bnl", BBOCB(16,BOF,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2597{ "bnll-", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2598{ "bnll+", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2599{ "bnll", BBOCB(16,BOF,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2600{ "bnla-", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2601{ "bnla+", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2602{ "bnla", BBOCB(16,BOF,CBLT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2603{ "bnlla-", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2604{ "bnlla+", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2605{ "bnlla", BBOCB(16,BOF,CBLT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2606{ "ble-", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2607{ "ble+", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2608{ "ble", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2609{ "blel-", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2610{ "blel+", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2611{ "blel", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2612{ "blea-", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2613{ "blea+", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2614{ "blea", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2615{ "blela-", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2616{ "blela+", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2617{ "blela", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2618{ "bng-", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2619{ "bng+", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2620{ "bng", BBOCB(16,BOF,CBGT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2621{ "bngl-", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2622{ "bngl+", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2623{ "bngl", BBOCB(16,BOF,CBGT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2624{ "bnga-", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2625{ "bnga+", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2626{ "bnga", BBOCB(16,BOF,CBGT,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2627{ "bngla-", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2628{ "bngla+", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2629{ "bngla", BBOCB(16,BOF,CBGT,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2630{ "bne-", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2631{ "bne+", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2632{ "bne", BBOCB(16,BOF,CBEQ,0,0), BBOATCB_MASK, COM, { CR, BD } },
2633{ "bnel-", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2634{ "bnel+", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2635{ "bnel", BBOCB(16,BOF,CBEQ,0,1), BBOATCB_MASK, COM, { CR, BD } },
2636{ "bnea-", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2637{ "bnea+", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2638{ "bnea", BBOCB(16,BOF,CBEQ,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2639{ "bnela-", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2640{ "bnela+", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2641{ "bnela", BBOCB(16,BOF,CBEQ,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2642{ "bns-", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2643{ "bns+", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2644{ "bns", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, COM, { CR, BD } },
2645{ "bnsl-", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2646{ "bnsl+", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2647{ "bnsl", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, COM, { CR, BD } },
2648{ "bnsa-", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2649{ "bnsa+", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2650{ "bnsa", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, COM, { CR, BDA } },
2651{ "bnsla-", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2652{ "bnsla+", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2653{ "bnsla", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, COM, { CR, BDA } },
2654{ "bnu-", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2655{ "bnu+", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2656{ "bnu", BBOCB(16,BOF,CBSO,0,0), BBOATCB_MASK, PPCCOM, { CR, BD } },
2657{ "bnul-", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2658{ "bnul+", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2659{ "bnul", BBOCB(16,BOF,CBSO,0,1), BBOATCB_MASK, PPCCOM, { CR, BD } },
2660{ "bnua-", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2661{ "bnua+", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2662{ "bnua", BBOCB(16,BOF,CBSO,1,0), BBOATCB_MASK, PPCCOM, { CR, BDA } },
2663{ "bnula-", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDMA } },
2664{ "bnula+", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDPA } },
2665{ "bnula", BBOCB(16,BOF,CBSO,1,1), BBOATCB_MASK, PPCCOM, { CR, BDA } },
94efba12
AM
2666{ "bdnzt-", BBO(16,BODNZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2667{ "bdnzt+", BBO(16,BODNZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2668{ "bdnzt", BBO(16,BODNZT,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2669{ "bdnztl-", BBO(16,BODNZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2670{ "bdnztl+", BBO(16,BODNZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2671{ "bdnztl", BBO(16,BODNZT,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2672{ "bdnzta-", BBO(16,BODNZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2673{ "bdnzta+", BBO(16,BODNZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2674{ "bdnzta", BBO(16,BODNZT,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2675{ "bdnztla-",BBO(16,BODNZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2676{ "bdnztla+",BBO(16,BODNZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2677{ "bdnztla", BBO(16,BODNZT,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2678{ "bdnzf-", BBO(16,BODNZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2679{ "bdnzf+", BBO(16,BODNZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2680{ "bdnzf", BBO(16,BODNZF,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2681{ "bdnzfl-", BBO(16,BODNZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2682{ "bdnzfl+", BBO(16,BODNZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2683{ "bdnzfl", BBO(16,BODNZF,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2684{ "bdnzfa-", BBO(16,BODNZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2685{ "bdnzfa+", BBO(16,BODNZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2686{ "bdnzfa", BBO(16,BODNZF,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2687{ "bdnzfla-",BBO(16,BODNZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2688{ "bdnzfla+",BBO(16,BODNZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2689{ "bdnzfla", BBO(16,BODNZF,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
802a735e
AM
2690{ "bt-", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BDM } },
2691{ "bt+", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BDP } },
2692{ "bt", BBO(16,BOT,0,0), BBOAT_MASK, PPCCOM, { BI, BD } },
2693{ "bbt", BBO(16,BOT,0,0), BBOAT_MASK, PWRCOM, { BI, BD } },
2694{ "btl-", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BDM } },
2695{ "btl+", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BDP } },
2696{ "btl", BBO(16,BOT,0,1), BBOAT_MASK, PPCCOM, { BI, BD } },
2697{ "bbtl", BBO(16,BOT,0,1), BBOAT_MASK, PWRCOM, { BI, BD } },
2698{ "bta-", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2699{ "bta+", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2700{ "bta", BBO(16,BOT,1,0), BBOAT_MASK, PPCCOM, { BI, BDA } },
2701{ "bbta", BBO(16,BOT,1,0), BBOAT_MASK, PWRCOM, { BI, BDA } },
2702{ "btla-", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2703{ "btla+", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2704{ "btla", BBO(16,BOT,1,1), BBOAT_MASK, PPCCOM, { BI, BDA } },
2705{ "bbtla", BBO(16,BOT,1,1), BBOAT_MASK, PWRCOM, { BI, BDA } },
2706{ "bf-", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BDM } },
2707{ "bf+", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BDP } },
2708{ "bf", BBO(16,BOF,0,0), BBOAT_MASK, PPCCOM, { BI, BD } },
2709{ "bbf", BBO(16,BOF,0,0), BBOAT_MASK, PWRCOM, { BI, BD } },
2710{ "bfl-", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BDM } },
2711{ "bfl+", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BDP } },
2712{ "bfl", BBO(16,BOF,0,1), BBOAT_MASK, PPCCOM, { BI, BD } },
2713{ "bbfl", BBO(16,BOF,0,1), BBOAT_MASK, PWRCOM, { BI, BD } },
2714{ "bfa-", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2715{ "bfa+", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2716{ "bfa", BBO(16,BOF,1,0), BBOAT_MASK, PPCCOM, { BI, BDA } },
2717{ "bbfa", BBO(16,BOF,1,0), BBOAT_MASK, PWRCOM, { BI, BDA } },
2718{ "bfla-", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDMA } },
2719{ "bfla+", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDPA } },
2720{ "bfla", BBO(16,BOF,1,1), BBOAT_MASK, PPCCOM, { BI, BDA } },
2721{ "bbfla", BBO(16,BOF,1,1), BBOAT_MASK, PWRCOM, { BI, BDA } },
94efba12
AM
2722{ "bdzt-", BBO(16,BODZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2723{ "bdzt+", BBO(16,BODZT,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2724{ "bdzt", BBO(16,BODZT,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2725{ "bdztl-", BBO(16,BODZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2726{ "bdztl+", BBO(16,BODZT,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2727{ "bdztl", BBO(16,BODZT,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2728{ "bdzta-", BBO(16,BODZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2729{ "bdzta+", BBO(16,BODZT,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2730{ "bdzta", BBO(16,BODZT,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2731{ "bdztla-", BBO(16,BODZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2732{ "bdztla+", BBO(16,BODZT,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2733{ "bdztla", BBO(16,BODZT,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2734{ "bdzf-", BBO(16,BODZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDM } },
2735{ "bdzf+", BBO(16,BODZF,0,0), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2736{ "bdzf", BBO(16,BODZF,0,0), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2737{ "bdzfl-", BBO(16,BODZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDM } },
2738{ "bdzfl+", BBO(16,BODZF,0,1), BBOY_MASK, NOPOWER4, { BI, BDP } },
252b5132 2739{ "bdzfl", BBO(16,BODZF,0,1), BBOY_MASK, PPCCOM, { BI, BD } },
94efba12
AM
2740{ "bdzfa-", BBO(16,BODZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2741{ "bdzfa+", BBO(16,BODZF,1,0), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2742{ "bdzfa", BBO(16,BODZF,1,0), BBOY_MASK, PPCCOM, { BI, BDA } },
94efba12
AM
2743{ "bdzfla-", BBO(16,BODZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDMA } },
2744{ "bdzfla+", BBO(16,BODZF,1,1), BBOY_MASK, NOPOWER4, { BI, BDPA } },
252b5132 2745{ "bdzfla", BBO(16,BODZF,1,1), BBOY_MASK, PPCCOM, { BI, BDA } },
d2f75a6f
GK
2746{ "bc-", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDM } },
2747{ "bc+", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDP } },
252b5132 2748{ "bc", B(16,0,0), B_MASK, COM, { BO, BI, BD } },
d2f75a6f
GK
2749{ "bcl-", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDM } },
2750{ "bcl+", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDP } },
252b5132 2751{ "bcl", B(16,0,1), B_MASK, COM, { BO, BI, BD } },
d2f75a6f
GK
2752{ "bca-", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2753{ "bca+", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDPA } },
252b5132 2754{ "bca", B(16,1,0), B_MASK, COM, { BO, BI, BDA } },
d2f75a6f
GK
2755{ "bcla-", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2756{ "bcla+", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDPA } },
252b5132
RH
2757{ "bcla", B(16,1,1), B_MASK, COM, { BO, BI, BDA } },
2758
1ed8e1e4
AM
2759{ "sc", SC(17,1,0), SC_MASK, PPC, { LEV } },
2760{ "svc", SC(17,0,0), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
2761{ "svcl", SC(17,0,1), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
252b5132
RH
2762{ "svca", SC(17,1,0), SC_MASK, PWRCOM, { SV } },
2763{ "svcla", SC(17,1,1), SC_MASK, POWER, { SV } },
2764
418c1742
MG
2765{ "b", B(18,0,0), B_MASK, COM, { LI } },
2766{ "bl", B(18,0,1), B_MASK, COM, { LI } },
2767{ "ba", B(18,1,0), B_MASK, COM, { LIA } },
2768{ "bla", B(18,1,1), B_MASK, COM, { LIA } },
252b5132 2769
112290ab 2770{ "mcrf", XL(19,0), XLBB_MASK|(3 << 21)|(3 << 16), COM, { BF, BFA } },
252b5132
RH
2771
2772{ "blr", XLO(19,BOU,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
2773{ "br", XLO(19,BOU,16,0), XLBOBIBB_MASK, PWRCOM, { 0 } },
2774{ "blrl", XLO(19,BOU,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
2775{ "brl", XLO(19,BOU,16,1), XLBOBIBB_MASK, PWRCOM, { 0 } },
2776{ "bdnzlr", XLO(19,BODNZ,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2777{ "bdnzlr-", XLO(19,BODNZ,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2778{ "bdnzlr-", XLO(19,BODNZM4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2779{ "bdnzlr+", XLO(19,BODNZP,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2780{ "bdnzlr+", XLO(19,BODNZP4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2781{ "bdnzlrl", XLO(19,BODNZ,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2782{ "bdnzlrl-",XLO(19,BODNZ,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2783{ "bdnzlrl-",XLO(19,BODNZM4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2784{ "bdnzlrl+",XLO(19,BODNZP,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2785{ "bdnzlrl+",XLO(19,BODNZP4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2786{ "bdzlr", XLO(19,BODZ,16,0), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2787{ "bdzlr-", XLO(19,BODZ,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2788{ "bdzlr-", XLO(19,BODZM4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2789{ "bdzlr+", XLO(19,BODZP,16,0), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2790{ "bdzlr+", XLO(19,BODZP4,16,0), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2791{ "bdzlrl", XLO(19,BODZ,16,1), XLBOBIBB_MASK, PPCCOM, { 0 } },
94efba12 2792{ "bdzlrl-", XLO(19,BODZ,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2793{ "bdzlrl-", XLO(19,BODZM4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
823bbe9d 2794{ "bdzlrl+", XLO(19,BODZP,16,1), XLBOBIBB_MASK, NOPOWER4, { 0 } },
94efba12 2795{ "bdzlrl+", XLO(19,BODZP4,16,1), XLBOBIBB_MASK, POWER4, { 0 } },
252b5132 2796{ "bltlr", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2797{ "bltlr-", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2798{ "bltlr-", XLOCB(19,BOTM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2799{ "bltlr+", XLOCB(19,BOTP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2800{ "bltlr+", XLOCB(19,BOTP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2801{ "bltr", XLOCB(19,BOT,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2802{ "bltlrl", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2803{ "bltlrl-", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2804{ "bltlrl-", XLOCB(19,BOTM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2805{ "bltlrl+", XLOCB(19,BOTP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2806{ "bltlrl+", XLOCB(19,BOTP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2807{ "bltrl", XLOCB(19,BOT,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2808{ "bgtlr", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2809{ "bgtlr-", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2810{ "bgtlr-", XLOCB(19,BOTM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2811{ "bgtlr+", XLOCB(19,BOTP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2812{ "bgtlr+", XLOCB(19,BOTP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2813{ "bgtr", XLOCB(19,BOT,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2814{ "bgtlrl", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2815{ "bgtlrl-", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2816{ "bgtlrl-", XLOCB(19,BOTM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2817{ "bgtlrl+", XLOCB(19,BOTP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2818{ "bgtlrl+", XLOCB(19,BOTP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2819{ "bgtrl", XLOCB(19,BOT,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2820{ "beqlr", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2821{ "beqlr-", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2822{ "beqlr-", XLOCB(19,BOTM4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2823{ "beqlr+", XLOCB(19,BOTP,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2824{ "beqlr+", XLOCB(19,BOTP4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2825{ "beqr", XLOCB(19,BOT,CBEQ,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2826{ "beqlrl", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2827{ "beqlrl-", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2828{ "beqlrl-", XLOCB(19,BOTM4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2829{ "beqlrl+", XLOCB(19,BOTP,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2830{ "beqlrl+", XLOCB(19,BOTP4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2831{ "beqrl", XLOCB(19,BOT,CBEQ,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2832{ "bsolr", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2833{ "bsolr-", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2834{ "bsolr-", XLOCB(19,BOTM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2835{ "bsolr+", XLOCB(19,BOTP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2836{ "bsolr+", XLOCB(19,BOTP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2837{ "bsor", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2838{ "bsolrl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2839{ "bsolrl-", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2840{ "bsolrl-", XLOCB(19,BOTM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2841{ "bsolrl+", XLOCB(19,BOTP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2842{ "bsolrl+", XLOCB(19,BOTP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2843{ "bsorl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2844{ "bunlr", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2845{ "bunlr-", XLOCB(19,BOT,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2846{ "bunlr-", XLOCB(19,BOTM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2847{ "bunlr+", XLOCB(19,BOTP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2848{ "bunlr+", XLOCB(19,BOTP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2849{ "bunlrl", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2850{ "bunlrl-", XLOCB(19,BOT,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2851{ "bunlrl-", XLOCB(19,BOTM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2852{ "bunlrl+", XLOCB(19,BOTP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2853{ "bunlrl+", XLOCB(19,BOTP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2854{ "bgelr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2855{ "bgelr-", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2856{ "bgelr-", XLOCB(19,BOFM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2857{ "bgelr+", XLOCB(19,BOFP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2858{ "bgelr+", XLOCB(19,BOFP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2859{ "bger", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2860{ "bgelrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2861{ "bgelrl-", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2862{ "bgelrl-", XLOCB(19,BOFM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2863{ "bgelrl+", XLOCB(19,BOFP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2864{ "bgelrl+", XLOCB(19,BOFP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2865{ "bgerl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2866{ "bnllr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2867{ "bnllr-", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2868{ "bnllr-", XLOCB(19,BOFM4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2869{ "bnllr+", XLOCB(19,BOFP,CBLT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2870{ "bnllr+", XLOCB(19,BOFP4,CBLT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2871{ "bnlr", XLOCB(19,BOF,CBLT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2872{ "bnllrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2873{ "bnllrl-", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2874{ "bnllrl-", XLOCB(19,BOFM4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2875{ "bnllrl+", XLOCB(19,BOFP,CBLT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2876{ "bnllrl+", XLOCB(19,BOFP4,CBLT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2877{ "bnlrl", XLOCB(19,BOF,CBLT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2878{ "blelr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2879{ "blelr-", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2880{ "blelr-", XLOCB(19,BOFM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2881{ "blelr+", XLOCB(19,BOFP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2882{ "blelr+", XLOCB(19,BOFP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2883{ "bler", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2884{ "blelrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2885{ "blelrl-", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2886{ "blelrl-", XLOCB(19,BOFM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2887{ "blelrl+", XLOCB(19,BOFP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2888{ "blelrl+", XLOCB(19,BOFP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2889{ "blerl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2890{ "bnglr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2891{ "bnglr-", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2892{ "bnglr-", XLOCB(19,BOFM4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2893{ "bnglr+", XLOCB(19,BOFP,CBGT,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2894{ "bnglr+", XLOCB(19,BOFP4,CBGT,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2895{ "bngr", XLOCB(19,BOF,CBGT,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2896{ "bnglrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2897{ "bnglrl-", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2898{ "bnglrl-", XLOCB(19,BOFM4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2899{ "bnglrl+", XLOCB(19,BOFP,CBGT,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2900{ "bnglrl+", XLOCB(19,BOFP4,CBGT,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2901{ "bngrl", XLOCB(19,BOF,CBGT,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2902{ "bnelr", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2903{ "bnelr-", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2904{ "bnelr-", XLOCB(19,BOFM4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2905{ "bnelr+", XLOCB(19,BOFP,CBEQ,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2906{ "bnelr+", XLOCB(19,BOFP4,CBEQ,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2907{ "bner", XLOCB(19,BOF,CBEQ,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2908{ "bnelrl", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2909{ "bnelrl-", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2910{ "bnelrl-", XLOCB(19,BOFM4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2911{ "bnelrl+", XLOCB(19,BOFP,CBEQ,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2912{ "bnelrl+", XLOCB(19,BOFP4,CBEQ,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2913{ "bnerl", XLOCB(19,BOF,CBEQ,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2914{ "bnslr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2915{ "bnslr-", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2916{ "bnslr-", XLOCB(19,BOFM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2917{ "bnslr+", XLOCB(19,BOFP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2918{ "bnslr+", XLOCB(19,BOFP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2919{ "bnsr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PWRCOM, { CR } },
2920{ "bnslrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2921{ "bnslrl-", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2922{ "bnslrl-", XLOCB(19,BOFM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2923{ "bnslrl+", XLOCB(19,BOFP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2924{ "bnslrl+", XLOCB(19,BOFP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132
RH
2925{ "bnsrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PWRCOM, { CR } },
2926{ "bnulr", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2927{ "bnulr-", XLOCB(19,BOF,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2928{ "bnulr-", XLOCB(19,BOFM4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2929{ "bnulr+", XLOCB(19,BOFP,CBSO,16,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2930{ "bnulr+", XLOCB(19,BOFP4,CBSO,16,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2931{ "bnulrl", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 2932{ "bnulrl-", XLOCB(19,BOF,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2933{ "bnulrl-", XLOCB(19,BOFM4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 2934{ "bnulrl+", XLOCB(19,BOFP,CBSO,16,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 2935{ "bnulrl+", XLOCB(19,BOFP4,CBSO,16,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 2936{ "btlr", XLO(19,BOT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2937{ "btlr-", XLO(19,BOT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2938{ "btlr-", XLO(19,BOTM4,16,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2939{ "btlr+", XLO(19,BOTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2940{ "btlr+", XLO(19,BOTP4,16,0), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2941{ "bbtr", XLO(19,BOT,16,0), XLBOBB_MASK, PWRCOM, { BI } },
2942{ "btlrl", XLO(19,BOT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2943{ "btlrl-", XLO(19,BOT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2944{ "btlrl-", XLO(19,BOTM4,16,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2945{ "btlrl+", XLO(19,BOTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2946{ "btlrl+", XLO(19,BOTP4,16,1), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2947{ "bbtrl", XLO(19,BOT,16,1), XLBOBB_MASK, PWRCOM, { BI } },
2948{ "bflr", XLO(19,BOF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2949{ "bflr-", XLO(19,BOF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2950{ "bflr-", XLO(19,BOFM4,16,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2951{ "bflr+", XLO(19,BOFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2952{ "bflr+", XLO(19,BOFP4,16,0), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2953{ "bbfr", XLO(19,BOF,16,0), XLBOBB_MASK, PWRCOM, { BI } },
2954{ "bflrl", XLO(19,BOF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 2955{ "bflrl-", XLO(19,BOF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2956{ "bflrl-", XLO(19,BOFM4,16,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 2957{ "bflrl+", XLO(19,BOFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 2958{ "bflrl+", XLO(19,BOFP4,16,1), XLBOBB_MASK, POWER4, { BI } },
252b5132
RH
2959{ "bbfrl", XLO(19,BOF,16,1), XLBOBB_MASK, PWRCOM, { BI } },
2960{ "bdnztlr", XLO(19,BODNZT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2961{ "bdnztlr-",XLO(19,BODNZT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2962{ "bdnztlr+",XLO(19,BODNZTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2963{ "bdnztlrl",XLO(19,BODNZT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2964{ "bdnztlrl-",XLO(19,BODNZT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2965{ "bdnztlrl+",XLO(19,BODNZTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2966{ "bdnzflr", XLO(19,BODNZF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2967{ "bdnzflr-",XLO(19,BODNZF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2968{ "bdnzflr+",XLO(19,BODNZFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2969{ "bdnzflrl",XLO(19,BODNZF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2970{ "bdnzflrl-",XLO(19,BODNZF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2971{ "bdnzflrl+",XLO(19,BODNZFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2972{ "bdztlr", XLO(19,BODZT,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2973{ "bdztlr-", XLO(19,BODZT,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2974{ "bdztlr+", XLO(19,BODZTP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2975{ "bdztlrl", XLO(19,BODZT,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2976{ "bdztlrl-",XLO(19,BODZT,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2977{ "bdztlrl+",XLO(19,BODZTP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2978{ "bdzflr", XLO(19,BODZF,16,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2979{ "bdzflr-", XLO(19,BODZF,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
2980{ "bdzflr+", XLO(19,BODZFP,16,0), XLBOBB_MASK, NOPOWER4, { BI } },
252b5132 2981{ "bdzflrl", XLO(19,BODZF,16,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12
AM
2982{ "bdzflrl-",XLO(19,BODZF,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
2983{ "bdzflrl+",XLO(19,BODZFP,16,1), XLBOBB_MASK, NOPOWER4, { BI } },
d2f75a6f
GK
2984{ "bclr+", XLYLK(19,16,1,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
2985{ "bclrl+", XLYLK(19,16,1,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
2986{ "bclr-", XLYLK(19,16,0,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
2987{ "bclrl-", XLYLK(19,16,0,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
d0618d1c
AM
2988{ "bclr", XLLK(19,16,0), XLBH_MASK, PPCCOM, { BO, BI, BH } },
2989{ "bclrl", XLLK(19,16,1), XLBH_MASK, PPCCOM, { BO, BI, BH } },
252b5132
RH
2990{ "bcr", XLLK(19,16,0), XLBB_MASK, PWRCOM, { BO, BI } },
2991{ "bcrl", XLLK(19,16,1), XLBB_MASK, PWRCOM, { BO, BI } },
418c1742
MG
2992{ "bclre", XLLK(19,17,0), XLBB_MASK, BOOKE64, { BO, BI } },
2993{ "bclrel", XLLK(19,17,1), XLBB_MASK, BOOKE64, { BO, BI } },
252b5132 2994
f509565f
GK
2995{ "rfid", XL(19,18), 0xffffffff, PPC64, { 0 } },
2996
252b5132
RH
2997{ "crnot", XL(19,33), XL_MASK, PPCCOM, { BT, BA, BBA } },
2998{ "crnor", XL(19,33), XL_MASK, COM, { BT, BA, BB } },
112290ab 2999{ "rfmci", X(19,38), 0xffffffff, PPCRFMCI, { 0 } },
252b5132
RH
3000
3001{ "rfi", XL(19,50), 0xffffffff, COM, { 0 } },
823bbe9d 3002{ "rfci", XL(19,51), 0xffffffff, PPC403 | BOOKE, { 0 } },
252b5132
RH
3003
3004{ "rfsvc", XL(19,82), 0xffffffff, POWER, { 0 } },
3005
3006{ "crandc", XL(19,129), XL_MASK, COM, { BT, BA, BB } },
3007
3008{ "isync", XL(19,150), 0xffffffff, PPCCOM, { 0 } },
3009{ "ics", XL(19,150), 0xffffffff, PWRCOM, { 0 } },
3010
3011{ "crclr", XL(19,193), XL_MASK, PPCCOM, { BT, BAT, BBA } },
3012{ "crxor", XL(19,193), XL_MASK, COM, { BT, BA, BB } },
3013
3014{ "crnand", XL(19,225), XL_MASK, COM, { BT, BA, BB } },
3015
3016{ "crand", XL(19,257), XL_MASK, COM, { BT, BA, BB } },
3017
ede602d7 3018{ "hrfid", XL(19,274), 0xffffffff, POWER5 | CELL, { 0 } },
1ed8e1e4 3019
252b5132
RH
3020{ "crset", XL(19,289), XL_MASK, PPCCOM, { BT, BAT, BBA } },
3021{ "creqv", XL(19,289), XL_MASK, COM, { BT, BA, BB } },
3022
3023{ "crorc", XL(19,417), XL_MASK, COM, { BT, BA, BB } },
3024
3025{ "crmove", XL(19,449), XL_MASK, PPCCOM, { BT, BA, BBA } },
3026{ "cror", XL(19,449), XL_MASK, COM, { BT, BA, BB } },
3027
3028{ "bctr", XLO(19,BOU,528,0), XLBOBIBB_MASK, COM, { 0 } },
3029{ "bctrl", XLO(19,BOU,528,1), XLBOBIBB_MASK, COM, { 0 } },
3030{ "bltctr", XLOCB(19,BOT,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3031{ "bltctr-", XLOCB(19,BOT,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3032{ "bltctr-", XLOCB(19,BOTM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3033{ "bltctr+", XLOCB(19,BOTP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3034{ "bltctr+", XLOCB(19,BOTP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3035{ "bltctrl", XLOCB(19,BOT,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3036{ "bltctrl-",XLOCB(19,BOT,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3037{ "bltctrl-",XLOCB(19,BOTM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3038{ "bltctrl+",XLOCB(19,BOTP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3039{ "bltctrl+",XLOCB(19,BOTP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3040{ "bgtctr", XLOCB(19,BOT,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3041{ "bgtctr-", XLOCB(19,BOT,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3042{ "bgtctr-", XLOCB(19,BOTM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3043{ "bgtctr+", XLOCB(19,BOTP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3044{ "bgtctr+", XLOCB(19,BOTP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3045{ "bgtctrl", XLOCB(19,BOT,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3046{ "bgtctrl-",XLOCB(19,BOT,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3047{ "bgtctrl-",XLOCB(19,BOTM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3048{ "bgtctrl+",XLOCB(19,BOTP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3049{ "bgtctrl+",XLOCB(19,BOTP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3050{ "beqctr", XLOCB(19,BOT,CBEQ,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3051{ "beqctr-", XLOCB(19,BOT,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3052{ "beqctr-", XLOCB(19,BOTM4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3053{ "beqctr+", XLOCB(19,BOTP,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3054{ "beqctr+", XLOCB(19,BOTP4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3055{ "beqctrl", XLOCB(19,BOT,CBEQ,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3056{ "beqctrl-",XLOCB(19,BOT,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3057{ "beqctrl-",XLOCB(19,BOTM4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3058{ "beqctrl+",XLOCB(19,BOTP,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3059{ "beqctrl+",XLOCB(19,BOTP4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3060{ "bsoctr", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3061{ "bsoctr-", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3062{ "bsoctr-", XLOCB(19,BOTM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3063{ "bsoctr+", XLOCB(19,BOTP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3064{ "bsoctr+", XLOCB(19,BOTP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3065{ "bsoctrl", XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3066{ "bsoctrl-",XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3067{ "bsoctrl-",XLOCB(19,BOTM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3068{ "bsoctrl+",XLOCB(19,BOTP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3069{ "bsoctrl+",XLOCB(19,BOTP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3070{ "bunctr", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3071{ "bunctr-", XLOCB(19,BOT,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3072{ "bunctr-", XLOCB(19,BOTM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3073{ "bunctr+", XLOCB(19,BOTP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3074{ "bunctr+", XLOCB(19,BOTP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3075{ "bunctrl", XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3076{ "bunctrl-",XLOCB(19,BOT,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3077{ "bunctrl-",XLOCB(19,BOTM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3078{ "bunctrl+",XLOCB(19,BOTP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3079{ "bunctrl+",XLOCB(19,BOTP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3080{ "bgectr", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3081{ "bgectr-", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3082{ "bgectr-", XLOCB(19,BOFM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3083{ "bgectr+", XLOCB(19,BOFP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3084{ "bgectr+", XLOCB(19,BOFP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3085{ "bgectrl", XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3086{ "bgectrl-",XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3087{ "bgectrl-",XLOCB(19,BOFM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3088{ "bgectrl+",XLOCB(19,BOFP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3089{ "bgectrl+",XLOCB(19,BOFP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3090{ "bnlctr", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3091{ "bnlctr-", XLOCB(19,BOF,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3092{ "bnlctr-", XLOCB(19,BOFM4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3093{ "bnlctr+", XLOCB(19,BOFP,CBLT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3094{ "bnlctr+", XLOCB(19,BOFP4,CBLT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3095{ "bnlctrl", XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3096{ "bnlctrl-",XLOCB(19,BOF,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3097{ "bnlctrl-",XLOCB(19,BOFM4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3098{ "bnlctrl+",XLOCB(19,BOFP,CBLT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3099{ "bnlctrl+",XLOCB(19,BOFP4,CBLT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3100{ "blectr", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3101{ "blectr-", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3102{ "blectr-", XLOCB(19,BOFM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3103{ "blectr+", XLOCB(19,BOFP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3104{ "blectr+", XLOCB(19,BOFP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3105{ "blectrl", XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3106{ "blectrl-",XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3107{ "blectrl-",XLOCB(19,BOFM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3108{ "blectrl+",XLOCB(19,BOFP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3109{ "blectrl+",XLOCB(19,BOFP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3110{ "bngctr", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3111{ "bngctr-", XLOCB(19,BOF,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3112{ "bngctr-", XLOCB(19,BOFM4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3113{ "bngctr+", XLOCB(19,BOFP,CBGT,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3114{ "bngctr+", XLOCB(19,BOFP4,CBGT,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3115{ "bngctrl", XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3116{ "bngctrl-",XLOCB(19,BOF,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3117{ "bngctrl-",XLOCB(19,BOFM4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3118{ "bngctrl+",XLOCB(19,BOFP,CBGT,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3119{ "bngctrl+",XLOCB(19,BOFP4,CBGT,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3120{ "bnectr", XLOCB(19,BOF,CBEQ,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3121{ "bnectr-", XLOCB(19,BOF,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3122{ "bnectr-", XLOCB(19,BOFM4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3123{ "bnectr+", XLOCB(19,BOFP,CBEQ,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3124{ "bnectr+", XLOCB(19,BOFP4,CBEQ,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3125{ "bnectrl", XLOCB(19,BOF,CBEQ,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3126{ "bnectrl-",XLOCB(19,BOF,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3127{ "bnectrl-",XLOCB(19,BOFM4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3128{ "bnectrl+",XLOCB(19,BOFP,CBEQ,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3129{ "bnectrl+",XLOCB(19,BOFP4,CBEQ,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3130{ "bnsctr", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3131{ "bnsctr-", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3132{ "bnsctr-", XLOCB(19,BOFM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3133{ "bnsctr+", XLOCB(19,BOFP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3134{ "bnsctr+", XLOCB(19,BOFP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3135{ "bnsctrl", XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3136{ "bnsctrl-",XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3137{ "bnsctrl-",XLOCB(19,BOFM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3138{ "bnsctrl+",XLOCB(19,BOFP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3139{ "bnsctrl+",XLOCB(19,BOFP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3140{ "bnuctr", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3141{ "bnuctr-", XLOCB(19,BOF,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3142{ "bnuctr-", XLOCB(19,BOFM4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3143{ "bnuctr+", XLOCB(19,BOFP,CBSO,528,0), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3144{ "bnuctr+", XLOCB(19,BOFP4,CBSO,528,0), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3145{ "bnuctrl", XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, PPCCOM, { CR } },
94efba12 3146{ "bnuctrl-",XLOCB(19,BOF,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3147{ "bnuctrl-",XLOCB(19,BOFM4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
823bbe9d 3148{ "bnuctrl+",XLOCB(19,BOFP,CBSO,528,1), XLBOCBBB_MASK, NOPOWER4, { CR } },
94efba12 3149{ "bnuctrl+",XLOCB(19,BOFP4,CBSO,528,1), XLBOCBBB_MASK, POWER4, { CR } },
252b5132 3150{ "btctr", XLO(19,BOT,528,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3151{ "btctr-", XLO(19,BOT,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3152{ "btctr-", XLO(19,BOTM4,528,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3153{ "btctr+", XLO(19,BOTP,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3154{ "btctr+", XLO(19,BOTP4,528,0), XLBOBB_MASK, POWER4, { BI } },
252b5132 3155{ "btctrl", XLO(19,BOT,528,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3156{ "btctrl-", XLO(19,BOT,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3157{ "btctrl-", XLO(19,BOTM4,528,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3158{ "btctrl+", XLO(19,BOTP,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3159{ "btctrl+", XLO(19,BOTP4,528,1), XLBOBB_MASK, POWER4, { BI } },
252b5132 3160{ "bfctr", XLO(19,BOF,528,0), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3161{ "bfctr-", XLO(19,BOF,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3162{ "bfctr-", XLO(19,BOFM4,528,0), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3163{ "bfctr+", XLO(19,BOFP,528,0), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3164{ "bfctr+", XLO(19,BOFP4,528,0), XLBOBB_MASK, POWER4, { BI } },
252b5132 3165{ "bfctrl", XLO(19,BOF,528,1), XLBOBB_MASK, PPCCOM, { BI } },
94efba12 3166{ "bfctrl-", XLO(19,BOF,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3167{ "bfctrl-", XLO(19,BOFM4,528,1), XLBOBB_MASK, POWER4, { BI } },
823bbe9d 3168{ "bfctrl+", XLO(19,BOFP,528,1), XLBOBB_MASK, NOPOWER4, { BI } },
94efba12 3169{ "bfctrl+", XLO(19,BOFP4,528,1), XLBOBB_MASK, POWER4, { BI } },
d2f75a6f
GK
3170{ "bcctr-", XLYLK(19,528,0,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
3171{ "bcctr+", XLYLK(19,528,1,0), XLYBB_MASK, PPCCOM, { BOE, BI } },
d2f75a6f
GK
3172{ "bcctrl-", XLYLK(19,528,0,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
3173{ "bcctrl+", XLYLK(19,528,1,1), XLYBB_MASK, PPCCOM, { BOE, BI } },
d0618d1c
AM
3174{ "bcctr", XLLK(19,528,0), XLBH_MASK, PPCCOM, { BO, BI, BH } },
3175{ "bcctrl", XLLK(19,528,1), XLBH_MASK, PPCCOM, { BO, BI, BH } },
252b5132
RH
3176{ "bcc", XLLK(19,528,0), XLBB_MASK, PWRCOM, { BO, BI } },
3177{ "bccl", XLLK(19,528,1), XLBB_MASK, PWRCOM, { BO, BI } },
418c1742
MG
3178{ "bcctre", XLLK(19,529,0), XLYBB_MASK, BOOKE64, { BO, BI } },
3179{ "bcctrel", XLLK(19,529,1), XLYBB_MASK, BOOKE64, { BO, BI } },
252b5132
RH
3180
3181{ "rlwimi", M(20,0), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3182{ "rlimi", M(20,0), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3183
3184{ "rlwimi.", M(20,1), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3185{ "rlimi.", M(20,1), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3186
3187{ "rotlwi", MME(21,31,0), MMBME_MASK, PPCCOM, { RA, RS, SH } },
3188{ "clrlwi", MME(21,31,0), MSHME_MASK, PPCCOM, { RA, RS, MB } },
3189{ "rlwinm", M(21,0), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3190{ "rlinm", M(21,0), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3191{ "rotlwi.", MME(21,31,1), MMBME_MASK, PPCCOM, { RA,RS,SH } },
3192{ "clrlwi.", MME(21,31,1), MSHME_MASK, PPCCOM, { RA, RS, MB } },
3193{ "rlwinm.", M(21,1), M_MASK, PPCCOM, { RA,RS,SH,MBE,ME } },
3194{ "rlinm.", M(21,1), M_MASK, PWRCOM, { RA,RS,SH,MBE,ME } },
3195
3196{ "rlmi", M(22,0), M_MASK, M601, { RA,RS,RB,MBE,ME } },
3197{ "rlmi.", M(22,1), M_MASK, M601, { RA,RS,RB,MBE,ME } },
3198
418c1742
MG
3199{ "be", B(22,0,0), B_MASK, BOOKE64, { LI } },
3200{ "bel", B(22,0,1), B_MASK, BOOKE64, { LI } },
3201{ "bea", B(22,1,0), B_MASK, BOOKE64, { LIA } },
3202{ "bela", B(22,1,1), B_MASK, BOOKE64, { LIA } },
3203
252b5132
RH
3204{ "rotlw", MME(23,31,0), MMBME_MASK, PPCCOM, { RA, RS, RB } },
3205{ "rlwnm", M(23,0), M_MASK, PPCCOM, { RA,RS,RB,MBE,ME } },
3206{ "rlnm", M(23,0), M_MASK, PWRCOM, { RA,RS,RB,MBE,ME } },
3207{ "rotlw.", MME(23,31,1), MMBME_MASK, PPCCOM, { RA, RS, RB } },
3208{ "rlwnm.", M(23,1), M_MASK, PPCCOM, { RA,RS,RB,MBE,ME } },
3209{ "rlnm.", M(23,1), M_MASK, PWRCOM, { RA,RS,RB,MBE,ME } },
3210
3211{ "nop", OP(24), 0xffffffff, PPCCOM, { 0 } },
3212{ "ori", OP(24), OP_MASK, PPCCOM, { RA, RS, UI } },
3213{ "oril", OP(24), OP_MASK, PWRCOM, { RA, RS, UI } },
3214
3215{ "oris", OP(25), OP_MASK, PPCCOM, { RA, RS, UI } },
3216{ "oriu", OP(25), OP_MASK, PWRCOM, { RA, RS, UI } },
3217
3218{ "xori", OP(26), OP_MASK, PPCCOM, { RA, RS, UI } },
3219{ "xoril", OP(26), OP_MASK, PWRCOM, { RA, RS, UI } },
3220
3221{ "xoris", OP(27), OP_MASK, PPCCOM, { RA, RS, UI } },
3222{ "xoriu", OP(27), OP_MASK, PWRCOM, { RA, RS, UI } },
3223
3224{ "andi.", OP(28), OP_MASK, PPCCOM, { RA, RS, UI } },
3225{ "andil.", OP(28), OP_MASK, PWRCOM, { RA, RS, UI } },
3226
3227{ "andis.", OP(29), OP_MASK, PPCCOM, { RA, RS, UI } },
3228{ "andiu.", OP(29), OP_MASK, PWRCOM, { RA, RS, UI } },
3229
3230{ "rotldi", MD(30,0,0), MDMB_MASK, PPC64, { RA, RS, SH6 } },
3231{ "clrldi", MD(30,0,0), MDSH_MASK, PPC64, { RA, RS, MB6 } },
3232{ "rldicl", MD(30,0,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3233{ "rotldi.", MD(30,0,1), MDMB_MASK, PPC64, { RA, RS, SH6 } },
3234{ "clrldi.", MD(30,0,1), MDSH_MASK, PPC64, { RA, RS, MB6 } },
3235{ "rldicl.", MD(30,0,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3236
3237{ "rldicr", MD(30,1,0), MD_MASK, PPC64, { RA, RS, SH6, ME6 } },
3238{ "rldicr.", MD(30,1,1), MD_MASK, PPC64, { RA, RS, SH6, ME6 } },
3239
3240{ "rldic", MD(30,2,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3241{ "rldic.", MD(30,2,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3242
3243{ "rldimi", MD(30,3,0), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3244{ "rldimi.", MD(30,3,1), MD_MASK, PPC64, { RA, RS, SH6, MB6 } },
3245
3246{ "rotld", MDS(30,8,0), MDSMB_MASK, PPC64, { RA, RS, RB } },
3247{ "rldcl", MDS(30,8,0), MDS_MASK, PPC64, { RA, RS, RB, MB6 } },
3248{ "rotld.", MDS(30,8,1), MDSMB_MASK, PPC64, { RA, RS, RB } },
3249{ "rldcl.", MDS(30,8,1), MDS_MASK, PPC64, { RA, RS, RB, MB6 } },
3250
3251{ "rldcr", MDS(30,9,0), MDS_MASK, PPC64, { RA, RS, RB, ME6 } },
3252{ "rldcr.", MDS(30,9,1), MDS_MASK, PPC64, { RA, RS, RB, ME6 } },
3253
520ceea4
BE
3254{ "cmpw", XOPL(31,0,0), XCMPL_MASK, PPCCOM, { OBF, RA, RB } },
3255{ "cmpd", XOPL(31,0,1), XCMPL_MASK, PPC64, { OBF, RA, RB } },
661bd698 3256{ "cmp", X(31,0), XCMP_MASK, PPC, { BF, L, RA, RB } },
520ceea4 3257{ "cmp", X(31,0), XCMPL_MASK, PWRCOM, { BF, RA, RB } },
252b5132
RH
3258
3259{ "twlgt", XTO(31,4,TOLGT), XTO_MASK, PPCCOM, { RA, RB } },
3260{ "tlgt", XTO(31,4,TOLGT), XTO_MASK, PWRCOM, { RA, RB } },
3261{ "twllt", XTO(31,4,TOLLT), XTO_MASK, PPCCOM, { RA, RB } },
3262{ "tllt", XTO(31,4,TOLLT), XTO_MASK, PWRCOM, { RA, RB } },
3263{ "tweq", XTO(31,4,TOEQ), XTO_MASK, PPCCOM, { RA, RB } },
3264{ "teq", XTO(31,4,TOEQ), XTO_MASK, PWRCOM, { RA, RB } },
3265{ "twlge", XTO(31,4,TOLGE), XTO_MASK, PPCCOM, { RA, RB } },
3266{ "tlge", XTO(31,4,TOLGE), XTO_MASK, PWRCOM, { RA, RB } },
3267{ "twlnl", XTO(31,4,TOLNL), XTO_MASK, PPCCOM, { RA, RB } },
3268{ "tlnl", XTO(31,4,TOLNL), XTO_MASK, PWRCOM, { RA, RB } },
3269{ "twlle", XTO(31,4,TOLLE), XTO_MASK, PPCCOM, { RA, RB } },
3270{ "tlle", XTO(31,4,TOLLE), XTO_MASK, PWRCOM, { RA, RB } },
3271{ "twlng", XTO(31,4,TOLNG), XTO_MASK, PPCCOM, { RA, RB } },
3272{ "tlng", XTO(31,4,TOLNG), XTO_MASK, PWRCOM, { RA, RB } },
3273{ "twgt", XTO(31,4,TOGT), XTO_MASK, PPCCOM, { RA, RB } },
3274{ "tgt", XTO(31,4,TOGT), XTO_MASK, PWRCOM, { RA, RB } },
3275{ "twge", XTO(31,4,TOGE), XTO_MASK, PPCCOM, { RA, RB } },
3276{ "tge", XTO(31,4,TOGE), XTO_MASK, PWRCOM, { RA, RB } },
3277{ "twnl", XTO(31,4,TONL), XTO_MASK, PPCCOM, { RA, RB } },
3278{ "tnl", XTO(31,4,TONL), XTO_MASK, PWRCOM, { RA, RB } },
3279{ "twlt", XTO(31,4,TOLT), XTO_MASK, PPCCOM, { RA, RB } },
3280{ "tlt", XTO(31,4,TOLT), XTO_MASK, PWRCOM, { RA, RB } },
3281{ "twle", XTO(31,4,TOLE), XTO_MASK, PPCCOM, { RA, RB } },
3282{ "tle", XTO(31,4,TOLE), XTO_MASK, PWRCOM, { RA, RB } },
3283{ "twng", XTO(31,4,TONG), XTO_MASK, PPCCOM, { RA, RB } },
3284{ "tng", XTO(31,4,TONG), XTO_MASK, PWRCOM, { RA, RB } },
3285{ "twne", XTO(31,4,TONE), XTO_MASK, PPCCOM, { RA, RB } },
3286{ "tne", XTO(31,4,TONE), XTO_MASK, PWRCOM, { RA, RB } },
3287{ "trap", XTO(31,4,TOU), 0xffffffff, PPCCOM, { 0 } },
3288{ "tw", X(31,4), X_MASK, PPCCOM, { TO, RA, RB } },
3289{ "t", X(31,4), X_MASK, PWRCOM, { TO, RA, RB } },
3290
3291{ "subfc", XO(31,8,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3292{ "sf", XO(31,8,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3293{ "subc", XO(31,8,0,0), XO_MASK, PPC, { RT, RB, RA } },
3294{ "subfc.", XO(31,8,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3295{ "sf.", XO(31,8,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3296{ "subc.", XO(31,8,0,1), XO_MASK, PPCCOM, { RT, RB, RA } },
3297{ "subfco", XO(31,8,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3298{ "sfo", XO(31,8,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3299{ "subco", XO(31,8,1,0), XO_MASK, PPC, { RT, RB, RA } },
3300{ "subfco.", XO(31,8,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3301{ "sfo.", XO(31,8,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3302{ "subco.", XO(31,8,1,1), XO_MASK, PPC, { RT, RB, RA } },
3303
3304{ "mulhdu", XO(31,9,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3305{ "mulhdu.", XO(31,9,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3306
3307{ "addc", XO(31,10,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3308{ "a", XO(31,10,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3309{ "addc.", XO(31,10,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3310{ "a.", XO(31,10,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3311{ "addco", XO(31,10,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3312{ "ao", XO(31,10,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3313{ "addco.", XO(31,10,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3314{ "ao.", XO(31,10,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3315
3316{ "mulhwu", XO(31,11,0,0), XO_MASK, PPC, { RT, RA, RB } },
3317{ "mulhwu.", XO(31,11,0,1), XO_MASK, PPC, { RT, RA, RB } },
3318
dde1b132
NC
3319{ "isellt", X(31,15), X_MASK, PPCISEL, { RT, RA, RB } },
3320{ "iselgt", X(31,47), X_MASK, PPCISEL, { RT, RA, RB } },
3321{ "iseleq", X(31,79), X_MASK, PPCISEL, { RT, RA, RB } },
3322{ "isel", XISEL(31,15), XISEL_MASK, PPCISEL, { RT, RA, RB, CRB } },
23976049 3323
98e69875 3324{ "mfocrf", XFXM(31,19,0,1), XFXFXM_MASK, COM, { RT, FXM } },
c168870a
AM
3325{ "mfcr", X(31,19), XRARB_MASK, NOPOWER4, { RT } },
3326{ "mfcr", X(31,19), XFXFXM_MASK, POWER4, { RT, FXM4 } },
252b5132 3327
fdd12ef3 3328{ "lwarx", X(31,20), X_MASK, PPC, { RT, RA0, RB } },
252b5132 3329
fdd12ef3 3330{ "ldx", X(31,21), X_MASK, PPC64, { RT, RA0, RB } },
252b5132 3331
36ae0db3 3332{ "icbt", X(31,22), X_MASK, BOOKE|PPCE300, { CT, RA, RB } },
823bbe9d 3333{ "icbt", X(31,262), XRT_MASK, PPC403, { RA, RB } },
418c1742 3334
fdd12ef3 3335{ "lwzx", X(31,23), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
3336{ "lx", X(31,23), X_MASK, PWRCOM, { RT, RA, RB } },
3337
3338{ "slw", XRC(31,24,0), X_MASK, PPCCOM, { RA, RS, RB } },
3339{ "sl", XRC(31,24,0), X_MASK, PWRCOM, { RA, RS, RB } },
3340{ "slw.", XRC(31,24,1), X_MASK, PPCCOM, { RA, RS, RB } },
3341{ "sl.", XRC(31,24,1), X_MASK, PWRCOM, { RA, RS, RB } },
3342
3343{ "cntlzw", XRC(31,26,0), XRB_MASK, PPCCOM, { RA, RS } },
3344{ "cntlz", XRC(31,26,0), XRB_MASK, PWRCOM, { RA, RS } },
3345{ "cntlzw.", XRC(31,26,1), XRB_MASK, PPCCOM, { RA, RS } },
3346{ "cntlz.", XRC(31,26,1), XRB_MASK, PWRCOM, { RA, RS } },
3347
3348{ "sld", XRC(31,27,0), X_MASK, PPC64, { RA, RS, RB } },
3349{ "sld.", XRC(31,27,1), X_MASK, PPC64, { RA, RS, RB } },
3350
3351{ "and", XRC(31,28,0), X_MASK, COM, { RA, RS, RB } },
3352{ "and.", XRC(31,28,1), X_MASK, COM, { RA, RS, RB } },
3353
3354{ "maskg", XRC(31,29,0), X_MASK, M601, { RA, RS, RB } },
3355{ "maskg.", XRC(31,29,1), X_MASK, M601, { RA, RS, RB } },
3356
418c1742
MG
3357{ "icbte", X(31,30), X_MASK, BOOKE64, { CT, RA, RB } },
3358
fdd12ef3 3359{ "lwzxe", X(31,31), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3360
520ceea4
BE
3361{ "cmplw", XOPL(31,32,0), XCMPL_MASK, PPCCOM, { OBF, RA, RB } },
3362{ "cmpld", XOPL(31,32,1), XCMPL_MASK, PPC64, { OBF, RA, RB } },
661bd698 3363{ "cmpl", X(31,32), XCMP_MASK, PPC, { BF, L, RA, RB } },
520ceea4 3364{ "cmpl", X(31,32), XCMPL_MASK, PWRCOM, { BF, RA, RB } },
252b5132
RH
3365
3366{ "subf", XO(31,40,0,0), XO_MASK, PPC, { RT, RA, RB } },
3367{ "sub", XO(31,40,0,0), XO_MASK, PPC, { RT, RB, RA } },
3368{ "subf.", XO(31,40,0,1), XO_MASK, PPC, { RT, RA, RB } },
3369{ "sub.", XO(31,40,0,1), XO_MASK, PPC, { RT, RB, RA } },
3370{ "subfo", XO(31,40,1,0), XO_MASK, PPC, { RT, RA, RB } },
3371{ "subo", XO(31,40,1,0), XO_MASK, PPC, { RT, RB, RA } },
3372{ "subfo.", XO(31,40,1,1), XO_MASK, PPC, { RT, RA, RB } },
3373{ "subo.", XO(31,40,1,1), XO_MASK, PPC, { RT, RB, RA } },
3374
3375{ "ldux", X(31,53), X_MASK, PPC64, { RT, RAL, RB } },
3376
3377{ "dcbst", X(31,54), XRT_MASK, PPC, { RA, RB } },
3378
3379{ "lwzux", X(31,55), X_MASK, PPCCOM, { RT, RAL, RB } },
3380{ "lux", X(31,55), X_MASK, PWRCOM, { RT, RA, RB } },
3381
418c1742
MG
3382{ "dcbste", X(31,62), XRT_MASK, BOOKE64, { RA, RB } },
3383
3384{ "lwzuxe", X(31,63), X_MASK, BOOKE64, { RT, RAL, RB } },
3385
252b5132
RH
3386{ "cntlzd", XRC(31,58,0), XRB_MASK, PPC64, { RA, RS } },
3387{ "cntlzd.", XRC(31,58,1), XRB_MASK, PPC64, { RA, RS } },
3388
418c1742
MG
3389{ "andc", XRC(31,60,0), X_MASK, COM, { RA, RS, RB } },
3390{ "andc.", XRC(31,60,1), X_MASK, COM, { RA, RS, RB } },
252b5132
RH
3391
3392{ "tdlgt", XTO(31,68,TOLGT), XTO_MASK, PPC64, { RA, RB } },
3393{ "tdllt", XTO(31,68,TOLLT), XTO_MASK, PPC64, { RA, RB } },
3394{ "tdeq", XTO(31,68,TOEQ), XTO_MASK, PPC64, { RA, RB } },
3395{ "tdlge", XTO(31,68,TOLGE), XTO_MASK, PPC64, { RA, RB } },
3396{ "tdlnl", XTO(31,68,TOLNL), XTO_MASK, PPC64, { RA, RB } },
3397{ "tdlle", XTO(31,68,TOLLE), XTO_MASK, PPC64, { RA, RB } },
3398{ "tdlng", XTO(31,68,TOLNG), XTO_MASK, PPC64, { RA, RB } },
3399{ "tdgt", XTO(31,68,TOGT), XTO_MASK, PPC64, { RA, RB } },
3400{ "tdge", XTO(31,68,TOGE), XTO_MASK, PPC64, { RA, RB } },
3401{ "tdnl", XTO(31,68,TONL), XTO_MASK, PPC64, { RA, RB } },
3402{ "tdlt", XTO(31,68,TOLT), XTO_MASK, PPC64, { RA, RB } },
3403{ "tdle", XTO(31,68,TOLE), XTO_MASK, PPC64, { RA, RB } },
3404{ "tdng", XTO(31,68,TONG), XTO_MASK, PPC64, { RA, RB } },
3405{ "tdne", XTO(31,68,TONE), XTO_MASK, PPC64, { RA, RB } },
3406{ "td", X(31,68), X_MASK, PPC64, { TO, RA, RB } },
3407
3408{ "mulhd", XO(31,73,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3409{ "mulhd.", XO(31,73,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3410
3411{ "mulhw", XO(31,75,0,0), XO_MASK, PPC, { RT, RA, RB } },
3412{ "mulhw.", XO(31,75,0,1), XO_MASK, PPC, { RT, RA, RB } },
3413
7d5b217e
AM
3414{ "dlmzb", XRC(31,78,0), X_MASK, PPC403|PPC440, { RA, RS, RB } },
3415{ "dlmzb.", XRC(31,78,1), X_MASK, PPC403|PPC440, { RA, RS, RB } },
3416
f509565f
GK
3417{ "mtsrd", X(31,82), XRB_MASK|(1<<20), PPC64, { SR, RS } },
3418
252b5132
RH
3419{ "mfmsr", X(31,83), XRARB_MASK, COM, { RT } },
3420
fdd12ef3 3421{ "ldarx", X(31,84), X_MASK, PPC64, { RT, RA0, RB } },
252b5132
RH
3422
3423{ "dcbf", X(31,86), XRT_MASK, PPC, { RA, RB } },
3424
fdd12ef3 3425{ "lbzx", X(31,87), X_MASK, COM, { RT, RA0, RB } },
252b5132 3426
418c1742
MG
3427{ "dcbfe", X(31,94), XRT_MASK, BOOKE64, { RA, RB } },
3428
fdd12ef3 3429{ "lbzxe", X(31,95), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3430
252b5132
RH
3431{ "neg", XO(31,104,0,0), XORB_MASK, COM, { RT, RA } },
3432{ "neg.", XO(31,104,0,1), XORB_MASK, COM, { RT, RA } },
3433{ "nego", XO(31,104,1,0), XORB_MASK, COM, { RT, RA } },
3434{ "nego.", XO(31,104,1,1), XORB_MASK, COM, { RT, RA } },
3435
3436{ "mul", XO(31,107,0,0), XO_MASK, M601, { RT, RA, RB } },
3437{ "mul.", XO(31,107,0,1), XO_MASK, M601, { RT, RA, RB } },
3438{ "mulo", XO(31,107,1,0), XO_MASK, M601, { RT, RA, RB } },
3439{ "mulo.", XO(31,107,1,1), XO_MASK, M601, { RT, RA, RB } },
3440
f509565f
GK
3441{ "mtsrdin", X(31,114), XRA_MASK, PPC64, { RS, RB } },
3442
2dd46b8b 3443{ "clf", X(31,118), XTO_MASK, POWER, { RA, RB } },
252b5132
RH
3444
3445{ "lbzux", X(31,119), X_MASK, COM, { RT, RAL, RB } },
3446
1ed8e1e4
AM
3447{ "popcntb", X(31,122), XRB_MASK, POWER5, { RA, RS } },
3448
252b5132
RH
3449{ "not", XRC(31,124,0), X_MASK, COM, { RA, RS, RBS } },
3450{ "nor", XRC(31,124,0), X_MASK, COM, { RA, RS, RB } },
3451{ "not.", XRC(31,124,1), X_MASK, COM, { RA, RS, RBS } },
3452{ "nor.", XRC(31,124,1), X_MASK, COM, { RA, RS, RB } },
3453
fdd12ef3 3454{ "lwarxe", X(31,126), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742
MG
3455
3456{ "lbzuxe", X(31,127), X_MASK, BOOKE64, { RT, RAL, RB } },
3457
823bbe9d 3458{ "wrtee", X(31,131), XRARB_MASK, PPC403 | BOOKE, { RS } },
252b5132 3459
23976049
EZ
3460{ "dcbtstls",X(31,134), X_MASK, PPCCHLK, { CT, RA, RB }},
3461
252b5132
RH
3462{ "subfe", XO(31,136,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3463{ "sfe", XO(31,136,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3464{ "subfe.", XO(31,136,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3465{ "sfe.", XO(31,136,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3466{ "subfeo", XO(31,136,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3467{ "sfeo", XO(31,136,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3468{ "subfeo.", XO(31,136,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3469{ "sfeo.", XO(31,136,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3470
3471{ "adde", XO(31,138,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3472{ "ae", XO(31,138,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3473{ "adde.", XO(31,138,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3474{ "ae.", XO(31,138,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3475{ "addeo", XO(31,138,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3476{ "aeo", XO(31,138,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3477{ "addeo.", XO(31,138,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3478{ "aeo.", XO(31,138,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3479
dde1b132 3480{ "dcbtstlse",X(31,142),X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3481
98e69875
AM
3482{ "mtocrf", XFXM(31,144,0,1), XFXFXM_MASK, COM, { FXM, RS } },
3483{ "mtcr", XFXM(31,144,0xff,0), XRARB_MASK, COM, { RS }},
252b5132
RH
3484{ "mtcrf", X(31,144), XFXFXM_MASK, COM, { FXM, RS } },
3485
3486{ "mtmsr", X(31,146), XRARB_MASK, COM, { RS } },
3487
fdd12ef3 3488{ "stdx", X(31,149), X_MASK, PPC64, { RS, RA0, RB } },
252b5132 3489
fdd12ef3 3490{ "stwcx.", XRC(31,150,1), X_MASK, PPC, { RS, RA0, RB } },
252b5132 3491
fdd12ef3 3492{ "stwx", X(31,151), X_MASK, PPCCOM, { RS, RA0, RB } },
252b5132
RH
3493{ "stx", X(31,151), X_MASK, PWRCOM, { RS, RA, RB } },
3494
fdd12ef3 3495{ "stwcxe.", XRC(31,158,1), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3496
fdd12ef3 3497{ "stwxe", X(31,159), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3498
252b5132
RH
3499{ "slq", XRC(31,152,0), X_MASK, M601, { RA, RS, RB } },
3500{ "slq.", XRC(31,152,1), X_MASK, M601, { RA, RS, RB } },
3501
3502{ "sle", XRC(31,153,0), X_MASK, M601, { RA, RS, RB } },
3503{ "sle.", XRC(31,153,1), X_MASK, M601, { RA, RS, RB } },
3504
823bbe9d 3505{ "wrteei", X(31,163), XE_MASK, PPC403 | BOOKE, { E } },
252b5132 3506
23976049 3507{ "dcbtls", X(31,166), X_MASK, PPCCHLK, { CT, RA, RB }},
dde1b132 3508{ "dcbtlse", X(31,174), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3509
82674a1f 3510{ "mtmsrd", X(31,178), XRLARB_MASK, PPC64, { RS, MTMSRD_L } },
f509565f 3511
252b5132
RH
3512{ "stdux", X(31,181), X_MASK, PPC64, { RS, RAS, RB } },
3513
3514{ "stwux", X(31,183), X_MASK, PPCCOM, { RS, RAS, RB } },
fdd12ef3 3515{ "stux", X(31,183), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132
RH
3516
3517{ "sliq", XRC(31,184,0), X_MASK, M601, { RA, RS, SH } },
3518{ "sliq.", XRC(31,184,1), X_MASK, M601, { RA, RS, SH } },
3519
418c1742
MG
3520{ "stwuxe", X(31,191), X_MASK, BOOKE64, { RS, RAS, RB } },
3521
252b5132
RH
3522{ "subfze", XO(31,200,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3523{ "sfze", XO(31,200,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3524{ "subfze.", XO(31,200,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3525{ "sfze.", XO(31,200,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3526{ "subfzeo", XO(31,200,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3527{ "sfzeo", XO(31,200,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3528{ "subfzeo.",XO(31,200,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3529{ "sfzeo.", XO(31,200,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3530
3531{ "addze", XO(31,202,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3532{ "aze", XO(31,202,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3533{ "addze.", XO(31,202,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3534{ "aze.", XO(31,202,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3535{ "addzeo", XO(31,202,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3536{ "azeo", XO(31,202,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3537{ "addzeo.", XO(31,202,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3538{ "azeo.", XO(31,202,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3539
3540{ "mtsr", X(31,210), XRB_MASK|(1<<20), COM32, { SR, RS } },
3541
fdd12ef3 3542{ "stdcx.", XRC(31,214,1), X_MASK, PPC64, { RS, RA0, RB } },
252b5132 3543
fdd12ef3 3544{ "stbx", X(31,215), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
3545
3546{ "sllq", XRC(31,216,0), X_MASK, M601, { RA, RS, RB } },
3547{ "sllq.", XRC(31,216,1), X_MASK, M601, { RA, RS, RB } },
3548
3549{ "sleq", XRC(31,217,0), X_MASK, M601, { RA, RS, RB } },
3550{ "sleq.", XRC(31,217,1), X_MASK, M601, { RA, RS, RB } },
3551
fdd12ef3 3552{ "stbxe", X(31,223), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3553
23976049
EZ
3554{ "icblc", X(31,230), X_MASK, PPCCHLK, { CT, RA, RB }},
3555
252b5132
RH
3556{ "subfme", XO(31,232,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3557{ "sfme", XO(31,232,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3558{ "subfme.", XO(31,232,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3559{ "sfme.", XO(31,232,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3560{ "subfmeo", XO(31,232,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3561{ "sfmeo", XO(31,232,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3562{ "subfmeo.",XO(31,232,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3563{ "sfmeo.", XO(31,232,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3564
3565{ "mulld", XO(31,233,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3566{ "mulld.", XO(31,233,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3567{ "mulldo", XO(31,233,1,0), XO_MASK, PPC64, { RT, RA, RB } },
3568{ "mulldo.", XO(31,233,1,1), XO_MASK, PPC64, { RT, RA, RB } },
3569
3570{ "addme", XO(31,234,0,0), XORB_MASK, PPCCOM, { RT, RA } },
3571{ "ame", XO(31,234,0,0), XORB_MASK, PWRCOM, { RT, RA } },
3572{ "addme.", XO(31,234,0,1), XORB_MASK, PPCCOM, { RT, RA } },
3573{ "ame.", XO(31,234,0,1), XORB_MASK, PWRCOM, { RT, RA } },
3574{ "addmeo", XO(31,234,1,0), XORB_MASK, PPCCOM, { RT, RA } },
3575{ "ameo", XO(31,234,1,0), XORB_MASK, PWRCOM, { RT, RA } },
3576{ "addmeo.", XO(31,234,1,1), XORB_MASK, PPCCOM, { RT, RA } },
3577{ "ameo.", XO(31,234,1,1), XORB_MASK, PWRCOM, { RT, RA } },
3578
3579{ "mullw", XO(31,235,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3580{ "muls", XO(31,235,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3581{ "mullw.", XO(31,235,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3582{ "muls.", XO(31,235,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3583{ "mullwo", XO(31,235,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3584{ "mulso", XO(31,235,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3585{ "mullwo.", XO(31,235,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3586{ "mulso.", XO(31,235,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3587
dde1b132 3588{ "icblce", X(31,238), X_MASK, PPCCHLK64, { CT, RA, RB }},
252b5132
RH
3589{ "mtsrin", X(31,242), XRA_MASK, PPC32, { RS, RB } },
3590{ "mtsri", X(31,242), XRA_MASK, POWER32, { RS, RB } },
3591
e5d2b64f 3592{ "dcbtst", X(31,246), X_MASK, PPC, { CT, RA, RB } },
252b5132
RH
3593
3594{ "stbux", X(31,247), X_MASK, COM, { RS, RAS, RB } },
3595
3596{ "slliq", XRC(31,248,0), X_MASK, M601, { RA, RS, SH } },
3597{ "slliq.", XRC(31,248,1), X_MASK, M601, { RA, RS, SH } },
3598
418c1742
MG
3599{ "dcbtste", X(31,253), X_MASK, BOOKE64, { CT, RA, RB } },
3600
3601{ "stbuxe", X(31,255), X_MASK, BOOKE64, { RS, RAS, RB } },
3602
9fa87a06
MG
3603{ "mfdcrx", X(31,259), X_MASK, BOOKE, { RS, RA } },
3604
252b5132
RH
3605{ "doz", XO(31,264,0,0), XO_MASK, M601, { RT, RA, RB } },
3606{ "doz.", XO(31,264,0,1), XO_MASK, M601, { RT, RA, RB } },
3607{ "dozo", XO(31,264,1,0), XO_MASK, M601, { RT, RA, RB } },
3608{ "dozo.", XO(31,264,1,1), XO_MASK, M601, { RT, RA, RB } },
3609
3610{ "add", XO(31,266,0,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3611{ "cax", XO(31,266,0,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3612{ "add.", XO(31,266,0,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3613{ "cax.", XO(31,266,0,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3614{ "addo", XO(31,266,1,0), XO_MASK, PPCCOM, { RT, RA, RB } },
3615{ "caxo", XO(31,266,1,0), XO_MASK, PWRCOM, { RT, RA, RB } },
3616{ "addo.", XO(31,266,1,1), XO_MASK, PPCCOM, { RT, RA, RB } },
3617{ "caxo.", XO(31,266,1,1), XO_MASK, PWRCOM, { RT, RA, RB } },
3618
5e8cb021 3619{ "tlbiel", X(31,274), XRTLRA_MASK, POWER4, { RB, L } },
c1a34e60 3620
418c1742
MG
3621{ "mfapidi", X(31,275), X_MASK, BOOKE, { RT, RA } },
3622
252b5132
RH
3623{ "lscbx", XRC(31,277,0), X_MASK, M601, { RT, RA, RB } },
3624{ "lscbx.", XRC(31,277,1), X_MASK, M601, { RT, RA, RB } },
3625
ede602d7 3626{ "dcbt", X(31,278), X_MASK, PPC, { CT, RA, RB } },
252b5132 3627
fdd12ef3 3628{ "lhzx", X(31,279), X_MASK, COM, { RT, RA0, RB } },
252b5132 3629
252b5132
RH
3630{ "eqv", XRC(31,284,0), X_MASK, COM, { RA, RS, RB } },
3631{ "eqv.", XRC(31,284,1), X_MASK, COM, { RA, RS, RB } },
3632
418c1742
MG
3633{ "dcbte", X(31,286), X_MASK, BOOKE64, { CT, RA, RB } },
3634
fdd12ef3 3635{ "lhzxe", X(31,287), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3636
98acc1c5 3637{ "tlbie", X(31,306), XRTLRA_MASK, PPC, { RB, L } },
fdd12ef3 3638{ "tlbi", X(31,306), XRT_MASK, POWER, { RA0, RB } },
252b5132
RH
3639
3640{ "eciwx", X(31,310), X_MASK, PPC, { RT, RA, RB } },
3641
3642{ "lhzux", X(31,311), X_MASK, COM, { RT, RAL, RB } },
3643
3644{ "xor", XRC(31,316,0), X_MASK, COM, { RA, RS, RB } },
3645{ "xor.", XRC(31,316,1), X_MASK, COM, { RA, RS, RB } },
3646
418c1742
MG
3647{ "lhzuxe", X(31,319), X_MASK, BOOKE64, { RT, RAL, RB } },
3648
dde1b132
NC
3649{ "mfexisr", XSPR(31,323,64), XSPR_MASK, PPC403, { RT } },
3650{ "mfexier", XSPR(31,323,66), XSPR_MASK, PPC403, { RT } },
3651{ "mfbr0", XSPR(31,323,128), XSPR_MASK, PPC403, { RT } },
3652{ "mfbr1", XSPR(31,323,129), XSPR_MASK, PPC403, { RT } },
3653{ "mfbr2", XSPR(31,323,130), XSPR_MASK, PPC403, { RT } },
3654{ "mfbr3", XSPR(31,323,131), XSPR_MASK, PPC403, { RT } },
3655{ "mfbr4", XSPR(31,323,132), XSPR_MASK, PPC403, { RT } },
3656{ "mfbr5", XSPR(31,323,133), XSPR_MASK, PPC403, { RT } },
3657{ "mfbr6", XSPR(31,323,134), XSPR_MASK, PPC403, { RT } },
3658{ "mfbr7", XSPR(31,323,135), XSPR_MASK, PPC403, { RT } },
3659{ "mfbear", XSPR(31,323,144), XSPR_MASK, PPC403, { RT } },
3660{ "mfbesr", XSPR(31,323,145), XSPR_MASK, PPC403, { RT } },
3661{ "mfiocr", XSPR(31,323,160), XSPR_MASK, PPC403, { RT } },
252b5132
RH
3662{ "mfdmacr0", XSPR(31,323,192), XSPR_MASK, PPC403, { RT } },
3663{ "mfdmact0", XSPR(31,323,193), XSPR_MASK, PPC403, { RT } },
3664{ "mfdmada0", XSPR(31,323,194), XSPR_MASK, PPC403, { RT } },
3665{ "mfdmasa0", XSPR(31,323,195), XSPR_MASK, PPC403, { RT } },
3666{ "mfdmacc0", XSPR(31,323,196), XSPR_MASK, PPC403, { RT } },
3667{ "mfdmacr1", XSPR(31,323,200), XSPR_MASK, PPC403, { RT } },
3668{ "mfdmact1", XSPR(31,323,201), XSPR_MASK, PPC403, { RT } },
3669{ "mfdmada1", XSPR(31,323,202), XSPR_MASK, PPC403, { RT } },
3670{ "mfdmasa1", XSPR(31,323,203), XSPR_MASK, PPC403, { RT } },
3671{ "mfdmacc1", XSPR(31,323,204), XSPR_MASK, PPC403, { RT } },
3672{ "mfdmacr2", XSPR(31,323,208), XSPR_MASK, PPC403, { RT } },
3673{ "mfdmact2", XSPR(31,323,209), XSPR_MASK, PPC403, { RT } },
3674{ "mfdmada2", XSPR(31,323,210), XSPR_MASK, PPC403, { RT } },
3675{ "mfdmasa2", XSPR(31,323,211), XSPR_MASK, PPC403, { RT } },
3676{ "mfdmacc2", XSPR(31,323,212), XSPR_MASK, PPC403, { RT } },
3677{ "mfdmacr3", XSPR(31,323,216), XSPR_MASK, PPC403, { RT } },
3678{ "mfdmact3", XSPR(31,323,217), XSPR_MASK, PPC403, { RT } },
3679{ "mfdmada3", XSPR(31,323,218), XSPR_MASK, PPC403, { RT } },
3680{ "mfdmasa3", XSPR(31,323,219), XSPR_MASK, PPC403, { RT } },
3681{ "mfdmacc3", XSPR(31,323,220), XSPR_MASK, PPC403, { RT } },
dde1b132 3682{ "mfdmasr", XSPR(31,323,224), XSPR_MASK, PPC403, { RT } },
823bbe9d 3683{ "mfdcr", X(31,323), X_MASK, PPC403 | BOOKE, { RT, SPR } },
252b5132
RH
3684
3685{ "div", XO(31,331,0,0), XO_MASK, M601, { RT, RA, RB } },
3686{ "div.", XO(31,331,0,1), XO_MASK, M601, { RT, RA, RB } },
3687{ "divo", XO(31,331,1,0), XO_MASK, M601, { RT, RA, RB } },
3688{ "divo.", XO(31,331,1,1), XO_MASK, M601, { RT, RA, RB } },
3689
914749f6 3690{ "mfpmr", X(31,334), X_MASK, PPCPMR, { RT, PMR }},
23976049 3691
dde1b132
NC
3692{ "mfmq", XSPR(31,339,0), XSPR_MASK, M601, { RT } },
3693{ "mfxer", XSPR(31,339,1), XSPR_MASK, COM, { RT } },
3694{ "mfrtcu", XSPR(31,339,4), XSPR_MASK, COM, { RT } },
3695{ "mfrtcl", XSPR(31,339,5), XSPR_MASK, COM, { RT } },
3696{ "mfdec", XSPR(31,339,6), XSPR_MASK, MFDEC1, { RT } },
823bbe9d 3697{ "mfdec", XSPR(31,339,22), XSPR_MASK, MFDEC2, { RT } },
dde1b132
NC
3698{ "mflr", XSPR(31,339,8), XSPR_MASK, COM, { RT } },
3699{ "mfctr", XSPR(31,339,9), XSPR_MASK, COM, { RT } },
3700{ "mftid", XSPR(31,339,17), XSPR_MASK, POWER, { RT } },
3701{ "mfdsisr", XSPR(31,339,18), XSPR_MASK, COM, { RT } },
3702{ "mfdar", XSPR(31,339,19), XSPR_MASK, COM, { RT } },
dde1b132
NC
3703{ "mfsdr0", XSPR(31,339,24), XSPR_MASK, POWER, { RT } },
3704{ "mfsdr1", XSPR(31,339,25), XSPR_MASK, COM, { RT } },
3705{ "mfsrr0", XSPR(31,339,26), XSPR_MASK, COM, { RT } },
3706{ "mfsrr1", XSPR(31,339,27), XSPR_MASK, COM, { RT } },
3707{ "mfpid", XSPR(31,339,48), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3708{ "mfpid", XSPR(31,339,945), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3709{ "mfcsrr0", XSPR(31,339,58), XSPR_MASK, BOOKE, { RT } },
3710{ "mfcsrr1", XSPR(31,339,59), XSPR_MASK, BOOKE, { RT } },
3711{ "mfdear", XSPR(31,339,61), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3712{ "mfdear", XSPR(31,339,981), XSPR_MASK, PPC403, { RT } },
dde1b132 3713{ "mfesr", XSPR(31,339,62), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3714{ "mfesr", XSPR(31,339,980), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3715{ "mfivpr", XSPR(31,339,63), XSPR_MASK, BOOKE, { RT } },
3716{ "mfcmpa", XSPR(31,339,144), XSPR_MASK, PPC860, { RT } },
3717{ "mfcmpb", XSPR(31,339,145), XSPR_MASK, PPC860, { RT } },
3718{ "mfcmpc", XSPR(31,339,146), XSPR_MASK, PPC860, { RT } },
3719{ "mfcmpd", XSPR(31,339,147), XSPR_MASK, PPC860, { RT } },
3720{ "mficr", XSPR(31,339,148), XSPR_MASK, PPC860, { RT } },
3721{ "mfder", XSPR(31,339,149), XSPR_MASK, PPC860, { RT } },
3722{ "mfcounta", XSPR(31,339,150), XSPR_MASK, PPC860, { RT } },
3723{ "mfcountb", XSPR(31,339,151), XSPR_MASK, PPC860, { RT } },
3724{ "mfcmpe", XSPR(31,339,152), XSPR_MASK, PPC860, { RT } },
3725{ "mfcmpf", XSPR(31,339,153), XSPR_MASK, PPC860, { RT } },
3726{ "mfcmpg", XSPR(31,339,154), XSPR_MASK, PPC860, { RT } },
3727{ "mfcmph", XSPR(31,339,155), XSPR_MASK, PPC860, { RT } },
3728{ "mflctrl1", XSPR(31,339,156), XSPR_MASK, PPC860, { RT } },
3729{ "mflctrl2", XSPR(31,339,157), XSPR_MASK, PPC860, { RT } },
3730{ "mfictrl", XSPR(31,339,158), XSPR_MASK, PPC860, { RT } },
3731{ "mfbar", XSPR(31,339,159), XSPR_MASK, PPC860, { RT } },
3732{ "mfvrsave", XSPR(31,339,256), XSPR_MASK, PPCVEC, { RT } },
3733{ "mfusprg0", XSPR(31,339,256), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3734{ "mftb", X(31,371), X_MASK, CLASSIC, { RT, TBR } },
661bd698 3735{ "mftb", XSPR(31,339,268), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3736{ "mftbl", XSPR(31,371,268), XSPR_MASK, CLASSIC, { RT } },
661bd698 3737{ "mftbl", XSPR(31,339,268), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3738{ "mftbu", XSPR(31,371,269), XSPR_MASK, CLASSIC, { RT } },
661bd698 3739{ "mftbu", XSPR(31,339,269), XSPR_MASK, BOOKE, { RT } },
da99ee72 3740{ "mfsprg", XSPR(31,339,256), XSPRG_MASK, PPC, { RT, SPRG } },
dde1b132
NC
3741{ "mfsprg0", XSPR(31,339,272), XSPR_MASK, PPC, { RT } },
3742{ "mfsprg1", XSPR(31,339,273), XSPR_MASK, PPC, { RT } },
3743{ "mfsprg2", XSPR(31,339,274), XSPR_MASK, PPC, { RT } },
3744{ "mfsprg3", XSPR(31,339,275), XSPR_MASK, PPC, { RT } },
da99ee72
AM
3745{ "mfsprg4", XSPR(31,339,260), XSPR_MASK, PPC405 | BOOKE, { RT } },
3746{ "mfsprg5", XSPR(31,339,261), XSPR_MASK, PPC405 | BOOKE, { RT } },
3747{ "mfsprg6", XSPR(31,339,262), XSPR_MASK, PPC405 | BOOKE, { RT } },
3748{ "mfsprg7", XSPR(31,339,263), XSPR_MASK, PPC405 | BOOKE, { RT } },
dde1b132
NC
3749{ "mfasr", XSPR(31,339,280), XSPR_MASK, PPC64, { RT } },
3750{ "mfear", XSPR(31,339,282), XSPR_MASK, PPC, { RT } },
3751{ "mfpir", XSPR(31,339,286), XSPR_MASK, BOOKE, { RT } },
3752{ "mfpvr", XSPR(31,339,287), XSPR_MASK, PPC, { RT } },
3753{ "mfdbsr", XSPR(31,339,304), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3754{ "mfdbsr", XSPR(31,339,1008), XSPR_MASK, PPC403, { RT } },
dde1b132 3755{ "mfdbcr0", XSPR(31,339,308), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3756{ "mfdbcr0", XSPR(31,339,1010), XSPR_MASK, PPC405, { RT } },
dde1b132 3757{ "mfdbcr1", XSPR(31,339,309), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3758{ "mfdbcr1", XSPR(31,339,957), XSPR_MASK, PPC405, { RT } },
dde1b132
NC
3759{ "mfdbcr2", XSPR(31,339,310), XSPR_MASK, BOOKE, { RT } },
3760{ "mfiac1", XSPR(31,339,312), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3761{ "mfiac1", XSPR(31,339,1012), XSPR_MASK, PPC403, { RT } },
dde1b132 3762{ "mfiac2", XSPR(31,339,313), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3763{ "mfiac2", XSPR(31,339,1013), XSPR_MASK, PPC403, { RT } },
dde1b132 3764{ "mfiac3", XSPR(31,339,314), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3765{ "mfiac3", XSPR(31,339,948), XSPR_MASK, PPC405, { RT } },
dde1b132 3766{ "mfiac4", XSPR(31,339,315), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3767{ "mfiac4", XSPR(31,339,949), XSPR_MASK, PPC405, { RT } },
dde1b132 3768{ "mfdac1", XSPR(31,339,316), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3769{ "mfdac1", XSPR(31,339,1014), XSPR_MASK, PPC403, { RT } },
dde1b132 3770{ "mfdac2", XSPR(31,339,317), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3771{ "mfdac2", XSPR(31,339,1015), XSPR_MASK, PPC403, { RT } },
dde1b132 3772{ "mfdvc1", XSPR(31,339,318), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3773{ "mfdvc1", XSPR(31,339,950), XSPR_MASK, PPC405, { RT } },
dde1b132 3774{ "mfdvc2", XSPR(31,339,319), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3775{ "mfdvc2", XSPR(31,339,951), XSPR_MASK, PPC405, { RT } },
dde1b132 3776{ "mftsr", XSPR(31,339,336), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3777{ "mftsr", XSPR(31,339,984), XSPR_MASK, PPC403, { RT } },
dde1b132 3778{ "mftcr", XSPR(31,339,340), XSPR_MASK, BOOKE, { RT } },
823bbe9d 3779{ "mftcr", XSPR(31,339,986), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3780{ "mfivor0", XSPR(31,339,400), XSPR_MASK, BOOKE, { RT } },
3781{ "mfivor1", XSPR(31,339,401), XSPR_MASK, BOOKE, { RT } },
3782{ "mfivor2", XSPR(31,339,402), XSPR_MASK, BOOKE, { RT } },
3783{ "mfivor3", XSPR(31,339,403), XSPR_MASK, BOOKE, { RT } },
3784{ "mfivor4", XSPR(31,339,404), XSPR_MASK, BOOKE, { RT } },
3785{ "mfivor5", XSPR(31,339,405), XSPR_MASK, BOOKE, { RT } },
3786{ "mfivor6", XSPR(31,339,406), XSPR_MASK, BOOKE, { RT } },
3787{ "mfivor7", XSPR(31,339,407), XSPR_MASK, BOOKE, { RT } },
3788{ "mfivor8", XSPR(31,339,408), XSPR_MASK, BOOKE, { RT } },
3789{ "mfivor9", XSPR(31,339,409), XSPR_MASK, BOOKE, { RT } },
3790{ "mfivor10", XSPR(31,339,410), XSPR_MASK, BOOKE, { RT } },
3791{ "mfivor11", XSPR(31,339,411), XSPR_MASK, BOOKE, { RT } },
3792{ "mfivor12", XSPR(31,339,412), XSPR_MASK, BOOKE, { RT } },
3793{ "mfivor13", XSPR(31,339,413), XSPR_MASK, BOOKE, { RT } },
3794{ "mfivor14", XSPR(31,339,414), XSPR_MASK, BOOKE, { RT } },
3795{ "mfivor15", XSPR(31,339,415), XSPR_MASK, BOOKE, { RT } },
3796{ "mfspefscr", XSPR(31,339,512), XSPR_MASK, PPCSPE, { RT } },
3797{ "mfbbear", XSPR(31,339,513), XSPR_MASK, PPCBRLK, { RT } },
914749f6 3798{ "mfbbtar", XSPR(31,339,514), XSPR_MASK, PPCBRLK, { RT } },
f0b26da6
AH
3799{ "mfivor32", XSPR(31,339,528), XSPR_MASK, PPCSPE, { RT } },
3800{ "mfivor33", XSPR(31,339,529), XSPR_MASK, PPCSPE, { RT } },
3801{ "mfivor34", XSPR(31,339,530), XSPR_MASK, PPCSPE, { RT } },
2f3b8700 3802{ "mfivor35", XSPR(31,339,531), XSPR_MASK, PPCPMR, { RT } },
dde1b132
NC
3803{ "mfibatu", XSPR(31,339,528), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3804{ "mfibatl", XSPR(31,339,529), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3805{ "mfdbatu", XSPR(31,339,536), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3806{ "mfdbatl", XSPR(31,339,537), XSPRBAT_MASK, PPC, { RT, SPRBAT } },
3807{ "mfic_cst", XSPR(31,339,560), XSPR_MASK, PPC860, { RT } },
3808{ "mfic_adr", XSPR(31,339,561), XSPR_MASK, PPC860, { RT } },
3809{ "mfic_dat", XSPR(31,339,562), XSPR_MASK, PPC860, { RT } },
3810{ "mfdc_cst", XSPR(31,339,568), XSPR_MASK, PPC860, { RT } },
3811{ "mfdc_adr", XSPR(31,339,569), XSPR_MASK, PPC860, { RT } },
dde1b132 3812{ "mfmcsrr0", XSPR(31,339,570), XSPR_MASK, PPCRFMCI, { RT } },
1f04b05f 3813{ "mfdc_dat", XSPR(31,339,570), XSPR_MASK, PPC860, { RT } },
dde1b132
NC
3814{ "mfmcsrr1", XSPR(31,339,571), XSPR_MASK, PPCRFMCI, { RT } },
3815{ "mfmcsr", XSPR(31,339,572), XSPR_MASK, PPCRFMCI, { RT } },
23d59c56 3816{ "mfmcar", XSPR(31,339,573), XSPR_MASK, PPCRFMCI, { RT } },
dde1b132
NC
3817{ "mfdpdr", XSPR(31,339,630), XSPR_MASK, PPC860, { RT } },
3818{ "mfdpir", XSPR(31,339,631), XSPR_MASK, PPC860, { RT } },
3819{ "mfimmr", XSPR(31,339,638), XSPR_MASK, PPC860, { RT } },
3820{ "mfmi_ctr", XSPR(31,339,784), XSPR_MASK, PPC860, { RT } },
3821{ "mfmi_ap", XSPR(31,339,786), XSPR_MASK, PPC860, { RT } },
3822{ "mfmi_epn", XSPR(31,339,787), XSPR_MASK, PPC860, { RT } },
3823{ "mfmi_twc", XSPR(31,339,789), XSPR_MASK, PPC860, { RT } },
3824{ "mfmi_rpn", XSPR(31,339,790), XSPR_MASK, PPC860, { RT } },
3825{ "mfmd_ctr", XSPR(31,339,792), XSPR_MASK, PPC860, { RT } },
3826{ "mfm_casid", XSPR(31,339,793), XSPR_MASK, PPC860, { RT } },
3827{ "mfmd_ap", XSPR(31,339,794), XSPR_MASK, PPC860, { RT } },
3828{ "mfmd_epn", XSPR(31,339,795), XSPR_MASK, PPC860, { RT } },
3829{ "mfmd_twb", XSPR(31,339,796), XSPR_MASK, PPC860, { RT } },
3830{ "mfmd_twc", XSPR(31,339,797), XSPR_MASK, PPC860, { RT } },
3831{ "mfmd_rpn", XSPR(31,339,798), XSPR_MASK, PPC860, { RT } },
3832{ "mfm_tw", XSPR(31,339,799), XSPR_MASK, PPC860, { RT } },
3833{ "mfmi_dbcam", XSPR(31,339,816), XSPR_MASK, PPC860, { RT } },
3834{ "mfmi_dbram0",XSPR(31,339,817), XSPR_MASK, PPC860, { RT } },
3835{ "mfmi_dbram1",XSPR(31,339,818), XSPR_MASK, PPC860, { RT } },
3836{ "mfmd_dbcam", XSPR(31,339,824), XSPR_MASK, PPC860, { RT } },
3837{ "mfmd_dbram0",XSPR(31,339,825), XSPR_MASK, PPC860, { RT } },
3838{ "mfmd_dbram1",XSPR(31,339,826), XSPR_MASK, PPC860, { RT } },
3839{ "mfummcr0", XSPR(31,339,936), XSPR_MASK, PPC750, { RT } },
3840{ "mfupmc1", XSPR(31,339,937), XSPR_MASK, PPC750, { RT } },
3841{ "mfupmc2", XSPR(31,339,938), XSPR_MASK, PPC750, { RT } },
3842{ "mfusia", XSPR(31,339,939), XSPR_MASK, PPC750, { RT } },
3843{ "mfummcr1", XSPR(31,339,940), XSPR_MASK, PPC750, { RT } },
3844{ "mfupmc3", XSPR(31,339,941), XSPR_MASK, PPC750, { RT } },
3845{ "mfupmc4", XSPR(31,339,942), XSPR_MASK, PPC750, { RT } },
3846{ "mfzpr", XSPR(31,339,944), XSPR_MASK, PPC403, { RT } },
dde1b132 3847{ "mfccr0", XSPR(31,339,947), XSPR_MASK, PPC405, { RT } },
252b5132
RH
3848{ "mfmmcr0", XSPR(31,339,952), XSPR_MASK, PPC750, { RT } },
3849{ "mfpmc1", XSPR(31,339,953), XSPR_MASK, PPC750, { RT } },
e0c21649 3850{ "mfsgr", XSPR(31,339,953), XSPR_MASK, PPC403, { RT } },
252b5132 3851{ "mfpmc2", XSPR(31,339,954), XSPR_MASK, PPC750, { RT } },
e0c21649 3852{ "mfdcwr", XSPR(31,339,954), XSPR_MASK, PPC403, { RT } },
252b5132 3853{ "mfsia", XSPR(31,339,955), XSPR_MASK, PPC750, { RT } },
e0c21649 3854{ "mfsler", XSPR(31,339,955), XSPR_MASK, PPC405, { RT } },
252b5132 3855{ "mfmmcr1", XSPR(31,339,956), XSPR_MASK, PPC750, { RT } },
e0c21649 3856{ "mfsu0r", XSPR(31,339,956), XSPR_MASK, PPC405, { RT } },
252b5132
RH
3857{ "mfpmc3", XSPR(31,339,957), XSPR_MASK, PPC750, { RT } },
3858{ "mfpmc4", XSPR(31,339,958), XSPR_MASK, PPC750, { RT } },
dde1b132 3859{ "mficdbdr", XSPR(31,339,979), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3860{ "mfevpr", XSPR(31,339,982), XSPR_MASK, PPC403, { RT } },
3861{ "mfcdbcr", XSPR(31,339,983), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3862{ "mfpit", XSPR(31,339,987), XSPR_MASK, PPC403, { RT } },
3863{ "mftbhi", XSPR(31,339,988), XSPR_MASK, PPC403, { RT } },
3864{ "mftblo", XSPR(31,339,989), XSPR_MASK, PPC403, { RT } },
3865{ "mfsrr2", XSPR(31,339,990), XSPR_MASK, PPC403, { RT } },
3866{ "mfsrr3", XSPR(31,339,991), XSPR_MASK, PPC403, { RT } },
dde1b132
NC
3867{ "mfl2cr", XSPR(31,339,1017), XSPR_MASK, PPC750, { RT } },
3868{ "mfdccr", XSPR(31,339,1018), XSPR_MASK, PPC403, { RT } },
3869{ "mficcr", XSPR(31,339,1019), XSPR_MASK, PPC403, { RT } },
3870{ "mfictc", XSPR(31,339,1019), XSPR_MASK, PPC750, { RT } },
3871{ "mfpbl1", XSPR(31,339,1020), XSPR_MASK, PPC403, { RT } },
3872{ "mfthrm1", XSPR(31,339,1020), XSPR_MASK, PPC750, { RT } },
3873{ "mfpbu1", XSPR(31,339,1021), XSPR_MASK, PPC403, { RT } },
3874{ "mfthrm2", XSPR(31,339,1021), XSPR_MASK, PPC750, { RT } },
3875{ "mfpbl2", XSPR(31,339,1022), XSPR_MASK, PPC403, { RT } },
3876{ "mfthrm3", XSPR(31,339,1022), XSPR_MASK, PPC750, { RT } },
3877{ "mfpbu2", XSPR(31,339,1023), XSPR_MASK, PPC403, { RT } },
3878{ "mfspr", X(31,339), X_MASK, COM, { RT, SPR } },
252b5132 3879
fdd12ef3 3880{ "lwax", X(31,341), X_MASK, PPC64, { RT, RA0, RB } },
252b5132 3881
f5c120c5
MG
3882{ "dst", XDSS(31,342,0), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3883{ "dstt", XDSS(31,342,1), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3884
fdd12ef3 3885{ "lhax", X(31,343), X_MASK, COM, { RT, RA0, RB } },
252b5132 3886
fdd12ef3 3887{ "lhaxe", X(31,351), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 3888
f5c120c5
MG
3889{ "dstst", XDSS(31,374,0), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3890{ "dststt", XDSS(31,374,1), XDSS_MASK, PPCVEC, { RA, RB, STRM } },
3891
7d5b217e 3892{ "dccci", X(31,454), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132
RH
3893
3894{ "abs", XO(31,360,0,0), XORB_MASK, M601, { RT, RA } },
3895{ "abs.", XO(31,360,0,1), XORB_MASK, M601, { RT, RA } },
3896{ "abso", XO(31,360,1,0), XORB_MASK, M601, { RT, RA } },
3897{ "abso.", XO(31,360,1,1), XORB_MASK, M601, { RT, RA } },
3898
3899{ "divs", XO(31,363,0,0), XO_MASK, M601, { RT, RA, RB } },
3900{ "divs.", XO(31,363,0,1), XO_MASK, M601, { RT, RA, RB } },
3901{ "divso", XO(31,363,1,0), XO_MASK, M601, { RT, RA, RB } },
3902{ "divso.", XO(31,363,1,1), XO_MASK, M601, { RT, RA, RB } },
3903
3904{ "tlbia", X(31,370), 0xffffffff, PPC, { 0 } },
3905
252b5132
RH
3906{ "lwaux", X(31,373), X_MASK, PPC64, { RT, RAL, RB } },
3907
3908{ "lhaux", X(31,375), X_MASK, COM, { RT, RAL, RB } },
3909
418c1742
MG
3910{ "lhauxe", X(31,383), X_MASK, BOOKE64, { RT, RAL, RB } },
3911
9fa87a06
MG
3912{ "mtdcrx", X(31,387), X_MASK, BOOKE, { RA, RS } },
3913
23976049
EZ
3914{ "dcblc", X(31,390), X_MASK, PPCCHLK, { CT, RA, RB }},
3915
418c1742
MG
3916{ "subfe64", XO(31,392,0,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3917{ "subfe64o",XO(31,392,1,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3918
3919{ "adde64", XO(31,394,0,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3920{ "adde64o", XO(31,394,1,0), XO_MASK, BOOKE64, { RT, RA, RB } },
3921
dde1b132 3922{ "dcblce", X(31,398), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 3923
6ba045b1
AM
3924{ "slbmte", X(31,402), XRA_MASK, PPC64, { RS, RB } },
3925
fdd12ef3 3926{ "sthx", X(31,407), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
3927
3928{ "lfqx", X(31,791), X_MASK, POWER2, { FRT, RA, RB } },
3929
3930{ "lfqux", X(31,823), X_MASK, POWER2, { FRT, RA, RB } },
3931
3932{ "stfqx", X(31,919), X_MASK, POWER2, { FRS, RA, RB } },
3933
3934{ "stfqux", X(31,951), X_MASK, POWER2, { FRS, RA, RB } },
3935
3936{ "orc", XRC(31,412,0), X_MASK, COM, { RA, RS, RB } },
3937{ "orc.", XRC(31,412,1), X_MASK, COM, { RA, RS, RB } },
3938
3939{ "sradi", XS(31,413,0), XS_MASK, PPC64, { RA, RS, SH6 } },
3940{ "sradi.", XS(31,413,1), XS_MASK, PPC64, { RA, RS, SH6 } },
3941
fdd12ef3 3942{ "sthxe", X(31,415), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 3943
252b5132
RH
3944{ "slbie", X(31,434), XRTRA_MASK, PPC64, { RB } },
3945
3946{ "ecowx", X(31,438), X_MASK, PPC, { RT, RA, RB } },
3947
3948{ "sthux", X(31,439), X_MASK, COM, { RS, RAS, RB } },
3949
418c1742
MG
3950{ "sthuxe", X(31,447), X_MASK, BOOKE64, { RS, RAS, RB } },
3951
252b5132
RH
3952{ "mr", XRC(31,444,0), X_MASK, COM, { RA, RS, RBS } },
3953{ "or", XRC(31,444,0), X_MASK, COM, { RA, RS, RB } },
3954{ "mr.", XRC(31,444,1), X_MASK, COM, { RA, RS, RBS } },
3955{ "or.", XRC(31,444,1), X_MASK, COM, { RA, RS, RB } },
3956
823bbe9d
AM
3957{ "mtexisr", XSPR(31,451,64), XSPR_MASK, PPC403, { RS } },
3958{ "mtexier", XSPR(31,451,66), XSPR_MASK, PPC403, { RS } },
3959{ "mtbr0", XSPR(31,451,128), XSPR_MASK, PPC403, { RS } },
3960{ "mtbr1", XSPR(31,451,129), XSPR_MASK, PPC403, { RS } },
3961{ "mtbr2", XSPR(31,451,130), XSPR_MASK, PPC403, { RS } },
3962{ "mtbr3", XSPR(31,451,131), XSPR_MASK, PPC403, { RS } },
3963{ "mtbr4", XSPR(31,451,132), XSPR_MASK, PPC403, { RS } },
3964{ "mtbr5", XSPR(31,451,133), XSPR_MASK, PPC403, { RS } },
3965{ "mtbr6", XSPR(31,451,134), XSPR_MASK, PPC403, { RS } },
3966{ "mtbr7", XSPR(31,451,135), XSPR_MASK, PPC403, { RS } },
3967{ "mtbear", XSPR(31,451,144), XSPR_MASK, PPC403, { RS } },
3968{ "mtbesr", XSPR(31,451,145), XSPR_MASK, PPC403, { RS } },
3969{ "mtiocr", XSPR(31,451,160), XSPR_MASK, PPC403, { RS } },
3970{ "mtdmacr0", XSPR(31,451,192), XSPR_MASK, PPC403, { RS } },
3971{ "mtdmact0", XSPR(31,451,193), XSPR_MASK, PPC403, { RS } },
3972{ "mtdmada0", XSPR(31,451,194), XSPR_MASK, PPC403, { RS } },
3973{ "mtdmasa0", XSPR(31,451,195), XSPR_MASK, PPC403, { RS } },
3974{ "mtdmacc0", XSPR(31,451,196), XSPR_MASK, PPC403, { RS } },
3975{ "mtdmacr1", XSPR(31,451,200), XSPR_MASK, PPC403, { RS } },
3976{ "mtdmact1", XSPR(31,451,201), XSPR_MASK, PPC403, { RS } },
3977{ "mtdmada1", XSPR(31,451,202), XSPR_MASK, PPC403, { RS } },
3978{ "mtdmasa1", XSPR(31,451,203), XSPR_MASK, PPC403, { RS } },
3979{ "mtdmacc1", XSPR(31,451,204), XSPR_MASK, PPC403, { RS } },
3980{ "mtdmacr2", XSPR(31,451,208), XSPR_MASK, PPC403, { RS } },
3981{ "mtdmact2", XSPR(31,451,209), XSPR_MASK, PPC403, { RS } },
3982{ "mtdmada2", XSPR(31,451,210), XSPR_MASK, PPC403, { RS } },
3983{ "mtdmasa2", XSPR(31,451,211), XSPR_MASK, PPC403, { RS } },
3984{ "mtdmacc2", XSPR(31,451,212), XSPR_MASK, PPC403, { RS } },
3985{ "mtdmacr3", XSPR(31,451,216), XSPR_MASK, PPC403, { RS } },
3986{ "mtdmact3", XSPR(31,451,217), XSPR_MASK, PPC403, { RS } },
3987{ "mtdmada3", XSPR(31,451,218), XSPR_MASK, PPC403, { RS } },
3988{ "mtdmasa3", XSPR(31,451,219), XSPR_MASK, PPC403, { RS } },
3989{ "mtdmacc3", XSPR(31,451,220), XSPR_MASK, PPC403, { RS } },
3990{ "mtdmasr", XSPR(31,451,224), XSPR_MASK, PPC403, { RS } },
3991{ "mtdcr", X(31,451), X_MASK, PPC403 | BOOKE, { SPR, RS } },
252b5132 3992
418c1742
MG
3993{ "subfze64",XO(31,456,0,0), XORB_MASK, BOOKE64, { RT, RA } },
3994{ "subfze64o",XO(31,456,1,0), XORB_MASK, BOOKE64, { RT, RA } },
3995
252b5132
RH
3996{ "divdu", XO(31,457,0,0), XO_MASK, PPC64, { RT, RA, RB } },
3997{ "divdu.", XO(31,457,0,1), XO_MASK, PPC64, { RT, RA, RB } },
3998{ "divduo", XO(31,457,1,0), XO_MASK, PPC64, { RT, RA, RB } },
3999{ "divduo.", XO(31,457,1,1), XO_MASK, PPC64, { RT, RA, RB } },
4000
418c1742
MG
4001{ "addze64", XO(31,458,0,0), XORB_MASK, BOOKE64, { RT, RA } },
4002{ "addze64o",XO(31,458,1,0), XORB_MASK, BOOKE64, { RT, RA } },
4003
252b5132
RH
4004{ "divwu", XO(31,459,0,0), XO_MASK, PPC, { RT, RA, RB } },
4005{ "divwu.", XO(31,459,0,1), XO_MASK, PPC, { RT, RA, RB } },
4006{ "divwuo", XO(31,459,1,0), XO_MASK, PPC, { RT, RA, RB } },
4007{ "divwuo.", XO(31,459,1,1), XO_MASK, PPC, { RT, RA, RB } },
4008
dde1b132
NC
4009{ "mtmq", XSPR(31,467,0), XSPR_MASK, M601, { RS } },
4010{ "mtxer", XSPR(31,467,1), XSPR_MASK, COM, { RS } },
4011{ "mtlr", XSPR(31,467,8), XSPR_MASK, COM, { RS } },
4012{ "mtctr", XSPR(31,467,9), XSPR_MASK, COM, { RS } },
4013{ "mttid", XSPR(31,467,17), XSPR_MASK, POWER, { RS } },
4014{ "mtdsisr", XSPR(31,467,18), XSPR_MASK, COM, { RS } },
4015{ "mtdar", XSPR(31,467,19), XSPR_MASK, COM, { RS } },
4016{ "mtrtcu", XSPR(31,467,20), XSPR_MASK, COM, { RS } },
4017{ "mtrtcl", XSPR(31,467,21), XSPR_MASK, COM, { RS } },
4018{ "mtdec", XSPR(31,467,22), XSPR_MASK, COM, { RS } },
4019{ "mtsdr0", XSPR(31,467,24), XSPR_MASK, POWER, { RS } },
4020{ "mtsdr1", XSPR(31,467,25), XSPR_MASK, COM, { RS } },
4021{ "mtsrr0", XSPR(31,467,26), XSPR_MASK, COM, { RS } },
4022{ "mtsrr1", XSPR(31,467,27), XSPR_MASK, COM, { RS } },
4023{ "mtpid", XSPR(31,467,48), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4024{ "mtpid", XSPR(31,467,945), XSPR_MASK, PPC403, { RS } },
dde1b132
NC
4025{ "mtdecar", XSPR(31,467,54), XSPR_MASK, BOOKE, { RS } },
4026{ "mtcsrr0", XSPR(31,467,58), XSPR_MASK, BOOKE, { RS } },
4027{ "mtcsrr1", XSPR(31,467,59), XSPR_MASK, BOOKE, { RS } },
4028{ "mtdear", XSPR(31,467,61), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4029{ "mtdear", XSPR(31,467,981), XSPR_MASK, PPC403, { RS } },
dde1b132 4030{ "mtesr", XSPR(31,467,62), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4031{ "mtesr", XSPR(31,467,980), XSPR_MASK, PPC403, { RS } },
dde1b132 4032{ "mtivpr", XSPR(31,467,63), XSPR_MASK, BOOKE, { RS } },
823bbe9d
AM
4033{ "mtcmpa", XSPR(31,467,144), XSPR_MASK, PPC860, { RS } },
4034{ "mtcmpb", XSPR(31,467,145), XSPR_MASK, PPC860, { RS } },
4035{ "mtcmpc", XSPR(31,467,146), XSPR_MASK, PPC860, { RS } },
4036{ "mtcmpd", XSPR(31,467,147), XSPR_MASK, PPC860, { RS } },
4037{ "mticr", XSPR(31,467,148), XSPR_MASK, PPC860, { RS } },
4038{ "mtder", XSPR(31,467,149), XSPR_MASK, PPC860, { RS } },
4039{ "mtcounta", XSPR(31,467,150), XSPR_MASK, PPC860, { RS } },
4040{ "mtcountb", XSPR(31,467,151), XSPR_MASK, PPC860, { RS } },
4041{ "mtcmpe", XSPR(31,467,152), XSPR_MASK, PPC860, { RS } },
4042{ "mtcmpf", XSPR(31,467,153), XSPR_MASK, PPC860, { RS } },
4043{ "mtcmpg", XSPR(31,467,154), XSPR_MASK, PPC860, { RS } },
4044{ "mtcmph", XSPR(31,467,155), XSPR_MASK, PPC860, { RS } },
4045{ "mtlctrl1", XSPR(31,467,156), XSPR_MASK, PPC860, { RS } },
4046{ "mtlctrl2", XSPR(31,467,157), XSPR_MASK, PPC860, { RS } },
4047{ "mtictrl", XSPR(31,467,158), XSPR_MASK, PPC860, { RS } },
4048{ "mtbar", XSPR(31,467,159), XSPR_MASK, PPC860, { RS } },
4049{ "mtvrsave", XSPR(31,467,256), XSPR_MASK, PPCVEC, { RS } },
dde1b132 4050{ "mtusprg0", XSPR(31,467,256), XSPR_MASK, BOOKE, { RS } },
da99ee72 4051{ "mtsprg", XSPR(31,467,256), XSPRG_MASK,PPC, { SPRG, RS } },
823bbe9d
AM
4052{ "mtsprg0", XSPR(31,467,272), XSPR_MASK, PPC, { RS } },
4053{ "mtsprg1", XSPR(31,467,273), XSPR_MASK, PPC, { RS } },
4054{ "mtsprg2", XSPR(31,467,274), XSPR_MASK, PPC, { RS } },
4055{ "mtsprg3", XSPR(31,467,275), XSPR_MASK, PPC, { RS } },
4056{ "mtsprg4", XSPR(31,467,276), XSPR_MASK, PPC405 | BOOKE, { RS } },
4057{ "mtsprg5", XSPR(31,467,277), XSPR_MASK, PPC405 | BOOKE, { RS } },
4058{ "mtsprg6", XSPR(31,467,278), XSPR_MASK, PPC405 | BOOKE, { RS } },
4059{ "mtsprg7", XSPR(31,467,279), XSPR_MASK, PPC405 | BOOKE, { RS } },
dde1b132
NC
4060{ "mtasr", XSPR(31,467,280), XSPR_MASK, PPC64, { RS } },
4061{ "mtear", XSPR(31,467,282), XSPR_MASK, PPC, { RS } },
4062{ "mttbl", XSPR(31,467,284), XSPR_MASK, PPC, { RS } },
4063{ "mttbu", XSPR(31,467,285), XSPR_MASK, PPC, { RS } },
4064{ "mtdbsr", XSPR(31,467,304), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4065{ "mtdbsr", XSPR(31,467,1008), XSPR_MASK, PPC403, { RS } },
dde1b132 4066{ "mtdbcr0", XSPR(31,467,308), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4067{ "mtdbcr0", XSPR(31,467,1010), XSPR_MASK, PPC405, { RS } },
dde1b132 4068{ "mtdbcr1", XSPR(31,467,309), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4069{ "mtdbcr1", XSPR(31,467,957), XSPR_MASK, PPC405, { RS } },
dde1b132
NC
4070{ "mtdbcr2", XSPR(31,467,310), XSPR_MASK, BOOKE, { RS } },
4071{ "mtiac1", XSPR(31,467,312), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4072{ "mtiac1", XSPR(31,467,1012), XSPR_MASK, PPC403, { RS } },
dde1b132 4073{ "mtiac2", XSPR(31,467,313), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4074{ "mtiac2", XSPR(31,467,1013), XSPR_MASK, PPC403, { RS } },
dde1b132 4075{ "mtiac3", XSPR(31,467,314), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4076{ "mtiac3", XSPR(31,467,948), XSPR_MASK, PPC405, { RS } },
dde1b132 4077{ "mtiac4", XSPR(31,467,315), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4078{ "mtiac4", XSPR(31,467,949), XSPR_MASK, PPC405, { RS } },
dde1b132 4079{ "mtdac1", XSPR(31,467,316), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4080{ "mtdac1", XSPR(31,467,1014), XSPR_MASK, PPC403, { RS } },
dde1b132 4081{ "mtdac2", XSPR(31,467,317), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4082{ "mtdac2", XSPR(31,467,1015), XSPR_MASK, PPC403, { RS } },
dde1b132 4083{ "mtdvc1", XSPR(31,467,318), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4084{ "mtdvc1", XSPR(31,467,950), XSPR_MASK, PPC405, { RS } },
dde1b132 4085{ "mtdvc2", XSPR(31,467,319), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4086{ "mtdvc2", XSPR(31,467,951), XSPR_MASK, PPC405, { RS } },
dde1b132 4087{ "mttsr", XSPR(31,467,336), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4088{ "mttsr", XSPR(31,467,984), XSPR_MASK, PPC403, { RS } },
dde1b132 4089{ "mttcr", XSPR(31,467,340), XSPR_MASK, BOOKE, { RS } },
823bbe9d 4090{ "mttcr", XSPR(31,467,986), XSPR_MASK, PPC403, { RS } },
dde1b132
NC
4091{ "mtivor0", XSPR(31,467,400), XSPR_MASK, BOOKE, { RS } },
4092{ "mtivor1", XSPR(31,467,401), XSPR_MASK, BOOKE, { RS } },
4093{ "mtivor2", XSPR(31,467,402), XSPR_MASK, BOOKE, { RS } },
4094{ "mtivor3", XSPR(31,467,403), XSPR_MASK, BOOKE, { RS } },
4095{ "mtivor4", XSPR(31,467,404), XSPR_MASK, BOOKE, { RS } },
4096{ "mtivor5", XSPR(31,467,405), XSPR_MASK, BOOKE, { RS } },
4097{ "mtivor6", XSPR(31,467,406), XSPR_MASK, BOOKE, { RS } },
4098{ "mtivor7", XSPR(31,467,407), XSPR_MASK, BOOKE, { RS } },
4099{ "mtivor8", XSPR(31,467,408), XSPR_MASK, BOOKE, { RS } },
4100{ "mtivor9", XSPR(31,467,409), XSPR_MASK, BOOKE, { RS } },
4101{ "mtivor10", XSPR(31,467,410), XSPR_MASK, BOOKE, { RS } },
4102{ "mtivor11", XSPR(31,467,411), XSPR_MASK, BOOKE, { RS } },
4103{ "mtivor12", XSPR(31,467,412), XSPR_MASK, BOOKE, { RS } },
4104{ "mtivor13", XSPR(31,467,413), XSPR_MASK, BOOKE, { RS } },
4105{ "mtivor14", XSPR(31,467,414), XSPR_MASK, BOOKE, { RS } },
4106{ "mtivor15", XSPR(31,467,415), XSPR_MASK, BOOKE, { RS } },
42a2f80a 4107{ "mtspefscr", XSPR(31,467,512), XSPR_MASK, PPCSPE, { RS } },
dde1b132 4108{ "mtbbear", XSPR(31,467,513), XSPR_MASK, PPCBRLK, { RS } },
914749f6 4109{ "mtbbtar", XSPR(31,467,514), XSPR_MASK, PPCBRLK, { RS } },
f0b26da6
AH
4110{ "mtivor32", XSPR(31,467,528), XSPR_MASK, PPCSPE, { RS } },
4111{ "mtivor33", XSPR(31,467,529), XSPR_MASK, PPCSPE, { RS } },
4112{ "mtivor34", XSPR(31,467,530), XSPR_MASK, PPCSPE, { RS } },
2f3b8700 4113{ "mtivor35", XSPR(31,467,531), XSPR_MASK, PPCPMR, { RS } },
dde1b132
NC
4114{ "mtibatu", XSPR(31,467,528), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4115{ "mtibatl", XSPR(31,467,529), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4116{ "mtdbatu", XSPR(31,467,536), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4117{ "mtdbatl", XSPR(31,467,537), XSPRBAT_MASK, PPC, { SPRBAT, RS } },
4118{ "mtmcsrr0", XSPR(31,467,570), XSPR_MASK, PPCRFMCI, { RS } },
4119{ "mtmcsrr1", XSPR(31,467,571), XSPR_MASK, PPCRFMCI, { RS } },
4120{ "mtmcsr", XSPR(31,467,572), XSPR_MASK, PPCRFMCI, { RS } },
823bbe9d
AM
4121{ "mtummcr0", XSPR(31,467,936), XSPR_MASK, PPC750, { RS } },
4122{ "mtupmc1", XSPR(31,467,937), XSPR_MASK, PPC750, { RS } },
4123{ "mtupmc2", XSPR(31,467,938), XSPR_MASK, PPC750, { RS } },
4124{ "mtusia", XSPR(31,467,939), XSPR_MASK, PPC750, { RS } },
4125{ "mtummcr1", XSPR(31,467,940), XSPR_MASK, PPC750, { RS } },
4126{ "mtupmc3", XSPR(31,467,941), XSPR_MASK, PPC750, { RS } },
4127{ "mtupmc4", XSPR(31,467,942), XSPR_MASK, PPC750, { RS } },
4128{ "mtzpr", XSPR(31,467,944), XSPR_MASK, PPC403, { RS } },
4129{ "mtccr0", XSPR(31,467,947), XSPR_MASK, PPC405, { RS } },
4130{ "mtmmcr0", XSPR(31,467,952), XSPR_MASK, PPC750, { RS } },
4131{ "mtsgr", XSPR(31,467,953), XSPR_MASK, PPC403, { RS } },
4132{ "mtpmc1", XSPR(31,467,953), XSPR_MASK, PPC750, { RS } },
4133{ "mtdcwr", XSPR(31,467,954), XSPR_MASK, PPC403, { RS } },
4134{ "mtpmc2", XSPR(31,467,954), XSPR_MASK, PPC750, { RS } },
4135{ "mtsler", XSPR(31,467,955), XSPR_MASK, PPC405, { RS } },
4136{ "mtsia", XSPR(31,467,955), XSPR_MASK, PPC750, { RS } },
4137{ "mtsu0r", XSPR(31,467,956), XSPR_MASK, PPC405, { RS } },
4138{ "mtmmcr1", XSPR(31,467,956), XSPR_MASK, PPC750, { RS } },
4139{ "mtpmc3", XSPR(31,467,957), XSPR_MASK, PPC750, { RS } },
4140{ "mtpmc4", XSPR(31,467,958), XSPR_MASK, PPC750, { RS } },
4141{ "mticdbdr", XSPR(31,467,979), XSPR_MASK, PPC403, { RS } },
4142{ "mtevpr", XSPR(31,467,982), XSPR_MASK, PPC403, { RS } },
4143{ "mtcdbcr", XSPR(31,467,983), XSPR_MASK, PPC403, { RS } },
4144{ "mtpit", XSPR(31,467,987), XSPR_MASK, PPC403, { RS } },
4145{ "mttbhi", XSPR(31,467,988), XSPR_MASK, PPC403, { RS } },
4146{ "mttblo", XSPR(31,467,989), XSPR_MASK, PPC403, { RS } },
4147{ "mtsrr2", XSPR(31,467,990), XSPR_MASK, PPC403, { RS } },
4148{ "mtsrr3", XSPR(31,467,991), XSPR_MASK, PPC403, { RS } },
4149{ "mtl2cr", XSPR(31,467,1017), XSPR_MASK, PPC750, { RS } },
4150{ "mtdccr", XSPR(31,467,1018), XSPR_MASK, PPC403, { RS } },
4151{ "mticcr", XSPR(31,467,1019), XSPR_MASK, PPC403, { RS } },
4152{ "mtictc", XSPR(31,467,1019), XSPR_MASK, PPC750, { RS } },
4153{ "mtpbl1", XSPR(31,467,1020), XSPR_MASK, PPC403, { RS } },
4154{ "mtthrm1", XSPR(31,467,1020), XSPR_MASK, PPC750, { RS } },
4155{ "mtpbu1", XSPR(31,467,1021), XSPR_MASK, PPC403, { RS } },
4156{ "mtthrm2", XSPR(31,467,1021), XSPR_MASK, PPC750, { RS } },
4157{ "mtpbl2", XSPR(31,467,1022), XSPR_MASK, PPC403, { RS } },
4158{ "mtthrm3", XSPR(31,467,1022), XSPR_MASK, PPC750, { RS } },
4159{ "mtpbu2", XSPR(31,467,1023), XSPR_MASK, PPC403, { RS } },
dde1b132 4160{ "mtspr", X(31,467), X_MASK, COM, { SPR, RS } },
252b5132
RH
4161
4162{ "dcbi", X(31,470), XRT_MASK, PPC, { RA, RB } },
4163
4164{ "nand", XRC(31,476,0), X_MASK, COM, { RA, RS, RB } },
4165{ "nand.", XRC(31,476,1), X_MASK, COM, { RA, RS, RB } },
4166
418c1742
MG
4167{ "dcbie", X(31,478), XRT_MASK, BOOKE64, { RA, RB } },
4168
7d5b217e 4169{ "dcread", X(31,486), X_MASK, PPC403|PPC440, { RT, RA, RB }},
252b5132 4170
914749f6 4171{ "mtpmr", X(31,462), X_MASK, PPCPMR, { PMR, RS }},
23976049
EZ
4172
4173{ "icbtls", X(31,486), X_MASK, PPCCHLK, { CT, RA, RB }},
4174
252b5132 4175{ "nabs", XO(31,488,0,0), XORB_MASK, M601, { RT, RA } },
418c1742 4176{ "subfme64",XO(31,488,0,0), XORB_MASK, BOOKE64, { RT, RA } },
252b5132
RH
4177{ "nabs.", XO(31,488,0,1), XORB_MASK, M601, { RT, RA } },
4178{ "nabso", XO(31,488,1,0), XORB_MASK, M601, { RT, RA } },
418c1742 4179{ "subfme64o",XO(31,488,1,0), XORB_MASK, BOOKE64, { RT, RA } },
252b5132
RH
4180{ "nabso.", XO(31,488,1,1), XORB_MASK, M601, { RT, RA } },
4181
4182{ "divd", XO(31,489,0,0), XO_MASK, PPC64, { RT, RA, RB } },
4183{ "divd.", XO(31,489,0,1), XO_MASK, PPC64, { RT, RA, RB } },
4184{ "divdo", XO(31,489,1,0), XO_MASK, PPC64, { RT, RA, RB } },
4185{ "divdo.", XO(31,489,1,1), XO_MASK, PPC64, { RT, RA, RB } },
4186
418c1742
MG
4187{ "addme64", XO(31,490,0,0), XORB_MASK, BOOKE64, { RT, RA } },
4188{ "addme64o",XO(31,490,1,0), XORB_MASK, BOOKE64, { RT, RA } },
4189
252b5132
RH
4190{ "divw", XO(31,491,0,0), XO_MASK, PPC, { RT, RA, RB } },
4191{ "divw.", XO(31,491,0,1), XO_MASK, PPC, { RT, RA, RB } },
4192{ "divwo", XO(31,491,1,0), XO_MASK, PPC, { RT, RA, RB } },
4193{ "divwo.", XO(31,491,1,1), XO_MASK, PPC, { RT, RA, RB } },
4194
dde1b132 4195{ "icbtlse", X(31,494), X_MASK, PPCCHLK64, { CT, RA, RB }},
23976049 4196
252b5132
RH
4197{ "slbia", X(31,498), 0xffffffff, PPC64, { 0 } },
4198
4199{ "cli", X(31,502), XRB_MASK, POWER, { RT, RA } },
4200
418c1742
MG
4201{ "stdcxe.", XRC(31,511,1), X_MASK, BOOKE64, { RS, RA, RB } },
4202
252b5132
RH
4203{ "mcrxr", X(31,512), XRARB_MASK|(3<<21), COM, { BF } },
4204
23976049 4205{ "bblels", X(31,518), X_MASK, PPCBRLK, { 0 }},
dde1b132 4206{ "mcrxr64", X(31,544), XRARB_MASK|(3<<21), BOOKE64, { BF } },
418c1742 4207
252b5132
RH
4208{ "clcs", X(31,531), XRB_MASK, M601, { RT, RA } },
4209
ede602d7
AM
4210{ "ldbrx", X(31,532), X_MASK, CELL, { RT, RA0, RB } },
4211
fdd12ef3 4212{ "lswx", X(31,533), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
4213{ "lsx", X(31,533), X_MASK, PWRCOM, { RT, RA, RB } },
4214
fdd12ef3 4215{ "lwbrx", X(31,534), X_MASK, PPCCOM, { RT, RA0, RB } },
252b5132
RH
4216{ "lbrx", X(31,534), X_MASK, PWRCOM, { RT, RA, RB } },
4217
fdd12ef3 4218{ "lfsx", X(31,535), X_MASK, COM, { FRT, RA0, RB } },
252b5132
RH
4219
4220{ "srw", XRC(31,536,0), X_MASK, PPCCOM, { RA, RS, RB } },
4221{ "sr", XRC(31,536,0), X_MASK, PWRCOM, { RA, RS, RB } },
4222{ "srw.", XRC(31,536,1), X_MASK, PPCCOM, { RA, RS, RB } },
4223{ "sr.", XRC(31,536,1), X_MASK, PWRCOM, { RA, RS, RB } },
4224
4225{ "rrib", XRC(31,537,0), X_MASK, M601, { RA, RS, RB } },
4226{ "rrib.", XRC(31,537,1), X_MASK, M601, { RA, RS, RB } },
4227
4228{ "srd", XRC(31,539,0), X_MASK, PPC64, { RA, RS, RB } },
4229{ "srd.", XRC(31,539,1), X_MASK, PPC64, { RA, RS, RB } },
4230
4231{ "maskir", XRC(31,541,0), X_MASK, M601, { RA, RS, RB } },
4232{ "maskir.", XRC(31,541,1), X_MASK, M601, { RA, RS, RB } },
4233
fdd12ef3 4234{ "lwbrxe", X(31,542), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4235
fdd12ef3 4236{ "lfsxe", X(31,543), X_MASK, BOOKE64, { FRT, RA0, RB } },
418c1742 4237
23976049 4238{ "bbelr", X(31,550), X_MASK, PPCBRLK, { 0 }},
fdd12ef3 4239
252b5132
RH
4240{ "tlbsync", X(31,566), 0xffffffff, PPC, { 0 } },
4241
4242{ "lfsux", X(31,567), X_MASK, COM, { FRT, RAS, RB } },
4243
418c1742
MG
4244{ "lfsuxe", X(31,575), X_MASK, BOOKE64, { FRT, RAS, RB } },
4245
252b5132
RH
4246{ "mfsr", X(31,595), XRB_MASK|(1<<20), COM32, { RT, SR } },
4247
fdd12ef3
AM
4248{ "lswi", X(31,597), X_MASK, PPCCOM, { RT, RA0, NB } },
4249{ "lsi", X(31,597), X_MASK, PWRCOM, { RT, RA0, NB } },
252b5132 4250
661bd698 4251{ "lwsync", XSYNC(31,598,1), 0xffffffff, PPC, { 0 } },
6ba045b1 4252{ "ptesync", XSYNC(31,598,2), 0xffffffff, PPC64, { 0 } },
b6be6416 4253{ "msync", X(31,598), 0xffffffff, BOOKE, { 0 } },
6ba045b1 4254{ "sync", X(31,598), XSYNC_MASK, PPCCOM, { LS } },
252b5132
RH
4255{ "dcs", X(31,598), 0xffffffff, PWRCOM, { 0 } },
4256
fdd12ef3 4257{ "lfdx", X(31,599), X_MASK, COM, { FRT, RA0, RB } },
252b5132 4258
fdd12ef3 4259{ "lfdxe", X(31,607), X_MASK, BOOKE64, { FRT, RA0, RB } },
418c1742 4260
252b5132
RH
4261{ "mfsri", X(31,627), X_MASK, PWRCOM, { RT, RA, RB } },
4262
4263{ "dclst", X(31,630), XRB_MASK, PWRCOM, { RS, RA } },
4264
4265{ "lfdux", X(31,631), X_MASK, COM, { FRT, RAS, RB } },
4266
418c1742
MG
4267{ "lfduxe", X(31,639), X_MASK, BOOKE64, { FRT, RAS, RB } },
4268
252b5132
RH
4269{ "mfsrin", X(31,659), XRA_MASK, PPC32, { RT, RB } },
4270
ede602d7
AM
4271{ "stdbrx", X(31,660), X_MASK, CELL, { RS, RA0, RB } },
4272
fdd12ef3
AM
4273{ "stswx", X(31,661), X_MASK, PPCCOM, { RS, RA0, RB } },
4274{ "stsx", X(31,661), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132 4275
fdd12ef3
AM
4276{ "stwbrx", X(31,662), X_MASK, PPCCOM, { RS, RA0, RB } },
4277{ "stbrx", X(31,662), X_MASK, PWRCOM, { RS, RA0, RB } },
252b5132 4278
fdd12ef3 4279{ "stfsx", X(31,663), X_MASK, COM, { FRS, RA0, RB } },
252b5132
RH
4280
4281{ "srq", XRC(31,664,0), X_MASK, M601, { RA, RS, RB } },
4282{ "srq.", XRC(31,664,1), X_MASK, M601, { RA, RS, RB } },
4283
4284{ "sre", XRC(31,665,0), X_MASK, M601, { RA, RS, RB } },
4285{ "sre.", XRC(31,665,1), X_MASK, M601, { RA, RS, RB } },
4286
fdd12ef3 4287{ "stwbrxe", X(31,670), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4288
fdd12ef3
AM
4289{ "stfsxe", X(31,671), X_MASK, BOOKE64, { FRS, RA0, RB } },
4290
252b5132
RH
4291{ "stfsux", X(31,695), X_MASK, COM, { FRS, RAS, RB } },
4292
4293{ "sriq", XRC(31,696,0), X_MASK, M601, { RA, RS, SH } },
4294{ "sriq.", XRC(31,696,1), X_MASK, M601, { RA, RS, SH } },
4295
418c1742
MG
4296{ "stfsuxe", X(31,703), X_MASK, BOOKE64, { FRS, RAS, RB } },
4297
fdd12ef3
AM
4298{ "stswi", X(31,725), X_MASK, PPCCOM, { RS, RA0, NB } },
4299{ "stsi", X(31,725), X_MASK, PWRCOM, { RS, RA0, NB } },
252b5132 4300
fdd12ef3 4301{ "stfdx", X(31,727), X_MASK, COM, { FRS, RA0, RB } },
252b5132
RH
4302
4303{ "srlq", XRC(31,728,0), X_MASK, M601, { RA, RS, RB } },
4304{ "srlq.", XRC(31,728,1), X_MASK, M601, { RA, RS, RB } },
4305
4306{ "sreq", XRC(31,729,0), X_MASK, M601, { RA, RS, RB } },
4307{ "sreq.", XRC(31,729,1), X_MASK, M601, { RA, RS, RB } },
4308
fdd12ef3
AM
4309{ "stfdxe", X(31,735), X_MASK, BOOKE64, { FRS, RA0, RB } },
4310
823bbe9d 4311{ "dcba", X(31,758), XRT_MASK, PPC405 | BOOKE, { RA, RB } },
e0c21649 4312
252b5132
RH
4313{ "stfdux", X(31,759), X_MASK, COM, { FRS, RAS, RB } },
4314
4315{ "srliq", XRC(31,760,0), X_MASK, M601, { RA, RS, SH } },
4316{ "srliq.", XRC(31,760,1), X_MASK, M601, { RA, RS, SH } },
4317
418c1742
MG
4318{ "dcbae", X(31,766), XRT_MASK, BOOKE64, { RA, RB } },
4319
4320{ "stfduxe", X(31,767), X_MASK, BOOKE64, { FRS, RAS, RB } },
4321
4322{ "tlbivax", X(31,786), XRT_MASK, BOOKE, { RA, RB } },
dde1b132 4323{ "tlbivaxe",X(31,787), XRT_MASK, BOOKE64, { RA, RB } },
418c1742 4324
fdd12ef3 4325{ "lhbrx", X(31,790), X_MASK, COM, { RT, RA0, RB } },
252b5132
RH
4326
4327{ "sraw", XRC(31,792,0), X_MASK, PPCCOM, { RA, RS, RB } },
4328{ "sra", XRC(31,792,0), X_MASK, PWRCOM, { RA, RS, RB } },
4329{ "sraw.", XRC(31,792,1), X_MASK, PPCCOM, { RA, RS, RB } },
4330{ "sra.", XRC(31,792,1), X_MASK, PWRCOM, { RA, RS, RB } },
4331
4332{ "srad", XRC(31,794,0), X_MASK, PPC64, { RA, RS, RB } },
4333{ "srad.", XRC(31,794,1), X_MASK, PPC64, { RA, RS, RB } },
4334
fdd12ef3 4335{ "lhbrxe", X(31,798), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4336
fdd12ef3
AM
4337{ "ldxe", X(31,799), X_MASK, BOOKE64, { RT, RA0, RB } },
4338{ "lduxe", X(31,831), X_MASK, BOOKE64, { RT, RA0, RB } },
418c1742 4339
252b5132
RH
4340{ "rac", X(31,818), X_MASK, PWRCOM, { RT, RA, RB } },
4341
f5c120c5 4342{ "dss", XDSS(31,822,0), XDSS_MASK, PPCVEC, { STRM } },
eb0fdfed 4343{ "dssall", XDSS(31,822,1), XDSS_MASK, PPCVEC, { 0 } },
f5c120c5 4344
252b5132
RH
4345{ "srawi", XRC(31,824,0), X_MASK, PPCCOM, { RA, RS, SH } },
4346{ "srai", XRC(31,824,0), X_MASK, PWRCOM, { RA, RS, SH } },
4347{ "srawi.", XRC(31,824,1), X_MASK, PPCCOM, { RA, RS, SH } },
4348{ "srai.", XRC(31,824,1), X_MASK, PWRCOM, { RA, RS, SH } },
4349
6ba045b1
AM
4350{ "slbmfev", X(31,851), XRA_MASK, PPC64, { RT, RB } },
4351
b6be6416 4352{ "mbar", X(31,854), X_MASK, BOOKE, { MO } },
252b5132
RH
4353{ "eieio", X(31,854), 0xffffffff, PPC, { 0 } },
4354
eed0d89a
AM
4355{ "tlbsx", XRC(31,914,0), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4356{ "tlbsx.", XRC(31,914,1), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
dde1b132
NC
4357{ "tlbsxe", XRC(31,915,0), X_MASK, BOOKE64, { RA, RB } },
4358{ "tlbsxe.", XRC(31,915,1), X_MASK, BOOKE64, { RA, RB } },
418c1742 4359
6ba045b1
AM
4360{ "slbmfee", X(31,915), XRA_MASK, PPC64, { RT, RB } },
4361
fdd12ef3 4362{ "sthbrx", X(31,918), X_MASK, COM, { RS, RA0, RB } },
252b5132
RH
4363
4364{ "sraq", XRC(31,920,0), X_MASK, M601, { RA, RS, RB } },
4365{ "sraq.", XRC(31,920,1), X_MASK, M601, { RA, RS, RB } },
4366
4367{ "srea", XRC(31,921,0), X_MASK, M601, { RA, RS, RB } },
4368{ "srea.", XRC(31,921,1), X_MASK, M601, { RA, RS, RB } },
4369
4370{ "extsh", XRC(31,922,0), XRB_MASK, PPCCOM, { RA, RS } },
4371{ "exts", XRC(31,922,0), XRB_MASK, PWRCOM, { RA, RS } },
4372{ "extsh.", XRC(31,922,1), XRB_MASK, PPCCOM, { RA, RS } },
4373{ "exts.", XRC(31,922,1), XRB_MASK, PWRCOM, { RA, RS } },
4374
fdd12ef3 4375{ "sthbrxe", X(31,926), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4376
fdd12ef3 4377{ "stdxe", X(31,927), X_MASK, BOOKE64, { RS, RA0, RB } },
418c1742 4378
e0c21649
GK
4379{ "tlbrehi", XTLB(31,946,0), XTLB_MASK, PPC403, { RT, RA } },
4380{ "tlbrelo", XTLB(31,946,1), XTLB_MASK, PPC403, { RT, RA } },
eed0d89a 4381{ "tlbre", X(31,946), X_MASK, PPC403|BOOKE, { RSO, RAOPT, SHO } },
252b5132
RH
4382
4383{ "sraiq", XRC(31,952,0), X_MASK, M601, { RA, RS, SH } },
4384{ "sraiq.", XRC(31,952,1), X_MASK, M601, { RA, RS, SH } },
4385
4386{ "extsb", XRC(31,954,0), XRB_MASK, PPC, { RA, RS} },
4387{ "extsb.", XRC(31,954,1), XRB_MASK, PPC, { RA, RS} },
4388
418c1742
MG
4389{ "stduxe", X(31,959), X_MASK, BOOKE64, { RS, RAS, RB } },
4390
7d5b217e 4391{ "iccci", X(31,966), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132 4392
e0c21649
GK
4393{ "tlbwehi", XTLB(31,978,0), XTLB_MASK, PPC403, { RT, RA } },
4394{ "tlbwelo", XTLB(31,978,1), XTLB_MASK, PPC403, { RT, RA } },
fdd12ef3 4395{ "tlbwe", X(31,978), X_MASK, PPC403|BOOKE, { RSO, RAOPT, SHO } },
823bbe9d 4396{ "tlbld", X(31,978), XRTRA_MASK, PPC, { RB } },
252b5132
RH
4397
4398{ "icbi", X(31,982), XRT_MASK, PPC, { RA, RB } },
4399
fdd12ef3 4400{ "stfiwx", X(31,983), X_MASK, PPC, { FRS, RA0, RB } },
252b5132 4401
dde1b132
NC
4402{ "extsw", XRC(31,986,0), XRB_MASK, PPC64 | BOOKE64,{ RA, RS } },
4403{ "extsw.", XRC(31,986,1), XRB_MASK, PPC64, { RA, RS } },
252b5132 4404
7d5b217e 4405{ "icread", X(31,998), XRT_MASK, PPC403|PPC440, { RA, RB } },
252b5132 4406
418c1742 4407{ "icbie", X(31,990), XRT_MASK, BOOKE64, { RA, RB } },
fdd12ef3 4408{ "stfiwxe", X(31,991), X_MASK, BOOKE64, { FRS, RA0, RB } },
418c1742 4409
252b5132
RH
4410{ "tlbli", X(31,1010), XRTRA_MASK, PPC, { RB } },
4411
f3806e43 4412{ "dcbzl", XOPL(31,1014,1), XRT_MASK,POWER4, { RA, RB } },
252b5132
RH
4413{ "dcbz", X(31,1014), XRT_MASK, PPC, { RA, RB } },
4414{ "dclz", X(31,1014), XRT_MASK, PPC, { RA, RB } },
4415
418c1742
MG
4416{ "dcbze", X(31,1022), XRT_MASK, BOOKE64, { RA, RB } },
4417
786e2c0f
C
4418{ "lvebx", X(31, 7), X_MASK, PPCVEC, { VD, RA, RB } },
4419{ "lvehx", X(31, 39), X_MASK, PPCVEC, { VD, RA, RB } },
4420{ "lvewx", X(31, 71), X_MASK, PPCVEC, { VD, RA, RB } },
4421{ "lvsl", X(31, 6), X_MASK, PPCVEC, { VD, RA, RB } },
4422{ "lvsr", X(31, 38), X_MASK, PPCVEC, { VD, RA, RB } },
4423{ "lvx", X(31, 103), X_MASK, PPCVEC, { VD, RA, RB } },
4424{ "lvxl", X(31, 359), X_MASK, PPCVEC, { VD, RA, RB } },
4425{ "stvebx", X(31, 135), X_MASK, PPCVEC, { VS, RA, RB } },
4426{ "stvehx", X(31, 167), X_MASK, PPCVEC, { VS, RA, RB } },
4427{ "stvewx", X(31, 199), X_MASK, PPCVEC, { VS, RA, RB } },
4428{ "stvx", X(31, 231), X_MASK, PPCVEC, { VS, RA, RB } },
4429{ "stvxl", X(31, 487), X_MASK, PPCVEC, { VS, RA, RB } },
4430
ede602d7
AM
4431/* New load/store left/right index vector instructions that are in the Cell only. */
4432{ "lvlx", X(31, 519), X_MASK, CELL, { VD, RA0, RB } },
4433{ "lvlxl", X(31, 775), X_MASK, CELL, { VD, RA0, RB } },
4434{ "lvrx", X(31, 551), X_MASK, CELL, { VD, RA0, RB } },
4435{ "lvrxl", X(31, 807), X_MASK, CELL, { VD, RA0, RB } },
4436{ "stvlx", X(31, 647), X_MASK, CELL, { VS, RA0, RB } },
4437{ "stvlxl", X(31, 903), X_MASK, CELL, { VS, RA0, RB } },
4438{ "stvrx", X(31, 679), X_MASK, CELL, { VS, RA0, RB } },
4439{ "stvrxl", X(31, 935), X_MASK, CELL, { VS, RA0, RB } },
4440
fdd12ef3
AM
4441{ "lwz", OP(32), OP_MASK, PPCCOM, { RT, D, RA0 } },
4442{ "l", OP(32), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132
RH
4443
4444{ "lwzu", OP(33), OP_MASK, PPCCOM, { RT, D, RAL } },
fdd12ef3 4445{ "lu", OP(33), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132 4446
fdd12ef3 4447{ "lbz", OP(34), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4448
4449{ "lbzu", OP(35), OP_MASK, COM, { RT, D, RAL } },
4450
fdd12ef3
AM
4451{ "stw", OP(36), OP_MASK, PPCCOM, { RS, D, RA0 } },
4452{ "st", OP(36), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132
RH
4453
4454{ "stwu", OP(37), OP_MASK, PPCCOM, { RS, D, RAS } },
fdd12ef3 4455{ "stu", OP(37), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132 4456
fdd12ef3 4457{ "stb", OP(38), OP_MASK, COM, { RS, D, RA0 } },
252b5132
RH
4458
4459{ "stbu", OP(39), OP_MASK, COM, { RS, D, RAS } },
4460
fdd12ef3 4461{ "lhz", OP(40), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4462
4463{ "lhzu", OP(41), OP_MASK, COM, { RT, D, RAL } },
4464
fdd12ef3 4465{ "lha", OP(42), OP_MASK, COM, { RT, D, RA0 } },
252b5132
RH
4466
4467{ "lhau", OP(43), OP_MASK, COM, { RT, D, RAL } },
4468
fdd12ef3 4469{ "sth", OP(44), OP_MASK, COM, { RS, D, RA0 } },
252b5132
RH
4470
4471{ "sthu", OP(45), OP_MASK, COM, { RS, D, RAS } },
4472
4473{ "lmw", OP(46), OP_MASK, PPCCOM, { RT, D, RAM } },
fdd12ef3 4474{ "lm", OP(46), OP_MASK, PWRCOM, { RT, D, RA0 } },
252b5132 4475
fdd12ef3
AM
4476{ "stmw", OP(47), OP_MASK, PPCCOM, { RS, D, RA0 } },
4477{ "stm", OP(47), OP_MASK, PWRCOM, { RS, D, RA0 } },
252b5132 4478
fdd12ef3 4479{ "lfs", OP(48), OP_MASK, COM, { FRT, D, RA0 } },
252b5132
RH
4480
4481{ "lfsu", OP(49), OP_MASK, COM, { FRT, D, RAS } },
4482
fdd12ef3 4483{ "lfd", OP(50), OP_MASK, COM, { FRT, D, RA0 } },
252b5132
RH
4484
4485{ "lfdu", OP(51), OP_MASK, COM, { FRT, D, RAS } },
4486
fdd12ef3 4487{ "stfs", OP(52), OP_MASK, COM, { FRS, D, RA0 } },
252b5132
RH
4488
4489{ "stfsu", OP(53), OP_MASK, COM, { FRS, D, RAS } },
4490
fdd12ef3 4491{ "stfd", OP(54), OP_MASK, COM, { FRS, D, RA0 } },
252b5132
RH
4492
4493{ "stfdu", OP(55), OP_MASK, COM, { FRS, D, RAS } },
4494
adadcc0c
AM
4495{ "lq", OP(56), OP_MASK, POWER4, { RTQ, DQ, RAQ } },
4496
fdd12ef3 4497{ "lfq", OP(56), OP_MASK, POWER2, { FRT, D, RA0 } },
252b5132 4498
fdd12ef3 4499{ "lfqu", OP(57), OP_MASK, POWER2, { FRT, D, RA0 } },
252b5132 4500
fdd12ef3 4501{ "lbze", DEO(58,0), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4502{ "lbzue", DEO(58,1), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4503{ "lhze", DEO(58,2), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4504{ "lhzue", DEO(58,3), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4505{ "lhae", DEO(58,4), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4506{ "lhaue", DEO(58,5), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4507{ "lwze", DEO(58,6), DE_MASK, BOOKE64, { RT, DE, RA0 } },
418c1742 4508{ "lwzue", DEO(58,7), DE_MASK, BOOKE64, { RT, DE, RAL } },
fdd12ef3 4509{ "stbe", DEO(58,8), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742 4510{ "stbue", DEO(58,9), DE_MASK, BOOKE64, { RS, DE, RAS } },
fdd12ef3 4511{ "sthe", DEO(58,10), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742 4512{ "sthue", DEO(58,11), DE_MASK, BOOKE64, { RS, DE, RAS } },
fdd12ef3 4513{ "stwe", DEO(58,14), DE_MASK, BOOKE64, { RS, DE, RA0 } },
418c1742
MG
4514{ "stwue", DEO(58,15), DE_MASK, BOOKE64, { RS, DE, RAS } },
4515
fdd12ef3 4516{ "ld", DSO(58,0), DS_MASK, PPC64, { RT, DS, RA0 } },
802a735e
AM
4517
4518{ "ldu", DSO(58,1), DS_MASK, PPC64, { RT, DS, RAL } },
4519
fdd12ef3
AM
4520{ "lwa", DSO(58,2), DS_MASK, PPC64, { RT, DS, RA0 } },
4521
252b5132
RH
4522{ "fdivs", A(59,18,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4523{ "fdivs.", A(59,18,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4524
4525{ "fsubs", A(59,20,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4526{ "fsubs.", A(59,20,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4527
4528{ "fadds", A(59,21,0), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4529{ "fadds.", A(59,21,1), AFRC_MASK, PPC, { FRT, FRA, FRB } },
4530
4531{ "fsqrts", A(59,22,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4532{ "fsqrts.", A(59,22,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4533
4534{ "fres", A(59,24,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4535{ "fres.", A(59,24,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4536
4537{ "fmuls", A(59,25,0), AFRB_MASK, PPC, { FRT, FRA, FRC } },
4538{ "fmuls.", A(59,25,1), AFRB_MASK, PPC, { FRT, FRA, FRC } },
4539
ce7a772b
AM
4540{ "frsqrtes", A(59,26,0), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4541{ "frsqrtes.",A(59,26,1), AFRAFRC_MASK, POWER5, { FRT, FRB } },
1ed8e1e4 4542
252b5132
RH
4543{ "fmsubs", A(59,28,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4544{ "fmsubs.", A(59,28,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4545
4546{ "fmadds", A(59,29,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4547{ "fmadds.", A(59,29,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4548
4549{ "fnmsubs", A(59,30,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4550{ "fnmsubs.",A(59,30,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4551
4552{ "fnmadds", A(59,31,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4553{ "fnmadds.",A(59,31,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4554
4555{ "stfq", OP(60), OP_MASK, POWER2, { FRS, D, RA } },
4556
4557{ "stfqu", OP(61), OP_MASK, POWER2, { FRS, D, RA } },
4558
fdd12ef3
AM
4559{ "lde", DEO(62,0), DE_MASK, BOOKE64, { RT, DES, RA0 } },
4560{ "ldue", DEO(62,1), DE_MASK, BOOKE64, { RT, DES, RA0 } },
4561{ "lfse", DEO(62,4), DE_MASK, BOOKE64, { FRT, DES, RA0 } },
418c1742 4562{ "lfsue", DEO(62,5), DE_MASK, BOOKE64, { FRT, DES, RAS } },
fdd12ef3 4563{ "lfde", DEO(62,6), DE_MASK, BOOKE64, { FRT, DES, RA0 } },
418c1742 4564{ "lfdue", DEO(62,7), DE_MASK, BOOKE64, { FRT, DES, RAS } },
fdd12ef3 4565{ "stde", DEO(62,8), DE_MASK, BOOKE64, { RS, DES, RA0 } },
418c1742 4566{ "stdue", DEO(62,9), DE_MASK, BOOKE64, { RS, DES, RAS } },
fdd12ef3 4567{ "stfse", DEO(62,12), DE_MASK, BOOKE64, { FRS, DES, RA0 } },
418c1742 4568{ "stfsue", DEO(62,13), DE_MASK, BOOKE64, { FRS, DES, RAS } },
fdd12ef3 4569{ "stfde", DEO(62,14), DE_MASK, BOOKE64, { FRS, DES, RA0 } },
418c1742
MG
4570{ "stfdue", DEO(62,15), DE_MASK, BOOKE64, { FRS, DES, RAS } },
4571
fdd12ef3 4572{ "std", DSO(62,0), DS_MASK, PPC64, { RS, DS, RA0 } },
802a735e
AM
4573
4574{ "stdu", DSO(62,1), DS_MASK, PPC64, { RS, DS, RAS } },
4575
fdd12ef3
AM
4576{ "stq", DSO(62,2), DS_MASK, POWER4, { RSQ, DS, RA0 } },
4577
252b5132
RH
4578{ "fcmpu", X(63,0), X_MASK|(3<<21), COM, { BF, FRA, FRB } },
4579
4580{ "frsp", XRC(63,12,0), XRA_MASK, COM, { FRT, FRB } },
4581{ "frsp.", XRC(63,12,1), XRA_MASK, COM, { FRT, FRB } },
4582
4583{ "fctiw", XRC(63,14,0), XRA_MASK, PPCCOM, { FRT, FRB } },
4584{ "fcir", XRC(63,14,0), XRA_MASK, POWER2, { FRT, FRB } },
4585{ "fctiw.", XRC(63,14,1), XRA_MASK, PPCCOM, { FRT, FRB } },
4586{ "fcir.", XRC(63,14,1), XRA_MASK, POWER2, { FRT, FRB } },
4587
4588{ "fctiwz", XRC(63,15,0), XRA_MASK, PPCCOM, { FRT, FRB } },
4589{ "fcirz", XRC(63,15,0), XRA_MASK, POWER2, { FRT, FRB } },
4590{ "fctiwz.", XRC(63,15,1), XRA_MASK, PPCCOM, { FRT, FRB } },
4591{ "fcirz.", XRC(63,15,1), XRA_MASK, POWER2, { FRT, FRB } },
4592
4593{ "fdiv", A(63,18,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4594{ "fd", A(63,18,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4595{ "fdiv.", A(63,18,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4596{ "fd.", A(63,18,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4597
4598{ "fsub", A(63,20,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4599{ "fs", A(63,20,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4600{ "fsub.", A(63,20,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4601{ "fs.", A(63,20,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4602
4603{ "fadd", A(63,21,0), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4604{ "fa", A(63,21,0), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4605{ "fadd.", A(63,21,1), AFRC_MASK, PPCCOM, { FRT, FRA, FRB } },
4606{ "fa.", A(63,21,1), AFRC_MASK, PWRCOM, { FRT, FRA, FRB } },
4607
4608{ "fsqrt", A(63,22,0), AFRAFRC_MASK, PPCPWR2, { FRT, FRB } },
4609{ "fsqrt.", A(63,22,1), AFRAFRC_MASK, PPCPWR2, { FRT, FRB } },
4610
4611{ "fsel", A(63,23,0), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4612{ "fsel.", A(63,23,1), A_MASK, PPC, { FRT,FRA,FRC,FRB } },
4613
1ed8e1e4
AM
4614{ "fre", A(63,24,0), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4615{ "fre.", A(63,24,1), AFRAFRC_MASK, POWER5, { FRT, FRB } },
4616
252b5132
RH
4617{ "fmul", A(63,25,0), AFRB_MASK, PPCCOM, { FRT, FRA, FRC } },
4618{ "fm", A(63,25,0), AFRB_MASK, PWRCOM, { FRT, FRA, FRC } },
4619{ "fmul.", A(63,25,1), AFRB_MASK, PPCCOM, { FRT, FRA, FRC } },
4620{ "fm.", A(63,25,1), AFRB_MASK, PWRCOM, { FRT, FRA, FRC } },
4621
4622{ "frsqrte", A(63,26,0), AFRAFRC_MASK, PPC, { FRT, FRB } },
4623{ "frsqrte.",A(63,26,1), AFRAFRC_MASK, PPC, { FRT, FRB } },
4624
4625{ "fmsub", A(63,28,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4626{ "fms", A(63,28,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4627{ "fmsub.", A(63,28,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4628{ "fms.", A(63,28,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4629
4630{ "fmadd", A(63,29,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4631{ "fma", A(63,29,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4632{ "fmadd.", A(63,29,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4633{ "fma.", A(63,29,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4634
4635{ "fnmsub", A(63,30,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4636{ "fnms", A(63,30,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4637{ "fnmsub.", A(63,30,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4638{ "fnms.", A(63,30,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4639
4640{ "fnmadd", A(63,31,0), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4641{ "fnma", A(63,31,0), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4642{ "fnmadd.", A(63,31,1), A_MASK, PPCCOM, { FRT,FRA,FRC,FRB } },
4643{ "fnma.", A(63,31,1), A_MASK, PWRCOM, { FRT,FRA,FRC,FRB } },
4644
4645{ "fcmpo", X(63,32), X_MASK|(3<<21), COM, { BF, FRA, FRB } },
4646
4647{ "mtfsb1", XRC(63,38,0), XRARB_MASK, COM, { BT } },
4648{ "mtfsb1.", XRC(63,38,1), XRARB_MASK, COM, { BT } },
4649
4650{ "fneg", XRC(63,40,0), XRA_MASK, COM, { FRT, FRB } },
4651{ "fneg.", XRC(63,40,1), XRA_MASK, COM, { FRT, FRB } },
4652
4653{ "mcrfs", X(63,64), XRB_MASK|(3<<21)|(3<<16), COM, { BF, BFA } },
4654
4655{ "mtfsb0", XRC(63,70,0), XRARB_MASK, COM, { BT } },
4656{ "mtfsb0.", XRC(63,70,1), XRARB_MASK, COM, { BT } },
4657
4658{ "fmr", XRC(63,72,0), XRA_MASK, COM, { FRT, FRB } },
4659{ "fmr.", XRC(63,72,1), XRA_MASK, COM, { FRT, FRB } },
4660
4661{ "mtfsfi", XRC(63,134,0), XRA_MASK|(3<<21)|(1<<11), COM, { BF, U } },
4662{ "mtfsfi.", XRC(63,134,1), XRA_MASK|(3<<21)|(1<<11), COM, { BF, U } },
4663
4664{ "fnabs", XRC(63,136,0), XRA_MASK, COM, { FRT, FRB } },
4665{ "fnabs.", XRC(63,136,1), XRA_MASK, COM, { FRT, FRB } },
4666
4667{ "fabs", XRC(63,264,0), XRA_MASK, COM, { FRT, FRB } },
4668{ "fabs.", XRC(63,264,1), XRA_MASK, COM, { FRT, FRB } },
4669
ce7a772b
AM
4670{ "frin", XRC(63,392,0), XRA_MASK, POWER5, { FRT, FRB } },
4671{ "frin.", XRC(63,392,1), XRA_MASK, POWER5, { FRT, FRB } },
4672{ "friz", XRC(63,424,0), XRA_MASK, POWER5, { FRT, FRB } },
4673{ "friz.", XRC(63,424,1), XRA_MASK, POWER5, { FRT, FRB } },
4674{ "frip", XRC(63,456,0), XRA_MASK, POWER5, { FRT, FRB } },
4675{ "frip.", XRC(63,456,1), XRA_MASK, POWER5, { FRT, FRB } },
4676{ "frim", XRC(63,488,0), XRA_MASK, POWER5, { FRT, FRB } },
4677{ "frim.", XRC(63,488,1), XRA_MASK, POWER5, { FRT, FRB } },
4678
252b5132
RH
4679{ "mffs", XRC(63,583,0), XRARB_MASK, COM, { FRT } },
4680{ "mffs.", XRC(63,583,1), XRARB_MASK, COM, { FRT } },
4681
4682{ "mtfsf", XFL(63,711,0), XFL_MASK, COM, { FLM, FRB } },
4683{ "mtfsf.", XFL(63,711,1), XFL_MASK, COM, { FLM, FRB } },
4684
4685{ "fctid", XRC(63,814,0), XRA_MASK, PPC64, { FRT, FRB } },
4686{ "fctid.", XRC(63,814,1), XRA_MASK, PPC64, { FRT, FRB } },
4687
4688{ "fctidz", XRC(63,815,0), XRA_MASK, PPC64, { FRT, FRB } },
4689{ "fctidz.", XRC(63,815,1), XRA_MASK, PPC64, { FRT, FRB } },
4690
4691{ "fcfid", XRC(63,846,0), XRA_MASK, PPC64, { FRT, FRB } },
4692{ "fcfid.", XRC(63,846,1), XRA_MASK, PPC64, { FRT, FRB } },
4693
4694};
4695
4696const int powerpc_num_opcodes =
4697 sizeof (powerpc_opcodes) / sizeof (powerpc_opcodes[0]);
4698\f
4699/* The macro table. This is only used by the assembler. */
4700
4701/* The expressions of the form (-x ! 31) & (x | 31) have the value 0
4702 when x=0; 32-x when x is between 1 and 31; are negative if x is
4703 negative; and are 32 or more otherwise. This is what you want
4704 when, for instance, you are emulating a right shift by a
4705 rotate-left-and-mask, because the underlying instructions support
4706 shifts of size 0 but not shifts of size 32. By comparison, when
4707 extracting x bits from some word you want to use just 32-x, because
4708 the underlying instructions don't support extracting 0 bits but do
4709 support extracting the whole word (32 bits in this case). */
4710
4711const struct powerpc_macro powerpc_macros[] = {
4712{ "extldi", 4, PPC64, "rldicr %0,%1,%3,(%2)-1" },
4713{ "extldi.", 4, PPC64, "rldicr. %0,%1,%3,(%2)-1" },
4714{ "extrdi", 4, PPC64, "rldicl %0,%1,(%2)+(%3),64-(%2)" },
4715{ "extrdi.", 4, PPC64, "rldicl. %0,%1,(%2)+(%3),64-(%2)" },
4716{ "insrdi", 4, PPC64, "rldimi %0,%1,64-((%2)+(%3)),%3" },
4717{ "insrdi.", 4, PPC64, "rldimi. %0,%1,64-((%2)+(%3)),%3" },
4718{ "rotrdi", 3, PPC64, "rldicl %0,%1,(-(%2)!63)&((%2)|63),0" },
4719{ "rotrdi.", 3, PPC64, "rldicl. %0,%1,(-(%2)!63)&((%2)|63),0" },
4720{ "sldi", 3, PPC64, "rldicr %0,%1,%2,63-(%2)" },
4721{ "sldi.", 3, PPC64, "rldicr. %0,%1,%2,63-(%2)" },
4722{ "srdi", 3, PPC64, "rldicl %0,%1,(-(%2)!63)&((%2)|63),%2" },
4723{ "srdi.", 3, PPC64, "rldicl. %0,%1,(-(%2)!63)&((%2)|63),%2" },
4724{ "clrrdi", 3, PPC64, "rldicr %0,%1,0,63-(%2)" },
4725{ "clrrdi.", 3, PPC64, "rldicr. %0,%1,0,63-(%2)" },
4726{ "clrlsldi",4, PPC64, "rldic %0,%1,%3,(%2)-(%3)" },
4727{ "clrlsldi.",4, PPC64, "rldic. %0,%1,%3,(%2)-(%3)" },
4728
4729{ "extlwi", 4, PPCCOM, "rlwinm %0,%1,%3,0,(%2)-1" },
4730{ "extlwi.", 4, PPCCOM, "rlwinm. %0,%1,%3,0,(%2)-1" },
29ef7e54
AM
4731{ "extrwi", 4, PPCCOM, "rlwinm %0,%1,((%2)+(%3))&((%2)+(%3)<>32),32-(%2),31" },
4732{ "extrwi.", 4, PPCCOM, "rlwinm. %0,%1,((%2)+(%3))&((%2)+(%3)<>32),32-(%2),31" },
252b5132
RH
4733{ "inslwi", 4, PPCCOM, "rlwimi %0,%1,(-(%3)!31)&((%3)|31),%3,(%2)+(%3)-1" },
4734{ "inslwi.", 4, PPCCOM, "rlwimi. %0,%1,(-(%3)!31)&((%3)|31),%3,(%2)+(%3)-1"},
4735{ "insrwi", 4, PPCCOM, "rlwimi %0,%1,32-((%2)+(%3)),%3,(%2)+(%3)-1" },
4736{ "insrwi.", 4, PPCCOM, "rlwimi. %0,%1,32-((%2)+(%3)),%3,(%2)+(%3)-1"},
4737{ "rotrwi", 3, PPCCOM, "rlwinm %0,%1,(-(%2)!31)&((%2)|31),0,31" },
4738{ "rotrwi.", 3, PPCCOM, "rlwinm. %0,%1,(-(%2)!31)&((%2)|31),0,31" },
4739{ "slwi", 3, PPCCOM, "rlwinm %0,%1,%2,0,31-(%2)" },
4740{ "sli", 3, PWRCOM, "rlinm %0,%1,%2,0,31-(%2)" },
4741{ "slwi.", 3, PPCCOM, "rlwinm. %0,%1,%2,0,31-(%2)" },
4742{ "sli.", 3, PWRCOM, "rlinm. %0,%1,%2,0,31-(%2)" },
4743{ "srwi", 3, PPCCOM, "rlwinm %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4744{ "sri", 3, PWRCOM, "rlinm %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4745{ "srwi.", 3, PPCCOM, "rlwinm. %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4746{ "sri.", 3, PWRCOM, "rlinm. %0,%1,(-(%2)!31)&((%2)|31),%2,31" },
4747{ "clrrwi", 3, PPCCOM, "rlwinm %0,%1,0,0,31-(%2)" },
4748{ "clrrwi.", 3, PPCCOM, "rlwinm. %0,%1,0,0,31-(%2)" },
4749{ "clrlslwi",4, PPCCOM, "rlwinm %0,%1,%3,(%2)-(%3),31-(%3)" },
4750{ "clrlslwi.",4, PPCCOM, "rlwinm. %0,%1,%3,(%2)-(%3),31-(%3)" },
252b5132
RH
4751};
4752
4753const int powerpc_num_macros =
4754 sizeof (powerpc_macros) / sizeof (powerpc_macros[0]);
This page took 0.648006 seconds and 4 git commands to generate.