include/opcode/
[deliverable/binutils-gdb.git] / opcodes / aarch64-dis.c
1 /* aarch64-dis.c -- AArch64 disassembler.
2 Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
3 Contributed by ARM Ltd.
4
5 This file is part of the GNU opcodes library.
6
7 This library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING3. If not,
19 see <http://www.gnu.org/licenses/>. */
20
21 #include "sysdep.h"
22 #include "bfd_stdint.h"
23 #include "dis-asm.h"
24 #include "libiberty.h"
25 #include "opintl.h"
26 #include "aarch64-dis.h"
27
28 #if !defined(EMBEDDED_ENV)
29 #define SYMTAB_AVAILABLE 1
30 #include "elf-bfd.h"
31 #include "elf/aarch64.h"
32 #endif
33
34 #define ERR_OK 0
35 #define ERR_UND -1
36 #define ERR_UNP -3
37 #define ERR_NYI -5
38
39 #define INSNLEN 4
40
41 /* Cached mapping symbol state. */
42 enum map_type
43 {
44 MAP_INSN,
45 MAP_DATA
46 };
47
48 static enum map_type last_type;
49 static int last_mapping_sym = -1;
50 static bfd_vma last_mapping_addr = 0;
51
52 /* Other options */
53 static int no_aliases = 0; /* If set disassemble as most general inst. */
54 \f
55
56 static void
57 set_default_aarch64_dis_options (struct disassemble_info *info ATTRIBUTE_UNUSED)
58 {
59 }
60
61 static void
62 parse_aarch64_dis_option (const char *option, unsigned int len ATTRIBUTE_UNUSED)
63 {
64 /* Try to match options that are simple flags */
65 if (CONST_STRNEQ (option, "no-aliases"))
66 {
67 no_aliases = 1;
68 return;
69 }
70
71 if (CONST_STRNEQ (option, "aliases"))
72 {
73 no_aliases = 0;
74 return;
75 }
76
77 #ifdef DEBUG_AARCH64
78 if (CONST_STRNEQ (option, "debug_dump"))
79 {
80 debug_dump = 1;
81 return;
82 }
83 #endif /* DEBUG_AARCH64 */
84
85 /* Invalid option. */
86 fprintf (stderr, _("Unrecognised disassembler option: %s\n"), option);
87 }
88
89 static void
90 parse_aarch64_dis_options (const char *options)
91 {
92 const char *option_end;
93
94 if (options == NULL)
95 return;
96
97 while (*options != '\0')
98 {
99 /* Skip empty options. */
100 if (*options == ',')
101 {
102 options++;
103 continue;
104 }
105
106 /* We know that *options is neither NUL or a comma. */
107 option_end = options + 1;
108 while (*option_end != ',' && *option_end != '\0')
109 option_end++;
110
111 parse_aarch64_dis_option (options, option_end - options);
112
113 /* Go on to the next one. If option_end points to a comma, it
114 will be skipped above. */
115 options = option_end;
116 }
117 }
118 \f
119 /* Functions doing the instruction disassembling. */
120
121 /* The unnamed arguments consist of the number of fields and information about
122 these fields where the VALUE will be extracted from CODE and returned.
123 MASK can be zero or the base mask of the opcode.
124
125 N.B. the fields are required to be in such an order than the most signficant
126 field for VALUE comes the first, e.g. the <index> in
127 SQDMLAL <Va><d>, <Vb><n>, <Vm>.<Ts>[<index>]
128 is encoded in H:L:M in some cases, the the fields H:L:M should be passed in
129 the order of H, L, M. */
130
131 static inline aarch64_insn
132 extract_fields (aarch64_insn code, aarch64_insn mask, ...)
133 {
134 uint32_t num;
135 const aarch64_field *field;
136 enum aarch64_field_kind kind;
137 va_list va;
138
139 va_start (va, mask);
140 num = va_arg (va, uint32_t);
141 assert (num <= 5);
142 aarch64_insn value = 0x0;
143 while (num--)
144 {
145 kind = va_arg (va, enum aarch64_field_kind);
146 field = &fields[kind];
147 value <<= field->width;
148 value |= extract_field (kind, code, mask);
149 }
150 return value;
151 }
152
153 /* Sign-extend bit I of VALUE. */
154 static inline int32_t
155 sign_extend (aarch64_insn value, unsigned i)
156 {
157 uint32_t ret = value;
158
159 assert (i < 32);
160 if ((value >> i) & 0x1)
161 {
162 uint32_t val = (uint32_t)(-1) << i;
163 ret = ret | val;
164 }
165 return (int32_t) ret;
166 }
167
168 /* N.B. the following inline helpfer functions create a dependency on the
169 order of operand qualifier enumerators. */
170
171 /* Given VALUE, return qualifier for a general purpose register. */
172 static inline enum aarch64_opnd_qualifier
173 get_greg_qualifier_from_value (aarch64_insn value)
174 {
175 enum aarch64_opnd_qualifier qualifier = AARCH64_OPND_QLF_W + value;
176 assert (value <= 0x1
177 && aarch64_get_qualifier_standard_value (qualifier) == value);
178 return qualifier;
179 }
180
181 /* Given VALUE, return qualifier for a vector register. */
182 static inline enum aarch64_opnd_qualifier
183 get_vreg_qualifier_from_value (aarch64_insn value)
184 {
185 enum aarch64_opnd_qualifier qualifier = AARCH64_OPND_QLF_V_8B + value;
186
187 assert (value <= 0x8
188 && aarch64_get_qualifier_standard_value (qualifier) == value);
189 return qualifier;
190 }
191
192 /* Given VALUE, return qualifier for an FP or AdvSIMD scalar register. */
193 static inline enum aarch64_opnd_qualifier
194 get_sreg_qualifier_from_value (aarch64_insn value)
195 {
196 enum aarch64_opnd_qualifier qualifier = AARCH64_OPND_QLF_S_B + value;
197
198 assert (value <= 0x4
199 && aarch64_get_qualifier_standard_value (qualifier) == value);
200 return qualifier;
201 }
202
203 /* Given the instruction in *INST which is probably half way through the
204 decoding and our caller wants to know the expected qualifier for operand
205 I. Return such a qualifier if we can establish it; otherwise return
206 AARCH64_OPND_QLF_NIL. */
207
208 static aarch64_opnd_qualifier_t
209 get_expected_qualifier (const aarch64_inst *inst, int i)
210 {
211 aarch64_opnd_qualifier_seq_t qualifiers;
212 /* Should not be called if the qualifier is known. */
213 assert (inst->operands[i].qualifier == AARCH64_OPND_QLF_NIL);
214 if (aarch64_find_best_match (inst, inst->opcode->qualifiers_list,
215 i, qualifiers))
216 return qualifiers[i];
217 else
218 return AARCH64_OPND_QLF_NIL;
219 }
220
221 /* Operand extractors. */
222
223 int
224 aarch64_ext_regno (const aarch64_operand *self, aarch64_opnd_info *info,
225 const aarch64_insn code,
226 const aarch64_inst *inst ATTRIBUTE_UNUSED)
227 {
228 info->reg.regno = extract_field (self->fields[0], code, 0);
229 return 1;
230 }
231
232 /* e.g. IC <ic_op>{, <Xt>}. */
233 int
234 aarch64_ext_regrt_sysins (const aarch64_operand *self, aarch64_opnd_info *info,
235 const aarch64_insn code,
236 const aarch64_inst *inst ATTRIBUTE_UNUSED)
237 {
238 info->reg.regno = extract_field (self->fields[0], code, 0);
239 assert (info->idx == 1
240 && (aarch64_get_operand_class (inst->operands[0].type)
241 == AARCH64_OPND_CLASS_SYSTEM));
242 /* This will make the constraint checking happy and more importantly will
243 help the disassembler determine whether this operand is optional or
244 not. */
245 info->present = inst->operands[0].sysins_op->has_xt;
246
247 return 1;
248 }
249
250 /* e.g. SQDMLAL <Va><d>, <Vb><n>, <Vm>.<Ts>[<index>]. */
251 int
252 aarch64_ext_reglane (const aarch64_operand *self, aarch64_opnd_info *info,
253 const aarch64_insn code,
254 const aarch64_inst *inst ATTRIBUTE_UNUSED)
255 {
256 /* regno */
257 info->reglane.regno = extract_field (self->fields[0], code,
258 inst->opcode->mask);
259
260 /* Index and/or type. */
261 if (inst->opcode->iclass == asisdone
262 || inst->opcode->iclass == asimdins)
263 {
264 if (info->type == AARCH64_OPND_En
265 && inst->opcode->operands[0] == AARCH64_OPND_Ed)
266 {
267 unsigned shift;
268 /* index2 for e.g. INS <Vd>.<Ts>[<index1>], <Vn>.<Ts>[<index2>]. */
269 assert (info->idx == 1); /* Vn */
270 aarch64_insn value = extract_field (FLD_imm4, code, 0);
271 /* Depend on AARCH64_OPND_Ed to determine the qualifier. */
272 info->qualifier = get_expected_qualifier (inst, info->idx);
273 shift = get_logsz (aarch64_get_qualifier_esize (info->qualifier));
274 info->reglane.index = value >> shift;
275 }
276 else
277 {
278 /* index and type for e.g. DUP <V><d>, <Vn>.<T>[<index>].
279 imm5<3:0> <V>
280 0000 RESERVED
281 xxx1 B
282 xx10 H
283 x100 S
284 1000 D */
285 int pos = -1;
286 aarch64_insn value = extract_field (FLD_imm5, code, 0);
287 while (++pos <= 3 && (value & 0x1) == 0)
288 value >>= 1;
289 if (pos > 3)
290 return 0;
291 info->qualifier = get_sreg_qualifier_from_value (pos);
292 info->reglane.index = (unsigned) (value >> 1);
293 }
294 }
295 else
296 {
297 /* Index only for e.g. SQDMLAL <Va><d>, <Vb><n>, <Vm>.<Ts>[<index>]
298 or SQDMLAL <Va><d>, <Vb><n>, <Vm>.<Ts>[<index>]. */
299
300 /* Need information in other operand(s) to help decoding. */
301 info->qualifier = get_expected_qualifier (inst, info->idx);
302 switch (info->qualifier)
303 {
304 case AARCH64_OPND_QLF_S_H:
305 /* h:l:m */
306 info->reglane.index = extract_fields (code, 0, 3, FLD_H, FLD_L,
307 FLD_M);
308 info->reglane.regno &= 0xf;
309 break;
310 case AARCH64_OPND_QLF_S_S:
311 /* h:l */
312 info->reglane.index = extract_fields (code, 0, 2, FLD_H, FLD_L);
313 break;
314 case AARCH64_OPND_QLF_S_D:
315 /* H */
316 info->reglane.index = extract_field (FLD_H, code, 0);
317 break;
318 default:
319 return 0;
320 }
321 }
322
323 return 1;
324 }
325
326 int
327 aarch64_ext_reglist (const aarch64_operand *self, aarch64_opnd_info *info,
328 const aarch64_insn code,
329 const aarch64_inst *inst ATTRIBUTE_UNUSED)
330 {
331 /* R */
332 info->reglist.first_regno = extract_field (self->fields[0], code, 0);
333 /* len */
334 info->reglist.num_regs = extract_field (FLD_len, code, 0) + 1;
335 return 1;
336 }
337
338 /* Decode Rt and opcode fields of Vt in AdvSIMD load/store instructions. */
339 int
340 aarch64_ext_ldst_reglist (const aarch64_operand *self ATTRIBUTE_UNUSED,
341 aarch64_opnd_info *info, const aarch64_insn code,
342 const aarch64_inst *inst)
343 {
344 aarch64_insn value;
345 /* Number of elements in each structure to be loaded/stored. */
346 unsigned expected_num = get_opcode_dependent_value (inst->opcode);
347
348 struct
349 {
350 unsigned is_reserved;
351 unsigned num_regs;
352 unsigned num_elements;
353 } data [] =
354 { {0, 4, 4},
355 {1, 4, 4},
356 {0, 4, 1},
357 {0, 4, 2},
358 {0, 3, 3},
359 {1, 3, 3},
360 {0, 3, 1},
361 {0, 1, 1},
362 {0, 2, 2},
363 {1, 2, 2},
364 {0, 2, 1},
365 };
366
367 /* Rt */
368 info->reglist.first_regno = extract_field (FLD_Rt, code, 0);
369 /* opcode */
370 value = extract_field (FLD_opcode, code, 0);
371 if (expected_num != data[value].num_elements || data[value].is_reserved)
372 return 0;
373 info->reglist.num_regs = data[value].num_regs;
374
375 return 1;
376 }
377
378 /* Decode Rt and S fields of Vt in AdvSIMD load single structure to all
379 lanes instructions. */
380 int
381 aarch64_ext_ldst_reglist_r (const aarch64_operand *self ATTRIBUTE_UNUSED,
382 aarch64_opnd_info *info, const aarch64_insn code,
383 const aarch64_inst *inst)
384 {
385 aarch64_insn value;
386
387 /* Rt */
388 info->reglist.first_regno = extract_field (FLD_Rt, code, 0);
389 /* S */
390 value = extract_field (FLD_S, code, 0);
391
392 /* Number of registers is equal to the number of elements in
393 each structure to be loaded/stored. */
394 info->reglist.num_regs = get_opcode_dependent_value (inst->opcode);
395 assert (info->reglist.num_regs >= 1 && info->reglist.num_regs <= 4);
396
397 /* Except when it is LD1R. */
398 if (info->reglist.num_regs == 1 && value == (aarch64_insn) 1)
399 info->reglist.num_regs = 2;
400
401 return 1;
402 }
403
404 /* Decode Q, opcode<2:1>, S, size and Rt fields of Vt in AdvSIMD
405 load/store single element instructions. */
406 int
407 aarch64_ext_ldst_elemlist (const aarch64_operand *self ATTRIBUTE_UNUSED,
408 aarch64_opnd_info *info, const aarch64_insn code,
409 const aarch64_inst *inst ATTRIBUTE_UNUSED)
410 {
411 aarch64_field field = {0, 0};
412 aarch64_insn QSsize; /* fields Q:S:size. */
413 aarch64_insn opcodeh2; /* opcode<2:1> */
414
415 /* Rt */
416 info->reglist.first_regno = extract_field (FLD_Rt, code, 0);
417
418 /* Decode the index, opcode<2:1> and size. */
419 gen_sub_field (FLD_asisdlso_opcode, 1, 2, &field);
420 opcodeh2 = extract_field_2 (&field, code, 0);
421 QSsize = extract_fields (code, 0, 3, FLD_Q, FLD_S, FLD_vldst_size);
422 switch (opcodeh2)
423 {
424 case 0x0:
425 info->qualifier = AARCH64_OPND_QLF_S_B;
426 /* Index encoded in "Q:S:size". */
427 info->reglist.index = QSsize;
428 break;
429 case 0x1:
430 info->qualifier = AARCH64_OPND_QLF_S_H;
431 /* Index encoded in "Q:S:size<1>". */
432 info->reglist.index = QSsize >> 1;
433 break;
434 case 0x2:
435 if ((QSsize & 0x1) == 0)
436 {
437 info->qualifier = AARCH64_OPND_QLF_S_S;
438 /* Index encoded in "Q:S". */
439 info->reglist.index = QSsize >> 2;
440 }
441 else
442 {
443 info->qualifier = AARCH64_OPND_QLF_S_D;
444 /* Index encoded in "Q". */
445 info->reglist.index = QSsize >> 3;
446 if (extract_field (FLD_S, code, 0))
447 /* UND */
448 return 0;
449 }
450 break;
451 default:
452 return 0;
453 }
454
455 info->reglist.has_index = 1;
456 info->reglist.num_regs = 0;
457 /* Number of registers is equal to the number of elements in
458 each structure to be loaded/stored. */
459 info->reglist.num_regs = get_opcode_dependent_value (inst->opcode);
460 assert (info->reglist.num_regs >= 1 && info->reglist.num_regs <= 4);
461
462 return 1;
463 }
464
465 /* Decode fields immh:immb and/or Q for e.g.
466 SSHR <Vd>.<T>, <Vn>.<T>, #<shift>
467 or SSHR <V><d>, <V><n>, #<shift>. */
468
469 int
470 aarch64_ext_advsimd_imm_shift (const aarch64_operand *self ATTRIBUTE_UNUSED,
471 aarch64_opnd_info *info, const aarch64_insn code,
472 const aarch64_inst *inst)
473 {
474 int pos;
475 aarch64_insn Q, imm, immh;
476 enum aarch64_insn_class iclass = inst->opcode->iclass;
477
478 immh = extract_field (FLD_immh, code, 0);
479 if (immh == 0)
480 return 0;
481 imm = extract_fields (code, 0, 2, FLD_immh, FLD_immb);
482 pos = 4;
483 /* Get highest set bit in immh. */
484 while (--pos >= 0 && (immh & 0x8) == 0)
485 immh <<= 1;
486
487 assert ((iclass == asimdshf || iclass == asisdshf)
488 && (info->type == AARCH64_OPND_IMM_VLSR
489 || info->type == AARCH64_OPND_IMM_VLSL));
490
491 if (iclass == asimdshf)
492 {
493 Q = extract_field (FLD_Q, code, 0);
494 /* immh Q <T>
495 0000 x SEE AdvSIMD modified immediate
496 0001 0 8B
497 0001 1 16B
498 001x 0 4H
499 001x 1 8H
500 01xx 0 2S
501 01xx 1 4S
502 1xxx 0 RESERVED
503 1xxx 1 2D */
504 info->qualifier =
505 get_vreg_qualifier_from_value ((pos << 1) | (int) Q);
506 }
507 else
508 info->qualifier = get_sreg_qualifier_from_value (pos);
509
510 if (info->type == AARCH64_OPND_IMM_VLSR)
511 /* immh <shift>
512 0000 SEE AdvSIMD modified immediate
513 0001 (16-UInt(immh:immb))
514 001x (32-UInt(immh:immb))
515 01xx (64-UInt(immh:immb))
516 1xxx (128-UInt(immh:immb)) */
517 info->imm.value = (16 << pos) - imm;
518 else
519 /* immh:immb
520 immh <shift>
521 0000 SEE AdvSIMD modified immediate
522 0001 (UInt(immh:immb)-8)
523 001x (UInt(immh:immb)-16)
524 01xx (UInt(immh:immb)-32)
525 1xxx (UInt(immh:immb)-64) */
526 info->imm.value = imm - (8 << pos);
527
528 return 1;
529 }
530
531 /* Decode shift immediate for e.g. sshr (imm). */
532 int
533 aarch64_ext_shll_imm (const aarch64_operand *self ATTRIBUTE_UNUSED,
534 aarch64_opnd_info *info, const aarch64_insn code,
535 const aarch64_inst *inst ATTRIBUTE_UNUSED)
536 {
537 int64_t imm;
538 aarch64_insn val;
539 val = extract_field (FLD_size, code, 0);
540 switch (val)
541 {
542 case 0: imm = 8; break;
543 case 1: imm = 16; break;
544 case 2: imm = 32; break;
545 default: return 0;
546 }
547 info->imm.value = imm;
548 return 1;
549 }
550
551 /* Decode imm for e.g. BFM <Wd>, <Wn>, #<immr>, #<imms>.
552 value in the field(s) will be extracted as unsigned immediate value. */
553 int
554 aarch64_ext_imm (const aarch64_operand *self, aarch64_opnd_info *info,
555 const aarch64_insn code,
556 const aarch64_inst *inst ATTRIBUTE_UNUSED)
557 {
558 int64_t imm;
559 /* Maximum of two fields to extract. */
560 assert (self->fields[2] == FLD_NIL);
561
562 if (self->fields[1] == FLD_NIL)
563 imm = extract_field (self->fields[0], code, 0);
564 else
565 /* e.g. TBZ b5:b40. */
566 imm = extract_fields (code, 0, 2, self->fields[0], self->fields[1]);
567
568 if (info->type == AARCH64_OPND_FPIMM)
569 info->imm.is_fp = 1;
570
571 if (operand_need_sign_extension (self))
572 imm = sign_extend (imm, get_operand_fields_width (self) - 1);
573
574 if (operand_need_shift_by_two (self))
575 imm <<= 2;
576
577 if (info->type == AARCH64_OPND_ADDR_ADRP)
578 imm <<= 12;
579
580 info->imm.value = imm;
581 return 1;
582 }
583
584 /* Decode imm and its shifter for e.g. MOVZ <Wd>, #<imm16>{, LSL #<shift>}. */
585 int
586 aarch64_ext_imm_half (const aarch64_operand *self, aarch64_opnd_info *info,
587 const aarch64_insn code,
588 const aarch64_inst *inst ATTRIBUTE_UNUSED)
589 {
590 aarch64_ext_imm (self, info, code, inst);
591 info->shifter.kind = AARCH64_MOD_LSL;
592 info->shifter.amount = extract_field (FLD_hw, code, 0) << 4;
593 return 1;
594 }
595
596 /* Decode cmode and "a:b:c:d:e:f:g:h" for e.g.
597 MOVI <Vd>.<T>, #<imm8> {, LSL #<amount>}. */
598 int
599 aarch64_ext_advsimd_imm_modified (const aarch64_operand *self ATTRIBUTE_UNUSED,
600 aarch64_opnd_info *info,
601 const aarch64_insn code,
602 const aarch64_inst *inst ATTRIBUTE_UNUSED)
603 {
604 uint64_t imm;
605 enum aarch64_opnd_qualifier opnd0_qualifier = inst->operands[0].qualifier;
606 aarch64_field field = {0, 0};
607
608 assert (info->idx == 1);
609
610 if (info->type == AARCH64_OPND_SIMD_FPIMM)
611 info->imm.is_fp = 1;
612
613 /* a:b:c:d:e:f:g:h */
614 imm = extract_fields (code, 0, 2, FLD_abc, FLD_defgh);
615 if (!info->imm.is_fp && aarch64_get_qualifier_esize (opnd0_qualifier) == 8)
616 {
617 /* Either MOVI <Dd>, #<imm>
618 or MOVI <Vd>.2D, #<imm>.
619 <imm> is a 64-bit immediate
620 'aaaaaaaabbbbbbbbccccccccddddddddeeeeeeeeffffffffgggggggghhhhhhhh',
621 encoded in "a:b:c:d:e:f:g:h". */
622 int i;
623 unsigned abcdefgh = imm;
624 for (imm = 0ull, i = 0; i < 8; i++)
625 if (((abcdefgh >> i) & 0x1) != 0)
626 imm |= 0xffull << (8 * i);
627 }
628 info->imm.value = imm;
629
630 /* cmode */
631 info->qualifier = get_expected_qualifier (inst, info->idx);
632 switch (info->qualifier)
633 {
634 case AARCH64_OPND_QLF_NIL:
635 /* no shift */
636 info->shifter.kind = AARCH64_MOD_NONE;
637 return 1;
638 case AARCH64_OPND_QLF_LSL:
639 /* shift zeros */
640 info->shifter.kind = AARCH64_MOD_LSL;
641 switch (aarch64_get_qualifier_esize (opnd0_qualifier))
642 {
643 case 4: gen_sub_field (FLD_cmode, 1, 2, &field); break; /* per word */
644 case 2: gen_sub_field (FLD_cmode, 1, 1, &field); break; /* per half */
645 case 1: gen_sub_field (FLD_cmode, 1, 0, &field); break; /* per byte */
646 default: assert (0); return 0;
647 }
648 /* 00: 0; 01: 8; 10:16; 11:24. */
649 info->shifter.amount = extract_field_2 (&field, code, 0) << 3;
650 break;
651 case AARCH64_OPND_QLF_MSL:
652 /* shift ones */
653 info->shifter.kind = AARCH64_MOD_MSL;
654 gen_sub_field (FLD_cmode, 0, 1, &field); /* per word */
655 info->shifter.amount = extract_field_2 (&field, code, 0) ? 16 : 8;
656 break;
657 default:
658 assert (0);
659 return 0;
660 }
661
662 return 1;
663 }
664
665 /* Decode scale for e.g. SCVTF <Dd>, <Wn>, #<fbits>. */
666 int
667 aarch64_ext_fbits (const aarch64_operand *self ATTRIBUTE_UNUSED,
668 aarch64_opnd_info *info, const aarch64_insn code,
669 const aarch64_inst *inst ATTRIBUTE_UNUSED)
670 {
671 info->imm.value = 64- extract_field (FLD_scale, code, 0);
672 return 1;
673 }
674
675 /* Decode arithmetic immediate for e.g.
676 SUBS <Wd>, <Wn|WSP>, #<imm> {, <shift>}. */
677 int
678 aarch64_ext_aimm (const aarch64_operand *self ATTRIBUTE_UNUSED,
679 aarch64_opnd_info *info, const aarch64_insn code,
680 const aarch64_inst *inst ATTRIBUTE_UNUSED)
681 {
682 aarch64_insn value;
683
684 info->shifter.kind = AARCH64_MOD_LSL;
685 /* shift */
686 value = extract_field (FLD_shift, code, 0);
687 if (value >= 2)
688 return 0;
689 info->shifter.amount = value ? 12 : 0;
690 /* imm12 (unsigned) */
691 info->imm.value = extract_field (FLD_imm12, code, 0);
692
693 return 1;
694 }
695
696 /* Decode logical immediate for e.g. ORR <Wd|WSP>, <Wn>, #<imm>. */
697
698 int
699 aarch64_ext_limm (const aarch64_operand *self ATTRIBUTE_UNUSED,
700 aarch64_opnd_info *info, const aarch64_insn code,
701 const aarch64_inst *inst ATTRIBUTE_UNUSED)
702 {
703 uint64_t imm, mask;
704 uint32_t sf;
705 uint32_t N, R, S;
706 unsigned simd_size;
707 aarch64_insn value;
708
709 value = extract_fields (code, 0, 3, FLD_N, FLD_immr, FLD_imms);
710 assert (inst->operands[0].qualifier == AARCH64_OPND_QLF_W
711 || inst->operands[0].qualifier == AARCH64_OPND_QLF_X);
712 sf = aarch64_get_qualifier_esize (inst->operands[0].qualifier) != 4;
713
714 /* value is N:immr:imms. */
715 S = value & 0x3f;
716 R = (value >> 6) & 0x3f;
717 N = (value >> 12) & 0x1;
718
719 if (sf == 0 && N == 1)
720 return 0;
721
722 /* The immediate value is S+1 bits to 1, left rotated by SIMDsize - R
723 (in other words, right rotated by R), then replicated. */
724 if (N != 0)
725 {
726 simd_size = 64;
727 mask = 0xffffffffffffffffull;
728 }
729 else
730 {
731 switch (S)
732 {
733 case 0x00 ... 0x1f: /* 0xxxxx */ simd_size = 32; break;
734 case 0x20 ... 0x2f: /* 10xxxx */ simd_size = 16; S &= 0xf; break;
735 case 0x30 ... 0x37: /* 110xxx */ simd_size = 8; S &= 0x7; break;
736 case 0x38 ... 0x3b: /* 1110xx */ simd_size = 4; S &= 0x3; break;
737 case 0x3c ... 0x3d: /* 11110x */ simd_size = 2; S &= 0x1; break;
738 default: return 0;
739 }
740 mask = (1ull << simd_size) - 1;
741 /* Top bits are IGNORED. */
742 R &= simd_size - 1;
743 }
744 /* NOTE: if S = simd_size - 1 we get 0xf..f which is rejected. */
745 if (S == simd_size - 1)
746 return 0;
747 /* S+1 consecutive bits to 1. */
748 /* NOTE: S can't be 63 due to detection above. */
749 imm = (1ull << (S + 1)) - 1;
750 /* Rotate to the left by simd_size - R. */
751 if (R != 0)
752 imm = ((imm << (simd_size - R)) & mask) | (imm >> R);
753 /* Replicate the value according to SIMD size. */
754 switch (simd_size)
755 {
756 case 2: imm = (imm << 2) | imm;
757 case 4: imm = (imm << 4) | imm;
758 case 8: imm = (imm << 8) | imm;
759 case 16: imm = (imm << 16) | imm;
760 case 32: imm = (imm << 32) | imm;
761 case 64: break;
762 default: assert (0); return 0;
763 }
764
765 info->imm.value = sf ? imm : imm & 0xffffffff;
766
767 return 1;
768 }
769
770 /* Decode Ft for e.g. STR <Qt>, [<Xn|SP>, <R><m>{, <extend> {<amount>}}]
771 or LDP <Qt1>, <Qt2>, [<Xn|SP>], #<imm>. */
772 int
773 aarch64_ext_ft (const aarch64_operand *self ATTRIBUTE_UNUSED,
774 aarch64_opnd_info *info,
775 const aarch64_insn code, const aarch64_inst *inst)
776 {
777 aarch64_insn value;
778
779 /* Rt */
780 info->reg.regno = extract_field (FLD_Rt, code, 0);
781
782 /* size */
783 value = extract_field (FLD_ldst_size, code, 0);
784 if (inst->opcode->iclass == ldstpair_indexed
785 || inst->opcode->iclass == ldstnapair_offs
786 || inst->opcode->iclass == ldstpair_off
787 || inst->opcode->iclass == loadlit)
788 {
789 enum aarch64_opnd_qualifier qualifier;
790 switch (value)
791 {
792 case 0: qualifier = AARCH64_OPND_QLF_S_S; break;
793 case 1: qualifier = AARCH64_OPND_QLF_S_D; break;
794 case 2: qualifier = AARCH64_OPND_QLF_S_Q; break;
795 default: return 0;
796 }
797 info->qualifier = qualifier;
798 }
799 else
800 {
801 /* opc1:size */
802 value = extract_fields (code, 0, 2, FLD_opc1, FLD_ldst_size);
803 if (value > 0x4)
804 return 0;
805 info->qualifier = get_sreg_qualifier_from_value (value);
806 }
807
808 return 1;
809 }
810
811 /* Decode the address operand for e.g. STXRB <Ws>, <Wt>, [<Xn|SP>{,#0}]. */
812 int
813 aarch64_ext_addr_simple (const aarch64_operand *self ATTRIBUTE_UNUSED,
814 aarch64_opnd_info *info,
815 aarch64_insn code,
816 const aarch64_inst *inst ATTRIBUTE_UNUSED)
817 {
818 /* Rn */
819 info->addr.base_regno = extract_field (FLD_Rn, code, 0);
820 return 1;
821 }
822
823 /* Decode the address operand for e.g.
824 STR <Qt>, [<Xn|SP>, <R><m>{, <extend> {<amount>}}]. */
825 int
826 aarch64_ext_addr_regoff (const aarch64_operand *self ATTRIBUTE_UNUSED,
827 aarch64_opnd_info *info,
828 aarch64_insn code, const aarch64_inst *inst)
829 {
830 aarch64_insn S, value;
831
832 /* Rn */
833 info->addr.base_regno = extract_field (FLD_Rn, code, 0);
834 /* Rm */
835 info->addr.offset.regno = extract_field (FLD_Rm, code, 0);
836 /* option */
837 value = extract_field (FLD_option, code, 0);
838 info->shifter.kind =
839 aarch64_get_operand_modifier_from_value (value, TRUE /* extend_p */);
840 /* Fix-up the shifter kind; although the table-driven approach is
841 efficient, it is slightly inflexible, thus needing this fix-up. */
842 if (info->shifter.kind == AARCH64_MOD_UXTX)
843 info->shifter.kind = AARCH64_MOD_LSL;
844 /* S */
845 S = extract_field (FLD_S, code, 0);
846 if (S == 0)
847 {
848 info->shifter.amount = 0;
849 info->shifter.amount_present = 0;
850 }
851 else
852 {
853 int size;
854 /* Need information in other operand(s) to help achieve the decoding
855 from 'S' field. */
856 info->qualifier = get_expected_qualifier (inst, info->idx);
857 /* Get the size of the data element that is accessed, which may be
858 different from that of the source register size, e.g. in strb/ldrb. */
859 size = aarch64_get_qualifier_esize (info->qualifier);
860 info->shifter.amount = get_logsz (size);
861 info->shifter.amount_present = 1;
862 }
863
864 return 1;
865 }
866
867 /* Decode the address operand for e.g. LDRSW <Xt>, [<Xn|SP>], #<simm>. */
868 int
869 aarch64_ext_addr_simm (const aarch64_operand *self, aarch64_opnd_info *info,
870 aarch64_insn code, const aarch64_inst *inst)
871 {
872 aarch64_insn imm;
873 info->qualifier = get_expected_qualifier (inst, info->idx);
874
875 /* Rn */
876 info->addr.base_regno = extract_field (FLD_Rn, code, 0);
877 /* simm (imm9 or imm7) */
878 imm = extract_field (self->fields[0], code, 0);
879 info->addr.offset.imm = sign_extend (imm, fields[self->fields[0]].width - 1);
880 if (self->fields[0] == FLD_imm7)
881 /* scaled immediate in ld/st pair instructions. */
882 info->addr.offset.imm *= aarch64_get_qualifier_esize (info->qualifier);
883 /* qualifier */
884 if (inst->opcode->iclass == ldst_unscaled
885 || inst->opcode->iclass == ldstnapair_offs
886 || inst->opcode->iclass == ldstpair_off
887 || inst->opcode->iclass == ldst_unpriv)
888 info->addr.writeback = 0;
889 else
890 {
891 /* pre/post- index */
892 info->addr.writeback = 1;
893 if (extract_field (self->fields[1], code, 0) == 1)
894 info->addr.preind = 1;
895 else
896 info->addr.postind = 1;
897 }
898
899 return 1;
900 }
901
902 /* Decode the address operand for e.g. LDRSW <Xt>, [<Xn|SP>{, #<simm>}]. */
903 int
904 aarch64_ext_addr_uimm12 (const aarch64_operand *self, aarch64_opnd_info *info,
905 aarch64_insn code,
906 const aarch64_inst *inst ATTRIBUTE_UNUSED)
907 {
908 int shift;
909 info->qualifier = get_expected_qualifier (inst, info->idx);
910 shift = get_logsz (aarch64_get_qualifier_esize (info->qualifier));
911 /* Rn */
912 info->addr.base_regno = extract_field (self->fields[0], code, 0);
913 /* uimm12 */
914 info->addr.offset.imm = extract_field (self->fields[1], code, 0) << shift;
915 return 1;
916 }
917
918 /* Decode the address operand for e.g.
919 LD1 {<Vt>.<T>, <Vt2>.<T>, <Vt3>.<T>}, [<Xn|SP>], <Xm|#<amount>>. */
920 int
921 aarch64_ext_simd_addr_post (const aarch64_operand *self ATTRIBUTE_UNUSED,
922 aarch64_opnd_info *info,
923 aarch64_insn code, const aarch64_inst *inst)
924 {
925 /* The opcode dependent area stores the number of elements in
926 each structure to be loaded/stored. */
927 int is_ld1r = get_opcode_dependent_value (inst->opcode) == 1;
928
929 /* Rn */
930 info->addr.base_regno = extract_field (FLD_Rn, code, 0);
931 /* Rm | #<amount> */
932 info->addr.offset.regno = extract_field (FLD_Rm, code, 0);
933 if (info->addr.offset.regno == 31)
934 {
935 if (inst->opcode->operands[0] == AARCH64_OPND_LVt_AL)
936 /* Special handling of loading single structure to all lane. */
937 info->addr.offset.imm = (is_ld1r ? 1
938 : inst->operands[0].reglist.num_regs)
939 * aarch64_get_qualifier_esize (inst->operands[0].qualifier);
940 else
941 info->addr.offset.imm = inst->operands[0].reglist.num_regs
942 * aarch64_get_qualifier_esize (inst->operands[0].qualifier)
943 * aarch64_get_qualifier_nelem (inst->operands[0].qualifier);
944 }
945 else
946 info->addr.offset.is_reg = 1;
947 info->addr.writeback = 1;
948
949 return 1;
950 }
951
952 /* Decode the condition operand for e.g. CSEL <Xd>, <Xn>, <Xm>, <cond>. */
953 int
954 aarch64_ext_cond (const aarch64_operand *self ATTRIBUTE_UNUSED,
955 aarch64_opnd_info *info,
956 aarch64_insn code, const aarch64_inst *inst ATTRIBUTE_UNUSED)
957 {
958 aarch64_insn value;
959 /* cond */
960 value = extract_field (FLD_cond, code, 0);
961 info->cond = get_cond_from_value (value);
962 return 1;
963 }
964
965 /* Decode the system register operand for e.g. MRS <Xt>, <systemreg>. */
966 int
967 aarch64_ext_sysreg (const aarch64_operand *self ATTRIBUTE_UNUSED,
968 aarch64_opnd_info *info,
969 aarch64_insn code,
970 const aarch64_inst *inst ATTRIBUTE_UNUSED)
971 {
972 /* op0:op1:CRn:CRm:op2 */
973 info->sysreg = extract_fields (code, 0, 5, FLD_op0, FLD_op1, FLD_CRn,
974 FLD_CRm, FLD_op2);
975 return 1;
976 }
977
978 /* Decode the PSTATE field operand for e.g. MSR <pstatefield>, #<imm>. */
979 int
980 aarch64_ext_pstatefield (const aarch64_operand *self ATTRIBUTE_UNUSED,
981 aarch64_opnd_info *info, aarch64_insn code,
982 const aarch64_inst *inst ATTRIBUTE_UNUSED)
983 {
984 int i;
985 /* op1:op2 */
986 info->pstatefield = extract_fields (code, 0, 2, FLD_op1, FLD_op2);
987 for (i = 0; aarch64_pstatefields[i].name != NULL; ++i)
988 if (aarch64_pstatefields[i].value == (aarch64_insn)info->pstatefield)
989 return 1;
990 /* Reserved value in <pstatefield>. */
991 return 0;
992 }
993
994 /* Decode the system instruction op operand for e.g. AT <at_op>, <Xt>. */
995 int
996 aarch64_ext_sysins_op (const aarch64_operand *self ATTRIBUTE_UNUSED,
997 aarch64_opnd_info *info,
998 aarch64_insn code,
999 const aarch64_inst *inst ATTRIBUTE_UNUSED)
1000 {
1001 int i;
1002 aarch64_insn value;
1003 const aarch64_sys_ins_reg *sysins_ops;
1004 /* op0:op1:CRn:CRm:op2 */
1005 value = extract_fields (code, 0, 5,
1006 FLD_op0, FLD_op1, FLD_CRn,
1007 FLD_CRm, FLD_op2);
1008
1009 switch (info->type)
1010 {
1011 case AARCH64_OPND_SYSREG_AT: sysins_ops = aarch64_sys_regs_at; break;
1012 case AARCH64_OPND_SYSREG_DC: sysins_ops = aarch64_sys_regs_dc; break;
1013 case AARCH64_OPND_SYSREG_IC: sysins_ops = aarch64_sys_regs_ic; break;
1014 case AARCH64_OPND_SYSREG_TLBI: sysins_ops = aarch64_sys_regs_tlbi; break;
1015 default: assert (0); return 0;
1016 }
1017
1018 for (i = 0; sysins_ops[i].template != NULL; ++i)
1019 if (sysins_ops[i].value == value)
1020 {
1021 info->sysins_op = sysins_ops + i;
1022 DEBUG_TRACE ("%s found value: %x, has_xt: %d, i: %d.",
1023 info->sysins_op->template,
1024 (unsigned)info->sysins_op->value,
1025 info->sysins_op->has_xt, i);
1026 return 1;
1027 }
1028
1029 return 0;
1030 }
1031
1032 /* Decode the memory barrier option operand for e.g. DMB <option>|#<imm>. */
1033
1034 int
1035 aarch64_ext_barrier (const aarch64_operand *self ATTRIBUTE_UNUSED,
1036 aarch64_opnd_info *info,
1037 aarch64_insn code,
1038 const aarch64_inst *inst ATTRIBUTE_UNUSED)
1039 {
1040 /* CRm */
1041 info->barrier = aarch64_barrier_options + extract_field (FLD_CRm, code, 0);
1042 return 1;
1043 }
1044
1045 /* Decode the prefetch operation option operand for e.g.
1046 PRFM <prfop>, [<Xn|SP>{, #<pimm>}]. */
1047
1048 int
1049 aarch64_ext_prfop (const aarch64_operand *self ATTRIBUTE_UNUSED,
1050 aarch64_opnd_info *info,
1051 aarch64_insn code, const aarch64_inst *inst ATTRIBUTE_UNUSED)
1052 {
1053 /* prfop in Rt */
1054 info->prfop = aarch64_prfops + extract_field (FLD_Rt, code, 0);
1055 return 1;
1056 }
1057
1058 /* Decode the extended register operand for e.g.
1059 STR <Qt>, [<Xn|SP>, <R><m>{, <extend> {<amount>}}]. */
1060 int
1061 aarch64_ext_reg_extended (const aarch64_operand *self ATTRIBUTE_UNUSED,
1062 aarch64_opnd_info *info,
1063 aarch64_insn code,
1064 const aarch64_inst *inst ATTRIBUTE_UNUSED)
1065 {
1066 aarch64_insn value;
1067
1068 /* Rm */
1069 info->reg.regno = extract_field (FLD_Rm, code, 0);
1070 /* option */
1071 value = extract_field (FLD_option, code, 0);
1072 info->shifter.kind =
1073 aarch64_get_operand_modifier_from_value (value, TRUE /* extend_p */);
1074 /* imm3 */
1075 info->shifter.amount = extract_field (FLD_imm3, code, 0);
1076
1077 /* This makes the constraint checking happy. */
1078 info->shifter.operator_present = 1;
1079
1080 /* Assume inst->operands[0].qualifier has been resolved. */
1081 assert (inst->operands[0].qualifier != AARCH64_OPND_QLF_NIL);
1082 info->qualifier = AARCH64_OPND_QLF_W;
1083 if (inst->operands[0].qualifier == AARCH64_OPND_QLF_X
1084 && (info->shifter.kind == AARCH64_MOD_UXTX
1085 || info->shifter.kind == AARCH64_MOD_SXTX))
1086 info->qualifier = AARCH64_OPND_QLF_X;
1087
1088 return 1;
1089 }
1090
1091 /* Decode the shifted register operand for e.g.
1092 SUBS <Xd>, <Xn>, <Xm> {, <shift> #<amount>}. */
1093 int
1094 aarch64_ext_reg_shifted (const aarch64_operand *self ATTRIBUTE_UNUSED,
1095 aarch64_opnd_info *info,
1096 aarch64_insn code,
1097 const aarch64_inst *inst ATTRIBUTE_UNUSED)
1098 {
1099 aarch64_insn value;
1100
1101 /* Rm */
1102 info->reg.regno = extract_field (FLD_Rm, code, 0);
1103 /* shift */
1104 value = extract_field (FLD_shift, code, 0);
1105 info->shifter.kind =
1106 aarch64_get_operand_modifier_from_value (value, FALSE /* extend_p */);
1107 if (info->shifter.kind == AARCH64_MOD_ROR
1108 && inst->opcode->iclass != log_shift)
1109 /* ROR is not available for the shifted register operand in arithmetic
1110 instructions. */
1111 return 0;
1112 /* imm6 */
1113 info->shifter.amount = extract_field (FLD_imm6, code, 0);
1114
1115 /* This makes the constraint checking happy. */
1116 info->shifter.operator_present = 1;
1117
1118 return 1;
1119 }
1120 \f
1121 /* Bitfields that are commonly used to encode certain operands' information
1122 may be partially used as part of the base opcode in some instructions.
1123 For example, the bit 1 of the field 'size' in
1124 FCVTXN <Vb><d>, <Va><n>
1125 is actually part of the base opcode, while only size<0> is available
1126 for encoding the register type. Another example is the AdvSIMD
1127 instruction ORR (register), in which the field 'size' is also used for
1128 the base opcode, leaving only the field 'Q' available to encode the
1129 vector register arrangement specifier '8B' or '16B'.
1130
1131 This function tries to deduce the qualifier from the value of partially
1132 constrained field(s). Given the VALUE of such a field or fields, the
1133 qualifiers CANDIDATES and the MASK (indicating which bits are valid for
1134 operand encoding), the function returns the matching qualifier or
1135 AARCH64_OPND_QLF_NIL if nothing matches.
1136
1137 N.B. CANDIDATES is a group of possible qualifiers that are valid for
1138 one operand; it has a maximum of AARCH64_MAX_QLF_SEQ_NUM qualifiers and
1139 may end with AARCH64_OPND_QLF_NIL. */
1140
1141 static enum aarch64_opnd_qualifier
1142 get_qualifier_from_partial_encoding (aarch64_insn value,
1143 const enum aarch64_opnd_qualifier* \
1144 candidates,
1145 aarch64_insn mask)
1146 {
1147 int i;
1148 DEBUG_TRACE ("enter with value: %d, mask: %d", (int)value, (int)mask);
1149 for (i = 0; i < AARCH64_MAX_QLF_SEQ_NUM; ++i)
1150 {
1151 aarch64_insn standard_value;
1152 if (candidates[i] == AARCH64_OPND_QLF_NIL)
1153 break;
1154 standard_value = aarch64_get_qualifier_standard_value (candidates[i]);
1155 if ((standard_value & mask) == (value & mask))
1156 return candidates[i];
1157 }
1158 return AARCH64_OPND_QLF_NIL;
1159 }
1160
1161 /* Given a list of qualifier sequences, return all possible valid qualifiers
1162 for operand IDX in QUALIFIERS.
1163 Assume QUALIFIERS is an array whose length is large enough. */
1164
1165 static void
1166 get_operand_possible_qualifiers (int idx,
1167 const aarch64_opnd_qualifier_seq_t *list,
1168 enum aarch64_opnd_qualifier *qualifiers)
1169 {
1170 int i;
1171 for (i = 0; i < AARCH64_MAX_QLF_SEQ_NUM; ++i)
1172 if ((qualifiers[i] = list[i][idx]) == AARCH64_OPND_QLF_NIL)
1173 break;
1174 }
1175
1176 /* Decode the size Q field for e.g. SHADD.
1177 We tag one operand with the qualifer according to the code;
1178 whether the qualifier is valid for this opcode or not, it is the
1179 duty of the semantic checking. */
1180
1181 static int
1182 decode_sizeq (aarch64_inst *inst)
1183 {
1184 int idx;
1185 enum aarch64_opnd_qualifier qualifier;
1186 aarch64_insn code;
1187 aarch64_insn value, mask;
1188 enum aarch64_field_kind fld_sz;
1189 enum aarch64_opnd_qualifier candidates[AARCH64_MAX_QLF_SEQ_NUM];
1190
1191 if (inst->opcode->iclass == asisdlse
1192 || inst->opcode->iclass == asisdlsep
1193 || inst->opcode->iclass == asisdlso
1194 || inst->opcode->iclass == asisdlsop)
1195 fld_sz = FLD_vldst_size;
1196 else
1197 fld_sz = FLD_size;
1198
1199 code = inst->value;
1200 value = extract_fields (code, inst->opcode->mask, 2, fld_sz, FLD_Q);
1201 /* Obtain the info that which bits of fields Q and size are actually
1202 available for operand encoding. Opcodes like FMAXNM and FMLA have
1203 size[1] unavailable. */
1204 mask = extract_fields (~inst->opcode->mask, 0, 2, fld_sz, FLD_Q);
1205
1206 /* The index of the operand we are going to tag a qualifier and the qualifer
1207 itself are reasoned from the value of the size and Q fields and the
1208 possible valid qualifier lists. */
1209 idx = aarch64_select_operand_for_sizeq_field_coding (inst->opcode);
1210 DEBUG_TRACE ("key idx: %d", idx);
1211
1212 /* For most related instruciton, size:Q are fully available for operand
1213 encoding. */
1214 if (mask == 0x7)
1215 {
1216 inst->operands[idx].qualifier = get_vreg_qualifier_from_value (value);
1217 return 1;
1218 }
1219
1220 get_operand_possible_qualifiers (idx, inst->opcode->qualifiers_list,
1221 candidates);
1222 #ifdef DEBUG_AARCH64
1223 if (debug_dump)
1224 {
1225 int i;
1226 for (i = 0; candidates[i] != AARCH64_OPND_QLF_NIL
1227 && i < AARCH64_MAX_QLF_SEQ_NUM; ++i)
1228 DEBUG_TRACE ("qualifier %d: %s", i,
1229 aarch64_get_qualifier_name(candidates[i]));
1230 DEBUG_TRACE ("%d, %d", (int)value, (int)mask);
1231 }
1232 #endif /* DEBUG_AARCH64 */
1233
1234 qualifier = get_qualifier_from_partial_encoding (value, candidates, mask);
1235
1236 if (qualifier == AARCH64_OPND_QLF_NIL)
1237 return 0;
1238
1239 inst->operands[idx].qualifier = qualifier;
1240 return 1;
1241 }
1242
1243 /* Decode size[0]:Q, i.e. bit 22 and bit 30, for
1244 e.g. FCVTN<Q> <Vd>.<Tb>, <Vn>.<Ta>. */
1245
1246 static int
1247 decode_asimd_fcvt (aarch64_inst *inst)
1248 {
1249 aarch64_field field = {0, 0};
1250 aarch64_insn value;
1251 enum aarch64_opnd_qualifier qualifier;
1252
1253 gen_sub_field (FLD_size, 0, 1, &field);
1254 value = extract_field_2 (&field, inst->value, 0);
1255 qualifier = value == 0 ? AARCH64_OPND_QLF_V_4S
1256 : AARCH64_OPND_QLF_V_2D;
1257 switch (inst->opcode->op)
1258 {
1259 case OP_FCVTN:
1260 case OP_FCVTN2:
1261 /* FCVTN<Q> <Vd>.<Tb>, <Vn>.<Ta>. */
1262 inst->operands[1].qualifier = qualifier;
1263 break;
1264 case OP_FCVTL:
1265 case OP_FCVTL2:
1266 /* FCVTL<Q> <Vd>.<Ta>, <Vn>.<Tb>. */
1267 inst->operands[0].qualifier = qualifier;
1268 break;
1269 default:
1270 assert (0);
1271 return 0;
1272 }
1273
1274 return 1;
1275 }
1276
1277 /* Decode size[0], i.e. bit 22, for
1278 e.g. FCVTXN <Vb><d>, <Va><n>. */
1279
1280 static int
1281 decode_asisd_fcvtxn (aarch64_inst *inst)
1282 {
1283 aarch64_field field = {0, 0};
1284 gen_sub_field (FLD_size, 0, 1, &field);
1285 if (!extract_field_2 (&field, inst->value, 0))
1286 return 0;
1287 inst->operands[0].qualifier = AARCH64_OPND_QLF_S_S;
1288 return 1;
1289 }
1290
1291 /* Decode the 'opc' field for e.g. FCVT <Dd>, <Sn>. */
1292 static int
1293 decode_fcvt (aarch64_inst *inst)
1294 {
1295 enum aarch64_opnd_qualifier qualifier;
1296 aarch64_insn value;
1297 const aarch64_field field = {15, 2};
1298
1299 /* opc dstsize */
1300 value = extract_field_2 (&field, inst->value, 0);
1301 switch (value)
1302 {
1303 case 0: qualifier = AARCH64_OPND_QLF_S_S; break;
1304 case 1: qualifier = AARCH64_OPND_QLF_S_D; break;
1305 case 3: qualifier = AARCH64_OPND_QLF_S_H; break;
1306 default: return 0;
1307 }
1308 inst->operands[0].qualifier = qualifier;
1309
1310 return 1;
1311 }
1312
1313 /* Do miscellaneous decodings that are not common enough to be driven by
1314 flags. */
1315
1316 static int
1317 do_misc_decoding (aarch64_inst *inst)
1318 {
1319 switch (inst->opcode->op)
1320 {
1321 case OP_FCVT:
1322 return decode_fcvt (inst);
1323 case OP_FCVTN:
1324 case OP_FCVTN2:
1325 case OP_FCVTL:
1326 case OP_FCVTL2:
1327 return decode_asimd_fcvt (inst);
1328 case OP_FCVTXN_S:
1329 return decode_asisd_fcvtxn (inst);
1330 default:
1331 return 0;
1332 }
1333 }
1334
1335 /* Opcodes that have fields shared by multiple operands are usually flagged
1336 with flags. In this function, we detect such flags, decode the related
1337 field(s) and store the information in one of the related operands. The
1338 'one' operand is not any operand but one of the operands that can
1339 accommadate all the information that has been decoded. */
1340
1341 static int
1342 do_special_decoding (aarch64_inst *inst)
1343 {
1344 int idx;
1345 aarch64_insn value;
1346 /* Condition for truly conditional executed instructions, e.g. b.cond. */
1347 if (inst->opcode->flags & F_COND)
1348 {
1349 value = extract_field (FLD_cond2, inst->value, 0);
1350 inst->cond = get_cond_from_value (value);
1351 }
1352 /* 'sf' field. */
1353 if (inst->opcode->flags & F_SF)
1354 {
1355 idx = select_operand_for_sf_field_coding (inst->opcode);
1356 value = extract_field (FLD_sf, inst->value, 0);
1357 inst->operands[idx].qualifier = get_greg_qualifier_from_value (value);
1358 if ((inst->opcode->flags & F_N)
1359 && extract_field (FLD_N, inst->value, 0) != value)
1360 return 0;
1361 }
1362 /* size:Q fields. */
1363 if (inst->opcode->flags & F_SIZEQ)
1364 return decode_sizeq (inst);
1365
1366 if (inst->opcode->flags & F_FPTYPE)
1367 {
1368 idx = select_operand_for_fptype_field_coding (inst->opcode);
1369 value = extract_field (FLD_type, inst->value, 0);
1370 switch (value)
1371 {
1372 case 0: inst->operands[idx].qualifier = AARCH64_OPND_QLF_S_S; break;
1373 case 1: inst->operands[idx].qualifier = AARCH64_OPND_QLF_S_D; break;
1374 case 3: inst->operands[idx].qualifier = AARCH64_OPND_QLF_S_H; break;
1375 default: return 0;
1376 }
1377 }
1378
1379 if (inst->opcode->flags & F_SSIZE)
1380 {
1381 /* N.B. some opcodes like FCMGT <V><d>, <V><n>, #0 have the size[1] as part
1382 of the base opcode. */
1383 aarch64_insn mask;
1384 enum aarch64_opnd_qualifier candidates[AARCH64_MAX_QLF_SEQ_NUM];
1385 idx = select_operand_for_scalar_size_field_coding (inst->opcode);
1386 value = extract_field (FLD_size, inst->value, inst->opcode->mask);
1387 mask = extract_field (FLD_size, ~inst->opcode->mask, 0);
1388 /* For most related instruciton, the 'size' field is fully available for
1389 operand encoding. */
1390 if (mask == 0x3)
1391 inst->operands[idx].qualifier = get_sreg_qualifier_from_value (value);
1392 else
1393 {
1394 get_operand_possible_qualifiers (idx, inst->opcode->qualifiers_list,
1395 candidates);
1396 inst->operands[idx].qualifier
1397 = get_qualifier_from_partial_encoding (value, candidates, mask);
1398 }
1399 }
1400
1401 if (inst->opcode->flags & F_T)
1402 {
1403 /* Num of consecutive '0's on the right side of imm5<3:0>. */
1404 int num = 0;
1405 unsigned val, Q;
1406 assert (aarch64_get_operand_class (inst->opcode->operands[0])
1407 == AARCH64_OPND_CLASS_SIMD_REG);
1408 /* imm5<3:0> q <t>
1409 0000 x reserved
1410 xxx1 0 8b
1411 xxx1 1 16b
1412 xx10 0 4h
1413 xx10 1 8h
1414 x100 0 2s
1415 x100 1 4s
1416 1000 0 reserved
1417 1000 1 2d */
1418 val = extract_field (FLD_imm5, inst->value, 0);
1419 while ((val & 0x1) == 0 && ++num <= 3)
1420 val >>= 1;
1421 if (num > 3)
1422 return 0;
1423 Q = (unsigned) extract_field (FLD_Q, inst->value, inst->opcode->mask);
1424 inst->operands[0].qualifier =
1425 get_vreg_qualifier_from_value ((num << 1) | Q);
1426 }
1427
1428 if (inst->opcode->flags & F_GPRSIZE_IN_Q)
1429 {
1430 /* Use Rt to encode in the case of e.g.
1431 STXP <Ws>, <Xt1>, <Xt2>, [<Xn|SP>{,#0}]. */
1432 idx = aarch64_operand_index (inst->opcode->operands, AARCH64_OPND_Rt);
1433 if (idx == -1)
1434 {
1435 /* Otherwise use the result operand, which has to be a integer
1436 register. */
1437 assert (aarch64_get_operand_class (inst->opcode->operands[0])
1438 == AARCH64_OPND_CLASS_INT_REG);
1439 idx = 0;
1440 }
1441 assert (idx == 0 || idx == 1);
1442 value = extract_field (FLD_Q, inst->value, 0);
1443 inst->operands[idx].qualifier = get_greg_qualifier_from_value (value);
1444 }
1445
1446 if (inst->opcode->flags & F_LDS_SIZE)
1447 {
1448 aarch64_field field = {0, 0};
1449 assert (aarch64_get_operand_class (inst->opcode->operands[0])
1450 == AARCH64_OPND_CLASS_INT_REG);
1451 gen_sub_field (FLD_opc, 0, 1, &field);
1452 value = extract_field_2 (&field, inst->value, 0);
1453 inst->operands[0].qualifier
1454 = value ? AARCH64_OPND_QLF_W : AARCH64_OPND_QLF_X;
1455 }
1456
1457 /* Miscellaneous decoding; done as the last step. */
1458 if (inst->opcode->flags & F_MISC)
1459 return do_misc_decoding (inst);
1460
1461 return 1;
1462 }
1463
1464 /* Converters converting a real opcode instruction to its alias form. */
1465
1466 /* ROR <Wd>, <Ws>, #<shift>
1467 is equivalent to:
1468 EXTR <Wd>, <Ws>, <Ws>, #<shift>. */
1469 static int
1470 convert_extr_to_ror (aarch64_inst *inst)
1471 {
1472 if (inst->operands[1].reg.regno == inst->operands[2].reg.regno)
1473 {
1474 copy_operand_info (inst, 2, 3);
1475 inst->operands[3].type = AARCH64_OPND_NIL;
1476 return 1;
1477 }
1478 return 0;
1479 }
1480
1481 /* Convert
1482 UBFM <Xd>, <Xn>, #<shift>, #63.
1483 to
1484 LSR <Xd>, <Xn>, #<shift>. */
1485 static int
1486 convert_bfm_to_sr (aarch64_inst *inst)
1487 {
1488 int64_t imms, val;
1489
1490 imms = inst->operands[3].imm.value;
1491 val = inst->operands[2].qualifier == AARCH64_OPND_QLF_imm_0_31 ? 31 : 63;
1492 if (imms == val)
1493 {
1494 inst->operands[3].type = AARCH64_OPND_NIL;
1495 return 1;
1496 }
1497
1498 return 0;
1499 }
1500
1501 /* Convert MOV to ORR. */
1502 static int
1503 convert_orr_to_mov (aarch64_inst *inst)
1504 {
1505 /* MOV <Vd>.<T>, <Vn>.<T>
1506 is equivalent to:
1507 ORR <Vd>.<T>, <Vn>.<T>, <Vn>.<T>. */
1508 if (inst->operands[1].reg.regno == inst->operands[2].reg.regno)
1509 {
1510 inst->operands[2].type = AARCH64_OPND_NIL;
1511 return 1;
1512 }
1513 return 0;
1514 }
1515
1516 /* When <imms> >= <immr>, the instruction written:
1517 SBFX <Xd>, <Xn>, #<lsb>, #<width>
1518 is equivalent to:
1519 SBFM <Xd>, <Xn>, #<lsb>, #(<lsb>+<width>-1). */
1520
1521 static int
1522 convert_bfm_to_bfx (aarch64_inst *inst)
1523 {
1524 int64_t immr, imms;
1525
1526 immr = inst->operands[2].imm.value;
1527 imms = inst->operands[3].imm.value;
1528 if (imms >= immr)
1529 {
1530 int64_t lsb = immr;
1531 inst->operands[2].imm.value = lsb;
1532 inst->operands[3].imm.value = imms + 1 - lsb;
1533 /* The two opcodes have different qualifiers for
1534 the immediate operands; reset to help the checking. */
1535 reset_operand_qualifier (inst, 2);
1536 reset_operand_qualifier (inst, 3);
1537 return 1;
1538 }
1539
1540 return 0;
1541 }
1542
1543 /* When <imms> < <immr>, the instruction written:
1544 SBFIZ <Xd>, <Xn>, #<lsb>, #<width>
1545 is equivalent to:
1546 SBFM <Xd>, <Xn>, #((64-<lsb>)&0x3f), #(<width>-1). */
1547
1548 static int
1549 convert_bfm_to_bfi (aarch64_inst *inst)
1550 {
1551 int64_t immr, imms, val;
1552
1553 immr = inst->operands[2].imm.value;
1554 imms = inst->operands[3].imm.value;
1555 val = inst->operands[2].qualifier == AARCH64_OPND_QLF_imm_0_31 ? 32 : 64;
1556 if (imms < immr)
1557 {
1558 inst->operands[2].imm.value = (val - immr) & (val - 1);
1559 inst->operands[3].imm.value = imms + 1;
1560 /* The two opcodes have different qualifiers for
1561 the immediate operands; reset to help the checking. */
1562 reset_operand_qualifier (inst, 2);
1563 reset_operand_qualifier (inst, 3);
1564 return 1;
1565 }
1566
1567 return 0;
1568 }
1569
1570 /* The instruction written:
1571 LSL <Xd>, <Xn>, #<shift>
1572 is equivalent to:
1573 UBFM <Xd>, <Xn>, #((64-<shift>)&0x3f), #(63-<shift>). */
1574
1575 static int
1576 convert_ubfm_to_lsl (aarch64_inst *inst)
1577 {
1578 int64_t immr = inst->operands[2].imm.value;
1579 int64_t imms = inst->operands[3].imm.value;
1580 int64_t val
1581 = inst->operands[2].qualifier == AARCH64_OPND_QLF_imm_0_31 ? 31 : 63;
1582
1583 if ((immr == 0 && imms == val) || immr == imms + 1)
1584 {
1585 inst->operands[3].type = AARCH64_OPND_NIL;
1586 inst->operands[2].imm.value = val - imms;
1587 return 1;
1588 }
1589
1590 return 0;
1591 }
1592
1593 /* CINC <Wd>, <Wn>, <cond>
1594 is equivalent to:
1595 CSINC <Wd>, <Wn>, <Wn>, invert(<cond>). */
1596
1597 static int
1598 convert_from_csel (aarch64_inst *inst)
1599 {
1600 if (inst->operands[1].reg.regno == inst->operands[2].reg.regno)
1601 {
1602 copy_operand_info (inst, 2, 3);
1603 inst->operands[2].cond = get_inverted_cond (inst->operands[3].cond);
1604 inst->operands[3].type = AARCH64_OPND_NIL;
1605 return 1;
1606 }
1607 return 0;
1608 }
1609
1610 /* CSET <Wd>, <cond>
1611 is equivalent to:
1612 CSINC <Wd>, WZR, WZR, invert(<cond>). */
1613
1614 static int
1615 convert_csinc_to_cset (aarch64_inst *inst)
1616 {
1617 if (inst->operands[1].reg.regno == 0x1f
1618 && inst->operands[2].reg.regno == 0x1f)
1619 {
1620 copy_operand_info (inst, 1, 3);
1621 inst->operands[1].cond = get_inverted_cond (inst->operands[3].cond);
1622 inst->operands[3].type = AARCH64_OPND_NIL;
1623 inst->operands[2].type = AARCH64_OPND_NIL;
1624 return 1;
1625 }
1626 return 0;
1627 }
1628
1629 /* MOV <Wd>, #<imm>
1630 is equivalent to:
1631 MOVZ <Wd>, #<imm16>, LSL #<shift>.
1632
1633 A disassembler may output ORR, MOVZ and MOVN as a MOV mnemonic, except when
1634 ORR has an immediate that could be generated by a MOVZ or MOVN instruction,
1635 or where a MOVN has an immediate that could be encoded by MOVZ, or where
1636 MOVZ/MOVN #0 have a shift amount other than LSL #0, in which case the
1637 machine-instruction mnemonic must be used. */
1638
1639 static int
1640 convert_movewide_to_mov (aarch64_inst *inst)
1641 {
1642 uint64_t value = inst->operands[1].imm.value;
1643 /* MOVZ/MOVN #0 have a shift amount other than LSL #0. */
1644 if (value == 0 && inst->operands[1].shifter.amount != 0)
1645 return 0;
1646 inst->operands[1].type = AARCH64_OPND_IMM_MOV;
1647 inst->operands[1].shifter.kind = AARCH64_MOD_NONE;
1648 value <<= inst->operands[1].shifter.amount;
1649 /* As an alias convertor, it has to be clear that the INST->OPCODE
1650 is the opcode of the real instruction. */
1651 if (inst->opcode->op == OP_MOVN)
1652 {
1653 int is32 = inst->operands[0].qualifier == AARCH64_OPND_QLF_W;
1654 value = ~value;
1655 /* A MOVN has an immediate that could be encoded by MOVZ. */
1656 if (aarch64_wide_constant_p (value, is32, NULL) == TRUE)
1657 return 0;
1658 }
1659 inst->operands[1].imm.value = value;
1660 inst->operands[1].shifter.amount = 0;
1661 return 1;
1662 }
1663
1664 /* MOV <Wd>, #<imm>
1665 is equivalent to:
1666 ORR <Wd>, WZR, #<imm>.
1667
1668 A disassembler may output ORR, MOVZ and MOVN as a MOV mnemonic, except when
1669 ORR has an immediate that could be generated by a MOVZ or MOVN instruction,
1670 or where a MOVN has an immediate that could be encoded by MOVZ, or where
1671 MOVZ/MOVN #0 have a shift amount other than LSL #0, in which case the
1672 machine-instruction mnemonic must be used. */
1673
1674 static int
1675 convert_movebitmask_to_mov (aarch64_inst *inst)
1676 {
1677 int is32;
1678 uint64_t value;
1679
1680 /* Should have been assured by the base opcode value. */
1681 assert (inst->operands[1].reg.regno == 0x1f);
1682 copy_operand_info (inst, 1, 2);
1683 is32 = inst->operands[0].qualifier == AARCH64_OPND_QLF_W;
1684 inst->operands[1].type = AARCH64_OPND_IMM_MOV;
1685 value = inst->operands[1].imm.value;
1686 /* ORR has an immediate that could be generated by a MOVZ or MOVN
1687 instruction. */
1688 if (inst->operands[0].reg.regno != 0x1f
1689 && (aarch64_wide_constant_p (value, is32, NULL) == TRUE
1690 || aarch64_wide_constant_p (~value, is32, NULL) == TRUE))
1691 return 0;
1692
1693 inst->operands[2].type = AARCH64_OPND_NIL;
1694 return 1;
1695 }
1696
1697 /* Some alias opcodes are disassembled by being converted from their real-form.
1698 N.B. INST->OPCODE is the real opcode rather than the alias. */
1699
1700 static int
1701 convert_to_alias (aarch64_inst *inst, const aarch64_opcode *alias)
1702 {
1703 switch (alias->op)
1704 {
1705 case OP_ASR_IMM:
1706 case OP_LSR_IMM:
1707 return convert_bfm_to_sr (inst);
1708 case OP_LSL_IMM:
1709 return convert_ubfm_to_lsl (inst);
1710 case OP_CINC:
1711 case OP_CINV:
1712 case OP_CNEG:
1713 return convert_from_csel (inst);
1714 case OP_CSET:
1715 case OP_CSETM:
1716 return convert_csinc_to_cset (inst);
1717 case OP_UBFX:
1718 case OP_BFXIL:
1719 case OP_SBFX:
1720 return convert_bfm_to_bfx (inst);
1721 case OP_SBFIZ:
1722 case OP_BFI:
1723 case OP_UBFIZ:
1724 return convert_bfm_to_bfi (inst);
1725 case OP_MOV_V:
1726 return convert_orr_to_mov (inst);
1727 case OP_MOV_IMM_WIDE:
1728 case OP_MOV_IMM_WIDEN:
1729 return convert_movewide_to_mov (inst);
1730 case OP_MOV_IMM_LOG:
1731 return convert_movebitmask_to_mov (inst);
1732 case OP_ROR_IMM:
1733 return convert_extr_to_ror (inst);
1734 default:
1735 return 0;
1736 }
1737 }
1738
1739 static int aarch64_opcode_decode (const aarch64_opcode *, const aarch64_insn,
1740 aarch64_inst *, int);
1741
1742 /* Given the instruction information in *INST, check if the instruction has
1743 any alias form that can be used to represent *INST. If the answer is yes,
1744 update *INST to be in the form of the determined alias. */
1745
1746 /* In the opcode description table, the following flags are used in opcode
1747 entries to help establish the relations between the real and alias opcodes:
1748
1749 F_ALIAS: opcode is an alias
1750 F_HAS_ALIAS: opcode has alias(es)
1751 F_P1
1752 F_P2
1753 F_P3: Disassembly preference priority 1-3 (the larger the
1754 higher). If nothing is specified, it is the priority
1755 0 by default, i.e. the lowest priority.
1756
1757 Although the relation between the machine and the alias instructions are not
1758 explicitly described, it can be easily determined from the base opcode
1759 values, masks and the flags F_ALIAS and F_HAS_ALIAS in their opcode
1760 description entries:
1761
1762 The mask of an alias opcode must be equal to or a super-set (i.e. more
1763 constrained) of that of the aliased opcode; so is the base opcode value.
1764
1765 if (opcode_has_alias (real) && alias_opcode_p (opcode)
1766 && (opcode->mask & real->mask) == real->mask
1767 && (real->mask & opcode->opcode) == (real->mask & real->opcode))
1768 then OPCODE is an alias of, and only of, the REAL instruction
1769
1770 The alias relationship is forced flat-structured to keep related algorithm
1771 simple; an opcode entry cannot be flagged with both F_ALIAS and F_HAS_ALIAS.
1772
1773 During the disassembling, the decoding decision tree (in
1774 opcodes/aarch64-dis-2.c) always returns an machine instruction opcode entry;
1775 if the decoding of such a machine instruction succeeds (and -Mno-aliases is
1776 not specified), the disassembler will check whether there is any alias
1777 instruction exists for this real instruction. If there is, the disassembler
1778 will try to disassemble the 32-bit binary again using the alias's rule, or
1779 try to convert the IR to the form of the alias. In the case of the multiple
1780 aliases, the aliases are tried one by one from the highest priority
1781 (currently the flag F_P3) to the lowest priority (no priority flag), and the
1782 first succeeds first adopted.
1783
1784 You may ask why there is a need for the conversion of IR from one form to
1785 another in handling certain aliases. This is because on one hand it avoids
1786 adding more operand code to handle unusual encoding/decoding; on other
1787 hand, during the disassembling, the conversion is an effective approach to
1788 check the condition of an alias (as an alias may be adopted only if certain
1789 conditions are met).
1790
1791 In order to speed up the alias opcode lookup, aarch64-gen has preprocessed
1792 aarch64_opcode_table and generated aarch64_find_alias_opcode and
1793 aarch64_find_next_alias_opcode (in opcodes/aarch64-dis-2.c) to help. */
1794
1795 static void
1796 determine_disassembling_preference (struct aarch64_inst *inst)
1797 {
1798 const aarch64_opcode *opcode;
1799 const aarch64_opcode *alias;
1800
1801 opcode = inst->opcode;
1802
1803 /* This opcode does not have an alias, so use itself. */
1804 if (opcode_has_alias (opcode) == FALSE)
1805 return;
1806
1807 alias = aarch64_find_alias_opcode (opcode);
1808 assert (alias);
1809
1810 #ifdef DEBUG_AARCH64
1811 if (debug_dump)
1812 {
1813 const aarch64_opcode *tmp = alias;
1814 printf ("#### LIST orderd: ");
1815 while (tmp)
1816 {
1817 printf ("%s, ", tmp->name);
1818 tmp = aarch64_find_next_alias_opcode (tmp);
1819 }
1820 printf ("\n");
1821 }
1822 #endif /* DEBUG_AARCH64 */
1823
1824 for (; alias; alias = aarch64_find_next_alias_opcode (alias))
1825 {
1826 DEBUG_TRACE ("try %s", alias->name);
1827 assert (alias_opcode_p (alias));
1828
1829 /* An alias can be a pseudo opcode which will never be used in the
1830 disassembly, e.g. BIC logical immediate is such a pseudo opcode
1831 aliasing AND. */
1832 if (pseudo_opcode_p (alias))
1833 {
1834 DEBUG_TRACE ("skip pseudo %s", alias->name);
1835 continue;
1836 }
1837
1838 if ((inst->value & alias->mask) != alias->opcode)
1839 {
1840 DEBUG_TRACE ("skip %s as base opcode not match", alias->name);
1841 continue;
1842 }
1843 /* No need to do any complicated transformation on operands, if the alias
1844 opcode does not have any operand. */
1845 if (aarch64_num_of_operands (alias) == 0 && alias->opcode == inst->value)
1846 {
1847 DEBUG_TRACE ("succeed with 0-operand opcode %s", alias->name);
1848 aarch64_replace_opcode (inst, alias);
1849 return;
1850 }
1851 if (alias->flags & F_CONV)
1852 {
1853 aarch64_inst copy;
1854 memcpy (&copy, inst, sizeof (aarch64_inst));
1855 /* ALIAS is the preference as long as the instruction can be
1856 successfully converted to the form of ALIAS. */
1857 if (convert_to_alias (&copy, alias) == 1)
1858 {
1859 aarch64_replace_opcode (&copy, alias);
1860 assert (aarch64_match_operands_constraint (&copy, NULL));
1861 DEBUG_TRACE ("succeed with %s via conversion", alias->name);
1862 memcpy (inst, &copy, sizeof (aarch64_inst));
1863 return;
1864 }
1865 }
1866 else
1867 {
1868 /* Directly decode the alias opcode. */
1869 aarch64_inst temp;
1870 memset (&temp, '\0', sizeof (aarch64_inst));
1871 if (aarch64_opcode_decode (alias, inst->value, &temp, 1) == 1)
1872 {
1873 DEBUG_TRACE ("succeed with %s via direct decoding", alias->name);
1874 memcpy (inst, &temp, sizeof (aarch64_inst));
1875 return;
1876 }
1877 }
1878 }
1879 }
1880
1881 /* Decode the CODE according to OPCODE; fill INST. Return 0 if the decoding
1882 fails, which meanes that CODE is not an instruction of OPCODE; otherwise
1883 return 1.
1884
1885 If OPCODE has alias(es) and NOALIASES_P is 0, an alias opcode may be
1886 determined and used to disassemble CODE; this is done just before the
1887 return. */
1888
1889 static int
1890 aarch64_opcode_decode (const aarch64_opcode *opcode, const aarch64_insn code,
1891 aarch64_inst *inst, int noaliases_p)
1892 {
1893 int i;
1894
1895 DEBUG_TRACE ("enter with %s", opcode->name);
1896
1897 assert (opcode && inst);
1898
1899 /* Check the base opcode. */
1900 if ((code & opcode->mask) != (opcode->opcode & opcode->mask))
1901 {
1902 DEBUG_TRACE ("base opcode match FAIL");
1903 goto decode_fail;
1904 }
1905
1906 /* Clear inst. */
1907 memset (inst, '\0', sizeof (aarch64_inst));
1908
1909 inst->opcode = opcode;
1910 inst->value = code;
1911
1912 /* Assign operand codes and indexes. */
1913 for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
1914 {
1915 if (opcode->operands[i] == AARCH64_OPND_NIL)
1916 break;
1917 inst->operands[i].type = opcode->operands[i];
1918 inst->operands[i].idx = i;
1919 }
1920
1921 /* Call the opcode decoder indicated by flags. */
1922 if (opcode_has_special_coder (opcode) && do_special_decoding (inst) == 0)
1923 {
1924 DEBUG_TRACE ("opcode flag-based decoder FAIL");
1925 goto decode_fail;
1926 }
1927
1928 /* Call operand decoders. */
1929 for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
1930 {
1931 const aarch64_operand *opnd;
1932 enum aarch64_opnd type;
1933 type = opcode->operands[i];
1934 if (type == AARCH64_OPND_NIL)
1935 break;
1936 opnd = &aarch64_operands[type];
1937 if (operand_has_extractor (opnd)
1938 && (! aarch64_extract_operand (opnd, &inst->operands[i], code, inst)))
1939 {
1940 DEBUG_TRACE ("operand decoder FAIL at operand %d", i);
1941 goto decode_fail;
1942 }
1943 }
1944
1945 /* Match the qualifiers. */
1946 if (aarch64_match_operands_constraint (inst, NULL) == 1)
1947 {
1948 /* Arriving here, the CODE has been determined as a valid instruction
1949 of OPCODE and *INST has been filled with information of this OPCODE
1950 instruction. Before the return, check if the instruction has any
1951 alias and should be disassembled in the form of its alias instead.
1952 If the answer is yes, *INST will be updated. */
1953 if (!noaliases_p)
1954 determine_disassembling_preference (inst);
1955 DEBUG_TRACE ("SUCCESS");
1956 return 1;
1957 }
1958 else
1959 {
1960 DEBUG_TRACE ("constraint matching FAIL");
1961 }
1962
1963 decode_fail:
1964 return 0;
1965 }
1966 \f
1967 /* This does some user-friendly fix-up to *INST. It is currently focus on
1968 the adjustment of qualifiers to help the printed instruction
1969 recognized/understood more easily. */
1970
1971 static void
1972 user_friendly_fixup (aarch64_inst *inst)
1973 {
1974 switch (inst->opcode->iclass)
1975 {
1976 case testbranch:
1977 /* TBNZ Xn|Wn, #uimm6, label
1978 Test and Branch Not Zero: conditionally jumps to label if bit number
1979 uimm6 in register Xn is not zero. The bit number implies the width of
1980 the register, which may be written and should be disassembled as Wn if
1981 uimm is less than 32. Limited to a branch offset range of +/- 32KiB.
1982 */
1983 if (inst->operands[1].imm.value < 32)
1984 inst->operands[0].qualifier = AARCH64_OPND_QLF_W;
1985 break;
1986 default: break;
1987 }
1988 }
1989
1990 /* Decode INSN and fill in *INST the instruction information. */
1991
1992 static int
1993 disas_aarch64_insn (uint64_t pc ATTRIBUTE_UNUSED, uint32_t insn,
1994 aarch64_inst *inst)
1995 {
1996 const aarch64_opcode *opcode = aarch64_opcode_lookup (insn);
1997
1998 #ifdef DEBUG_AARCH64
1999 if (debug_dump)
2000 {
2001 const aarch64_opcode *tmp = opcode;
2002 printf ("\n");
2003 DEBUG_TRACE ("opcode lookup:");
2004 while (tmp != NULL)
2005 {
2006 aarch64_verbose (" %s", tmp->name);
2007 tmp = aarch64_find_next_opcode (tmp);
2008 }
2009 }
2010 #endif /* DEBUG_AARCH64 */
2011
2012 /* A list of opcodes may have been found, as aarch64_opcode_lookup cannot
2013 distinguish some opcodes, e.g. SSHR and MOVI, which almost share the same
2014 opcode field and value, apart from the difference that one of them has an
2015 extra field as part of the opcode, but such a field is used for operand
2016 encoding in other opcode(s) ('immh' in the case of the example). */
2017 while (opcode != NULL)
2018 {
2019 /* But only one opcode can be decoded successfully for, as the
2020 decoding routine will check the constraint carefully. */
2021 if (aarch64_opcode_decode (opcode, insn, inst, no_aliases) == 1)
2022 return ERR_OK;
2023 opcode = aarch64_find_next_opcode (opcode);
2024 }
2025
2026 return ERR_UND;
2027 }
2028
2029 /* Print operands. */
2030
2031 static void
2032 print_operands (bfd_vma pc, const aarch64_opcode *opcode,
2033 const aarch64_opnd_info *opnds, struct disassemble_info *info)
2034 {
2035 int i, pcrel_p, num_printed;
2036 for (i = 0, num_printed = 0; i < AARCH64_MAX_OPND_NUM; ++i)
2037 {
2038 const size_t size = 128;
2039 char str[size];
2040 /* We regard the opcode operand info more, however we also look into
2041 the inst->operands to support the disassembling of the optional
2042 operand.
2043 The two operand code should be the same in all cases, apart from
2044 when the operand can be optional. */
2045 if (opcode->operands[i] == AARCH64_OPND_NIL
2046 || opnds[i].type == AARCH64_OPND_NIL)
2047 break;
2048
2049 /* Generate the operand string in STR. */
2050 aarch64_print_operand (str, size, pc, opcode, opnds, i, &pcrel_p,
2051 &info->target);
2052
2053 /* Print the delimiter (taking account of omitted operand(s)). */
2054 if (str[0] != '\0')
2055 (*info->fprintf_func) (info->stream, "%s",
2056 num_printed++ == 0 ? "\t" : ", ");
2057
2058 /* Print the operand. */
2059 if (pcrel_p)
2060 (*info->print_address_func) (info->target, info);
2061 else
2062 (*info->fprintf_func) (info->stream, "%s", str);
2063 }
2064 }
2065
2066 /* Print the instruction mnemonic name. */
2067
2068 static void
2069 print_mnemonic_name (const aarch64_inst *inst, struct disassemble_info *info)
2070 {
2071 if (inst->opcode->flags & F_COND)
2072 {
2073 /* For instructions that are truly conditionally executed, e.g. b.cond,
2074 prepare the full mnemonic name with the corresponding condition
2075 suffix. */
2076 char name[8], *ptr;
2077 size_t len;
2078
2079 ptr = strchr (inst->opcode->name, '.');
2080 assert (ptr && inst->cond);
2081 len = ptr - inst->opcode->name;
2082 assert (len < 8);
2083 strncpy (name, inst->opcode->name, len);
2084 name [len] = '\0';
2085 (*info->fprintf_func) (info->stream, "%s.%s", name, inst->cond->names[0]);
2086 }
2087 else
2088 (*info->fprintf_func) (info->stream, "%s", inst->opcode->name);
2089 }
2090
2091 /* Print the instruction according to *INST. */
2092
2093 static void
2094 print_aarch64_insn (bfd_vma pc, const aarch64_inst *inst,
2095 struct disassemble_info *info)
2096 {
2097 print_mnemonic_name (inst, info);
2098 print_operands (pc, inst->opcode, inst->operands, info);
2099 }
2100
2101 /* Entry-point of the instruction disassembler and printer. */
2102
2103 static void
2104 print_insn_aarch64_word (bfd_vma pc,
2105 uint32_t word,
2106 struct disassemble_info *info)
2107 {
2108 static const char *err_msg[6] =
2109 {
2110 [ERR_OK] = "_",
2111 [-ERR_UND] = "undefined",
2112 [-ERR_UNP] = "unpredictable",
2113 [-ERR_NYI] = "NYI"
2114 };
2115
2116 int ret;
2117 aarch64_inst inst;
2118
2119 info->insn_info_valid = 1;
2120 info->branch_delay_insns = 0;
2121 info->data_size = 0;
2122 info->target = 0;
2123 info->target2 = 0;
2124
2125 if (info->flags & INSN_HAS_RELOC)
2126 /* If the instruction has a reloc associated with it, then
2127 the offset field in the instruction will actually be the
2128 addend for the reloc. (If we are using REL type relocs).
2129 In such cases, we can ignore the pc when computing
2130 addresses, since the addend is not currently pc-relative. */
2131 pc = 0;
2132
2133 ret = disas_aarch64_insn (pc, word, &inst);
2134
2135 if (((word >> 21) & 0x3ff) == 1)
2136 {
2137 /* RESERVED for ALES. */
2138 assert (ret != ERR_OK);
2139 ret = ERR_NYI;
2140 }
2141
2142 switch (ret)
2143 {
2144 case ERR_UND:
2145 case ERR_UNP:
2146 case ERR_NYI:
2147 /* Handle undefined instructions. */
2148 info->insn_type = dis_noninsn;
2149 (*info->fprintf_func) (info->stream,".inst\t0x%08x ; %s",
2150 word, err_msg[-ret]);
2151 break;
2152 case ERR_OK:
2153 user_friendly_fixup (&inst);
2154 print_aarch64_insn (pc, &inst, info);
2155 break;
2156 default:
2157 abort ();
2158 }
2159 }
2160
2161 /* Disallow mapping symbols ($x, $d etc) from
2162 being displayed in symbol relative addresses. */
2163
2164 bfd_boolean
2165 aarch64_symbol_is_valid (asymbol * sym,
2166 struct disassemble_info * info ATTRIBUTE_UNUSED)
2167 {
2168 const char * name;
2169
2170 if (sym == NULL)
2171 return FALSE;
2172
2173 name = bfd_asymbol_name (sym);
2174
2175 return name
2176 && (name[0] != '$'
2177 || (name[1] != 'x' && name[1] != 'd')
2178 || (name[2] != '\0' && name[2] != '.'));
2179 }
2180
2181 /* Print data bytes on INFO->STREAM. */
2182
2183 static void
2184 print_insn_data (bfd_vma pc ATTRIBUTE_UNUSED,
2185 uint32_t word,
2186 struct disassemble_info *info)
2187 {
2188 switch (info->bytes_per_chunk)
2189 {
2190 case 1:
2191 info->fprintf_func (info->stream, ".byte\t0x%02x", word);
2192 break;
2193 case 2:
2194 info->fprintf_func (info->stream, ".short\t0x%04x", word);
2195 break;
2196 case 4:
2197 info->fprintf_func (info->stream, ".word\t0x%08x", word);
2198 break;
2199 default:
2200 abort ();
2201 }
2202 }
2203
2204 /* Try to infer the code or data type from a symbol.
2205 Returns nonzero if *MAP_TYPE was set. */
2206
2207 static int
2208 get_sym_code_type (struct disassemble_info *info, int n,
2209 enum map_type *map_type)
2210 {
2211 elf_symbol_type *es;
2212 unsigned int type;
2213 const char *name;
2214
2215 es = *(elf_symbol_type **)(info->symtab + n);
2216 type = ELF_ST_TYPE (es->internal_elf_sym.st_info);
2217
2218 /* If the symbol has function type then use that. */
2219 if (type == STT_FUNC)
2220 {
2221 *map_type = MAP_INSN;
2222 return TRUE;
2223 }
2224
2225 /* Check for mapping symbols. */
2226 name = bfd_asymbol_name(info->symtab[n]);
2227 if (name[0] == '$'
2228 && (name[1] == 'x' || name[1] == 'd')
2229 && (name[2] == '\0' || name[2] == '.'))
2230 {
2231 *map_type = (name[1] == 'x' ? MAP_INSN : MAP_DATA);
2232 return TRUE;
2233 }
2234
2235 return FALSE;
2236 }
2237
2238 /* Entry-point of the AArch64 disassembler. */
2239
2240 int
2241 print_insn_aarch64 (bfd_vma pc,
2242 struct disassemble_info *info)
2243 {
2244 bfd_byte buffer[INSNLEN];
2245 int status;
2246 void (*printer) (bfd_vma, uint32_t, struct disassemble_info *);
2247 bfd_boolean found = FALSE;
2248 unsigned int size = 4;
2249 unsigned long data;
2250
2251 if (info->disassembler_options)
2252 {
2253 set_default_aarch64_dis_options (info);
2254
2255 parse_aarch64_dis_options (info->disassembler_options);
2256
2257 /* To avoid repeated parsing of these options, we remove them here. */
2258 info->disassembler_options = NULL;
2259 }
2260
2261 /* Aarch64 instructions are always little-endian */
2262 info->endian_code = BFD_ENDIAN_LITTLE;
2263
2264 /* First check the full symtab for a mapping symbol, even if there
2265 are no usable non-mapping symbols for this address. */
2266 if (info->symtab_size != 0
2267 && bfd_asymbol_flavour (*info->symtab) == bfd_target_elf_flavour)
2268 {
2269 enum map_type type = MAP_INSN;
2270 int last_sym = -1;
2271 bfd_vma addr;
2272 int n;
2273
2274 if (pc <= last_mapping_addr)
2275 last_mapping_sym = -1;
2276
2277 /* Start scanning at the start of the function, or wherever
2278 we finished last time. */
2279 n = info->symtab_pos + 1;
2280 if (n < last_mapping_sym)
2281 n = last_mapping_sym;
2282
2283 /* Scan up to the location being disassembled. */
2284 for (; n < info->symtab_size; n++)
2285 {
2286 addr = bfd_asymbol_value (info->symtab[n]);
2287 if (addr > pc)
2288 break;
2289 if ((info->section == NULL
2290 || info->section == info->symtab[n]->section)
2291 && get_sym_code_type (info, n, &type))
2292 {
2293 last_sym = n;
2294 found = TRUE;
2295 }
2296 }
2297
2298 if (!found)
2299 {
2300 n = info->symtab_pos;
2301 if (n < last_mapping_sym)
2302 n = last_mapping_sym;
2303
2304 /* No mapping symbol found at this address. Look backwards
2305 for a preceeding one. */
2306 for (; n >= 0; n--)
2307 {
2308 if (get_sym_code_type (info, n, &type))
2309 {
2310 last_sym = n;
2311 found = TRUE;
2312 break;
2313 }
2314 }
2315 }
2316
2317 last_mapping_sym = last_sym;
2318 last_type = type;
2319
2320 /* Look a little bit ahead to see if we should print out
2321 less than four bytes of data. If there's a symbol,
2322 mapping or otherwise, after two bytes then don't
2323 print more. */
2324 if (last_type == MAP_DATA)
2325 {
2326 size = 4 - (pc & 3);
2327 for (n = last_sym + 1; n < info->symtab_size; n++)
2328 {
2329 addr = bfd_asymbol_value (info->symtab[n]);
2330 if (addr > pc)
2331 {
2332 if (addr - pc < size)
2333 size = addr - pc;
2334 break;
2335 }
2336 }
2337 /* If the next symbol is after three bytes, we need to
2338 print only part of the data, so that we can use either
2339 .byte or .short. */
2340 if (size == 3)
2341 size = (pc & 1) ? 1 : 2;
2342 }
2343 }
2344
2345 if (last_type == MAP_DATA)
2346 {
2347 /* size was set above. */
2348 info->bytes_per_chunk = size;
2349 info->display_endian = info->endian;
2350 printer = print_insn_data;
2351 }
2352 else
2353 {
2354 info->bytes_per_chunk = size = INSNLEN;
2355 info->display_endian = info->endian_code;
2356 printer = print_insn_aarch64_word;
2357 }
2358
2359 status = (*info->read_memory_func) (pc, buffer, size, info);
2360 if (status != 0)
2361 {
2362 (*info->memory_error_func) (status, pc, info);
2363 return -1;
2364 }
2365
2366 data = bfd_get_bits (buffer, size * 8,
2367 info->display_endian == BFD_ENDIAN_BIG);
2368
2369 (*printer) (pc, data, info);
2370
2371 return size;
2372 }
2373 \f
2374 void
2375 print_aarch64_disassembler_options (FILE *stream)
2376 {
2377 fprintf (stream, _("\n\
2378 The following AARCH64 specific disassembler options are supported for use\n\
2379 with the -M switch (multiple options should be separated by commas):\n"));
2380
2381 fprintf (stream, _("\n\
2382 no-aliases Don't print instruction aliases.\n"));
2383
2384 fprintf (stream, _("\n\
2385 aliases Do print instruction aliases.\n"));
2386
2387 #ifdef DEBUG_AARCH64
2388 fprintf (stream, _("\n\
2389 debug_dump Temp switch for debug trace.\n"));
2390 #endif /* DEBUG_AARCH64 */
2391
2392 fprintf (stream, _("\n"));
2393 }
This page took 0.080294 seconds and 5 git commands to generate.