/src/binutils-gdb/opcodes/arc-dis.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* Instruction printing code for the ARC. |
2 | | Copyright (C) 1994-2023 Free Software Foundation, Inc. |
3 | | |
4 | | Contributed by Claudiu Zissulescu (claziss@synopsys.com) |
5 | | |
6 | | This file is part of libopcodes. |
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 program; if not, write to the Free Software |
20 | | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
21 | | MA 02110-1301, USA. */ |
22 | | |
23 | | #include "sysdep.h" |
24 | | #include <stdio.h> |
25 | | #include <assert.h> |
26 | | #include "dis-asm.h" |
27 | | #include "opcode/arc.h" |
28 | | #include "elf/arc.h" |
29 | | #include "arc-dis.h" |
30 | | #include "arc-ext.h" |
31 | | #include "elf-bfd.h" |
32 | | #include "libiberty.h" |
33 | | #include "opintl.h" |
34 | | |
35 | | /* Structure used to iterate over, and extract the values for, operands of |
36 | | an opcode. */ |
37 | | |
38 | | struct arc_operand_iterator |
39 | | { |
40 | | /* The complete instruction value to extract operands from. */ |
41 | | unsigned long long insn; |
42 | | |
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; |
46 | | |
47 | | /* The opcode this iterator is operating on. */ |
48 | | const struct arc_opcode *opcode; |
49 | | |
50 | | /* The index into the opcodes operand index list. */ |
51 | | const unsigned char *opidx; |
52 | | }; |
53 | | |
54 | | /* A private data used by ARC decoder. */ |
55 | | struct 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 | | bool 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 | | |
81 | | /* Globals variables. */ |
82 | | |
83 | | static const char * const regnames[64] = |
84 | | { |
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", "r58", "r59", "lp_count", "reserved", "LIMM", "pcl" |
94 | | }; |
95 | | |
96 | | static 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 | | |
102 | | static int addrtypenames_max = ARC_NUM_ADDRTYPES - 1; |
103 | | |
104 | | static const char * const addrtypeunknown = "unknown"; |
105 | | |
106 | | /* This structure keeps track which instruction class(es) |
107 | | should be ignored durring disassembling. */ |
108 | | |
109 | | typedef 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. */ |
118 | | static linkclass decodelist = NULL; |
119 | | |
120 | | /* ISA mask value enforced via disassembler info options. ARC_OPCODE_NONE |
121 | | value means that no CPU is enforced. */ |
122 | | |
123 | | static unsigned enforced_isa_mask = ARC_OPCODE_NONE; |
124 | | |
125 | | /* True if we want to print using only hex numbers. */ |
126 | | static bool print_hex = false; |
127 | | |
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 | 236k | (info->endian == BFD_ENDIAN_LITTLE ? bfd_getm32 (bfd_getl32 (buf)) \ |
138 | 236k | : bfd_getb32 (buf)) |
139 | | |
140 | 547k | #define BITS(word,s,e) (((word) >> (s)) & ((1ull << ((e) - (s)) << 1) - 1)) |
141 | 547k | #define OPCODE_32BIT_INSN(word) (BITS ((word), 27, 31)) |
142 | | |
143 | | /* Functions implementation. */ |
144 | | |
145 | | /* Initialize private data. */ |
146 | | static bool |
147 | | init_arc_disasm_info (struct disassemble_info *info) |
148 | 2.91k | { |
149 | 2.91k | struct arc_disassemble_info *arc_infop |
150 | 2.91k | = calloc (sizeof (*arc_infop), 1); |
151 | | |
152 | 2.91k | if (arc_infop == NULL) |
153 | 0 | return false; |
154 | | |
155 | 2.91k | info->private_data = arc_infop; |
156 | 2.91k | return true; |
157 | 2.91k | } |
158 | | |
159 | | /* Add a new element to the decode list. */ |
160 | | |
161 | | static void |
162 | | add_to_decodelist (insn_class_t insn_class, |
163 | | insn_subclass_t subclass) |
164 | 40.3k | { |
165 | 40.3k | linkclass t = (linkclass) xmalloc (sizeof (skipclass_t)); |
166 | | |
167 | 40.3k | t->insn_class = insn_class; |
168 | 40.3k | t->subclass = subclass; |
169 | 40.3k | t->nxt = decodelist; |
170 | 40.3k | decodelist = t; |
171 | 40.3k | } |
172 | | |
173 | | /* Return TRUE if we need to skip the opcode from being |
174 | | disassembled. */ |
175 | | |
176 | | static bool |
177 | | skip_this_opcode (const struct arc_opcode *opcode) |
178 | 171k | { |
179 | 171k | linkclass t = decodelist; |
180 | | |
181 | | /* Check opcode for major 0x06, return if it is not in. */ |
182 | 171k | if (arc_opcode_len (opcode) == 4 |
183 | 171k | && (OPCODE_32BIT_INSN (opcode->opcode) != 0x06 |
184 | | /* Can be an APEX extensions. */ |
185 | 171k | && OPCODE_32BIT_INSN (opcode->opcode) != 0x07)) |
186 | 156k | return false; |
187 | | |
188 | | /* or not a known truble class. */ |
189 | 15.0k | switch (opcode->insn_class) |
190 | 15.0k | { |
191 | 7.17k | case FLOAT: |
192 | 9.17k | case DSP: |
193 | 11.9k | case ARITH: |
194 | 12.5k | case MPY: |
195 | 12.5k | break; |
196 | 2.53k | default: |
197 | 2.53k | return false; |
198 | 15.0k | } |
199 | | |
200 | 105M | while (t != NULL) |
201 | 105M | { |
202 | 105M | if ((t->insn_class == opcode->insn_class) |
203 | 105M | && (t->subclass == opcode->subclass)) |
204 | 4.87k | return false; |
205 | 105M | t = t->nxt; |
206 | 105M | } |
207 | | |
208 | 7.64k | return true; |
209 | 12.5k | } |
210 | | |
211 | | static bfd_vma |
212 | | bfd_getm32 (unsigned int data) |
213 | 236k | { |
214 | 236k | bfd_vma value = 0; |
215 | | |
216 | 236k | value = ((data & 0xff00) | (data & 0xff)) << 16; |
217 | 236k | value |= ((data & 0xff0000) | (data & 0xff000000)) >> 16; |
218 | 236k | return value; |
219 | 236k | } |
220 | | |
221 | | static bool |
222 | | special_flag_p (const char *opname, |
223 | | const char *flgname) |
224 | 112k | { |
225 | 112k | const struct arc_flag_special *flg_spec; |
226 | 112k | unsigned i, j, flgidx; |
227 | | |
228 | 961k | for (i = 0; i < arc_num_flag_special; i++) |
229 | 876k | { |
230 | 876k | flg_spec = &arc_flag_special_cases[i]; |
231 | | |
232 | 876k | if (strcmp (opname, flg_spec->name)) |
233 | 799k | continue; |
234 | | |
235 | | /* Found potential special case instruction. */ |
236 | 1.13M | for (j=0;; ++j) |
237 | 1.21M | { |
238 | 1.21M | flgidx = flg_spec->flags[j]; |
239 | 1.21M | if (flgidx == 0) |
240 | 49.6k | break; /* End of the array. */ |
241 | | |
242 | 1.16M | if (strcmp (flgname, arc_flag_operands[flgidx].name) == 0) |
243 | 27.6k | return true; |
244 | 1.16M | } |
245 | 77.2k | } |
246 | 84.9k | return false; |
247 | 112k | } |
248 | | |
249 | | /* Find opcode from ARC_TABLE given the instruction described by INSN and |
250 | | INSNLEN. The ISA_MASK restricts the possible matches in ARC_TABLE. */ |
251 | | |
252 | | static const struct arc_opcode * |
253 | | find_format_from_table (struct disassemble_info *info, |
254 | | const struct arc_opcode *arc_table, |
255 | | unsigned long long insn, |
256 | | unsigned int insn_len, |
257 | | unsigned isa_mask, |
258 | | bool *has_limm, |
259 | | bool overlaps) |
260 | 606k | { |
261 | 606k | unsigned int i = 0; |
262 | 606k | const struct arc_opcode *opcode = NULL; |
263 | 606k | const struct arc_opcode *t_op = NULL; |
264 | 606k | const unsigned char *opidx; |
265 | 606k | const unsigned char *flgidx; |
266 | 606k | bool warn_p = false; |
267 | | |
268 | 606k | do |
269 | 1.74G | { |
270 | 1.74G | bool invalid = false; |
271 | | |
272 | 1.74G | opcode = &arc_table[i++]; |
273 | | |
274 | 1.74G | if (!(opcode->cpu & isa_mask)) |
275 | 850M | continue; |
276 | | |
277 | 896M | if (arc_opcode_len (opcode) != (int) insn_len) |
278 | 560M | continue; |
279 | | |
280 | 336M | if ((insn & opcode->mask) != opcode->opcode) |
281 | 335M | continue; |
282 | | |
283 | 564k | *has_limm = false; |
284 | | |
285 | | /* Possible candidate, check the operands. */ |
286 | 2.31M | for (opidx = opcode->operands; *opidx; opidx++) |
287 | 1.75M | { |
288 | 1.75M | int value, limmind; |
289 | 1.75M | const struct arc_operand *operand = &arc_operands[*opidx]; |
290 | | |
291 | 1.75M | if (operand->flags & ARC_OPERAND_FAKE) |
292 | 408k | continue; |
293 | | |
294 | 1.34M | if (operand->extract) |
295 | 1.16M | value = (*operand->extract) (insn, &invalid); |
296 | 185k | else |
297 | 185k | value = (insn >> operand->shift) & ((1ull << operand->bits) - 1); |
298 | | |
299 | | /* Check for LIMM indicator. If it is there, then make sure |
300 | | we pick the right format. */ |
301 | 1.34M | limmind = (isa_mask & ARC_OPCODE_ARCV2) ? 0x1E : 0x3E; |
302 | 1.34M | if (operand->flags & ARC_OPERAND_IR |
303 | 1.34M | && !(operand->flags & ARC_OPERAND_LIMM)) |
304 | 758k | { |
305 | 758k | if ((value == 0x3E && insn_len == 4) |
306 | 758k | || (value == limmind && insn_len == 2)) |
307 | 9.40k | { |
308 | 9.40k | invalid = true; |
309 | 9.40k | break; |
310 | 9.40k | } |
311 | 758k | } |
312 | | |
313 | 1.33M | if (operand->flags & ARC_OPERAND_LIMM |
314 | 1.33M | && !(operand->flags & ARC_OPERAND_DUPLICATE)) |
315 | 5.72k | *has_limm = true; |
316 | 1.33M | } |
317 | | |
318 | | /* Check the flags. */ |
319 | 975k | for (flgidx = opcode->flags; *flgidx; flgidx++) |
320 | 417k | { |
321 | | /* Get a valid flag class. */ |
322 | 417k | const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx]; |
323 | 417k | const unsigned *flgopridx; |
324 | 417k | int foundA = 0, foundB = 0; |
325 | 417k | unsigned int value; |
326 | | |
327 | | /* Check first the extensions. */ |
328 | 417k | if (cl_flags->flag_class & F_CLASS_EXTEND) |
329 | 66.4k | { |
330 | 66.4k | value = (insn & 0x1F); |
331 | 66.4k | if (arcExtMap_condCodeName (value)) |
332 | 0 | continue; |
333 | 66.4k | } |
334 | | |
335 | | /* Check for the implicit flags. */ |
336 | 417k | if (cl_flags->flag_class & F_CLASS_IMPLICIT) |
337 | 107k | continue; |
338 | | |
339 | 2.77M | for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx) |
340 | 2.46M | { |
341 | 2.46M | const struct arc_flag_operand *flg_operand = |
342 | 2.46M | &arc_flag_operands[*flgopridx]; |
343 | | |
344 | 2.46M | value = (insn >> flg_operand->shift) |
345 | 2.46M | & ((1 << flg_operand->bits) - 1); |
346 | 2.46M | if (value == flg_operand->code) |
347 | 350k | foundA = 1; |
348 | 2.46M | if (value) |
349 | 1.12M | foundB = 1; |
350 | 2.46M | } |
351 | | |
352 | 309k | if (!foundA && foundB) |
353 | 6.22k | { |
354 | 6.22k | invalid = true; |
355 | 6.22k | break; |
356 | 6.22k | } |
357 | 309k | } |
358 | | |
359 | 564k | if (invalid) |
360 | 19.7k | continue; |
361 | | |
362 | 544k | if (insn_len == 4 |
363 | 544k | && overlaps) |
364 | 171k | { |
365 | 171k | warn_p = true; |
366 | 171k | t_op = opcode; |
367 | 171k | if (skip_this_opcode (opcode)) |
368 | 7.64k | continue; |
369 | 171k | } |
370 | | |
371 | | /* The instruction is valid. */ |
372 | 537k | return opcode; |
373 | 544k | } |
374 | 1.74G | while (opcode->mask); |
375 | | |
376 | 69.5k | if (warn_p) |
377 | 6.71k | { |
378 | 6.71k | info->fprintf_styled_func |
379 | 6.71k | (info->stream, dis_style_text, |
380 | 6.71k | _("\nWarning: disassembly may be wrong due to " |
381 | 6.71k | "guessed opcode class choice.\n" |
382 | 6.71k | "Use -M<class[,class]> to select the correct " |
383 | 6.71k | "opcode class(es).\n\t\t\t\t")); |
384 | 6.71k | return t_op; |
385 | 6.71k | } |
386 | | |
387 | 62.7k | return NULL; |
388 | 69.5k | } |
389 | | |
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 |
392 | | extension. |
393 | | |
394 | | A pointer to the opcode is placed into OPCODE_RESULT, and ITER is |
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. |
398 | | |
399 | | This function returns TRUE in almost all cases, FALSE is reserved to |
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. |
402 | | |
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. |
406 | | |
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. */ |
413 | | |
414 | | static bool |
415 | | find_format (bfd_vma memaddr, |
416 | | unsigned long long insn, |
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) |
422 | 606k | { |
423 | 606k | const struct arc_opcode *opcode = NULL; |
424 | 606k | bool needs_limm = false; |
425 | 606k | const extInstruction_t *einsn, *i; |
426 | 606k | unsigned limm = 0; |
427 | 606k | struct arc_disassemble_info *arc_infop = info->private_data; |
428 | | |
429 | | /* First, try the extension instructions. */ |
430 | 606k | if (*insn_len == 4) |
431 | 215k | { |
432 | 215k | einsn = arcExtMap_insn (OPCODE_32BIT_INSN (insn), insn); |
433 | 215k | for (i = einsn; (i != NULL) && (opcode == NULL); i = i->next) |
434 | 0 | { |
435 | 0 | const char *errmsg = NULL; |
436 | |
|
437 | 0 | opcode = arcExtMap_genOpcode (i, isa_mask, &errmsg); |
438 | 0 | if (opcode == NULL) |
439 | 0 | { |
440 | 0 | (*info->fprintf_styled_func) |
441 | 0 | (info->stream, dis_style_text, |
442 | 0 | _("An error occurred while generating " |
443 | 0 | "the extension instruction operations")); |
444 | 0 | *opcode_result = NULL; |
445 | 0 | return false; |
446 | 0 | } |
447 | | |
448 | 0 | opcode = find_format_from_table (info, opcode, insn, *insn_len, |
449 | 0 | isa_mask, &needs_limm, false); |
450 | 0 | } |
451 | 215k | } |
452 | | |
453 | | /* Then, try finding the first match in the opcode table. */ |
454 | 606k | if (opcode == NULL) |
455 | 606k | opcode = find_format_from_table (info, arc_opcodes, insn, *insn_len, |
456 | 606k | isa_mask, &needs_limm, true); |
457 | | |
458 | 606k | if (opcode != NULL && needs_limm) |
459 | 3.63k | { |
460 | 3.63k | bfd_byte buffer[4]; |
461 | 3.63k | int status; |
462 | | |
463 | 3.63k | status = (*info->read_memory_func) (memaddr + *insn_len, buffer, |
464 | 3.63k | 4, info); |
465 | 3.63k | if (status != 0) |
466 | 16 | { |
467 | 16 | opcode = NULL; |
468 | 16 | } |
469 | 3.62k | else |
470 | 3.62k | { |
471 | 3.62k | limm = ARRANGE_ENDIAN (info, buffer); |
472 | 3.62k | *insn_len += 4; |
473 | 3.62k | } |
474 | 3.63k | } |
475 | | |
476 | 606k | if (opcode != NULL) |
477 | 543k | { |
478 | 543k | iter->insn = insn; |
479 | 543k | iter->limm = limm; |
480 | 543k | iter->opcode = opcode; |
481 | 543k | iter->opidx = opcode->operands; |
482 | 543k | } |
483 | | |
484 | 606k | *opcode_result = opcode; |
485 | | |
486 | | /* Update private data. */ |
487 | 606k | arc_infop->opcode = opcode; |
488 | 606k | arc_infop->limm = limm; |
489 | 606k | arc_infop->limm_p = needs_limm; |
490 | | |
491 | 606k | return true; |
492 | 606k | } |
493 | | |
494 | | static void |
495 | | print_flags (const struct arc_opcode *opcode, |
496 | | unsigned long long *insn, |
497 | | struct disassemble_info *info) |
498 | 543k | { |
499 | 543k | const unsigned char *flgidx; |
500 | 543k | unsigned int value; |
501 | 543k | struct arc_disassemble_info *arc_infop = info->private_data; |
502 | | |
503 | | /* Now extract and print the flags. */ |
504 | 941k | for (flgidx = opcode->flags; *flgidx; flgidx++) |
505 | 397k | { |
506 | | /* Get a valid flag class. */ |
507 | 397k | const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx]; |
508 | 397k | const unsigned *flgopridx; |
509 | | |
510 | | /* Check first the extensions. */ |
511 | 397k | if (cl_flags->flag_class & F_CLASS_EXTEND) |
512 | 63.7k | { |
513 | 63.7k | const char *name; |
514 | 63.7k | value = (insn[0] & 0x1F); |
515 | | |
516 | 63.7k | name = arcExtMap_condCodeName (value); |
517 | 63.7k | if (name) |
518 | 0 | { |
519 | 0 | (*info->fprintf_styled_func) (info->stream, dis_style_mnemonic, |
520 | 0 | ".%s", name); |
521 | 0 | continue; |
522 | 0 | } |
523 | 63.7k | } |
524 | | |
525 | 2.84M | for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx) |
526 | 2.45M | { |
527 | 2.45M | const struct arc_flag_operand *flg_operand = |
528 | 2.45M | &arc_flag_operands[*flgopridx]; |
529 | | |
530 | | /* Implicit flags are only used for the insn decoder. */ |
531 | 2.45M | if (cl_flags->flag_class & F_CLASS_IMPLICIT) |
532 | 107k | { |
533 | 107k | if (cl_flags->flag_class & F_CLASS_COND) |
534 | 24.8k | arc_infop->condition_code = flg_operand->code; |
535 | 82.4k | else if (cl_flags->flag_class & F_CLASS_WB) |
536 | 1.10k | arc_infop->writeback_mode = flg_operand->code; |
537 | 81.3k | else if (cl_flags->flag_class & F_CLASS_ZZ) |
538 | 81.3k | info->data_size = flg_operand->code; |
539 | 107k | continue; |
540 | 107k | } |
541 | | |
542 | 2.34M | if (!flg_operand->favail) |
543 | 902k | continue; |
544 | | |
545 | 1.44M | value = (insn[0] >> flg_operand->shift) |
546 | 1.44M | & ((1 << flg_operand->bits) - 1); |
547 | 1.44M | if (value == flg_operand->code) |
548 | 112k | { |
549 | | /* FIXME!: print correctly nt/t flag. */ |
550 | 112k | if (!special_flag_p (opcode->name, flg_operand->name)) |
551 | 84.9k | (*info->fprintf_styled_func) (info->stream, |
552 | 84.9k | dis_style_mnemonic, "."); |
553 | 27.6k | else if (info->insn_type == dis_dref) |
554 | 10.6k | { |
555 | 10.6k | switch (flg_operand->name[0]) |
556 | 10.6k | { |
557 | 4.45k | case 'b': |
558 | 4.45k | info->data_size = 1; |
559 | 4.45k | break; |
560 | 6.22k | case 'h': |
561 | 6.22k | case 'w': |
562 | 6.22k | info->data_size = 2; |
563 | 6.22k | break; |
564 | 0 | default: |
565 | 0 | info->data_size = 4; |
566 | 0 | break; |
567 | 10.6k | } |
568 | 10.6k | } |
569 | 112k | if (flg_operand->name[0] == 'd' |
570 | 112k | && flg_operand->name[1] == 0) |
571 | 28.3k | info->branch_delay_insns = 1; |
572 | | |
573 | | /* Check if it is a conditional flag. */ |
574 | 112k | if (cl_flags->flag_class & F_CLASS_COND) |
575 | 19.5k | { |
576 | 19.5k | if (info->insn_type == dis_jsr) |
577 | 3.65k | info->insn_type = dis_condjsr; |
578 | 15.9k | else if (info->insn_type == dis_branch) |
579 | 13.3k | info->insn_type = dis_condbranch; |
580 | 19.5k | arc_infop->condition_code = flg_operand->code; |
581 | 19.5k | } |
582 | | |
583 | | /* Check for the write back modes. */ |
584 | 112k | if (cl_flags->flag_class & F_CLASS_WB) |
585 | 11.7k | arc_infop->writeback_mode = flg_operand->code; |
586 | | |
587 | 112k | (*info->fprintf_styled_func) (info->stream, dis_style_mnemonic, |
588 | 112k | "%s", flg_operand->name); |
589 | 112k | } |
590 | 1.44M | } |
591 | 397k | } |
592 | 543k | } |
593 | | |
594 | | static const char * |
595 | | get_auxreg (const struct arc_opcode *opcode, |
596 | | int value, |
597 | | unsigned isa_mask) |
598 | 544k | { |
599 | 544k | const char *name; |
600 | 544k | unsigned int i; |
601 | 544k | const struct arc_aux_reg *auxr = &arc_aux_regs[0]; |
602 | | |
603 | 544k | if (opcode->insn_class != AUXREG) |
604 | 541k | return NULL; |
605 | | |
606 | 3.31k | name = arcExtMap_auxRegName (value); |
607 | 3.31k | if (name) |
608 | 0 | return name; |
609 | | |
610 | 519k | for (i = 0; i < arc_num_aux_regs; i++, auxr++) |
611 | 519k | { |
612 | 519k | if (!(auxr->cpu & isa_mask)) |
613 | 196k | continue; |
614 | | |
615 | 322k | if (auxr->subclass != NONE) |
616 | 872 | return NULL; |
617 | | |
618 | 321k | if (auxr->address == value) |
619 | 1.76k | return auxr->name; |
620 | 321k | } |
621 | 672 | return NULL; |
622 | 3.31k | } |
623 | | |
624 | | /* Convert a value representing an address type to a string used to refer to |
625 | | the address type in assembly code. */ |
626 | | |
627 | | static const char * |
628 | | get_addrtype (int value) |
629 | 3.53k | { |
630 | 3.53k | if (value < 0 || value > addrtypenames_max) |
631 | 0 | return addrtypeunknown; |
632 | | |
633 | 3.53k | return addrtypenames[value]; |
634 | 3.53k | } |
635 | | |
636 | | /* Calculate the instruction length for an instruction starting with MSB |
637 | | and LSB, the most and least significant byte. The ISA_MASK is used to |
638 | | filter the instructions considered to only those that are part of the |
639 | | current architecture. |
640 | | |
641 | | The instruction lengths are calculated from the ARC_OPCODE table, and |
642 | | cached for later use. */ |
643 | | |
644 | | static unsigned int |
645 | | arc_insn_length (bfd_byte msb, bfd_byte lsb, struct disassemble_info *info) |
646 | 607k | { |
647 | 607k | bfd_byte major_opcode = msb >> 3; |
648 | | |
649 | 607k | switch (info->mach) |
650 | 607k | { |
651 | 332k | case bfd_mach_arc_arc700: |
652 | | /* The nps400 extension set requires this special casing of the |
653 | | instruction length calculation. Right now this is not causing any |
654 | | problems as none of the known extensions overlap in opcode space, |
655 | | but, if they ever do then we might need to start carrying |
656 | | information around in the elf about which extensions are in use. */ |
657 | 332k | if (major_opcode == 0xb) |
658 | 12.1k | { |
659 | 12.1k | bfd_byte minor_opcode = lsb & 0x1f; |
660 | | |
661 | 12.1k | if (minor_opcode < 4) |
662 | 2.51k | return 6; |
663 | 9.63k | else if (minor_opcode == 0x10 || minor_opcode == 0x11) |
664 | 3.24k | return 8; |
665 | 12.1k | } |
666 | 326k | if (major_opcode == 0xa) |
667 | 4.18k | { |
668 | 4.18k | return 8; |
669 | 4.18k | } |
670 | | /* Fall through. */ |
671 | 341k | case bfd_mach_arc_arc600: |
672 | 341k | return (major_opcode > 0xb) ? 2 : 4; |
673 | 0 | break; |
674 | | |
675 | 256k | case bfd_mach_arc_arcv2: |
676 | 256k | return (major_opcode > 0x7) ? 2 : 4; |
677 | 0 | break; |
678 | | |
679 | 3 | default: |
680 | 3 | return 0; |
681 | 607k | } |
682 | 607k | } |
683 | | |
684 | | /* Extract and return the value of OPERAND from the instruction whose value |
685 | | is held in the array INSN. */ |
686 | | |
687 | | static int |
688 | | extract_operand_value (const struct arc_operand *operand, |
689 | | unsigned long long insn, |
690 | | unsigned limm) |
691 | 1.66M | { |
692 | 1.66M | int value; |
693 | | |
694 | | /* Read the limm operand, if required. */ |
695 | 1.66M | if (operand->flags & ARC_OPERAND_LIMM) |
696 | | /* The second part of the instruction value will have been loaded as |
697 | | part of the find_format call made earlier. */ |
698 | 5.06k | value = limm; |
699 | 1.66M | else |
700 | 1.66M | { |
701 | 1.66M | if (operand->extract) |
702 | 1.11M | value = (*operand->extract) (insn, (bool *) NULL); |
703 | 548k | else |
704 | 548k | { |
705 | 548k | if (operand->flags & ARC_OPERAND_ALIGNED32) |
706 | 0 | { |
707 | 0 | value = (insn >> operand->shift) |
708 | 0 | & ((1 << (operand->bits - 2)) - 1); |
709 | 0 | value = value << 2; |
710 | 0 | } |
711 | 548k | else |
712 | 548k | { |
713 | 548k | value = (insn >> operand->shift) & ((1 << operand->bits) - 1); |
714 | 548k | } |
715 | 548k | if (operand->flags & ARC_OPERAND_SIGNED) |
716 | 1.58k | { |
717 | 1.58k | int signbit = 1 << (operand->bits - 1); |
718 | 1.58k | value = (value ^ signbit) - signbit; |
719 | 1.58k | } |
720 | 548k | } |
721 | 1.66M | } |
722 | | |
723 | 1.66M | return value; |
724 | 1.66M | } |
725 | | |
726 | | /* Find the next operand, and the operands value from ITER. Return TRUE if |
727 | | there is another operand, otherwise return FALSE. If there is an |
728 | | operand returned then the operand is placed into OPERAND, and the value |
729 | | into VALUE. If there is no operand returned then OPERAND and VALUE are |
730 | | unchanged. */ |
731 | | |
732 | | static bool |
733 | | operand_iterator_next (struct arc_operand_iterator *iter, |
734 | | const struct arc_operand **operand, |
735 | | int *value) |
736 | 2.21M | { |
737 | 2.21M | if (*iter->opidx == 0) |
738 | 543k | { |
739 | 543k | *operand = NULL; |
740 | 543k | return false; |
741 | 543k | } |
742 | | |
743 | 1.66M | *operand = &arc_operands[*iter->opidx]; |
744 | 1.66M | *value = extract_operand_value (*operand, iter->insn, iter->limm); |
745 | 1.66M | iter->opidx++; |
746 | | |
747 | 1.66M | return true; |
748 | 2.21M | } |
749 | | |
750 | | /* Helper for parsing the options. */ |
751 | | |
752 | | static void |
753 | | parse_option (const char *option) |
754 | 8.66k | { |
755 | 8.66k | if (disassembler_options_cmp (option, "dsp") == 0) |
756 | 116 | add_to_decodelist (DSP, NONE); |
757 | | |
758 | 8.54k | else if (disassembler_options_cmp (option, "spfp") == 0) |
759 | 140 | add_to_decodelist (FLOAT, SPX); |
760 | | |
761 | 8.40k | else if (disassembler_options_cmp (option, "dpfp") == 0) |
762 | 38 | add_to_decodelist (FLOAT, DPX); |
763 | | |
764 | 8.37k | else if (disassembler_options_cmp (option, "quarkse_em") == 0) |
765 | 0 | { |
766 | 0 | add_to_decodelist (FLOAT, DPX); |
767 | 0 | add_to_decodelist (FLOAT, SPX); |
768 | 0 | add_to_decodelist (FLOAT, QUARKSE1); |
769 | 0 | add_to_decodelist (FLOAT, QUARKSE2); |
770 | 0 | } |
771 | | |
772 | 8.37k | else if (disassembler_options_cmp (option, "fpuda") == 0) |
773 | 82 | add_to_decodelist (FLOAT, DPA); |
774 | | |
775 | 8.28k | else if (disassembler_options_cmp (option, "nps400") == 0) |
776 | 0 | { |
777 | 0 | add_to_decodelist (ACL, NPS400); |
778 | 0 | add_to_decodelist (ARITH, NPS400); |
779 | 0 | add_to_decodelist (BITOP, NPS400); |
780 | 0 | add_to_decodelist (BMU, NPS400); |
781 | 0 | add_to_decodelist (CONTROL, NPS400); |
782 | 0 | add_to_decodelist (DMA, NPS400); |
783 | 0 | add_to_decodelist (DPI, NPS400); |
784 | 0 | add_to_decodelist (MEMORY, NPS400); |
785 | 0 | add_to_decodelist (MISC, NPS400); |
786 | 0 | add_to_decodelist (NET, NPS400); |
787 | 0 | add_to_decodelist (PMU, NPS400); |
788 | 0 | add_to_decodelist (PROTOCOL_DECODE, NPS400); |
789 | 0 | add_to_decodelist (ULTRAIP, NPS400); |
790 | 0 | } |
791 | | |
792 | 8.28k | else if (disassembler_options_cmp (option, "fpus") == 0) |
793 | 36 | { |
794 | 36 | add_to_decodelist (FLOAT, SP); |
795 | 36 | add_to_decodelist (FLOAT, CVT); |
796 | 36 | } |
797 | | |
798 | 8.25k | else if (disassembler_options_cmp (option, "fpud") == 0) |
799 | 62 | { |
800 | 62 | add_to_decodelist (FLOAT, DP); |
801 | 62 | add_to_decodelist (FLOAT, CVT); |
802 | 62 | } |
803 | 8.19k | else if (startswith (option, "hex")) |
804 | 142 | print_hex = true; |
805 | 8.04k | else |
806 | | /* xgettext:c-format */ |
807 | 8.04k | opcodes_error_handler (_("unrecognised disassembler option: %s"), option); |
808 | 8.66k | } |
809 | | |
810 | | #define ARC_CPU_TYPE_A6xx(NAME,EXTRA) \ |
811 | | { #NAME, ARC_OPCODE_ARC600, "ARC600" } |
812 | | #define ARC_CPU_TYPE_A7xx(NAME,EXTRA) \ |
813 | | { #NAME, ARC_OPCODE_ARC700, "ARC700" } |
814 | | #define ARC_CPU_TYPE_AV2EM(NAME,EXTRA) \ |
815 | | { #NAME, ARC_OPCODE_ARCv2EM, "ARC EM" } |
816 | | #define ARC_CPU_TYPE_AV2HS(NAME,EXTRA) \ |
817 | | { #NAME, ARC_OPCODE_ARCv2HS, "ARC HS" } |
818 | | #define ARC_CPU_TYPE_NONE \ |
819 | | { 0, 0, 0 } |
820 | | |
821 | | /* A table of CPU names and opcode sets. */ |
822 | | static const struct cpu_type |
823 | | { |
824 | | const char *name; |
825 | | unsigned flags; |
826 | | const char *isa; |
827 | | } |
828 | | cpu_types[] = |
829 | | { |
830 | | #include "elf/arc-cpu.def" |
831 | | }; |
832 | | |
833 | | /* Helper for parsing the CPU options. Accept any of the ARC architectures |
834 | | values. OPTION should be a value passed to cpu=. */ |
835 | | |
836 | | static unsigned |
837 | | parse_cpu_option (const char *option) |
838 | 454 | { |
839 | 454 | int i; |
840 | | |
841 | 9.02k | for (i = 0; cpu_types[i].name; ++i) |
842 | 8.78k | { |
843 | 8.78k | if (!disassembler_options_cmp (cpu_types[i].name, option)) |
844 | 210 | { |
845 | 210 | return cpu_types[i].flags; |
846 | 210 | } |
847 | 8.78k | } |
848 | | |
849 | | /* xgettext:c-format */ |
850 | 244 | opcodes_error_handler (_("unrecognised disassembler CPU option: %s"), option); |
851 | 244 | return ARC_OPCODE_NONE; |
852 | 454 | } |
853 | | |
854 | | /* Go over the options list and parse it. */ |
855 | | |
856 | | static void |
857 | | parse_disassembler_options (const char *options) |
858 | 2.57k | { |
859 | 2.57k | const char *option; |
860 | | |
861 | 2.57k | if (options == NULL) |
862 | 0 | return; |
863 | | |
864 | | /* Disassembler might be reused for difference CPU's, and cpu option set for |
865 | | the first one shouldn't be applied to second (which might not have |
866 | | explicit cpu in its options. Therefore it is required to reset enforced |
867 | | CPU when new options are being parsed. */ |
868 | 2.57k | enforced_isa_mask = ARC_OPCODE_NONE; |
869 | | |
870 | 2.57k | FOR_EACH_DISASSEMBLER_OPTION (option, options) |
871 | 9.11k | { |
872 | | /* A CPU option? Cannot use STRING_COMMA_LEN because strncmp is also a |
873 | | preprocessor macro. */ |
874 | 9.11k | if (strncmp (option, "cpu=", 4) == 0) |
875 | | /* Strip leading `cpu=`. */ |
876 | 454 | enforced_isa_mask = parse_cpu_option (option + 4); |
877 | 8.66k | else |
878 | 8.66k | parse_option (option); |
879 | 9.11k | } |
880 | 2.57k | } |
881 | | |
882 | | /* Return the instruction type for an instruction described by OPCODE. */ |
883 | | |
884 | | static enum dis_insn_type |
885 | | arc_opcode_to_insn_type (const struct arc_opcode *opcode) |
886 | 543k | { |
887 | 543k | enum dis_insn_type insn_type; |
888 | | |
889 | 543k | switch (opcode->insn_class) |
890 | 543k | { |
891 | 178k | case BRANCH: |
892 | 179k | case BBIT0: |
893 | 181k | case BBIT1: |
894 | 182k | case BI: |
895 | 182k | case BIH: |
896 | 196k | case BRCC: |
897 | 202k | case EI: |
898 | 206k | case JLI: |
899 | 209k | case JUMP: |
900 | 210k | case LOOP: |
901 | 210k | if (!strncmp (opcode->name, "bl", 2) |
902 | 210k | || !strncmp (opcode->name, "jl", 2)) |
903 | 89.7k | { |
904 | 89.7k | if (opcode->subclass == COND) |
905 | 2.81k | insn_type = dis_condjsr; |
906 | 86.9k | else |
907 | 86.9k | insn_type = dis_jsr; |
908 | 89.7k | } |
909 | 120k | else |
910 | 120k | { |
911 | 120k | if (opcode->subclass == COND) |
912 | 24.1k | insn_type = dis_condbranch; |
913 | 96.3k | else |
914 | 96.3k | insn_type = dis_branch; |
915 | 120k | } |
916 | 210k | break; |
917 | 122k | case LOAD: |
918 | 180k | case STORE: |
919 | 181k | case MEMORY: |
920 | 181k | case ENTER: |
921 | 182k | case PUSH: |
922 | 183k | case POP: |
923 | 183k | insn_type = dis_dref; |
924 | 183k | break; |
925 | 2.56k | case LEAVE: |
926 | 2.56k | insn_type = dis_branch; |
927 | 2.56k | break; |
928 | 148k | default: |
929 | 148k | insn_type = dis_nonbranch; |
930 | 148k | break; |
931 | 543k | } |
932 | | |
933 | 543k | return insn_type; |
934 | 543k | } |
935 | | |
936 | | /* Disassemble ARC instructions. */ |
937 | | |
938 | | static int |
939 | | print_insn_arc (bfd_vma memaddr, |
940 | | struct disassemble_info *info) |
941 | 612k | { |
942 | 612k | bfd_byte buffer[8]; |
943 | 612k | unsigned int highbyte, lowbyte; |
944 | 612k | int status; |
945 | 612k | unsigned int insn_len; |
946 | 612k | unsigned long long insn = 0; |
947 | 612k | unsigned isa_mask = ARC_OPCODE_NONE; |
948 | 612k | const struct arc_opcode *opcode; |
949 | 612k | bool need_comma; |
950 | 612k | bool open_braket; |
951 | 612k | int size; |
952 | 612k | const struct arc_operand *operand; |
953 | 612k | int value, vpcl; |
954 | 612k | struct arc_operand_iterator iter; |
955 | 612k | struct arc_disassemble_info *arc_infop; |
956 | 612k | bool rpcl = false, rset = false; |
957 | | |
958 | 612k | if (info->disassembler_options) |
959 | 2.57k | { |
960 | 2.57k | parse_disassembler_options (info->disassembler_options); |
961 | | |
962 | | /* Avoid repeated parsing of the options. */ |
963 | 2.57k | info->disassembler_options = NULL; |
964 | 2.57k | } |
965 | | |
966 | 612k | if (info->private_data == NULL && !init_arc_disasm_info (info)) |
967 | 0 | return -1; |
968 | | |
969 | 612k | memset (&iter, 0, sizeof (iter)); |
970 | 612k | highbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 1 : 0); |
971 | 612k | lowbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 0 : 1); |
972 | | |
973 | | /* Figure out CPU type, unless it was enforced via disassembler options. */ |
974 | 612k | if (enforced_isa_mask == ARC_OPCODE_NONE) |
975 | 598k | { |
976 | 598k | Elf_Internal_Ehdr *header = NULL; |
977 | | |
978 | 598k | if (info->section && info->section->owner) |
979 | 4.24k | header = elf_elfheader (info->section->owner); |
980 | | |
981 | 598k | switch (info->mach) |
982 | 598k | { |
983 | 333k | case bfd_mach_arc_arc700: |
984 | 333k | isa_mask = ARC_OPCODE_ARC700; |
985 | 333k | break; |
986 | | |
987 | 7.68k | case bfd_mach_arc_arc600: |
988 | 7.68k | isa_mask = ARC_OPCODE_ARC600; |
989 | 7.68k | break; |
990 | | |
991 | 257k | case bfd_mach_arc_arcv2: |
992 | 257k | default: |
993 | 257k | isa_mask = ARC_OPCODE_ARCv2EM; |
994 | | /* TODO: Perhaps remove definition of header since it is only used at |
995 | | this location. */ |
996 | 257k | if (header != NULL |
997 | 257k | && (header->e_flags & EF_ARC_MACH_MSK) == EF_ARC_CPU_ARCV2HS) |
998 | 0 | isa_mask = ARC_OPCODE_ARCv2HS; |
999 | 257k | break; |
1000 | 598k | } |
1001 | 598k | } |
1002 | 13.2k | else |
1003 | 13.2k | isa_mask = enforced_isa_mask; |
1004 | | |
1005 | 612k | if (isa_mask == ARC_OPCODE_ARCv2HS) |
1006 | 13.2k | { |
1007 | | /* FPU instructions are not extensions for HS. */ |
1008 | 13.2k | add_to_decodelist (FLOAT, SP); |
1009 | 13.2k | add_to_decodelist (FLOAT, DP); |
1010 | 13.2k | add_to_decodelist (FLOAT, CVT); |
1011 | 13.2k | } |
1012 | | |
1013 | | /* This variable may be set by the instruction decoder. It suggests |
1014 | | the number of bytes objdump should display on a single line. If |
1015 | | the instruction decoder sets this, it should always set it to |
1016 | | the same value in order to get reasonable looking output. */ |
1017 | 612k | info->bytes_per_line = 8; |
1018 | | |
1019 | | /* In the next lines, we set two info variables control the way |
1020 | | objdump displays the raw data. For example, if bytes_per_line is |
1021 | | 8 and bytes_per_chunk is 4, the output will look like this: |
1022 | | 00: 00000000 00000000 |
1023 | | with the chunks displayed according to "display_endian". */ |
1024 | 612k | if (info->section |
1025 | 612k | && !(info->section->flags & SEC_CODE)) |
1026 | 3.28k | { |
1027 | | /* This is not a CODE section. */ |
1028 | 3.28k | switch (info->section->size) |
1029 | 3.28k | { |
1030 | 0 | case 1: |
1031 | 0 | case 2: |
1032 | 0 | case 4: |
1033 | 0 | size = info->section->size; |
1034 | 0 | break; |
1035 | 3.28k | default: |
1036 | 3.28k | size = (info->section->size & 0x01) ? 1 : 4; |
1037 | 3.28k | break; |
1038 | 3.28k | } |
1039 | 3.28k | info->bytes_per_chunk = 1; |
1040 | 3.28k | info->display_endian = info->endian; |
1041 | 3.28k | } |
1042 | 608k | else |
1043 | 608k | { |
1044 | 608k | size = 2; |
1045 | 608k | info->bytes_per_chunk = 2; |
1046 | 608k | info->display_endian = info->endian; |
1047 | 608k | } |
1048 | | |
1049 | | /* Read the insn into a host word. */ |
1050 | 612k | status = (*info->read_memory_func) (memaddr, buffer, size, info); |
1051 | | |
1052 | 612k | if (status != 0) |
1053 | 1.17k | { |
1054 | 1.17k | (*info->memory_error_func) (status, memaddr, info); |
1055 | 1.17k | return -1; |
1056 | 1.17k | } |
1057 | | |
1058 | 610k | if (info->section |
1059 | 610k | && !(info->section->flags & SEC_CODE)) |
1060 | 3.27k | { |
1061 | | /* Data section. */ |
1062 | 3.27k | unsigned long data; |
1063 | | |
1064 | 3.27k | data = bfd_get_bits (buffer, size * 8, |
1065 | 3.27k | info->display_endian == BFD_ENDIAN_BIG); |
1066 | 3.27k | switch (size) |
1067 | 3.27k | { |
1068 | 2.63k | case 1: |
1069 | 2.63k | (*info->fprintf_styled_func) (info->stream, |
1070 | 2.63k | dis_style_assembler_directive, |
1071 | 2.63k | ".byte"); |
1072 | 2.63k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1073 | 2.63k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1074 | 2.63k | "0x%02lx", data); |
1075 | 2.63k | break; |
1076 | 0 | case 2: |
1077 | 0 | (*info->fprintf_styled_func) (info->stream, |
1078 | 0 | dis_style_assembler_directive, |
1079 | 0 | ".short"); |
1080 | 0 | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1081 | 0 | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1082 | 0 | "0x%04lx", data); |
1083 | 0 | break; |
1084 | 636 | case 4: |
1085 | 636 | (*info->fprintf_styled_func) (info->stream, |
1086 | 636 | dis_style_assembler_directive, |
1087 | 636 | ".word"); |
1088 | 636 | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1089 | 636 | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1090 | 636 | "0x%08lx", data); |
1091 | 636 | break; |
1092 | 0 | default: |
1093 | 0 | return -1; |
1094 | 3.27k | } |
1095 | 3.27k | return size; |
1096 | 3.27k | } |
1097 | | |
1098 | 607k | insn_len = arc_insn_length (buffer[highbyte], buffer[lowbyte], info); |
1099 | 607k | pr_debug ("instruction length = %d bytes\n", insn_len); |
1100 | 607k | if (insn_len == 0) |
1101 | 3 | return -1; |
1102 | | |
1103 | 607k | arc_infop = info->private_data; |
1104 | 607k | arc_infop->insn_len = insn_len; |
1105 | | |
1106 | 607k | switch (insn_len) |
1107 | 607k | { |
1108 | 380k | case 2: |
1109 | 380k | insn = (buffer[highbyte] << 8) | buffer[lowbyte]; |
1110 | 380k | break; |
1111 | | |
1112 | 216k | case 4: |
1113 | 216k | { |
1114 | | /* This is a long instruction: Read the remaning 2 bytes. */ |
1115 | 216k | status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 2, info); |
1116 | 216k | if (status != 0) |
1117 | 873 | { |
1118 | 873 | (*info->memory_error_func) (status, memaddr + 2, info); |
1119 | 873 | return -1; |
1120 | 873 | } |
1121 | 215k | insn = (unsigned long long) ARRANGE_ENDIAN (info, buffer); |
1122 | 215k | } |
1123 | 0 | break; |
1124 | | |
1125 | 2.51k | case 6: |
1126 | 2.51k | { |
1127 | 2.51k | status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 4, info); |
1128 | 2.51k | if (status != 0) |
1129 | 10 | { |
1130 | 10 | (*info->memory_error_func) (status, memaddr + 2, info); |
1131 | 10 | return -1; |
1132 | 10 | } |
1133 | 2.50k | insn = (unsigned long long) ARRANGE_ENDIAN (info, &buffer[2]); |
1134 | 2.50k | insn |= ((unsigned long long) buffer[highbyte] << 40) |
1135 | 2.50k | | ((unsigned long long) buffer[lowbyte] << 32); |
1136 | 2.50k | } |
1137 | 0 | break; |
1138 | | |
1139 | 7.42k | case 8: |
1140 | 7.42k | { |
1141 | 7.42k | status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 6, info); |
1142 | 7.42k | if (status != 0) |
1143 | 16 | { |
1144 | 16 | (*info->memory_error_func) (status, memaddr + 2, info); |
1145 | 16 | return -1; |
1146 | 16 | } |
1147 | 7.41k | insn = |
1148 | 7.41k | ((((unsigned long long) ARRANGE_ENDIAN (info, buffer)) << 32) |
1149 | 7.41k | | ((unsigned long long) ARRANGE_ENDIAN (info, &buffer[4]))); |
1150 | 7.41k | } |
1151 | 0 | break; |
1152 | | |
1153 | 0 | default: |
1154 | | /* There is no instruction whose length is not 2, 4, 6, or 8. */ |
1155 | 0 | return -1; |
1156 | 607k | } |
1157 | | |
1158 | 606k | pr_debug ("instruction value = %llx\n", insn); |
1159 | | |
1160 | | /* Set some defaults for the insn info. */ |
1161 | 606k | info->insn_info_valid = 1; |
1162 | 606k | info->branch_delay_insns = 0; |
1163 | 606k | info->data_size = 4; |
1164 | 606k | info->insn_type = dis_nonbranch; |
1165 | 606k | info->target = 0; |
1166 | 606k | info->target2 = 0; |
1167 | | |
1168 | | /* FIXME to be moved in dissasemble_init_for_target. */ |
1169 | 606k | info->disassembler_needs_relocs = true; |
1170 | | |
1171 | | /* Find the first match in the opcode table. */ |
1172 | 606k | if (!find_format (memaddr, insn, &insn_len, isa_mask, info, &opcode, &iter)) |
1173 | 0 | return -1; |
1174 | | |
1175 | 606k | if (!opcode) |
1176 | 62.8k | { |
1177 | 62.8k | switch (insn_len) |
1178 | 62.8k | { |
1179 | 12.5k | case 2: |
1180 | 12.5k | (*info->fprintf_styled_func) (info->stream, |
1181 | 12.5k | dis_style_assembler_directive, |
1182 | 12.5k | ".short"); |
1183 | 12.5k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1184 | 12.5k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1185 | 12.5k | "0x%04llx", insn & 0xffff); |
1186 | 12.5k | break; |
1187 | | |
1188 | 45.7k | case 4: |
1189 | 45.7k | (*info->fprintf_styled_func) (info->stream, |
1190 | 45.7k | dis_style_assembler_directive, |
1191 | 45.7k | ".word"); |
1192 | 45.7k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1193 | 45.7k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1194 | 45.7k | "0x%08llx", insn & 0xffffffff); |
1195 | 45.7k | break; |
1196 | | |
1197 | 434 | case 6: |
1198 | 434 | (*info->fprintf_styled_func) (info->stream, |
1199 | 434 | dis_style_assembler_directive, |
1200 | 434 | ".long"); |
1201 | 434 | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1202 | 434 | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1203 | 434 | "0x%08llx", insn & 0xffffffff); |
1204 | 434 | (*info->fprintf_styled_func) (info->stream, dis_style_text, " "); |
1205 | 434 | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1206 | 434 | "0x%04llx", (insn >> 32) & 0xffff); |
1207 | 434 | break; |
1208 | | |
1209 | 4.07k | case 8: |
1210 | 4.07k | (*info->fprintf_styled_func) (info->stream, |
1211 | 4.07k | dis_style_assembler_directive, |
1212 | 4.07k | ".long"); |
1213 | 4.07k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1214 | 4.07k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1215 | 4.07k | "0x%08llx", insn & 0xffffffff); |
1216 | 4.07k | (*info->fprintf_styled_func) (info->stream, dis_style_text, " "); |
1217 | 4.07k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1218 | 4.07k | "0x%08llx", (insn >> 32)); |
1219 | 4.07k | break; |
1220 | | |
1221 | 0 | default: |
1222 | 0 | return -1; |
1223 | 62.8k | } |
1224 | | |
1225 | 62.8k | info->insn_type = dis_noninsn; |
1226 | 62.8k | return insn_len; |
1227 | 62.8k | } |
1228 | | |
1229 | | /* Print the mnemonic. */ |
1230 | 543k | (*info->fprintf_styled_func) (info->stream, dis_style_mnemonic, |
1231 | 543k | "%s", opcode->name); |
1232 | | |
1233 | | /* Preselect the insn class. */ |
1234 | 543k | info->insn_type = arc_opcode_to_insn_type (opcode); |
1235 | | |
1236 | 543k | pr_debug ("%s: 0x%08llx\n", opcode->name, opcode->opcode); |
1237 | | |
1238 | 543k | print_flags (opcode, &insn, info); |
1239 | | |
1240 | 543k | if (opcode->operands[0] != 0) |
1241 | 543k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t"); |
1242 | | |
1243 | 543k | need_comma = false; |
1244 | 543k | open_braket = false; |
1245 | 543k | arc_infop->operands_count = 0; |
1246 | | |
1247 | | /* Now extract and print the operands. */ |
1248 | 543k | operand = NULL; |
1249 | 543k | vpcl = 0; |
1250 | 2.21M | while (operand_iterator_next (&iter, &operand, &value)) |
1251 | 1.66M | { |
1252 | 1.66M | if (open_braket && (operand->flags & ARC_OPERAND_BRAKET)) |
1253 | 195k | { |
1254 | 195k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "]"); |
1255 | 195k | open_braket = false; |
1256 | 195k | continue; |
1257 | 195k | } |
1258 | | |
1259 | | /* Only take input from real operands. */ |
1260 | 1.47M | if (ARC_OPERAND_IS_FAKE (operand)) |
1261 | 0 | continue; |
1262 | | |
1263 | 1.47M | if ((operand->flags & ARC_OPERAND_IGNORE) |
1264 | 1.47M | && (operand->flags & ARC_OPERAND_IR) |
1265 | 1.47M | && value == -1) |
1266 | 5.37k | continue; |
1267 | | |
1268 | 1.46M | if (operand->flags & ARC_OPERAND_COLON) |
1269 | 3.53k | { |
1270 | 3.53k | (*info->fprintf_styled_func) (info->stream, dis_style_text, ":"); |
1271 | 3.53k | continue; |
1272 | 3.53k | } |
1273 | | |
1274 | 1.46M | if (need_comma) |
1275 | 719k | (*info->fprintf_styled_func) (info->stream, dis_style_text,","); |
1276 | | |
1277 | 1.46M | if (!open_braket && (operand->flags & ARC_OPERAND_BRAKET)) |
1278 | 195k | { |
1279 | 195k | (*info->fprintf_styled_func) (info->stream, dis_style_text, "["); |
1280 | 195k | open_braket = true; |
1281 | 195k | need_comma = false; |
1282 | 195k | continue; |
1283 | 195k | } |
1284 | | |
1285 | 1.26M | need_comma = true; |
1286 | | |
1287 | 1.26M | if (operand->flags & ARC_OPERAND_PCREL) |
1288 | 202k | { |
1289 | 202k | rpcl = true; |
1290 | 202k | vpcl = value; |
1291 | 202k | rset = true; |
1292 | | |
1293 | 202k | info->target = (bfd_vma) (memaddr & ~3) + value; |
1294 | 202k | } |
1295 | 1.06M | else if (!(operand->flags & ARC_OPERAND_IR)) |
1296 | 348k | { |
1297 | 348k | vpcl = value; |
1298 | 348k | rset = true; |
1299 | 348k | } |
1300 | | |
1301 | | /* Print the operand as directed by the flags. */ |
1302 | 1.26M | if (operand->flags & ARC_OPERAND_IR) |
1303 | 715k | { |
1304 | 715k | const char *rname; |
1305 | | |
1306 | 715k | assert (value >=0 && value < 64); |
1307 | 715k | rname = arcExtMap_coreRegName (value); |
1308 | 715k | if (!rname) |
1309 | 715k | rname = regnames[value]; |
1310 | 715k | (*info->fprintf_styled_func) (info->stream, dis_style_register, |
1311 | 715k | "%s", rname); |
1312 | | |
1313 | | /* Check if we have a double register to print. */ |
1314 | 715k | if (operand->flags & ARC_OPERAND_TRUNCATE) |
1315 | 782 | { |
1316 | 782 | if ((value & 0x01) == 0) |
1317 | 448 | { |
1318 | 448 | rname = arcExtMap_coreRegName (value + 1); |
1319 | 448 | if (!rname) |
1320 | 448 | rname = regnames[value + 1]; |
1321 | 448 | } |
1322 | 334 | else |
1323 | 334 | rname = _("\nWarning: illegal use of double register " |
1324 | 782 | "pair.\n"); |
1325 | 782 | (*info->fprintf_styled_func) (info->stream, dis_style_register, |
1326 | 782 | "%s", rname); |
1327 | 782 | } |
1328 | 715k | if (value == 63) |
1329 | 11.7k | rpcl = true; |
1330 | 703k | else |
1331 | 703k | rpcl = false; |
1332 | 715k | } |
1333 | 550k | else if (operand->flags & ARC_OPERAND_LIMM) |
1334 | 5.06k | { |
1335 | 5.06k | const char *rname = get_auxreg (opcode, value, isa_mask); |
1336 | | |
1337 | 5.06k | if (rname && open_braket) |
1338 | 264 | (*info->fprintf_styled_func) (info->stream, dis_style_register, |
1339 | 264 | "%s", rname); |
1340 | 4.80k | else |
1341 | 4.80k | { |
1342 | 4.80k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1343 | 4.80k | "%#x", value); |
1344 | 4.80k | if (info->insn_type == dis_branch |
1345 | 4.80k | || info->insn_type == dis_jsr) |
1346 | 383 | info->target = (bfd_vma) value; |
1347 | 4.80k | } |
1348 | 5.06k | } |
1349 | 545k | else if (operand->flags & ARC_OPERAND_SIGNED) |
1350 | 240k | { |
1351 | 240k | const char *rname = get_auxreg (opcode, value, isa_mask); |
1352 | 240k | if (rname && open_braket) |
1353 | 329 | (*info->fprintf_styled_func) (info->stream, dis_style_register, |
1354 | 329 | "%s", rname); |
1355 | 240k | else |
1356 | 240k | { |
1357 | 240k | if (print_hex) |
1358 | 82.5k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1359 | 82.5k | "%#x", value); |
1360 | 157k | else |
1361 | 157k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1362 | 157k | "%d", value); |
1363 | 240k | } |
1364 | 240k | } |
1365 | 304k | else if (operand->flags & ARC_OPERAND_ADDRTYPE) |
1366 | 3.53k | { |
1367 | 3.53k | const char *addrtype = get_addrtype (value); |
1368 | 3.53k | (*info->fprintf_styled_func) (info->stream, dis_style_address, |
1369 | 3.53k | "%s", addrtype); |
1370 | | /* A colon follow an address type. */ |
1371 | 3.53k | need_comma = false; |
1372 | 3.53k | } |
1373 | 301k | else |
1374 | 301k | { |
1375 | 301k | if (operand->flags & ARC_OPERAND_TRUNCATE |
1376 | 301k | && !(operand->flags & ARC_OPERAND_ALIGNED32) |
1377 | 301k | && !(operand->flags & ARC_OPERAND_ALIGNED16) |
1378 | 301k | && value >= 0 && value <= 14) |
1379 | 2.71k | { |
1380 | | /* Leave/Enter mnemonics. */ |
1381 | 2.71k | switch (value) |
1382 | 2.71k | { |
1383 | 908 | case 0: |
1384 | 908 | need_comma = false; |
1385 | 908 | break; |
1386 | 774 | case 1: |
1387 | 774 | (*info->fprintf_styled_func) (info->stream, |
1388 | 774 | dis_style_register, "r13"); |
1389 | 774 | break; |
1390 | 1.02k | default: |
1391 | 1.02k | (*info->fprintf_styled_func) (info->stream, |
1392 | 1.02k | dis_style_register, "r13"); |
1393 | 1.02k | (*info->fprintf_styled_func) (info->stream, |
1394 | 1.02k | dis_style_text, "-"); |
1395 | 1.02k | (*info->fprintf_styled_func) (info->stream, |
1396 | 1.02k | dis_style_register, "%s", |
1397 | 1.02k | regnames[13 + value - 1]); |
1398 | 1.02k | break; |
1399 | 2.71k | } |
1400 | 2.71k | rpcl = false; |
1401 | 2.71k | rset = false; |
1402 | 2.71k | } |
1403 | 298k | else |
1404 | 298k | { |
1405 | 298k | const char *rname = get_auxreg (opcode, value, isa_mask); |
1406 | 298k | if (rname && open_braket) |
1407 | 455 | (*info->fprintf_styled_func) (info->stream, dis_style_register, |
1408 | 455 | "%s", rname); |
1409 | 298k | else |
1410 | 298k | (*info->fprintf_styled_func) (info->stream, dis_style_immediate, |
1411 | 298k | "%#x", value); |
1412 | 298k | } |
1413 | 301k | } |
1414 | | |
1415 | 1.26M | if (operand->flags & ARC_OPERAND_LIMM) |
1416 | 5.06k | { |
1417 | 5.06k | arc_infop->operands[arc_infop->operands_count].kind |
1418 | 5.06k | = ARC_OPERAND_KIND_LIMM; |
1419 | | /* It is not important to have exactly the LIMM indicator |
1420 | | here. */ |
1421 | 5.06k | arc_infop->operands[arc_infop->operands_count].value = 63; |
1422 | 5.06k | } |
1423 | 1.26M | else |
1424 | 1.26M | { |
1425 | 1.26M | arc_infop->operands[arc_infop->operands_count].value = value; |
1426 | 1.26M | arc_infop->operands[arc_infop->operands_count].kind |
1427 | 1.26M | = (operand->flags & ARC_OPERAND_IR |
1428 | 1.26M | ? ARC_OPERAND_KIND_REG |
1429 | 1.26M | : ARC_OPERAND_KIND_SHIMM); |
1430 | 1.26M | } |
1431 | 1.26M | arc_infop->operands_count ++; |
1432 | 1.26M | } |
1433 | | |
1434 | | /* Pretty print extra info for pc-relative operands. */ |
1435 | 543k | if (rpcl && rset) |
1436 | 203k | { |
1437 | 203k | if (info->flags & INSN_HAS_RELOC) |
1438 | | /* If the instruction has a reloc associated with it, then the |
1439 | | offset field in the instruction will actually be the addend |
1440 | | for the reloc. (We are using REL type relocs). In such |
1441 | | cases, we can ignore the pc when computing addresses, since |
1442 | | the addend is not currently pc-relative. */ |
1443 | 0 | memaddr = 0; |
1444 | | |
1445 | 203k | (*info->fprintf_styled_func) (info->stream, |
1446 | 203k | dis_style_comment_start, "\t;"); |
1447 | 203k | (*info->print_address_func) ((memaddr & ~3) + vpcl, info); |
1448 | 203k | } |
1449 | | |
1450 | 543k | return insn_len; |
1451 | 543k | } |
1452 | | |
1453 | | |
1454 | | disassembler_ftype |
1455 | | arc_get_disassembler (bfd *abfd) |
1456 | 2.92k | { |
1457 | | /* BFD my be absent, if opcodes is invoked from the debugger that |
1458 | | has connected to remote target and doesn't have an ELF file. */ |
1459 | 2.92k | if (abfd != NULL) |
1460 | 38 | { |
1461 | | /* Read the extension insns and registers, if any. */ |
1462 | 38 | build_ARC_extmap (abfd); |
1463 | | #ifdef DEBUG |
1464 | | dump_ARC_extmap (); |
1465 | | #endif |
1466 | 38 | } |
1467 | | |
1468 | 2.92k | return print_insn_arc; |
1469 | 2.92k | } |
1470 | | |
1471 | | /* Indices into option argument vector for options that do require |
1472 | | an argument. Use ARC_OPTION_ARG_NONE for options that don't |
1473 | | expect an argument. */ |
1474 | | typedef enum |
1475 | | { |
1476 | | ARC_OPTION_ARG_NONE = -1, |
1477 | | ARC_OPTION_ARG_ARCH, |
1478 | | ARC_OPTION_ARG_SIZE |
1479 | | } arc_option_arg_t; |
1480 | | |
1481 | | /* Valid ARC disassembler options. */ |
1482 | | static struct |
1483 | | { |
1484 | | const char *name; |
1485 | | const char *description; |
1486 | | arc_option_arg_t arg; |
1487 | | } arc_options[] = |
1488 | | { |
1489 | | { "cpu=", N_("Enforce the designated architecture while decoding."), |
1490 | | ARC_OPTION_ARG_ARCH }, |
1491 | | { "dsp", N_("Recognize DSP instructions."), |
1492 | | ARC_OPTION_ARG_NONE }, |
1493 | | { "spfp", N_("Recognize FPX SP instructions."), |
1494 | | ARC_OPTION_ARG_NONE }, |
1495 | | { "dpfp", N_("Recognize FPX DP instructions."), |
1496 | | ARC_OPTION_ARG_NONE }, |
1497 | | { "quarkse_em", N_("Recognize FPU QuarkSE-EM instructions."), |
1498 | | ARC_OPTION_ARG_NONE }, |
1499 | | { "fpuda", N_("Recognize double assist FPU instructions."), |
1500 | | ARC_OPTION_ARG_NONE }, |
1501 | | { "fpus", N_("Recognize single precision FPU instructions."), |
1502 | | ARC_OPTION_ARG_NONE }, |
1503 | | { "fpud", N_("Recognize double precision FPU instructions."), |
1504 | | ARC_OPTION_ARG_NONE }, |
1505 | | { "nps400", N_("Recognize NPS400 instructions."), |
1506 | | ARC_OPTION_ARG_NONE }, |
1507 | | { "hex", N_("Use only hexadecimal number to print immediates."), |
1508 | | ARC_OPTION_ARG_NONE } |
1509 | | }; |
1510 | | |
1511 | | /* Populate the structure for representing ARC's disassembly options. |
1512 | | Such a dynamic initialization is desired, because it makes the maintenance |
1513 | | easier and also gdb uses this to enable the "disassembler-option". */ |
1514 | | |
1515 | | const disasm_options_and_args_t * |
1516 | | disassembler_options_arc (void) |
1517 | 0 | { |
1518 | 0 | static disasm_options_and_args_t *opts_and_args; |
1519 | |
|
1520 | 0 | if (opts_and_args == NULL) |
1521 | 0 | { |
1522 | 0 | disasm_option_arg_t *args; |
1523 | 0 | disasm_options_t *opts; |
1524 | 0 | size_t i; |
1525 | 0 | const size_t nr_of_options = ARRAY_SIZE (arc_options); |
1526 | | /* There is a null element at the end of CPU_TYPES, therefore |
1527 | | NR_OF_CPUS is actually 1 more and that is desired here too. */ |
1528 | 0 | const size_t nr_of_cpus = ARRAY_SIZE (cpu_types); |
1529 | |
|
1530 | 0 | opts_and_args = XNEW (disasm_options_and_args_t); |
1531 | 0 | opts_and_args->args |
1532 | 0 | = XNEWVEC (disasm_option_arg_t, ARC_OPTION_ARG_SIZE + 1); |
1533 | 0 | opts_and_args->options.name |
1534 | 0 | = XNEWVEC (const char *, nr_of_options + 1); |
1535 | 0 | opts_and_args->options.description |
1536 | 0 | = XNEWVEC (const char *, nr_of_options + 1); |
1537 | 0 | opts_and_args->options.arg |
1538 | 0 | = XNEWVEC (const disasm_option_arg_t *, nr_of_options + 1); |
1539 | | |
1540 | | /* Populate the arguments for "cpu=" option. */ |
1541 | 0 | args = opts_and_args->args; |
1542 | 0 | args[ARC_OPTION_ARG_ARCH].name = "ARCH"; |
1543 | 0 | args[ARC_OPTION_ARG_ARCH].values = XNEWVEC (const char *, nr_of_cpus); |
1544 | 0 | for (i = 0; i < nr_of_cpus; ++i) |
1545 | 0 | args[ARC_OPTION_ARG_ARCH].values[i] = cpu_types[i].name; |
1546 | 0 | args[ARC_OPTION_ARG_SIZE].name = NULL; |
1547 | 0 | args[ARC_OPTION_ARG_SIZE].values = NULL; |
1548 | | |
1549 | | /* Populate the options. */ |
1550 | 0 | opts = &opts_and_args->options; |
1551 | 0 | for (i = 0; i < nr_of_options; ++i) |
1552 | 0 | { |
1553 | 0 | opts->name[i] = arc_options[i].name; |
1554 | 0 | opts->description[i] = arc_options[i].description; |
1555 | 0 | if (arc_options[i].arg != ARC_OPTION_ARG_NONE) |
1556 | 0 | opts->arg[i] = &args[arc_options[i].arg]; |
1557 | 0 | else |
1558 | 0 | opts->arg[i] = NULL; |
1559 | 0 | } |
1560 | 0 | opts->name[nr_of_options] = NULL; |
1561 | 0 | opts->description[nr_of_options] = NULL; |
1562 | 0 | opts->arg[nr_of_options] = NULL; |
1563 | 0 | } |
1564 | |
|
1565 | 0 | return opts_and_args; |
1566 | 0 | } |
1567 | | |
1568 | | |
1569 | | void |
1570 | | print_arc_disassembler_options (FILE *stream) |
1571 | 0 | { |
1572 | 0 | const disasm_options_and_args_t *opts_and_args; |
1573 | 0 | const disasm_option_arg_t *args; |
1574 | 0 | const disasm_options_t *opts; |
1575 | 0 | size_t i, j; |
1576 | 0 | size_t max_len = 0; |
1577 | |
|
1578 | 0 | opts_and_args = disassembler_options_arc (); |
1579 | 0 | opts = &opts_and_args->options; |
1580 | 0 | args = opts_and_args->args; |
1581 | |
|
1582 | 0 | fprintf (stream, _("\nThe following ARC specific disassembler options are" |
1583 | 0 | " supported for use \nwith the -M switch (multiple" |
1584 | 0 | " options should be separated by commas):\n")); |
1585 | | |
1586 | | /* Find the maximum length for printing options (and their arg name). */ |
1587 | 0 | for (i = 0; opts->name[i] != NULL; ++i) |
1588 | 0 | { |
1589 | 0 | size_t len = strlen (opts->name[i]); |
1590 | 0 | len += (opts->arg[i]) ? strlen (opts->arg[i]->name) : 0; |
1591 | 0 | max_len = (len > max_len) ? len : max_len; |
1592 | 0 | } |
1593 | | |
1594 | | /* Print the options, their arg and description, if any. */ |
1595 | 0 | for (i = 0, ++max_len; opts->name[i] != NULL; ++i) |
1596 | 0 | { |
1597 | 0 | fprintf (stream, " %s", opts->name[i]); |
1598 | 0 | if (opts->arg[i] != NULL) |
1599 | 0 | fprintf (stream, "%s", opts->arg[i]->name); |
1600 | 0 | if (opts->description[i] != NULL) |
1601 | 0 | { |
1602 | 0 | size_t len = strlen (opts->name[i]); |
1603 | 0 | len += (opts->arg[i]) ? strlen (opts->arg[i]->name) : 0; |
1604 | 0 | fprintf (stream, |
1605 | 0 | "%*c %s", (int) (max_len - len), ' ', opts->description[i]); |
1606 | 0 | } |
1607 | 0 | fprintf (stream, _("\n")); |
1608 | 0 | } |
1609 | | |
1610 | | /* Print the possible values of an argument. */ |
1611 | 0 | for (i = 0; args[i].name != NULL; ++i) |
1612 | 0 | { |
1613 | 0 | size_t len = 3; |
1614 | 0 | if (args[i].values == NULL) |
1615 | 0 | continue; |
1616 | 0 | fprintf (stream, _("\n\ |
1617 | 0 | For the options above, the following values are supported for \"%s\":\n "), |
1618 | 0 | args[i].name); |
1619 | 0 | for (j = 0; args[i].values[j] != NULL; ++j) |
1620 | 0 | { |
1621 | 0 | fprintf (stream, " %s", args[i].values[j]); |
1622 | 0 | len += strlen (args[i].values[j]) + 1; |
1623 | | /* reset line if printed too long. */ |
1624 | 0 | if (len >= 78) |
1625 | 0 | { |
1626 | 0 | fprintf (stream, _("\n ")); |
1627 | 0 | len = 3; |
1628 | 0 | } |
1629 | 0 | } |
1630 | 0 | fprintf (stream, _("\n")); |
1631 | 0 | } |
1632 | |
|
1633 | 0 | fprintf (stream, _("\n")); |
1634 | 0 | } |
1635 | | |
1636 | | void arc_insn_decode (bfd_vma addr, |
1637 | | struct disassemble_info *info, |
1638 | | disassembler_ftype disasm_func, |
1639 | | struct arc_instruction *insn) |
1640 | 0 | { |
1641 | 0 | const struct arc_opcode *opcode; |
1642 | 0 | struct arc_disassemble_info *arc_infop; |
1643 | | |
1644 | | /* Ensure that insn would be in the reset state. */ |
1645 | 0 | memset (insn, 0, sizeof (struct arc_instruction)); |
1646 | | |
1647 | | /* There was an error when disassembling, for example memory read error. */ |
1648 | 0 | if (disasm_func (addr, info) < 0) |
1649 | 0 | { |
1650 | 0 | insn->valid = false; |
1651 | 0 | return; |
1652 | 0 | } |
1653 | | |
1654 | 0 | assert (info->private_data != NULL); |
1655 | 0 | arc_infop = info->private_data; |
1656 | |
|
1657 | 0 | insn->length = arc_infop->insn_len;; |
1658 | 0 | insn->address = addr; |
1659 | | |
1660 | | /* Quick exit if memory at this address is not an instruction. */ |
1661 | 0 | if (info->insn_type == dis_noninsn) |
1662 | 0 | { |
1663 | 0 | insn->valid = false; |
1664 | 0 | return; |
1665 | 0 | } |
1666 | | |
1667 | 0 | insn->valid = true; |
1668 | |
|
1669 | 0 | opcode = (const struct arc_opcode *) arc_infop->opcode; |
1670 | 0 | insn->insn_class = opcode->insn_class; |
1671 | 0 | insn->limm_value = arc_infop->limm; |
1672 | 0 | insn->limm_p = arc_infop->limm_p; |
1673 | |
|
1674 | 0 | insn->is_control_flow = (info->insn_type == dis_branch |
1675 | 0 | || info->insn_type == dis_condbranch |
1676 | 0 | || info->insn_type == dis_jsr |
1677 | 0 | || info->insn_type == dis_condjsr); |
1678 | |
|
1679 | 0 | insn->has_delay_slot = info->branch_delay_insns; |
1680 | 0 | insn->writeback_mode |
1681 | 0 | = (enum arc_ldst_writeback_mode) arc_infop->writeback_mode; |
1682 | 0 | insn->data_size_mode = info->data_size; |
1683 | 0 | insn->condition_code = arc_infop->condition_code; |
1684 | 0 | memcpy (insn->operands, arc_infop->operands, |
1685 | 0 | sizeof (struct arc_insn_operand) * MAX_INSN_ARGS); |
1686 | 0 | insn->operands_count = arc_infop->operands_count; |
1687 | 0 | } |
1688 | | |
1689 | | /* Local variables: |
1690 | | eval: (c-set-style "gnu") |
1691 | | indent-tabs-mode: t |
1692 | | End: */ |