[ARC] Update disassembler opcode selection
[deliverable/binutils-gdb.git] / opcodes / arc-dis.c
CommitLineData
252b5132 1/* Instruction printing code for the ARC.
82704155 2 Copyright (C) 1994-2019 Free Software Foundation, Inc.
886a2506
NC
3
4 Contributed by Claudiu Zissulescu (claziss@synopsys.com)
252b5132 5
9b201bb5
NC
6 This file is part of libopcodes.
7
8 This library is free software; you can redistribute it and/or modify
0d2bcfaf 9 it under the terms of the GNU General Public License as published by
9b201bb5
NC
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
252b5132 12
9b201bb5
NC
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.
252b5132 17
0d2bcfaf
NC
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
47b0e7ad
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132 22
5eb3690e 23#include "sysdep.h"
886a2506
NC
24#include <stdio.h>
25#include <assert.h>
252b5132
RH
26#include "dis-asm.h"
27#include "opcode/arc.h"
37fd5ef3 28#include "elf/arc.h"
0d2bcfaf
NC
29#include "arc-dis.h"
30#include "arc-ext.h"
37fd5ef3
CZ
31#include "elf-bfd.h"
32#include "libiberty.h"
33#include "opintl.h"
252b5132 34
4eb6f892
AB
35/* Structure used to iterate over, and extract the values for, operands of
36 an opcode. */
37
38struct arc_operand_iterator
39{
bdfe53e3
AB
40 /* The complete instruction value to extract operands from. */
41 unsigned long long insn;
4eb6f892 42
bdfe53e3
AB
43 /* The LIMM if this is being tracked separately. This field is only
44 valid if we find the LIMM operand in the operand list. */
45 unsigned limm;
4eb6f892 46
bdfe53e3
AB
47 /* The opcode this iterator is operating on. */
48 const struct arc_opcode *opcode;
4eb6f892 49
bdfe53e3
AB
50 /* The index into the opcodes operand index list. */
51 const unsigned char *opidx;
4eb6f892 52};
252b5132 53
6ec7c1ae
CZ
54/* A private data used by ARC decoder. */
55struct arc_disassemble_info
56{
57 /* The current disassembled arc opcode. */
58 const struct arc_opcode *opcode;
59
60 /* Instruction length w/o limm field. */
61 unsigned insn_len;
62
63 /* TRUE if we have limm. */
64 bfd_boolean limm_p;
65
66 /* LIMM value, if exists. */
67 unsigned limm;
68
69 /* Condition code, if exists. */
70 unsigned condition_code;
71
72 /* Writeback mode. */
73 unsigned writeback_mode;
74
75 /* Number of operands. */
76 unsigned operands_count;
77
78 struct arc_insn_operand operands[MAX_INSN_ARGS];
79};
80
886a2506 81/* Globals variables. */
82b829a7 82
886a2506 83static const char * const regnames[64] =
47b0e7ad 84{
886a2506
NC
85 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
86 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
87 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
88 "r24", "r25", "gp", "fp", "sp", "ilink", "r30", "blink",
89
90 "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
91 "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
92 "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55",
93 "r56", "r57", "ACCL", "ACCH", "lp_count", "rezerved", "LIMM", "pcl"
94};
95
db18dbab
GM
96static const char * const addrtypenames[ARC_NUM_ADDRTYPES] =
97{
98 "bd", "jid", "lbd", "mbd", "sd", "sm", "xa", "xd",
99 "cd", "cbd", "cjid", "clbd", "cm", "csd", "cxa", "cxd"
100};
101
102static int addrtypenames_max = ARC_NUM_ADDRTYPES - 1;
103
104static const char * const addrtypeunknown = "unknown";
105
37fd5ef3
CZ
106/* This structure keeps track which instruction class(es)
107 should be ignored durring disassembling. */
108
109typedef struct skipclass
110{
111 insn_class_t insn_class;
112 insn_subclass_t subclass;
113 struct skipclass *nxt;
114} skipclass_t, *linkclass;
115
116/* Intial classes of instructions to be consider first when
117 disassembling. */
118static linkclass decodelist = NULL;
119
10045478
AK
120/* ISA mask value enforced via disassembler info options. ARC_OPCODE_NONE
121 value means that no CPU is enforced. */
122
123static unsigned enforced_isa_mask = ARC_OPCODE_NONE;
124
fdddd290 125/* True if we want to print using only hex numbers. */
126static bfd_boolean print_hex = FALSE;
127
886a2506
NC
128/* Macros section. */
129
130#ifdef DEBUG
131# define pr_debug(fmt, args...) fprintf (stderr, fmt, ##args)
132#else
133# define pr_debug(fmt, args...)
134#endif
135
136#define ARRANGE_ENDIAN(info, buf) \
137 (info->endian == BFD_ENDIAN_LITTLE ? bfd_getm32 (bfd_getl32 (buf)) \
138 : bfd_getb32 (buf))
139
140#define BITS(word,s,e) (((word) << (sizeof (word) * 8 - 1 - e)) >> \
141 (s + (sizeof (word) * 8 - 1 - e)))
bdfe53e3 142#define OPCODE_32BIT_INSN(word) (BITS ((word), 27, 31))
252b5132 143
886a2506 144/* Functions implementation. */
252b5132 145
6ec7c1ae
CZ
146/* Initialize private data. */
147static bfd_boolean
148init_arc_disasm_info (struct disassemble_info *info)
149{
150 struct arc_disassemble_info *arc_infop
151 = calloc (sizeof (*arc_infop), 1);
152
153 if (arc_infop == NULL)
154 return FALSE;
155
156 info->private_data = arc_infop;
157 return TRUE;
158}
159
37fd5ef3
CZ
160/* Add a new element to the decode list. */
161
162static void
163add_to_decodelist (insn_class_t insn_class,
164 insn_subclass_t subclass)
165{
166 linkclass t = (linkclass) xmalloc (sizeof (skipclass_t));
167
168 t->insn_class = insn_class;
169 t->subclass = subclass;
170 t->nxt = decodelist;
171 decodelist = t;
172}
173
174/* Return TRUE if we need to skip the opcode from being
175 disassembled. */
176
177static bfd_boolean
ee881e5d 178skip_this_opcode (const struct arc_opcode *opcode)
37fd5ef3
CZ
179{
180 linkclass t = decodelist;
37fd5ef3
CZ
181
182 /* Check opcode for major 0x06, return if it is not in. */
bdfe53e3 183 if (arc_opcode_len (opcode) == 4
0f3f7167
CZ
184 && (OPCODE_32BIT_INSN (opcode->opcode) != 0x06
185 /* Can be an APEX extensions. */
186 && OPCODE_32BIT_INSN (opcode->opcode) != 0x07))
37fd5ef3
CZ
187 return FALSE;
188
ee881e5d
CZ
189 /* or not a known truble class. */
190 switch (opcode->insn_class)
191 {
192 case FLOAT:
193 case DSP:
3334eba7 194 case ARITH:
0f3f7167 195 case MPY:
ee881e5d
CZ
196 break;
197 default:
198 return FALSE;
199 }
200
201 while (t != NULL)
37fd5ef3
CZ
202 {
203 if ((t->insn_class == opcode->insn_class)
204 && (t->subclass == opcode->subclass))
ee881e5d 205 return FALSE;
37fd5ef3
CZ
206 t = t->nxt;
207 }
208
ee881e5d 209 return TRUE;
37fd5ef3
CZ
210}
211
886a2506
NC
212static bfd_vma
213bfd_getm32 (unsigned int data)
0d2bcfaf 214{
886a2506 215 bfd_vma value = 0;
0d2bcfaf 216
886a2506
NC
217 value = ((data & 0xff00) | (data & 0xff)) << 16;
218 value |= ((data & 0xff0000) | (data & 0xff000000)) >> 16;
219 return value;
0d2bcfaf
NC
220}
221
37fd5ef3 222static bfd_boolean
886a2506
NC
223special_flag_p (const char *opname,
224 const char *flgname)
0d2bcfaf 225{
886a2506 226 const struct arc_flag_special *flg_spec;
886a2506 227 unsigned i, j, flgidx;
0d2bcfaf 228
886a2506 229 for (i = 0; i < arc_num_flag_special; i++)
252b5132 230 {
886a2506 231 flg_spec = &arc_flag_special_cases[i];
279a96ca 232
24b368f8 233 if (strcmp (opname, flg_spec->name))
886a2506 234 continue;
279a96ca 235
886a2506
NC
236 /* Found potential special case instruction. */
237 for (j=0;; ++j)
0d2bcfaf 238 {
886a2506
NC
239 flgidx = flg_spec->flags[j];
240 if (flgidx == 0)
241 break; /* End of the array. */
0d2bcfaf 242
886a2506 243 if (strcmp (flgname, arc_flag_operands[flgidx].name) == 0)
37fd5ef3 244 return TRUE;
252b5132 245 }
0d2bcfaf 246 }
37fd5ef3 247 return FALSE;
0d2bcfaf 248}
252b5132 249
4eb6f892
AB
250/* Find opcode from ARC_TABLE given the instruction described by INSN and
251 INSNLEN. The ISA_MASK restricts the possible matches in ARC_TABLE. */
252
b99747ae 253static const struct arc_opcode *
37fd5ef3
CZ
254find_format_from_table (struct disassemble_info *info,
255 const struct arc_opcode *arc_table,
bdfe53e3 256 unsigned long long insn,
37fd5ef3
CZ
257 unsigned int insn_len,
258 unsigned isa_mask,
259 bfd_boolean *has_limm,
260 bfd_boolean overlaps)
b99747ae
CZ
261{
262 unsigned int i = 0;
263 const struct arc_opcode *opcode = NULL;
ee881e5d 264 const struct arc_opcode *t_op = NULL;
b99747ae
CZ
265 const unsigned char *opidx;
266 const unsigned char *flgidx;
ee881e5d 267 bfd_boolean warn_p = FALSE;
b99747ae 268
37fd5ef3
CZ
269 do
270 {
271 bfd_boolean invalid = FALSE;
b99747ae 272
37fd5ef3 273 opcode = &arc_table[i++];
b99747ae 274
bdfe53e3 275 if (!(opcode->cpu & isa_mask))
37fd5ef3 276 continue;
b99747ae 277
bdfe53e3 278 if (arc_opcode_len (opcode) != (int) insn_len)
37fd5ef3 279 continue;
b99747ae 280
bdfe53e3 281 if ((insn & opcode->mask) != opcode->opcode)
37fd5ef3 282 continue;
b99747ae 283
37fd5ef3 284 *has_limm = FALSE;
4eb6f892 285
37fd5ef3
CZ
286 /* Possible candidate, check the operands. */
287 for (opidx = opcode->operands; *opidx; opidx++)
288 {
e5b06ef0 289 int value, limmind;
37fd5ef3 290 const struct arc_operand *operand = &arc_operands[*opidx];
b99747ae 291
37fd5ef3
CZ
292 if (operand->flags & ARC_OPERAND_FAKE)
293 continue;
b99747ae 294
37fd5ef3 295 if (operand->extract)
bdfe53e3 296 value = (*operand->extract) (insn, &invalid);
37fd5ef3 297 else
bdfe53e3 298 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
37fd5ef3
CZ
299
300 /* Check for LIMM indicator. If it is there, then make sure
301 we pick the right format. */
e5b06ef0 302 limmind = (isa_mask & ARC_OPCODE_ARCV2) ? 0x1E : 0x3E;
37fd5ef3
CZ
303 if (operand->flags & ARC_OPERAND_IR
304 && !(operand->flags & ARC_OPERAND_LIMM))
305 {
306 if ((value == 0x3E && insn_len == 4)
e5b06ef0 307 || (value == limmind && insn_len == 2))
37fd5ef3
CZ
308 {
309 invalid = TRUE;
310 break;
311 }
312 }
313
314 if (operand->flags & ARC_OPERAND_LIMM
315 && !(operand->flags & ARC_OPERAND_DUPLICATE))
316 *has_limm = TRUE;
317 }
318
319 /* Check the flags. */
320 for (flgidx = opcode->flags; *flgidx; flgidx++)
321 {
322 /* Get a valid flag class. */
323 const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx];
324 const unsigned *flgopridx;
325 int foundA = 0, foundB = 0;
326 unsigned int value;
327
328 /* Check first the extensions. */
329 if (cl_flags->flag_class & F_CLASS_EXTEND)
330 {
bdfe53e3 331 value = (insn & 0x1F);
37fd5ef3
CZ
332 if (arcExtMap_condCodeName (value))
333 continue;
334 }
335
6ec7c1ae
CZ
336 /* Check for the implicit flags. */
337 if (cl_flags->flag_class & F_CLASS_IMPLICIT)
338 continue;
339
37fd5ef3
CZ
340 for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx)
341 {
342 const struct arc_flag_operand *flg_operand =
343 &arc_flag_operands[*flgopridx];
344
bdfe53e3 345 value = (insn >> flg_operand->shift)
37fd5ef3
CZ
346 & ((1 << flg_operand->bits) - 1);
347 if (value == flg_operand->code)
348 foundA = 1;
349 if (value)
350 foundB = 1;
351 }
352
353 if (!foundA && foundB)
354 {
355 invalid = TRUE;
356 break;
357 }
358 }
359
360 if (invalid)
361 continue;
362
363 if (insn_len == 4
ee881e5d
CZ
364 && overlaps)
365 {
366 warn_p = TRUE;
367 t_op = opcode;
368 if (skip_this_opcode (opcode))
369 continue;
370 }
37fd5ef3
CZ
371
372 /* The instruction is valid. */
373 return opcode;
374 }
375 while (opcode->mask);
b99747ae 376
ee881e5d
CZ
377 if (warn_p)
378 {
379 info->fprintf_func (info->stream,
380 _("\nWarning: disassembly may be wrong due to "
381 "guessed opcode class choice.\n"
382 "Use -M<class[,class]> to select the correct "
383 "opcode class(es).\n\t\t\t\t"));
384 return t_op;
385 }
386
b99747ae
CZ
387 return NULL;
388}
389
4eb6f892
AB
390/* Find opcode for INSN, trying various different sources. The instruction
391 length in INSN_LEN will be updated if the instruction requires a LIMM
bdfe53e3 392 extension.
4eb6f892
AB
393
394 A pointer to the opcode is placed into OPCODE_RESULT, and ITER is
bdfe53e3
AB
395 initialised, ready to iterate over the operands of the found opcode. If
396 the found opcode requires a LIMM then the LIMM value will be loaded into a
397 field of ITER.
4eb6f892
AB
398
399 This function returns TRUE in almost all cases, FALSE is reserved to
bdfe53e3
AB
400 indicate an error (failing to find an opcode is not an error) a returned
401 result of FALSE would indicate that the disassembler can't continue.
4eb6f892 402
bdfe53e3
AB
403 If no matching opcode is found then the returned result will be TRUE, the
404 value placed into OPCODE_RESULT will be NULL, ITER will be undefined, and
405 INSN_LEN will be unchanged.
4eb6f892 406
bdfe53e3
AB
407 If a matching opcode is found, then the returned result will be TRUE, the
408 opcode pointer is placed into OPCODE_RESULT, INSN_LEN will be increased by
409 4 if the instruction requires a LIMM, and the LIMM value will have been
410 loaded into a field of ITER. Finally, ITER will have been initialised so
411 that calls to OPERAND_ITERATOR_NEXT will iterate over the opcode's
412 operands. */
4eb6f892
AB
413
414static bfd_boolean
37fd5ef3 415find_format (bfd_vma memaddr,
bdfe53e3 416 unsigned long long insn,
37fd5ef3
CZ
417 unsigned int * insn_len,
418 unsigned isa_mask,
419 struct disassemble_info * info,
420 const struct arc_opcode ** opcode_result,
421 struct arc_operand_iterator * iter)
4eb6f892 422{
37fd5ef3 423 const struct arc_opcode *opcode = NULL;
4eb6f892 424 bfd_boolean needs_limm;
f807f43d 425 const extInstruction_t *einsn, *i;
bdfe53e3 426 unsigned limm = 0;
6ec7c1ae 427 struct arc_disassemble_info *arc_infop = info->private_data;
4eb6f892 428
37fd5ef3 429 /* First, try the extension instructions. */
bdfe53e3 430 if (*insn_len == 4)
4eb6f892 431 {
bdfe53e3
AB
432 einsn = arcExtMap_insn (OPCODE_32BIT_INSN (insn), insn);
433 for (i = einsn; (i != NULL) && (opcode == NULL); i = i->next)
4eb6f892 434 {
bdfe53e3
AB
435 const char *errmsg = NULL;
436
437 opcode = arcExtMap_genOpcode (i, isa_mask, &errmsg);
438 if (opcode == NULL)
439 {
440 (*info->fprintf_func) (info->stream, "\
37fd5ef3 441An error occured while generating the extension instruction operations");
bdfe53e3
AB
442 *opcode_result = NULL;
443 return FALSE;
444 }
37fd5ef3 445
bdfe53e3
AB
446 opcode = find_format_from_table (info, opcode, insn, *insn_len,
447 isa_mask, &needs_limm, FALSE);
448 }
4eb6f892
AB
449 }
450
37fd5ef3
CZ
451 /* Then, try finding the first match in the opcode table. */
452 if (opcode == NULL)
453 opcode = find_format_from_table (info, arc_opcodes, insn, *insn_len,
454 isa_mask, &needs_limm, TRUE);
455
4eb6f892
AB
456 if (needs_limm && opcode != NULL)
457 {
458 bfd_byte buffer[4];
459 int status;
460
461 status = (*info->read_memory_func) (memaddr + *insn_len, buffer,
462 4, info);
463 if (status != 0)
464 {
465 opcode = NULL;
466 }
467 else
468 {
bdfe53e3 469 limm = ARRANGE_ENDIAN (info, buffer);
4eb6f892
AB
470 *insn_len += 4;
471 }
472 }
473
bdfe53e3 474 if (opcode != NULL)
4eb6f892 475 {
4eb6f892 476 iter->insn = insn;
bdfe53e3
AB
477 iter->limm = limm;
478 iter->opcode = opcode;
479 iter->opidx = opcode->operands;
4eb6f892
AB
480 }
481
482 *opcode_result = opcode;
6ec7c1ae
CZ
483
484 /* Update private data. */
485 arc_infop->opcode = opcode;
486 arc_infop->limm = (needs_limm) ? limm : 0;
487 arc_infop->limm_p = needs_limm;
488
4eb6f892
AB
489 return TRUE;
490}
491
f36e33da
CZ
492static void
493print_flags (const struct arc_opcode *opcode,
bdfe53e3 494 unsigned long long *insn,
f36e33da
CZ
495 struct disassemble_info *info)
496{
497 const unsigned char *flgidx;
498 unsigned int value;
6ec7c1ae 499 struct arc_disassemble_info *arc_infop = info->private_data;
f36e33da
CZ
500
501 /* Now extract and print the flags. */
502 for (flgidx = opcode->flags; *flgidx; flgidx++)
503 {
504 /* Get a valid flag class. */
505 const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx];
506 const unsigned *flgopridx;
507
508 /* Check first the extensions. */
c810e0b8 509 if (cl_flags->flag_class & F_CLASS_EXTEND)
f36e33da
CZ
510 {
511 const char *name;
512 value = (insn[0] & 0x1F);
513
514 name = arcExtMap_condCodeName (value);
515 if (name)
516 {
517 (*info->fprintf_func) (info->stream, ".%s", name);
518 continue;
519 }
520 }
521
522 for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx)
523 {
524 const struct arc_flag_operand *flg_operand =
525 &arc_flag_operands[*flgopridx];
526
6ec7c1ae
CZ
527 /* Implicit flags are only used for the insn decoder. */
528 if (cl_flags->flag_class & F_CLASS_IMPLICIT)
529 {
530 if (cl_flags->flag_class & F_CLASS_COND)
531 arc_infop->condition_code = flg_operand->code;
532 else if (cl_flags->flag_class & F_CLASS_WB)
533 arc_infop->writeback_mode = flg_operand->code;
534 else if (cl_flags->flag_class & F_CLASS_ZZ)
535 info->data_size = flg_operand->code;
536 continue;
537 }
538
f36e33da
CZ
539 if (!flg_operand->favail)
540 continue;
541
542 value = (insn[0] >> flg_operand->shift)
543 & ((1 << flg_operand->bits) - 1);
544 if (value == flg_operand->code)
545 {
546 /* FIXME!: print correctly nt/t flag. */
547 if (!special_flag_p (opcode->name, flg_operand->name))
548 (*info->fprintf_func) (info->stream, ".");
549 else if (info->insn_type == dis_dref)
550 {
551 switch (flg_operand->name[0])
552 {
553 case 'b':
554 info->data_size = 1;
555 break;
556 case 'h':
557 case 'w':
558 info->data_size = 2;
559 break;
560 default:
561 info->data_size = 4;
562 break;
563 }
564 }
d9eca1df
CZ
565 if (flg_operand->name[0] == 'd'
566 && flg_operand->name[1] == 0)
567 info->branch_delay_insns = 1;
568
569 /* Check if it is a conditional flag. */
570 if (cl_flags->flag_class & F_CLASS_COND)
571 {
572 if (info->insn_type == dis_jsr)
573 info->insn_type = dis_condjsr;
574 else if (info->insn_type == dis_branch)
575 info->insn_type = dis_condbranch;
6ec7c1ae 576 arc_infop->condition_code = flg_operand->code;
d9eca1df
CZ
577 }
578
6ec7c1ae
CZ
579 /* Check for the write back modes. */
580 if (cl_flags->flag_class & F_CLASS_WB)
581 arc_infop->writeback_mode = flg_operand->code;
582
f36e33da
CZ
583 (*info->fprintf_func) (info->stream, "%s", flg_operand->name);
584 }
f36e33da
CZ
585 }
586 }
587}
588
589static const char *
590get_auxreg (const struct arc_opcode *opcode,
591 int value,
592 unsigned isa_mask)
593{
594 const char *name;
595 unsigned int i;
596 const struct arc_aux_reg *auxr = &arc_aux_regs[0];
597
c810e0b8 598 if (opcode->insn_class != AUXREG)
f36e33da
CZ
599 return NULL;
600
601 name = arcExtMap_auxRegName (value);
602 if (name)
603 return name;
604
605 for (i = 0; i < arc_num_aux_regs; i++, auxr++)
606 {
607 if (!(auxr->cpu & isa_mask))
608 continue;
609
610 if (auxr->subclass != NONE)
611 return NULL;
612
613 if (auxr->address == value)
614 return auxr->name;
615 }
616 return NULL;
617}
cb040366 618
db18dbab
GM
619/* Convert a value representing an address type to a string used to refer to
620 the address type in assembly code. */
621
622static const char *
623get_addrtype (int value)
624{
625 if (value < 0 || value > addrtypenames_max)
626 return addrtypeunknown;
627
628 return addrtypenames[value];
629}
630
cb040366
AB
631/* Calculate the instruction length for an instruction starting with MSB
632 and LSB, the most and least significant byte. The ISA_MASK is used to
633 filter the instructions considered to only those that are part of the
634 current architecture.
635
636 The instruction lengths are calculated from the ARC_OPCODE table, and
637 cached for later use. */
638
639static unsigned int
4eb6f892 640arc_insn_length (bfd_byte msb, bfd_byte lsb, struct disassemble_info *info)
cb040366
AB
641{
642 bfd_byte major_opcode = msb >> 3;
643
644 switch (info->mach)
645 {
bdd582db
GM
646 case bfd_mach_arc_arc700:
647 /* The nps400 extension set requires this special casing of the
648 instruction length calculation. Right now this is not causing any
649 problems as none of the known extensions overlap in opcode space,
650 but, if they ever do then we might need to start carrying
651 information around in the elf about which extensions are in use. */
4eb6f892
AB
652 if (major_opcode == 0xb)
653 {
654 bfd_byte minor_opcode = lsb & 0x1f;
655
bdfe53e3
AB
656 if (minor_opcode < 4)
657 return 6;
658 else if (minor_opcode == 0x10 || minor_opcode == 0x11)
659 return 8;
4eb6f892 660 }
5a736821
GM
661 if (major_opcode == 0xa)
662 {
663 return 8;
664 }
1a0670f3 665 /* Fall through. */
cb040366
AB
666 case bfd_mach_arc_arc600:
667 return (major_opcode > 0xb) ? 2 : 4;
668 break;
669
670 case bfd_mach_arc_arcv2:
671 return (major_opcode > 0x7) ? 2 : 4;
672 break;
673
674 default:
675 abort ();
676 }
677}
678
4eb6f892
AB
679/* Extract and return the value of OPERAND from the instruction whose value
680 is held in the array INSN. */
681
682static int
bdfe53e3
AB
683extract_operand_value (const struct arc_operand *operand,
684 unsigned long long insn,
685 unsigned limm)
4eb6f892
AB
686{
687 int value;
688
689 /* Read the limm operand, if required. */
690 if (operand->flags & ARC_OPERAND_LIMM)
691 /* The second part of the instruction value will have been loaded as
692 part of the find_format call made earlier. */
bdfe53e3 693 value = limm;
4eb6f892
AB
694 else
695 {
696 if (operand->extract)
bdfe53e3 697 value = (*operand->extract) (insn, (int *) NULL);
4eb6f892
AB
698 else
699 {
700 if (operand->flags & ARC_OPERAND_ALIGNED32)
701 {
bdfe53e3 702 value = (insn >> operand->shift)
4eb6f892
AB
703 & ((1 << (operand->bits - 2)) - 1);
704 value = value << 2;
705 }
706 else
707 {
bdfe53e3 708 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
4eb6f892
AB
709 }
710 if (operand->flags & ARC_OPERAND_SIGNED)
711 {
712 int signbit = 1 << (operand->bits - 1);
713 value = (value ^ signbit) - signbit;
714 }
715 }
716 }
717
718 return value;
719}
720
721/* Find the next operand, and the operands value from ITER. Return TRUE if
722 there is another operand, otherwise return FALSE. If there is an
723 operand returned then the operand is placed into OPERAND, and the value
724 into VALUE. If there is no operand returned then OPERAND and VALUE are
725 unchanged. */
726
727static bfd_boolean
728operand_iterator_next (struct arc_operand_iterator *iter,
729 const struct arc_operand **operand,
730 int *value)
731{
bdfe53e3 732 if (*iter->opidx == 0)
4eb6f892 733 {
bdfe53e3
AB
734 *operand = NULL;
735 return FALSE;
4eb6f892 736 }
4eb6f892 737
bdfe53e3
AB
738 *operand = &arc_operands[*iter->opidx];
739 *value = extract_operand_value (*operand, iter->insn, iter->limm);
740 iter->opidx++;
4eb6f892 741
4eb6f892
AB
742 return TRUE;
743}
744
37fd5ef3
CZ
745/* Helper for parsing the options. */
746
747static void
f995bbe8 748parse_option (const char *option)
37fd5ef3 749{
e1e94c49 750 if (disassembler_options_cmp (option, "dsp") == 0)
37fd5ef3
CZ
751 add_to_decodelist (DSP, NONE);
752
e1e94c49 753 else if (disassembler_options_cmp (option, "spfp") == 0)
37fd5ef3
CZ
754 add_to_decodelist (FLOAT, SPX);
755
e1e94c49 756 else if (disassembler_options_cmp (option, "dpfp") == 0)
37fd5ef3
CZ
757 add_to_decodelist (FLOAT, DPX);
758
e1e94c49 759 else if (disassembler_options_cmp (option, "quarkse_em") == 0)
ee881e5d
CZ
760 {
761 add_to_decodelist (FLOAT, DPX);
762 add_to_decodelist (FLOAT, SPX);
53a346d8
CZ
763 add_to_decodelist (FLOAT, QUARKSE1);
764 add_to_decodelist (FLOAT, QUARKSE2);
ee881e5d 765 }
37fd5ef3 766
e1e94c49 767 else if (disassembler_options_cmp (option, "fpuda") == 0)
37fd5ef3
CZ
768 add_to_decodelist (FLOAT, DPA);
769
0f3f7167
CZ
770 else if (disassembler_options_cmp (option, "nps400") == 0)
771 {
772 add_to_decodelist (ACL, NPS400);
773 add_to_decodelist (ARITH, NPS400);
774 add_to_decodelist (BITOP, NPS400);
775 add_to_decodelist (BMU, NPS400);
776 add_to_decodelist (CONTROL, NPS400);
777 add_to_decodelist (DMA, NPS400);
778 add_to_decodelist (DPI, NPS400);
779 add_to_decodelist (MEMORY, NPS400);
780 add_to_decodelist (MISC, NPS400);
781 add_to_decodelist (NET, NPS400);
782 add_to_decodelist (PMU, NPS400);
783 add_to_decodelist (PROTOCOL_DECODE, NPS400);
784 add_to_decodelist (ULTRAIP, NPS400);
785 }
786
e1e94c49 787 else if (disassembler_options_cmp (option, "fpus") == 0)
37fd5ef3
CZ
788 {
789 add_to_decodelist (FLOAT, SP);
790 add_to_decodelist (FLOAT, CVT);
791 }
792
e1e94c49 793 else if (disassembler_options_cmp (option, "fpud") == 0)
37fd5ef3
CZ
794 {
795 add_to_decodelist (FLOAT, DP);
796 add_to_decodelist (FLOAT, CVT);
797 }
fdddd290 798 else if (CONST_STRNEQ (option, "hex"))
799 print_hex = TRUE;
37fd5ef3 800 else
a6743a54
AM
801 /* xgettext:c-format */
802 opcodes_error_handler (_("unrecognised disassembler option: %s"), option);
37fd5ef3
CZ
803}
804
10045478
AK
805#define ARC_CPU_TYPE_A6xx(NAME,EXTRA) \
806 { #NAME, ARC_OPCODE_ARC600, "ARC600" }
807#define ARC_CPU_TYPE_A7xx(NAME,EXTRA) \
808 { #NAME, ARC_OPCODE_ARC700, "ARC700" }
809#define ARC_CPU_TYPE_AV2EM(NAME,EXTRA) \
810 { #NAME, ARC_OPCODE_ARCv2EM, "ARC EM" }
811#define ARC_CPU_TYPE_AV2HS(NAME,EXTRA) \
812 { #NAME, ARC_OPCODE_ARCv2HS, "ARC HS" }
813#define ARC_CPU_TYPE_NONE \
814 { 0, 0, 0 }
815
816/* A table of CPU names and opcode sets. */
817static const struct cpu_type
818{
819 const char *name;
820 unsigned flags;
821 const char *isa;
822}
823 cpu_types[] =
824{
825 #include "elf/arc-cpu.def"
826};
827
828/* Helper for parsing the CPU options. Accept any of the ARC architectures
829 values. OPTION should be a value passed to cpu=. */
830
831static unsigned
832parse_cpu_option (const char *option)
833{
834 int i;
835
836 for (i = 0; cpu_types[i].name; ++i)
837 {
e1e94c49 838 if (!disassembler_options_cmp (cpu_types[i].name, option))
10045478
AK
839 {
840 return cpu_types[i].flags;
841 }
842 }
843
a6743a54
AM
844 /* xgettext:c-format */
845 opcodes_error_handler (_("unrecognised disassembler CPU option: %s"), option);
10045478
AK
846 return ARC_OPCODE_NONE;
847}
848
37fd5ef3
CZ
849/* Go over the options list and parse it. */
850
851static void
f995bbe8 852parse_disassembler_options (const char *options)
37fd5ef3 853{
2e74f9dd
AK
854 const char *option;
855
37fd5ef3
CZ
856 if (options == NULL)
857 return;
858
10045478
AK
859 /* Disassembler might be reused for difference CPU's, and cpu option set for
860 the first one shouldn't be applied to second (which might not have
861 explicit cpu in its options. Therefore it is required to reset enforced
862 CPU when new options are being parsed. */
863 enforced_isa_mask = ARC_OPCODE_NONE;
864
2e74f9dd 865 FOR_EACH_DISASSEMBLER_OPTION (option, options)
37fd5ef3 866 {
10045478
AK
867 /* A CPU option? Cannot use STRING_COMMA_LEN because strncmp is also a
868 preprocessor macro. */
2e74f9dd 869 if (strncmp (option, "cpu=", 4) == 0)
10045478 870 /* Strip leading `cpu=`. */
2e74f9dd 871 enforced_isa_mask = parse_cpu_option (option + 4);
10045478 872 else
2e74f9dd 873 parse_option (option);
37fd5ef3
CZ
874 }
875}
876
bdfe53e3
AB
877/* Return the instruction type for an instruction described by OPCODE. */
878
879static enum dis_insn_type
880arc_opcode_to_insn_type (const struct arc_opcode *opcode)
881{
882 enum dis_insn_type insn_type;
883
884 switch (opcode->insn_class)
885 {
886 case BRANCH:
6ec7c1ae
CZ
887 case BBIT0:
888 case BBIT1:
889 case BI:
890 case BIH:
891 case BRCC:
892 case EI:
893 case JLI:
bdfe53e3 894 case JUMP:
6ec7c1ae 895 case LOOP:
bdfe53e3
AB
896 if (!strncmp (opcode->name, "bl", 2)
897 || !strncmp (opcode->name, "jl", 2))
898 {
899 if (opcode->subclass == COND)
900 insn_type = dis_condjsr;
901 else
902 insn_type = dis_jsr;
903 }
904 else
905 {
906 if (opcode->subclass == COND)
907 insn_type = dis_condbranch;
908 else
909 insn_type = dis_branch;
910 }
911 break;
abe7c33b
CZ
912 case LOAD:
913 case STORE:
bdfe53e3 914 case MEMORY:
6ec7c1ae
CZ
915 case ENTER:
916 case PUSH:
917 case POP:
abe7c33b 918 insn_type = dis_dref;
bdfe53e3 919 break;
6ec7c1ae
CZ
920 case LEAVE:
921 insn_type = dis_branch;
922 break;
bdfe53e3
AB
923 default:
924 insn_type = dis_nonbranch;
925 break;
926 }
927
928 return insn_type;
929}
930
886a2506 931/* Disassemble ARC instructions. */
0d2bcfaf 932
886a2506
NC
933static int
934print_insn_arc (bfd_vma memaddr,
935 struct disassemble_info *info)
0d2bcfaf 936{
bdfe53e3
AB
937 bfd_byte buffer[8];
938 unsigned int highbyte, lowbyte;
886a2506 939 int status;
4eb6f892 940 unsigned int insn_len;
bdfe53e3 941 unsigned long long insn = 0;
10045478 942 unsigned isa_mask = ARC_OPCODE_NONE;
886a2506 943 const struct arc_opcode *opcode;
886a2506
NC
944 bfd_boolean need_comma;
945 bfd_boolean open_braket;
24b368f8 946 int size;
4eb6f892 947 const struct arc_operand *operand;
50d2740d 948 int value, vpcl;
4eb6f892 949 struct arc_operand_iterator iter;
6ec7c1ae 950 struct arc_disassemble_info *arc_infop;
50d2740d 951 bfd_boolean rpcl = FALSE, rset = FALSE;
37fd5ef3
CZ
952
953 if (info->disassembler_options)
954 {
955 parse_disassembler_options (info->disassembler_options);
956
957 /* Avoid repeated parsing of the options. */
958 info->disassembler_options = NULL;
959 }
0d2bcfaf 960
6ec7c1ae
CZ
961 if (info->private_data == NULL && !init_arc_disasm_info (info))
962 return -1;
963
4eb6f892 964 memset (&iter, 0, sizeof (iter));
90f61cce
GM
965 highbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 1 : 0);
966 lowbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 0 : 1);
0d2bcfaf 967
10045478
AK
968 /* Figure out CPU type, unless it was enforced via disassembler options. */
969 if (enforced_isa_mask == ARC_OPCODE_NONE)
886a2506 970 {
10045478 971 Elf_Internal_Ehdr *header = NULL;
0d2bcfaf 972
10045478
AK
973 if (info->section && info->section->owner)
974 header = elf_elfheader (info->section->owner);
0d2bcfaf 975
10045478 976 switch (info->mach)
37fd5ef3 977 {
10045478
AK
978 case bfd_mach_arc_arc700:
979 isa_mask = ARC_OPCODE_ARC700;
980 break;
981
982 case bfd_mach_arc_arc600:
983 isa_mask = ARC_OPCODE_ARC600;
984 break;
985
986 case bfd_mach_arc_arcv2:
987 default:
988 isa_mask = ARC_OPCODE_ARCv2EM;
989 /* TODO: Perhaps remove definition of header since it is only used at
990 this location. */
991 if (header != NULL
992 && (header->e_flags & EF_ARC_MACH_MSK) == EF_ARC_CPU_ARCV2HS)
993 isa_mask = ARC_OPCODE_ARCv2HS;
994 break;
37fd5ef3 995 }
10045478
AK
996 }
997 else
998 isa_mask = enforced_isa_mask;
999
1000 if (isa_mask == ARC_OPCODE_ARCv2HS)
1001 {
1002 /* FPU instructions are not extensions for HS. */
1003 add_to_decodelist (FLOAT, SP);
1004 add_to_decodelist (FLOAT, DP);
1005 add_to_decodelist (FLOAT, CVT);
0d2bcfaf
NC
1006 }
1007
24b368f8
CZ
1008 /* This variable may be set by the instruction decoder. It suggests
1009 the number of bytes objdump should display on a single line. If
1010 the instruction decoder sets this, it should always set it to
1011 the same value in order to get reasonable looking output. */
1012
1013 info->bytes_per_line = 8;
1014
1015 /* In the next lines, we set two info variables control the way
1016 objdump displays the raw data. For example, if bytes_per_line is
1017 8 and bytes_per_chunk is 4, the output will look like this:
1018 00: 00000000 00000000
1019 with the chunks displayed according to "display_endian". */
1020
1021 if (info->section
1022 && !(info->section->flags & SEC_CODE))
1023 {
1024 /* This is not a CODE section. */
1025 switch (info->section->size)
1026 {
1027 case 1:
1028 case 2:
1029 case 4:
1030 size = info->section->size;
1031 break;
1032 default:
1033 size = (info->section->size & 0x01) ? 1 : 4;
1034 break;
1035 }
1036 info->bytes_per_chunk = 1;
1037 info->display_endian = info->endian;
1038 }
1039 else
1040 {
1041 size = 2;
1042 info->bytes_per_chunk = 2;
1043 info->display_endian = info->endian;
1044 }
1045
886a2506 1046 /* Read the insn into a host word. */
24b368f8 1047 status = (*info->read_memory_func) (memaddr, buffer, size, info);
50d2740d 1048
886a2506 1049 if (status != 0)
0d2bcfaf 1050 {
886a2506
NC
1051 (*info->memory_error_func) (status, memaddr, info);
1052 return -1;
0d2bcfaf
NC
1053 }
1054
886a2506
NC
1055 if (info->section
1056 && !(info->section->flags & SEC_CODE))
0d2bcfaf 1057 {
24b368f8
CZ
1058 /* Data section. */
1059 unsigned long data;
1060
1061 data = bfd_get_bits (buffer, size * 8,
1062 info->display_endian == BFD_ENDIAN_BIG);
1063 switch (size)
0d2bcfaf 1064 {
24b368f8
CZ
1065 case 1:
1066 (*info->fprintf_func) (info->stream, ".byte\t0x%02lx", data);
1067 break;
1068 case 2:
1069 (*info->fprintf_func) (info->stream, ".short\t0x%04lx", data);
1070 break;
1071 case 4:
1072 (*info->fprintf_func) (info->stream, ".word\t0x%08lx", data);
1073 break;
1074 default:
1075 abort ();
0d2bcfaf 1076 }
24b368f8 1077 return size;
886a2506 1078 }
279a96ca 1079
90f61cce 1080 insn_len = arc_insn_length (buffer[highbyte], buffer[lowbyte], info);
4eb6f892 1081 pr_debug ("instruction length = %d bytes\n", insn_len);
6ec7c1ae
CZ
1082 arc_infop = info->private_data;
1083 arc_infop->insn_len = insn_len;
37fd5ef3 1084
4eb6f892 1085 switch (insn_len)
886a2506 1086 {
cb040366 1087 case 2:
bdfe53e3 1088 insn = (buffer[highbyte] << 8) | buffer[lowbyte];
cb040366 1089 break;
886a2506 1090
cb040366 1091 case 4:
bdfe53e3
AB
1092 {
1093 /* This is a long instruction: Read the remaning 2 bytes. */
1094 status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 2, info);
1095 if (status != 0)
1096 {
1097 (*info->memory_error_func) (status, memaddr + 2, info);
1098 return -1;
1099 }
1100 insn = (unsigned long long) ARRANGE_ENDIAN (info, buffer);
1101 }
1102 break;
1103
1104 case 6:
1105 {
1106 status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 4, info);
1107 if (status != 0)
1108 {
1109 (*info->memory_error_func) (status, memaddr + 2, info);
1110 return -1;
1111 }
1112 insn = (unsigned long long) ARRANGE_ENDIAN (info, &buffer[2]);
1113 insn |= ((unsigned long long) buffer[highbyte] << 40)
1114 | ((unsigned long long) buffer[lowbyte] << 32);
1115 }
cb040366 1116 break;
bdfe53e3
AB
1117
1118 case 8:
1119 {
1120 status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 6, info);
1121 if (status != 0)
1122 {
1123 (*info->memory_error_func) (status, memaddr + 2, info);
1124 return -1;
1125 }
1126 insn =
1127 ((((unsigned long long) ARRANGE_ENDIAN (info, buffer)) << 32)
1128 | ((unsigned long long) ARRANGE_ENDIAN (info, &buffer[4])));
1129 }
1130 break;
1131
1132 default:
1133 /* There is no instruction whose length is not 2, 4, 6, or 8. */
1134 abort ();
886a2506
NC
1135 }
1136
bdfe53e3
AB
1137 pr_debug ("instruction value = %llx\n", insn);
1138
886a2506
NC
1139 /* Set some defaults for the insn info. */
1140 info->insn_info_valid = 1;
1141 info->branch_delay_insns = 0;
6ec7c1ae 1142 info->data_size = 4;
886a2506
NC
1143 info->insn_type = dis_nonbranch;
1144 info->target = 0;
1145 info->target2 = 0;
1146
1147 /* FIXME to be moved in dissasemble_init_for_target. */
1148 info->disassembler_needs_relocs = TRUE;
1149
1150 /* Find the first match in the opcode table. */
4eb6f892
AB
1151 if (!find_format (memaddr, insn, &insn_len, isa_mask, info, &opcode, &iter))
1152 return -1;
886a2506 1153
b99747ae
CZ
1154 if (!opcode)
1155 {
bdfe53e3
AB
1156 switch (insn_len)
1157 {
1158 case 2:
50d2740d 1159 (*info->fprintf_func) (info->stream, ".shor\t%#04llx",
bdfe53e3
AB
1160 insn & 0xffff);
1161 break;
1162 case 4:
50d2740d 1163 (*info->fprintf_func) (info->stream, ".word\t%#08llx",
bdfe53e3
AB
1164 insn & 0xffffffff);
1165 break;
1166 case 6:
50d2740d 1167 (*info->fprintf_func) (info->stream, ".long\t%#08llx",
bdfe53e3 1168 insn & 0xffffffff);
50d2740d 1169 (*info->fprintf_func) (info->stream, ".long\t%#04llx",
bdfe53e3
AB
1170 (insn >> 32) & 0xffff);
1171 break;
1172 case 8:
50d2740d 1173 (*info->fprintf_func) (info->stream, ".long\t%#08llx",
bdfe53e3 1174 insn & 0xffffffff);
50d2740d 1175 (*info->fprintf_func) (info->stream, ".long\t%#08llx",
bdfe53e3
AB
1176 insn >> 32);
1177 break;
1178 default:
1179 abort ();
1180 }
886a2506 1181
4eb6f892
AB
1182 info->insn_type = dis_noninsn;
1183 return insn_len;
886a2506 1184 }
279a96ca 1185
886a2506
NC
1186 /* Print the mnemonic. */
1187 (*info->fprintf_func) (info->stream, "%s", opcode->name);
1188
1189 /* Preselect the insn class. */
bdfe53e3 1190 info->insn_type = arc_opcode_to_insn_type (opcode);
279a96ca 1191
bdfe53e3 1192 pr_debug ("%s: 0x%08llx\n", opcode->name, opcode->opcode);
279a96ca 1193
bdfe53e3 1194 print_flags (opcode, &insn, info);
279a96ca 1195
886a2506
NC
1196 if (opcode->operands[0] != 0)
1197 (*info->fprintf_func) (info->stream, "\t");
279a96ca 1198
886a2506
NC
1199 need_comma = FALSE;
1200 open_braket = FALSE;
6ec7c1ae 1201 arc_infop->operands_count = 0;
279a96ca 1202
886a2506 1203 /* Now extract and print the operands. */
4eb6f892 1204 operand = NULL;
50d2740d 1205 vpcl = 0;
4eb6f892 1206 while (operand_iterator_next (&iter, &operand, &value))
886a2506 1207 {
886a2506 1208 if (open_braket && (operand->flags & ARC_OPERAND_BRAKET))
0d2bcfaf 1209 {
886a2506
NC
1210 (*info->fprintf_func) (info->stream, "]");
1211 open_braket = FALSE;
1212 continue;
0d2bcfaf 1213 }
279a96ca 1214
886a2506 1215 /* Only take input from real operands. */
db18dbab 1216 if (ARC_OPERAND_IS_FAKE (operand))
886a2506 1217 continue;
279a96ca 1218
4eb6f892
AB
1219 if ((operand->flags & ARC_OPERAND_IGNORE)
1220 && (operand->flags & ARC_OPERAND_IR)
6ec7c1ae 1221 && value == -1)
886a2506 1222 continue;
279a96ca 1223
db18dbab 1224 if (operand->flags & ARC_OPERAND_COLON)
6ec7c1ae
CZ
1225 {
1226 (*info->fprintf_func) (info->stream, ":");
1227 continue;
1228 }
db18dbab 1229
886a2506
NC
1230 if (need_comma)
1231 (*info->fprintf_func) (info->stream, ",");
279a96ca 1232
886a2506 1233 if (!open_braket && (operand->flags & ARC_OPERAND_BRAKET))
0d2bcfaf 1234 {
886a2506
NC
1235 (*info->fprintf_func) (info->stream, "[");
1236 open_braket = TRUE;
1237 need_comma = FALSE;
1238 continue;
0d2bcfaf 1239 }
886a2506 1240
db18dbab
GM
1241 need_comma = TRUE;
1242
50d2740d 1243 if (operand->flags & ARC_OPERAND_PCREL)
1244 {
1245 rpcl = TRUE;
1246 vpcl = value;
1247 rset = TRUE;
1248
1249 info->target = (bfd_vma) (memaddr & ~3) + value;
1250 }
1251 else if (!(operand->flags & ARC_OPERAND_IR))
1252 {
1253 vpcl = value;
1254 rset = TRUE;
1255 }
1256
886a2506
NC
1257 /* Print the operand as directed by the flags. */
1258 if (operand->flags & ARC_OPERAND_IR)
1259 {
f36e33da
CZ
1260 const char *rname;
1261
886a2506 1262 assert (value >=0 && value < 64);
f36e33da
CZ
1263 rname = arcExtMap_coreRegName (value);
1264 if (!rname)
1265 rname = regnames[value];
1266 (*info->fprintf_func) (info->stream, "%s", rname);
886a2506 1267 if (operand->flags & ARC_OPERAND_TRUNCATE)
f36e33da
CZ
1268 {
1269 rname = arcExtMap_coreRegName (value + 1);
1270 if (!rname)
1271 rname = regnames[value + 1];
1272 (*info->fprintf_func) (info->stream, "%s", rname);
1273 }
50d2740d 1274 if (value == 63)
1275 rpcl = TRUE;
1276 else
1277 rpcl = FALSE;
886a2506
NC
1278 }
1279 else if (operand->flags & ARC_OPERAND_LIMM)
1280 {
4eb6f892 1281 const char *rname = get_auxreg (opcode, value, isa_mask);
db18dbab 1282
f36e33da
CZ
1283 if (rname && open_braket)
1284 (*info->fprintf_func) (info->stream, "%s", rname);
1285 else
1286 {
4eb6f892 1287 (*info->fprintf_func) (info->stream, "%#x", value);
f36e33da
CZ
1288 if (info->insn_type == dis_branch
1289 || info->insn_type == dis_jsr)
4eb6f892 1290 info->target = (bfd_vma) value;
f36e33da 1291 }
886a2506 1292 }
886a2506 1293 else if (operand->flags & ARC_OPERAND_SIGNED)
f36e33da
CZ
1294 {
1295 const char *rname = get_auxreg (opcode, value, isa_mask);
1296 if (rname && open_braket)
1297 (*info->fprintf_func) (info->stream, "%s", rname);
1298 else
fdddd290 1299 {
1300 if (print_hex)
1301 (*info->fprintf_func) (info->stream, "%#x", value);
1302 else
1303 (*info->fprintf_func) (info->stream, "%d", value);
1304 }
f36e33da 1305 }
db18dbab 1306 else if (operand->flags & ARC_OPERAND_ADDRTYPE)
6ec7c1ae
CZ
1307 {
1308 const char *addrtype = get_addrtype (value);
1309 (*info->fprintf_func) (info->stream, "%s", addrtype);
1310 /* A colon follow an address type. */
1311 need_comma = FALSE;
1312 }
886a2506 1313 else
f36e33da
CZ
1314 {
1315 if (operand->flags & ARC_OPERAND_TRUNCATE
1316 && !(operand->flags & ARC_OPERAND_ALIGNED32)
1317 && !(operand->flags & ARC_OPERAND_ALIGNED16)
126124cc
CZ
1318 && value >= 0 && value <= 14)
1319 {
50d2740d 1320 /* Leave/Enter mnemonics. */
126124cc
CZ
1321 switch (value)
1322 {
1323 case 0:
1324 need_comma = FALSE;
1325 break;
1326 case 1:
1327 (*info->fprintf_func) (info->stream, "r13");
1328 break;
1329 default:
1330 (*info->fprintf_func) (info->stream, "r13-%s",
1331 regnames[13 + value - 1]);
1332 break;
1333 }
50d2740d 1334 rpcl = FALSE;
1335 rset = FALSE;
126124cc 1336 }
f36e33da
CZ
1337 else
1338 {
1339 const char *rname = get_auxreg (opcode, value, isa_mask);
1340 if (rname && open_braket)
1341 (*info->fprintf_func) (info->stream, "%s", rname);
1342 else
1343 (*info->fprintf_func) (info->stream, "%#x", value);
1344 }
1345 }
6ec7c1ae
CZ
1346
1347 if (operand->flags & ARC_OPERAND_LIMM)
1348 {
1349 arc_infop->operands[arc_infop->operands_count].kind
1350 = ARC_OPERAND_KIND_LIMM;
1351 /* It is not important to have exactly the LIMM indicator
1352 here. */
1353 arc_infop->operands[arc_infop->operands_count].value = 63;
1354 }
1355 else
1356 {
1357 arc_infop->operands[arc_infop->operands_count].value = value;
1358 arc_infop->operands[arc_infop->operands_count].kind
1359 = (operand->flags & ARC_OPERAND_IR
1360 ? ARC_OPERAND_KIND_REG
1361 : ARC_OPERAND_KIND_SHIMM);
1362 }
1363 arc_infop->operands_count ++;
252b5132 1364 }
279a96ca 1365
50d2740d 1366 /* Pretty print extra info for pc-relative operands. */
1367 if (rpcl && rset)
1368 {
1369 if (info->flags & INSN_HAS_RELOC)
1370 /* If the instruction has a reloc associated with it, then the
1371 offset field in the instruction will actually be the addend
1372 for the reloc. (We are using REL type relocs). In such
1373 cases, we can ignore the pc when computing addresses, since
1374 the addend is not currently pc-relative. */
1375 memaddr = 0;
1376
1377 (*info->fprintf_func) (info->stream, "\t;");
1378 (*info->print_address_func) ((memaddr & ~3) + vpcl, info);
1379 }
1380
4eb6f892 1381 return insn_len;
252b5132
RH
1382}
1383
47b0e7ad 1384
886a2506
NC
1385disassembler_ftype
1386arc_get_disassembler (bfd *abfd)
252b5132 1387{
dce08442
AK
1388 /* BFD my be absent, if opcodes is invoked from the debugger that
1389 has connected to remote target and doesn't have an ELF file. */
1390 if (abfd != NULL)
1391 {
1392 /* Read the extension insns and registers, if any. */
1393 build_ARC_extmap (abfd);
b99747ae 1394#ifdef DEBUG
dce08442 1395 dump_ARC_extmap ();
b99747ae 1396#endif
dce08442 1397 }
252b5132 1398
886a2506 1399 return print_insn_arc;
252b5132
RH
1400}
1401
37fd5ef3
CZ
1402void
1403print_arc_disassembler_options (FILE *stream)
1404{
10045478
AK
1405 int i;
1406
37fd5ef3
CZ
1407 fprintf (stream, _("\n\
1408The following ARC specific disassembler options are supported for use \n\
1409with -M switch (multiple options should be separated by commas):\n"));
1410
10045478
AK
1411 /* cpu=... options. */
1412 for (i = 0; cpu_types[i].name; ++i)
1413 {
1414 /* As of now all value CPU values are less than 16 characters. */
1415 fprintf (stream, " cpu=%-16s\tEnforce %s ISA.\n",
1416 cpu_types[i].name, cpu_types[i].isa);
1417 }
1418
37fd5ef3
CZ
1419 fprintf (stream, _("\
1420 dsp Recognize DSP instructions.\n"));
1421 fprintf (stream, _("\
1422 spfp Recognize FPX SP instructions.\n"));
1423 fprintf (stream, _("\
1424 dpfp Recognize FPX DP instructions.\n"));
1425 fprintf (stream, _("\
1426 quarkse_em Recognize FPU QuarkSE-EM instructions.\n"));
1427 fprintf (stream, _("\
1428 fpuda Recognize double assist FPU instructions.\n"));
1429 fprintf (stream, _("\
1430 fpus Recognize single precision FPU instructions.\n"));
1431 fprintf (stream, _("\
1432 fpud Recognize double precision FPU instructions.\n"));
fdddd290 1433 fprintf (stream, _("\
0f3f7167
CZ
1434 nps400 Recognize NPS400 instructions.\n"));
1435 fprintf (stream, _("\
fdddd290 1436 hex Use only hexadecimal number to print immediates.\n"));
37fd5ef3
CZ
1437}
1438
6ec7c1ae
CZ
1439void arc_insn_decode (bfd_vma addr,
1440 struct disassemble_info *info,
1441 disassembler_ftype disasm_func,
1442 struct arc_instruction *insn)
1443{
1444 const struct arc_opcode *opcode;
1445 struct arc_disassemble_info *arc_infop;
1446
1447 /* Ensure that insn would be in the reset state. */
1448 memset (insn, 0, sizeof (struct arc_instruction));
1449
1450 /* There was an error when disassembling, for example memory read error. */
1451 if (disasm_func (addr, info) < 0)
1452 {
1453 insn->valid = FALSE;
1454 return;
1455 }
1456
1457 assert (info->private_data != NULL);
1458 arc_infop = info->private_data;
1459
1460 insn->length = arc_infop->insn_len;;
1461 insn->address = addr;
1462
1463 /* Quick exit if memory at this address is not an instruction. */
1464 if (info->insn_type == dis_noninsn)
1465 {
1466 insn->valid = FALSE;
1467 return;
1468 }
1469
1470 insn->valid = TRUE;
1471
1472 opcode = (const struct arc_opcode *) arc_infop->opcode;
1473 insn->insn_class = opcode->insn_class;
1474 insn->limm_value = arc_infop->limm;
1475 insn->limm_p = arc_infop->limm_p;
1476
1477 insn->is_control_flow = (info->insn_type == dis_branch
1478 || info->insn_type == dis_condbranch
1479 || info->insn_type == dis_jsr
1480 || info->insn_type == dis_condjsr);
1481
1482 insn->has_delay_slot = info->branch_delay_insns;
1483 insn->writeback_mode
1484 = (enum arc_ldst_writeback_mode) arc_infop->writeback_mode;
1485 insn->data_size_mode = info->data_size;
1486 insn->condition_code = arc_infop->condition_code;
1487 memcpy (insn->operands, arc_infop->operands,
1488 sizeof (struct arc_insn_operand) * MAX_INSN_ARGS);
1489 insn->operands_count = arc_infop->operands_count;
1490}
37fd5ef3 1491
886a2506
NC
1492/* Local variables:
1493 eval: (c-set-style "gnu")
1494 indent-tabs-mode: t
1495 End: */
This page took 1.532372 seconds and 4 git commands to generate.