* gdb.python/py-prompt.exp: Quit if the target is remote.
[deliverable/binutils-gdb.git] / opcodes / ppc-dis.c
CommitLineData
252b5132 1/* ppc-dis.c -- Disassemble PowerPC instructions
081ba1b3 2 Copyright 1994, 1995, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
aea77599 3 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
252b5132
RH
4 Written by Ian Lance Taylor, Cygnus Support
5
9b201bb5
NC
6 This file is part of the GNU opcodes library.
7
8 This library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 It is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this file; see the file COPYING. If not, write to the
20 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132 22
252b5132 23#include "sysdep.h"
df7b86aa 24#include <stdio.h>
252b5132 25#include "dis-asm.h"
b9c361e0
JL
26#include "elf-bfd.h"
27#include "elf32-ppc.h"
69fe9ce5 28#include "opintl.h"
252b5132
RH
29#include "opcode/ppc.h"
30
31/* This file provides several disassembler functions, all of which use
32 the disassembler interface defined in dis-asm.h. Several functions
33 are provided because this file handles disassembly for the PowerPC
34 in both big and little endian mode and also for the POWER (RS/6000)
35 chip. */
fa452fa6
PB
36static int print_insn_powerpc (bfd_vma, struct disassemble_info *, int,
37 ppc_cpu_t);
252b5132 38
fa452fa6
PB
39struct dis_private
40{
41 /* Stash the result of parsing disassembler_options here. */
42 ppc_cpu_t dialect;
b240011a 43} private;
fa452fa6
PB
44
45#define POWERPC_DIALECT(INFO) \
46 (((struct dis_private *) ((INFO)->private_data))->dialect)
418c1742 47
69fe9ce5
AM
48struct ppc_mopt {
49 const char *opt;
50 ppc_cpu_t cpu;
51 ppc_cpu_t sticky;
52};
53
54struct ppc_mopt ppc_opts[] = {
bdc70b4a 55 { "403", (PPC_OPCODE_PPC | PPC_OPCODE_403),
69fe9ce5 56 0 },
bdc70b4a 57 { "405", (PPC_OPCODE_PPC | PPC_OPCODE_403 | PPC_OPCODE_405),
69fe9ce5 58 0 },
bdc70b4a
AM
59 { "440", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_440
60 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI),
69fe9ce5 61 0 },
bdc70b4a
AM
62 { "464", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_440
63 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI),
69fe9ce5 64 0 },
bdc70b4a
AM
65 { "476", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_440
66 | PPC_OPCODE_476 | PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5),
9fe54b1c 67 0 },
bdc70b4a 68 { "601", (PPC_OPCODE_PPC | PPC_OPCODE_601),
69fe9ce5 69 0 },
bdc70b4a 70 { "603", (PPC_OPCODE_PPC),
69fe9ce5 71 0 },
bdc70b4a 72 { "604", (PPC_OPCODE_PPC),
69fe9ce5 73 0 },
bdc70b4a 74 { "620", (PPC_OPCODE_PPC | PPC_OPCODE_64),
69fe9ce5 75 0 },
bdc70b4a 76 { "7400", (PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC),
69fe9ce5 77 0 },
bdc70b4a 78 { "7410", (PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC),
69fe9ce5 79 0 },
bdc70b4a 80 { "7450", (PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC),
69fe9ce5 81 0 },
bdc70b4a 82 { "7455", (PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC),
69fe9ce5
AM
83 0 },
84 { "750cl", (PPC_OPCODE_PPC | PPC_OPCODE_PPCPS)
85 , 0 },
bdc70b4a
AM
86 { "a2", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_POWER4
87 | PPC_OPCODE_POWER5 | PPC_OPCODE_CACHELCK | PPC_OPCODE_64
88 | PPC_OPCODE_A2),
cdc51b07 89 0 },
bdc70b4a 90 { "altivec", (PPC_OPCODE_PPC),
69fe9ce5
AM
91 PPC_OPCODE_ALTIVEC },
92 { "any", 0,
93 PPC_OPCODE_ANY },
bdc70b4a 94 { "booke", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE),
69fe9ce5 95 0 },
bdc70b4a 96 { "booke32", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE),
69fe9ce5 97 0 },
bdc70b4a
AM
98 { "cell", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
99 | PPC_OPCODE_CELL | PPC_OPCODE_ALTIVEC),
69fe9ce5 100 0 },
bdc70b4a 101 { "com", (PPC_OPCODE_COMMON),
69fe9ce5 102 0 },
bdc70b4a 103 { "e300", (PPC_OPCODE_PPC | PPC_OPCODE_E300),
69fe9ce5
AM
104 0 },
105 { "e500", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_SPE
106 | PPC_OPCODE_ISEL | PPC_OPCODE_EFS | PPC_OPCODE_BRLOCK
107 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
e01d869a 108 | PPC_OPCODE_E500),
69fe9ce5
AM
109 0 },
110 { "e500mc", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_ISEL
111 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
112 | PPC_OPCODE_E500MC),
113 0 },
0dc93057
AM
114 { "e500mc64", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_ISEL
115 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
63d0fa4e
AM
116 | PPC_OPCODE_E500MC | PPC_OPCODE_64 | PPC_OPCODE_POWER5
117 | PPC_OPCODE_POWER6 | PPC_OPCODE_POWER7),
0dc93057 118 0 },
aea77599
AM
119 { "e5500", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_ISEL
120 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
121 | PPC_OPCODE_E500MC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
122 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6
123 | PPC_OPCODE_POWER7),
124 0 },
125 { "e6500", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_ISEL
126 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
127 | PPC_OPCODE_E500MC | PPC_OPCODE_64 | PPC_OPCODE_ALTIVEC
128 | PPC_OPCODE_ALTIVEC2 | PPC_OPCODE_E6500 | PPC_OPCODE_POWER4
129 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6 | PPC_OPCODE_POWER7),
130 0 },
69fe9ce5
AM
131 { "e500x2", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_SPE
132 | PPC_OPCODE_ISEL | PPC_OPCODE_EFS | PPC_OPCODE_BRLOCK
133 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK | PPC_OPCODE_RFMCI
e01d869a 134 | PPC_OPCODE_E500),
69fe9ce5
AM
135 0 },
136 { "efs", (PPC_OPCODE_PPC | PPC_OPCODE_EFS),
137 0 },
bdc70b4a 138 { "power4", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4),
69fe9ce5 139 0 },
bdc70b4a
AM
140 { "power5", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
141 | PPC_OPCODE_POWER5),
69fe9ce5 142 0 },
bdc70b4a
AM
143 { "power6", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
144 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6 | PPC_OPCODE_ALTIVEC),
69fe9ce5 145 0 },
bdc70b4a
AM
146 { "power7", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_64
147 | PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6
148 | PPC_OPCODE_POWER7 | PPC_OPCODE_ALTIVEC | PPC_OPCODE_VSX),
69fe9ce5 149 0 },
bdc70b4a 150 { "ppc", (PPC_OPCODE_PPC),
69fe9ce5 151 0 },
bdc70b4a 152 { "ppc32", (PPC_OPCODE_PPC),
69fe9ce5 153 0 },
bdc70b4a 154 { "ppc64", (PPC_OPCODE_PPC | PPC_OPCODE_64),
69fe9ce5 155 0 },
bdc70b4a 156 { "ppc64bridge", (PPC_OPCODE_PPC | PPC_OPCODE_64_BRIDGE),
69fe9ce5
AM
157 0 },
158 { "ppcps", (PPC_OPCODE_PPC | PPC_OPCODE_PPCPS),
159 0 },
bdc70b4a 160 { "pwr", (PPC_OPCODE_POWER),
69fe9ce5 161 0 },
bdc70b4a 162 { "pwr2", (PPC_OPCODE_POWER | PPC_OPCODE_POWER2),
cdc51b07 163 0 },
bdc70b4a 164 { "pwr4", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4),
cdc51b07 165 0 },
bdc70b4a
AM
166 { "pwr5", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
167 | PPC_OPCODE_POWER5),
cdc51b07 168 0 },
bdc70b4a
AM
169 { "pwr5x", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
170 | PPC_OPCODE_POWER5),
cdc51b07 171 0 },
bdc70b4a
AM
172 { "pwr6", (PPC_OPCODE_PPC | PPC_OPCODE_64 | PPC_OPCODE_POWER4
173 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6 | PPC_OPCODE_ALTIVEC),
cdc51b07 174 0 },
bdc70b4a
AM
175 { "pwr7", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_64
176 | PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6
177 | PPC_OPCODE_POWER7 | PPC_OPCODE_ALTIVEC | PPC_OPCODE_VSX),
69fe9ce5 178 0 },
bdc70b4a 179 { "pwrx", (PPC_OPCODE_POWER | PPC_OPCODE_POWER2),
69fe9ce5
AM
180 0 },
181 { "spe", (PPC_OPCODE_PPC | PPC_OPCODE_EFS),
182 PPC_OPCODE_SPE },
bdc70b4a
AM
183 { "titan", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_PMR
184 | PPC_OPCODE_RFMCI | PPC_OPCODE_TITAN),
ce3d2015 185 0 },
b9c361e0
JL
186 { "vle", (PPC_OPCODE_PPC | PPC_OPCODE_ISEL | PPC_OPCODE_VLE),
187 PPC_OPCODE_VLE },
bdc70b4a 188 { "vsx", (PPC_OPCODE_PPC),
69fe9ce5
AM
189 PPC_OPCODE_VSX },
190};
191
b9c361e0
JL
192/* Switch between Booke and VLE dialects for interlinked dumps. */
193static ppc_cpu_t
194get_powerpc_dialect (struct disassemble_info *info)
195{
196 ppc_cpu_t dialect = 0;
197
198 dialect = POWERPC_DIALECT (info);
199
200 /* Disassemble according to the section headers flags for VLE-mode. */
201 if (dialect & PPC_OPCODE_VLE
202 && is_ppc_vle (info->section))
203 return dialect;
204 else
205 return dialect & ~ PPC_OPCODE_VLE;
206}
207
69fe9ce5
AM
208/* Handle -m and -M options that set cpu type, and .machine arg. */
209
210ppc_cpu_t
211ppc_parse_cpu (ppc_cpu_t ppc_cpu, const char *arg)
212{
b9c361e0
JL
213 const ppc_cpu_t retain_mask = (PPC_OPCODE_ALTIVEC | PPC_OPCODE_VSX
214 | PPC_OPCODE_SPE | PPC_OPCODE_ANY
215 | PPC_OPCODE_VLE | PPC_OPCODE_PMR);
69fe9ce5 216 /* Sticky bits. */
b9c361e0 217 ppc_cpu_t retain_flags = ppc_cpu & retain_mask;
69fe9ce5
AM
218 unsigned int i;
219
220 for (i = 0; i < sizeof (ppc_opts) / sizeof (ppc_opts[0]); i++)
221 if (strcmp (ppc_opts[i].opt, arg) == 0)
222 {
223 if (ppc_opts[i].sticky)
224 {
225 retain_flags |= ppc_opts[i].sticky;
b9c361e0 226 if ((ppc_cpu & ~retain_mask) != 0)
69fe9ce5
AM
227 break;
228 }
229 ppc_cpu = ppc_opts[i].cpu;
230 break;
231 }
232 if (i >= sizeof (ppc_opts) / sizeof (ppc_opts[0]))
233 return 0;
234
235 ppc_cpu |= retain_flags;
236 return ppc_cpu;
237}
238
239/* Determine which set of machines to disassemble for. */
418c1742 240
b240011a 241static void
fa452fa6 242powerpc_init_dialect (struct disassemble_info *info)
418c1742 243{
69fe9ce5
AM
244 ppc_cpu_t dialect = 0;
245 char *arg;
fa452fa6
PB
246 struct dis_private *priv = calloc (sizeof (*priv), 1);
247
248 if (priv == NULL)
b240011a 249 priv = &private;
418c1742 250
69fe9ce5
AM
251 arg = info->disassembler_options;
252 while (arg != NULL)
253 {
254 ppc_cpu_t new_cpu = 0;
255 char *end = strchr (arg, ',');
9b4e5766 256
69fe9ce5
AM
257 if (end != NULL)
258 *end = 0;
9b4e5766 259
69fe9ce5
AM
260 if ((new_cpu = ppc_parse_cpu (dialect, arg)) != 0)
261 dialect = new_cpu;
262 else if (strcmp (arg, "32") == 0)
7102e95e 263 dialect &= ~(ppc_cpu_t) PPC_OPCODE_64;
69fe9ce5 264 else if (strcmp (arg, "64") == 0)
bdc70b4a 265 dialect |= PPC_OPCODE_64;
69fe9ce5
AM
266 else
267 fprintf (stderr, _("warning: ignoring unknown -M%s option\n"), arg);
9622b051 268
69fe9ce5
AM
269 if (end != NULL)
270 *end++ = ',';
271 arg = end;
272 }
661bd698 273
7102e95e 274 if ((dialect & ~(ppc_cpu_t) PPC_OPCODE_64) == 0)
802a735e 275 {
70dc4e32
PB
276 if (info->mach == bfd_mach_ppc64)
277 dialect |= PPC_OPCODE_64;
278 else
7102e95e 279 dialect &= ~(ppc_cpu_t) PPC_OPCODE_64;
b9c361e0
JL
280 if (info->mach == bfd_mach_ppc_vle)
281 dialect |= PPC_OPCODE_PPC | PPC_OPCODE_VLE;
282 else
283 /* Choose a reasonable default. */
284 dialect |= (PPC_OPCODE_PPC | PPC_OPCODE_COMMON | PPC_OPCODE_601
285 | PPC_OPCODE_ALTIVEC);
802a735e
AM
286 }
287
fa452fa6
PB
288 info->private_data = priv;
289 POWERPC_DIALECT(info) = dialect;
b240011a
AM
290}
291
b9c361e0
JL
292#define PPC_OPCD_SEGS 64
293static unsigned short powerpc_opcd_indices[PPC_OPCD_SEGS+1];
294#define VLE_OPCD_SEGS 32
295static unsigned short vle_opcd_indices[VLE_OPCD_SEGS+1];
b240011a
AM
296
297/* Calculate opcode table indices to speed up disassembly,
298 and init dialect. */
299
300void
301disassemble_init_powerpc (struct disassemble_info *info)
302{
303 int i;
d6688282 304 unsigned short last;
fa452fa6 305
b240011a
AM
306 i = powerpc_num_opcodes;
307 while (--i >= 0)
308 {
309 unsigned op = PPC_OP (powerpc_opcodes[i].opcode);
b240011a 310
d6688282
AM
311 powerpc_opcd_indices[op] = i;
312 }
313
314 last = powerpc_num_opcodes;
b9c361e0 315 for (i = PPC_OPCD_SEGS; i > 0; --i)
d6688282
AM
316 {
317 if (powerpc_opcd_indices[i] == 0)
318 powerpc_opcd_indices[i] = last;
319 last = powerpc_opcd_indices[i];
b240011a
AM
320 }
321
b9c361e0
JL
322 i = vle_num_opcodes;
323 while (--i >= 0)
324 {
325 unsigned op = VLE_OP (vle_opcodes[i].opcode, vle_opcodes[i].mask);
326 unsigned seg = VLE_OP_TO_SEG (op);
327
328 vle_opcd_indices[seg] = i;
329 }
330
331 last = vle_num_opcodes;
332 for (i = VLE_OPCD_SEGS; i > 0; --i)
333 {
334 if (vle_opcd_indices[i] == 0)
335 vle_opcd_indices[i] = last;
336 last = vle_opcd_indices[i];
337 }
338
b240011a
AM
339 if (info->arch == bfd_arch_powerpc)
340 powerpc_init_dialect (info);
418c1742
MG
341}
342
343/* Print a big endian PowerPC instruction. */
252b5132
RH
344
345int
823bbe9d 346print_insn_big_powerpc (bfd_vma memaddr, struct disassemble_info *info)
252b5132 347{
b9c361e0 348 return print_insn_powerpc (memaddr, info, 1, get_powerpc_dialect (info));
252b5132
RH
349}
350
418c1742 351/* Print a little endian PowerPC instruction. */
252b5132
RH
352
353int
823bbe9d 354print_insn_little_powerpc (bfd_vma memaddr, struct disassemble_info *info)
252b5132 355{
b9c361e0 356 return print_insn_powerpc (memaddr, info, 0, get_powerpc_dialect (info));
252b5132
RH
357}
358
359/* Print a POWER (RS/6000) instruction. */
360
361int
823bbe9d 362print_insn_rs6000 (bfd_vma memaddr, struct disassemble_info *info)
252b5132
RH
363{
364 return print_insn_powerpc (memaddr, info, 1, PPC_OPCODE_POWER);
365}
366
ea192fa3
PB
367/* Extract the operand value from the PowerPC or POWER instruction. */
368
369static long
370operand_value_powerpc (const struct powerpc_operand *operand,
fa452fa6 371 unsigned long insn, ppc_cpu_t dialect)
ea192fa3
PB
372{
373 long value;
374 int invalid;
375 /* Extract the value from the instruction. */
376 if (operand->extract)
377 value = (*operand->extract) (insn, dialect, &invalid);
378 else
379 {
b9c361e0
JL
380 if (operand->shift >= 0)
381 value = (insn >> operand->shift) & operand->bitm;
382 else
383 value = (insn << -operand->shift) & operand->bitm;
ea192fa3
PB
384 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
385 {
386 /* BITM is always some number of zeros followed by some
b9c361e0 387 number of ones, followed by some number of zeros. */
ea192fa3
PB
388 unsigned long top = operand->bitm;
389 /* top & -top gives the rightmost 1 bit, so this
390 fills in any trailing zeros. */
391 top |= (top & -top) - 1;
392 top &= ~(top >> 1);
393 value = (value ^ top) - top;
394 }
395 }
396
397 return value;
398}
399
400/* Determine whether the optional operand(s) should be printed. */
401
402static int
403skip_optional_operands (const unsigned char *opindex,
fa452fa6 404 unsigned long insn, ppc_cpu_t dialect)
ea192fa3
PB
405{
406 const struct powerpc_operand *operand;
407
408 for (; *opindex != 0; opindex++)
409 {
410 operand = &powerpc_operands[*opindex];
411 if ((operand->flags & PPC_OPERAND_NEXT) != 0
412 || ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
413 && operand_value_powerpc (operand, insn, dialect) != 0))
414 return 0;
415 }
416
417 return 1;
418}
419
d6688282
AM
420/* Find a match for INSN in the opcode table, given machine DIALECT.
421 A DIALECT of -1 is special, matching all machine opcode variations. */
b9c361e0 422
d6688282
AM
423static const struct powerpc_opcode *
424lookup_powerpc (unsigned long insn, ppc_cpu_t dialect)
425{
426 const struct powerpc_opcode *opcode;
427 const struct powerpc_opcode *opcode_end;
428 unsigned long op;
429
430 /* Get the major opcode of the instruction. */
431 op = PPC_OP (insn);
432
433 /* Find the first match in the opcode table for this major opcode. */
434 opcode_end = powerpc_opcodes + powerpc_opcd_indices[op + 1];
435 for (opcode = powerpc_opcodes + powerpc_opcd_indices[op];
436 opcode < opcode_end;
437 ++opcode)
438 {
439 const unsigned char *opindex;
440 const struct powerpc_operand *operand;
441 int invalid;
442
443 if ((insn & opcode->mask) != opcode->opcode
444 || (dialect != (ppc_cpu_t) -1
445 && ((opcode->flags & dialect) == 0
446 || (opcode->deprecated & dialect) != 0)))
447 continue;
448
449 /* Check validity of operands. */
450 invalid = 0;
451 for (opindex = opcode->operands; *opindex != 0; opindex++)
452 {
453 operand = powerpc_operands + *opindex;
454 if (operand->extract)
455 (*operand->extract) (insn, dialect, &invalid);
456 }
457 if (invalid)
458 continue;
459
460 return opcode;
461 }
462
463 return NULL;
464}
465
b9c361e0
JL
466/* Find a match for INSN in the VLE opcode table. */
467
468static const struct powerpc_opcode *
469lookup_vle (unsigned long insn)
470{
471 const struct powerpc_opcode *opcode;
472 const struct powerpc_opcode *opcode_end;
473 unsigned op, seg;
474
475 op = PPC_OP (insn);
476 if (op >= 0x20 && op <= 0x37)
477 {
478 /* This insn has a 4-bit opcode. */
479 op &= 0x3c;
480 }
481 seg = VLE_OP_TO_SEG (op);
482
483 /* Find the first match in the opcode table for this major opcode. */
484 opcode_end = vle_opcodes + vle_opcd_indices[seg + 1];
485 for (opcode = vle_opcodes + vle_opcd_indices[seg];
486 opcode < opcode_end;
487 ++opcode)
488 {
489 unsigned long table_opcd = opcode->opcode;
490 unsigned long table_mask = opcode->mask;
491 bfd_boolean table_op_is_short = PPC_OP_SE_VLE(table_mask);
492 unsigned long insn2;
493 const unsigned char *opindex;
494 const struct powerpc_operand *operand;
495 int invalid;
496
497 insn2 = insn;
498 if (table_op_is_short)
499 insn2 >>= 16;
500 if ((insn2 & table_mask) != table_opcd)
501 continue;
502
503 /* Check validity of operands. */
504 invalid = 0;
505 for (opindex = opcode->operands; *opindex != 0; ++opindex)
506 {
507 operand = powerpc_operands + *opindex;
508 if (operand->extract)
509 (*operand->extract) (insn, (ppc_cpu_t)0, &invalid);
510 }
511 if (invalid)
512 continue;
513
514 return opcode;
515 }
516
517 return NULL;
518}
519
252b5132
RH
520/* Print a PowerPC or POWER instruction. */
521
522static int
823bbe9d
AM
523print_insn_powerpc (bfd_vma memaddr,
524 struct disassemble_info *info,
525 int bigendian,
fa452fa6 526 ppc_cpu_t dialect)
252b5132
RH
527{
528 bfd_byte buffer[4];
529 int status;
530 unsigned long insn;
531 const struct powerpc_opcode *opcode;
b9c361e0 532 bfd_boolean insn_is_short;
252b5132
RH
533
534 status = (*info->read_memory_func) (memaddr, buffer, 4, info);
535 if (status != 0)
536 {
b9c361e0
JL
537 /* The final instruction may be a 2-byte VLE insn. */
538 if ((dialect & PPC_OPCODE_VLE) != 0)
539 {
540 /* Clear buffer so unused bytes will not have garbage in them. */
541 buffer[0] = buffer[1] = buffer[2] = buffer[3] = 0;
542 status = (*info->read_memory_func) (memaddr, buffer, 2, info);
543 if (status != 0)
544 {
545 (*info->memory_error_func) (status, memaddr, info);
546 return -1;
547 }
548 }
549 else
550 {
551 (*info->memory_error_func) (status, memaddr, info);
552 return -1;
553 }
252b5132
RH
554 }
555
556 if (bigendian)
557 insn = bfd_getb32 (buffer);
558 else
559 insn = bfd_getl32 (buffer);
560
b9c361e0
JL
561 /* Get the major opcode of the insn. */
562 opcode = NULL;
563 insn_is_short = FALSE;
564 if ((dialect & PPC_OPCODE_VLE) != 0)
565 {
566 opcode = lookup_vle (insn);
567 if (opcode != NULL)
568 insn_is_short = PPC_OP_SE_VLE(opcode->mask);
569 }
570 if (opcode == NULL)
571 opcode = lookup_powerpc (insn, dialect);
d6688282
AM
572 if (opcode == NULL && (dialect & PPC_OPCODE_ANY) != 0)
573 opcode = lookup_powerpc (insn, (ppc_cpu_t) -1);
252b5132 574
d6688282 575 if (opcode != NULL)
252b5132 576 {
252b5132
RH
577 const unsigned char *opindex;
578 const struct powerpc_operand *operand;
252b5132
RH
579 int need_comma;
580 int need_paren;
ea192fa3 581 int skip_optional;
252b5132 582
252b5132 583 if (opcode->operands[0] != 0)
fdd12ef3
AM
584 (*info->fprintf_func) (info->stream, "%-7s ", opcode->name);
585 else
586 (*info->fprintf_func) (info->stream, "%s", opcode->name);
252b5132 587
b9c361e0
JL
588 if (insn_is_short)
589 /* The operands will be fetched out of the 16-bit instruction. */
590 insn >>= 16;
591
252b5132
RH
592 /* Now extract and print the operands. */
593 need_comma = 0;
594 need_paren = 0;
ea192fa3 595 skip_optional = -1;
252b5132
RH
596 for (opindex = opcode->operands; *opindex != 0; opindex++)
597 {
598 long value;
599
600 operand = powerpc_operands + *opindex;
601
602 /* Operands that are marked FAKE are simply ignored. We
603 already made sure that the extract function considered
604 the instruction to be valid. */
605 if ((operand->flags & PPC_OPERAND_FAKE) != 0)
606 continue;
607
ea192fa3
PB
608 /* If all of the optional operands have the value zero,
609 then don't print any of them. */
65b650b4
AM
610 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0)
611 {
612 if (skip_optional < 0)
613 skip_optional = skip_optional_operands (opindex, insn,
614 dialect);
615 if (skip_optional)
616 continue;
617 }
252b5132 618
ea192fa3
PB
619 value = operand_value_powerpc (operand, insn, dialect);
620
252b5132
RH
621 if (need_comma)
622 {
623 (*info->fprintf_func) (info->stream, ",");
624 need_comma = 0;
625 }
626
627 /* Print the operand as directed by the flags. */
fdd12ef3
AM
628 if ((operand->flags & PPC_OPERAND_GPR) != 0
629 || ((operand->flags & PPC_OPERAND_GPR_0) != 0 && value != 0))
252b5132
RH
630 (*info->fprintf_func) (info->stream, "r%ld", value);
631 else if ((operand->flags & PPC_OPERAND_FPR) != 0)
632 (*info->fprintf_func) (info->stream, "f%ld", value);
786e2c0f
C
633 else if ((operand->flags & PPC_OPERAND_VR) != 0)
634 (*info->fprintf_func) (info->stream, "v%ld", value);
9b4e5766
PB
635 else if ((operand->flags & PPC_OPERAND_VSR) != 0)
636 (*info->fprintf_func) (info->stream, "vs%ld", value);
252b5132
RH
637 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0)
638 (*info->print_address_func) (memaddr + value, info);
639 else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
640 (*info->print_address_func) ((bfd_vma) value & 0xffffffff, info);
081ba1b3
AM
641 else if ((operand->flags & PPC_OPERAND_FSL) != 0)
642 (*info->fprintf_func) (info->stream, "fsl%ld", value);
643 else if ((operand->flags & PPC_OPERAND_FCR) != 0)
644 (*info->fprintf_func) (info->stream, "fcr%ld", value);
645 else if ((operand->flags & PPC_OPERAND_UDI) != 0)
646 (*info->fprintf_func) (info->stream, "%ld", value);
b9c361e0
JL
647 else if ((operand->flags & PPC_OPERAND_CR_REG) != 0
648 && (((dialect & PPC_OPCODE_PPC) != 0)
649 || ((dialect & PPC_OPCODE_VLE) != 0)))
650 (*info->fprintf_func) (info->stream, "cr%ld", value);
651 else if (((operand->flags & PPC_OPERAND_CR_BIT) != 0)
652 && (((dialect & PPC_OPCODE_PPC) != 0)
653 || ((dialect & PPC_OPCODE_VLE) != 0)))
252b5132 654 {
b9c361e0
JL
655 static const char *cbnames[4] = { "lt", "gt", "eq", "so" };
656 int cr;
657 int cc;
658
659 cr = value >> 2;
660 if (cr != 0)
661 (*info->fprintf_func) (info->stream, "4*cr%d+", cr);
662 cc = value & 3;
663 (*info->fprintf_func) (info->stream, "%s", cbnames[cc]);
252b5132 664 }
70dc4e32 665 else
b9c361e0 666 (*info->fprintf_func) (info->stream, "%d", value);
252b5132
RH
667
668 if (need_paren)
669 {
670 (*info->fprintf_func) (info->stream, ")");
671 need_paren = 0;
672 }
673
674 if ((operand->flags & PPC_OPERAND_PARENS) == 0)
675 need_comma = 1;
676 else
677 {
678 (*info->fprintf_func) (info->stream, "(");
679 need_paren = 1;
680 }
681 }
682
b9c361e0
JL
683 /* We have found and printed an instruction.
684 If it was a short VLE instruction we have more to do. */
685 if (insn_is_short)
686 {
687 memaddr += 2;
688 return 2;
689 }
690 else
691 /* Otherwise, return. */
692 return 4;
252b5132
RH
693 }
694
695 /* We could not find a match. */
696 (*info->fprintf_func) (info->stream, ".long 0x%lx", insn);
697
698 return 4;
699}
07dd56a9
NC
700
701void
823bbe9d 702print_ppc_disassembler_options (FILE *stream)
07dd56a9 703{
69fe9ce5
AM
704 unsigned int i, col;
705
706 fprintf (stream, _("\n\
07dd56a9 707The following PPC specific disassembler options are supported for use with\n\
69fe9ce5
AM
708the -M switch:\n"));
709
710 for (col = 0, i = 0; i < sizeof (ppc_opts) / sizeof (ppc_opts[0]); i++)
711 {
712 col += fprintf (stream, " %s,", ppc_opts[i].opt);
713 if (col > 66)
714 {
715 fprintf (stream, "\n");
716 col = 0;
717 }
718 }
719 fprintf (stream, " 32, 64\n");
07dd56a9 720}
This page took 1.285679 seconds and 4 git commands to generate.