[Patch][binutils][aarch64] .bfloat16 directive for AArch64 [7/10]
[deliverable/binutils-gdb.git] / gas / config / tc-aarch64.c
1 /* tc-aarch64.c -- Assemble for the AArch64 ISA
2
3 Copyright (C) 2009-2019 Free Software Foundation, Inc.
4 Contributed by ARM Ltd.
5
6 This file is part of GAS.
7
8 GAS 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 of the license, or
11 (at your option) any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING3. If not,
20 see <http://www.gnu.org/licenses/>. */
21
22 #include "as.h"
23 #include <limits.h>
24 #include <stdarg.h>
25 #include "bfd_stdint.h"
26 #define NO_RELOC 0
27 #include "safe-ctype.h"
28 #include "subsegs.h"
29 #include "obstack.h"
30
31 #ifdef OBJ_ELF
32 #include "elf/aarch64.h"
33 #include "dw2gencfi.h"
34 #endif
35
36 #include "dwarf2dbg.h"
37
38 /* Types of processor to assemble for. */
39 #ifndef CPU_DEFAULT
40 #define CPU_DEFAULT AARCH64_ARCH_V8
41 #endif
42
43 #define streq(a, b) (strcmp (a, b) == 0)
44
45 #define END_OF_INSN '\0'
46
47 static aarch64_feature_set cpu_variant;
48
49 /* Variables that we set while parsing command-line options. Once all
50 options have been read we re-process these values to set the real
51 assembly flags. */
52 static const aarch64_feature_set *mcpu_cpu_opt = NULL;
53 static const aarch64_feature_set *march_cpu_opt = NULL;
54
55 /* Constants for known architecture features. */
56 static const aarch64_feature_set cpu_default = CPU_DEFAULT;
57
58 /* Currently active instruction sequence. */
59 static aarch64_instr_sequence *insn_sequence = NULL;
60
61 #ifdef OBJ_ELF
62 /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
63 static symbolS *GOT_symbol;
64
65 /* Which ABI to use. */
66 enum aarch64_abi_type
67 {
68 AARCH64_ABI_NONE = 0,
69 AARCH64_ABI_LP64 = 1,
70 AARCH64_ABI_ILP32 = 2
71 };
72
73 #ifndef DEFAULT_ARCH
74 #define DEFAULT_ARCH "aarch64"
75 #endif
76
77 /* DEFAULT_ARCH is initialized in gas/configure.tgt. */
78 static const char *default_arch = DEFAULT_ARCH;
79
80 /* AArch64 ABI for the output file. */
81 static enum aarch64_abi_type aarch64_abi = AARCH64_ABI_NONE;
82
83 /* When non-zero, program to a 32-bit model, in which the C data types
84 int, long and all pointer types are 32-bit objects (ILP32); or to a
85 64-bit model, in which the C int type is 32-bits but the C long type
86 and all pointer types are 64-bit objects (LP64). */
87 #define ilp32_p (aarch64_abi == AARCH64_ABI_ILP32)
88 #endif
89
90 enum vector_el_type
91 {
92 NT_invtype = -1,
93 NT_b,
94 NT_h,
95 NT_s,
96 NT_d,
97 NT_q,
98 NT_zero,
99 NT_merge
100 };
101
102 /* Bits for DEFINED field in vector_type_el. */
103 #define NTA_HASTYPE 1
104 #define NTA_HASINDEX 2
105 #define NTA_HASVARWIDTH 4
106
107 struct vector_type_el
108 {
109 enum vector_el_type type;
110 unsigned char defined;
111 unsigned width;
112 int64_t index;
113 };
114
115 #define FIXUP_F_HAS_EXPLICIT_SHIFT 0x00000001
116
117 struct reloc
118 {
119 bfd_reloc_code_real_type type;
120 expressionS exp;
121 int pc_rel;
122 enum aarch64_opnd opnd;
123 uint32_t flags;
124 unsigned need_libopcodes_p : 1;
125 };
126
127 struct aarch64_instruction
128 {
129 /* libopcodes structure for instruction intermediate representation. */
130 aarch64_inst base;
131 /* Record assembly errors found during the parsing. */
132 struct
133 {
134 enum aarch64_operand_error_kind kind;
135 const char *error;
136 } parsing_error;
137 /* The condition that appears in the assembly line. */
138 int cond;
139 /* Relocation information (including the GAS internal fixup). */
140 struct reloc reloc;
141 /* Need to generate an immediate in the literal pool. */
142 unsigned gen_lit_pool : 1;
143 };
144
145 typedef struct aarch64_instruction aarch64_instruction;
146
147 static aarch64_instruction inst;
148
149 static bfd_boolean parse_operands (char *, const aarch64_opcode *);
150 static bfd_boolean programmer_friendly_fixup (aarch64_instruction *);
151
152 #ifdef OBJ_ELF
153 # define now_instr_sequence seg_info \
154 (now_seg)->tc_segment_info_data.insn_sequence
155 #else
156 static struct aarch64_instr_sequence now_instr_sequence;
157 #endif
158
159 /* Diagnostics inline function utilities.
160
161 These are lightweight utilities which should only be called by parse_operands
162 and other parsers. GAS processes each assembly line by parsing it against
163 instruction template(s), in the case of multiple templates (for the same
164 mnemonic name), those templates are tried one by one until one succeeds or
165 all fail. An assembly line may fail a few templates before being
166 successfully parsed; an error saved here in most cases is not a user error
167 but an error indicating the current template is not the right template.
168 Therefore it is very important that errors can be saved at a low cost during
169 the parsing; we don't want to slow down the whole parsing by recording
170 non-user errors in detail.
171
172 Remember that the objective is to help GAS pick up the most appropriate
173 error message in the case of multiple templates, e.g. FMOV which has 8
174 templates. */
175
176 static inline void
177 clear_error (void)
178 {
179 inst.parsing_error.kind = AARCH64_OPDE_NIL;
180 inst.parsing_error.error = NULL;
181 }
182
183 static inline bfd_boolean
184 error_p (void)
185 {
186 return inst.parsing_error.kind != AARCH64_OPDE_NIL;
187 }
188
189 static inline const char *
190 get_error_message (void)
191 {
192 return inst.parsing_error.error;
193 }
194
195 static inline enum aarch64_operand_error_kind
196 get_error_kind (void)
197 {
198 return inst.parsing_error.kind;
199 }
200
201 static inline void
202 set_error (enum aarch64_operand_error_kind kind, const char *error)
203 {
204 inst.parsing_error.kind = kind;
205 inst.parsing_error.error = error;
206 }
207
208 static inline void
209 set_recoverable_error (const char *error)
210 {
211 set_error (AARCH64_OPDE_RECOVERABLE, error);
212 }
213
214 /* Use the DESC field of the corresponding aarch64_operand entry to compose
215 the error message. */
216 static inline void
217 set_default_error (void)
218 {
219 set_error (AARCH64_OPDE_SYNTAX_ERROR, NULL);
220 }
221
222 static inline void
223 set_syntax_error (const char *error)
224 {
225 set_error (AARCH64_OPDE_SYNTAX_ERROR, error);
226 }
227
228 static inline void
229 set_first_syntax_error (const char *error)
230 {
231 if (! error_p ())
232 set_error (AARCH64_OPDE_SYNTAX_ERROR, error);
233 }
234
235 static inline void
236 set_fatal_syntax_error (const char *error)
237 {
238 set_error (AARCH64_OPDE_FATAL_SYNTAX_ERROR, error);
239 }
240 \f
241 /* Return value for certain parsers when the parsing fails; those parsers
242 return the information of the parsed result, e.g. register number, on
243 success. */
244 #define PARSE_FAIL -1
245
246 /* This is an invalid condition code that means no conditional field is
247 present. */
248 #define COND_ALWAYS 0x10
249
250 typedef struct
251 {
252 const char *template;
253 unsigned long value;
254 } asm_barrier_opt;
255
256 typedef struct
257 {
258 const char *template;
259 uint32_t value;
260 } asm_nzcv;
261
262 struct reloc_entry
263 {
264 char *name;
265 bfd_reloc_code_real_type reloc;
266 };
267
268 /* Macros to define the register types and masks for the purpose
269 of parsing. */
270
271 #undef AARCH64_REG_TYPES
272 #define AARCH64_REG_TYPES \
273 BASIC_REG_TYPE(R_32) /* w[0-30] */ \
274 BASIC_REG_TYPE(R_64) /* x[0-30] */ \
275 BASIC_REG_TYPE(SP_32) /* wsp */ \
276 BASIC_REG_TYPE(SP_64) /* sp */ \
277 BASIC_REG_TYPE(Z_32) /* wzr */ \
278 BASIC_REG_TYPE(Z_64) /* xzr */ \
279 BASIC_REG_TYPE(FP_B) /* b[0-31] *//* NOTE: keep FP_[BHSDQ] consecutive! */\
280 BASIC_REG_TYPE(FP_H) /* h[0-31] */ \
281 BASIC_REG_TYPE(FP_S) /* s[0-31] */ \
282 BASIC_REG_TYPE(FP_D) /* d[0-31] */ \
283 BASIC_REG_TYPE(FP_Q) /* q[0-31] */ \
284 BASIC_REG_TYPE(VN) /* v[0-31] */ \
285 BASIC_REG_TYPE(ZN) /* z[0-31] */ \
286 BASIC_REG_TYPE(PN) /* p[0-15] */ \
287 /* Typecheck: any 64-bit int reg (inc SP exc XZR). */ \
288 MULTI_REG_TYPE(R64_SP, REG_TYPE(R_64) | REG_TYPE(SP_64)) \
289 /* Typecheck: same, plus SVE registers. */ \
290 MULTI_REG_TYPE(SVE_BASE, REG_TYPE(R_64) | REG_TYPE(SP_64) \
291 | REG_TYPE(ZN)) \
292 /* Typecheck: x[0-30], w[0-30] or [xw]zr. */ \
293 MULTI_REG_TYPE(R_Z, REG_TYPE(R_32) | REG_TYPE(R_64) \
294 | REG_TYPE(Z_32) | REG_TYPE(Z_64)) \
295 /* Typecheck: same, plus SVE registers. */ \
296 MULTI_REG_TYPE(SVE_OFFSET, REG_TYPE(R_32) | REG_TYPE(R_64) \
297 | REG_TYPE(Z_32) | REG_TYPE(Z_64) \
298 | REG_TYPE(ZN)) \
299 /* Typecheck: x[0-30], w[0-30] or {w}sp. */ \
300 MULTI_REG_TYPE(R_SP, REG_TYPE(R_32) | REG_TYPE(R_64) \
301 | REG_TYPE(SP_32) | REG_TYPE(SP_64)) \
302 /* Typecheck: any int (inc {W}SP inc [WX]ZR). */ \
303 MULTI_REG_TYPE(R_Z_SP, REG_TYPE(R_32) | REG_TYPE(R_64) \
304 | REG_TYPE(SP_32) | REG_TYPE(SP_64) \
305 | REG_TYPE(Z_32) | REG_TYPE(Z_64)) \
306 /* Typecheck: any [BHSDQ]P FP. */ \
307 MULTI_REG_TYPE(BHSDQ, REG_TYPE(FP_B) | REG_TYPE(FP_H) \
308 | REG_TYPE(FP_S) | REG_TYPE(FP_D) | REG_TYPE(FP_Q)) \
309 /* Typecheck: any int or [BHSDQ]P FP or V reg (exc SP inc [WX]ZR). */ \
310 MULTI_REG_TYPE(R_Z_BHSDQ_V, REG_TYPE(R_32) | REG_TYPE(R_64) \
311 | REG_TYPE(Z_32) | REG_TYPE(Z_64) | REG_TYPE(VN) \
312 | REG_TYPE(FP_B) | REG_TYPE(FP_H) \
313 | REG_TYPE(FP_S) | REG_TYPE(FP_D) | REG_TYPE(FP_Q)) \
314 /* Typecheck: as above, but also Zn, Pn, and {W}SP. This should only \
315 be used for SVE instructions, since Zn and Pn are valid symbols \
316 in other contexts. */ \
317 MULTI_REG_TYPE(R_Z_SP_BHSDQ_VZP, REG_TYPE(R_32) | REG_TYPE(R_64) \
318 | REG_TYPE(SP_32) | REG_TYPE(SP_64) \
319 | REG_TYPE(Z_32) | REG_TYPE(Z_64) | REG_TYPE(VN) \
320 | REG_TYPE(FP_B) | REG_TYPE(FP_H) \
321 | REG_TYPE(FP_S) | REG_TYPE(FP_D) | REG_TYPE(FP_Q) \
322 | REG_TYPE(ZN) | REG_TYPE(PN)) \
323 /* Any integer register; used for error messages only. */ \
324 MULTI_REG_TYPE(R_N, REG_TYPE(R_32) | REG_TYPE(R_64) \
325 | REG_TYPE(SP_32) | REG_TYPE(SP_64) \
326 | REG_TYPE(Z_32) | REG_TYPE(Z_64)) \
327 /* Pseudo type to mark the end of the enumerator sequence. */ \
328 BASIC_REG_TYPE(MAX)
329
330 #undef BASIC_REG_TYPE
331 #define BASIC_REG_TYPE(T) REG_TYPE_##T,
332 #undef MULTI_REG_TYPE
333 #define MULTI_REG_TYPE(T,V) BASIC_REG_TYPE(T)
334
335 /* Register type enumerators. */
336 typedef enum aarch64_reg_type_
337 {
338 /* A list of REG_TYPE_*. */
339 AARCH64_REG_TYPES
340 } aarch64_reg_type;
341
342 #undef BASIC_REG_TYPE
343 #define BASIC_REG_TYPE(T) 1 << REG_TYPE_##T,
344 #undef REG_TYPE
345 #define REG_TYPE(T) (1 << REG_TYPE_##T)
346 #undef MULTI_REG_TYPE
347 #define MULTI_REG_TYPE(T,V) V,
348
349 /* Structure for a hash table entry for a register. */
350 typedef struct
351 {
352 const char *name;
353 unsigned char number;
354 ENUM_BITFIELD (aarch64_reg_type_) type : 8;
355 unsigned char builtin;
356 } reg_entry;
357
358 /* Values indexed by aarch64_reg_type to assist the type checking. */
359 static const unsigned reg_type_masks[] =
360 {
361 AARCH64_REG_TYPES
362 };
363
364 #undef BASIC_REG_TYPE
365 #undef REG_TYPE
366 #undef MULTI_REG_TYPE
367 #undef AARCH64_REG_TYPES
368
369 /* Diagnostics used when we don't get a register of the expected type.
370 Note: this has to synchronized with aarch64_reg_type definitions
371 above. */
372 static const char *
373 get_reg_expected_msg (aarch64_reg_type reg_type)
374 {
375 const char *msg;
376
377 switch (reg_type)
378 {
379 case REG_TYPE_R_32:
380 msg = N_("integer 32-bit register expected");
381 break;
382 case REG_TYPE_R_64:
383 msg = N_("integer 64-bit register expected");
384 break;
385 case REG_TYPE_R_N:
386 msg = N_("integer register expected");
387 break;
388 case REG_TYPE_R64_SP:
389 msg = N_("64-bit integer or SP register expected");
390 break;
391 case REG_TYPE_SVE_BASE:
392 msg = N_("base register expected");
393 break;
394 case REG_TYPE_R_Z:
395 msg = N_("integer or zero register expected");
396 break;
397 case REG_TYPE_SVE_OFFSET:
398 msg = N_("offset register expected");
399 break;
400 case REG_TYPE_R_SP:
401 msg = N_("integer or SP register expected");
402 break;
403 case REG_TYPE_R_Z_SP:
404 msg = N_("integer, zero or SP register expected");
405 break;
406 case REG_TYPE_FP_B:
407 msg = N_("8-bit SIMD scalar register expected");
408 break;
409 case REG_TYPE_FP_H:
410 msg = N_("16-bit SIMD scalar or floating-point half precision "
411 "register expected");
412 break;
413 case REG_TYPE_FP_S:
414 msg = N_("32-bit SIMD scalar or floating-point single precision "
415 "register expected");
416 break;
417 case REG_TYPE_FP_D:
418 msg = N_("64-bit SIMD scalar or floating-point double precision "
419 "register expected");
420 break;
421 case REG_TYPE_FP_Q:
422 msg = N_("128-bit SIMD scalar or floating-point quad precision "
423 "register expected");
424 break;
425 case REG_TYPE_R_Z_BHSDQ_V:
426 case REG_TYPE_R_Z_SP_BHSDQ_VZP:
427 msg = N_("register expected");
428 break;
429 case REG_TYPE_BHSDQ: /* any [BHSDQ]P FP */
430 msg = N_("SIMD scalar or floating-point register expected");
431 break;
432 case REG_TYPE_VN: /* any V reg */
433 msg = N_("vector register expected");
434 break;
435 case REG_TYPE_ZN:
436 msg = N_("SVE vector register expected");
437 break;
438 case REG_TYPE_PN:
439 msg = N_("SVE predicate register expected");
440 break;
441 default:
442 as_fatal (_("invalid register type %d"), reg_type);
443 }
444 return msg;
445 }
446
447 /* Some well known registers that we refer to directly elsewhere. */
448 #define REG_SP 31
449 #define REG_ZR 31
450
451 /* Instructions take 4 bytes in the object file. */
452 #define INSN_SIZE 4
453
454 static struct hash_control *aarch64_ops_hsh;
455 static struct hash_control *aarch64_cond_hsh;
456 static struct hash_control *aarch64_shift_hsh;
457 static struct hash_control *aarch64_sys_regs_hsh;
458 static struct hash_control *aarch64_pstatefield_hsh;
459 static struct hash_control *aarch64_sys_regs_ic_hsh;
460 static struct hash_control *aarch64_sys_regs_dc_hsh;
461 static struct hash_control *aarch64_sys_regs_at_hsh;
462 static struct hash_control *aarch64_sys_regs_tlbi_hsh;
463 static struct hash_control *aarch64_sys_regs_sr_hsh;
464 static struct hash_control *aarch64_reg_hsh;
465 static struct hash_control *aarch64_barrier_opt_hsh;
466 static struct hash_control *aarch64_nzcv_hsh;
467 static struct hash_control *aarch64_pldop_hsh;
468 static struct hash_control *aarch64_hint_opt_hsh;
469
470 /* Stuff needed to resolve the label ambiguity
471 As:
472 ...
473 label: <insn>
474 may differ from:
475 ...
476 label:
477 <insn> */
478
479 static symbolS *last_label_seen;
480
481 /* Literal pool structure. Held on a per-section
482 and per-sub-section basis. */
483
484 #define MAX_LITERAL_POOL_SIZE 1024
485 typedef struct literal_expression
486 {
487 expressionS exp;
488 /* If exp.op == O_big then this bignum holds a copy of the global bignum value. */
489 LITTLENUM_TYPE * bignum;
490 } literal_expression;
491
492 typedef struct literal_pool
493 {
494 literal_expression literals[MAX_LITERAL_POOL_SIZE];
495 unsigned int next_free_entry;
496 unsigned int id;
497 symbolS *symbol;
498 segT section;
499 subsegT sub_section;
500 int size;
501 struct literal_pool *next;
502 } literal_pool;
503
504 /* Pointer to a linked list of literal pools. */
505 static literal_pool *list_of_pools = NULL;
506 \f
507 /* Pure syntax. */
508
509 /* This array holds the chars that always start a comment. If the
510 pre-processor is disabled, these aren't very useful. */
511 const char comment_chars[] = "";
512
513 /* This array holds the chars that only start a comment at the beginning of
514 a line. If the line seems to have the form '# 123 filename'
515 .line and .file directives will appear in the pre-processed output. */
516 /* Note that input_file.c hand checks for '#' at the beginning of the
517 first line of the input file. This is because the compiler outputs
518 #NO_APP at the beginning of its output. */
519 /* Also note that comments like this one will always work. */
520 const char line_comment_chars[] = "#";
521
522 const char line_separator_chars[] = ";";
523
524 /* Chars that can be used to separate mant
525 from exp in floating point numbers. */
526 const char EXP_CHARS[] = "eE";
527
528 /* Chars that mean this number is a floating point constant. */
529 /* As in 0f12.456 */
530 /* or 0d1.2345e12 */
531
532 const char FLT_CHARS[] = "rRsSfFdDxXeEpPhH";
533
534 /* Prefix character that indicates the start of an immediate value. */
535 #define is_immediate_prefix(C) ((C) == '#')
536
537 /* Separator character handling. */
538
539 #define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
540
541 static inline bfd_boolean
542 skip_past_char (char **str, char c)
543 {
544 if (**str == c)
545 {
546 (*str)++;
547 return TRUE;
548 }
549 else
550 return FALSE;
551 }
552
553 #define skip_past_comma(str) skip_past_char (str, ',')
554
555 /* Arithmetic expressions (possibly involving symbols). */
556
557 static bfd_boolean in_my_get_expression_p = FALSE;
558
559 /* Third argument to my_get_expression. */
560 #define GE_NO_PREFIX 0
561 #define GE_OPT_PREFIX 1
562
563 /* Return TRUE if the string pointed by *STR is successfully parsed
564 as an valid expression; *EP will be filled with the information of
565 such an expression. Otherwise return FALSE. */
566
567 static bfd_boolean
568 my_get_expression (expressionS * ep, char **str, int prefix_mode,
569 int reject_absent)
570 {
571 char *save_in;
572 segT seg;
573 int prefix_present_p = 0;
574
575 switch (prefix_mode)
576 {
577 case GE_NO_PREFIX:
578 break;
579 case GE_OPT_PREFIX:
580 if (is_immediate_prefix (**str))
581 {
582 (*str)++;
583 prefix_present_p = 1;
584 }
585 break;
586 default:
587 abort ();
588 }
589
590 memset (ep, 0, sizeof (expressionS));
591
592 save_in = input_line_pointer;
593 input_line_pointer = *str;
594 in_my_get_expression_p = TRUE;
595 seg = expression (ep);
596 in_my_get_expression_p = FALSE;
597
598 if (ep->X_op == O_illegal || (reject_absent && ep->X_op == O_absent))
599 {
600 /* We found a bad expression in md_operand(). */
601 *str = input_line_pointer;
602 input_line_pointer = save_in;
603 if (prefix_present_p && ! error_p ())
604 set_fatal_syntax_error (_("bad expression"));
605 else
606 set_first_syntax_error (_("bad expression"));
607 return FALSE;
608 }
609
610 #ifdef OBJ_AOUT
611 if (seg != absolute_section
612 && seg != text_section
613 && seg != data_section
614 && seg != bss_section && seg != undefined_section)
615 {
616 set_syntax_error (_("bad segment"));
617 *str = input_line_pointer;
618 input_line_pointer = save_in;
619 return FALSE;
620 }
621 #else
622 (void) seg;
623 #endif
624
625 *str = input_line_pointer;
626 input_line_pointer = save_in;
627 return TRUE;
628 }
629
630 /* Turn a string in input_line_pointer into a floating point constant
631 of type TYPE, and store the appropriate bytes in *LITP. The number
632 of LITTLENUMS emitted is stored in *SIZEP. An error message is
633 returned, or NULL on OK. */
634
635 const char *
636 md_atof (int type, char *litP, int *sizeP)
637 {
638 /* If this is a bfloat16 type, then parse it slightly differently -
639 as it does not follow the IEEE standard exactly. */
640 if (type == 'b')
641 {
642 char * t;
643 LITTLENUM_TYPE words[MAX_LITTLENUMS];
644 FLONUM_TYPE generic_float;
645
646 t = atof_ieee_detail (input_line_pointer, 1, 8, words, &generic_float);
647
648 if (t)
649 input_line_pointer = t;
650 else
651 return _("invalid floating point number");
652
653 switch (generic_float.sign)
654 {
655 /* Is +Inf. */
656 case 'P':
657 words[0] = 0x7f80;
658 break;
659
660 /* Is -Inf. */
661 case 'N':
662 words[0] = 0xff80;
663 break;
664
665 /* Is NaN. */
666 /* bfloat16 has two types of NaN - quiet and signalling.
667 Quiet NaN has bit[6] == 1 && faction != 0, whereas
668 signalling Nan's have bit[0] == 0 && fraction != 0.
669 Chose this specific encoding as it is the same form
670 as used by other IEEE 754 encodings in GAS. */
671 case 0:
672 words[0] = 0x7fff;
673 break;
674
675 default:
676 break;
677 }
678
679 *sizeP = 2;
680
681 md_number_to_chars (litP, (valueT) words[0], sizeof (LITTLENUM_TYPE));
682
683 return NULL;
684 }
685
686 return ieee_md_atof (type, litP, sizeP, target_big_endian);
687 }
688
689 /* We handle all bad expressions here, so that we can report the faulty
690 instruction in the error message. */
691 void
692 md_operand (expressionS * exp)
693 {
694 if (in_my_get_expression_p)
695 exp->X_op = O_illegal;
696 }
697
698 /* Immediate values. */
699
700 /* Errors may be set multiple times during parsing or bit encoding
701 (particularly in the Neon bits), but usually the earliest error which is set
702 will be the most meaningful. Avoid overwriting it with later (cascading)
703 errors by calling this function. */
704
705 static void
706 first_error (const char *error)
707 {
708 if (! error_p ())
709 set_syntax_error (error);
710 }
711
712 /* Similar to first_error, but this function accepts formatted error
713 message. */
714 static void
715 first_error_fmt (const char *format, ...)
716 {
717 va_list args;
718 enum
719 { size = 100 };
720 /* N.B. this single buffer will not cause error messages for different
721 instructions to pollute each other; this is because at the end of
722 processing of each assembly line, error message if any will be
723 collected by as_bad. */
724 static char buffer[size];
725
726 if (! error_p ())
727 {
728 int ret ATTRIBUTE_UNUSED;
729 va_start (args, format);
730 ret = vsnprintf (buffer, size, format, args);
731 know (ret <= size - 1 && ret >= 0);
732 va_end (args);
733 set_syntax_error (buffer);
734 }
735 }
736
737 /* Register parsing. */
738
739 /* Generic register parser which is called by other specialized
740 register parsers.
741 CCP points to what should be the beginning of a register name.
742 If it is indeed a valid register name, advance CCP over it and
743 return the reg_entry structure; otherwise return NULL.
744 It does not issue diagnostics. */
745
746 static reg_entry *
747 parse_reg (char **ccp)
748 {
749 char *start = *ccp;
750 char *p;
751 reg_entry *reg;
752
753 #ifdef REGISTER_PREFIX
754 if (*start != REGISTER_PREFIX)
755 return NULL;
756 start++;
757 #endif
758
759 p = start;
760 if (!ISALPHA (*p) || !is_name_beginner (*p))
761 return NULL;
762
763 do
764 p++;
765 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
766
767 reg = (reg_entry *) hash_find_n (aarch64_reg_hsh, start, p - start);
768
769 if (!reg)
770 return NULL;
771
772 *ccp = p;
773 return reg;
774 }
775
776 /* Return TRUE if REG->TYPE is a valid type of TYPE; otherwise
777 return FALSE. */
778 static bfd_boolean
779 aarch64_check_reg_type (const reg_entry *reg, aarch64_reg_type type)
780 {
781 return (reg_type_masks[type] & (1 << reg->type)) != 0;
782 }
783
784 /* Try to parse a base or offset register. Allow SVE base and offset
785 registers if REG_TYPE includes SVE registers. Return the register
786 entry on success, setting *QUALIFIER to the register qualifier.
787 Return null otherwise.
788
789 Note that this function does not issue any diagnostics. */
790
791 static const reg_entry *
792 aarch64_addr_reg_parse (char **ccp, aarch64_reg_type reg_type,
793 aarch64_opnd_qualifier_t *qualifier)
794 {
795 char *str = *ccp;
796 const reg_entry *reg = parse_reg (&str);
797
798 if (reg == NULL)
799 return NULL;
800
801 switch (reg->type)
802 {
803 case REG_TYPE_R_32:
804 case REG_TYPE_SP_32:
805 case REG_TYPE_Z_32:
806 *qualifier = AARCH64_OPND_QLF_W;
807 break;
808
809 case REG_TYPE_R_64:
810 case REG_TYPE_SP_64:
811 case REG_TYPE_Z_64:
812 *qualifier = AARCH64_OPND_QLF_X;
813 break;
814
815 case REG_TYPE_ZN:
816 if ((reg_type_masks[reg_type] & (1 << REG_TYPE_ZN)) == 0
817 || str[0] != '.')
818 return NULL;
819 switch (TOLOWER (str[1]))
820 {
821 case 's':
822 *qualifier = AARCH64_OPND_QLF_S_S;
823 break;
824 case 'd':
825 *qualifier = AARCH64_OPND_QLF_S_D;
826 break;
827 default:
828 return NULL;
829 }
830 str += 2;
831 break;
832
833 default:
834 return NULL;
835 }
836
837 *ccp = str;
838
839 return reg;
840 }
841
842 /* Try to parse a base or offset register. Return the register entry
843 on success, setting *QUALIFIER to the register qualifier. Return null
844 otherwise.
845
846 Note that this function does not issue any diagnostics. */
847
848 static const reg_entry *
849 aarch64_reg_parse_32_64 (char **ccp, aarch64_opnd_qualifier_t *qualifier)
850 {
851 return aarch64_addr_reg_parse (ccp, REG_TYPE_R_Z_SP, qualifier);
852 }
853
854 /* Parse the qualifier of a vector register or vector element of type
855 REG_TYPE. Fill in *PARSED_TYPE and return TRUE if the parsing
856 succeeds; otherwise return FALSE.
857
858 Accept only one occurrence of:
859 4b 8b 16b 2h 4h 8h 2s 4s 1d 2d
860 b h s d q */
861 static bfd_boolean
862 parse_vector_type_for_operand (aarch64_reg_type reg_type,
863 struct vector_type_el *parsed_type, char **str)
864 {
865 char *ptr = *str;
866 unsigned width;
867 unsigned element_size;
868 enum vector_el_type type;
869
870 /* skip '.' */
871 gas_assert (*ptr == '.');
872 ptr++;
873
874 if (reg_type == REG_TYPE_ZN || reg_type == REG_TYPE_PN || !ISDIGIT (*ptr))
875 {
876 width = 0;
877 goto elt_size;
878 }
879 width = strtoul (ptr, &ptr, 10);
880 if (width != 1 && width != 2 && width != 4 && width != 8 && width != 16)
881 {
882 first_error_fmt (_("bad size %d in vector width specifier"), width);
883 return FALSE;
884 }
885
886 elt_size:
887 switch (TOLOWER (*ptr))
888 {
889 case 'b':
890 type = NT_b;
891 element_size = 8;
892 break;
893 case 'h':
894 type = NT_h;
895 element_size = 16;
896 break;
897 case 's':
898 type = NT_s;
899 element_size = 32;
900 break;
901 case 'd':
902 type = NT_d;
903 element_size = 64;
904 break;
905 case 'q':
906 if (reg_type == REG_TYPE_ZN || width == 1)
907 {
908 type = NT_q;
909 element_size = 128;
910 break;
911 }
912 /* fall through. */
913 default:
914 if (*ptr != '\0')
915 first_error_fmt (_("unexpected character `%c' in element size"), *ptr);
916 else
917 first_error (_("missing element size"));
918 return FALSE;
919 }
920 if (width != 0 && width * element_size != 64
921 && width * element_size != 128
922 && !(width == 2 && element_size == 16)
923 && !(width == 4 && element_size == 8))
924 {
925 first_error_fmt (_
926 ("invalid element size %d and vector size combination %c"),
927 width, *ptr);
928 return FALSE;
929 }
930 ptr++;
931
932 parsed_type->type = type;
933 parsed_type->width = width;
934
935 *str = ptr;
936
937 return TRUE;
938 }
939
940 /* *STR contains an SVE zero/merge predication suffix. Parse it into
941 *PARSED_TYPE and point *STR at the end of the suffix. */
942
943 static bfd_boolean
944 parse_predication_for_operand (struct vector_type_el *parsed_type, char **str)
945 {
946 char *ptr = *str;
947
948 /* Skip '/'. */
949 gas_assert (*ptr == '/');
950 ptr++;
951 switch (TOLOWER (*ptr))
952 {
953 case 'z':
954 parsed_type->type = NT_zero;
955 break;
956 case 'm':
957 parsed_type->type = NT_merge;
958 break;
959 default:
960 if (*ptr != '\0' && *ptr != ',')
961 first_error_fmt (_("unexpected character `%c' in predication type"),
962 *ptr);
963 else
964 first_error (_("missing predication type"));
965 return FALSE;
966 }
967 parsed_type->width = 0;
968 *str = ptr + 1;
969 return TRUE;
970 }
971
972 /* Parse a register of the type TYPE.
973
974 Return PARSE_FAIL if the string pointed by *CCP is not a valid register
975 name or the parsed register is not of TYPE.
976
977 Otherwise return the register number, and optionally fill in the actual
978 type of the register in *RTYPE when multiple alternatives were given, and
979 return the register shape and element index information in *TYPEINFO.
980
981 IN_REG_LIST should be set with TRUE if the caller is parsing a register
982 list. */
983
984 static int
985 parse_typed_reg (char **ccp, aarch64_reg_type type, aarch64_reg_type *rtype,
986 struct vector_type_el *typeinfo, bfd_boolean in_reg_list)
987 {
988 char *str = *ccp;
989 const reg_entry *reg = parse_reg (&str);
990 struct vector_type_el atype;
991 struct vector_type_el parsetype;
992 bfd_boolean is_typed_vecreg = FALSE;
993
994 atype.defined = 0;
995 atype.type = NT_invtype;
996 atype.width = -1;
997 atype.index = 0;
998
999 if (reg == NULL)
1000 {
1001 if (typeinfo)
1002 *typeinfo = atype;
1003 set_default_error ();
1004 return PARSE_FAIL;
1005 }
1006
1007 if (! aarch64_check_reg_type (reg, type))
1008 {
1009 DEBUG_TRACE ("reg type check failed");
1010 set_default_error ();
1011 return PARSE_FAIL;
1012 }
1013 type = reg->type;
1014
1015 if ((type == REG_TYPE_VN || type == REG_TYPE_ZN || type == REG_TYPE_PN)
1016 && (*str == '.' || (type == REG_TYPE_PN && *str == '/')))
1017 {
1018 if (*str == '.')
1019 {
1020 if (!parse_vector_type_for_operand (type, &parsetype, &str))
1021 return PARSE_FAIL;
1022 }
1023 else
1024 {
1025 if (!parse_predication_for_operand (&parsetype, &str))
1026 return PARSE_FAIL;
1027 }
1028
1029 /* Register if of the form Vn.[bhsdq]. */
1030 is_typed_vecreg = TRUE;
1031
1032 if (type == REG_TYPE_ZN || type == REG_TYPE_PN)
1033 {
1034 /* The width is always variable; we don't allow an integer width
1035 to be specified. */
1036 gas_assert (parsetype.width == 0);
1037 atype.defined |= NTA_HASVARWIDTH | NTA_HASTYPE;
1038 }
1039 else if (parsetype.width == 0)
1040 /* Expect index. In the new scheme we cannot have
1041 Vn.[bhsdq] represent a scalar. Therefore any
1042 Vn.[bhsdq] should have an index following it.
1043 Except in reglists of course. */
1044 atype.defined |= NTA_HASINDEX;
1045 else
1046 atype.defined |= NTA_HASTYPE;
1047
1048 atype.type = parsetype.type;
1049 atype.width = parsetype.width;
1050 }
1051
1052 if (skip_past_char (&str, '['))
1053 {
1054 expressionS exp;
1055
1056 /* Reject Sn[index] syntax. */
1057 if (!is_typed_vecreg)
1058 {
1059 first_error (_("this type of register can't be indexed"));
1060 return PARSE_FAIL;
1061 }
1062
1063 if (in_reg_list)
1064 {
1065 first_error (_("index not allowed inside register list"));
1066 return PARSE_FAIL;
1067 }
1068
1069 atype.defined |= NTA_HASINDEX;
1070
1071 my_get_expression (&exp, &str, GE_NO_PREFIX, 1);
1072
1073 if (exp.X_op != O_constant)
1074 {
1075 first_error (_("constant expression required"));
1076 return PARSE_FAIL;
1077 }
1078
1079 if (! skip_past_char (&str, ']'))
1080 return PARSE_FAIL;
1081
1082 atype.index = exp.X_add_number;
1083 }
1084 else if (!in_reg_list && (atype.defined & NTA_HASINDEX) != 0)
1085 {
1086 /* Indexed vector register expected. */
1087 first_error (_("indexed vector register expected"));
1088 return PARSE_FAIL;
1089 }
1090
1091 /* A vector reg Vn should be typed or indexed. */
1092 if (type == REG_TYPE_VN && atype.defined == 0)
1093 {
1094 first_error (_("invalid use of vector register"));
1095 }
1096
1097 if (typeinfo)
1098 *typeinfo = atype;
1099
1100 if (rtype)
1101 *rtype = type;
1102
1103 *ccp = str;
1104
1105 return reg->number;
1106 }
1107
1108 /* Parse register.
1109
1110 Return the register number on success; return PARSE_FAIL otherwise.
1111
1112 If RTYPE is not NULL, return in *RTYPE the (possibly restricted) type of
1113 the register (e.g. NEON double or quad reg when either has been requested).
1114
1115 If this is a NEON vector register with additional type information, fill
1116 in the struct pointed to by VECTYPE (if non-NULL).
1117
1118 This parser does not handle register list. */
1119
1120 static int
1121 aarch64_reg_parse (char **ccp, aarch64_reg_type type,
1122 aarch64_reg_type *rtype, struct vector_type_el *vectype)
1123 {
1124 struct vector_type_el atype;
1125 char *str = *ccp;
1126 int reg = parse_typed_reg (&str, type, rtype, &atype,
1127 /*in_reg_list= */ FALSE);
1128
1129 if (reg == PARSE_FAIL)
1130 return PARSE_FAIL;
1131
1132 if (vectype)
1133 *vectype = atype;
1134
1135 *ccp = str;
1136
1137 return reg;
1138 }
1139
1140 static inline bfd_boolean
1141 eq_vector_type_el (struct vector_type_el e1, struct vector_type_el e2)
1142 {
1143 return
1144 e1.type == e2.type
1145 && e1.defined == e2.defined
1146 && e1.width == e2.width && e1.index == e2.index;
1147 }
1148
1149 /* This function parses a list of vector registers of type TYPE.
1150 On success, it returns the parsed register list information in the
1151 following encoded format:
1152
1153 bit 18-22 | 13-17 | 7-11 | 2-6 | 0-1
1154 4th regno | 3rd regno | 2nd regno | 1st regno | num_of_reg
1155
1156 The information of the register shape and/or index is returned in
1157 *VECTYPE.
1158
1159 It returns PARSE_FAIL if the register list is invalid.
1160
1161 The list contains one to four registers.
1162 Each register can be one of:
1163 <Vt>.<T>[<index>]
1164 <Vt>.<T>
1165 All <T> should be identical.
1166 All <index> should be identical.
1167 There are restrictions on <Vt> numbers which are checked later
1168 (by reg_list_valid_p). */
1169
1170 static int
1171 parse_vector_reg_list (char **ccp, aarch64_reg_type type,
1172 struct vector_type_el *vectype)
1173 {
1174 char *str = *ccp;
1175 int nb_regs;
1176 struct vector_type_el typeinfo, typeinfo_first;
1177 int val, val_range;
1178 int in_range;
1179 int ret_val;
1180 int i;
1181 bfd_boolean error = FALSE;
1182 bfd_boolean expect_index = FALSE;
1183
1184 if (*str != '{')
1185 {
1186 set_syntax_error (_("expecting {"));
1187 return PARSE_FAIL;
1188 }
1189 str++;
1190
1191 nb_regs = 0;
1192 typeinfo_first.defined = 0;
1193 typeinfo_first.type = NT_invtype;
1194 typeinfo_first.width = -1;
1195 typeinfo_first.index = 0;
1196 ret_val = 0;
1197 val = -1;
1198 val_range = -1;
1199 in_range = 0;
1200 do
1201 {
1202 if (in_range)
1203 {
1204 str++; /* skip over '-' */
1205 val_range = val;
1206 }
1207 val = parse_typed_reg (&str, type, NULL, &typeinfo,
1208 /*in_reg_list= */ TRUE);
1209 if (val == PARSE_FAIL)
1210 {
1211 set_first_syntax_error (_("invalid vector register in list"));
1212 error = TRUE;
1213 continue;
1214 }
1215 /* reject [bhsd]n */
1216 if (type == REG_TYPE_VN && typeinfo.defined == 0)
1217 {
1218 set_first_syntax_error (_("invalid scalar register in list"));
1219 error = TRUE;
1220 continue;
1221 }
1222
1223 if (typeinfo.defined & NTA_HASINDEX)
1224 expect_index = TRUE;
1225
1226 if (in_range)
1227 {
1228 if (val < val_range)
1229 {
1230 set_first_syntax_error
1231 (_("invalid range in vector register list"));
1232 error = TRUE;
1233 }
1234 val_range++;
1235 }
1236 else
1237 {
1238 val_range = val;
1239 if (nb_regs == 0)
1240 typeinfo_first = typeinfo;
1241 else if (! eq_vector_type_el (typeinfo_first, typeinfo))
1242 {
1243 set_first_syntax_error
1244 (_("type mismatch in vector register list"));
1245 error = TRUE;
1246 }
1247 }
1248 if (! error)
1249 for (i = val_range; i <= val; i++)
1250 {
1251 ret_val |= i << (5 * nb_regs);
1252 nb_regs++;
1253 }
1254 in_range = 0;
1255 }
1256 while (skip_past_comma (&str) || (in_range = 1, *str == '-'));
1257
1258 skip_whitespace (str);
1259 if (*str != '}')
1260 {
1261 set_first_syntax_error (_("end of vector register list not found"));
1262 error = TRUE;
1263 }
1264 str++;
1265
1266 skip_whitespace (str);
1267
1268 if (expect_index)
1269 {
1270 if (skip_past_char (&str, '['))
1271 {
1272 expressionS exp;
1273
1274 my_get_expression (&exp, &str, GE_NO_PREFIX, 1);
1275 if (exp.X_op != O_constant)
1276 {
1277 set_first_syntax_error (_("constant expression required."));
1278 error = TRUE;
1279 }
1280 if (! skip_past_char (&str, ']'))
1281 error = TRUE;
1282 else
1283 typeinfo_first.index = exp.X_add_number;
1284 }
1285 else
1286 {
1287 set_first_syntax_error (_("expected index"));
1288 error = TRUE;
1289 }
1290 }
1291
1292 if (nb_regs > 4)
1293 {
1294 set_first_syntax_error (_("too many registers in vector register list"));
1295 error = TRUE;
1296 }
1297 else if (nb_regs == 0)
1298 {
1299 set_first_syntax_error (_("empty vector register list"));
1300 error = TRUE;
1301 }
1302
1303 *ccp = str;
1304 if (! error)
1305 *vectype = typeinfo_first;
1306
1307 return error ? PARSE_FAIL : (ret_val << 2) | (nb_regs - 1);
1308 }
1309
1310 /* Directives: register aliases. */
1311
1312 static reg_entry *
1313 insert_reg_alias (char *str, int number, aarch64_reg_type type)
1314 {
1315 reg_entry *new;
1316 const char *name;
1317
1318 if ((new = hash_find (aarch64_reg_hsh, str)) != 0)
1319 {
1320 if (new->builtin)
1321 as_warn (_("ignoring attempt to redefine built-in register '%s'"),
1322 str);
1323
1324 /* Only warn about a redefinition if it's not defined as the
1325 same register. */
1326 else if (new->number != number || new->type != type)
1327 as_warn (_("ignoring redefinition of register alias '%s'"), str);
1328
1329 return NULL;
1330 }
1331
1332 name = xstrdup (str);
1333 new = XNEW (reg_entry);
1334
1335 new->name = name;
1336 new->number = number;
1337 new->type = type;
1338 new->builtin = FALSE;
1339
1340 if (hash_insert (aarch64_reg_hsh, name, (void *) new))
1341 abort ();
1342
1343 return new;
1344 }
1345
1346 /* Look for the .req directive. This is of the form:
1347
1348 new_register_name .req existing_register_name
1349
1350 If we find one, or if it looks sufficiently like one that we want to
1351 handle any error here, return TRUE. Otherwise return FALSE. */
1352
1353 static bfd_boolean
1354 create_register_alias (char *newname, char *p)
1355 {
1356 const reg_entry *old;
1357 char *oldname, *nbuf;
1358 size_t nlen;
1359
1360 /* The input scrubber ensures that whitespace after the mnemonic is
1361 collapsed to single spaces. */
1362 oldname = p;
1363 if (strncmp (oldname, " .req ", 6) != 0)
1364 return FALSE;
1365
1366 oldname += 6;
1367 if (*oldname == '\0')
1368 return FALSE;
1369
1370 old = hash_find (aarch64_reg_hsh, oldname);
1371 if (!old)
1372 {
1373 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
1374 return TRUE;
1375 }
1376
1377 /* If TC_CASE_SENSITIVE is defined, then newname already points to
1378 the desired alias name, and p points to its end. If not, then
1379 the desired alias name is in the global original_case_string. */
1380 #ifdef TC_CASE_SENSITIVE
1381 nlen = p - newname;
1382 #else
1383 newname = original_case_string;
1384 nlen = strlen (newname);
1385 #endif
1386
1387 nbuf = xmemdup0 (newname, nlen);
1388
1389 /* Create aliases under the new name as stated; an all-lowercase
1390 version of the new name; and an all-uppercase version of the new
1391 name. */
1392 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
1393 {
1394 for (p = nbuf; *p; p++)
1395 *p = TOUPPER (*p);
1396
1397 if (strncmp (nbuf, newname, nlen))
1398 {
1399 /* If this attempt to create an additional alias fails, do not bother
1400 trying to create the all-lower case alias. We will fail and issue
1401 a second, duplicate error message. This situation arises when the
1402 programmer does something like:
1403 foo .req r0
1404 Foo .req r1
1405 The second .req creates the "Foo" alias but then fails to create
1406 the artificial FOO alias because it has already been created by the
1407 first .req. */
1408 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
1409 {
1410 free (nbuf);
1411 return TRUE;
1412 }
1413 }
1414
1415 for (p = nbuf; *p; p++)
1416 *p = TOLOWER (*p);
1417
1418 if (strncmp (nbuf, newname, nlen))
1419 insert_reg_alias (nbuf, old->number, old->type);
1420 }
1421
1422 free (nbuf);
1423 return TRUE;
1424 }
1425
1426 /* Should never be called, as .req goes between the alias and the
1427 register name, not at the beginning of the line. */
1428 static void
1429 s_req (int a ATTRIBUTE_UNUSED)
1430 {
1431 as_bad (_("invalid syntax for .req directive"));
1432 }
1433
1434 /* The .unreq directive deletes an alias which was previously defined
1435 by .req. For example:
1436
1437 my_alias .req r11
1438 .unreq my_alias */
1439
1440 static void
1441 s_unreq (int a ATTRIBUTE_UNUSED)
1442 {
1443 char *name;
1444 char saved_char;
1445
1446 name = input_line_pointer;
1447
1448 while (*input_line_pointer != 0
1449 && *input_line_pointer != ' ' && *input_line_pointer != '\n')
1450 ++input_line_pointer;
1451
1452 saved_char = *input_line_pointer;
1453 *input_line_pointer = 0;
1454
1455 if (!*name)
1456 as_bad (_("invalid syntax for .unreq directive"));
1457 else
1458 {
1459 reg_entry *reg = hash_find (aarch64_reg_hsh, name);
1460
1461 if (!reg)
1462 as_bad (_("unknown register alias '%s'"), name);
1463 else if (reg->builtin)
1464 as_warn (_("ignoring attempt to undefine built-in register '%s'"),
1465 name);
1466 else
1467 {
1468 char *p;
1469 char *nbuf;
1470
1471 hash_delete (aarch64_reg_hsh, name, FALSE);
1472 free ((char *) reg->name);
1473 free (reg);
1474
1475 /* Also locate the all upper case and all lower case versions.
1476 Do not complain if we cannot find one or the other as it
1477 was probably deleted above. */
1478
1479 nbuf = strdup (name);
1480 for (p = nbuf; *p; p++)
1481 *p = TOUPPER (*p);
1482 reg = hash_find (aarch64_reg_hsh, nbuf);
1483 if (reg)
1484 {
1485 hash_delete (aarch64_reg_hsh, nbuf, FALSE);
1486 free ((char *) reg->name);
1487 free (reg);
1488 }
1489
1490 for (p = nbuf; *p; p++)
1491 *p = TOLOWER (*p);
1492 reg = hash_find (aarch64_reg_hsh, nbuf);
1493 if (reg)
1494 {
1495 hash_delete (aarch64_reg_hsh, nbuf, FALSE);
1496 free ((char *) reg->name);
1497 free (reg);
1498 }
1499
1500 free (nbuf);
1501 }
1502 }
1503
1504 *input_line_pointer = saved_char;
1505 demand_empty_rest_of_line ();
1506 }
1507
1508 /* Directives: Instruction set selection. */
1509
1510 #ifdef OBJ_ELF
1511 /* This code is to handle mapping symbols as defined in the ARM AArch64 ELF
1512 spec. (See "Mapping symbols", section 4.5.4, ARM AAELF64 version 0.05).
1513 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
1514 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
1515
1516 /* Create a new mapping symbol for the transition to STATE. */
1517
1518 static void
1519 make_mapping_symbol (enum mstate state, valueT value, fragS * frag)
1520 {
1521 symbolS *symbolP;
1522 const char *symname;
1523 int type;
1524
1525 switch (state)
1526 {
1527 case MAP_DATA:
1528 symname = "$d";
1529 type = BSF_NO_FLAGS;
1530 break;
1531 case MAP_INSN:
1532 symname = "$x";
1533 type = BSF_NO_FLAGS;
1534 break;
1535 default:
1536 abort ();
1537 }
1538
1539 symbolP = symbol_new (symname, now_seg, value, frag);
1540 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
1541
1542 /* Save the mapping symbols for future reference. Also check that
1543 we do not place two mapping symbols at the same offset within a
1544 frag. We'll handle overlap between frags in
1545 check_mapping_symbols.
1546
1547 If .fill or other data filling directive generates zero sized data,
1548 the mapping symbol for the following code will have the same value
1549 as the one generated for the data filling directive. In this case,
1550 we replace the old symbol with the new one at the same address. */
1551 if (value == 0)
1552 {
1553 if (frag->tc_frag_data.first_map != NULL)
1554 {
1555 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
1556 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP,
1557 &symbol_lastP);
1558 }
1559 frag->tc_frag_data.first_map = symbolP;
1560 }
1561 if (frag->tc_frag_data.last_map != NULL)
1562 {
1563 know (S_GET_VALUE (frag->tc_frag_data.last_map) <=
1564 S_GET_VALUE (symbolP));
1565 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
1566 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP,
1567 &symbol_lastP);
1568 }
1569 frag->tc_frag_data.last_map = symbolP;
1570 }
1571
1572 /* We must sometimes convert a region marked as code to data during
1573 code alignment, if an odd number of bytes have to be padded. The
1574 code mapping symbol is pushed to an aligned address. */
1575
1576 static void
1577 insert_data_mapping_symbol (enum mstate state,
1578 valueT value, fragS * frag, offsetT bytes)
1579 {
1580 /* If there was already a mapping symbol, remove it. */
1581 if (frag->tc_frag_data.last_map != NULL
1582 && S_GET_VALUE (frag->tc_frag_data.last_map) ==
1583 frag->fr_address + value)
1584 {
1585 symbolS *symp = frag->tc_frag_data.last_map;
1586
1587 if (value == 0)
1588 {
1589 know (frag->tc_frag_data.first_map == symp);
1590 frag->tc_frag_data.first_map = NULL;
1591 }
1592 frag->tc_frag_data.last_map = NULL;
1593 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1594 }
1595
1596 make_mapping_symbol (MAP_DATA, value, frag);
1597 make_mapping_symbol (state, value + bytes, frag);
1598 }
1599
1600 static void mapping_state_2 (enum mstate state, int max_chars);
1601
1602 /* Set the mapping state to STATE. Only call this when about to
1603 emit some STATE bytes to the file. */
1604
1605 void
1606 mapping_state (enum mstate state)
1607 {
1608 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
1609
1610 if (state == MAP_INSN)
1611 /* AArch64 instructions require 4-byte alignment. When emitting
1612 instructions into any section, record the appropriate section
1613 alignment. */
1614 record_alignment (now_seg, 2);
1615
1616 if (mapstate == state)
1617 /* The mapping symbol has already been emitted.
1618 There is nothing else to do. */
1619 return;
1620
1621 #define TRANSITION(from, to) (mapstate == (from) && state == (to))
1622 if (TRANSITION (MAP_UNDEFINED, MAP_DATA) && !subseg_text_p (now_seg))
1623 /* Emit MAP_DATA within executable section in order. Otherwise, it will be
1624 evaluated later in the next else. */
1625 return;
1626 else if (TRANSITION (MAP_UNDEFINED, MAP_INSN))
1627 {
1628 /* Only add the symbol if the offset is > 0:
1629 if we're at the first frag, check it's size > 0;
1630 if we're not at the first frag, then for sure
1631 the offset is > 0. */
1632 struct frag *const frag_first = seg_info (now_seg)->frchainP->frch_root;
1633 const int add_symbol = (frag_now != frag_first)
1634 || (frag_now_fix () > 0);
1635
1636 if (add_symbol)
1637 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
1638 }
1639 #undef TRANSITION
1640
1641 mapping_state_2 (state, 0);
1642 }
1643
1644 /* Same as mapping_state, but MAX_CHARS bytes have already been
1645 allocated. Put the mapping symbol that far back. */
1646
1647 static void
1648 mapping_state_2 (enum mstate state, int max_chars)
1649 {
1650 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
1651
1652 if (!SEG_NORMAL (now_seg))
1653 return;
1654
1655 if (mapstate == state)
1656 /* The mapping symbol has already been emitted.
1657 There is nothing else to do. */
1658 return;
1659
1660 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
1661 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
1662 }
1663 #else
1664 #define mapping_state(x) /* nothing */
1665 #define mapping_state_2(x, y) /* nothing */
1666 #endif
1667
1668 /* Directives: sectioning and alignment. */
1669
1670 static void
1671 s_bss (int ignore ATTRIBUTE_UNUSED)
1672 {
1673 /* We don't support putting frags in the BSS segment, we fake it by
1674 marking in_bss, then looking at s_skip for clues. */
1675 subseg_set (bss_section, 0);
1676 demand_empty_rest_of_line ();
1677 mapping_state (MAP_DATA);
1678 }
1679
1680 static void
1681 s_even (int ignore ATTRIBUTE_UNUSED)
1682 {
1683 /* Never make frag if expect extra pass. */
1684 if (!need_pass_2)
1685 frag_align (1, 0, 0);
1686
1687 record_alignment (now_seg, 1);
1688
1689 demand_empty_rest_of_line ();
1690 }
1691
1692 /* Directives: Literal pools. */
1693
1694 static literal_pool *
1695 find_literal_pool (int size)
1696 {
1697 literal_pool *pool;
1698
1699 for (pool = list_of_pools; pool != NULL; pool = pool->next)
1700 {
1701 if (pool->section == now_seg
1702 && pool->sub_section == now_subseg && pool->size == size)
1703 break;
1704 }
1705
1706 return pool;
1707 }
1708
1709 static literal_pool *
1710 find_or_make_literal_pool (int size)
1711 {
1712 /* Next literal pool ID number. */
1713 static unsigned int latest_pool_num = 1;
1714 literal_pool *pool;
1715
1716 pool = find_literal_pool (size);
1717
1718 if (pool == NULL)
1719 {
1720 /* Create a new pool. */
1721 pool = XNEW (literal_pool);
1722 if (!pool)
1723 return NULL;
1724
1725 /* Currently we always put the literal pool in the current text
1726 section. If we were generating "small" model code where we
1727 knew that all code and initialised data was within 1MB then
1728 we could output literals to mergeable, read-only data
1729 sections. */
1730
1731 pool->next_free_entry = 0;
1732 pool->section = now_seg;
1733 pool->sub_section = now_subseg;
1734 pool->size = size;
1735 pool->next = list_of_pools;
1736 pool->symbol = NULL;
1737
1738 /* Add it to the list. */
1739 list_of_pools = pool;
1740 }
1741
1742 /* New pools, and emptied pools, will have a NULL symbol. */
1743 if (pool->symbol == NULL)
1744 {
1745 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
1746 (valueT) 0, &zero_address_frag);
1747 pool->id = latest_pool_num++;
1748 }
1749
1750 /* Done. */
1751 return pool;
1752 }
1753
1754 /* Add the literal of size SIZE in *EXP to the relevant literal pool.
1755 Return TRUE on success, otherwise return FALSE. */
1756 static bfd_boolean
1757 add_to_lit_pool (expressionS *exp, int size)
1758 {
1759 literal_pool *pool;
1760 unsigned int entry;
1761
1762 pool = find_or_make_literal_pool (size);
1763
1764 /* Check if this literal value is already in the pool. */
1765 for (entry = 0; entry < pool->next_free_entry; entry++)
1766 {
1767 expressionS * litexp = & pool->literals[entry].exp;
1768
1769 if ((litexp->X_op == exp->X_op)
1770 && (exp->X_op == O_constant)
1771 && (litexp->X_add_number == exp->X_add_number)
1772 && (litexp->X_unsigned == exp->X_unsigned))
1773 break;
1774
1775 if ((litexp->X_op == exp->X_op)
1776 && (exp->X_op == O_symbol)
1777 && (litexp->X_add_number == exp->X_add_number)
1778 && (litexp->X_add_symbol == exp->X_add_symbol)
1779 && (litexp->X_op_symbol == exp->X_op_symbol))
1780 break;
1781 }
1782
1783 /* Do we need to create a new entry? */
1784 if (entry == pool->next_free_entry)
1785 {
1786 if (entry >= MAX_LITERAL_POOL_SIZE)
1787 {
1788 set_syntax_error (_("literal pool overflow"));
1789 return FALSE;
1790 }
1791
1792 pool->literals[entry].exp = *exp;
1793 pool->next_free_entry += 1;
1794 if (exp->X_op == O_big)
1795 {
1796 /* PR 16688: Bignums are held in a single global array. We must
1797 copy and preserve that value now, before it is overwritten. */
1798 pool->literals[entry].bignum = XNEWVEC (LITTLENUM_TYPE,
1799 exp->X_add_number);
1800 memcpy (pool->literals[entry].bignum, generic_bignum,
1801 CHARS_PER_LITTLENUM * exp->X_add_number);
1802 }
1803 else
1804 pool->literals[entry].bignum = NULL;
1805 }
1806
1807 exp->X_op = O_symbol;
1808 exp->X_add_number = ((int) entry) * size;
1809 exp->X_add_symbol = pool->symbol;
1810
1811 return TRUE;
1812 }
1813
1814 /* Can't use symbol_new here, so have to create a symbol and then at
1815 a later date assign it a value. That's what these functions do. */
1816
1817 static void
1818 symbol_locate (symbolS * symbolP,
1819 const char *name,/* It is copied, the caller can modify. */
1820 segT segment, /* Segment identifier (SEG_<something>). */
1821 valueT valu, /* Symbol value. */
1822 fragS * frag) /* Associated fragment. */
1823 {
1824 size_t name_length;
1825 char *preserved_copy_of_name;
1826
1827 name_length = strlen (name) + 1; /* +1 for \0. */
1828 obstack_grow (&notes, name, name_length);
1829 preserved_copy_of_name = obstack_finish (&notes);
1830
1831 #ifdef tc_canonicalize_symbol_name
1832 preserved_copy_of_name =
1833 tc_canonicalize_symbol_name (preserved_copy_of_name);
1834 #endif
1835
1836 S_SET_NAME (symbolP, preserved_copy_of_name);
1837
1838 S_SET_SEGMENT (symbolP, segment);
1839 S_SET_VALUE (symbolP, valu);
1840 symbol_clear_list_pointers (symbolP);
1841
1842 symbol_set_frag (symbolP, frag);
1843
1844 /* Link to end of symbol chain. */
1845 {
1846 extern int symbol_table_frozen;
1847
1848 if (symbol_table_frozen)
1849 abort ();
1850 }
1851
1852 symbol_append (symbolP, symbol_lastP, &symbol_rootP, &symbol_lastP);
1853
1854 obj_symbol_new_hook (symbolP);
1855
1856 #ifdef tc_symbol_new_hook
1857 tc_symbol_new_hook (symbolP);
1858 #endif
1859
1860 #ifdef DEBUG_SYMS
1861 verify_symbol_chain (symbol_rootP, symbol_lastP);
1862 #endif /* DEBUG_SYMS */
1863 }
1864
1865
1866 static void
1867 s_ltorg (int ignored ATTRIBUTE_UNUSED)
1868 {
1869 unsigned int entry;
1870 literal_pool *pool;
1871 char sym_name[20];
1872 int align;
1873
1874 for (align = 2; align <= 4; align++)
1875 {
1876 int size = 1 << align;
1877
1878 pool = find_literal_pool (size);
1879 if (pool == NULL || pool->symbol == NULL || pool->next_free_entry == 0)
1880 continue;
1881
1882 /* Align pool as you have word accesses.
1883 Only make a frag if we have to. */
1884 if (!need_pass_2)
1885 frag_align (align, 0, 0);
1886
1887 mapping_state (MAP_DATA);
1888
1889 record_alignment (now_seg, align);
1890
1891 sprintf (sym_name, "$$lit_\002%x", pool->id);
1892
1893 symbol_locate (pool->symbol, sym_name, now_seg,
1894 (valueT) frag_now_fix (), frag_now);
1895 symbol_table_insert (pool->symbol);
1896
1897 for (entry = 0; entry < pool->next_free_entry; entry++)
1898 {
1899 expressionS * exp = & pool->literals[entry].exp;
1900
1901 if (exp->X_op == O_big)
1902 {
1903 /* PR 16688: Restore the global bignum value. */
1904 gas_assert (pool->literals[entry].bignum != NULL);
1905 memcpy (generic_bignum, pool->literals[entry].bignum,
1906 CHARS_PER_LITTLENUM * exp->X_add_number);
1907 }
1908
1909 /* First output the expression in the instruction to the pool. */
1910 emit_expr (exp, size); /* .word|.xword */
1911
1912 if (exp->X_op == O_big)
1913 {
1914 free (pool->literals[entry].bignum);
1915 pool->literals[entry].bignum = NULL;
1916 }
1917 }
1918
1919 /* Mark the pool as empty. */
1920 pool->next_free_entry = 0;
1921 pool->symbol = NULL;
1922 }
1923 }
1924
1925 #ifdef OBJ_ELF
1926 /* Forward declarations for functions below, in the MD interface
1927 section. */
1928 static fixS *fix_new_aarch64 (fragS *, int, short, expressionS *, int, int);
1929 static struct reloc_table_entry * find_reloc_table_entry (char **);
1930
1931 /* Directives: Data. */
1932 /* N.B. the support for relocation suffix in this directive needs to be
1933 implemented properly. */
1934
1935 static void
1936 s_aarch64_elf_cons (int nbytes)
1937 {
1938 expressionS exp;
1939
1940 #ifdef md_flush_pending_output
1941 md_flush_pending_output ();
1942 #endif
1943
1944 if (is_it_end_of_statement ())
1945 {
1946 demand_empty_rest_of_line ();
1947 return;
1948 }
1949
1950 #ifdef md_cons_align
1951 md_cons_align (nbytes);
1952 #endif
1953
1954 mapping_state (MAP_DATA);
1955 do
1956 {
1957 struct reloc_table_entry *reloc;
1958
1959 expression (&exp);
1960
1961 if (exp.X_op != O_symbol)
1962 emit_expr (&exp, (unsigned int) nbytes);
1963 else
1964 {
1965 skip_past_char (&input_line_pointer, '#');
1966 if (skip_past_char (&input_line_pointer, ':'))
1967 {
1968 reloc = find_reloc_table_entry (&input_line_pointer);
1969 if (reloc == NULL)
1970 as_bad (_("unrecognized relocation suffix"));
1971 else
1972 as_bad (_("unimplemented relocation suffix"));
1973 ignore_rest_of_line ();
1974 return;
1975 }
1976 else
1977 emit_expr (&exp, (unsigned int) nbytes);
1978 }
1979 }
1980 while (*input_line_pointer++ == ',');
1981
1982 /* Put terminator back into stream. */
1983 input_line_pointer--;
1984 demand_empty_rest_of_line ();
1985 }
1986
1987 /* Mark symbol that it follows a variant PCS convention. */
1988
1989 static void
1990 s_variant_pcs (int ignored ATTRIBUTE_UNUSED)
1991 {
1992 char *name;
1993 char c;
1994 symbolS *sym;
1995 asymbol *bfdsym;
1996 elf_symbol_type *elfsym;
1997
1998 c = get_symbol_name (&name);
1999 if (!*name)
2000 as_bad (_("Missing symbol name in directive"));
2001 sym = symbol_find_or_make (name);
2002 restore_line_pointer (c);
2003 demand_empty_rest_of_line ();
2004 bfdsym = symbol_get_bfdsym (sym);
2005 elfsym = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
2006 gas_assert (elfsym);
2007 elfsym->internal_elf_sym.st_other |= STO_AARCH64_VARIANT_PCS;
2008 }
2009 #endif /* OBJ_ELF */
2010
2011 /* Output a 32-bit word, but mark as an instruction. */
2012
2013 static void
2014 s_aarch64_inst (int ignored ATTRIBUTE_UNUSED)
2015 {
2016 expressionS exp;
2017
2018 #ifdef md_flush_pending_output
2019 md_flush_pending_output ();
2020 #endif
2021
2022 if (is_it_end_of_statement ())
2023 {
2024 demand_empty_rest_of_line ();
2025 return;
2026 }
2027
2028 /* Sections are assumed to start aligned. In executable section, there is no
2029 MAP_DATA symbol pending. So we only align the address during
2030 MAP_DATA --> MAP_INSN transition.
2031 For other sections, this is not guaranteed. */
2032 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2033 if (!need_pass_2 && subseg_text_p (now_seg) && mapstate == MAP_DATA)
2034 frag_align_code (2, 0);
2035
2036 #ifdef OBJ_ELF
2037 mapping_state (MAP_INSN);
2038 #endif
2039
2040 do
2041 {
2042 expression (&exp);
2043 if (exp.X_op != O_constant)
2044 {
2045 as_bad (_("constant expression required"));
2046 ignore_rest_of_line ();
2047 return;
2048 }
2049
2050 if (target_big_endian)
2051 {
2052 unsigned int val = exp.X_add_number;
2053 exp.X_add_number = SWAP_32 (val);
2054 }
2055 emit_expr (&exp, 4);
2056 }
2057 while (*input_line_pointer++ == ',');
2058
2059 /* Put terminator back into stream. */
2060 input_line_pointer--;
2061 demand_empty_rest_of_line ();
2062 }
2063
2064 static void
2065 s_aarch64_cfi_b_key_frame (int ignored ATTRIBUTE_UNUSED)
2066 {
2067 demand_empty_rest_of_line ();
2068 struct fde_entry *fde = frchain_now->frch_cfi_data->cur_fde_data;
2069 fde->pauth_key = AARCH64_PAUTH_KEY_B;
2070 }
2071
2072 #ifdef OBJ_ELF
2073 /* Emit BFD_RELOC_AARCH64_TLSDESC_ADD on the next ADD instruction. */
2074
2075 static void
2076 s_tlsdescadd (int ignored ATTRIBUTE_UNUSED)
2077 {
2078 expressionS exp;
2079
2080 expression (&exp);
2081 frag_grow (4);
2082 fix_new_aarch64 (frag_now, frag_more (0) - frag_now->fr_literal, 4, &exp, 0,
2083 BFD_RELOC_AARCH64_TLSDESC_ADD);
2084
2085 demand_empty_rest_of_line ();
2086 }
2087
2088 /* Emit BFD_RELOC_AARCH64_TLSDESC_CALL on the next BLR instruction. */
2089
2090 static void
2091 s_tlsdesccall (int ignored ATTRIBUTE_UNUSED)
2092 {
2093 expressionS exp;
2094
2095 /* Since we're just labelling the code, there's no need to define a
2096 mapping symbol. */
2097 expression (&exp);
2098 /* Make sure there is enough room in this frag for the following
2099 blr. This trick only works if the blr follows immediately after
2100 the .tlsdesc directive. */
2101 frag_grow (4);
2102 fix_new_aarch64 (frag_now, frag_more (0) - frag_now->fr_literal, 4, &exp, 0,
2103 BFD_RELOC_AARCH64_TLSDESC_CALL);
2104
2105 demand_empty_rest_of_line ();
2106 }
2107
2108 /* Emit BFD_RELOC_AARCH64_TLSDESC_LDR on the next LDR instruction. */
2109
2110 static void
2111 s_tlsdescldr (int ignored ATTRIBUTE_UNUSED)
2112 {
2113 expressionS exp;
2114
2115 expression (&exp);
2116 frag_grow (4);
2117 fix_new_aarch64 (frag_now, frag_more (0) - frag_now->fr_literal, 4, &exp, 0,
2118 BFD_RELOC_AARCH64_TLSDESC_LDR);
2119
2120 demand_empty_rest_of_line ();
2121 }
2122 #endif /* OBJ_ELF */
2123
2124 static void s_aarch64_arch (int);
2125 static void s_aarch64_cpu (int);
2126 static void s_aarch64_arch_extension (int);
2127
2128 /* This table describes all the machine specific pseudo-ops the assembler
2129 has to support. The fields are:
2130 pseudo-op name without dot
2131 function to call to execute this pseudo-op
2132 Integer arg to pass to the function. */
2133
2134 const pseudo_typeS md_pseudo_table[] = {
2135 /* Never called because '.req' does not start a line. */
2136 {"req", s_req, 0},
2137 {"unreq", s_unreq, 0},
2138 {"bss", s_bss, 0},
2139 {"even", s_even, 0},
2140 {"ltorg", s_ltorg, 0},
2141 {"pool", s_ltorg, 0},
2142 {"cpu", s_aarch64_cpu, 0},
2143 {"arch", s_aarch64_arch, 0},
2144 {"arch_extension", s_aarch64_arch_extension, 0},
2145 {"inst", s_aarch64_inst, 0},
2146 {"cfi_b_key_frame", s_aarch64_cfi_b_key_frame, 0},
2147 #ifdef OBJ_ELF
2148 {"tlsdescadd", s_tlsdescadd, 0},
2149 {"tlsdesccall", s_tlsdesccall, 0},
2150 {"tlsdescldr", s_tlsdescldr, 0},
2151 {"word", s_aarch64_elf_cons, 4},
2152 {"long", s_aarch64_elf_cons, 4},
2153 {"xword", s_aarch64_elf_cons, 8},
2154 {"dword", s_aarch64_elf_cons, 8},
2155 {"variant_pcs", s_variant_pcs, 0},
2156 #endif
2157 {"float16", float_cons, 'h'},
2158 {"bfloat16", float_cons, 'b'},
2159 {0, 0, 0}
2160 };
2161 \f
2162
2163 /* Check whether STR points to a register name followed by a comma or the
2164 end of line; REG_TYPE indicates which register types are checked
2165 against. Return TRUE if STR is such a register name; otherwise return
2166 FALSE. The function does not intend to produce any diagnostics, but since
2167 the register parser aarch64_reg_parse, which is called by this function,
2168 does produce diagnostics, we call clear_error to clear any diagnostics
2169 that may be generated by aarch64_reg_parse.
2170 Also, the function returns FALSE directly if there is any user error
2171 present at the function entry. This prevents the existing diagnostics
2172 state from being spoiled.
2173 The function currently serves parse_constant_immediate and
2174 parse_big_immediate only. */
2175 static bfd_boolean
2176 reg_name_p (char *str, aarch64_reg_type reg_type)
2177 {
2178 int reg;
2179
2180 /* Prevent the diagnostics state from being spoiled. */
2181 if (error_p ())
2182 return FALSE;
2183
2184 reg = aarch64_reg_parse (&str, reg_type, NULL, NULL);
2185
2186 /* Clear the parsing error that may be set by the reg parser. */
2187 clear_error ();
2188
2189 if (reg == PARSE_FAIL)
2190 return FALSE;
2191
2192 skip_whitespace (str);
2193 if (*str == ',' || is_end_of_line[(unsigned int) *str])
2194 return TRUE;
2195
2196 return FALSE;
2197 }
2198
2199 /* Parser functions used exclusively in instruction operands. */
2200
2201 /* Parse an immediate expression which may not be constant.
2202
2203 To prevent the expression parser from pushing a register name
2204 into the symbol table as an undefined symbol, firstly a check is
2205 done to find out whether STR is a register of type REG_TYPE followed
2206 by a comma or the end of line. Return FALSE if STR is such a string. */
2207
2208 static bfd_boolean
2209 parse_immediate_expression (char **str, expressionS *exp,
2210 aarch64_reg_type reg_type)
2211 {
2212 if (reg_name_p (*str, reg_type))
2213 {
2214 set_recoverable_error (_("immediate operand required"));
2215 return FALSE;
2216 }
2217
2218 my_get_expression (exp, str, GE_OPT_PREFIX, 1);
2219
2220 if (exp->X_op == O_absent)
2221 {
2222 set_fatal_syntax_error (_("missing immediate expression"));
2223 return FALSE;
2224 }
2225
2226 return TRUE;
2227 }
2228
2229 /* Constant immediate-value read function for use in insn parsing.
2230 STR points to the beginning of the immediate (with the optional
2231 leading #); *VAL receives the value. REG_TYPE says which register
2232 names should be treated as registers rather than as symbolic immediates.
2233
2234 Return TRUE on success; otherwise return FALSE. */
2235
2236 static bfd_boolean
2237 parse_constant_immediate (char **str, int64_t *val, aarch64_reg_type reg_type)
2238 {
2239 expressionS exp;
2240
2241 if (! parse_immediate_expression (str, &exp, reg_type))
2242 return FALSE;
2243
2244 if (exp.X_op != O_constant)
2245 {
2246 set_syntax_error (_("constant expression required"));
2247 return FALSE;
2248 }
2249
2250 *val = exp.X_add_number;
2251 return TRUE;
2252 }
2253
2254 static uint32_t
2255 encode_imm_float_bits (uint32_t imm)
2256 {
2257 return ((imm >> 19) & 0x7f) /* b[25:19] -> b[6:0] */
2258 | ((imm >> (31 - 7)) & 0x80); /* b[31] -> b[7] */
2259 }
2260
2261 /* Return TRUE if the single-precision floating-point value encoded in IMM
2262 can be expressed in the AArch64 8-bit signed floating-point format with
2263 3-bit exponent and normalized 4 bits of precision; in other words, the
2264 floating-point value must be expressable as
2265 (+/-) n / 16 * power (2, r)
2266 where n and r are integers such that 16 <= n <=31 and -3 <= r <= 4. */
2267
2268 static bfd_boolean
2269 aarch64_imm_float_p (uint32_t imm)
2270 {
2271 /* If a single-precision floating-point value has the following bit
2272 pattern, it can be expressed in the AArch64 8-bit floating-point
2273 format:
2274
2275 3 32222222 2221111111111
2276 1 09876543 21098765432109876543210
2277 n Eeeeeexx xxxx0000000000000000000
2278
2279 where n, e and each x are either 0 or 1 independently, with
2280 E == ~ e. */
2281
2282 uint32_t pattern;
2283
2284 /* Prepare the pattern for 'Eeeeee'. */
2285 if (((imm >> 30) & 0x1) == 0)
2286 pattern = 0x3e000000;
2287 else
2288 pattern = 0x40000000;
2289
2290 return (imm & 0x7ffff) == 0 /* lower 19 bits are 0. */
2291 && ((imm & 0x7e000000) == pattern); /* bits 25 - 29 == ~ bit 30. */
2292 }
2293
2294 /* Return TRUE if the IEEE double value encoded in IMM can be expressed
2295 as an IEEE float without any loss of precision. Store the value in
2296 *FPWORD if so. */
2297
2298 static bfd_boolean
2299 can_convert_double_to_float (uint64_t imm, uint32_t *fpword)
2300 {
2301 /* If a double-precision floating-point value has the following bit
2302 pattern, it can be expressed in a float:
2303
2304 6 66655555555 5544 44444444 33333333 33222222 22221111 111111
2305 3 21098765432 1098 76543210 98765432 10987654 32109876 54321098 76543210
2306 n E~~~eeeeeee ssss ssssssss ssssssss SSS00000 00000000 00000000 00000000
2307
2308 -----------------------------> nEeeeeee esssssss ssssssss sssssSSS
2309 if Eeee_eeee != 1111_1111
2310
2311 where n, e, s and S are either 0 or 1 independently and where ~ is the
2312 inverse of E. */
2313
2314 uint32_t pattern;
2315 uint32_t high32 = imm >> 32;
2316 uint32_t low32 = imm;
2317
2318 /* Lower 29 bits need to be 0s. */
2319 if ((imm & 0x1fffffff) != 0)
2320 return FALSE;
2321
2322 /* Prepare the pattern for 'Eeeeeeeee'. */
2323 if (((high32 >> 30) & 0x1) == 0)
2324 pattern = 0x38000000;
2325 else
2326 pattern = 0x40000000;
2327
2328 /* Check E~~~. */
2329 if ((high32 & 0x78000000) != pattern)
2330 return FALSE;
2331
2332 /* Check Eeee_eeee != 1111_1111. */
2333 if ((high32 & 0x7ff00000) == 0x47f00000)
2334 return FALSE;
2335
2336 *fpword = ((high32 & 0xc0000000) /* 1 n bit and 1 E bit. */
2337 | ((high32 << 3) & 0x3ffffff8) /* 7 e and 20 s bits. */
2338 | (low32 >> 29)); /* 3 S bits. */
2339 return TRUE;
2340 }
2341
2342 /* Return true if we should treat OPERAND as a double-precision
2343 floating-point operand rather than a single-precision one. */
2344 static bfd_boolean
2345 double_precision_operand_p (const aarch64_opnd_info *operand)
2346 {
2347 /* Check for unsuffixed SVE registers, which are allowed
2348 for LDR and STR but not in instructions that require an
2349 immediate. We get better error messages if we arbitrarily
2350 pick one size, parse the immediate normally, and then
2351 report the match failure in the normal way. */
2352 return (operand->qualifier == AARCH64_OPND_QLF_NIL
2353 || aarch64_get_qualifier_esize (operand->qualifier) == 8);
2354 }
2355
2356 /* Parse a floating-point immediate. Return TRUE on success and return the
2357 value in *IMMED in the format of IEEE754 single-precision encoding.
2358 *CCP points to the start of the string; DP_P is TRUE when the immediate
2359 is expected to be in double-precision (N.B. this only matters when
2360 hexadecimal representation is involved). REG_TYPE says which register
2361 names should be treated as registers rather than as symbolic immediates.
2362
2363 This routine accepts any IEEE float; it is up to the callers to reject
2364 invalid ones. */
2365
2366 static bfd_boolean
2367 parse_aarch64_imm_float (char **ccp, int *immed, bfd_boolean dp_p,
2368 aarch64_reg_type reg_type)
2369 {
2370 char *str = *ccp;
2371 char *fpnum;
2372 LITTLENUM_TYPE words[MAX_LITTLENUMS];
2373 int64_t val = 0;
2374 unsigned fpword = 0;
2375 bfd_boolean hex_p = FALSE;
2376
2377 skip_past_char (&str, '#');
2378
2379 fpnum = str;
2380 skip_whitespace (fpnum);
2381
2382 if (strncmp (fpnum, "0x", 2) == 0)
2383 {
2384 /* Support the hexadecimal representation of the IEEE754 encoding.
2385 Double-precision is expected when DP_P is TRUE, otherwise the
2386 representation should be in single-precision. */
2387 if (! parse_constant_immediate (&str, &val, reg_type))
2388 goto invalid_fp;
2389
2390 if (dp_p)
2391 {
2392 if (!can_convert_double_to_float (val, &fpword))
2393 goto invalid_fp;
2394 }
2395 else if ((uint64_t) val > 0xffffffff)
2396 goto invalid_fp;
2397 else
2398 fpword = val;
2399
2400 hex_p = TRUE;
2401 }
2402 else if (reg_name_p (str, reg_type))
2403 {
2404 set_recoverable_error (_("immediate operand required"));
2405 return FALSE;
2406 }
2407
2408 if (! hex_p)
2409 {
2410 int i;
2411
2412 if ((str = atof_ieee (str, 's', words)) == NULL)
2413 goto invalid_fp;
2414
2415 /* Our FP word must be 32 bits (single-precision FP). */
2416 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
2417 {
2418 fpword <<= LITTLENUM_NUMBER_OF_BITS;
2419 fpword |= words[i];
2420 }
2421 }
2422
2423 *immed = fpword;
2424 *ccp = str;
2425 return TRUE;
2426
2427 invalid_fp:
2428 set_fatal_syntax_error (_("invalid floating-point constant"));
2429 return FALSE;
2430 }
2431
2432 /* Less-generic immediate-value read function with the possibility of loading
2433 a big (64-bit) immediate, as required by AdvSIMD Modified immediate
2434 instructions.
2435
2436 To prevent the expression parser from pushing a register name into the
2437 symbol table as an undefined symbol, a check is firstly done to find
2438 out whether STR is a register of type REG_TYPE followed by a comma or
2439 the end of line. Return FALSE if STR is such a register. */
2440
2441 static bfd_boolean
2442 parse_big_immediate (char **str, int64_t *imm, aarch64_reg_type reg_type)
2443 {
2444 char *ptr = *str;
2445
2446 if (reg_name_p (ptr, reg_type))
2447 {
2448 set_syntax_error (_("immediate operand required"));
2449 return FALSE;
2450 }
2451
2452 my_get_expression (&inst.reloc.exp, &ptr, GE_OPT_PREFIX, 1);
2453
2454 if (inst.reloc.exp.X_op == O_constant)
2455 *imm = inst.reloc.exp.X_add_number;
2456
2457 *str = ptr;
2458
2459 return TRUE;
2460 }
2461
2462 /* Set operand IDX of the *INSTR that needs a GAS internal fixup.
2463 if NEED_LIBOPCODES is non-zero, the fixup will need
2464 assistance from the libopcodes. */
2465
2466 static inline void
2467 aarch64_set_gas_internal_fixup (struct reloc *reloc,
2468 const aarch64_opnd_info *operand,
2469 int need_libopcodes_p)
2470 {
2471 reloc->type = BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP;
2472 reloc->opnd = operand->type;
2473 if (need_libopcodes_p)
2474 reloc->need_libopcodes_p = 1;
2475 };
2476
2477 /* Return TRUE if the instruction needs to be fixed up later internally by
2478 the GAS; otherwise return FALSE. */
2479
2480 static inline bfd_boolean
2481 aarch64_gas_internal_fixup_p (void)
2482 {
2483 return inst.reloc.type == BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP;
2484 }
2485
2486 /* Assign the immediate value to the relevant field in *OPERAND if
2487 RELOC->EXP is a constant expression; otherwise, flag that *OPERAND
2488 needs an internal fixup in a later stage.
2489 ADDR_OFF_P determines whether it is the field ADDR.OFFSET.IMM or
2490 IMM.VALUE that may get assigned with the constant. */
2491 static inline void
2492 assign_imm_if_const_or_fixup_later (struct reloc *reloc,
2493 aarch64_opnd_info *operand,
2494 int addr_off_p,
2495 int need_libopcodes_p,
2496 int skip_p)
2497 {
2498 if (reloc->exp.X_op == O_constant)
2499 {
2500 if (addr_off_p)
2501 operand->addr.offset.imm = reloc->exp.X_add_number;
2502 else
2503 operand->imm.value = reloc->exp.X_add_number;
2504 reloc->type = BFD_RELOC_UNUSED;
2505 }
2506 else
2507 {
2508 aarch64_set_gas_internal_fixup (reloc, operand, need_libopcodes_p);
2509 /* Tell libopcodes to ignore this operand or not. This is helpful
2510 when one of the operands needs to be fixed up later but we need
2511 libopcodes to check the other operands. */
2512 operand->skip = skip_p;
2513 }
2514 }
2515
2516 /* Relocation modifiers. Each entry in the table contains the textual
2517 name for the relocation which may be placed before a symbol used as
2518 a load/store offset, or add immediate. It must be surrounded by a
2519 leading and trailing colon, for example:
2520
2521 ldr x0, [x1, #:rello:varsym]
2522 add x0, x1, #:rello:varsym */
2523
2524 struct reloc_table_entry
2525 {
2526 const char *name;
2527 int pc_rel;
2528 bfd_reloc_code_real_type adr_type;
2529 bfd_reloc_code_real_type adrp_type;
2530 bfd_reloc_code_real_type movw_type;
2531 bfd_reloc_code_real_type add_type;
2532 bfd_reloc_code_real_type ldst_type;
2533 bfd_reloc_code_real_type ld_literal_type;
2534 };
2535
2536 static struct reloc_table_entry reloc_table[] = {
2537 /* Low 12 bits of absolute address: ADD/i and LDR/STR */
2538 {"lo12", 0,
2539 0, /* adr_type */
2540 0,
2541 0,
2542 BFD_RELOC_AARCH64_ADD_LO12,
2543 BFD_RELOC_AARCH64_LDST_LO12,
2544 0},
2545
2546 /* Higher 21 bits of pc-relative page offset: ADRP */
2547 {"pg_hi21", 1,
2548 0, /* adr_type */
2549 BFD_RELOC_AARCH64_ADR_HI21_PCREL,
2550 0,
2551 0,
2552 0,
2553 0},
2554
2555 /* Higher 21 bits of pc-relative page offset: ADRP, no check */
2556 {"pg_hi21_nc", 1,
2557 0, /* adr_type */
2558 BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL,
2559 0,
2560 0,
2561 0,
2562 0},
2563
2564 /* Most significant bits 0-15 of unsigned address/value: MOVZ */
2565 {"abs_g0", 0,
2566 0, /* adr_type */
2567 0,
2568 BFD_RELOC_AARCH64_MOVW_G0,
2569 0,
2570 0,
2571 0},
2572
2573 /* Most significant bits 0-15 of signed address/value: MOVN/Z */
2574 {"abs_g0_s", 0,
2575 0, /* adr_type */
2576 0,
2577 BFD_RELOC_AARCH64_MOVW_G0_S,
2578 0,
2579 0,
2580 0},
2581
2582 /* Less significant bits 0-15 of address/value: MOVK, no check */
2583 {"abs_g0_nc", 0,
2584 0, /* adr_type */
2585 0,
2586 BFD_RELOC_AARCH64_MOVW_G0_NC,
2587 0,
2588 0,
2589 0},
2590
2591 /* Most significant bits 16-31 of unsigned address/value: MOVZ */
2592 {"abs_g1", 0,
2593 0, /* adr_type */
2594 0,
2595 BFD_RELOC_AARCH64_MOVW_G1,
2596 0,
2597 0,
2598 0},
2599
2600 /* Most significant bits 16-31 of signed address/value: MOVN/Z */
2601 {"abs_g1_s", 0,
2602 0, /* adr_type */
2603 0,
2604 BFD_RELOC_AARCH64_MOVW_G1_S,
2605 0,
2606 0,
2607 0},
2608
2609 /* Less significant bits 16-31 of address/value: MOVK, no check */
2610 {"abs_g1_nc", 0,
2611 0, /* adr_type */
2612 0,
2613 BFD_RELOC_AARCH64_MOVW_G1_NC,
2614 0,
2615 0,
2616 0},
2617
2618 /* Most significant bits 32-47 of unsigned address/value: MOVZ */
2619 {"abs_g2", 0,
2620 0, /* adr_type */
2621 0,
2622 BFD_RELOC_AARCH64_MOVW_G2,
2623 0,
2624 0,
2625 0},
2626
2627 /* Most significant bits 32-47 of signed address/value: MOVN/Z */
2628 {"abs_g2_s", 0,
2629 0, /* adr_type */
2630 0,
2631 BFD_RELOC_AARCH64_MOVW_G2_S,
2632 0,
2633 0,
2634 0},
2635
2636 /* Less significant bits 32-47 of address/value: MOVK, no check */
2637 {"abs_g2_nc", 0,
2638 0, /* adr_type */
2639 0,
2640 BFD_RELOC_AARCH64_MOVW_G2_NC,
2641 0,
2642 0,
2643 0},
2644
2645 /* Most significant bits 48-63 of signed/unsigned address/value: MOVZ */
2646 {"abs_g3", 0,
2647 0, /* adr_type */
2648 0,
2649 BFD_RELOC_AARCH64_MOVW_G3,
2650 0,
2651 0,
2652 0},
2653
2654 /* Most significant bits 0-15 of signed/unsigned address/value: MOVZ */
2655 {"prel_g0", 1,
2656 0, /* adr_type */
2657 0,
2658 BFD_RELOC_AARCH64_MOVW_PREL_G0,
2659 0,
2660 0,
2661 0},
2662
2663 /* Most significant bits 0-15 of signed/unsigned address/value: MOVK */
2664 {"prel_g0_nc", 1,
2665 0, /* adr_type */
2666 0,
2667 BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
2668 0,
2669 0,
2670 0},
2671
2672 /* Most significant bits 16-31 of signed/unsigned address/value: MOVZ */
2673 {"prel_g1", 1,
2674 0, /* adr_type */
2675 0,
2676 BFD_RELOC_AARCH64_MOVW_PREL_G1,
2677 0,
2678 0,
2679 0},
2680
2681 /* Most significant bits 16-31 of signed/unsigned address/value: MOVK */
2682 {"prel_g1_nc", 1,
2683 0, /* adr_type */
2684 0,
2685 BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
2686 0,
2687 0,
2688 0},
2689
2690 /* Most significant bits 32-47 of signed/unsigned address/value: MOVZ */
2691 {"prel_g2", 1,
2692 0, /* adr_type */
2693 0,
2694 BFD_RELOC_AARCH64_MOVW_PREL_G2,
2695 0,
2696 0,
2697 0},
2698
2699 /* Most significant bits 32-47 of signed/unsigned address/value: MOVK */
2700 {"prel_g2_nc", 1,
2701 0, /* adr_type */
2702 0,
2703 BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
2704 0,
2705 0,
2706 0},
2707
2708 /* Most significant bits 48-63 of signed/unsigned address/value: MOVZ */
2709 {"prel_g3", 1,
2710 0, /* adr_type */
2711 0,
2712 BFD_RELOC_AARCH64_MOVW_PREL_G3,
2713 0,
2714 0,
2715 0},
2716
2717 /* Get to the page containing GOT entry for a symbol. */
2718 {"got", 1,
2719 0, /* adr_type */
2720 BFD_RELOC_AARCH64_ADR_GOT_PAGE,
2721 0,
2722 0,
2723 0,
2724 BFD_RELOC_AARCH64_GOT_LD_PREL19},
2725
2726 /* 12 bit offset into the page containing GOT entry for that symbol. */
2727 {"got_lo12", 0,
2728 0, /* adr_type */
2729 0,
2730 0,
2731 0,
2732 BFD_RELOC_AARCH64_LD_GOT_LO12_NC,
2733 0},
2734
2735 /* 0-15 bits of address/value: MOVk, no check. */
2736 {"gotoff_g0_nc", 0,
2737 0, /* adr_type */
2738 0,
2739 BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC,
2740 0,
2741 0,
2742 0},
2743
2744 /* Most significant bits 16-31 of address/value: MOVZ. */
2745 {"gotoff_g1", 0,
2746 0, /* adr_type */
2747 0,
2748 BFD_RELOC_AARCH64_MOVW_GOTOFF_G1,
2749 0,
2750 0,
2751 0},
2752
2753 /* 15 bit offset into the page containing GOT entry for that symbol. */
2754 {"gotoff_lo15", 0,
2755 0, /* adr_type */
2756 0,
2757 0,
2758 0,
2759 BFD_RELOC_AARCH64_LD64_GOTOFF_LO15,
2760 0},
2761
2762 /* Get to the page containing GOT TLS entry for a symbol */
2763 {"gottprel_g0_nc", 0,
2764 0, /* adr_type */
2765 0,
2766 BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC,
2767 0,
2768 0,
2769 0},
2770
2771 /* Get to the page containing GOT TLS entry for a symbol */
2772 {"gottprel_g1", 0,
2773 0, /* adr_type */
2774 0,
2775 BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1,
2776 0,
2777 0,
2778 0},
2779
2780 /* Get to the page containing GOT TLS entry for a symbol */
2781 {"tlsgd", 0,
2782 BFD_RELOC_AARCH64_TLSGD_ADR_PREL21, /* adr_type */
2783 BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21,
2784 0,
2785 0,
2786 0,
2787 0},
2788
2789 /* 12 bit offset into the page containing GOT TLS entry for a symbol */
2790 {"tlsgd_lo12", 0,
2791 0, /* adr_type */
2792 0,
2793 0,
2794 BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC,
2795 0,
2796 0},
2797
2798 /* Lower 16 bits address/value: MOVk. */
2799 {"tlsgd_g0_nc", 0,
2800 0, /* adr_type */
2801 0,
2802 BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC,
2803 0,
2804 0,
2805 0},
2806
2807 /* Most significant bits 16-31 of address/value: MOVZ. */
2808 {"tlsgd_g1", 0,
2809 0, /* adr_type */
2810 0,
2811 BFD_RELOC_AARCH64_TLSGD_MOVW_G1,
2812 0,
2813 0,
2814 0},
2815
2816 /* Get to the page containing GOT TLS entry for a symbol */
2817 {"tlsdesc", 0,
2818 BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21, /* adr_type */
2819 BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21,
2820 0,
2821 0,
2822 0,
2823 BFD_RELOC_AARCH64_TLSDESC_LD_PREL19},
2824
2825 /* 12 bit offset into the page containing GOT TLS entry for a symbol */
2826 {"tlsdesc_lo12", 0,
2827 0, /* adr_type */
2828 0,
2829 0,
2830 BFD_RELOC_AARCH64_TLSDESC_ADD_LO12,
2831 BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC,
2832 0},
2833
2834 /* Get to the page containing GOT TLS entry for a symbol.
2835 The same as GD, we allocate two consecutive GOT slots
2836 for module index and module offset, the only difference
2837 with GD is the module offset should be initialized to
2838 zero without any outstanding runtime relocation. */
2839 {"tlsldm", 0,
2840 BFD_RELOC_AARCH64_TLSLD_ADR_PREL21, /* adr_type */
2841 BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21,
2842 0,
2843 0,
2844 0,
2845 0},
2846
2847 /* 12 bit offset into the page containing GOT TLS entry for a symbol */
2848 {"tlsldm_lo12_nc", 0,
2849 0, /* adr_type */
2850 0,
2851 0,
2852 BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC,
2853 0,
2854 0},
2855
2856 /* 12 bit offset into the module TLS base address. */
2857 {"dtprel_lo12", 0,
2858 0, /* adr_type */
2859 0,
2860 0,
2861 BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12,
2862 BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12,
2863 0},
2864
2865 /* Same as dtprel_lo12, no overflow check. */
2866 {"dtprel_lo12_nc", 0,
2867 0, /* adr_type */
2868 0,
2869 0,
2870 BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC,
2871 BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC,
2872 0},
2873
2874 /* bits[23:12] of offset to the module TLS base address. */
2875 {"dtprel_hi12", 0,
2876 0, /* adr_type */
2877 0,
2878 0,
2879 BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12,
2880 0,
2881 0},
2882
2883 /* bits[15:0] of offset to the module TLS base address. */
2884 {"dtprel_g0", 0,
2885 0, /* adr_type */
2886 0,
2887 BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0,
2888 0,
2889 0,
2890 0},
2891
2892 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0. */
2893 {"dtprel_g0_nc", 0,
2894 0, /* adr_type */
2895 0,
2896 BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC,
2897 0,
2898 0,
2899 0},
2900
2901 /* bits[31:16] of offset to the module TLS base address. */
2902 {"dtprel_g1", 0,
2903 0, /* adr_type */
2904 0,
2905 BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1,
2906 0,
2907 0,
2908 0},
2909
2910 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1. */
2911 {"dtprel_g1_nc", 0,
2912 0, /* adr_type */
2913 0,
2914 BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC,
2915 0,
2916 0,
2917 0},
2918
2919 /* bits[47:32] of offset to the module TLS base address. */
2920 {"dtprel_g2", 0,
2921 0, /* adr_type */
2922 0,
2923 BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2,
2924 0,
2925 0,
2926 0},
2927
2928 /* Lower 16 bit offset into GOT entry for a symbol */
2929 {"tlsdesc_off_g0_nc", 0,
2930 0, /* adr_type */
2931 0,
2932 BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC,
2933 0,
2934 0,
2935 0},
2936
2937 /* Higher 16 bit offset into GOT entry for a symbol */
2938 {"tlsdesc_off_g1", 0,
2939 0, /* adr_type */
2940 0,
2941 BFD_RELOC_AARCH64_TLSDESC_OFF_G1,
2942 0,
2943 0,
2944 0},
2945
2946 /* Get to the page containing GOT TLS entry for a symbol */
2947 {"gottprel", 0,
2948 0, /* adr_type */
2949 BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21,
2950 0,
2951 0,
2952 0,
2953 BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19},
2954
2955 /* 12 bit offset into the page containing GOT TLS entry for a symbol */
2956 {"gottprel_lo12", 0,
2957 0, /* adr_type */
2958 0,
2959 0,
2960 0,
2961 BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC,
2962 0},
2963
2964 /* Get tp offset for a symbol. */
2965 {"tprel", 0,
2966 0, /* adr_type */
2967 0,
2968 0,
2969 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12,
2970 0,
2971 0},
2972
2973 /* Get tp offset for a symbol. */
2974 {"tprel_lo12", 0,
2975 0, /* adr_type */
2976 0,
2977 0,
2978 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12,
2979 BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12,
2980 0},
2981
2982 /* Get tp offset for a symbol. */
2983 {"tprel_hi12", 0,
2984 0, /* adr_type */
2985 0,
2986 0,
2987 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12,
2988 0,
2989 0},
2990
2991 /* Get tp offset for a symbol. */
2992 {"tprel_lo12_nc", 0,
2993 0, /* adr_type */
2994 0,
2995 0,
2996 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC,
2997 BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC,
2998 0},
2999
3000 /* Most significant bits 32-47 of address/value: MOVZ. */
3001 {"tprel_g2", 0,
3002 0, /* adr_type */
3003 0,
3004 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2,
3005 0,
3006 0,
3007 0},
3008
3009 /* Most significant bits 16-31 of address/value: MOVZ. */
3010 {"tprel_g1", 0,
3011 0, /* adr_type */
3012 0,
3013 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1,
3014 0,
3015 0,
3016 0},
3017
3018 /* Most significant bits 16-31 of address/value: MOVZ, no check. */
3019 {"tprel_g1_nc", 0,
3020 0, /* adr_type */
3021 0,
3022 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC,
3023 0,
3024 0,
3025 0},
3026
3027 /* Most significant bits 0-15 of address/value: MOVZ. */
3028 {"tprel_g0", 0,
3029 0, /* adr_type */
3030 0,
3031 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0,
3032 0,
3033 0,
3034 0},
3035
3036 /* Most significant bits 0-15 of address/value: MOVZ, no check. */
3037 {"tprel_g0_nc", 0,
3038 0, /* adr_type */
3039 0,
3040 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC,
3041 0,
3042 0,
3043 0},
3044
3045 /* 15bit offset from got entry to base address of GOT table. */
3046 {"gotpage_lo15", 0,
3047 0,
3048 0,
3049 0,
3050 0,
3051 BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15,
3052 0},
3053
3054 /* 14bit offset from got entry to base address of GOT table. */
3055 {"gotpage_lo14", 0,
3056 0,
3057 0,
3058 0,
3059 0,
3060 BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14,
3061 0},
3062 };
3063
3064 /* Given the address of a pointer pointing to the textual name of a
3065 relocation as may appear in assembler source, attempt to find its
3066 details in reloc_table. The pointer will be updated to the character
3067 after the trailing colon. On failure, NULL will be returned;
3068 otherwise return the reloc_table_entry. */
3069
3070 static struct reloc_table_entry *
3071 find_reloc_table_entry (char **str)
3072 {
3073 unsigned int i;
3074 for (i = 0; i < ARRAY_SIZE (reloc_table); i++)
3075 {
3076 int length = strlen (reloc_table[i].name);
3077
3078 if (strncasecmp (reloc_table[i].name, *str, length) == 0
3079 && (*str)[length] == ':')
3080 {
3081 *str += (length + 1);
3082 return &reloc_table[i];
3083 }
3084 }
3085
3086 return NULL;
3087 }
3088
3089 /* Mode argument to parse_shift and parser_shifter_operand. */
3090 enum parse_shift_mode
3091 {
3092 SHIFTED_NONE, /* no shifter allowed */
3093 SHIFTED_ARITH_IMM, /* "rn{,lsl|lsr|asl|asr|uxt|sxt #n}" or
3094 "#imm{,lsl #n}" */
3095 SHIFTED_LOGIC_IMM, /* "rn{,lsl|lsr|asl|asr|ror #n}" or
3096 "#imm" */
3097 SHIFTED_LSL, /* bare "lsl #n" */
3098 SHIFTED_MUL, /* bare "mul #n" */
3099 SHIFTED_LSL_MSL, /* "lsl|msl #n" */
3100 SHIFTED_MUL_VL, /* "mul vl" */
3101 SHIFTED_REG_OFFSET /* [su]xtw|sxtx {#n} or lsl #n */
3102 };
3103
3104 /* Parse a <shift> operator on an AArch64 data processing instruction.
3105 Return TRUE on success; otherwise return FALSE. */
3106 static bfd_boolean
3107 parse_shift (char **str, aarch64_opnd_info *operand, enum parse_shift_mode mode)
3108 {
3109 const struct aarch64_name_value_pair *shift_op;
3110 enum aarch64_modifier_kind kind;
3111 expressionS exp;
3112 int exp_has_prefix;
3113 char *s = *str;
3114 char *p = s;
3115
3116 for (p = *str; ISALPHA (*p); p++)
3117 ;
3118
3119 if (p == *str)
3120 {
3121 set_syntax_error (_("shift expression expected"));
3122 return FALSE;
3123 }
3124
3125 shift_op = hash_find_n (aarch64_shift_hsh, *str, p - *str);
3126
3127 if (shift_op == NULL)
3128 {
3129 set_syntax_error (_("shift operator expected"));
3130 return FALSE;
3131 }
3132
3133 kind = aarch64_get_operand_modifier (shift_op);
3134
3135 if (kind == AARCH64_MOD_MSL && mode != SHIFTED_LSL_MSL)
3136 {
3137 set_syntax_error (_("invalid use of 'MSL'"));
3138 return FALSE;
3139 }
3140
3141 if (kind == AARCH64_MOD_MUL
3142 && mode != SHIFTED_MUL
3143 && mode != SHIFTED_MUL_VL)
3144 {
3145 set_syntax_error (_("invalid use of 'MUL'"));
3146 return FALSE;
3147 }
3148
3149 switch (mode)
3150 {
3151 case SHIFTED_LOGIC_IMM:
3152 if (aarch64_extend_operator_p (kind))
3153 {
3154 set_syntax_error (_("extending shift is not permitted"));
3155 return FALSE;
3156 }
3157 break;
3158
3159 case SHIFTED_ARITH_IMM:
3160 if (kind == AARCH64_MOD_ROR)
3161 {
3162 set_syntax_error (_("'ROR' shift is not permitted"));
3163 return FALSE;
3164 }
3165 break;
3166
3167 case SHIFTED_LSL:
3168 if (kind != AARCH64_MOD_LSL)
3169 {
3170 set_syntax_error (_("only 'LSL' shift is permitted"));
3171 return FALSE;
3172 }
3173 break;
3174
3175 case SHIFTED_MUL:
3176 if (kind != AARCH64_MOD_MUL)
3177 {
3178 set_syntax_error (_("only 'MUL' is permitted"));
3179 return FALSE;
3180 }
3181 break;
3182
3183 case SHIFTED_MUL_VL:
3184 /* "MUL VL" consists of two separate tokens. Require the first
3185 token to be "MUL" and look for a following "VL". */
3186 if (kind == AARCH64_MOD_MUL)
3187 {
3188 skip_whitespace (p);
3189 if (strncasecmp (p, "vl", 2) == 0 && !ISALPHA (p[2]))
3190 {
3191 p += 2;
3192 kind = AARCH64_MOD_MUL_VL;
3193 break;
3194 }
3195 }
3196 set_syntax_error (_("only 'MUL VL' is permitted"));
3197 return FALSE;
3198
3199 case SHIFTED_REG_OFFSET:
3200 if (kind != AARCH64_MOD_UXTW && kind != AARCH64_MOD_LSL
3201 && kind != AARCH64_MOD_SXTW && kind != AARCH64_MOD_SXTX)
3202 {
3203 set_fatal_syntax_error
3204 (_("invalid shift for the register offset addressing mode"));
3205 return FALSE;
3206 }
3207 break;
3208
3209 case SHIFTED_LSL_MSL:
3210 if (kind != AARCH64_MOD_LSL && kind != AARCH64_MOD_MSL)
3211 {
3212 set_syntax_error (_("invalid shift operator"));
3213 return FALSE;
3214 }
3215 break;
3216
3217 default:
3218 abort ();
3219 }
3220
3221 /* Whitespace can appear here if the next thing is a bare digit. */
3222 skip_whitespace (p);
3223
3224 /* Parse shift amount. */
3225 exp_has_prefix = 0;
3226 if ((mode == SHIFTED_REG_OFFSET && *p == ']') || kind == AARCH64_MOD_MUL_VL)
3227 exp.X_op = O_absent;
3228 else
3229 {
3230 if (is_immediate_prefix (*p))
3231 {
3232 p++;
3233 exp_has_prefix = 1;
3234 }
3235 my_get_expression (&exp, &p, GE_NO_PREFIX, 0);
3236 }
3237 if (kind == AARCH64_MOD_MUL_VL)
3238 /* For consistency, give MUL VL the same shift amount as an implicit
3239 MUL #1. */
3240 operand->shifter.amount = 1;
3241 else if (exp.X_op == O_absent)
3242 {
3243 if (!aarch64_extend_operator_p (kind) || exp_has_prefix)
3244 {
3245 set_syntax_error (_("missing shift amount"));
3246 return FALSE;
3247 }
3248 operand->shifter.amount = 0;
3249 }
3250 else if (exp.X_op != O_constant)
3251 {
3252 set_syntax_error (_("constant shift amount required"));
3253 return FALSE;
3254 }
3255 /* For parsing purposes, MUL #n has no inherent range. The range
3256 depends on the operand and will be checked by operand-specific
3257 routines. */
3258 else if (kind != AARCH64_MOD_MUL
3259 && (exp.X_add_number < 0 || exp.X_add_number > 63))
3260 {
3261 set_fatal_syntax_error (_("shift amount out of range 0 to 63"));
3262 return FALSE;
3263 }
3264 else
3265 {
3266 operand->shifter.amount = exp.X_add_number;
3267 operand->shifter.amount_present = 1;
3268 }
3269
3270 operand->shifter.operator_present = 1;
3271 operand->shifter.kind = kind;
3272
3273 *str = p;
3274 return TRUE;
3275 }
3276
3277 /* Parse a <shifter_operand> for a data processing instruction:
3278
3279 #<immediate>
3280 #<immediate>, LSL #imm
3281
3282 Validation of immediate operands is deferred to md_apply_fix.
3283
3284 Return TRUE on success; otherwise return FALSE. */
3285
3286 static bfd_boolean
3287 parse_shifter_operand_imm (char **str, aarch64_opnd_info *operand,
3288 enum parse_shift_mode mode)
3289 {
3290 char *p;
3291
3292 if (mode != SHIFTED_ARITH_IMM && mode != SHIFTED_LOGIC_IMM)
3293 return FALSE;
3294
3295 p = *str;
3296
3297 /* Accept an immediate expression. */
3298 if (! my_get_expression (&inst.reloc.exp, &p, GE_OPT_PREFIX, 1))
3299 return FALSE;
3300
3301 /* Accept optional LSL for arithmetic immediate values. */
3302 if (mode == SHIFTED_ARITH_IMM && skip_past_comma (&p))
3303 if (! parse_shift (&p, operand, SHIFTED_LSL))
3304 return FALSE;
3305
3306 /* Not accept any shifter for logical immediate values. */
3307 if (mode == SHIFTED_LOGIC_IMM && skip_past_comma (&p)
3308 && parse_shift (&p, operand, mode))
3309 {
3310 set_syntax_error (_("unexpected shift operator"));
3311 return FALSE;
3312 }
3313
3314 *str = p;
3315 return TRUE;
3316 }
3317
3318 /* Parse a <shifter_operand> for a data processing instruction:
3319
3320 <Rm>
3321 <Rm>, <shift>
3322 #<immediate>
3323 #<immediate>, LSL #imm
3324
3325 where <shift> is handled by parse_shift above, and the last two
3326 cases are handled by the function above.
3327
3328 Validation of immediate operands is deferred to md_apply_fix.
3329
3330 Return TRUE on success; otherwise return FALSE. */
3331
3332 static bfd_boolean
3333 parse_shifter_operand (char **str, aarch64_opnd_info *operand,
3334 enum parse_shift_mode mode)
3335 {
3336 const reg_entry *reg;
3337 aarch64_opnd_qualifier_t qualifier;
3338 enum aarch64_operand_class opd_class
3339 = aarch64_get_operand_class (operand->type);
3340
3341 reg = aarch64_reg_parse_32_64 (str, &qualifier);
3342 if (reg)
3343 {
3344 if (opd_class == AARCH64_OPND_CLASS_IMMEDIATE)
3345 {
3346 set_syntax_error (_("unexpected register in the immediate operand"));
3347 return FALSE;
3348 }
3349
3350 if (!aarch64_check_reg_type (reg, REG_TYPE_R_Z))
3351 {
3352 set_syntax_error (_(get_reg_expected_msg (REG_TYPE_R_Z)));
3353 return FALSE;
3354 }
3355
3356 operand->reg.regno = reg->number;
3357 operand->qualifier = qualifier;
3358
3359 /* Accept optional shift operation on register. */
3360 if (! skip_past_comma (str))
3361 return TRUE;
3362
3363 if (! parse_shift (str, operand, mode))
3364 return FALSE;
3365
3366 return TRUE;
3367 }
3368 else if (opd_class == AARCH64_OPND_CLASS_MODIFIED_REG)
3369 {
3370 set_syntax_error
3371 (_("integer register expected in the extended/shifted operand "
3372 "register"));
3373 return FALSE;
3374 }
3375
3376 /* We have a shifted immediate variable. */
3377 return parse_shifter_operand_imm (str, operand, mode);
3378 }
3379
3380 /* Return TRUE on success; return FALSE otherwise. */
3381
3382 static bfd_boolean
3383 parse_shifter_operand_reloc (char **str, aarch64_opnd_info *operand,
3384 enum parse_shift_mode mode)
3385 {
3386 char *p = *str;
3387
3388 /* Determine if we have the sequence of characters #: or just :
3389 coming next. If we do, then we check for a :rello: relocation
3390 modifier. If we don't, punt the whole lot to
3391 parse_shifter_operand. */
3392
3393 if ((p[0] == '#' && p[1] == ':') || p[0] == ':')
3394 {
3395 struct reloc_table_entry *entry;
3396
3397 if (p[0] == '#')
3398 p += 2;
3399 else
3400 p++;
3401 *str = p;
3402
3403 /* Try to parse a relocation. Anything else is an error. */
3404 if (!(entry = find_reloc_table_entry (str)))
3405 {
3406 set_syntax_error (_("unknown relocation modifier"));
3407 return FALSE;
3408 }
3409
3410 if (entry->add_type == 0)
3411 {
3412 set_syntax_error
3413 (_("this relocation modifier is not allowed on this instruction"));
3414 return FALSE;
3415 }
3416
3417 /* Save str before we decompose it. */
3418 p = *str;
3419
3420 /* Next, we parse the expression. */
3421 if (! my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX, 1))
3422 return FALSE;
3423
3424 /* Record the relocation type (use the ADD variant here). */
3425 inst.reloc.type = entry->add_type;
3426 inst.reloc.pc_rel = entry->pc_rel;
3427
3428 /* If str is empty, we've reached the end, stop here. */
3429 if (**str == '\0')
3430 return TRUE;
3431
3432 /* Otherwise, we have a shifted reloc modifier, so rewind to
3433 recover the variable name and continue parsing for the shifter. */
3434 *str = p;
3435 return parse_shifter_operand_imm (str, operand, mode);
3436 }
3437
3438 return parse_shifter_operand (str, operand, mode);
3439 }
3440
3441 /* Parse all forms of an address expression. Information is written
3442 to *OPERAND and/or inst.reloc.
3443
3444 The A64 instruction set has the following addressing modes:
3445
3446 Offset
3447 [base] // in SIMD ld/st structure
3448 [base{,#0}] // in ld/st exclusive
3449 [base{,#imm}]
3450 [base,Xm{,LSL #imm}]
3451 [base,Xm,SXTX {#imm}]
3452 [base,Wm,(S|U)XTW {#imm}]
3453 Pre-indexed
3454 [base]! // in ldraa/ldrab exclusive
3455 [base,#imm]!
3456 Post-indexed
3457 [base],#imm
3458 [base],Xm // in SIMD ld/st structure
3459 PC-relative (literal)
3460 label
3461 SVE:
3462 [base,#imm,MUL VL]
3463 [base,Zm.D{,LSL #imm}]
3464 [base,Zm.S,(S|U)XTW {#imm}]
3465 [base,Zm.D,(S|U)XTW {#imm}] // ignores top 32 bits of Zm.D elements
3466 [Zn.S,#imm]
3467 [Zn.D,#imm]
3468 [Zn.S{, Xm}]
3469 [Zn.S,Zm.S{,LSL #imm}] // in ADR
3470 [Zn.D,Zm.D{,LSL #imm}] // in ADR
3471 [Zn.D,Zm.D,(S|U)XTW {#imm}] // in ADR
3472
3473 (As a convenience, the notation "=immediate" is permitted in conjunction
3474 with the pc-relative literal load instructions to automatically place an
3475 immediate value or symbolic address in a nearby literal pool and generate
3476 a hidden label which references it.)
3477
3478 Upon a successful parsing, the address structure in *OPERAND will be
3479 filled in the following way:
3480
3481 .base_regno = <base>
3482 .offset.is_reg // 1 if the offset is a register
3483 .offset.imm = <imm>
3484 .offset.regno = <Rm>
3485
3486 For different addressing modes defined in the A64 ISA:
3487
3488 Offset
3489 .pcrel=0; .preind=1; .postind=0; .writeback=0
3490 Pre-indexed
3491 .pcrel=0; .preind=1; .postind=0; .writeback=1
3492 Post-indexed
3493 .pcrel=0; .preind=0; .postind=1; .writeback=1
3494 PC-relative (literal)
3495 .pcrel=1; .preind=1; .postind=0; .writeback=0
3496
3497 The shift/extension information, if any, will be stored in .shifter.
3498 The base and offset qualifiers will be stored in *BASE_QUALIFIER and
3499 *OFFSET_QUALIFIER respectively, with NIL being used if there's no
3500 corresponding register.
3501
3502 BASE_TYPE says which types of base register should be accepted and
3503 OFFSET_TYPE says the same for offset registers. IMM_SHIFT_MODE
3504 is the type of shifter that is allowed for immediate offsets,
3505 or SHIFTED_NONE if none.
3506
3507 In all other respects, it is the caller's responsibility to check
3508 for addressing modes not supported by the instruction, and to set
3509 inst.reloc.type. */
3510
3511 static bfd_boolean
3512 parse_address_main (char **str, aarch64_opnd_info *operand,
3513 aarch64_opnd_qualifier_t *base_qualifier,
3514 aarch64_opnd_qualifier_t *offset_qualifier,
3515 aarch64_reg_type base_type, aarch64_reg_type offset_type,
3516 enum parse_shift_mode imm_shift_mode)
3517 {
3518 char *p = *str;
3519 const reg_entry *reg;
3520 expressionS *exp = &inst.reloc.exp;
3521
3522 *base_qualifier = AARCH64_OPND_QLF_NIL;
3523 *offset_qualifier = AARCH64_OPND_QLF_NIL;
3524 if (! skip_past_char (&p, '['))
3525 {
3526 /* =immediate or label. */
3527 operand->addr.pcrel = 1;
3528 operand->addr.preind = 1;
3529
3530 /* #:<reloc_op>:<symbol> */
3531 skip_past_char (&p, '#');
3532 if (skip_past_char (&p, ':'))
3533 {
3534 bfd_reloc_code_real_type ty;
3535 struct reloc_table_entry *entry;
3536
3537 /* Try to parse a relocation modifier. Anything else is
3538 an error. */
3539 entry = find_reloc_table_entry (&p);
3540 if (! entry)
3541 {
3542 set_syntax_error (_("unknown relocation modifier"));
3543 return FALSE;
3544 }
3545
3546 switch (operand->type)
3547 {
3548 case AARCH64_OPND_ADDR_PCREL21:
3549 /* adr */
3550 ty = entry->adr_type;
3551 break;
3552
3553 default:
3554 ty = entry->ld_literal_type;
3555 break;
3556 }
3557
3558 if (ty == 0)
3559 {
3560 set_syntax_error
3561 (_("this relocation modifier is not allowed on this "
3562 "instruction"));
3563 return FALSE;
3564 }
3565
3566 /* #:<reloc_op>: */
3567 if (! my_get_expression (exp, &p, GE_NO_PREFIX, 1))
3568 {
3569 set_syntax_error (_("invalid relocation expression"));
3570 return FALSE;
3571 }
3572
3573 /* #:<reloc_op>:<expr> */
3574 /* Record the relocation type. */
3575 inst.reloc.type = ty;
3576 inst.reloc.pc_rel = entry->pc_rel;
3577 }
3578 else
3579 {
3580
3581 if (skip_past_char (&p, '='))
3582 /* =immediate; need to generate the literal in the literal pool. */
3583 inst.gen_lit_pool = 1;
3584
3585 if (!my_get_expression (exp, &p, GE_NO_PREFIX, 1))
3586 {
3587 set_syntax_error (_("invalid address"));
3588 return FALSE;
3589 }
3590 }
3591
3592 *str = p;
3593 return TRUE;
3594 }
3595
3596 /* [ */
3597
3598 reg = aarch64_addr_reg_parse (&p, base_type, base_qualifier);
3599 if (!reg || !aarch64_check_reg_type (reg, base_type))
3600 {
3601 set_syntax_error (_(get_reg_expected_msg (base_type)));
3602 return FALSE;
3603 }
3604 operand->addr.base_regno = reg->number;
3605
3606 /* [Xn */
3607 if (skip_past_comma (&p))
3608 {
3609 /* [Xn, */
3610 operand->addr.preind = 1;
3611
3612 reg = aarch64_addr_reg_parse (&p, offset_type, offset_qualifier);
3613 if (reg)
3614 {
3615 if (!aarch64_check_reg_type (reg, offset_type))
3616 {
3617 set_syntax_error (_(get_reg_expected_msg (offset_type)));
3618 return FALSE;
3619 }
3620
3621 /* [Xn,Rm */
3622 operand->addr.offset.regno = reg->number;
3623 operand->addr.offset.is_reg = 1;
3624 /* Shifted index. */
3625 if (skip_past_comma (&p))
3626 {
3627 /* [Xn,Rm, */
3628 if (! parse_shift (&p, operand, SHIFTED_REG_OFFSET))
3629 /* Use the diagnostics set in parse_shift, so not set new
3630 error message here. */
3631 return FALSE;
3632 }
3633 /* We only accept:
3634 [base,Xm] # For vector plus scalar SVE2 indexing.
3635 [base,Xm{,LSL #imm}]
3636 [base,Xm,SXTX {#imm}]
3637 [base,Wm,(S|U)XTW {#imm}] */
3638 if (operand->shifter.kind == AARCH64_MOD_NONE
3639 || operand->shifter.kind == AARCH64_MOD_LSL
3640 || operand->shifter.kind == AARCH64_MOD_SXTX)
3641 {
3642 if (*offset_qualifier == AARCH64_OPND_QLF_W)
3643 {
3644 set_syntax_error (_("invalid use of 32-bit register offset"));
3645 return FALSE;
3646 }
3647 if (aarch64_get_qualifier_esize (*base_qualifier)
3648 != aarch64_get_qualifier_esize (*offset_qualifier)
3649 && (operand->type != AARCH64_OPND_SVE_ADDR_ZX
3650 || *base_qualifier != AARCH64_OPND_QLF_S_S
3651 || *offset_qualifier != AARCH64_OPND_QLF_X))
3652 {
3653 set_syntax_error (_("offset has different size from base"));
3654 return FALSE;
3655 }
3656 }
3657 else if (*offset_qualifier == AARCH64_OPND_QLF_X)
3658 {
3659 set_syntax_error (_("invalid use of 64-bit register offset"));
3660 return FALSE;
3661 }
3662 }
3663 else
3664 {
3665 /* [Xn,#:<reloc_op>:<symbol> */
3666 skip_past_char (&p, '#');
3667 if (skip_past_char (&p, ':'))
3668 {
3669 struct reloc_table_entry *entry;
3670
3671 /* Try to parse a relocation modifier. Anything else is
3672 an error. */
3673 if (!(entry = find_reloc_table_entry (&p)))
3674 {
3675 set_syntax_error (_("unknown relocation modifier"));
3676 return FALSE;
3677 }
3678
3679 if (entry->ldst_type == 0)
3680 {
3681 set_syntax_error
3682 (_("this relocation modifier is not allowed on this "
3683 "instruction"));
3684 return FALSE;
3685 }
3686
3687 /* [Xn,#:<reloc_op>: */
3688 /* We now have the group relocation table entry corresponding to
3689 the name in the assembler source. Next, we parse the
3690 expression. */
3691 if (! my_get_expression (exp, &p, GE_NO_PREFIX, 1))
3692 {
3693 set_syntax_error (_("invalid relocation expression"));
3694 return FALSE;
3695 }
3696
3697 /* [Xn,#:<reloc_op>:<expr> */
3698 /* Record the load/store relocation type. */
3699 inst.reloc.type = entry->ldst_type;
3700 inst.reloc.pc_rel = entry->pc_rel;
3701 }
3702 else
3703 {
3704 if (! my_get_expression (exp, &p, GE_OPT_PREFIX, 1))
3705 {
3706 set_syntax_error (_("invalid expression in the address"));
3707 return FALSE;
3708 }
3709 /* [Xn,<expr> */
3710 if (imm_shift_mode != SHIFTED_NONE && skip_past_comma (&p))
3711 /* [Xn,<expr>,<shifter> */
3712 if (! parse_shift (&p, operand, imm_shift_mode))
3713 return FALSE;
3714 }
3715 }
3716 }
3717
3718 if (! skip_past_char (&p, ']'))
3719 {
3720 set_syntax_error (_("']' expected"));
3721 return FALSE;
3722 }
3723
3724 if (skip_past_char (&p, '!'))
3725 {
3726 if (operand->addr.preind && operand->addr.offset.is_reg)
3727 {
3728 set_syntax_error (_("register offset not allowed in pre-indexed "
3729 "addressing mode"));
3730 return FALSE;
3731 }
3732 /* [Xn]! */
3733 operand->addr.writeback = 1;
3734 }
3735 else if (skip_past_comma (&p))
3736 {
3737 /* [Xn], */
3738 operand->addr.postind = 1;
3739 operand->addr.writeback = 1;
3740
3741 if (operand->addr.preind)
3742 {
3743 set_syntax_error (_("cannot combine pre- and post-indexing"));
3744 return FALSE;
3745 }
3746
3747 reg = aarch64_reg_parse_32_64 (&p, offset_qualifier);
3748 if (reg)
3749 {
3750 /* [Xn],Xm */
3751 if (!aarch64_check_reg_type (reg, REG_TYPE_R_64))
3752 {
3753 set_syntax_error (_(get_reg_expected_msg (REG_TYPE_R_64)));
3754 return FALSE;
3755 }
3756
3757 operand->addr.offset.regno = reg->number;
3758 operand->addr.offset.is_reg = 1;
3759 }
3760 else if (! my_get_expression (exp, &p, GE_OPT_PREFIX, 1))
3761 {
3762 /* [Xn],#expr */
3763 set_syntax_error (_("invalid expression in the address"));
3764 return FALSE;
3765 }
3766 }
3767
3768 /* If at this point neither .preind nor .postind is set, we have a
3769 bare [Rn]{!}; only accept [Rn]! as a shorthand for [Rn,#0]! for ldraa and
3770 ldrab, accept [Rn] as a shorthand for [Rn,#0].
3771 For SVE2 vector plus scalar offsets, allow [Zn.<T>] as shorthand for
3772 [Zn.<T>, xzr]. */
3773 if (operand->addr.preind == 0 && operand->addr.postind == 0)
3774 {
3775 if (operand->addr.writeback)
3776 {
3777 if (operand->type == AARCH64_OPND_ADDR_SIMM10)
3778 {
3779 /* Accept [Rn]! as a shorthand for [Rn,#0]! */
3780 operand->addr.offset.is_reg = 0;
3781 operand->addr.offset.imm = 0;
3782 operand->addr.preind = 1;
3783 }
3784 else
3785 {
3786 /* Reject [Rn]! */
3787 set_syntax_error (_("missing offset in the pre-indexed address"));
3788 return FALSE;
3789 }
3790 }
3791 else
3792 {
3793 operand->addr.preind = 1;
3794 if (operand->type == AARCH64_OPND_SVE_ADDR_ZX)
3795 {
3796 operand->addr.offset.is_reg = 1;
3797 operand->addr.offset.regno = REG_ZR;
3798 *offset_qualifier = AARCH64_OPND_QLF_X;
3799 }
3800 else
3801 {
3802 inst.reloc.exp.X_op = O_constant;
3803 inst.reloc.exp.X_add_number = 0;
3804 }
3805 }
3806 }
3807
3808 *str = p;
3809 return TRUE;
3810 }
3811
3812 /* Parse a base AArch64 address (as opposed to an SVE one). Return TRUE
3813 on success. */
3814 static bfd_boolean
3815 parse_address (char **str, aarch64_opnd_info *operand)
3816 {
3817 aarch64_opnd_qualifier_t base_qualifier, offset_qualifier;
3818 return parse_address_main (str, operand, &base_qualifier, &offset_qualifier,
3819 REG_TYPE_R64_SP, REG_TYPE_R_Z, SHIFTED_NONE);
3820 }
3821
3822 /* Parse an address in which SVE vector registers and MUL VL are allowed.
3823 The arguments have the same meaning as for parse_address_main.
3824 Return TRUE on success. */
3825 static bfd_boolean
3826 parse_sve_address (char **str, aarch64_opnd_info *operand,
3827 aarch64_opnd_qualifier_t *base_qualifier,
3828 aarch64_opnd_qualifier_t *offset_qualifier)
3829 {
3830 return parse_address_main (str, operand, base_qualifier, offset_qualifier,
3831 REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET,
3832 SHIFTED_MUL_VL);
3833 }
3834
3835 /* Parse an operand for a MOVZ, MOVN or MOVK instruction.
3836 Return TRUE on success; otherwise return FALSE. */
3837 static bfd_boolean
3838 parse_half (char **str, int *internal_fixup_p)
3839 {
3840 char *p = *str;
3841
3842 skip_past_char (&p, '#');
3843
3844 gas_assert (internal_fixup_p);
3845 *internal_fixup_p = 0;
3846
3847 if (*p == ':')
3848 {
3849 struct reloc_table_entry *entry;
3850
3851 /* Try to parse a relocation. Anything else is an error. */
3852 ++p;
3853 if (!(entry = find_reloc_table_entry (&p)))
3854 {
3855 set_syntax_error (_("unknown relocation modifier"));
3856 return FALSE;
3857 }
3858
3859 if (entry->movw_type == 0)
3860 {
3861 set_syntax_error
3862 (_("this relocation modifier is not allowed on this instruction"));
3863 return FALSE;
3864 }
3865
3866 inst.reloc.type = entry->movw_type;
3867 }
3868 else
3869 *internal_fixup_p = 1;
3870
3871 if (! my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX, 1))
3872 return FALSE;
3873
3874 *str = p;
3875 return TRUE;
3876 }
3877
3878 /* Parse an operand for an ADRP instruction:
3879 ADRP <Xd>, <label>
3880 Return TRUE on success; otherwise return FALSE. */
3881
3882 static bfd_boolean
3883 parse_adrp (char **str)
3884 {
3885 char *p;
3886
3887 p = *str;
3888 if (*p == ':')
3889 {
3890 struct reloc_table_entry *entry;
3891
3892 /* Try to parse a relocation. Anything else is an error. */
3893 ++p;
3894 if (!(entry = find_reloc_table_entry (&p)))
3895 {
3896 set_syntax_error (_("unknown relocation modifier"));
3897 return FALSE;
3898 }
3899
3900 if (entry->adrp_type == 0)
3901 {
3902 set_syntax_error
3903 (_("this relocation modifier is not allowed on this instruction"));
3904 return FALSE;
3905 }
3906
3907 inst.reloc.type = entry->adrp_type;
3908 }
3909 else
3910 inst.reloc.type = BFD_RELOC_AARCH64_ADR_HI21_PCREL;
3911
3912 inst.reloc.pc_rel = 1;
3913
3914 if (! my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX, 1))
3915 return FALSE;
3916
3917 *str = p;
3918 return TRUE;
3919 }
3920
3921 /* Miscellaneous. */
3922
3923 /* Parse a symbolic operand such as "pow2" at *STR. ARRAY is an array
3924 of SIZE tokens in which index I gives the token for field value I,
3925 or is null if field value I is invalid. REG_TYPE says which register
3926 names should be treated as registers rather than as symbolic immediates.
3927
3928 Return true on success, moving *STR past the operand and storing the
3929 field value in *VAL. */
3930
3931 static int
3932 parse_enum_string (char **str, int64_t *val, const char *const *array,
3933 size_t size, aarch64_reg_type reg_type)
3934 {
3935 expressionS exp;
3936 char *p, *q;
3937 size_t i;
3938
3939 /* Match C-like tokens. */
3940 p = q = *str;
3941 while (ISALNUM (*q))
3942 q++;
3943
3944 for (i = 0; i < size; ++i)
3945 if (array[i]
3946 && strncasecmp (array[i], p, q - p) == 0
3947 && array[i][q - p] == 0)
3948 {
3949 *val = i;
3950 *str = q;
3951 return TRUE;
3952 }
3953
3954 if (!parse_immediate_expression (&p, &exp, reg_type))
3955 return FALSE;
3956
3957 if (exp.X_op == O_constant
3958 && (uint64_t) exp.X_add_number < size)
3959 {
3960 *val = exp.X_add_number;
3961 *str = p;
3962 return TRUE;
3963 }
3964
3965 /* Use the default error for this operand. */
3966 return FALSE;
3967 }
3968
3969 /* Parse an option for a preload instruction. Returns the encoding for the
3970 option, or PARSE_FAIL. */
3971
3972 static int
3973 parse_pldop (char **str)
3974 {
3975 char *p, *q;
3976 const struct aarch64_name_value_pair *o;
3977
3978 p = q = *str;
3979 while (ISALNUM (*q))
3980 q++;
3981
3982 o = hash_find_n (aarch64_pldop_hsh, p, q - p);
3983 if (!o)
3984 return PARSE_FAIL;
3985
3986 *str = q;
3987 return o->value;
3988 }
3989
3990 /* Parse an option for a barrier instruction. Returns the encoding for the
3991 option, or PARSE_FAIL. */
3992
3993 static int
3994 parse_barrier (char **str)
3995 {
3996 char *p, *q;
3997 const asm_barrier_opt *o;
3998
3999 p = q = *str;
4000 while (ISALPHA (*q))
4001 q++;
4002
4003 o = hash_find_n (aarch64_barrier_opt_hsh, p, q - p);
4004 if (!o)
4005 return PARSE_FAIL;
4006
4007 *str = q;
4008 return o->value;
4009 }
4010
4011 /* Parse an operand for a PSB barrier. Set *HINT_OPT to the hint-option record
4012 return 0 if successful. Otherwise return PARSE_FAIL. */
4013
4014 static int
4015 parse_barrier_psb (char **str,
4016 const struct aarch64_name_value_pair ** hint_opt)
4017 {
4018 char *p, *q;
4019 const struct aarch64_name_value_pair *o;
4020
4021 p = q = *str;
4022 while (ISALPHA (*q))
4023 q++;
4024
4025 o = hash_find_n (aarch64_hint_opt_hsh, p, q - p);
4026 if (!o)
4027 {
4028 set_fatal_syntax_error
4029 ( _("unknown or missing option to PSB"));
4030 return PARSE_FAIL;
4031 }
4032
4033 if (o->value != 0x11)
4034 {
4035 /* PSB only accepts option name 'CSYNC'. */
4036 set_syntax_error
4037 (_("the specified option is not accepted for PSB"));
4038 return PARSE_FAIL;
4039 }
4040
4041 *str = q;
4042 *hint_opt = o;
4043 return 0;
4044 }
4045
4046 /* Parse an operand for BTI. Set *HINT_OPT to the hint-option record
4047 return 0 if successful. Otherwise return PARSE_FAIL. */
4048
4049 static int
4050 parse_bti_operand (char **str,
4051 const struct aarch64_name_value_pair ** hint_opt)
4052 {
4053 char *p, *q;
4054 const struct aarch64_name_value_pair *o;
4055
4056 p = q = *str;
4057 while (ISALPHA (*q))
4058 q++;
4059
4060 o = hash_find_n (aarch64_hint_opt_hsh, p, q - p);
4061 if (!o)
4062 {
4063 set_fatal_syntax_error
4064 ( _("unknown option to BTI"));
4065 return PARSE_FAIL;
4066 }
4067
4068 switch (o->value)
4069 {
4070 /* Valid BTI operands. */
4071 case HINT_OPD_C:
4072 case HINT_OPD_J:
4073 case HINT_OPD_JC:
4074 break;
4075
4076 default:
4077 set_syntax_error
4078 (_("unknown option to BTI"));
4079 return PARSE_FAIL;
4080 }
4081
4082 *str = q;
4083 *hint_opt = o;
4084 return 0;
4085 }
4086
4087 /* Parse a system register or a PSTATE field name for an MSR/MRS instruction.
4088 Returns the encoding for the option, or PARSE_FAIL.
4089
4090 If IMPLE_DEFINED_P is non-zero, the function will also try to parse the
4091 implementation defined system register name S<op0>_<op1>_<Cn>_<Cm>_<op2>.
4092
4093 If PSTATEFIELD_P is non-zero, the function will parse the name as a PSTATE
4094 field, otherwise as a system register.
4095 */
4096
4097 static int
4098 parse_sys_reg (char **str, struct hash_control *sys_regs,
4099 int imple_defined_p, int pstatefield_p,
4100 uint32_t* flags)
4101 {
4102 char *p, *q;
4103 char buf[32];
4104 const aarch64_sys_reg *o;
4105 int value;
4106
4107 p = buf;
4108 for (q = *str; ISALNUM (*q) || *q == '_'; q++)
4109 if (p < buf + 31)
4110 *p++ = TOLOWER (*q);
4111 *p = '\0';
4112 /* Assert that BUF be large enough. */
4113 gas_assert (p - buf == q - *str);
4114
4115 o = hash_find (sys_regs, buf);
4116 if (!o)
4117 {
4118 if (!imple_defined_p)
4119 return PARSE_FAIL;
4120 else
4121 {
4122 /* Parse S<op0>_<op1>_<Cn>_<Cm>_<op2>. */
4123 unsigned int op0, op1, cn, cm, op2;
4124
4125 if (sscanf (buf, "s%u_%u_c%u_c%u_%u", &op0, &op1, &cn, &cm, &op2)
4126 != 5)
4127 return PARSE_FAIL;
4128 if (op0 > 3 || op1 > 7 || cn > 15 || cm > 15 || op2 > 7)
4129 return PARSE_FAIL;
4130 value = (op0 << 14) | (op1 << 11) | (cn << 7) | (cm << 3) | op2;
4131 if (flags)
4132 *flags = 0;
4133 }
4134 }
4135 else
4136 {
4137 if (pstatefield_p && !aarch64_pstatefield_supported_p (cpu_variant, o))
4138 as_bad (_("selected processor does not support PSTATE field "
4139 "name '%s'"), buf);
4140 if (!pstatefield_p && !aarch64_sys_reg_supported_p (cpu_variant, o))
4141 as_bad (_("selected processor does not support system register "
4142 "name '%s'"), buf);
4143 if (aarch64_sys_reg_deprecated_p (o))
4144 as_warn (_("system register name '%s' is deprecated and may be "
4145 "removed in a future release"), buf);
4146 value = o->value;
4147 if (flags)
4148 *flags = o->flags;
4149 }
4150
4151 *str = q;
4152 return value;
4153 }
4154
4155 /* Parse a system reg for ic/dc/at/tlbi instructions. Returns the table entry
4156 for the option, or NULL. */
4157
4158 static const aarch64_sys_ins_reg *
4159 parse_sys_ins_reg (char **str, struct hash_control *sys_ins_regs)
4160 {
4161 char *p, *q;
4162 char buf[32];
4163 const aarch64_sys_ins_reg *o;
4164
4165 p = buf;
4166 for (q = *str; ISALNUM (*q) || *q == '_'; q++)
4167 if (p < buf + 31)
4168 *p++ = TOLOWER (*q);
4169 *p = '\0';
4170
4171 o = hash_find (sys_ins_regs, buf);
4172 if (!o)
4173 return NULL;
4174
4175 if (!aarch64_sys_ins_reg_supported_p (cpu_variant, o))
4176 as_bad (_("selected processor does not support system register "
4177 "name '%s'"), buf);
4178
4179 *str = q;
4180 return o;
4181 }
4182 \f
4183 #define po_char_or_fail(chr) do { \
4184 if (! skip_past_char (&str, chr)) \
4185 goto failure; \
4186 } while (0)
4187
4188 #define po_reg_or_fail(regtype) do { \
4189 val = aarch64_reg_parse (&str, regtype, &rtype, NULL); \
4190 if (val == PARSE_FAIL) \
4191 { \
4192 set_default_error (); \
4193 goto failure; \
4194 } \
4195 } while (0)
4196
4197 #define po_int_reg_or_fail(reg_type) do { \
4198 reg = aarch64_reg_parse_32_64 (&str, &qualifier); \
4199 if (!reg || !aarch64_check_reg_type (reg, reg_type)) \
4200 { \
4201 set_default_error (); \
4202 goto failure; \
4203 } \
4204 info->reg.regno = reg->number; \
4205 info->qualifier = qualifier; \
4206 } while (0)
4207
4208 #define po_imm_nc_or_fail() do { \
4209 if (! parse_constant_immediate (&str, &val, imm_reg_type)) \
4210 goto failure; \
4211 } while (0)
4212
4213 #define po_imm_or_fail(min, max) do { \
4214 if (! parse_constant_immediate (&str, &val, imm_reg_type)) \
4215 goto failure; \
4216 if (val < min || val > max) \
4217 { \
4218 set_fatal_syntax_error (_("immediate value out of range "\
4219 #min " to "#max)); \
4220 goto failure; \
4221 } \
4222 } while (0)
4223
4224 #define po_enum_or_fail(array) do { \
4225 if (!parse_enum_string (&str, &val, array, \
4226 ARRAY_SIZE (array), imm_reg_type)) \
4227 goto failure; \
4228 } while (0)
4229
4230 #define po_misc_or_fail(expr) do { \
4231 if (!expr) \
4232 goto failure; \
4233 } while (0)
4234 \f
4235 /* encode the 12-bit imm field of Add/sub immediate */
4236 static inline uint32_t
4237 encode_addsub_imm (uint32_t imm)
4238 {
4239 return imm << 10;
4240 }
4241
4242 /* encode the shift amount field of Add/sub immediate */
4243 static inline uint32_t
4244 encode_addsub_imm_shift_amount (uint32_t cnt)
4245 {
4246 return cnt << 22;
4247 }
4248
4249
4250 /* encode the imm field of Adr instruction */
4251 static inline uint32_t
4252 encode_adr_imm (uint32_t imm)
4253 {
4254 return (((imm & 0x3) << 29) /* [1:0] -> [30:29] */
4255 | ((imm & (0x7ffff << 2)) << 3)); /* [20:2] -> [23:5] */
4256 }
4257
4258 /* encode the immediate field of Move wide immediate */
4259 static inline uint32_t
4260 encode_movw_imm (uint32_t imm)
4261 {
4262 return imm << 5;
4263 }
4264
4265 /* encode the 26-bit offset of unconditional branch */
4266 static inline uint32_t
4267 encode_branch_ofs_26 (uint32_t ofs)
4268 {
4269 return ofs & ((1 << 26) - 1);
4270 }
4271
4272 /* encode the 19-bit offset of conditional branch and compare & branch */
4273 static inline uint32_t
4274 encode_cond_branch_ofs_19 (uint32_t ofs)
4275 {
4276 return (ofs & ((1 << 19) - 1)) << 5;
4277 }
4278
4279 /* encode the 19-bit offset of ld literal */
4280 static inline uint32_t
4281 encode_ld_lit_ofs_19 (uint32_t ofs)
4282 {
4283 return (ofs & ((1 << 19) - 1)) << 5;
4284 }
4285
4286 /* Encode the 14-bit offset of test & branch. */
4287 static inline uint32_t
4288 encode_tst_branch_ofs_14 (uint32_t ofs)
4289 {
4290 return (ofs & ((1 << 14) - 1)) << 5;
4291 }
4292
4293 /* Encode the 16-bit imm field of svc/hvc/smc. */
4294 static inline uint32_t
4295 encode_svc_imm (uint32_t imm)
4296 {
4297 return imm << 5;
4298 }
4299
4300 /* Reencode add(s) to sub(s), or sub(s) to add(s). */
4301 static inline uint32_t
4302 reencode_addsub_switch_add_sub (uint32_t opcode)
4303 {
4304 return opcode ^ (1 << 30);
4305 }
4306
4307 static inline uint32_t
4308 reencode_movzn_to_movz (uint32_t opcode)
4309 {
4310 return opcode | (1 << 30);
4311 }
4312
4313 static inline uint32_t
4314 reencode_movzn_to_movn (uint32_t opcode)
4315 {
4316 return opcode & ~(1 << 30);
4317 }
4318
4319 /* Overall per-instruction processing. */
4320
4321 /* We need to be able to fix up arbitrary expressions in some statements.
4322 This is so that we can handle symbols that are an arbitrary distance from
4323 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
4324 which returns part of an address in a form which will be valid for
4325 a data instruction. We do this by pushing the expression into a symbol
4326 in the expr_section, and creating a fix for that. */
4327
4328 static fixS *
4329 fix_new_aarch64 (fragS * frag,
4330 int where,
4331 short int size, expressionS * exp, int pc_rel, int reloc)
4332 {
4333 fixS *new_fix;
4334
4335 switch (exp->X_op)
4336 {
4337 case O_constant:
4338 case O_symbol:
4339 case O_add:
4340 case O_subtract:
4341 new_fix = fix_new_exp (frag, where, size, exp, pc_rel, reloc);
4342 break;
4343
4344 default:
4345 new_fix = fix_new (frag, where, size, make_expr_symbol (exp), 0,
4346 pc_rel, reloc);
4347 break;
4348 }
4349 return new_fix;
4350 }
4351 \f
4352 /* Diagnostics on operands errors. */
4353
4354 /* By default, output verbose error message.
4355 Disable the verbose error message by -mno-verbose-error. */
4356 static int verbose_error_p = 1;
4357
4358 #ifdef DEBUG_AARCH64
4359 /* N.B. this is only for the purpose of debugging. */
4360 const char* operand_mismatch_kind_names[] =
4361 {
4362 "AARCH64_OPDE_NIL",
4363 "AARCH64_OPDE_RECOVERABLE",
4364 "AARCH64_OPDE_SYNTAX_ERROR",
4365 "AARCH64_OPDE_FATAL_SYNTAX_ERROR",
4366 "AARCH64_OPDE_INVALID_VARIANT",
4367 "AARCH64_OPDE_OUT_OF_RANGE",
4368 "AARCH64_OPDE_UNALIGNED",
4369 "AARCH64_OPDE_REG_LIST",
4370 "AARCH64_OPDE_OTHER_ERROR",
4371 };
4372 #endif /* DEBUG_AARCH64 */
4373
4374 /* Return TRUE if LHS is of higher severity than RHS, otherwise return FALSE.
4375
4376 When multiple errors of different kinds are found in the same assembly
4377 line, only the error of the highest severity will be picked up for
4378 issuing the diagnostics. */
4379
4380 static inline bfd_boolean
4381 operand_error_higher_severity_p (enum aarch64_operand_error_kind lhs,
4382 enum aarch64_operand_error_kind rhs)
4383 {
4384 gas_assert (AARCH64_OPDE_RECOVERABLE > AARCH64_OPDE_NIL);
4385 gas_assert (AARCH64_OPDE_SYNTAX_ERROR > AARCH64_OPDE_RECOVERABLE);
4386 gas_assert (AARCH64_OPDE_FATAL_SYNTAX_ERROR > AARCH64_OPDE_SYNTAX_ERROR);
4387 gas_assert (AARCH64_OPDE_INVALID_VARIANT > AARCH64_OPDE_FATAL_SYNTAX_ERROR);
4388 gas_assert (AARCH64_OPDE_OUT_OF_RANGE > AARCH64_OPDE_INVALID_VARIANT);
4389 gas_assert (AARCH64_OPDE_UNALIGNED > AARCH64_OPDE_OUT_OF_RANGE);
4390 gas_assert (AARCH64_OPDE_REG_LIST > AARCH64_OPDE_UNALIGNED);
4391 gas_assert (AARCH64_OPDE_OTHER_ERROR > AARCH64_OPDE_REG_LIST);
4392 return lhs > rhs;
4393 }
4394
4395 /* Helper routine to get the mnemonic name from the assembly instruction
4396 line; should only be called for the diagnosis purpose, as there is
4397 string copy operation involved, which may affect the runtime
4398 performance if used in elsewhere. */
4399
4400 static const char*
4401 get_mnemonic_name (const char *str)
4402 {
4403 static char mnemonic[32];
4404 char *ptr;
4405
4406 /* Get the first 15 bytes and assume that the full name is included. */
4407 strncpy (mnemonic, str, 31);
4408 mnemonic[31] = '\0';
4409
4410 /* Scan up to the end of the mnemonic, which must end in white space,
4411 '.', or end of string. */
4412 for (ptr = mnemonic; is_part_of_name(*ptr); ++ptr)
4413 ;
4414
4415 *ptr = '\0';
4416
4417 /* Append '...' to the truncated long name. */
4418 if (ptr - mnemonic == 31)
4419 mnemonic[28] = mnemonic[29] = mnemonic[30] = '.';
4420
4421 return mnemonic;
4422 }
4423
4424 static void
4425 reset_aarch64_instruction (aarch64_instruction *instruction)
4426 {
4427 memset (instruction, '\0', sizeof (aarch64_instruction));
4428 instruction->reloc.type = BFD_RELOC_UNUSED;
4429 }
4430
4431 /* Data structures storing one user error in the assembly code related to
4432 operands. */
4433
4434 struct operand_error_record
4435 {
4436 const aarch64_opcode *opcode;
4437 aarch64_operand_error detail;
4438 struct operand_error_record *next;
4439 };
4440
4441 typedef struct operand_error_record operand_error_record;
4442
4443 struct operand_errors
4444 {
4445 operand_error_record *head;
4446 operand_error_record *tail;
4447 };
4448
4449 typedef struct operand_errors operand_errors;
4450
4451 /* Top-level data structure reporting user errors for the current line of
4452 the assembly code.
4453 The way md_assemble works is that all opcodes sharing the same mnemonic
4454 name are iterated to find a match to the assembly line. In this data
4455 structure, each of the such opcodes will have one operand_error_record
4456 allocated and inserted. In other words, excessive errors related with
4457 a single opcode are disregarded. */
4458 operand_errors operand_error_report;
4459
4460 /* Free record nodes. */
4461 static operand_error_record *free_opnd_error_record_nodes = NULL;
4462
4463 /* Initialize the data structure that stores the operand mismatch
4464 information on assembling one line of the assembly code. */
4465 static void
4466 init_operand_error_report (void)
4467 {
4468 if (operand_error_report.head != NULL)
4469 {
4470 gas_assert (operand_error_report.tail != NULL);
4471 operand_error_report.tail->next = free_opnd_error_record_nodes;
4472 free_opnd_error_record_nodes = operand_error_report.head;
4473 operand_error_report.head = NULL;
4474 operand_error_report.tail = NULL;
4475 return;
4476 }
4477 gas_assert (operand_error_report.tail == NULL);
4478 }
4479
4480 /* Return TRUE if some operand error has been recorded during the
4481 parsing of the current assembly line using the opcode *OPCODE;
4482 otherwise return FALSE. */
4483 static inline bfd_boolean
4484 opcode_has_operand_error_p (const aarch64_opcode *opcode)
4485 {
4486 operand_error_record *record = operand_error_report.head;
4487 return record && record->opcode == opcode;
4488 }
4489
4490 /* Add the error record *NEW_RECORD to operand_error_report. The record's
4491 OPCODE field is initialized with OPCODE.
4492 N.B. only one record for each opcode, i.e. the maximum of one error is
4493 recorded for each instruction template. */
4494
4495 static void
4496 add_operand_error_record (const operand_error_record* new_record)
4497 {
4498 const aarch64_opcode *opcode = new_record->opcode;
4499 operand_error_record* record = operand_error_report.head;
4500
4501 /* The record may have been created for this opcode. If not, we need
4502 to prepare one. */
4503 if (! opcode_has_operand_error_p (opcode))
4504 {
4505 /* Get one empty record. */
4506 if (free_opnd_error_record_nodes == NULL)
4507 {
4508 record = XNEW (operand_error_record);
4509 }
4510 else
4511 {
4512 record = free_opnd_error_record_nodes;
4513 free_opnd_error_record_nodes = record->next;
4514 }
4515 record->opcode = opcode;
4516 /* Insert at the head. */
4517 record->next = operand_error_report.head;
4518 operand_error_report.head = record;
4519 if (operand_error_report.tail == NULL)
4520 operand_error_report.tail = record;
4521 }
4522 else if (record->detail.kind != AARCH64_OPDE_NIL
4523 && record->detail.index <= new_record->detail.index
4524 && operand_error_higher_severity_p (record->detail.kind,
4525 new_record->detail.kind))
4526 {
4527 /* In the case of multiple errors found on operands related with a
4528 single opcode, only record the error of the leftmost operand and
4529 only if the error is of higher severity. */
4530 DEBUG_TRACE ("error %s on operand %d not added to the report due to"
4531 " the existing error %s on operand %d",
4532 operand_mismatch_kind_names[new_record->detail.kind],
4533 new_record->detail.index,
4534 operand_mismatch_kind_names[record->detail.kind],
4535 record->detail.index);
4536 return;
4537 }
4538
4539 record->detail = new_record->detail;
4540 }
4541
4542 static inline void
4543 record_operand_error_info (const aarch64_opcode *opcode,
4544 aarch64_operand_error *error_info)
4545 {
4546 operand_error_record record;
4547 record.opcode = opcode;
4548 record.detail = *error_info;
4549 add_operand_error_record (&record);
4550 }
4551
4552 /* Record an error of kind KIND and, if ERROR is not NULL, of the detailed
4553 error message *ERROR, for operand IDX (count from 0). */
4554
4555 static void
4556 record_operand_error (const aarch64_opcode *opcode, int idx,
4557 enum aarch64_operand_error_kind kind,
4558 const char* error)
4559 {
4560 aarch64_operand_error info;
4561 memset(&info, 0, sizeof (info));
4562 info.index = idx;
4563 info.kind = kind;
4564 info.error = error;
4565 info.non_fatal = FALSE;
4566 record_operand_error_info (opcode, &info);
4567 }
4568
4569 static void
4570 record_operand_error_with_data (const aarch64_opcode *opcode, int idx,
4571 enum aarch64_operand_error_kind kind,
4572 const char* error, const int *extra_data)
4573 {
4574 aarch64_operand_error info;
4575 info.index = idx;
4576 info.kind = kind;
4577 info.error = error;
4578 info.data[0] = extra_data[0];
4579 info.data[1] = extra_data[1];
4580 info.data[2] = extra_data[2];
4581 info.non_fatal = FALSE;
4582 record_operand_error_info (opcode, &info);
4583 }
4584
4585 static void
4586 record_operand_out_of_range_error (const aarch64_opcode *opcode, int idx,
4587 const char* error, int lower_bound,
4588 int upper_bound)
4589 {
4590 int data[3] = {lower_bound, upper_bound, 0};
4591 record_operand_error_with_data (opcode, idx, AARCH64_OPDE_OUT_OF_RANGE,
4592 error, data);
4593 }
4594
4595 /* Remove the operand error record for *OPCODE. */
4596 static void ATTRIBUTE_UNUSED
4597 remove_operand_error_record (const aarch64_opcode *opcode)
4598 {
4599 if (opcode_has_operand_error_p (opcode))
4600 {
4601 operand_error_record* record = operand_error_report.head;
4602 gas_assert (record != NULL && operand_error_report.tail != NULL);
4603 operand_error_report.head = record->next;
4604 record->next = free_opnd_error_record_nodes;
4605 free_opnd_error_record_nodes = record;
4606 if (operand_error_report.head == NULL)
4607 {
4608 gas_assert (operand_error_report.tail == record);
4609 operand_error_report.tail = NULL;
4610 }
4611 }
4612 }
4613
4614 /* Given the instruction in *INSTR, return the index of the best matched
4615 qualifier sequence in the list (an array) headed by QUALIFIERS_LIST.
4616
4617 Return -1 if there is no qualifier sequence; return the first match
4618 if there is multiple matches found. */
4619
4620 static int
4621 find_best_match (const aarch64_inst *instr,
4622 const aarch64_opnd_qualifier_seq_t *qualifiers_list)
4623 {
4624 int i, num_opnds, max_num_matched, idx;
4625
4626 num_opnds = aarch64_num_of_operands (instr->opcode);
4627 if (num_opnds == 0)
4628 {
4629 DEBUG_TRACE ("no operand");
4630 return -1;
4631 }
4632
4633 max_num_matched = 0;
4634 idx = 0;
4635
4636 /* For each pattern. */
4637 for (i = 0; i < AARCH64_MAX_QLF_SEQ_NUM; ++i, ++qualifiers_list)
4638 {
4639 int j, num_matched;
4640 const aarch64_opnd_qualifier_t *qualifiers = *qualifiers_list;
4641
4642 /* Most opcodes has much fewer patterns in the list. */
4643 if (empty_qualifier_sequence_p (qualifiers))
4644 {
4645 DEBUG_TRACE_IF (i == 0, "empty list of qualifier sequence");
4646 break;
4647 }
4648
4649 for (j = 0, num_matched = 0; j < num_opnds; ++j, ++qualifiers)
4650 if (*qualifiers == instr->operands[j].qualifier)
4651 ++num_matched;
4652
4653 if (num_matched > max_num_matched)
4654 {
4655 max_num_matched = num_matched;
4656 idx = i;
4657 }
4658 }
4659
4660 DEBUG_TRACE ("return with %d", idx);
4661 return idx;
4662 }
4663
4664 /* Assign qualifiers in the qualifier sequence (headed by QUALIFIERS) to the
4665 corresponding operands in *INSTR. */
4666
4667 static inline void
4668 assign_qualifier_sequence (aarch64_inst *instr,
4669 const aarch64_opnd_qualifier_t *qualifiers)
4670 {
4671 int i = 0;
4672 int num_opnds = aarch64_num_of_operands (instr->opcode);
4673 gas_assert (num_opnds);
4674 for (i = 0; i < num_opnds; ++i, ++qualifiers)
4675 instr->operands[i].qualifier = *qualifiers;
4676 }
4677
4678 /* Print operands for the diagnosis purpose. */
4679
4680 static void
4681 print_operands (char *buf, const aarch64_opcode *opcode,
4682 const aarch64_opnd_info *opnds)
4683 {
4684 int i;
4685
4686 for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
4687 {
4688 char str[128];
4689
4690 /* We regard the opcode operand info more, however we also look into
4691 the inst->operands to support the disassembling of the optional
4692 operand.
4693 The two operand code should be the same in all cases, apart from
4694 when the operand can be optional. */
4695 if (opcode->operands[i] == AARCH64_OPND_NIL
4696 || opnds[i].type == AARCH64_OPND_NIL)
4697 break;
4698
4699 /* Generate the operand string in STR. */
4700 aarch64_print_operand (str, sizeof (str), 0, opcode, opnds, i, NULL, NULL,
4701 NULL);
4702
4703 /* Delimiter. */
4704 if (str[0] != '\0')
4705 strcat (buf, i == 0 ? " " : ", ");
4706
4707 /* Append the operand string. */
4708 strcat (buf, str);
4709 }
4710 }
4711
4712 /* Send to stderr a string as information. */
4713
4714 static void
4715 output_info (const char *format, ...)
4716 {
4717 const char *file;
4718 unsigned int line;
4719 va_list args;
4720
4721 file = as_where (&line);
4722 if (file)
4723 {
4724 if (line != 0)
4725 fprintf (stderr, "%s:%u: ", file, line);
4726 else
4727 fprintf (stderr, "%s: ", file);
4728 }
4729 fprintf (stderr, _("Info: "));
4730 va_start (args, format);
4731 vfprintf (stderr, format, args);
4732 va_end (args);
4733 (void) putc ('\n', stderr);
4734 }
4735
4736 /* Output one operand error record. */
4737
4738 static void
4739 output_operand_error_record (const operand_error_record *record, char *str)
4740 {
4741 const aarch64_operand_error *detail = &record->detail;
4742 int idx = detail->index;
4743 const aarch64_opcode *opcode = record->opcode;
4744 enum aarch64_opnd opd_code = (idx >= 0 ? opcode->operands[idx]
4745 : AARCH64_OPND_NIL);
4746
4747 typedef void (*handler_t)(const char *format, ...);
4748 handler_t handler = detail->non_fatal ? as_warn : as_bad;
4749
4750 switch (detail->kind)
4751 {
4752 case AARCH64_OPDE_NIL:
4753 gas_assert (0);
4754 break;
4755 case AARCH64_OPDE_SYNTAX_ERROR:
4756 case AARCH64_OPDE_RECOVERABLE:
4757 case AARCH64_OPDE_FATAL_SYNTAX_ERROR:
4758 case AARCH64_OPDE_OTHER_ERROR:
4759 /* Use the prepared error message if there is, otherwise use the
4760 operand description string to describe the error. */
4761 if (detail->error != NULL)
4762 {
4763 if (idx < 0)
4764 handler (_("%s -- `%s'"), detail->error, str);
4765 else
4766 handler (_("%s at operand %d -- `%s'"),
4767 detail->error, idx + 1, str);
4768 }
4769 else
4770 {
4771 gas_assert (idx >= 0);
4772 handler (_("operand %d must be %s -- `%s'"), idx + 1,
4773 aarch64_get_operand_desc (opd_code), str);
4774 }
4775 break;
4776
4777 case AARCH64_OPDE_INVALID_VARIANT:
4778 handler (_("operand mismatch -- `%s'"), str);
4779 if (verbose_error_p)
4780 {
4781 /* We will try to correct the erroneous instruction and also provide
4782 more information e.g. all other valid variants.
4783
4784 The string representation of the corrected instruction and other
4785 valid variants are generated by
4786
4787 1) obtaining the intermediate representation of the erroneous
4788 instruction;
4789 2) manipulating the IR, e.g. replacing the operand qualifier;
4790 3) printing out the instruction by calling the printer functions
4791 shared with the disassembler.
4792
4793 The limitation of this method is that the exact input assembly
4794 line cannot be accurately reproduced in some cases, for example an
4795 optional operand present in the actual assembly line will be
4796 omitted in the output; likewise for the optional syntax rules,
4797 e.g. the # before the immediate. Another limitation is that the
4798 assembly symbols and relocation operations in the assembly line
4799 currently cannot be printed out in the error report. Last but not
4800 least, when there is other error(s) co-exist with this error, the
4801 'corrected' instruction may be still incorrect, e.g. given
4802 'ldnp h0,h1,[x0,#6]!'
4803 this diagnosis will provide the version:
4804 'ldnp s0,s1,[x0,#6]!'
4805 which is still not right. */
4806 size_t len = strlen (get_mnemonic_name (str));
4807 int i, qlf_idx;
4808 bfd_boolean result;
4809 char buf[2048];
4810 aarch64_inst *inst_base = &inst.base;
4811 const aarch64_opnd_qualifier_seq_t *qualifiers_list;
4812
4813 /* Init inst. */
4814 reset_aarch64_instruction (&inst);
4815 inst_base->opcode = opcode;
4816
4817 /* Reset the error report so that there is no side effect on the
4818 following operand parsing. */
4819 init_operand_error_report ();
4820
4821 /* Fill inst. */
4822 result = parse_operands (str + len, opcode)
4823 && programmer_friendly_fixup (&inst);
4824 gas_assert (result);
4825 result = aarch64_opcode_encode (opcode, inst_base, &inst_base->value,
4826 NULL, NULL, insn_sequence);
4827 gas_assert (!result);
4828
4829 /* Find the most matched qualifier sequence. */
4830 qlf_idx = find_best_match (inst_base, opcode->qualifiers_list);
4831 gas_assert (qlf_idx > -1);
4832
4833 /* Assign the qualifiers. */
4834 assign_qualifier_sequence (inst_base,
4835 opcode->qualifiers_list[qlf_idx]);
4836
4837 /* Print the hint. */
4838 output_info (_(" did you mean this?"));
4839 snprintf (buf, sizeof (buf), "\t%s", get_mnemonic_name (str));
4840 print_operands (buf, opcode, inst_base->operands);
4841 output_info (_(" %s"), buf);
4842
4843 /* Print out other variant(s) if there is any. */
4844 if (qlf_idx != 0 ||
4845 !empty_qualifier_sequence_p (opcode->qualifiers_list[1]))
4846 output_info (_(" other valid variant(s):"));
4847
4848 /* For each pattern. */
4849 qualifiers_list = opcode->qualifiers_list;
4850 for (i = 0; i < AARCH64_MAX_QLF_SEQ_NUM; ++i, ++qualifiers_list)
4851 {
4852 /* Most opcodes has much fewer patterns in the list.
4853 First NIL qualifier indicates the end in the list. */
4854 if (empty_qualifier_sequence_p (*qualifiers_list))
4855 break;
4856
4857 if (i != qlf_idx)
4858 {
4859 /* Mnemonics name. */
4860 snprintf (buf, sizeof (buf), "\t%s", get_mnemonic_name (str));
4861
4862 /* Assign the qualifiers. */
4863 assign_qualifier_sequence (inst_base, *qualifiers_list);
4864
4865 /* Print instruction. */
4866 print_operands (buf, opcode, inst_base->operands);
4867
4868 output_info (_(" %s"), buf);
4869 }
4870 }
4871 }
4872 break;
4873
4874 case AARCH64_OPDE_UNTIED_OPERAND:
4875 handler (_("operand %d must be the same register as operand 1 -- `%s'"),
4876 detail->index + 1, str);
4877 break;
4878
4879 case AARCH64_OPDE_OUT_OF_RANGE:
4880 if (detail->data[0] != detail->data[1])
4881 handler (_("%s out of range %d to %d at operand %d -- `%s'"),
4882 detail->error ? detail->error : _("immediate value"),
4883 detail->data[0], detail->data[1], idx + 1, str);
4884 else
4885 handler (_("%s must be %d at operand %d -- `%s'"),
4886 detail->error ? detail->error : _("immediate value"),
4887 detail->data[0], idx + 1, str);
4888 break;
4889
4890 case AARCH64_OPDE_REG_LIST:
4891 if (detail->data[0] == 1)
4892 handler (_("invalid number of registers in the list; "
4893 "only 1 register is expected at operand %d -- `%s'"),
4894 idx + 1, str);
4895 else
4896 handler (_("invalid number of registers in the list; "
4897 "%d registers are expected at operand %d -- `%s'"),
4898 detail->data[0], idx + 1, str);
4899 break;
4900
4901 case AARCH64_OPDE_UNALIGNED:
4902 handler (_("immediate value must be a multiple of "
4903 "%d at operand %d -- `%s'"),
4904 detail->data[0], idx + 1, str);
4905 break;
4906
4907 default:
4908 gas_assert (0);
4909 break;
4910 }
4911 }
4912
4913 /* Process and output the error message about the operand mismatching.
4914
4915 When this function is called, the operand error information had
4916 been collected for an assembly line and there will be multiple
4917 errors in the case of multiple instruction templates; output the
4918 error message that most closely describes the problem.
4919
4920 The errors to be printed can be filtered on printing all errors
4921 or only non-fatal errors. This distinction has to be made because
4922 the error buffer may already be filled with fatal errors we don't want to
4923 print due to the different instruction templates. */
4924
4925 static void
4926 output_operand_error_report (char *str, bfd_boolean non_fatal_only)
4927 {
4928 int largest_error_pos;
4929 const char *msg = NULL;
4930 enum aarch64_operand_error_kind kind;
4931 operand_error_record *curr;
4932 operand_error_record *head = operand_error_report.head;
4933 operand_error_record *record = NULL;
4934
4935 /* No error to report. */
4936 if (head == NULL)
4937 return;
4938
4939 gas_assert (head != NULL && operand_error_report.tail != NULL);
4940
4941 /* Only one error. */
4942 if (head == operand_error_report.tail)
4943 {
4944 /* If the only error is a non-fatal one and we don't want to print it,
4945 just exit. */
4946 if (!non_fatal_only || head->detail.non_fatal)
4947 {
4948 DEBUG_TRACE ("single opcode entry with error kind: %s",
4949 operand_mismatch_kind_names[head->detail.kind]);
4950 output_operand_error_record (head, str);
4951 }
4952 return;
4953 }
4954
4955 /* Find the error kind of the highest severity. */
4956 DEBUG_TRACE ("multiple opcode entries with error kind");
4957 kind = AARCH64_OPDE_NIL;
4958 for (curr = head; curr != NULL; curr = curr->next)
4959 {
4960 gas_assert (curr->detail.kind != AARCH64_OPDE_NIL);
4961 DEBUG_TRACE ("\t%s", operand_mismatch_kind_names[curr->detail.kind]);
4962 if (operand_error_higher_severity_p (curr->detail.kind, kind)
4963 && (!non_fatal_only || (non_fatal_only && curr->detail.non_fatal)))
4964 kind = curr->detail.kind;
4965 }
4966
4967 gas_assert (kind != AARCH64_OPDE_NIL || non_fatal_only);
4968
4969 /* Pick up one of errors of KIND to report. */
4970 largest_error_pos = -2; /* Index can be -1 which means unknown index. */
4971 for (curr = head; curr != NULL; curr = curr->next)
4972 {
4973 /* If we don't want to print non-fatal errors then don't consider them
4974 at all. */
4975 if (curr->detail.kind != kind
4976 || (non_fatal_only && !curr->detail.non_fatal))
4977 continue;
4978 /* If there are multiple errors, pick up the one with the highest
4979 mismatching operand index. In the case of multiple errors with
4980 the equally highest operand index, pick up the first one or the
4981 first one with non-NULL error message. */
4982 if (curr->detail.index > largest_error_pos
4983 || (curr->detail.index == largest_error_pos && msg == NULL
4984 && curr->detail.error != NULL))
4985 {
4986 largest_error_pos = curr->detail.index;
4987 record = curr;
4988 msg = record->detail.error;
4989 }
4990 }
4991
4992 /* The way errors are collected in the back-end is a bit non-intuitive. But
4993 essentially, because each operand template is tried recursively you may
4994 always have errors collected from the previous tried OPND. These are
4995 usually skipped if there is one successful match. However now with the
4996 non-fatal errors we have to ignore those previously collected hard errors
4997 when we're only interested in printing the non-fatal ones. This condition
4998 prevents us from printing errors that are not appropriate, since we did
4999 match a condition, but it also has warnings that it wants to print. */
5000 if (non_fatal_only && !record)
5001 return;
5002
5003 gas_assert (largest_error_pos != -2 && record != NULL);
5004 DEBUG_TRACE ("Pick up error kind %s to report",
5005 operand_mismatch_kind_names[record->detail.kind]);
5006
5007 /* Output. */
5008 output_operand_error_record (record, str);
5009 }
5010 \f
5011 /* Write an AARCH64 instruction to buf - always little-endian. */
5012 static void
5013 put_aarch64_insn (char *buf, uint32_t insn)
5014 {
5015 unsigned char *where = (unsigned char *) buf;
5016 where[0] = insn;
5017 where[1] = insn >> 8;
5018 where[2] = insn >> 16;
5019 where[3] = insn >> 24;
5020 }
5021
5022 static uint32_t
5023 get_aarch64_insn (char *buf)
5024 {
5025 unsigned char *where = (unsigned char *) buf;
5026 uint32_t result;
5027 result = (where[0] | (where[1] << 8) | (where[2] << 16) | (where[3] << 24));
5028 return result;
5029 }
5030
5031 static void
5032 output_inst (struct aarch64_inst *new_inst)
5033 {
5034 char *to = NULL;
5035
5036 to = frag_more (INSN_SIZE);
5037
5038 frag_now->tc_frag_data.recorded = 1;
5039
5040 put_aarch64_insn (to, inst.base.value);
5041
5042 if (inst.reloc.type != BFD_RELOC_UNUSED)
5043 {
5044 fixS *fixp = fix_new_aarch64 (frag_now, to - frag_now->fr_literal,
5045 INSN_SIZE, &inst.reloc.exp,
5046 inst.reloc.pc_rel,
5047 inst.reloc.type);
5048 DEBUG_TRACE ("Prepared relocation fix up");
5049 /* Don't check the addend value against the instruction size,
5050 that's the job of our code in md_apply_fix(). */
5051 fixp->fx_no_overflow = 1;
5052 if (new_inst != NULL)
5053 fixp->tc_fix_data.inst = new_inst;
5054 if (aarch64_gas_internal_fixup_p ())
5055 {
5056 gas_assert (inst.reloc.opnd != AARCH64_OPND_NIL);
5057 fixp->tc_fix_data.opnd = inst.reloc.opnd;
5058 fixp->fx_addnumber = inst.reloc.flags;
5059 }
5060 }
5061
5062 dwarf2_emit_insn (INSN_SIZE);
5063 }
5064
5065 /* Link together opcodes of the same name. */
5066
5067 struct templates
5068 {
5069 aarch64_opcode *opcode;
5070 struct templates *next;
5071 };
5072
5073 typedef struct templates templates;
5074
5075 static templates *
5076 lookup_mnemonic (const char *start, int len)
5077 {
5078 templates *templ = NULL;
5079
5080 templ = hash_find_n (aarch64_ops_hsh, start, len);
5081 return templ;
5082 }
5083
5084 /* Subroutine of md_assemble, responsible for looking up the primary
5085 opcode from the mnemonic the user wrote. STR points to the
5086 beginning of the mnemonic. */
5087
5088 static templates *
5089 opcode_lookup (char **str)
5090 {
5091 char *end, *base, *dot;
5092 const aarch64_cond *cond;
5093 char condname[16];
5094 int len;
5095
5096 /* Scan up to the end of the mnemonic, which must end in white space,
5097 '.', or end of string. */
5098 dot = 0;
5099 for (base = end = *str; is_part_of_name(*end); end++)
5100 if (*end == '.' && !dot)
5101 dot = end;
5102
5103 if (end == base || dot == base)
5104 return 0;
5105
5106 inst.cond = COND_ALWAYS;
5107
5108 /* Handle a possible condition. */
5109 if (dot)
5110 {
5111 cond = hash_find_n (aarch64_cond_hsh, dot + 1, end - dot - 1);
5112 if (cond)
5113 {
5114 inst.cond = cond->value;
5115 *str = end;
5116 }
5117 else
5118 {
5119 *str = dot;
5120 return 0;
5121 }
5122 len = dot - base;
5123 }
5124 else
5125 {
5126 *str = end;
5127 len = end - base;
5128 }
5129
5130 if (inst.cond == COND_ALWAYS)
5131 {
5132 /* Look for unaffixed mnemonic. */
5133 return lookup_mnemonic (base, len);
5134 }
5135 else if (len <= 13)
5136 {
5137 /* append ".c" to mnemonic if conditional */
5138 memcpy (condname, base, len);
5139 memcpy (condname + len, ".c", 2);
5140 base = condname;
5141 len += 2;
5142 return lookup_mnemonic (base, len);
5143 }
5144
5145 return NULL;
5146 }
5147
5148 /* Internal helper routine converting a vector_type_el structure *VECTYPE
5149 to a corresponding operand qualifier. */
5150
5151 static inline aarch64_opnd_qualifier_t
5152 vectype_to_qualifier (const struct vector_type_el *vectype)
5153 {
5154 /* Element size in bytes indexed by vector_el_type. */
5155 const unsigned char ele_size[5]
5156 = {1, 2, 4, 8, 16};
5157 const unsigned int ele_base [5] =
5158 {
5159 AARCH64_OPND_QLF_V_4B,
5160 AARCH64_OPND_QLF_V_2H,
5161 AARCH64_OPND_QLF_V_2S,
5162 AARCH64_OPND_QLF_V_1D,
5163 AARCH64_OPND_QLF_V_1Q
5164 };
5165
5166 if (!vectype->defined || vectype->type == NT_invtype)
5167 goto vectype_conversion_fail;
5168
5169 if (vectype->type == NT_zero)
5170 return AARCH64_OPND_QLF_P_Z;
5171 if (vectype->type == NT_merge)
5172 return AARCH64_OPND_QLF_P_M;
5173
5174 gas_assert (vectype->type >= NT_b && vectype->type <= NT_q);
5175
5176 if (vectype->defined & (NTA_HASINDEX | NTA_HASVARWIDTH))
5177 {
5178 /* Special case S_4B. */
5179 if (vectype->type == NT_b && vectype->width == 4)
5180 return AARCH64_OPND_QLF_S_4B;
5181
5182 /* Special case S_2H. */
5183 if (vectype->type == NT_h && vectype->width == 2)
5184 return AARCH64_OPND_QLF_S_2H;
5185
5186 /* Vector element register. */
5187 return AARCH64_OPND_QLF_S_B + vectype->type;
5188 }
5189 else
5190 {
5191 /* Vector register. */
5192 int reg_size = ele_size[vectype->type] * vectype->width;
5193 unsigned offset;
5194 unsigned shift;
5195 if (reg_size != 16 && reg_size != 8 && reg_size != 4)
5196 goto vectype_conversion_fail;
5197
5198 /* The conversion is by calculating the offset from the base operand
5199 qualifier for the vector type. The operand qualifiers are regular
5200 enough that the offset can established by shifting the vector width by
5201 a vector-type dependent amount. */
5202 shift = 0;
5203 if (vectype->type == NT_b)
5204 shift = 3;
5205 else if (vectype->type == NT_h || vectype->type == NT_s)
5206 shift = 2;
5207 else if (vectype->type >= NT_d)
5208 shift = 1;
5209 else
5210 gas_assert (0);
5211
5212 offset = ele_base [vectype->type] + (vectype->width >> shift);
5213 gas_assert (AARCH64_OPND_QLF_V_4B <= offset
5214 && offset <= AARCH64_OPND_QLF_V_1Q);
5215 return offset;
5216 }
5217
5218 vectype_conversion_fail:
5219 first_error (_("bad vector arrangement type"));
5220 return AARCH64_OPND_QLF_NIL;
5221 }
5222
5223 /* Process an optional operand that is found omitted from the assembly line.
5224 Fill *OPERAND for such an operand of type TYPE. OPCODE points to the
5225 instruction's opcode entry while IDX is the index of this omitted operand.
5226 */
5227
5228 static void
5229 process_omitted_operand (enum aarch64_opnd type, const aarch64_opcode *opcode,
5230 int idx, aarch64_opnd_info *operand)
5231 {
5232 aarch64_insn default_value = get_optional_operand_default_value (opcode);
5233 gas_assert (optional_operand_p (opcode, idx));
5234 gas_assert (!operand->present);
5235
5236 switch (type)
5237 {
5238 case AARCH64_OPND_Rd:
5239 case AARCH64_OPND_Rn:
5240 case AARCH64_OPND_Rm:
5241 case AARCH64_OPND_Rt:
5242 case AARCH64_OPND_Rt2:
5243 case AARCH64_OPND_Rt_SP:
5244 case AARCH64_OPND_Rs:
5245 case AARCH64_OPND_Ra:
5246 case AARCH64_OPND_Rt_SYS:
5247 case AARCH64_OPND_Rd_SP:
5248 case AARCH64_OPND_Rn_SP:
5249 case AARCH64_OPND_Rm_SP:
5250 case AARCH64_OPND_Fd:
5251 case AARCH64_OPND_Fn:
5252 case AARCH64_OPND_Fm:
5253 case AARCH64_OPND_Fa:
5254 case AARCH64_OPND_Ft:
5255 case AARCH64_OPND_Ft2:
5256 case AARCH64_OPND_Sd:
5257 case AARCH64_OPND_Sn:
5258 case AARCH64_OPND_Sm:
5259 case AARCH64_OPND_Va:
5260 case AARCH64_OPND_Vd:
5261 case AARCH64_OPND_Vn:
5262 case AARCH64_OPND_Vm:
5263 case AARCH64_OPND_VdD1:
5264 case AARCH64_OPND_VnD1:
5265 operand->reg.regno = default_value;
5266 break;
5267
5268 case AARCH64_OPND_Ed:
5269 case AARCH64_OPND_En:
5270 case AARCH64_OPND_Em:
5271 case AARCH64_OPND_Em16:
5272 case AARCH64_OPND_SM3_IMM2:
5273 operand->reglane.regno = default_value;
5274 break;
5275
5276 case AARCH64_OPND_IDX:
5277 case AARCH64_OPND_BIT_NUM:
5278 case AARCH64_OPND_IMMR:
5279 case AARCH64_OPND_IMMS:
5280 case AARCH64_OPND_SHLL_IMM:
5281 case AARCH64_OPND_IMM_VLSL:
5282 case AARCH64_OPND_IMM_VLSR:
5283 case AARCH64_OPND_CCMP_IMM:
5284 case AARCH64_OPND_FBITS:
5285 case AARCH64_OPND_UIMM4:
5286 case AARCH64_OPND_UIMM3_OP1:
5287 case AARCH64_OPND_UIMM3_OP2:
5288 case AARCH64_OPND_IMM:
5289 case AARCH64_OPND_IMM_2:
5290 case AARCH64_OPND_WIDTH:
5291 case AARCH64_OPND_UIMM7:
5292 case AARCH64_OPND_NZCV:
5293 case AARCH64_OPND_SVE_PATTERN:
5294 case AARCH64_OPND_SVE_PRFOP:
5295 operand->imm.value = default_value;
5296 break;
5297
5298 case AARCH64_OPND_SVE_PATTERN_SCALED:
5299 operand->imm.value = default_value;
5300 operand->shifter.kind = AARCH64_MOD_MUL;
5301 operand->shifter.amount = 1;
5302 break;
5303
5304 case AARCH64_OPND_EXCEPTION:
5305 inst.reloc.type = BFD_RELOC_UNUSED;
5306 break;
5307
5308 case AARCH64_OPND_BARRIER_ISB:
5309 operand->barrier = aarch64_barrier_options + default_value;
5310 break;
5311
5312 case AARCH64_OPND_BTI_TARGET:
5313 operand->hint_option = aarch64_hint_options + default_value;
5314 break;
5315
5316 default:
5317 break;
5318 }
5319 }
5320
5321 /* Process the relocation type for move wide instructions.
5322 Return TRUE on success; otherwise return FALSE. */
5323
5324 static bfd_boolean
5325 process_movw_reloc_info (void)
5326 {
5327 int is32;
5328 unsigned shift;
5329
5330 is32 = inst.base.operands[0].qualifier == AARCH64_OPND_QLF_W ? 1 : 0;
5331
5332 if (inst.base.opcode->op == OP_MOVK)
5333 switch (inst.reloc.type)
5334 {
5335 case BFD_RELOC_AARCH64_MOVW_G0_S:
5336 case BFD_RELOC_AARCH64_MOVW_G1_S:
5337 case BFD_RELOC_AARCH64_MOVW_G2_S:
5338 case BFD_RELOC_AARCH64_MOVW_PREL_G0:
5339 case BFD_RELOC_AARCH64_MOVW_PREL_G1:
5340 case BFD_RELOC_AARCH64_MOVW_PREL_G2:
5341 case BFD_RELOC_AARCH64_MOVW_PREL_G3:
5342 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
5343 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
5344 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
5345 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
5346 set_syntax_error
5347 (_("the specified relocation type is not allowed for MOVK"));
5348 return FALSE;
5349 default:
5350 break;
5351 }
5352
5353 switch (inst.reloc.type)
5354 {
5355 case BFD_RELOC_AARCH64_MOVW_G0:
5356 case BFD_RELOC_AARCH64_MOVW_G0_NC:
5357 case BFD_RELOC_AARCH64_MOVW_G0_S:
5358 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
5359 case BFD_RELOC_AARCH64_MOVW_PREL_G0:
5360 case BFD_RELOC_AARCH64_MOVW_PREL_G0_NC:
5361 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
5362 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
5363 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
5364 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0:
5365 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC:
5366 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
5367 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC:
5368 shift = 0;
5369 break;
5370 case BFD_RELOC_AARCH64_MOVW_G1:
5371 case BFD_RELOC_AARCH64_MOVW_G1_NC:
5372 case BFD_RELOC_AARCH64_MOVW_G1_S:
5373 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
5374 case BFD_RELOC_AARCH64_MOVW_PREL_G1:
5375 case BFD_RELOC_AARCH64_MOVW_PREL_G1_NC:
5376 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
5377 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
5378 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
5379 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1:
5380 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC:
5381 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
5382 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
5383 shift = 16;
5384 break;
5385 case BFD_RELOC_AARCH64_MOVW_G2:
5386 case BFD_RELOC_AARCH64_MOVW_G2_NC:
5387 case BFD_RELOC_AARCH64_MOVW_G2_S:
5388 case BFD_RELOC_AARCH64_MOVW_PREL_G2:
5389 case BFD_RELOC_AARCH64_MOVW_PREL_G2_NC:
5390 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2:
5391 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
5392 if (is32)
5393 {
5394 set_fatal_syntax_error
5395 (_("the specified relocation type is not allowed for 32-bit "
5396 "register"));
5397 return FALSE;
5398 }
5399 shift = 32;
5400 break;
5401 case BFD_RELOC_AARCH64_MOVW_G3:
5402 case BFD_RELOC_AARCH64_MOVW_PREL_G3:
5403 if (is32)
5404 {
5405 set_fatal_syntax_error
5406 (_("the specified relocation type is not allowed for 32-bit "
5407 "register"));
5408 return FALSE;
5409 }
5410 shift = 48;
5411 break;
5412 default:
5413 /* More cases should be added when more MOVW-related relocation types
5414 are supported in GAS. */
5415 gas_assert (aarch64_gas_internal_fixup_p ());
5416 /* The shift amount should have already been set by the parser. */
5417 return TRUE;
5418 }
5419 inst.base.operands[1].shifter.amount = shift;
5420 return TRUE;
5421 }
5422
5423 /* A primitive log calculator. */
5424
5425 static inline unsigned int
5426 get_logsz (unsigned int size)
5427 {
5428 const unsigned char ls[16] =
5429 {0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 4};
5430 if (size > 16)
5431 {
5432 gas_assert (0);
5433 return -1;
5434 }
5435 gas_assert (ls[size - 1] != (unsigned char)-1);
5436 return ls[size - 1];
5437 }
5438
5439 /* Determine and return the real reloc type code for an instruction
5440 with the pseudo reloc type code BFD_RELOC_AARCH64_LDST_LO12. */
5441
5442 static inline bfd_reloc_code_real_type
5443 ldst_lo12_determine_real_reloc_type (void)
5444 {
5445 unsigned logsz;
5446 enum aarch64_opnd_qualifier opd0_qlf = inst.base.operands[0].qualifier;
5447 enum aarch64_opnd_qualifier opd1_qlf = inst.base.operands[1].qualifier;
5448
5449 const bfd_reloc_code_real_type reloc_ldst_lo12[5][5] = {
5450 {
5451 BFD_RELOC_AARCH64_LDST8_LO12,
5452 BFD_RELOC_AARCH64_LDST16_LO12,
5453 BFD_RELOC_AARCH64_LDST32_LO12,
5454 BFD_RELOC_AARCH64_LDST64_LO12,
5455 BFD_RELOC_AARCH64_LDST128_LO12
5456 },
5457 {
5458 BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12,
5459 BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12,
5460 BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12,
5461 BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12,
5462 BFD_RELOC_AARCH64_NONE
5463 },
5464 {
5465 BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC,
5466 BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC,
5467 BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC,
5468 BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC,
5469 BFD_RELOC_AARCH64_NONE
5470 },
5471 {
5472 BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12,
5473 BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12,
5474 BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12,
5475 BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12,
5476 BFD_RELOC_AARCH64_NONE
5477 },
5478 {
5479 BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC,
5480 BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC,
5481 BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC,
5482 BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC,
5483 BFD_RELOC_AARCH64_NONE
5484 }
5485 };
5486
5487 gas_assert (inst.reloc.type == BFD_RELOC_AARCH64_LDST_LO12
5488 || inst.reloc.type == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12
5489 || (inst.reloc.type
5490 == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC)
5491 || (inst.reloc.type
5492 == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12)
5493 || (inst.reloc.type
5494 == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC));
5495 gas_assert (inst.base.opcode->operands[1] == AARCH64_OPND_ADDR_UIMM12);
5496
5497 if (opd1_qlf == AARCH64_OPND_QLF_NIL)
5498 opd1_qlf =
5499 aarch64_get_expected_qualifier (inst.base.opcode->qualifiers_list,
5500 1, opd0_qlf, 0);
5501 gas_assert (opd1_qlf != AARCH64_OPND_QLF_NIL);
5502
5503 logsz = get_logsz (aarch64_get_qualifier_esize (opd1_qlf));
5504 if (inst.reloc.type == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12
5505 || inst.reloc.type == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC
5506 || inst.reloc.type == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12
5507 || inst.reloc.type == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC)
5508 gas_assert (logsz <= 3);
5509 else
5510 gas_assert (logsz <= 4);
5511
5512 /* In reloc.c, these pseudo relocation types should be defined in similar
5513 order as above reloc_ldst_lo12 array. Because the array index calculation
5514 below relies on this. */
5515 return reloc_ldst_lo12[inst.reloc.type - BFD_RELOC_AARCH64_LDST_LO12][logsz];
5516 }
5517
5518 /* Check whether a register list REGINFO is valid. The registers must be
5519 numbered in increasing order (modulo 32), in increments of one or two.
5520
5521 If ACCEPT_ALTERNATE is non-zero, the register numbers should be in
5522 increments of two.
5523
5524 Return FALSE if such a register list is invalid, otherwise return TRUE. */
5525
5526 static bfd_boolean
5527 reg_list_valid_p (uint32_t reginfo, int accept_alternate)
5528 {
5529 uint32_t i, nb_regs, prev_regno, incr;
5530
5531 nb_regs = 1 + (reginfo & 0x3);
5532 reginfo >>= 2;
5533 prev_regno = reginfo & 0x1f;
5534 incr = accept_alternate ? 2 : 1;
5535
5536 for (i = 1; i < nb_regs; ++i)
5537 {
5538 uint32_t curr_regno;
5539 reginfo >>= 5;
5540 curr_regno = reginfo & 0x1f;
5541 if (curr_regno != ((prev_regno + incr) & 0x1f))
5542 return FALSE;
5543 prev_regno = curr_regno;
5544 }
5545
5546 return TRUE;
5547 }
5548
5549 /* Generic instruction operand parser. This does no encoding and no
5550 semantic validation; it merely squirrels values away in the inst
5551 structure. Returns TRUE or FALSE depending on whether the
5552 specified grammar matched. */
5553
5554 static bfd_boolean
5555 parse_operands (char *str, const aarch64_opcode *opcode)
5556 {
5557 int i;
5558 char *backtrack_pos = 0;
5559 const enum aarch64_opnd *operands = opcode->operands;
5560 aarch64_reg_type imm_reg_type;
5561
5562 clear_error ();
5563 skip_whitespace (str);
5564
5565 if (AARCH64_CPU_HAS_FEATURE (AARCH64_FEATURE_SVE, *opcode->avariant))
5566 imm_reg_type = REG_TYPE_R_Z_SP_BHSDQ_VZP;
5567 else
5568 imm_reg_type = REG_TYPE_R_Z_BHSDQ_V;
5569
5570 for (i = 0; operands[i] != AARCH64_OPND_NIL; i++)
5571 {
5572 int64_t val;
5573 const reg_entry *reg;
5574 int comma_skipped_p = 0;
5575 aarch64_reg_type rtype;
5576 struct vector_type_el vectype;
5577 aarch64_opnd_qualifier_t qualifier, base_qualifier, offset_qualifier;
5578 aarch64_opnd_info *info = &inst.base.operands[i];
5579 aarch64_reg_type reg_type;
5580
5581 DEBUG_TRACE ("parse operand %d", i);
5582
5583 /* Assign the operand code. */
5584 info->type = operands[i];
5585
5586 if (optional_operand_p (opcode, i))
5587 {
5588 /* Remember where we are in case we need to backtrack. */
5589 gas_assert (!backtrack_pos);
5590 backtrack_pos = str;
5591 }
5592
5593 /* Expect comma between operands; the backtrack mechanism will take
5594 care of cases of omitted optional operand. */
5595 if (i > 0 && ! skip_past_char (&str, ','))
5596 {
5597 set_syntax_error (_("comma expected between operands"));
5598 goto failure;
5599 }
5600 else
5601 comma_skipped_p = 1;
5602
5603 switch (operands[i])
5604 {
5605 case AARCH64_OPND_Rd:
5606 case AARCH64_OPND_Rn:
5607 case AARCH64_OPND_Rm:
5608 case AARCH64_OPND_Rt:
5609 case AARCH64_OPND_Rt2:
5610 case AARCH64_OPND_Rs:
5611 case AARCH64_OPND_Ra:
5612 case AARCH64_OPND_Rt_SYS:
5613 case AARCH64_OPND_PAIRREG:
5614 case AARCH64_OPND_SVE_Rm:
5615 po_int_reg_or_fail (REG_TYPE_R_Z);
5616 break;
5617
5618 case AARCH64_OPND_Rd_SP:
5619 case AARCH64_OPND_Rn_SP:
5620 case AARCH64_OPND_Rt_SP:
5621 case AARCH64_OPND_SVE_Rn_SP:
5622 case AARCH64_OPND_Rm_SP:
5623 po_int_reg_or_fail (REG_TYPE_R_SP);
5624 break;
5625
5626 case AARCH64_OPND_Rm_EXT:
5627 case AARCH64_OPND_Rm_SFT:
5628 po_misc_or_fail (parse_shifter_operand
5629 (&str, info, (operands[i] == AARCH64_OPND_Rm_EXT
5630 ? SHIFTED_ARITH_IMM
5631 : SHIFTED_LOGIC_IMM)));
5632 if (!info->shifter.operator_present)
5633 {
5634 /* Default to LSL if not present. Libopcodes prefers shifter
5635 kind to be explicit. */
5636 gas_assert (info->shifter.kind == AARCH64_MOD_NONE);
5637 info->shifter.kind = AARCH64_MOD_LSL;
5638 /* For Rm_EXT, libopcodes will carry out further check on whether
5639 or not stack pointer is used in the instruction (Recall that
5640 "the extend operator is not optional unless at least one of
5641 "Rd" or "Rn" is '11111' (i.e. WSP)"). */
5642 }
5643 break;
5644
5645 case AARCH64_OPND_Fd:
5646 case AARCH64_OPND_Fn:
5647 case AARCH64_OPND_Fm:
5648 case AARCH64_OPND_Fa:
5649 case AARCH64_OPND_Ft:
5650 case AARCH64_OPND_Ft2:
5651 case AARCH64_OPND_Sd:
5652 case AARCH64_OPND_Sn:
5653 case AARCH64_OPND_Sm:
5654 case AARCH64_OPND_SVE_VZn:
5655 case AARCH64_OPND_SVE_Vd:
5656 case AARCH64_OPND_SVE_Vm:
5657 case AARCH64_OPND_SVE_Vn:
5658 val = aarch64_reg_parse (&str, REG_TYPE_BHSDQ, &rtype, NULL);
5659 if (val == PARSE_FAIL)
5660 {
5661 first_error (_(get_reg_expected_msg (REG_TYPE_BHSDQ)));
5662 goto failure;
5663 }
5664 gas_assert (rtype >= REG_TYPE_FP_B && rtype <= REG_TYPE_FP_Q);
5665
5666 info->reg.regno = val;
5667 info->qualifier = AARCH64_OPND_QLF_S_B + (rtype - REG_TYPE_FP_B);
5668 break;
5669
5670 case AARCH64_OPND_SVE_Pd:
5671 case AARCH64_OPND_SVE_Pg3:
5672 case AARCH64_OPND_SVE_Pg4_5:
5673 case AARCH64_OPND_SVE_Pg4_10:
5674 case AARCH64_OPND_SVE_Pg4_16:
5675 case AARCH64_OPND_SVE_Pm:
5676 case AARCH64_OPND_SVE_Pn:
5677 case AARCH64_OPND_SVE_Pt:
5678 reg_type = REG_TYPE_PN;
5679 goto vector_reg;
5680
5681 case AARCH64_OPND_SVE_Za_5:
5682 case AARCH64_OPND_SVE_Za_16:
5683 case AARCH64_OPND_SVE_Zd:
5684 case AARCH64_OPND_SVE_Zm_5:
5685 case AARCH64_OPND_SVE_Zm_16:
5686 case AARCH64_OPND_SVE_Zn:
5687 case AARCH64_OPND_SVE_Zt:
5688 reg_type = REG_TYPE_ZN;
5689 goto vector_reg;
5690
5691 case AARCH64_OPND_Va:
5692 case AARCH64_OPND_Vd:
5693 case AARCH64_OPND_Vn:
5694 case AARCH64_OPND_Vm:
5695 reg_type = REG_TYPE_VN;
5696 vector_reg:
5697 val = aarch64_reg_parse (&str, reg_type, NULL, &vectype);
5698 if (val == PARSE_FAIL)
5699 {
5700 first_error (_(get_reg_expected_msg (reg_type)));
5701 goto failure;
5702 }
5703 if (vectype.defined & NTA_HASINDEX)
5704 goto failure;
5705
5706 info->reg.regno = val;
5707 if ((reg_type == REG_TYPE_PN || reg_type == REG_TYPE_ZN)
5708 && vectype.type == NT_invtype)
5709 /* Unqualified Pn and Zn registers are allowed in certain
5710 contexts. Rely on F_STRICT qualifier checking to catch
5711 invalid uses. */
5712 info->qualifier = AARCH64_OPND_QLF_NIL;
5713 else
5714 {
5715 info->qualifier = vectype_to_qualifier (&vectype);
5716 if (info->qualifier == AARCH64_OPND_QLF_NIL)
5717 goto failure;
5718 }
5719 break;
5720
5721 case AARCH64_OPND_VdD1:
5722 case AARCH64_OPND_VnD1:
5723 val = aarch64_reg_parse (&str, REG_TYPE_VN, NULL, &vectype);
5724 if (val == PARSE_FAIL)
5725 {
5726 set_first_syntax_error (_(get_reg_expected_msg (REG_TYPE_VN)));
5727 goto failure;
5728 }
5729 if (vectype.type != NT_d || vectype.index != 1)
5730 {
5731 set_fatal_syntax_error
5732 (_("the top half of a 128-bit FP/SIMD register is expected"));
5733 goto failure;
5734 }
5735 info->reg.regno = val;
5736 /* N.B: VdD1 and VnD1 are treated as an fp or advsimd scalar register
5737 here; it is correct for the purpose of encoding/decoding since
5738 only the register number is explicitly encoded in the related
5739 instructions, although this appears a bit hacky. */
5740 info->qualifier = AARCH64_OPND_QLF_S_D;
5741 break;
5742
5743 case AARCH64_OPND_SVE_Zm3_INDEX:
5744 case AARCH64_OPND_SVE_Zm3_22_INDEX:
5745 case AARCH64_OPND_SVE_Zm3_11_INDEX:
5746 case AARCH64_OPND_SVE_Zm4_11_INDEX:
5747 case AARCH64_OPND_SVE_Zm4_INDEX:
5748 case AARCH64_OPND_SVE_Zn_INDEX:
5749 reg_type = REG_TYPE_ZN;
5750 goto vector_reg_index;
5751
5752 case AARCH64_OPND_Ed:
5753 case AARCH64_OPND_En:
5754 case AARCH64_OPND_Em:
5755 case AARCH64_OPND_Em16:
5756 case AARCH64_OPND_SM3_IMM2:
5757 reg_type = REG_TYPE_VN;
5758 vector_reg_index:
5759 val = aarch64_reg_parse (&str, reg_type, NULL, &vectype);
5760 if (val == PARSE_FAIL)
5761 {
5762 first_error (_(get_reg_expected_msg (reg_type)));
5763 goto failure;
5764 }
5765 if (vectype.type == NT_invtype || !(vectype.defined & NTA_HASINDEX))
5766 goto failure;
5767
5768 info->reglane.regno = val;
5769 info->reglane.index = vectype.index;
5770 info->qualifier = vectype_to_qualifier (&vectype);
5771 if (info->qualifier == AARCH64_OPND_QLF_NIL)
5772 goto failure;
5773 break;
5774
5775 case AARCH64_OPND_SVE_ZnxN:
5776 case AARCH64_OPND_SVE_ZtxN:
5777 reg_type = REG_TYPE_ZN;
5778 goto vector_reg_list;
5779
5780 case AARCH64_OPND_LVn:
5781 case AARCH64_OPND_LVt:
5782 case AARCH64_OPND_LVt_AL:
5783 case AARCH64_OPND_LEt:
5784 reg_type = REG_TYPE_VN;
5785 vector_reg_list:
5786 if (reg_type == REG_TYPE_ZN
5787 && get_opcode_dependent_value (opcode) == 1
5788 && *str != '{')
5789 {
5790 val = aarch64_reg_parse (&str, reg_type, NULL, &vectype);
5791 if (val == PARSE_FAIL)
5792 {
5793 first_error (_(get_reg_expected_msg (reg_type)));
5794 goto failure;
5795 }
5796 info->reglist.first_regno = val;
5797 info->reglist.num_regs = 1;
5798 }
5799 else
5800 {
5801 val = parse_vector_reg_list (&str, reg_type, &vectype);
5802 if (val == PARSE_FAIL)
5803 goto failure;
5804
5805 if (! reg_list_valid_p (val, /* accept_alternate */ 0))
5806 {
5807 set_fatal_syntax_error (_("invalid register list"));
5808 goto failure;
5809 }
5810
5811 if (vectype.width != 0 && *str != ',')
5812 {
5813 set_fatal_syntax_error
5814 (_("expected element type rather than vector type"));
5815 goto failure;
5816 }
5817
5818 info->reglist.first_regno = (val >> 2) & 0x1f;
5819 info->reglist.num_regs = (val & 0x3) + 1;
5820 }
5821 if (operands[i] == AARCH64_OPND_LEt)
5822 {
5823 if (!(vectype.defined & NTA_HASINDEX))
5824 goto failure;
5825 info->reglist.has_index = 1;
5826 info->reglist.index = vectype.index;
5827 }
5828 else
5829 {
5830 if (vectype.defined & NTA_HASINDEX)
5831 goto failure;
5832 if (!(vectype.defined & NTA_HASTYPE))
5833 {
5834 if (reg_type == REG_TYPE_ZN)
5835 set_fatal_syntax_error (_("missing type suffix"));
5836 goto failure;
5837 }
5838 }
5839 info->qualifier = vectype_to_qualifier (&vectype);
5840 if (info->qualifier == AARCH64_OPND_QLF_NIL)
5841 goto failure;
5842 break;
5843
5844 case AARCH64_OPND_CRn:
5845 case AARCH64_OPND_CRm:
5846 {
5847 char prefix = *(str++);
5848 if (prefix != 'c' && prefix != 'C')
5849 goto failure;
5850
5851 po_imm_nc_or_fail ();
5852 if (val > 15)
5853 {
5854 set_fatal_syntax_error (_(N_ ("C0 - C15 expected")));
5855 goto failure;
5856 }
5857 info->qualifier = AARCH64_OPND_QLF_CR;
5858 info->imm.value = val;
5859 break;
5860 }
5861
5862 case AARCH64_OPND_SHLL_IMM:
5863 case AARCH64_OPND_IMM_VLSR:
5864 po_imm_or_fail (1, 64);
5865 info->imm.value = val;
5866 break;
5867
5868 case AARCH64_OPND_CCMP_IMM:
5869 case AARCH64_OPND_SIMM5:
5870 case AARCH64_OPND_FBITS:
5871 case AARCH64_OPND_TME_UIMM16:
5872 case AARCH64_OPND_UIMM4:
5873 case AARCH64_OPND_UIMM4_ADDG:
5874 case AARCH64_OPND_UIMM10:
5875 case AARCH64_OPND_UIMM3_OP1:
5876 case AARCH64_OPND_UIMM3_OP2:
5877 case AARCH64_OPND_IMM_VLSL:
5878 case AARCH64_OPND_IMM:
5879 case AARCH64_OPND_IMM_2:
5880 case AARCH64_OPND_WIDTH:
5881 case AARCH64_OPND_SVE_INV_LIMM:
5882 case AARCH64_OPND_SVE_LIMM:
5883 case AARCH64_OPND_SVE_LIMM_MOV:
5884 case AARCH64_OPND_SVE_SHLIMM_PRED:
5885 case AARCH64_OPND_SVE_SHLIMM_UNPRED:
5886 case AARCH64_OPND_SVE_SHLIMM_UNPRED_22:
5887 case AARCH64_OPND_SVE_SHRIMM_PRED:
5888 case AARCH64_OPND_SVE_SHRIMM_UNPRED:
5889 case AARCH64_OPND_SVE_SHRIMM_UNPRED_22:
5890 case AARCH64_OPND_SVE_SIMM5:
5891 case AARCH64_OPND_SVE_SIMM5B:
5892 case AARCH64_OPND_SVE_SIMM6:
5893 case AARCH64_OPND_SVE_SIMM8:
5894 case AARCH64_OPND_SVE_UIMM3:
5895 case AARCH64_OPND_SVE_UIMM7:
5896 case AARCH64_OPND_SVE_UIMM8:
5897 case AARCH64_OPND_SVE_UIMM8_53:
5898 case AARCH64_OPND_IMM_ROT1:
5899 case AARCH64_OPND_IMM_ROT2:
5900 case AARCH64_OPND_IMM_ROT3:
5901 case AARCH64_OPND_SVE_IMM_ROT1:
5902 case AARCH64_OPND_SVE_IMM_ROT2:
5903 case AARCH64_OPND_SVE_IMM_ROT3:
5904 po_imm_nc_or_fail ();
5905 info->imm.value = val;
5906 break;
5907
5908 case AARCH64_OPND_SVE_AIMM:
5909 case AARCH64_OPND_SVE_ASIMM:
5910 po_imm_nc_or_fail ();
5911 info->imm.value = val;
5912 skip_whitespace (str);
5913 if (skip_past_comma (&str))
5914 po_misc_or_fail (parse_shift (&str, info, SHIFTED_LSL));
5915 else
5916 inst.base.operands[i].shifter.kind = AARCH64_MOD_LSL;
5917 break;
5918
5919 case AARCH64_OPND_SVE_PATTERN:
5920 po_enum_or_fail (aarch64_sve_pattern_array);
5921 info->imm.value = val;
5922 break;
5923
5924 case AARCH64_OPND_SVE_PATTERN_SCALED:
5925 po_enum_or_fail (aarch64_sve_pattern_array);
5926 info->imm.value = val;
5927 if (skip_past_comma (&str)
5928 && !parse_shift (&str, info, SHIFTED_MUL))
5929 goto failure;
5930 if (!info->shifter.operator_present)
5931 {
5932 gas_assert (info->shifter.kind == AARCH64_MOD_NONE);
5933 info->shifter.kind = AARCH64_MOD_MUL;
5934 info->shifter.amount = 1;
5935 }
5936 break;
5937
5938 case AARCH64_OPND_SVE_PRFOP:
5939 po_enum_or_fail (aarch64_sve_prfop_array);
5940 info->imm.value = val;
5941 break;
5942
5943 case AARCH64_OPND_UIMM7:
5944 po_imm_or_fail (0, 127);
5945 info->imm.value = val;
5946 break;
5947
5948 case AARCH64_OPND_IDX:
5949 case AARCH64_OPND_MASK:
5950 case AARCH64_OPND_BIT_NUM:
5951 case AARCH64_OPND_IMMR:
5952 case AARCH64_OPND_IMMS:
5953 po_imm_or_fail (0, 63);
5954 info->imm.value = val;
5955 break;
5956
5957 case AARCH64_OPND_IMM0:
5958 po_imm_nc_or_fail ();
5959 if (val != 0)
5960 {
5961 set_fatal_syntax_error (_("immediate zero expected"));
5962 goto failure;
5963 }
5964 info->imm.value = 0;
5965 break;
5966
5967 case AARCH64_OPND_FPIMM0:
5968 {
5969 int qfloat;
5970 bfd_boolean res1 = FALSE, res2 = FALSE;
5971 /* N.B. -0.0 will be rejected; although -0.0 shouldn't be rejected,
5972 it is probably not worth the effort to support it. */
5973 if (!(res1 = parse_aarch64_imm_float (&str, &qfloat, FALSE,
5974 imm_reg_type))
5975 && (error_p ()
5976 || !(res2 = parse_constant_immediate (&str, &val,
5977 imm_reg_type))))
5978 goto failure;
5979 if ((res1 && qfloat == 0) || (res2 && val == 0))
5980 {
5981 info->imm.value = 0;
5982 info->imm.is_fp = 1;
5983 break;
5984 }
5985 set_fatal_syntax_error (_("immediate zero expected"));
5986 goto failure;
5987 }
5988
5989 case AARCH64_OPND_IMM_MOV:
5990 {
5991 char *saved = str;
5992 if (reg_name_p (str, REG_TYPE_R_Z_SP) ||
5993 reg_name_p (str, REG_TYPE_VN))
5994 goto failure;
5995 str = saved;
5996 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
5997 GE_OPT_PREFIX, 1));
5998 /* The MOV immediate alias will be fixed up by fix_mov_imm_insn
5999 later. fix_mov_imm_insn will try to determine a machine
6000 instruction (MOVZ, MOVN or ORR) for it and will issue an error
6001 message if the immediate cannot be moved by a single
6002 instruction. */
6003 aarch64_set_gas_internal_fixup (&inst.reloc, info, 1);
6004 inst.base.operands[i].skip = 1;
6005 }
6006 break;
6007
6008 case AARCH64_OPND_SIMD_IMM:
6009 case AARCH64_OPND_SIMD_IMM_SFT:
6010 if (! parse_big_immediate (&str, &val, imm_reg_type))
6011 goto failure;
6012 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6013 /* addr_off_p */ 0,
6014 /* need_libopcodes_p */ 1,
6015 /* skip_p */ 1);
6016 /* Parse shift.
6017 N.B. although AARCH64_OPND_SIMD_IMM doesn't permit any
6018 shift, we don't check it here; we leave the checking to
6019 the libopcodes (operand_general_constraint_met_p). By
6020 doing this, we achieve better diagnostics. */
6021 if (skip_past_comma (&str)
6022 && ! parse_shift (&str, info, SHIFTED_LSL_MSL))
6023 goto failure;
6024 if (!info->shifter.operator_present
6025 && info->type == AARCH64_OPND_SIMD_IMM_SFT)
6026 {
6027 /* Default to LSL if not present. Libopcodes prefers shifter
6028 kind to be explicit. */
6029 gas_assert (info->shifter.kind == AARCH64_MOD_NONE);
6030 info->shifter.kind = AARCH64_MOD_LSL;
6031 }
6032 break;
6033
6034 case AARCH64_OPND_FPIMM:
6035 case AARCH64_OPND_SIMD_FPIMM:
6036 case AARCH64_OPND_SVE_FPIMM8:
6037 {
6038 int qfloat;
6039 bfd_boolean dp_p;
6040
6041 dp_p = double_precision_operand_p (&inst.base.operands[0]);
6042 if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, imm_reg_type)
6043 || !aarch64_imm_float_p (qfloat))
6044 {
6045 if (!error_p ())
6046 set_fatal_syntax_error (_("invalid floating-point"
6047 " constant"));
6048 goto failure;
6049 }
6050 inst.base.operands[i].imm.value = encode_imm_float_bits (qfloat);
6051 inst.base.operands[i].imm.is_fp = 1;
6052 }
6053 break;
6054
6055 case AARCH64_OPND_SVE_I1_HALF_ONE:
6056 case AARCH64_OPND_SVE_I1_HALF_TWO:
6057 case AARCH64_OPND_SVE_I1_ZERO_ONE:
6058 {
6059 int qfloat;
6060 bfd_boolean dp_p;
6061
6062 dp_p = double_precision_operand_p (&inst.base.operands[0]);
6063 if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, imm_reg_type))
6064 {
6065 if (!error_p ())
6066 set_fatal_syntax_error (_("invalid floating-point"
6067 " constant"));
6068 goto failure;
6069 }
6070 inst.base.operands[i].imm.value = qfloat;
6071 inst.base.operands[i].imm.is_fp = 1;
6072 }
6073 break;
6074
6075 case AARCH64_OPND_LIMM:
6076 po_misc_or_fail (parse_shifter_operand (&str, info,
6077 SHIFTED_LOGIC_IMM));
6078 if (info->shifter.operator_present)
6079 {
6080 set_fatal_syntax_error
6081 (_("shift not allowed for bitmask immediate"));
6082 goto failure;
6083 }
6084 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6085 /* addr_off_p */ 0,
6086 /* need_libopcodes_p */ 1,
6087 /* skip_p */ 1);
6088 break;
6089
6090 case AARCH64_OPND_AIMM:
6091 if (opcode->op == OP_ADD)
6092 /* ADD may have relocation types. */
6093 po_misc_or_fail (parse_shifter_operand_reloc (&str, info,
6094 SHIFTED_ARITH_IMM));
6095 else
6096 po_misc_or_fail (parse_shifter_operand (&str, info,
6097 SHIFTED_ARITH_IMM));
6098 switch (inst.reloc.type)
6099 {
6100 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12:
6101 info->shifter.amount = 12;
6102 break;
6103 case BFD_RELOC_UNUSED:
6104 aarch64_set_gas_internal_fixup (&inst.reloc, info, 0);
6105 if (info->shifter.kind != AARCH64_MOD_NONE)
6106 inst.reloc.flags = FIXUP_F_HAS_EXPLICIT_SHIFT;
6107 inst.reloc.pc_rel = 0;
6108 break;
6109 default:
6110 break;
6111 }
6112 info->imm.value = 0;
6113 if (!info->shifter.operator_present)
6114 {
6115 /* Default to LSL if not present. Libopcodes prefers shifter
6116 kind to be explicit. */
6117 gas_assert (info->shifter.kind == AARCH64_MOD_NONE);
6118 info->shifter.kind = AARCH64_MOD_LSL;
6119 }
6120 break;
6121
6122 case AARCH64_OPND_HALF:
6123 {
6124 /* #<imm16> or relocation. */
6125 int internal_fixup_p;
6126 po_misc_or_fail (parse_half (&str, &internal_fixup_p));
6127 if (internal_fixup_p)
6128 aarch64_set_gas_internal_fixup (&inst.reloc, info, 0);
6129 skip_whitespace (str);
6130 if (skip_past_comma (&str))
6131 {
6132 /* {, LSL #<shift>} */
6133 if (! aarch64_gas_internal_fixup_p ())
6134 {
6135 set_fatal_syntax_error (_("can't mix relocation modifier "
6136 "with explicit shift"));
6137 goto failure;
6138 }
6139 po_misc_or_fail (parse_shift (&str, info, SHIFTED_LSL));
6140 }
6141 else
6142 inst.base.operands[i].shifter.amount = 0;
6143 inst.base.operands[i].shifter.kind = AARCH64_MOD_LSL;
6144 inst.base.operands[i].imm.value = 0;
6145 if (! process_movw_reloc_info ())
6146 goto failure;
6147 }
6148 break;
6149
6150 case AARCH64_OPND_EXCEPTION:
6151 po_misc_or_fail (parse_immediate_expression (&str, &inst.reloc.exp,
6152 imm_reg_type));
6153 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6154 /* addr_off_p */ 0,
6155 /* need_libopcodes_p */ 0,
6156 /* skip_p */ 1);
6157 break;
6158
6159 case AARCH64_OPND_NZCV:
6160 {
6161 const asm_nzcv *nzcv = hash_find_n (aarch64_nzcv_hsh, str, 4);
6162 if (nzcv != NULL)
6163 {
6164 str += 4;
6165 info->imm.value = nzcv->value;
6166 break;
6167 }
6168 po_imm_or_fail (0, 15);
6169 info->imm.value = val;
6170 }
6171 break;
6172
6173 case AARCH64_OPND_COND:
6174 case AARCH64_OPND_COND1:
6175 {
6176 char *start = str;
6177 do
6178 str++;
6179 while (ISALPHA (*str));
6180 info->cond = hash_find_n (aarch64_cond_hsh, start, str - start);
6181 if (info->cond == NULL)
6182 {
6183 set_syntax_error (_("invalid condition"));
6184 goto failure;
6185 }
6186 else if (operands[i] == AARCH64_OPND_COND1
6187 && (info->cond->value & 0xe) == 0xe)
6188 {
6189 /* Do not allow AL or NV. */
6190 set_default_error ();
6191 goto failure;
6192 }
6193 }
6194 break;
6195
6196 case AARCH64_OPND_ADDR_ADRP:
6197 po_misc_or_fail (parse_adrp (&str));
6198 /* Clear the value as operand needs to be relocated. */
6199 info->imm.value = 0;
6200 break;
6201
6202 case AARCH64_OPND_ADDR_PCREL14:
6203 case AARCH64_OPND_ADDR_PCREL19:
6204 case AARCH64_OPND_ADDR_PCREL21:
6205 case AARCH64_OPND_ADDR_PCREL26:
6206 po_misc_or_fail (parse_address (&str, info));
6207 if (!info->addr.pcrel)
6208 {
6209 set_syntax_error (_("invalid pc-relative address"));
6210 goto failure;
6211 }
6212 if (inst.gen_lit_pool
6213 && (opcode->iclass != loadlit || opcode->op == OP_PRFM_LIT))
6214 {
6215 /* Only permit "=value" in the literal load instructions.
6216 The literal will be generated by programmer_friendly_fixup. */
6217 set_syntax_error (_("invalid use of \"=immediate\""));
6218 goto failure;
6219 }
6220 if (inst.reloc.exp.X_op == O_symbol && find_reloc_table_entry (&str))
6221 {
6222 set_syntax_error (_("unrecognized relocation suffix"));
6223 goto failure;
6224 }
6225 if (inst.reloc.exp.X_op == O_constant && !inst.gen_lit_pool)
6226 {
6227 info->imm.value = inst.reloc.exp.X_add_number;
6228 inst.reloc.type = BFD_RELOC_UNUSED;
6229 }
6230 else
6231 {
6232 info->imm.value = 0;
6233 if (inst.reloc.type == BFD_RELOC_UNUSED)
6234 switch (opcode->iclass)
6235 {
6236 case compbranch:
6237 case condbranch:
6238 /* e.g. CBZ or B.COND */
6239 gas_assert (operands[i] == AARCH64_OPND_ADDR_PCREL19);
6240 inst.reloc.type = BFD_RELOC_AARCH64_BRANCH19;
6241 break;
6242 case testbranch:
6243 /* e.g. TBZ */
6244 gas_assert (operands[i] == AARCH64_OPND_ADDR_PCREL14);
6245 inst.reloc.type = BFD_RELOC_AARCH64_TSTBR14;
6246 break;
6247 case branch_imm:
6248 /* e.g. B or BL */
6249 gas_assert (operands[i] == AARCH64_OPND_ADDR_PCREL26);
6250 inst.reloc.type =
6251 (opcode->op == OP_BL) ? BFD_RELOC_AARCH64_CALL26
6252 : BFD_RELOC_AARCH64_JUMP26;
6253 break;
6254 case loadlit:
6255 gas_assert (operands[i] == AARCH64_OPND_ADDR_PCREL19);
6256 inst.reloc.type = BFD_RELOC_AARCH64_LD_LO19_PCREL;
6257 break;
6258 case pcreladdr:
6259 gas_assert (operands[i] == AARCH64_OPND_ADDR_PCREL21);
6260 inst.reloc.type = BFD_RELOC_AARCH64_ADR_LO21_PCREL;
6261 break;
6262 default:
6263 gas_assert (0);
6264 abort ();
6265 }
6266 inst.reloc.pc_rel = 1;
6267 }
6268 break;
6269
6270 case AARCH64_OPND_ADDR_SIMPLE:
6271 case AARCH64_OPND_SIMD_ADDR_SIMPLE:
6272 {
6273 /* [<Xn|SP>{, #<simm>}] */
6274 char *start = str;
6275 /* First use the normal address-parsing routines, to get
6276 the usual syntax errors. */
6277 po_misc_or_fail (parse_address (&str, info));
6278 if (info->addr.pcrel || info->addr.offset.is_reg
6279 || !info->addr.preind || info->addr.postind
6280 || info->addr.writeback)
6281 {
6282 set_syntax_error (_("invalid addressing mode"));
6283 goto failure;
6284 }
6285
6286 /* Then retry, matching the specific syntax of these addresses. */
6287 str = start;
6288 po_char_or_fail ('[');
6289 po_reg_or_fail (REG_TYPE_R64_SP);
6290 /* Accept optional ", #0". */
6291 if (operands[i] == AARCH64_OPND_ADDR_SIMPLE
6292 && skip_past_char (&str, ','))
6293 {
6294 skip_past_char (&str, '#');
6295 if (! skip_past_char (&str, '0'))
6296 {
6297 set_fatal_syntax_error
6298 (_("the optional immediate offset can only be 0"));
6299 goto failure;
6300 }
6301 }
6302 po_char_or_fail (']');
6303 break;
6304 }
6305
6306 case AARCH64_OPND_ADDR_REGOFF:
6307 /* [<Xn|SP>, <R><m>{, <extend> {<amount>}}] */
6308 po_misc_or_fail (parse_address (&str, info));
6309 regoff_addr:
6310 if (info->addr.pcrel || !info->addr.offset.is_reg
6311 || !info->addr.preind || info->addr.postind
6312 || info->addr.writeback)
6313 {
6314 set_syntax_error (_("invalid addressing mode"));
6315 goto failure;
6316 }
6317 if (!info->shifter.operator_present)
6318 {
6319 /* Default to LSL if not present. Libopcodes prefers shifter
6320 kind to be explicit. */
6321 gas_assert (info->shifter.kind == AARCH64_MOD_NONE);
6322 info->shifter.kind = AARCH64_MOD_LSL;
6323 }
6324 /* Qualifier to be deduced by libopcodes. */
6325 break;
6326
6327 case AARCH64_OPND_ADDR_SIMM7:
6328 po_misc_or_fail (parse_address (&str, info));
6329 if (info->addr.pcrel || info->addr.offset.is_reg
6330 || (!info->addr.preind && !info->addr.postind))
6331 {
6332 set_syntax_error (_("invalid addressing mode"));
6333 goto failure;
6334 }
6335 if (inst.reloc.type != BFD_RELOC_UNUSED)
6336 {
6337 set_syntax_error (_("relocation not allowed"));
6338 goto failure;
6339 }
6340 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6341 /* addr_off_p */ 1,
6342 /* need_libopcodes_p */ 1,
6343 /* skip_p */ 0);
6344 break;
6345
6346 case AARCH64_OPND_ADDR_SIMM9:
6347 case AARCH64_OPND_ADDR_SIMM9_2:
6348 case AARCH64_OPND_ADDR_SIMM11:
6349 case AARCH64_OPND_ADDR_SIMM13:
6350 po_misc_or_fail (parse_address (&str, info));
6351 if (info->addr.pcrel || info->addr.offset.is_reg
6352 || (!info->addr.preind && !info->addr.postind)
6353 || (operands[i] == AARCH64_OPND_ADDR_SIMM9_2
6354 && info->addr.writeback))
6355 {
6356 set_syntax_error (_("invalid addressing mode"));
6357 goto failure;
6358 }
6359 if (inst.reloc.type != BFD_RELOC_UNUSED)
6360 {
6361 set_syntax_error (_("relocation not allowed"));
6362 goto failure;
6363 }
6364 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6365 /* addr_off_p */ 1,
6366 /* need_libopcodes_p */ 1,
6367 /* skip_p */ 0);
6368 break;
6369
6370 case AARCH64_OPND_ADDR_SIMM10:
6371 case AARCH64_OPND_ADDR_OFFSET:
6372 po_misc_or_fail (parse_address (&str, info));
6373 if (info->addr.pcrel || info->addr.offset.is_reg
6374 || !info->addr.preind || info->addr.postind)
6375 {
6376 set_syntax_error (_("invalid addressing mode"));
6377 goto failure;
6378 }
6379 if (inst.reloc.type != BFD_RELOC_UNUSED)
6380 {
6381 set_syntax_error (_("relocation not allowed"));
6382 goto failure;
6383 }
6384 assign_imm_if_const_or_fixup_later (&inst.reloc, info,
6385 /* addr_off_p */ 1,
6386 /* need_libopcodes_p */ 1,
6387 /* skip_p */ 0);
6388 break;
6389
6390 case AARCH64_OPND_ADDR_UIMM12:
6391 po_misc_or_fail (parse_address (&str, info));
6392 if (info->addr.pcrel || info->addr.offset.is_reg
6393 || !info->addr.preind || info->addr.writeback)
6394 {
6395 set_syntax_error (_("invalid addressing mode"));
6396 goto failure;
6397 }
6398 if (inst.reloc.type == BFD_RELOC_UNUSED)
6399 aarch64_set_gas_internal_fixup (&inst.reloc, info, 1);
6400 else if (inst.reloc.type == BFD_RELOC_AARCH64_LDST_LO12
6401 || (inst.reloc.type
6402 == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12)
6403 || (inst.reloc.type
6404 == BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC)
6405 || (inst.reloc.type
6406 == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12)
6407 || (inst.reloc.type
6408 == BFD_RELOC_AARCH64_TLSLE_LDST_TPREL_LO12_NC))
6409 inst.reloc.type = ldst_lo12_determine_real_reloc_type ();
6410 /* Leave qualifier to be determined by libopcodes. */
6411 break;
6412
6413 case AARCH64_OPND_SIMD_ADDR_POST:
6414 /* [<Xn|SP>], <Xm|#<amount>> */
6415 po_misc_or_fail (parse_address (&str, info));
6416 if (!info->addr.postind || !info->addr.writeback)
6417 {
6418 set_syntax_error (_("invalid addressing mode"));
6419 goto failure;
6420 }
6421 if (!info->addr.offset.is_reg)
6422 {
6423 if (inst.reloc.exp.X_op == O_constant)
6424 info->addr.offset.imm = inst.reloc.exp.X_add_number;
6425 else
6426 {
6427 set_fatal_syntax_error
6428 (_("writeback value must be an immediate constant"));
6429 goto failure;
6430 }
6431 }
6432 /* No qualifier. */
6433 break;
6434
6435 case AARCH64_OPND_SVE_ADDR_RI_S4x16:
6436 case AARCH64_OPND_SVE_ADDR_RI_S4xVL:
6437 case AARCH64_OPND_SVE_ADDR_RI_S4x2xVL:
6438 case AARCH64_OPND_SVE_ADDR_RI_S4x3xVL:
6439 case AARCH64_OPND_SVE_ADDR_RI_S4x4xVL:
6440 case AARCH64_OPND_SVE_ADDR_RI_S6xVL:
6441 case AARCH64_OPND_SVE_ADDR_RI_S9xVL:
6442 case AARCH64_OPND_SVE_ADDR_RI_U6:
6443 case AARCH64_OPND_SVE_ADDR_RI_U6x2:
6444 case AARCH64_OPND_SVE_ADDR_RI_U6x4:
6445 case AARCH64_OPND_SVE_ADDR_RI_U6x8:
6446 /* [X<n>{, #imm, MUL VL}]
6447 [X<n>{, #imm}]
6448 but recognizing SVE registers. */
6449 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6450 &offset_qualifier));
6451 if (base_qualifier != AARCH64_OPND_QLF_X)
6452 {
6453 set_syntax_error (_("invalid addressing mode"));
6454 goto failure;
6455 }
6456 sve_regimm:
6457 if (info->addr.pcrel || info->addr.offset.is_reg
6458 || !info->addr.preind || info->addr.writeback)
6459 {
6460 set_syntax_error (_("invalid addressing mode"));
6461 goto failure;
6462 }
6463 if (inst.reloc.type != BFD_RELOC_UNUSED
6464 || inst.reloc.exp.X_op != O_constant)
6465 {
6466 /* Make sure this has priority over
6467 "invalid addressing mode". */
6468 set_fatal_syntax_error (_("constant offset required"));
6469 goto failure;
6470 }
6471 info->addr.offset.imm = inst.reloc.exp.X_add_number;
6472 break;
6473
6474 case AARCH64_OPND_SVE_ADDR_R:
6475 /* [<Xn|SP>{, <R><m>}]
6476 but recognizing SVE registers. */
6477 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6478 &offset_qualifier));
6479 if (offset_qualifier == AARCH64_OPND_QLF_NIL)
6480 {
6481 offset_qualifier = AARCH64_OPND_QLF_X;
6482 info->addr.offset.is_reg = 1;
6483 info->addr.offset.regno = 31;
6484 }
6485 else if (base_qualifier != AARCH64_OPND_QLF_X
6486 || offset_qualifier != AARCH64_OPND_QLF_X)
6487 {
6488 set_syntax_error (_("invalid addressing mode"));
6489 goto failure;
6490 }
6491 goto regoff_addr;
6492
6493 case AARCH64_OPND_SVE_ADDR_RR:
6494 case AARCH64_OPND_SVE_ADDR_RR_LSL1:
6495 case AARCH64_OPND_SVE_ADDR_RR_LSL2:
6496 case AARCH64_OPND_SVE_ADDR_RR_LSL3:
6497 case AARCH64_OPND_SVE_ADDR_RX:
6498 case AARCH64_OPND_SVE_ADDR_RX_LSL1:
6499 case AARCH64_OPND_SVE_ADDR_RX_LSL2:
6500 case AARCH64_OPND_SVE_ADDR_RX_LSL3:
6501 /* [<Xn|SP>, <R><m>{, lsl #<amount>}]
6502 but recognizing SVE registers. */
6503 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6504 &offset_qualifier));
6505 if (base_qualifier != AARCH64_OPND_QLF_X
6506 || offset_qualifier != AARCH64_OPND_QLF_X)
6507 {
6508 set_syntax_error (_("invalid addressing mode"));
6509 goto failure;
6510 }
6511 goto regoff_addr;
6512
6513 case AARCH64_OPND_SVE_ADDR_RZ:
6514 case AARCH64_OPND_SVE_ADDR_RZ_LSL1:
6515 case AARCH64_OPND_SVE_ADDR_RZ_LSL2:
6516 case AARCH64_OPND_SVE_ADDR_RZ_LSL3:
6517 case AARCH64_OPND_SVE_ADDR_RZ_XTW_14:
6518 case AARCH64_OPND_SVE_ADDR_RZ_XTW_22:
6519 case AARCH64_OPND_SVE_ADDR_RZ_XTW1_14:
6520 case AARCH64_OPND_SVE_ADDR_RZ_XTW1_22:
6521 case AARCH64_OPND_SVE_ADDR_RZ_XTW2_14:
6522 case AARCH64_OPND_SVE_ADDR_RZ_XTW2_22:
6523 case AARCH64_OPND_SVE_ADDR_RZ_XTW3_14:
6524 case AARCH64_OPND_SVE_ADDR_RZ_XTW3_22:
6525 /* [<Xn|SP>, Z<m>.D{, LSL #<amount>}]
6526 [<Xn|SP>, Z<m>.<T>, <extend> {#<amount>}] */
6527 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6528 &offset_qualifier));
6529 if (base_qualifier != AARCH64_OPND_QLF_X
6530 || (offset_qualifier != AARCH64_OPND_QLF_S_S
6531 && offset_qualifier != AARCH64_OPND_QLF_S_D))
6532 {
6533 set_syntax_error (_("invalid addressing mode"));
6534 goto failure;
6535 }
6536 info->qualifier = offset_qualifier;
6537 goto regoff_addr;
6538
6539 case AARCH64_OPND_SVE_ADDR_ZX:
6540 /* [Zn.<T>{, <Xm>}]. */
6541 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6542 &offset_qualifier));
6543 /* Things to check:
6544 base_qualifier either S_S or S_D
6545 offset_qualifier must be X
6546 */
6547 if ((base_qualifier != AARCH64_OPND_QLF_S_S
6548 && base_qualifier != AARCH64_OPND_QLF_S_D)
6549 || offset_qualifier != AARCH64_OPND_QLF_X)
6550 {
6551 set_syntax_error (_("invalid addressing mode"));
6552 goto failure;
6553 }
6554 info->qualifier = base_qualifier;
6555 if (!info->addr.offset.is_reg || info->addr.pcrel
6556 || !info->addr.preind || info->addr.writeback
6557 || info->shifter.operator_present != 0)
6558 {
6559 set_syntax_error (_("invalid addressing mode"));
6560 goto failure;
6561 }
6562 info->shifter.kind = AARCH64_MOD_LSL;
6563 break;
6564
6565
6566 case AARCH64_OPND_SVE_ADDR_ZI_U5:
6567 case AARCH64_OPND_SVE_ADDR_ZI_U5x2:
6568 case AARCH64_OPND_SVE_ADDR_ZI_U5x4:
6569 case AARCH64_OPND_SVE_ADDR_ZI_U5x8:
6570 /* [Z<n>.<T>{, #imm}] */
6571 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6572 &offset_qualifier));
6573 if (base_qualifier != AARCH64_OPND_QLF_S_S
6574 && base_qualifier != AARCH64_OPND_QLF_S_D)
6575 {
6576 set_syntax_error (_("invalid addressing mode"));
6577 goto failure;
6578 }
6579 info->qualifier = base_qualifier;
6580 goto sve_regimm;
6581
6582 case AARCH64_OPND_SVE_ADDR_ZZ_LSL:
6583 case AARCH64_OPND_SVE_ADDR_ZZ_SXTW:
6584 case AARCH64_OPND_SVE_ADDR_ZZ_UXTW:
6585 /* [Z<n>.<T>, Z<m>.<T>{, LSL #<amount>}]
6586 [Z<n>.D, Z<m>.D, <extend> {#<amount>}]
6587
6588 We don't reject:
6589
6590 [Z<n>.S, Z<m>.S, <extend> {#<amount>}]
6591
6592 here since we get better error messages by leaving it to
6593 the qualifier checking routines. */
6594 po_misc_or_fail (parse_sve_address (&str, info, &base_qualifier,
6595 &offset_qualifier));
6596 if ((base_qualifier != AARCH64_OPND_QLF_S_S
6597 && base_qualifier != AARCH64_OPND_QLF_S_D)
6598 || offset_qualifier != base_qualifier)
6599 {
6600 set_syntax_error (_("invalid addressing mode"));
6601 goto failure;
6602 }
6603 info->qualifier = base_qualifier;
6604 goto regoff_addr;
6605
6606 case AARCH64_OPND_SYSREG:
6607 {
6608 uint32_t sysreg_flags;
6609 if ((val = parse_sys_reg (&str, aarch64_sys_regs_hsh, 1, 0,
6610 &sysreg_flags)) == PARSE_FAIL)
6611 {
6612 set_syntax_error (_("unknown or missing system register name"));
6613 goto failure;
6614 }
6615 inst.base.operands[i].sysreg.value = val;
6616 inst.base.operands[i].sysreg.flags = sysreg_flags;
6617 break;
6618 }
6619
6620 case AARCH64_OPND_PSTATEFIELD:
6621 if ((val = parse_sys_reg (&str, aarch64_pstatefield_hsh, 0, 1, NULL))
6622 == PARSE_FAIL)
6623 {
6624 set_syntax_error (_("unknown or missing PSTATE field name"));
6625 goto failure;
6626 }
6627 inst.base.operands[i].pstatefield = val;
6628 break;
6629
6630 case AARCH64_OPND_SYSREG_IC:
6631 inst.base.operands[i].sysins_op =
6632 parse_sys_ins_reg (&str, aarch64_sys_regs_ic_hsh);
6633 goto sys_reg_ins;
6634
6635 case AARCH64_OPND_SYSREG_DC:
6636 inst.base.operands[i].sysins_op =
6637 parse_sys_ins_reg (&str, aarch64_sys_regs_dc_hsh);
6638 goto sys_reg_ins;
6639
6640 case AARCH64_OPND_SYSREG_AT:
6641 inst.base.operands[i].sysins_op =
6642 parse_sys_ins_reg (&str, aarch64_sys_regs_at_hsh);
6643 goto sys_reg_ins;
6644
6645 case AARCH64_OPND_SYSREG_SR:
6646 inst.base.operands[i].sysins_op =
6647 parse_sys_ins_reg (&str, aarch64_sys_regs_sr_hsh);
6648 goto sys_reg_ins;
6649
6650 case AARCH64_OPND_SYSREG_TLBI:
6651 inst.base.operands[i].sysins_op =
6652 parse_sys_ins_reg (&str, aarch64_sys_regs_tlbi_hsh);
6653 sys_reg_ins:
6654 if (inst.base.operands[i].sysins_op == NULL)
6655 {
6656 set_fatal_syntax_error ( _("unknown or missing operation name"));
6657 goto failure;
6658 }
6659 break;
6660
6661 case AARCH64_OPND_BARRIER:
6662 case AARCH64_OPND_BARRIER_ISB:
6663 val = parse_barrier (&str);
6664 if (val != PARSE_FAIL
6665 && operands[i] == AARCH64_OPND_BARRIER_ISB && val != 0xf)
6666 {
6667 /* ISB only accepts options name 'sy'. */
6668 set_syntax_error
6669 (_("the specified option is not accepted in ISB"));
6670 /* Turn off backtrack as this optional operand is present. */
6671 backtrack_pos = 0;
6672 goto failure;
6673 }
6674 /* This is an extension to accept a 0..15 immediate. */
6675 if (val == PARSE_FAIL)
6676 po_imm_or_fail (0, 15);
6677 info->barrier = aarch64_barrier_options + val;
6678 break;
6679
6680 case AARCH64_OPND_PRFOP:
6681 val = parse_pldop (&str);
6682 /* This is an extension to accept a 0..31 immediate. */
6683 if (val == PARSE_FAIL)
6684 po_imm_or_fail (0, 31);
6685 inst.base.operands[i].prfop = aarch64_prfops + val;
6686 break;
6687
6688 case AARCH64_OPND_BARRIER_PSB:
6689 val = parse_barrier_psb (&str, &(info->hint_option));
6690 if (val == PARSE_FAIL)
6691 goto failure;
6692 break;
6693
6694 case AARCH64_OPND_BTI_TARGET:
6695 val = parse_bti_operand (&str, &(info->hint_option));
6696 if (val == PARSE_FAIL)
6697 goto failure;
6698 break;
6699
6700 default:
6701 as_fatal (_("unhandled operand code %d"), operands[i]);
6702 }
6703
6704 /* If we get here, this operand was successfully parsed. */
6705 inst.base.operands[i].present = 1;
6706 continue;
6707
6708 failure:
6709 /* The parse routine should already have set the error, but in case
6710 not, set a default one here. */
6711 if (! error_p ())
6712 set_default_error ();
6713
6714 if (! backtrack_pos)
6715 goto parse_operands_return;
6716
6717 {
6718 /* We reach here because this operand is marked as optional, and
6719 either no operand was supplied or the operand was supplied but it
6720 was syntactically incorrect. In the latter case we report an
6721 error. In the former case we perform a few more checks before
6722 dropping through to the code to insert the default operand. */
6723
6724 char *tmp = backtrack_pos;
6725 char endchar = END_OF_INSN;
6726
6727 if (i != (aarch64_num_of_operands (opcode) - 1))
6728 endchar = ',';
6729 skip_past_char (&tmp, ',');
6730
6731 if (*tmp != endchar)
6732 /* The user has supplied an operand in the wrong format. */
6733 goto parse_operands_return;
6734
6735 /* Make sure there is not a comma before the optional operand.
6736 For example the fifth operand of 'sys' is optional:
6737
6738 sys #0,c0,c0,#0, <--- wrong
6739 sys #0,c0,c0,#0 <--- correct. */
6740 if (comma_skipped_p && i && endchar == END_OF_INSN)
6741 {
6742 set_fatal_syntax_error
6743 (_("unexpected comma before the omitted optional operand"));
6744 goto parse_operands_return;
6745 }
6746 }
6747
6748 /* Reaching here means we are dealing with an optional operand that is
6749 omitted from the assembly line. */
6750 gas_assert (optional_operand_p (opcode, i));
6751 info->present = 0;
6752 process_omitted_operand (operands[i], opcode, i, info);
6753
6754 /* Try again, skipping the optional operand at backtrack_pos. */
6755 str = backtrack_pos;
6756 backtrack_pos = 0;
6757
6758 /* Clear any error record after the omitted optional operand has been
6759 successfully handled. */
6760 clear_error ();
6761 }
6762
6763 /* Check if we have parsed all the operands. */
6764 if (*str != '\0' && ! error_p ())
6765 {
6766 /* Set I to the index of the last present operand; this is
6767 for the purpose of diagnostics. */
6768 for (i -= 1; i >= 0 && !inst.base.operands[i].present; --i)
6769 ;
6770 set_fatal_syntax_error
6771 (_("unexpected characters following instruction"));
6772 }
6773
6774 parse_operands_return:
6775
6776 if (error_p ())
6777 {
6778 DEBUG_TRACE ("parsing FAIL: %s - %s",
6779 operand_mismatch_kind_names[get_error_kind ()],
6780 get_error_message ());
6781 /* Record the operand error properly; this is useful when there
6782 are multiple instruction templates for a mnemonic name, so that
6783 later on, we can select the error that most closely describes
6784 the problem. */
6785 record_operand_error (opcode, i, get_error_kind (),
6786 get_error_message ());
6787 return FALSE;
6788 }
6789 else
6790 {
6791 DEBUG_TRACE ("parsing SUCCESS");
6792 return TRUE;
6793 }
6794 }
6795
6796 /* It does some fix-up to provide some programmer friendly feature while
6797 keeping the libopcodes happy, i.e. libopcodes only accepts
6798 the preferred architectural syntax.
6799 Return FALSE if there is any failure; otherwise return TRUE. */
6800
6801 static bfd_boolean
6802 programmer_friendly_fixup (aarch64_instruction *instr)
6803 {
6804 aarch64_inst *base = &instr->base;
6805 const aarch64_opcode *opcode = base->opcode;
6806 enum aarch64_op op = opcode->op;
6807 aarch64_opnd_info *operands = base->operands;
6808
6809 DEBUG_TRACE ("enter");
6810
6811 switch (opcode->iclass)
6812 {
6813 case testbranch:
6814 /* TBNZ Xn|Wn, #uimm6, label
6815 Test and Branch Not Zero: conditionally jumps to label if bit number
6816 uimm6 in register Xn is not zero. The bit number implies the width of
6817 the register, which may be written and should be disassembled as Wn if
6818 uimm is less than 32. */
6819 if (operands[0].qualifier == AARCH64_OPND_QLF_W)
6820 {
6821 if (operands[1].imm.value >= 32)
6822 {
6823 record_operand_out_of_range_error (opcode, 1, _("immediate value"),
6824 0, 31);
6825 return FALSE;
6826 }
6827 operands[0].qualifier = AARCH64_OPND_QLF_X;
6828 }
6829 break;
6830 case loadlit:
6831 /* LDR Wt, label | =value
6832 As a convenience assemblers will typically permit the notation
6833 "=value" in conjunction with the pc-relative literal load instructions
6834 to automatically place an immediate value or symbolic address in a
6835 nearby literal pool and generate a hidden label which references it.
6836 ISREG has been set to 0 in the case of =value. */
6837 if (instr->gen_lit_pool
6838 && (op == OP_LDR_LIT || op == OP_LDRV_LIT || op == OP_LDRSW_LIT))
6839 {
6840 int size = aarch64_get_qualifier_esize (operands[0].qualifier);
6841 if (op == OP_LDRSW_LIT)
6842 size = 4;
6843 if (instr->reloc.exp.X_op != O_constant
6844 && instr->reloc.exp.X_op != O_big
6845 && instr->reloc.exp.X_op != O_symbol)
6846 {
6847 record_operand_error (opcode, 1,
6848 AARCH64_OPDE_FATAL_SYNTAX_ERROR,
6849 _("constant expression expected"));
6850 return FALSE;
6851 }
6852 if (! add_to_lit_pool (&instr->reloc.exp, size))
6853 {
6854 record_operand_error (opcode, 1,
6855 AARCH64_OPDE_OTHER_ERROR,
6856 _("literal pool insertion failed"));
6857 return FALSE;
6858 }
6859 }
6860 break;
6861 case log_shift:
6862 case bitfield:
6863 /* UXT[BHW] Wd, Wn
6864 Unsigned Extend Byte|Halfword|Word: UXT[BH] is architectural alias
6865 for UBFM Wd,Wn,#0,#7|15, while UXTW is pseudo instruction which is
6866 encoded using ORR Wd, WZR, Wn (MOV Wd,Wn).
6867 A programmer-friendly assembler should accept a destination Xd in
6868 place of Wd, however that is not the preferred form for disassembly.
6869 */
6870 if ((op == OP_UXTB || op == OP_UXTH || op == OP_UXTW)
6871 && operands[1].qualifier == AARCH64_OPND_QLF_W
6872 && operands[0].qualifier == AARCH64_OPND_QLF_X)
6873 operands[0].qualifier = AARCH64_OPND_QLF_W;
6874 break;
6875
6876 case addsub_ext:
6877 {
6878 /* In the 64-bit form, the final register operand is written as Wm
6879 for all but the (possibly omitted) UXTX/LSL and SXTX
6880 operators.
6881 As a programmer-friendly assembler, we accept e.g.
6882 ADDS <Xd>, <Xn|SP>, <Xm>{, UXTB {#<amount>}} and change it to
6883 ADDS <Xd>, <Xn|SP>, <Wm>{, UXTB {#<amount>}}. */
6884 int idx = aarch64_operand_index (opcode->operands,
6885 AARCH64_OPND_Rm_EXT);
6886 gas_assert (idx == 1 || idx == 2);
6887 if (operands[0].qualifier == AARCH64_OPND_QLF_X
6888 && operands[idx].qualifier == AARCH64_OPND_QLF_X
6889 && operands[idx].shifter.kind != AARCH64_MOD_LSL
6890 && operands[idx].shifter.kind != AARCH64_MOD_UXTX
6891 && operands[idx].shifter.kind != AARCH64_MOD_SXTX)
6892 operands[idx].qualifier = AARCH64_OPND_QLF_W;
6893 }
6894 break;
6895
6896 default:
6897 break;
6898 }
6899
6900 DEBUG_TRACE ("exit with SUCCESS");
6901 return TRUE;
6902 }
6903
6904 /* Check for loads and stores that will cause unpredictable behavior. */
6905
6906 static void
6907 warn_unpredictable_ldst (aarch64_instruction *instr, char *str)
6908 {
6909 aarch64_inst *base = &instr->base;
6910 const aarch64_opcode *opcode = base->opcode;
6911 const aarch64_opnd_info *opnds = base->operands;
6912 switch (opcode->iclass)
6913 {
6914 case ldst_pos:
6915 case ldst_imm9:
6916 case ldst_imm10:
6917 case ldst_unscaled:
6918 case ldst_unpriv:
6919 /* Loading/storing the base register is unpredictable if writeback. */
6920 if ((aarch64_get_operand_class (opnds[0].type)
6921 == AARCH64_OPND_CLASS_INT_REG)
6922 && opnds[0].reg.regno == opnds[1].addr.base_regno
6923 && opnds[1].addr.base_regno != REG_SP
6924 /* Exempt STG/STZG/ST2G/STZ2G. */
6925 && !(opnds[1].type == AARCH64_OPND_ADDR_SIMM13)
6926 && opnds[1].addr.writeback)
6927 as_warn (_("unpredictable transfer with writeback -- `%s'"), str);
6928 break;
6929
6930 case ldstpair_off:
6931 case ldstnapair_offs:
6932 case ldstpair_indexed:
6933 /* Loading/storing the base register is unpredictable if writeback. */
6934 if ((aarch64_get_operand_class (opnds[0].type)
6935 == AARCH64_OPND_CLASS_INT_REG)
6936 && (opnds[0].reg.regno == opnds[2].addr.base_regno
6937 || opnds[1].reg.regno == opnds[2].addr.base_regno)
6938 && opnds[2].addr.base_regno != REG_SP
6939 /* Exempt STGP. */
6940 && !(opnds[2].type == AARCH64_OPND_ADDR_SIMM11)
6941 && opnds[2].addr.writeback)
6942 as_warn (_("unpredictable transfer with writeback -- `%s'"), str);
6943 /* Load operations must load different registers. */
6944 if ((opcode->opcode & (1 << 22))
6945 && opnds[0].reg.regno == opnds[1].reg.regno)
6946 as_warn (_("unpredictable load of register pair -- `%s'"), str);
6947 break;
6948
6949 case ldstexcl:
6950 /* It is unpredictable if the destination and status registers are the
6951 same. */
6952 if ((aarch64_get_operand_class (opnds[0].type)
6953 == AARCH64_OPND_CLASS_INT_REG)
6954 && (aarch64_get_operand_class (opnds[1].type)
6955 == AARCH64_OPND_CLASS_INT_REG)
6956 && (opnds[0].reg.regno == opnds[1].reg.regno
6957 || opnds[0].reg.regno == opnds[2].reg.regno))
6958 as_warn (_("unpredictable: identical transfer and status registers"
6959 " --`%s'"),
6960 str);
6961
6962 break;
6963
6964 default:
6965 break;
6966 }
6967 }
6968
6969 static void
6970 force_automatic_sequence_close (void)
6971 {
6972 if (now_instr_sequence.instr)
6973 {
6974 as_warn (_("previous `%s' sequence has not been closed"),
6975 now_instr_sequence.instr->opcode->name);
6976 init_insn_sequence (NULL, &now_instr_sequence);
6977 }
6978 }
6979
6980 /* A wrapper function to interface with libopcodes on encoding and
6981 record the error message if there is any.
6982
6983 Return TRUE on success; otherwise return FALSE. */
6984
6985 static bfd_boolean
6986 do_encode (const aarch64_opcode *opcode, aarch64_inst *instr,
6987 aarch64_insn *code)
6988 {
6989 aarch64_operand_error error_info;
6990 memset (&error_info, '\0', sizeof (error_info));
6991 error_info.kind = AARCH64_OPDE_NIL;
6992 if (aarch64_opcode_encode (opcode, instr, code, NULL, &error_info, insn_sequence)
6993 && !error_info.non_fatal)
6994 return TRUE;
6995
6996 gas_assert (error_info.kind != AARCH64_OPDE_NIL);
6997 record_operand_error_info (opcode, &error_info);
6998 return error_info.non_fatal;
6999 }
7000
7001 #ifdef DEBUG_AARCH64
7002 static inline void
7003 dump_opcode_operands (const aarch64_opcode *opcode)
7004 {
7005 int i = 0;
7006 while (opcode->operands[i] != AARCH64_OPND_NIL)
7007 {
7008 aarch64_verbose ("\t\t opnd%d: %s", i,
7009 aarch64_get_operand_name (opcode->operands[i])[0] != '\0'
7010 ? aarch64_get_operand_name (opcode->operands[i])
7011 : aarch64_get_operand_desc (opcode->operands[i]));
7012 ++i;
7013 }
7014 }
7015 #endif /* DEBUG_AARCH64 */
7016
7017 /* This is the guts of the machine-dependent assembler. STR points to a
7018 machine dependent instruction. This function is supposed to emit
7019 the frags/bytes it assembles to. */
7020
7021 void
7022 md_assemble (char *str)
7023 {
7024 char *p = str;
7025 templates *template;
7026 aarch64_opcode *opcode;
7027 aarch64_inst *inst_base;
7028 unsigned saved_cond;
7029
7030 /* Align the previous label if needed. */
7031 if (last_label_seen != NULL)
7032 {
7033 symbol_set_frag (last_label_seen, frag_now);
7034 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
7035 S_SET_SEGMENT (last_label_seen, now_seg);
7036 }
7037
7038 /* Update the current insn_sequence from the segment. */
7039 insn_sequence = &seg_info (now_seg)->tc_segment_info_data.insn_sequence;
7040
7041 inst.reloc.type = BFD_RELOC_UNUSED;
7042
7043 DEBUG_TRACE ("\n\n");
7044 DEBUG_TRACE ("==============================");
7045 DEBUG_TRACE ("Enter md_assemble with %s", str);
7046
7047 template = opcode_lookup (&p);
7048 if (!template)
7049 {
7050 /* It wasn't an instruction, but it might be a register alias of
7051 the form alias .req reg directive. */
7052 if (!create_register_alias (str, p))
7053 as_bad (_("unknown mnemonic `%s' -- `%s'"), get_mnemonic_name (str),
7054 str);
7055 return;
7056 }
7057
7058 skip_whitespace (p);
7059 if (*p == ',')
7060 {
7061 as_bad (_("unexpected comma after the mnemonic name `%s' -- `%s'"),
7062 get_mnemonic_name (str), str);
7063 return;
7064 }
7065
7066 init_operand_error_report ();
7067
7068 /* Sections are assumed to start aligned. In executable section, there is no
7069 MAP_DATA symbol pending. So we only align the address during
7070 MAP_DATA --> MAP_INSN transition.
7071 For other sections, this is not guaranteed. */
7072 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
7073 if (!need_pass_2 && subseg_text_p (now_seg) && mapstate == MAP_DATA)
7074 frag_align_code (2, 0);
7075
7076 saved_cond = inst.cond;
7077 reset_aarch64_instruction (&inst);
7078 inst.cond = saved_cond;
7079
7080 /* Iterate through all opcode entries with the same mnemonic name. */
7081 do
7082 {
7083 opcode = template->opcode;
7084
7085 DEBUG_TRACE ("opcode %s found", opcode->name);
7086 #ifdef DEBUG_AARCH64
7087 if (debug_dump)
7088 dump_opcode_operands (opcode);
7089 #endif /* DEBUG_AARCH64 */
7090
7091 mapping_state (MAP_INSN);
7092
7093 inst_base = &inst.base;
7094 inst_base->opcode = opcode;
7095
7096 /* Truly conditionally executed instructions, e.g. b.cond. */
7097 if (opcode->flags & F_COND)
7098 {
7099 gas_assert (inst.cond != COND_ALWAYS);
7100 inst_base->cond = get_cond_from_value (inst.cond);
7101 DEBUG_TRACE ("condition found %s", inst_base->cond->names[0]);
7102 }
7103 else if (inst.cond != COND_ALWAYS)
7104 {
7105 /* It shouldn't arrive here, where the assembly looks like a
7106 conditional instruction but the found opcode is unconditional. */
7107 gas_assert (0);
7108 continue;
7109 }
7110
7111 if (parse_operands (p, opcode)
7112 && programmer_friendly_fixup (&inst)
7113 && do_encode (inst_base->opcode, &inst.base, &inst_base->value))
7114 {
7115 /* Check that this instruction is supported for this CPU. */
7116 if (!opcode->avariant
7117 || !AARCH64_CPU_HAS_ALL_FEATURES (cpu_variant, *opcode->avariant))
7118 {
7119 as_bad (_("selected processor does not support `%s'"), str);
7120 return;
7121 }
7122
7123 warn_unpredictable_ldst (&inst, str);
7124
7125 if (inst.reloc.type == BFD_RELOC_UNUSED
7126 || !inst.reloc.need_libopcodes_p)
7127 output_inst (NULL);
7128 else
7129 {
7130 /* If there is relocation generated for the instruction,
7131 store the instruction information for the future fix-up. */
7132 struct aarch64_inst *copy;
7133 gas_assert (inst.reloc.type != BFD_RELOC_UNUSED);
7134 copy = XNEW (struct aarch64_inst);
7135 memcpy (copy, &inst.base, sizeof (struct aarch64_inst));
7136 output_inst (copy);
7137 }
7138
7139 /* Issue non-fatal messages if any. */
7140 output_operand_error_report (str, TRUE);
7141 return;
7142 }
7143
7144 template = template->next;
7145 if (template != NULL)
7146 {
7147 reset_aarch64_instruction (&inst);
7148 inst.cond = saved_cond;
7149 }
7150 }
7151 while (template != NULL);
7152
7153 /* Issue the error messages if any. */
7154 output_operand_error_report (str, FALSE);
7155 }
7156
7157 /* Various frobbings of labels and their addresses. */
7158
7159 void
7160 aarch64_start_line_hook (void)
7161 {
7162 last_label_seen = NULL;
7163 }
7164
7165 void
7166 aarch64_frob_label (symbolS * sym)
7167 {
7168 last_label_seen = sym;
7169
7170 dwarf2_emit_label (sym);
7171 }
7172
7173 void
7174 aarch64_frob_section (asection *sec ATTRIBUTE_UNUSED)
7175 {
7176 /* Check to see if we have a block to close. */
7177 force_automatic_sequence_close ();
7178 }
7179
7180 int
7181 aarch64_data_in_code (void)
7182 {
7183 if (!strncmp (input_line_pointer + 1, "data:", 5))
7184 {
7185 *input_line_pointer = '/';
7186 input_line_pointer += 5;
7187 *input_line_pointer = 0;
7188 return 1;
7189 }
7190
7191 return 0;
7192 }
7193
7194 char *
7195 aarch64_canonicalize_symbol_name (char *name)
7196 {
7197 int len;
7198
7199 if ((len = strlen (name)) > 5 && streq (name + len - 5, "/data"))
7200 *(name + len - 5) = 0;
7201
7202 return name;
7203 }
7204 \f
7205 /* Table of all register names defined by default. The user can
7206 define additional names with .req. Note that all register names
7207 should appear in both upper and lowercase variants. Some registers
7208 also have mixed-case names. */
7209
7210 #define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE }
7211 #define REGDEF_ALIAS(s, n, t) { #s, n, REG_TYPE_##t, FALSE}
7212 #define REGNUM(p,n,t) REGDEF(p##n, n, t)
7213 #define REGSET16(p,t) \
7214 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
7215 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
7216 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
7217 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
7218 #define REGSET31(p,t) \
7219 REGSET16(p, t), \
7220 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
7221 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
7222 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
7223 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t)
7224 #define REGSET(p,t) \
7225 REGSET31(p,t), REGNUM(p,31,t)
7226
7227 /* These go into aarch64_reg_hsh hash-table. */
7228 static const reg_entry reg_names[] = {
7229 /* Integer registers. */
7230 REGSET31 (x, R_64), REGSET31 (X, R_64),
7231 REGSET31 (w, R_32), REGSET31 (W, R_32),
7232
7233 REGDEF_ALIAS (ip0, 16, R_64), REGDEF_ALIAS (IP0, 16, R_64),
7234 REGDEF_ALIAS (ip1, 17, R_64), REGDEF_ALIAS (IP1, 17, R_64),
7235 REGDEF_ALIAS (fp, 29, R_64), REGDEF_ALIAS (FP, 29, R_64),
7236 REGDEF_ALIAS (lr, 30, R_64), REGDEF_ALIAS (LR, 30, R_64),
7237 REGDEF (wsp, 31, SP_32), REGDEF (WSP, 31, SP_32),
7238 REGDEF (sp, 31, SP_64), REGDEF (SP, 31, SP_64),
7239
7240 REGDEF (wzr, 31, Z_32), REGDEF (WZR, 31, Z_32),
7241 REGDEF (xzr, 31, Z_64), REGDEF (XZR, 31, Z_64),
7242
7243 /* Floating-point single precision registers. */
7244 REGSET (s, FP_S), REGSET (S, FP_S),
7245
7246 /* Floating-point double precision registers. */
7247 REGSET (d, FP_D), REGSET (D, FP_D),
7248
7249 /* Floating-point half precision registers. */
7250 REGSET (h, FP_H), REGSET (H, FP_H),
7251
7252 /* Floating-point byte precision registers. */
7253 REGSET (b, FP_B), REGSET (B, FP_B),
7254
7255 /* Floating-point quad precision registers. */
7256 REGSET (q, FP_Q), REGSET (Q, FP_Q),
7257
7258 /* FP/SIMD registers. */
7259 REGSET (v, VN), REGSET (V, VN),
7260
7261 /* SVE vector registers. */
7262 REGSET (z, ZN), REGSET (Z, ZN),
7263
7264 /* SVE predicate registers. */
7265 REGSET16 (p, PN), REGSET16 (P, PN)
7266 };
7267
7268 #undef REGDEF
7269 #undef REGDEF_ALIAS
7270 #undef REGNUM
7271 #undef REGSET16
7272 #undef REGSET31
7273 #undef REGSET
7274
7275 #define N 1
7276 #define n 0
7277 #define Z 1
7278 #define z 0
7279 #define C 1
7280 #define c 0
7281 #define V 1
7282 #define v 0
7283 #define B(a,b,c,d) (((a) << 3) | ((b) << 2) | ((c) << 1) | (d))
7284 static const asm_nzcv nzcv_names[] = {
7285 {"nzcv", B (n, z, c, v)},
7286 {"nzcV", B (n, z, c, V)},
7287 {"nzCv", B (n, z, C, v)},
7288 {"nzCV", B (n, z, C, V)},
7289 {"nZcv", B (n, Z, c, v)},
7290 {"nZcV", B (n, Z, c, V)},
7291 {"nZCv", B (n, Z, C, v)},
7292 {"nZCV", B (n, Z, C, V)},
7293 {"Nzcv", B (N, z, c, v)},
7294 {"NzcV", B (N, z, c, V)},
7295 {"NzCv", B (N, z, C, v)},
7296 {"NzCV", B (N, z, C, V)},
7297 {"NZcv", B (N, Z, c, v)},
7298 {"NZcV", B (N, Z, c, V)},
7299 {"NZCv", B (N, Z, C, v)},
7300 {"NZCV", B (N, Z, C, V)}
7301 };
7302
7303 #undef N
7304 #undef n
7305 #undef Z
7306 #undef z
7307 #undef C
7308 #undef c
7309 #undef V
7310 #undef v
7311 #undef B
7312 \f
7313 /* MD interface: bits in the object file. */
7314
7315 /* Turn an integer of n bytes (in val) into a stream of bytes appropriate
7316 for use in the a.out file, and stores them in the array pointed to by buf.
7317 This knows about the endian-ness of the target machine and does
7318 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
7319 2 (short) and 4 (long) Floating numbers are put out as a series of
7320 LITTLENUMS (shorts, here at least). */
7321
7322 void
7323 md_number_to_chars (char *buf, valueT val, int n)
7324 {
7325 if (target_big_endian)
7326 number_to_chars_bigendian (buf, val, n);
7327 else
7328 number_to_chars_littleendian (buf, val, n);
7329 }
7330
7331 /* MD interface: Sections. */
7332
7333 /* Estimate the size of a frag before relaxing. Assume everything fits in
7334 4 bytes. */
7335
7336 int
7337 md_estimate_size_before_relax (fragS * fragp, segT segtype ATTRIBUTE_UNUSED)
7338 {
7339 fragp->fr_var = 4;
7340 return 4;
7341 }
7342
7343 /* Round up a section size to the appropriate boundary. */
7344
7345 valueT
7346 md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
7347 {
7348 return size;
7349 }
7350
7351 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
7352 of an rs_align_code fragment.
7353
7354 Here we fill the frag with the appropriate info for padding the
7355 output stream. The resulting frag will consist of a fixed (fr_fix)
7356 and of a repeating (fr_var) part.
7357
7358 The fixed content is always emitted before the repeating content and
7359 these two parts are used as follows in constructing the output:
7360 - the fixed part will be used to align to a valid instruction word
7361 boundary, in case that we start at a misaligned address; as no
7362 executable instruction can live at the misaligned location, we
7363 simply fill with zeros;
7364 - the variable part will be used to cover the remaining padding and
7365 we fill using the AArch64 NOP instruction.
7366
7367 Note that the size of a RS_ALIGN_CODE fragment is always 7 to provide
7368 enough storage space for up to 3 bytes for padding the back to a valid
7369 instruction alignment and exactly 4 bytes to store the NOP pattern. */
7370
7371 void
7372 aarch64_handle_align (fragS * fragP)
7373 {
7374 /* NOP = d503201f */
7375 /* AArch64 instructions are always little-endian. */
7376 static unsigned char const aarch64_noop[4] = { 0x1f, 0x20, 0x03, 0xd5 };
7377
7378 int bytes, fix, noop_size;
7379 char *p;
7380
7381 if (fragP->fr_type != rs_align_code)
7382 return;
7383
7384 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
7385 p = fragP->fr_literal + fragP->fr_fix;
7386
7387 #ifdef OBJ_ELF
7388 gas_assert (fragP->tc_frag_data.recorded);
7389 #endif
7390
7391 noop_size = sizeof (aarch64_noop);
7392
7393 fix = bytes & (noop_size - 1);
7394 if (fix)
7395 {
7396 #ifdef OBJ_ELF
7397 insert_data_mapping_symbol (MAP_INSN, fragP->fr_fix, fragP, fix);
7398 #endif
7399 memset (p, 0, fix);
7400 p += fix;
7401 fragP->fr_fix += fix;
7402 }
7403
7404 if (noop_size)
7405 memcpy (p, aarch64_noop, noop_size);
7406 fragP->fr_var = noop_size;
7407 }
7408
7409 /* Perform target specific initialisation of a frag.
7410 Note - despite the name this initialisation is not done when the frag
7411 is created, but only when its type is assigned. A frag can be created
7412 and used a long time before its type is set, so beware of assuming that
7413 this initialisation is performed first. */
7414
7415 #ifndef OBJ_ELF
7416 void
7417 aarch64_init_frag (fragS * fragP ATTRIBUTE_UNUSED,
7418 int max_chars ATTRIBUTE_UNUSED)
7419 {
7420 }
7421
7422 #else /* OBJ_ELF is defined. */
7423 void
7424 aarch64_init_frag (fragS * fragP, int max_chars)
7425 {
7426 /* Record a mapping symbol for alignment frags. We will delete this
7427 later if the alignment ends up empty. */
7428 if (!fragP->tc_frag_data.recorded)
7429 fragP->tc_frag_data.recorded = 1;
7430
7431 /* PR 21809: Do not set a mapping state for debug sections
7432 - it just confuses other tools. */
7433 if (bfd_section_flags (now_seg) & SEC_DEBUGGING)
7434 return;
7435
7436 switch (fragP->fr_type)
7437 {
7438 case rs_align_test:
7439 case rs_fill:
7440 mapping_state_2 (MAP_DATA, max_chars);
7441 break;
7442 case rs_align:
7443 /* PR 20364: We can get alignment frags in code sections,
7444 so do not just assume that we should use the MAP_DATA state. */
7445 mapping_state_2 (subseg_text_p (now_seg) ? MAP_INSN : MAP_DATA, max_chars);
7446 break;
7447 case rs_align_code:
7448 mapping_state_2 (MAP_INSN, max_chars);
7449 break;
7450 default:
7451 break;
7452 }
7453 }
7454 \f
7455 /* Initialize the DWARF-2 unwind information for this procedure. */
7456
7457 void
7458 tc_aarch64_frame_initial_instructions (void)
7459 {
7460 cfi_add_CFA_def_cfa (REG_SP, 0);
7461 }
7462 #endif /* OBJ_ELF */
7463
7464 /* Convert REGNAME to a DWARF-2 register number. */
7465
7466 int
7467 tc_aarch64_regname_to_dw2regnum (char *regname)
7468 {
7469 const reg_entry *reg = parse_reg (&regname);
7470 if (reg == NULL)
7471 return -1;
7472
7473 switch (reg->type)
7474 {
7475 case REG_TYPE_SP_32:
7476 case REG_TYPE_SP_64:
7477 case REG_TYPE_R_32:
7478 case REG_TYPE_R_64:
7479 return reg->number;
7480
7481 case REG_TYPE_FP_B:
7482 case REG_TYPE_FP_H:
7483 case REG_TYPE_FP_S:
7484 case REG_TYPE_FP_D:
7485 case REG_TYPE_FP_Q:
7486 return reg->number + 64;
7487
7488 default:
7489 break;
7490 }
7491 return -1;
7492 }
7493
7494 /* Implement DWARF2_ADDR_SIZE. */
7495
7496 int
7497 aarch64_dwarf2_addr_size (void)
7498 {
7499 #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
7500 if (ilp32_p)
7501 return 4;
7502 #endif
7503 return bfd_arch_bits_per_address (stdoutput) / 8;
7504 }
7505
7506 /* MD interface: Symbol and relocation handling. */
7507
7508 /* Return the address within the segment that a PC-relative fixup is
7509 relative to. For AArch64 PC-relative fixups applied to instructions
7510 are generally relative to the location plus AARCH64_PCREL_OFFSET bytes. */
7511
7512 long
7513 md_pcrel_from_section (fixS * fixP, segT seg)
7514 {
7515 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
7516
7517 /* If this is pc-relative and we are going to emit a relocation
7518 then we just want to put out any pipeline compensation that the linker
7519 will need. Otherwise we want to use the calculated base. */
7520 if (fixP->fx_pcrel
7521 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
7522 || aarch64_force_relocation (fixP)))
7523 base = 0;
7524
7525 /* AArch64 should be consistent for all pc-relative relocations. */
7526 return base + AARCH64_PCREL_OFFSET;
7527 }
7528
7529 /* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
7530 Otherwise we have no need to default values of symbols. */
7531
7532 symbolS *
7533 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
7534 {
7535 #ifdef OBJ_ELF
7536 if (name[0] == '_' && name[1] == 'G'
7537 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
7538 {
7539 if (!GOT_symbol)
7540 {
7541 if (symbol_find (name))
7542 as_bad (_("GOT already in the symbol table"));
7543
7544 GOT_symbol = symbol_new (name, undefined_section,
7545 (valueT) 0, &zero_address_frag);
7546 }
7547
7548 return GOT_symbol;
7549 }
7550 #endif
7551
7552 return 0;
7553 }
7554
7555 /* Return non-zero if the indicated VALUE has overflowed the maximum
7556 range expressible by a unsigned number with the indicated number of
7557 BITS. */
7558
7559 static bfd_boolean
7560 unsigned_overflow (valueT value, unsigned bits)
7561 {
7562 valueT lim;
7563 if (bits >= sizeof (valueT) * 8)
7564 return FALSE;
7565 lim = (valueT) 1 << bits;
7566 return (value >= lim);
7567 }
7568
7569
7570 /* Return non-zero if the indicated VALUE has overflowed the maximum
7571 range expressible by an signed number with the indicated number of
7572 BITS. */
7573
7574 static bfd_boolean
7575 signed_overflow (offsetT value, unsigned bits)
7576 {
7577 offsetT lim;
7578 if (bits >= sizeof (offsetT) * 8)
7579 return FALSE;
7580 lim = (offsetT) 1 << (bits - 1);
7581 return (value < -lim || value >= lim);
7582 }
7583
7584 /* Given an instruction in *INST, which is expected to be a scaled, 12-bit,
7585 unsigned immediate offset load/store instruction, try to encode it as
7586 an unscaled, 9-bit, signed immediate offset load/store instruction.
7587 Return TRUE if it is successful; otherwise return FALSE.
7588
7589 As a programmer-friendly assembler, LDUR/STUR instructions can be generated
7590 in response to the standard LDR/STR mnemonics when the immediate offset is
7591 unambiguous, i.e. when it is negative or unaligned. */
7592
7593 static bfd_boolean
7594 try_to_encode_as_unscaled_ldst (aarch64_inst *instr)
7595 {
7596 int idx;
7597 enum aarch64_op new_op;
7598 const aarch64_opcode *new_opcode;
7599
7600 gas_assert (instr->opcode->iclass == ldst_pos);
7601
7602 switch (instr->opcode->op)
7603 {
7604 case OP_LDRB_POS:new_op = OP_LDURB; break;
7605 case OP_STRB_POS: new_op = OP_STURB; break;
7606 case OP_LDRSB_POS: new_op = OP_LDURSB; break;
7607 case OP_LDRH_POS: new_op = OP_LDURH; break;
7608 case OP_STRH_POS: new_op = OP_STURH; break;
7609 case OP_LDRSH_POS: new_op = OP_LDURSH; break;
7610 case OP_LDR_POS: new_op = OP_LDUR; break;
7611 case OP_STR_POS: new_op = OP_STUR; break;
7612 case OP_LDRF_POS: new_op = OP_LDURV; break;
7613 case OP_STRF_POS: new_op = OP_STURV; break;
7614 case OP_LDRSW_POS: new_op = OP_LDURSW; break;
7615 case OP_PRFM_POS: new_op = OP_PRFUM; break;
7616 default: new_op = OP_NIL; break;
7617 }
7618
7619 if (new_op == OP_NIL)
7620 return FALSE;
7621
7622 new_opcode = aarch64_get_opcode (new_op);
7623 gas_assert (new_opcode != NULL);
7624
7625 DEBUG_TRACE ("Check programmer-friendly STURB/LDURB -> STRB/LDRB: %d == %d",
7626 instr->opcode->op, new_opcode->op);
7627
7628 aarch64_replace_opcode (instr, new_opcode);
7629
7630 /* Clear up the ADDR_SIMM9's qualifier; otherwise the
7631 qualifier matching may fail because the out-of-date qualifier will
7632 prevent the operand being updated with a new and correct qualifier. */
7633 idx = aarch64_operand_index (instr->opcode->operands,
7634 AARCH64_OPND_ADDR_SIMM9);
7635 gas_assert (idx == 1);
7636 instr->operands[idx].qualifier = AARCH64_OPND_QLF_NIL;
7637
7638 DEBUG_TRACE ("Found LDURB entry to encode programmer-friendly LDRB");
7639
7640 if (!aarch64_opcode_encode (instr->opcode, instr, &instr->value, NULL, NULL,
7641 insn_sequence))
7642 return FALSE;
7643
7644 return TRUE;
7645 }
7646
7647 /* Called by fix_insn to fix a MOV immediate alias instruction.
7648
7649 Operand for a generic move immediate instruction, which is an alias
7650 instruction that generates a single MOVZ, MOVN or ORR instruction to loads
7651 a 32-bit/64-bit immediate value into general register. An assembler error
7652 shall result if the immediate cannot be created by a single one of these
7653 instructions. If there is a choice, then to ensure reversability an
7654 assembler must prefer a MOVZ to MOVN, and MOVZ or MOVN to ORR. */
7655
7656 static void
7657 fix_mov_imm_insn (fixS *fixP, char *buf, aarch64_inst *instr, offsetT value)
7658 {
7659 const aarch64_opcode *opcode;
7660
7661 /* Need to check if the destination is SP/ZR. The check has to be done
7662 before any aarch64_replace_opcode. */
7663 int try_mov_wide_p = !aarch64_stack_pointer_p (&instr->operands[0]);
7664 int try_mov_bitmask_p = !aarch64_zero_register_p (&instr->operands[0]);
7665
7666 instr->operands[1].imm.value = value;
7667 instr->operands[1].skip = 0;
7668
7669 if (try_mov_wide_p)
7670 {
7671 /* Try the MOVZ alias. */
7672 opcode = aarch64_get_opcode (OP_MOV_IMM_WIDE);
7673 aarch64_replace_opcode (instr, opcode);
7674 if (aarch64_opcode_encode (instr->opcode, instr,
7675 &instr->value, NULL, NULL, insn_sequence))
7676 {
7677 put_aarch64_insn (buf, instr->value);
7678 return;
7679 }
7680 /* Try the MOVK alias. */
7681 opcode = aarch64_get_opcode (OP_MOV_IMM_WIDEN);
7682 aarch64_replace_opcode (instr, opcode);
7683 if (aarch64_opcode_encode (instr->opcode, instr,
7684 &instr->value, NULL, NULL, insn_sequence))
7685 {
7686 put_aarch64_insn (buf, instr->value);
7687 return;
7688 }
7689 }
7690
7691 if (try_mov_bitmask_p)
7692 {
7693 /* Try the ORR alias. */
7694 opcode = aarch64_get_opcode (OP_MOV_IMM_LOG);
7695 aarch64_replace_opcode (instr, opcode);
7696 if (aarch64_opcode_encode (instr->opcode, instr,
7697 &instr->value, NULL, NULL, insn_sequence))
7698 {
7699 put_aarch64_insn (buf, instr->value);
7700 return;
7701 }
7702 }
7703
7704 as_bad_where (fixP->fx_file, fixP->fx_line,
7705 _("immediate cannot be moved by a single instruction"));
7706 }
7707
7708 /* An instruction operand which is immediate related may have symbol used
7709 in the assembly, e.g.
7710
7711 mov w0, u32
7712 .set u32, 0x00ffff00
7713
7714 At the time when the assembly instruction is parsed, a referenced symbol,
7715 like 'u32' in the above example may not have been seen; a fixS is created
7716 in such a case and is handled here after symbols have been resolved.
7717 Instruction is fixed up with VALUE using the information in *FIXP plus
7718 extra information in FLAGS.
7719
7720 This function is called by md_apply_fix to fix up instructions that need
7721 a fix-up described above but does not involve any linker-time relocation. */
7722
7723 static void
7724 fix_insn (fixS *fixP, uint32_t flags, offsetT value)
7725 {
7726 int idx;
7727 uint32_t insn;
7728 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
7729 enum aarch64_opnd opnd = fixP->tc_fix_data.opnd;
7730 aarch64_inst *new_inst = fixP->tc_fix_data.inst;
7731
7732 if (new_inst)
7733 {
7734 /* Now the instruction is about to be fixed-up, so the operand that
7735 was previously marked as 'ignored' needs to be unmarked in order
7736 to get the encoding done properly. */
7737 idx = aarch64_operand_index (new_inst->opcode->operands, opnd);
7738 new_inst->operands[idx].skip = 0;
7739 }
7740
7741 gas_assert (opnd != AARCH64_OPND_NIL);
7742
7743 switch (opnd)
7744 {
7745 case AARCH64_OPND_EXCEPTION:
7746 if (unsigned_overflow (value, 16))
7747 as_bad_where (fixP->fx_file, fixP->fx_line,
7748 _("immediate out of range"));
7749 insn = get_aarch64_insn (buf);
7750 insn |= encode_svc_imm (value);
7751 put_aarch64_insn (buf, insn);
7752 break;
7753
7754 case AARCH64_OPND_AIMM:
7755 /* ADD or SUB with immediate.
7756 NOTE this assumes we come here with a add/sub shifted reg encoding
7757 3 322|2222|2 2 2 21111 111111
7758 1 098|7654|3 2 1 09876 543210 98765 43210
7759 0b000000 sf 000|1011|shift 0 Rm imm6 Rn Rd ADD
7760 2b000000 sf 010|1011|shift 0 Rm imm6 Rn Rd ADDS
7761 4b000000 sf 100|1011|shift 0 Rm imm6 Rn Rd SUB
7762 6b000000 sf 110|1011|shift 0 Rm imm6 Rn Rd SUBS
7763 ->
7764 3 322|2222|2 2 221111111111
7765 1 098|7654|3 2 109876543210 98765 43210
7766 11000000 sf 001|0001|shift imm12 Rn Rd ADD
7767 31000000 sf 011|0001|shift imm12 Rn Rd ADDS
7768 51000000 sf 101|0001|shift imm12 Rn Rd SUB
7769 71000000 sf 111|0001|shift imm12 Rn Rd SUBS
7770 Fields sf Rn Rd are already set. */
7771 insn = get_aarch64_insn (buf);
7772 if (value < 0)
7773 {
7774 /* Add <-> sub. */
7775 insn = reencode_addsub_switch_add_sub (insn);
7776 value = -value;
7777 }
7778
7779 if ((flags & FIXUP_F_HAS_EXPLICIT_SHIFT) == 0
7780 && unsigned_overflow (value, 12))
7781 {
7782 /* Try to shift the value by 12 to make it fit. */
7783 if (((value >> 12) << 12) == value
7784 && ! unsigned_overflow (value, 12 + 12))
7785 {
7786 value >>= 12;
7787 insn |= encode_addsub_imm_shift_amount (1);
7788 }
7789 }
7790
7791 if (unsigned_overflow (value, 12))
7792 as_bad_where (fixP->fx_file, fixP->fx_line,
7793 _("immediate out of range"));
7794
7795 insn |= encode_addsub_imm (value);
7796
7797 put_aarch64_insn (buf, insn);
7798 break;
7799
7800 case AARCH64_OPND_SIMD_IMM:
7801 case AARCH64_OPND_SIMD_IMM_SFT:
7802 case AARCH64_OPND_LIMM:
7803 /* Bit mask immediate. */
7804 gas_assert (new_inst != NULL);
7805 idx = aarch64_operand_index (new_inst->opcode->operands, opnd);
7806 new_inst->operands[idx].imm.value = value;
7807 if (aarch64_opcode_encode (new_inst->opcode, new_inst,
7808 &new_inst->value, NULL, NULL, insn_sequence))
7809 put_aarch64_insn (buf, new_inst->value);
7810 else
7811 as_bad_where (fixP->fx_file, fixP->fx_line,
7812 _("invalid immediate"));
7813 break;
7814
7815 case AARCH64_OPND_HALF:
7816 /* 16-bit unsigned immediate. */
7817 if (unsigned_overflow (value, 16))
7818 as_bad_where (fixP->fx_file, fixP->fx_line,
7819 _("immediate out of range"));
7820 insn = get_aarch64_insn (buf);
7821 insn |= encode_movw_imm (value & 0xffff);
7822 put_aarch64_insn (buf, insn);
7823 break;
7824
7825 case AARCH64_OPND_IMM_MOV:
7826 /* Operand for a generic move immediate instruction, which is
7827 an alias instruction that generates a single MOVZ, MOVN or ORR
7828 instruction to loads a 32-bit/64-bit immediate value into general
7829 register. An assembler error shall result if the immediate cannot be
7830 created by a single one of these instructions. If there is a choice,
7831 then to ensure reversability an assembler must prefer a MOVZ to MOVN,
7832 and MOVZ or MOVN to ORR. */
7833 gas_assert (new_inst != NULL);
7834 fix_mov_imm_insn (fixP, buf, new_inst, value);
7835 break;
7836
7837 case AARCH64_OPND_ADDR_SIMM7:
7838 case AARCH64_OPND_ADDR_SIMM9:
7839 case AARCH64_OPND_ADDR_SIMM9_2:
7840 case AARCH64_OPND_ADDR_SIMM10:
7841 case AARCH64_OPND_ADDR_UIMM12:
7842 case AARCH64_OPND_ADDR_SIMM11:
7843 case AARCH64_OPND_ADDR_SIMM13:
7844 /* Immediate offset in an address. */
7845 insn = get_aarch64_insn (buf);
7846
7847 gas_assert (new_inst != NULL && new_inst->value == insn);
7848 gas_assert (new_inst->opcode->operands[1] == opnd
7849 || new_inst->opcode->operands[2] == opnd);
7850
7851 /* Get the index of the address operand. */
7852 if (new_inst->opcode->operands[1] == opnd)
7853 /* e.g. STR <Xt>, [<Xn|SP>, <R><m>{, <extend> {<amount>}}]. */
7854 idx = 1;
7855 else
7856 /* e.g. LDP <Qt1>, <Qt2>, [<Xn|SP>{, #<imm>}]. */
7857 idx = 2;
7858
7859 /* Update the resolved offset value. */
7860 new_inst->operands[idx].addr.offset.imm = value;
7861
7862 /* Encode/fix-up. */
7863 if (aarch64_opcode_encode (new_inst->opcode, new_inst,
7864 &new_inst->value, NULL, NULL, insn_sequence))
7865 {
7866 put_aarch64_insn (buf, new_inst->value);
7867 break;
7868 }
7869 else if (new_inst->opcode->iclass == ldst_pos
7870 && try_to_encode_as_unscaled_ldst (new_inst))
7871 {
7872 put_aarch64_insn (buf, new_inst->value);
7873 break;
7874 }
7875
7876 as_bad_where (fixP->fx_file, fixP->fx_line,
7877 _("immediate offset out of range"));
7878 break;
7879
7880 default:
7881 gas_assert (0);
7882 as_fatal (_("unhandled operand code %d"), opnd);
7883 }
7884 }
7885
7886 /* Apply a fixup (fixP) to segment data, once it has been determined
7887 by our caller that we have all the info we need to fix it up.
7888
7889 Parameter valP is the pointer to the value of the bits. */
7890
7891 void
7892 md_apply_fix (fixS * fixP, valueT * valP, segT seg)
7893 {
7894 offsetT value = *valP;
7895 uint32_t insn;
7896 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
7897 int scale;
7898 unsigned flags = fixP->fx_addnumber;
7899
7900 DEBUG_TRACE ("\n\n");
7901 DEBUG_TRACE ("~~~~~~~~~~~~~~~~~~~~~~~~~");
7902 DEBUG_TRACE ("Enter md_apply_fix");
7903
7904 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
7905
7906 /* Note whether this will delete the relocation. */
7907
7908 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
7909 fixP->fx_done = 1;
7910
7911 /* Process the relocations. */
7912 switch (fixP->fx_r_type)
7913 {
7914 case BFD_RELOC_NONE:
7915 /* This will need to go in the object file. */
7916 fixP->fx_done = 0;
7917 break;
7918
7919 case BFD_RELOC_8:
7920 case BFD_RELOC_8_PCREL:
7921 if (fixP->fx_done || !seg->use_rela_p)
7922 md_number_to_chars (buf, value, 1);
7923 break;
7924
7925 case BFD_RELOC_16:
7926 case BFD_RELOC_16_PCREL:
7927 if (fixP->fx_done || !seg->use_rela_p)
7928 md_number_to_chars (buf, value, 2);
7929 break;
7930
7931 case BFD_RELOC_32:
7932 case BFD_RELOC_32_PCREL:
7933 if (fixP->fx_done || !seg->use_rela_p)
7934 md_number_to_chars (buf, value, 4);
7935 break;
7936
7937 case BFD_RELOC_64:
7938 case BFD_RELOC_64_PCREL:
7939 if (fixP->fx_done || !seg->use_rela_p)
7940 md_number_to_chars (buf, value, 8);
7941 break;
7942
7943 case BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP:
7944 /* We claim that these fixups have been processed here, even if
7945 in fact we generate an error because we do not have a reloc
7946 for them, so tc_gen_reloc() will reject them. */
7947 fixP->fx_done = 1;
7948 if (fixP->fx_addsy && !S_IS_DEFINED (fixP->fx_addsy))
7949 {
7950 as_bad_where (fixP->fx_file, fixP->fx_line,
7951 _("undefined symbol %s used as an immediate value"),
7952 S_GET_NAME (fixP->fx_addsy));
7953 goto apply_fix_return;
7954 }
7955 fix_insn (fixP, flags, value);
7956 break;
7957
7958 case BFD_RELOC_AARCH64_LD_LO19_PCREL:
7959 if (fixP->fx_done || !seg->use_rela_p)
7960 {
7961 if (value & 3)
7962 as_bad_where (fixP->fx_file, fixP->fx_line,
7963 _("pc-relative load offset not word aligned"));
7964 if (signed_overflow (value, 21))
7965 as_bad_where (fixP->fx_file, fixP->fx_line,
7966 _("pc-relative load offset out of range"));
7967 insn = get_aarch64_insn (buf);
7968 insn |= encode_ld_lit_ofs_19 (value >> 2);
7969 put_aarch64_insn (buf, insn);
7970 }
7971 break;
7972
7973 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
7974 if (fixP->fx_done || !seg->use_rela_p)
7975 {
7976 if (signed_overflow (value, 21))
7977 as_bad_where (fixP->fx_file, fixP->fx_line,
7978 _("pc-relative address offset out of range"));
7979 insn = get_aarch64_insn (buf);
7980 insn |= encode_adr_imm (value);
7981 put_aarch64_insn (buf, insn);
7982 }
7983 break;
7984
7985 case BFD_RELOC_AARCH64_BRANCH19:
7986 if (fixP->fx_done || !seg->use_rela_p)
7987 {
7988 if (value & 3)
7989 as_bad_where (fixP->fx_file, fixP->fx_line,
7990 _("conditional branch target not word aligned"));
7991 if (signed_overflow (value, 21))
7992 as_bad_where (fixP->fx_file, fixP->fx_line,
7993 _("conditional branch out of range"));
7994 insn = get_aarch64_insn (buf);
7995 insn |= encode_cond_branch_ofs_19 (value >> 2);
7996 put_aarch64_insn (buf, insn);
7997 }
7998 break;
7999
8000 case BFD_RELOC_AARCH64_TSTBR14:
8001 if (fixP->fx_done || !seg->use_rela_p)
8002 {
8003 if (value & 3)
8004 as_bad_where (fixP->fx_file, fixP->fx_line,
8005 _("conditional branch target not word aligned"));
8006 if (signed_overflow (value, 16))
8007 as_bad_where (fixP->fx_file, fixP->fx_line,
8008 _("conditional branch out of range"));
8009 insn = get_aarch64_insn (buf);
8010 insn |= encode_tst_branch_ofs_14 (value >> 2);
8011 put_aarch64_insn (buf, insn);
8012 }
8013 break;
8014
8015 case BFD_RELOC_AARCH64_CALL26:
8016 case BFD_RELOC_AARCH64_JUMP26:
8017 if (fixP->fx_done || !seg->use_rela_p)
8018 {
8019 if (value & 3)
8020 as_bad_where (fixP->fx_file, fixP->fx_line,
8021 _("branch target not word aligned"));
8022 if (signed_overflow (value, 28))
8023 as_bad_where (fixP->fx_file, fixP->fx_line,
8024 _("branch out of range"));
8025 insn = get_aarch64_insn (buf);
8026 insn |= encode_branch_ofs_26 (value >> 2);
8027 put_aarch64_insn (buf, insn);
8028 }
8029 break;
8030
8031 case BFD_RELOC_AARCH64_MOVW_G0:
8032 case BFD_RELOC_AARCH64_MOVW_G0_NC:
8033 case BFD_RELOC_AARCH64_MOVW_G0_S:
8034 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
8035 case BFD_RELOC_AARCH64_MOVW_PREL_G0:
8036 case BFD_RELOC_AARCH64_MOVW_PREL_G0_NC:
8037 scale = 0;
8038 goto movw_common;
8039 case BFD_RELOC_AARCH64_MOVW_G1:
8040 case BFD_RELOC_AARCH64_MOVW_G1_NC:
8041 case BFD_RELOC_AARCH64_MOVW_G1_S:
8042 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
8043 case BFD_RELOC_AARCH64_MOVW_PREL_G1:
8044 case BFD_RELOC_AARCH64_MOVW_PREL_G1_NC:
8045 scale = 16;
8046 goto movw_common;
8047 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
8048 scale = 0;
8049 S_SET_THREAD_LOCAL (fixP->fx_addsy);
8050 /* Should always be exported to object file, see
8051 aarch64_force_relocation(). */
8052 gas_assert (!fixP->fx_done);
8053 gas_assert (seg->use_rela_p);
8054 goto movw_common;
8055 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
8056 scale = 16;
8057 S_SET_THREAD_LOCAL (fixP->fx_addsy);
8058 /* Should always be exported to object file, see
8059 aarch64_force_relocation(). */
8060 gas_assert (!fixP->fx_done);
8061 gas_assert (seg->use_rela_p);
8062 goto movw_common;
8063 case BFD_RELOC_AARCH64_MOVW_G2:
8064 case BFD_RELOC_AARCH64_MOVW_G2_NC:
8065 case BFD_RELOC_AARCH64_MOVW_G2_S:
8066 case BFD_RELOC_AARCH64_MOVW_PREL_G2:
8067 case BFD_RELOC_AARCH64_MOVW_PREL_G2_NC:
8068 scale = 32;
8069 goto movw_common;
8070 case BFD_RELOC_AARCH64_MOVW_G3:
8071 case BFD_RELOC_AARCH64_MOVW_PREL_G3:
8072 scale = 48;
8073 movw_common:
8074 if (fixP->fx_done || !seg->use_rela_p)
8075 {
8076 insn = get_aarch64_insn (buf);
8077
8078 if (!fixP->fx_done)
8079 {
8080 /* REL signed addend must fit in 16 bits */
8081 if (signed_overflow (value, 16))
8082 as_bad_where (fixP->fx_file, fixP->fx_line,
8083 _("offset out of range"));
8084 }
8085 else
8086 {
8087 /* Check for overflow and scale. */
8088 switch (fixP->fx_r_type)
8089 {
8090 case BFD_RELOC_AARCH64_MOVW_G0:
8091 case BFD_RELOC_AARCH64_MOVW_G1:
8092 case BFD_RELOC_AARCH64_MOVW_G2:
8093 case BFD_RELOC_AARCH64_MOVW_G3:
8094 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
8095 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
8096 if (unsigned_overflow (value, scale + 16))
8097 as_bad_where (fixP->fx_file, fixP->fx_line,
8098 _("unsigned value out of range"));
8099 break;
8100 case BFD_RELOC_AARCH64_MOVW_G0_S:
8101 case BFD_RELOC_AARCH64_MOVW_G1_S:
8102 case BFD_RELOC_AARCH64_MOVW_G2_S:
8103 case BFD_RELOC_AARCH64_MOVW_PREL_G0:
8104 case BFD_RELOC_AARCH64_MOVW_PREL_G1:
8105 case BFD_RELOC_AARCH64_MOVW_PREL_G2:
8106 /* NOTE: We can only come here with movz or movn. */
8107 if (signed_overflow (value, scale + 16))
8108 as_bad_where (fixP->fx_file, fixP->fx_line,
8109 _("signed value out of range"));
8110 if (value < 0)
8111 {
8112 /* Force use of MOVN. */
8113 value = ~value;
8114 insn = reencode_movzn_to_movn (insn);
8115 }
8116 else
8117 {
8118 /* Force use of MOVZ. */
8119 insn = reencode_movzn_to_movz (insn);
8120 }
8121 break;
8122 default:
8123 /* Unchecked relocations. */
8124 break;
8125 }
8126 value >>= scale;
8127 }
8128
8129 /* Insert value into MOVN/MOVZ/MOVK instruction. */
8130 insn |= encode_movw_imm (value & 0xffff);
8131
8132 put_aarch64_insn (buf, insn);
8133 }
8134 break;
8135
8136 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC:
8137 fixP->fx_r_type = (ilp32_p
8138 ? BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC
8139 : BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC);
8140 S_SET_THREAD_LOCAL (fixP->fx_addsy);
8141 /* Should always be exported to object file, see
8142 aarch64_force_relocation(). */
8143 gas_assert (!fixP->fx_done);
8144 gas_assert (seg->use_rela_p);
8145 break;
8146
8147 case BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC:
8148 fixP->fx_r_type = (ilp32_p
8149 ? BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC
8150 : BFD_RELOC_AARCH64_TLSDESC_LD64_LO12);
8151 S_SET_THREAD_LOCAL (fixP->fx_addsy);
8152 /* Should always be exported to object file, see
8153 aarch64_force_relocation(). */
8154 gas_assert (!fixP->fx_done);
8155 gas_assert (seg->use_rela_p);
8156 break;
8157
8158 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12:
8159 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
8160 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
8161 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
8162 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12:
8163 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
8164 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
8165 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
8166 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
8167 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
8168 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
8169 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
8170 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
8171 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
8172 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
8173 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
8174 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
8175 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12:
8176 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12:
8177 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC:
8178 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
8179 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
8180 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
8181 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12:
8182 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC:
8183 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12:
8184 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC:
8185 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12:
8186 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC:
8187 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12:
8188 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC:
8189 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0:
8190 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC:
8191 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1:
8192 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC:
8193 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2:
8194 case BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12:
8195 case BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC:
8196 case BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12:
8197 case BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC:
8198 case BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12:
8199 case BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC:
8200 case BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12:
8201 case BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC:
8202 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12:
8203 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12:
8204 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
8205 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
8206 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC:
8207 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
8208 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
8209 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
8210 S_SET_THREAD_LOCAL (fixP->fx_addsy);
8211 /* Should always be exported to object file, see
8212 aarch64_force_relocation(). */
8213 gas_assert (!fixP->fx_done);
8214 gas_assert (seg->use_rela_p);
8215 break;
8216
8217 case BFD_RELOC_AARCH64_LD_GOT_LO12_NC:
8218 /* Should always be exported to object file, see
8219 aarch64_force_relocation(). */
8220 fixP->fx_r_type = (ilp32_p
8221 ? BFD_RELOC_AARCH64_LD32_GOT_LO12_NC
8222 : BFD_RELOC_AARCH64_LD64_GOT_LO12_NC);
8223 gas_assert (!fixP->fx_done);
8224 gas_assert (seg->use_rela_p);
8225 break;
8226
8227 case BFD_RELOC_AARCH64_ADD_LO12:
8228 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
8229 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
8230 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
8231 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
8232 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
8233 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
8234 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
8235 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
8236 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
8237 case BFD_RELOC_AARCH64_LDST128_LO12:
8238 case BFD_RELOC_AARCH64_LDST16_LO12:
8239 case BFD_RELOC_AARCH64_LDST32_LO12:
8240 case BFD_RELOC_AARCH64_LDST64_LO12:
8241 case BFD_RELOC_AARCH64_LDST8_LO12:
8242 /* Should always be exported to object file, see
8243 aarch64_force_relocation(). */
8244 gas_assert (!fixP->fx_done);
8245 gas_assert (seg->use_rela_p);
8246 break;
8247
8248 case BFD_RELOC_AARCH64_TLSDESC_ADD:
8249 case BFD_RELOC_AARCH64_TLSDESC_CALL:
8250 case BFD_RELOC_AARCH64_TLSDESC_LDR:
8251 break;
8252
8253 case BFD_RELOC_UNUSED:
8254 /* An error will already have been reported. */
8255 break;
8256
8257 default:
8258 as_bad_where (fixP->fx_file, fixP->fx_line,
8259 _("unexpected %s fixup"),
8260 bfd_get_reloc_code_name (fixP->fx_r_type));
8261 break;
8262 }
8263
8264 apply_fix_return:
8265 /* Free the allocated the struct aarch64_inst.
8266 N.B. currently there are very limited number of fix-up types actually use
8267 this field, so the impact on the performance should be minimal . */
8268 if (fixP->tc_fix_data.inst != NULL)
8269 free (fixP->tc_fix_data.inst);
8270
8271 return;
8272 }
8273
8274 /* Translate internal representation of relocation info to BFD target
8275 format. */
8276
8277 arelent *
8278 tc_gen_reloc (asection * section, fixS * fixp)
8279 {
8280 arelent *reloc;
8281 bfd_reloc_code_real_type code;
8282
8283 reloc = XNEW (arelent);
8284
8285 reloc->sym_ptr_ptr = XNEW (asymbol *);
8286 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
8287 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
8288
8289 if (fixp->fx_pcrel)
8290 {
8291 if (section->use_rela_p)
8292 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
8293 else
8294 fixp->fx_offset = reloc->address;
8295 }
8296 reloc->addend = fixp->fx_offset;
8297
8298 code = fixp->fx_r_type;
8299 switch (code)
8300 {
8301 case BFD_RELOC_16:
8302 if (fixp->fx_pcrel)
8303 code = BFD_RELOC_16_PCREL;
8304 break;
8305
8306 case BFD_RELOC_32:
8307 if (fixp->fx_pcrel)
8308 code = BFD_RELOC_32_PCREL;
8309 break;
8310
8311 case BFD_RELOC_64:
8312 if (fixp->fx_pcrel)
8313 code = BFD_RELOC_64_PCREL;
8314 break;
8315
8316 default:
8317 break;
8318 }
8319
8320 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
8321 if (reloc->howto == NULL)
8322 {
8323 as_bad_where (fixp->fx_file, fixp->fx_line,
8324 _
8325 ("cannot represent %s relocation in this object file format"),
8326 bfd_get_reloc_code_name (code));
8327 return NULL;
8328 }
8329
8330 return reloc;
8331 }
8332
8333 /* This fix_new is called by cons via TC_CONS_FIX_NEW. */
8334
8335 void
8336 cons_fix_new_aarch64 (fragS * frag, int where, int size, expressionS * exp)
8337 {
8338 bfd_reloc_code_real_type type;
8339 int pcrel = 0;
8340
8341 /* Pick a reloc.
8342 FIXME: @@ Should look at CPU word size. */
8343 switch (size)
8344 {
8345 case 1:
8346 type = BFD_RELOC_8;
8347 break;
8348 case 2:
8349 type = BFD_RELOC_16;
8350 break;
8351 case 4:
8352 type = BFD_RELOC_32;
8353 break;
8354 case 8:
8355 type = BFD_RELOC_64;
8356 break;
8357 default:
8358 as_bad (_("cannot do %u-byte relocation"), size);
8359 type = BFD_RELOC_UNUSED;
8360 break;
8361 }
8362
8363 fix_new_exp (frag, where, (int) size, exp, pcrel, type);
8364 }
8365
8366 int
8367 aarch64_force_relocation (struct fix *fixp)
8368 {
8369 switch (fixp->fx_r_type)
8370 {
8371 case BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP:
8372 /* Perform these "immediate" internal relocations
8373 even if the symbol is extern or weak. */
8374 return 0;
8375
8376 case BFD_RELOC_AARCH64_LD_GOT_LO12_NC:
8377 case BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC:
8378 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC:
8379 /* Pseudo relocs that need to be fixed up according to
8380 ilp32_p. */
8381 return 0;
8382
8383 case BFD_RELOC_AARCH64_ADD_LO12:
8384 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
8385 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
8386 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
8387 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
8388 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
8389 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
8390 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
8391 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
8392 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
8393 case BFD_RELOC_AARCH64_LDST128_LO12:
8394 case BFD_RELOC_AARCH64_LDST16_LO12:
8395 case BFD_RELOC_AARCH64_LDST32_LO12:
8396 case BFD_RELOC_AARCH64_LDST64_LO12:
8397 case BFD_RELOC_AARCH64_LDST8_LO12:
8398 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12:
8399 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
8400 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
8401 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
8402 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12:
8403 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
8404 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
8405 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
8406 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
8407 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
8408 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
8409 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
8410 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
8411 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
8412 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
8413 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
8414 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
8415 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
8416 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
8417 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12:
8418 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12:
8419 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC:
8420 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
8421 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
8422 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
8423 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12:
8424 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC:
8425 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12:
8426 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC:
8427 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12:
8428 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC:
8429 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12:
8430 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC:
8431 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0:
8432 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC:
8433 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1:
8434 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC:
8435 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2:
8436 case BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12:
8437 case BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC:
8438 case BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12:
8439 case BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC:
8440 case BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12:
8441 case BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC:
8442 case BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12:
8443 case BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC:
8444 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12:
8445 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12:
8446 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
8447 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
8448 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC:
8449 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
8450 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
8451 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
8452 /* Always leave these relocations for the linker. */
8453 return 1;
8454
8455 default:
8456 break;
8457 }
8458
8459 return generic_force_reloc (fixp);
8460 }
8461
8462 #ifdef OBJ_ELF
8463
8464 /* Implement md_after_parse_args. This is the earliest time we need to decide
8465 ABI. If no -mabi specified, the ABI will be decided by target triplet. */
8466
8467 void
8468 aarch64_after_parse_args (void)
8469 {
8470 if (aarch64_abi != AARCH64_ABI_NONE)
8471 return;
8472
8473 /* DEFAULT_ARCH will have ":32" extension if it's configured for ILP32. */
8474 if (strlen (default_arch) > 7 && strcmp (default_arch + 7, ":32") == 0)
8475 aarch64_abi = AARCH64_ABI_ILP32;
8476 else
8477 aarch64_abi = AARCH64_ABI_LP64;
8478 }
8479
8480 const char *
8481 elf64_aarch64_target_format (void)
8482 {
8483 #ifdef TE_CLOUDABI
8484 /* FIXME: What to do for ilp32_p ? */
8485 if (target_big_endian)
8486 return "elf64-bigaarch64-cloudabi";
8487 else
8488 return "elf64-littleaarch64-cloudabi";
8489 #else
8490 if (target_big_endian)
8491 return ilp32_p ? "elf32-bigaarch64" : "elf64-bigaarch64";
8492 else
8493 return ilp32_p ? "elf32-littleaarch64" : "elf64-littleaarch64";
8494 #endif
8495 }
8496
8497 void
8498 aarch64elf_frob_symbol (symbolS * symp, int *puntp)
8499 {
8500 elf_frob_symbol (symp, puntp);
8501 }
8502 #endif
8503
8504 /* MD interface: Finalization. */
8505
8506 /* A good place to do this, although this was probably not intended
8507 for this kind of use. We need to dump the literal pool before
8508 references are made to a null symbol pointer. */
8509
8510 void
8511 aarch64_cleanup (void)
8512 {
8513 literal_pool *pool;
8514
8515 for (pool = list_of_pools; pool; pool = pool->next)
8516 {
8517 /* Put it at the end of the relevant section. */
8518 subseg_set (pool->section, pool->sub_section);
8519 s_ltorg (0);
8520 }
8521 }
8522
8523 #ifdef OBJ_ELF
8524 /* Remove any excess mapping symbols generated for alignment frags in
8525 SEC. We may have created a mapping symbol before a zero byte
8526 alignment; remove it if there's a mapping symbol after the
8527 alignment. */
8528 static void
8529 check_mapping_symbols (bfd * abfd ATTRIBUTE_UNUSED, asection * sec,
8530 void *dummy ATTRIBUTE_UNUSED)
8531 {
8532 segment_info_type *seginfo = seg_info (sec);
8533 fragS *fragp;
8534
8535 if (seginfo == NULL || seginfo->frchainP == NULL)
8536 return;
8537
8538 for (fragp = seginfo->frchainP->frch_root;
8539 fragp != NULL; fragp = fragp->fr_next)
8540 {
8541 symbolS *sym = fragp->tc_frag_data.last_map;
8542 fragS *next = fragp->fr_next;
8543
8544 /* Variable-sized frags have been converted to fixed size by
8545 this point. But if this was variable-sized to start with,
8546 there will be a fixed-size frag after it. So don't handle
8547 next == NULL. */
8548 if (sym == NULL || next == NULL)
8549 continue;
8550
8551 if (S_GET_VALUE (sym) < next->fr_address)
8552 /* Not at the end of this frag. */
8553 continue;
8554 know (S_GET_VALUE (sym) == next->fr_address);
8555
8556 do
8557 {
8558 if (next->tc_frag_data.first_map != NULL)
8559 {
8560 /* Next frag starts with a mapping symbol. Discard this
8561 one. */
8562 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
8563 break;
8564 }
8565
8566 if (next->fr_next == NULL)
8567 {
8568 /* This mapping symbol is at the end of the section. Discard
8569 it. */
8570 know (next->fr_fix == 0 && next->fr_var == 0);
8571 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
8572 break;
8573 }
8574
8575 /* As long as we have empty frags without any mapping symbols,
8576 keep looking. */
8577 /* If the next frag is non-empty and does not start with a
8578 mapping symbol, then this mapping symbol is required. */
8579 if (next->fr_address != next->fr_next->fr_address)
8580 break;
8581
8582 next = next->fr_next;
8583 }
8584 while (next != NULL);
8585 }
8586 }
8587 #endif
8588
8589 /* Adjust the symbol table. */
8590
8591 void
8592 aarch64_adjust_symtab (void)
8593 {
8594 #ifdef OBJ_ELF
8595 /* Remove any overlapping mapping symbols generated by alignment frags. */
8596 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
8597 /* Now do generic ELF adjustments. */
8598 elf_adjust_symtab ();
8599 #endif
8600 }
8601
8602 static void
8603 checked_hash_insert (struct hash_control *table, const char *key, void *value)
8604 {
8605 const char *hash_err;
8606
8607 hash_err = hash_insert (table, key, value);
8608 if (hash_err)
8609 printf ("Internal Error: Can't hash %s\n", key);
8610 }
8611
8612 static void
8613 fill_instruction_hash_table (void)
8614 {
8615 aarch64_opcode *opcode = aarch64_opcode_table;
8616
8617 while (opcode->name != NULL)
8618 {
8619 templates *templ, *new_templ;
8620 templ = hash_find (aarch64_ops_hsh, opcode->name);
8621
8622 new_templ = XNEW (templates);
8623 new_templ->opcode = opcode;
8624 new_templ->next = NULL;
8625
8626 if (!templ)
8627 checked_hash_insert (aarch64_ops_hsh, opcode->name, (void *) new_templ);
8628 else
8629 {
8630 new_templ->next = templ->next;
8631 templ->next = new_templ;
8632 }
8633 ++opcode;
8634 }
8635 }
8636
8637 static inline void
8638 convert_to_upper (char *dst, const char *src, size_t num)
8639 {
8640 unsigned int i;
8641 for (i = 0; i < num && *src != '\0'; ++i, ++dst, ++src)
8642 *dst = TOUPPER (*src);
8643 *dst = '\0';
8644 }
8645
8646 /* Assume STR point to a lower-case string, allocate, convert and return
8647 the corresponding upper-case string. */
8648 static inline const char*
8649 get_upper_str (const char *str)
8650 {
8651 char *ret;
8652 size_t len = strlen (str);
8653 ret = XNEWVEC (char, len + 1);
8654 convert_to_upper (ret, str, len);
8655 return ret;
8656 }
8657
8658 /* MD interface: Initialization. */
8659
8660 void
8661 md_begin (void)
8662 {
8663 unsigned mach;
8664 unsigned int i;
8665
8666 if ((aarch64_ops_hsh = hash_new ()) == NULL
8667 || (aarch64_cond_hsh = hash_new ()) == NULL
8668 || (aarch64_shift_hsh = hash_new ()) == NULL
8669 || (aarch64_sys_regs_hsh = hash_new ()) == NULL
8670 || (aarch64_pstatefield_hsh = hash_new ()) == NULL
8671 || (aarch64_sys_regs_ic_hsh = hash_new ()) == NULL
8672 || (aarch64_sys_regs_dc_hsh = hash_new ()) == NULL
8673 || (aarch64_sys_regs_at_hsh = hash_new ()) == NULL
8674 || (aarch64_sys_regs_tlbi_hsh = hash_new ()) == NULL
8675 || (aarch64_sys_regs_sr_hsh = hash_new ()) == NULL
8676 || (aarch64_reg_hsh = hash_new ()) == NULL
8677 || (aarch64_barrier_opt_hsh = hash_new ()) == NULL
8678 || (aarch64_nzcv_hsh = hash_new ()) == NULL
8679 || (aarch64_pldop_hsh = hash_new ()) == NULL
8680 || (aarch64_hint_opt_hsh = hash_new ()) == NULL)
8681 as_fatal (_("virtual memory exhausted"));
8682
8683 fill_instruction_hash_table ();
8684
8685 for (i = 0; aarch64_sys_regs[i].name != NULL; ++i)
8686 checked_hash_insert (aarch64_sys_regs_hsh, aarch64_sys_regs[i].name,
8687 (void *) (aarch64_sys_regs + i));
8688
8689 for (i = 0; aarch64_pstatefields[i].name != NULL; ++i)
8690 checked_hash_insert (aarch64_pstatefield_hsh,
8691 aarch64_pstatefields[i].name,
8692 (void *) (aarch64_pstatefields + i));
8693
8694 for (i = 0; aarch64_sys_regs_ic[i].name != NULL; i++)
8695 checked_hash_insert (aarch64_sys_regs_ic_hsh,
8696 aarch64_sys_regs_ic[i].name,
8697 (void *) (aarch64_sys_regs_ic + i));
8698
8699 for (i = 0; aarch64_sys_regs_dc[i].name != NULL; i++)
8700 checked_hash_insert (aarch64_sys_regs_dc_hsh,
8701 aarch64_sys_regs_dc[i].name,
8702 (void *) (aarch64_sys_regs_dc + i));
8703
8704 for (i = 0; aarch64_sys_regs_at[i].name != NULL; i++)
8705 checked_hash_insert (aarch64_sys_regs_at_hsh,
8706 aarch64_sys_regs_at[i].name,
8707 (void *) (aarch64_sys_regs_at + i));
8708
8709 for (i = 0; aarch64_sys_regs_tlbi[i].name != NULL; i++)
8710 checked_hash_insert (aarch64_sys_regs_tlbi_hsh,
8711 aarch64_sys_regs_tlbi[i].name,
8712 (void *) (aarch64_sys_regs_tlbi + i));
8713
8714 for (i = 0; aarch64_sys_regs_sr[i].name != NULL; i++)
8715 checked_hash_insert (aarch64_sys_regs_sr_hsh,
8716 aarch64_sys_regs_sr[i].name,
8717 (void *) (aarch64_sys_regs_sr + i));
8718
8719 for (i = 0; i < ARRAY_SIZE (reg_names); i++)
8720 checked_hash_insert (aarch64_reg_hsh, reg_names[i].name,
8721 (void *) (reg_names + i));
8722
8723 for (i = 0; i < ARRAY_SIZE (nzcv_names); i++)
8724 checked_hash_insert (aarch64_nzcv_hsh, nzcv_names[i].template,
8725 (void *) (nzcv_names + i));
8726
8727 for (i = 0; aarch64_operand_modifiers[i].name != NULL; i++)
8728 {
8729 const char *name = aarch64_operand_modifiers[i].name;
8730 checked_hash_insert (aarch64_shift_hsh, name,
8731 (void *) (aarch64_operand_modifiers + i));
8732 /* Also hash the name in the upper case. */
8733 checked_hash_insert (aarch64_shift_hsh, get_upper_str (name),
8734 (void *) (aarch64_operand_modifiers + i));
8735 }
8736
8737 for (i = 0; i < ARRAY_SIZE (aarch64_conds); i++)
8738 {
8739 unsigned int j;
8740 /* A condition code may have alias(es), e.g. "cc", "lo" and "ul" are
8741 the same condition code. */
8742 for (j = 0; j < ARRAY_SIZE (aarch64_conds[i].names); ++j)
8743 {
8744 const char *name = aarch64_conds[i].names[j];
8745 if (name == NULL)
8746 break;
8747 checked_hash_insert (aarch64_cond_hsh, name,
8748 (void *) (aarch64_conds + i));
8749 /* Also hash the name in the upper case. */
8750 checked_hash_insert (aarch64_cond_hsh, get_upper_str (name),
8751 (void *) (aarch64_conds + i));
8752 }
8753 }
8754
8755 for (i = 0; i < ARRAY_SIZE (aarch64_barrier_options); i++)
8756 {
8757 const char *name = aarch64_barrier_options[i].name;
8758 /* Skip xx00 - the unallocated values of option. */
8759 if ((i & 0x3) == 0)
8760 continue;
8761 checked_hash_insert (aarch64_barrier_opt_hsh, name,
8762 (void *) (aarch64_barrier_options + i));
8763 /* Also hash the name in the upper case. */
8764 checked_hash_insert (aarch64_barrier_opt_hsh, get_upper_str (name),
8765 (void *) (aarch64_barrier_options + i));
8766 }
8767
8768 for (i = 0; i < ARRAY_SIZE (aarch64_prfops); i++)
8769 {
8770 const char* name = aarch64_prfops[i].name;
8771 /* Skip the unallocated hint encodings. */
8772 if (name == NULL)
8773 continue;
8774 checked_hash_insert (aarch64_pldop_hsh, name,
8775 (void *) (aarch64_prfops + i));
8776 /* Also hash the name in the upper case. */
8777 checked_hash_insert (aarch64_pldop_hsh, get_upper_str (name),
8778 (void *) (aarch64_prfops + i));
8779 }
8780
8781 for (i = 0; aarch64_hint_options[i].name != NULL; i++)
8782 {
8783 const char* name = aarch64_hint_options[i].name;
8784
8785 checked_hash_insert (aarch64_hint_opt_hsh, name,
8786 (void *) (aarch64_hint_options + i));
8787 /* Also hash the name in the upper case. */
8788 checked_hash_insert (aarch64_pldop_hsh, get_upper_str (name),
8789 (void *) (aarch64_hint_options + i));
8790 }
8791
8792 /* Set the cpu variant based on the command-line options. */
8793 if (!mcpu_cpu_opt)
8794 mcpu_cpu_opt = march_cpu_opt;
8795
8796 if (!mcpu_cpu_opt)
8797 mcpu_cpu_opt = &cpu_default;
8798
8799 cpu_variant = *mcpu_cpu_opt;
8800
8801 /* Record the CPU type. */
8802 mach = ilp32_p ? bfd_mach_aarch64_ilp32 : bfd_mach_aarch64;
8803
8804 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
8805 }
8806
8807 /* Command line processing. */
8808
8809 const char *md_shortopts = "m:";
8810
8811 #ifdef AARCH64_BI_ENDIAN
8812 #define OPTION_EB (OPTION_MD_BASE + 0)
8813 #define OPTION_EL (OPTION_MD_BASE + 1)
8814 #else
8815 #if TARGET_BYTES_BIG_ENDIAN
8816 #define OPTION_EB (OPTION_MD_BASE + 0)
8817 #else
8818 #define OPTION_EL (OPTION_MD_BASE + 1)
8819 #endif
8820 #endif
8821
8822 struct option md_longopts[] = {
8823 #ifdef OPTION_EB
8824 {"EB", no_argument, NULL, OPTION_EB},
8825 #endif
8826 #ifdef OPTION_EL
8827 {"EL", no_argument, NULL, OPTION_EL},
8828 #endif
8829 {NULL, no_argument, NULL, 0}
8830 };
8831
8832 size_t md_longopts_size = sizeof (md_longopts);
8833
8834 struct aarch64_option_table
8835 {
8836 const char *option; /* Option name to match. */
8837 const char *help; /* Help information. */
8838 int *var; /* Variable to change. */
8839 int value; /* What to change it to. */
8840 char *deprecated; /* If non-null, print this message. */
8841 };
8842
8843 static struct aarch64_option_table aarch64_opts[] = {
8844 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
8845 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
8846 NULL},
8847 #ifdef DEBUG_AARCH64
8848 {"mdebug-dump", N_("temporary switch for dumping"), &debug_dump, 1, NULL},
8849 #endif /* DEBUG_AARCH64 */
8850 {"mverbose-error", N_("output verbose error messages"), &verbose_error_p, 1,
8851 NULL},
8852 {"mno-verbose-error", N_("do not output verbose error messages"),
8853 &verbose_error_p, 0, NULL},
8854 {NULL, NULL, NULL, 0, NULL}
8855 };
8856
8857 struct aarch64_cpu_option_table
8858 {
8859 const char *name;
8860 const aarch64_feature_set value;
8861 /* The canonical name of the CPU, or NULL to use NAME converted to upper
8862 case. */
8863 const char *canonical_name;
8864 };
8865
8866 /* This list should, at a minimum, contain all the cpu names
8867 recognized by GCC. */
8868 static const struct aarch64_cpu_option_table aarch64_cpus[] = {
8869 {"all", AARCH64_ANY, NULL},
8870 {"cortex-a34", AARCH64_FEATURE (AARCH64_ARCH_V8,
8871 AARCH64_FEATURE_CRC), "Cortex-A34"},
8872 {"cortex-a35", AARCH64_FEATURE (AARCH64_ARCH_V8,
8873 AARCH64_FEATURE_CRC), "Cortex-A35"},
8874 {"cortex-a53", AARCH64_FEATURE (AARCH64_ARCH_V8,
8875 AARCH64_FEATURE_CRC), "Cortex-A53"},
8876 {"cortex-a57", AARCH64_FEATURE (AARCH64_ARCH_V8,
8877 AARCH64_FEATURE_CRC), "Cortex-A57"},
8878 {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8,
8879 AARCH64_FEATURE_CRC), "Cortex-A72"},
8880 {"cortex-a73", AARCH64_FEATURE (AARCH64_ARCH_V8,
8881 AARCH64_FEATURE_CRC), "Cortex-A73"},
8882 {"cortex-a55", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8883 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16 | AARCH64_FEATURE_DOTPROD),
8884 "Cortex-A55"},
8885 {"cortex-a75", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8886 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16 | AARCH64_FEATURE_DOTPROD),
8887 "Cortex-A75"},
8888 {"cortex-a76", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8889 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16 | AARCH64_FEATURE_DOTPROD),
8890 "Cortex-A76"},
8891 {"cortex-a76ae", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8892 AARCH64_FEATURE_F16 | AARCH64_FEATURE_RCPC
8893 | AARCH64_FEATURE_DOTPROD
8894 | AARCH64_FEATURE_SSBS),
8895 "Cortex-A76AE"},
8896 {"cortex-a77", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8897 AARCH64_FEATURE_F16 | AARCH64_FEATURE_RCPC
8898 | AARCH64_FEATURE_DOTPROD
8899 | AARCH64_FEATURE_SSBS),
8900 "Cortex-A77"},
8901 {"cortex-a65", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8902 AARCH64_FEATURE_F16 | AARCH64_FEATURE_RCPC
8903 | AARCH64_FEATURE_DOTPROD
8904 | AARCH64_FEATURE_SSBS),
8905 "Cortex-A65"},
8906 {"cortex-a65ae", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8907 AARCH64_FEATURE_F16 | AARCH64_FEATURE_RCPC
8908 | AARCH64_FEATURE_DOTPROD
8909 | AARCH64_FEATURE_SSBS),
8910 "Cortex-A65AE"},
8911 {"ares", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8912 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16
8913 | AARCH64_FEATURE_DOTPROD
8914 | AARCH64_FEATURE_PROFILE),
8915 "Ares"},
8916 {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8,
8917 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
8918 "Samsung Exynos M1"},
8919 {"falkor", AARCH64_FEATURE (AARCH64_ARCH_V8,
8920 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO
8921 | AARCH64_FEATURE_RDMA),
8922 "Qualcomm Falkor"},
8923 {"neoverse-e1", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8924 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16
8925 | AARCH64_FEATURE_DOTPROD
8926 | AARCH64_FEATURE_SSBS),
8927 "Neoverse E1"},
8928 {"neoverse-n1", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
8929 AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16
8930 | AARCH64_FEATURE_DOTPROD
8931 | AARCH64_FEATURE_PROFILE),
8932 "Neoverse N1"},
8933 {"qdf24xx", AARCH64_FEATURE (AARCH64_ARCH_V8,
8934 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO
8935 | AARCH64_FEATURE_RDMA),
8936 "Qualcomm QDF24XX"},
8937 {"saphira", AARCH64_FEATURE (AARCH64_ARCH_V8_4,
8938 AARCH64_FEATURE_CRYPTO | AARCH64_FEATURE_PROFILE),
8939 "Qualcomm Saphira"},
8940 {"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
8941 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
8942 "Cavium ThunderX"},
8943 {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8_1,
8944 AARCH64_FEATURE_CRYPTO),
8945 "Broadcom Vulcan"},
8946 /* The 'xgene-1' name is an older name for 'xgene1', which was used
8947 in earlier releases and is superseded by 'xgene1' in all
8948 tools. */
8949 {"xgene-1", AARCH64_ARCH_V8, "APM X-Gene 1"},
8950 {"xgene1", AARCH64_ARCH_V8, "APM X-Gene 1"},
8951 {"xgene2", AARCH64_FEATURE (AARCH64_ARCH_V8,
8952 AARCH64_FEATURE_CRC), "APM X-Gene 2"},
8953 {"generic", AARCH64_ARCH_V8, NULL},
8954
8955 {NULL, AARCH64_ARCH_NONE, NULL}
8956 };
8957
8958 struct aarch64_arch_option_table
8959 {
8960 const char *name;
8961 const aarch64_feature_set value;
8962 };
8963
8964 /* This list should, at a minimum, contain all the architecture names
8965 recognized by GCC. */
8966 static const struct aarch64_arch_option_table aarch64_archs[] = {
8967 {"all", AARCH64_ANY},
8968 {"armv8-a", AARCH64_ARCH_V8},
8969 {"armv8.1-a", AARCH64_ARCH_V8_1},
8970 {"armv8.2-a", AARCH64_ARCH_V8_2},
8971 {"armv8.3-a", AARCH64_ARCH_V8_3},
8972 {"armv8.4-a", AARCH64_ARCH_V8_4},
8973 {"armv8.5-a", AARCH64_ARCH_V8_5},
8974 {"armv8.6-a", AARCH64_ARCH_V8_6},
8975 {NULL, AARCH64_ARCH_NONE}
8976 };
8977
8978 /* ISA extensions. */
8979 struct aarch64_option_cpu_value_table
8980 {
8981 const char *name;
8982 const aarch64_feature_set value;
8983 const aarch64_feature_set require; /* Feature dependencies. */
8984 };
8985
8986 static const struct aarch64_option_cpu_value_table aarch64_features[] = {
8987 {"crc", AARCH64_FEATURE (AARCH64_FEATURE_CRC, 0),
8988 AARCH64_ARCH_NONE},
8989 {"crypto", AARCH64_FEATURE (AARCH64_FEATURE_CRYPTO
8990 | AARCH64_FEATURE_AES
8991 | AARCH64_FEATURE_SHA2, 0),
8992 AARCH64_FEATURE (AARCH64_FEATURE_SIMD, 0)},
8993 {"fp", AARCH64_FEATURE (AARCH64_FEATURE_FP, 0),
8994 AARCH64_ARCH_NONE},
8995 {"lse", AARCH64_FEATURE (AARCH64_FEATURE_LSE, 0),
8996 AARCH64_ARCH_NONE},
8997 {"simd", AARCH64_FEATURE (AARCH64_FEATURE_SIMD, 0),
8998 AARCH64_FEATURE (AARCH64_FEATURE_FP, 0)},
8999 {"pan", AARCH64_FEATURE (AARCH64_FEATURE_PAN, 0),
9000 AARCH64_ARCH_NONE},
9001 {"lor", AARCH64_FEATURE (AARCH64_FEATURE_LOR, 0),
9002 AARCH64_ARCH_NONE},
9003 {"ras", AARCH64_FEATURE (AARCH64_FEATURE_RAS, 0),
9004 AARCH64_ARCH_NONE},
9005 {"rdma", AARCH64_FEATURE (AARCH64_FEATURE_RDMA, 0),
9006 AARCH64_FEATURE (AARCH64_FEATURE_SIMD, 0)},
9007 {"fp16", AARCH64_FEATURE (AARCH64_FEATURE_F16, 0),
9008 AARCH64_FEATURE (AARCH64_FEATURE_FP, 0)},
9009 {"fp16fml", AARCH64_FEATURE (AARCH64_FEATURE_F16_FML, 0),
9010 AARCH64_FEATURE (AARCH64_FEATURE_FP
9011 | AARCH64_FEATURE_F16, 0)},
9012 {"profile", AARCH64_FEATURE (AARCH64_FEATURE_PROFILE, 0),
9013 AARCH64_ARCH_NONE},
9014 {"sve", AARCH64_FEATURE (AARCH64_FEATURE_SVE, 0),
9015 AARCH64_FEATURE (AARCH64_FEATURE_F16
9016 | AARCH64_FEATURE_SIMD
9017 | AARCH64_FEATURE_COMPNUM, 0)},
9018 {"tme", AARCH64_FEATURE (AARCH64_FEATURE_TME, 0),
9019 AARCH64_ARCH_NONE},
9020 {"compnum", AARCH64_FEATURE (AARCH64_FEATURE_COMPNUM, 0),
9021 AARCH64_FEATURE (AARCH64_FEATURE_F16
9022 | AARCH64_FEATURE_SIMD, 0)},
9023 {"rcpc", AARCH64_FEATURE (AARCH64_FEATURE_RCPC, 0),
9024 AARCH64_ARCH_NONE},
9025 {"dotprod", AARCH64_FEATURE (AARCH64_FEATURE_DOTPROD, 0),
9026 AARCH64_ARCH_NONE},
9027 {"sha2", AARCH64_FEATURE (AARCH64_FEATURE_SHA2, 0),
9028 AARCH64_ARCH_NONE},
9029 {"sb", AARCH64_FEATURE (AARCH64_FEATURE_SB, 0),
9030 AARCH64_ARCH_NONE},
9031 {"predres", AARCH64_FEATURE (AARCH64_FEATURE_PREDRES, 0),
9032 AARCH64_ARCH_NONE},
9033 {"aes", AARCH64_FEATURE (AARCH64_FEATURE_AES, 0),
9034 AARCH64_ARCH_NONE},
9035 {"sm4", AARCH64_FEATURE (AARCH64_FEATURE_SM4, 0),
9036 AARCH64_ARCH_NONE},
9037 {"sha3", AARCH64_FEATURE (AARCH64_FEATURE_SHA2
9038 | AARCH64_FEATURE_SHA3, 0),
9039 AARCH64_ARCH_NONE},
9040 {"rng", AARCH64_FEATURE (AARCH64_FEATURE_RNG, 0),
9041 AARCH64_ARCH_NONE},
9042 {"ssbs", AARCH64_FEATURE (AARCH64_FEATURE_SSBS, 0),
9043 AARCH64_ARCH_NONE},
9044 {"memtag", AARCH64_FEATURE (AARCH64_FEATURE_MEMTAG, 0),
9045 AARCH64_ARCH_NONE},
9046 {"sve2", AARCH64_FEATURE (AARCH64_FEATURE_SVE2, 0),
9047 AARCH64_FEATURE (AARCH64_FEATURE_SVE, 0)},
9048 {"sve2-sm4", AARCH64_FEATURE (AARCH64_FEATURE_SVE2_SM4, 0),
9049 AARCH64_FEATURE (AARCH64_FEATURE_SVE2
9050 | AARCH64_FEATURE_SM4, 0)},
9051 {"sve2-aes", AARCH64_FEATURE (AARCH64_FEATURE_SVE2_AES, 0),
9052 AARCH64_FEATURE (AARCH64_FEATURE_SVE2
9053 | AARCH64_FEATURE_AES, 0)},
9054 {"sve2-sha3", AARCH64_FEATURE (AARCH64_FEATURE_SVE2_SHA3, 0),
9055 AARCH64_FEATURE (AARCH64_FEATURE_SVE2
9056 | AARCH64_FEATURE_SHA3, 0)},
9057 {"sve2-bitperm", AARCH64_FEATURE (AARCH64_FEATURE_SVE2_BITPERM, 0),
9058 AARCH64_FEATURE (AARCH64_FEATURE_SVE2, 0)},
9059 {"bf16", AARCH64_FEATURE (AARCH64_FEATURE_BFLOAT16, 0),
9060 AARCH64_ARCH_NONE},
9061 {NULL, AARCH64_ARCH_NONE, AARCH64_ARCH_NONE},
9062 };
9063
9064 struct aarch64_long_option_table
9065 {
9066 const char *option; /* Substring to match. */
9067 const char *help; /* Help information. */
9068 int (*func) (const char *subopt); /* Function to decode sub-option. */
9069 char *deprecated; /* If non-null, print this message. */
9070 };
9071
9072 /* Transitive closure of features depending on set. */
9073 static aarch64_feature_set
9074 aarch64_feature_disable_set (aarch64_feature_set set)
9075 {
9076 const struct aarch64_option_cpu_value_table *opt;
9077 aarch64_feature_set prev = 0;
9078
9079 while (prev != set) {
9080 prev = set;
9081 for (opt = aarch64_features; opt->name != NULL; opt++)
9082 if (AARCH64_CPU_HAS_ANY_FEATURES (opt->require, set))
9083 AARCH64_MERGE_FEATURE_SETS (set, set, opt->value);
9084 }
9085 return set;
9086 }
9087
9088 /* Transitive closure of dependencies of set. */
9089 static aarch64_feature_set
9090 aarch64_feature_enable_set (aarch64_feature_set set)
9091 {
9092 const struct aarch64_option_cpu_value_table *opt;
9093 aarch64_feature_set prev = 0;
9094
9095 while (prev != set) {
9096 prev = set;
9097 for (opt = aarch64_features; opt->name != NULL; opt++)
9098 if (AARCH64_CPU_HAS_FEATURE (set, opt->value))
9099 AARCH64_MERGE_FEATURE_SETS (set, set, opt->require);
9100 }
9101 return set;
9102 }
9103
9104 static int
9105 aarch64_parse_features (const char *str, const aarch64_feature_set **opt_p,
9106 bfd_boolean ext_only)
9107 {
9108 /* We insist on extensions being added before being removed. We achieve
9109 this by using the ADDING_VALUE variable to indicate whether we are
9110 adding an extension (1) or removing it (0) and only allowing it to
9111 change in the order -1 -> 1 -> 0. */
9112 int adding_value = -1;
9113 aarch64_feature_set *ext_set = XNEW (aarch64_feature_set);
9114
9115 /* Copy the feature set, so that we can modify it. */
9116 *ext_set = **opt_p;
9117 *opt_p = ext_set;
9118
9119 while (str != NULL && *str != 0)
9120 {
9121 const struct aarch64_option_cpu_value_table *opt;
9122 const char *ext = NULL;
9123 int optlen;
9124
9125 if (!ext_only)
9126 {
9127 if (*str != '+')
9128 {
9129 as_bad (_("invalid architectural extension"));
9130 return 0;
9131 }
9132
9133 ext = strchr (++str, '+');
9134 }
9135
9136 if (ext != NULL)
9137 optlen = ext - str;
9138 else
9139 optlen = strlen (str);
9140
9141 if (optlen >= 2 && strncmp (str, "no", 2) == 0)
9142 {
9143 if (adding_value != 0)
9144 adding_value = 0;
9145 optlen -= 2;
9146 str += 2;
9147 }
9148 else if (optlen > 0)
9149 {
9150 if (adding_value == -1)
9151 adding_value = 1;
9152 else if (adding_value != 1)
9153 {
9154 as_bad (_("must specify extensions to add before specifying "
9155 "those to remove"));
9156 return FALSE;
9157 }
9158 }
9159
9160 if (optlen == 0)
9161 {
9162 as_bad (_("missing architectural extension"));
9163 return 0;
9164 }
9165
9166 gas_assert (adding_value != -1);
9167
9168 for (opt = aarch64_features; opt->name != NULL; opt++)
9169 if (strncmp (opt->name, str, optlen) == 0)
9170 {
9171 aarch64_feature_set set;
9172
9173 /* Add or remove the extension. */
9174 if (adding_value)
9175 {
9176 set = aarch64_feature_enable_set (opt->value);
9177 AARCH64_MERGE_FEATURE_SETS (*ext_set, *ext_set, set);
9178 }
9179 else
9180 {
9181 set = aarch64_feature_disable_set (opt->value);
9182 AARCH64_CLEAR_FEATURE (*ext_set, *ext_set, set);
9183 }
9184 break;
9185 }
9186
9187 if (opt->name == NULL)
9188 {
9189 as_bad (_("unknown architectural extension `%s'"), str);
9190 return 0;
9191 }
9192
9193 str = ext;
9194 };
9195
9196 return 1;
9197 }
9198
9199 static int
9200 aarch64_parse_cpu (const char *str)
9201 {
9202 const struct aarch64_cpu_option_table *opt;
9203 const char *ext = strchr (str, '+');
9204 size_t optlen;
9205
9206 if (ext != NULL)
9207 optlen = ext - str;
9208 else
9209 optlen = strlen (str);
9210
9211 if (optlen == 0)
9212 {
9213 as_bad (_("missing cpu name `%s'"), str);
9214 return 0;
9215 }
9216
9217 for (opt = aarch64_cpus; opt->name != NULL; opt++)
9218 if (strlen (opt->name) == optlen && strncmp (str, opt->name, optlen) == 0)
9219 {
9220 mcpu_cpu_opt = &opt->value;
9221 if (ext != NULL)
9222 return aarch64_parse_features (ext, &mcpu_cpu_opt, FALSE);
9223
9224 return 1;
9225 }
9226
9227 as_bad (_("unknown cpu `%s'"), str);
9228 return 0;
9229 }
9230
9231 static int
9232 aarch64_parse_arch (const char *str)
9233 {
9234 const struct aarch64_arch_option_table *opt;
9235 const char *ext = strchr (str, '+');
9236 size_t optlen;
9237
9238 if (ext != NULL)
9239 optlen = ext - str;
9240 else
9241 optlen = strlen (str);
9242
9243 if (optlen == 0)
9244 {
9245 as_bad (_("missing architecture name `%s'"), str);
9246 return 0;
9247 }
9248
9249 for (opt = aarch64_archs; opt->name != NULL; opt++)
9250 if (strlen (opt->name) == optlen && strncmp (str, opt->name, optlen) == 0)
9251 {
9252 march_cpu_opt = &opt->value;
9253 if (ext != NULL)
9254 return aarch64_parse_features (ext, &march_cpu_opt, FALSE);
9255
9256 return 1;
9257 }
9258
9259 as_bad (_("unknown architecture `%s'\n"), str);
9260 return 0;
9261 }
9262
9263 /* ABIs. */
9264 struct aarch64_option_abi_value_table
9265 {
9266 const char *name;
9267 enum aarch64_abi_type value;
9268 };
9269
9270 static const struct aarch64_option_abi_value_table aarch64_abis[] = {
9271 {"ilp32", AARCH64_ABI_ILP32},
9272 {"lp64", AARCH64_ABI_LP64},
9273 };
9274
9275 static int
9276 aarch64_parse_abi (const char *str)
9277 {
9278 unsigned int i;
9279
9280 if (str[0] == '\0')
9281 {
9282 as_bad (_("missing abi name `%s'"), str);
9283 return 0;
9284 }
9285
9286 for (i = 0; i < ARRAY_SIZE (aarch64_abis); i++)
9287 if (strcmp (str, aarch64_abis[i].name) == 0)
9288 {
9289 aarch64_abi = aarch64_abis[i].value;
9290 return 1;
9291 }
9292
9293 as_bad (_("unknown abi `%s'\n"), str);
9294 return 0;
9295 }
9296
9297 static struct aarch64_long_option_table aarch64_long_opts[] = {
9298 #ifdef OBJ_ELF
9299 {"mabi=", N_("<abi name>\t specify for ABI <abi name>"),
9300 aarch64_parse_abi, NULL},
9301 #endif /* OBJ_ELF */
9302 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
9303 aarch64_parse_cpu, NULL},
9304 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
9305 aarch64_parse_arch, NULL},
9306 {NULL, NULL, 0, NULL}
9307 };
9308
9309 int
9310 md_parse_option (int c, const char *arg)
9311 {
9312 struct aarch64_option_table *opt;
9313 struct aarch64_long_option_table *lopt;
9314
9315 switch (c)
9316 {
9317 #ifdef OPTION_EB
9318 case OPTION_EB:
9319 target_big_endian = 1;
9320 break;
9321 #endif
9322
9323 #ifdef OPTION_EL
9324 case OPTION_EL:
9325 target_big_endian = 0;
9326 break;
9327 #endif
9328
9329 case 'a':
9330 /* Listing option. Just ignore these, we don't support additional
9331 ones. */
9332 return 0;
9333
9334 default:
9335 for (opt = aarch64_opts; opt->option != NULL; opt++)
9336 {
9337 if (c == opt->option[0]
9338 && ((arg == NULL && opt->option[1] == 0)
9339 || streq (arg, opt->option + 1)))
9340 {
9341 /* If the option is deprecated, tell the user. */
9342 if (opt->deprecated != NULL)
9343 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
9344 arg ? arg : "", _(opt->deprecated));
9345
9346 if (opt->var != NULL)
9347 *opt->var = opt->value;
9348
9349 return 1;
9350 }
9351 }
9352
9353 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
9354 {
9355 /* These options are expected to have an argument. */
9356 if (c == lopt->option[0]
9357 && arg != NULL
9358 && strncmp (arg, lopt->option + 1,
9359 strlen (lopt->option + 1)) == 0)
9360 {
9361 /* If the option is deprecated, tell the user. */
9362 if (lopt->deprecated != NULL)
9363 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
9364 _(lopt->deprecated));
9365
9366 /* Call the sup-option parser. */
9367 return lopt->func (arg + strlen (lopt->option) - 1);
9368 }
9369 }
9370
9371 return 0;
9372 }
9373
9374 return 1;
9375 }
9376
9377 void
9378 md_show_usage (FILE * fp)
9379 {
9380 struct aarch64_option_table *opt;
9381 struct aarch64_long_option_table *lopt;
9382
9383 fprintf (fp, _(" AArch64-specific assembler options:\n"));
9384
9385 for (opt = aarch64_opts; opt->option != NULL; opt++)
9386 if (opt->help != NULL)
9387 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
9388
9389 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
9390 if (lopt->help != NULL)
9391 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
9392
9393 #ifdef OPTION_EB
9394 fprintf (fp, _("\
9395 -EB assemble code for a big-endian cpu\n"));
9396 #endif
9397
9398 #ifdef OPTION_EL
9399 fprintf (fp, _("\
9400 -EL assemble code for a little-endian cpu\n"));
9401 #endif
9402 }
9403
9404 /* Parse a .cpu directive. */
9405
9406 static void
9407 s_aarch64_cpu (int ignored ATTRIBUTE_UNUSED)
9408 {
9409 const struct aarch64_cpu_option_table *opt;
9410 char saved_char;
9411 char *name;
9412 char *ext;
9413 size_t optlen;
9414
9415 name = input_line_pointer;
9416 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
9417 input_line_pointer++;
9418 saved_char = *input_line_pointer;
9419 *input_line_pointer = 0;
9420
9421 ext = strchr (name, '+');
9422
9423 if (ext != NULL)
9424 optlen = ext - name;
9425 else
9426 optlen = strlen (name);
9427
9428 /* Skip the first "all" entry. */
9429 for (opt = aarch64_cpus + 1; opt->name != NULL; opt++)
9430 if (strlen (opt->name) == optlen
9431 && strncmp (name, opt->name, optlen) == 0)
9432 {
9433 mcpu_cpu_opt = &opt->value;
9434 if (ext != NULL)
9435 if (!aarch64_parse_features (ext, &mcpu_cpu_opt, FALSE))
9436 return;
9437
9438 cpu_variant = *mcpu_cpu_opt;
9439
9440 *input_line_pointer = saved_char;
9441 demand_empty_rest_of_line ();
9442 return;
9443 }
9444 as_bad (_("unknown cpu `%s'"), name);
9445 *input_line_pointer = saved_char;
9446 ignore_rest_of_line ();
9447 }
9448
9449
9450 /* Parse a .arch directive. */
9451
9452 static void
9453 s_aarch64_arch (int ignored ATTRIBUTE_UNUSED)
9454 {
9455 const struct aarch64_arch_option_table *opt;
9456 char saved_char;
9457 char *name;
9458 char *ext;
9459 size_t optlen;
9460
9461 name = input_line_pointer;
9462 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
9463 input_line_pointer++;
9464 saved_char = *input_line_pointer;
9465 *input_line_pointer = 0;
9466
9467 ext = strchr (name, '+');
9468
9469 if (ext != NULL)
9470 optlen = ext - name;
9471 else
9472 optlen = strlen (name);
9473
9474 /* Skip the first "all" entry. */
9475 for (opt = aarch64_archs + 1; opt->name != NULL; opt++)
9476 if (strlen (opt->name) == optlen
9477 && strncmp (name, opt->name, optlen) == 0)
9478 {
9479 mcpu_cpu_opt = &opt->value;
9480 if (ext != NULL)
9481 if (!aarch64_parse_features (ext, &mcpu_cpu_opt, FALSE))
9482 return;
9483
9484 cpu_variant = *mcpu_cpu_opt;
9485
9486 *input_line_pointer = saved_char;
9487 demand_empty_rest_of_line ();
9488 return;
9489 }
9490
9491 as_bad (_("unknown architecture `%s'\n"), name);
9492 *input_line_pointer = saved_char;
9493 ignore_rest_of_line ();
9494 }
9495
9496 /* Parse a .arch_extension directive. */
9497
9498 static void
9499 s_aarch64_arch_extension (int ignored ATTRIBUTE_UNUSED)
9500 {
9501 char saved_char;
9502 char *ext = input_line_pointer;;
9503
9504 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
9505 input_line_pointer++;
9506 saved_char = *input_line_pointer;
9507 *input_line_pointer = 0;
9508
9509 if (!aarch64_parse_features (ext, &mcpu_cpu_opt, TRUE))
9510 return;
9511
9512 cpu_variant = *mcpu_cpu_opt;
9513
9514 *input_line_pointer = saved_char;
9515 demand_empty_rest_of_line ();
9516 }
9517
9518 /* Copy symbol information. */
9519
9520 void
9521 aarch64_copy_symbol_attributes (symbolS * dest, symbolS * src)
9522 {
9523 AARCH64_GET_FLAG (dest) = AARCH64_GET_FLAG (src);
9524 }
9525
9526 #ifdef OBJ_ELF
9527 /* Same as elf_copy_symbol_attributes, but without copying st_other.
9528 This is needed so AArch64 specific st_other values can be independently
9529 specified for an IFUNC resolver (that is called by the dynamic linker)
9530 and the symbol it resolves (aliased to the resolver). In particular,
9531 if a function symbol has special st_other value set via directives,
9532 then attaching an IFUNC resolver to that symbol should not override
9533 the st_other setting. Requiring the directive on the IFUNC resolver
9534 symbol would be unexpected and problematic in C code, where the two
9535 symbols appear as two independent function declarations. */
9536
9537 void
9538 aarch64_elf_copy_symbol_attributes (symbolS *dest, symbolS *src)
9539 {
9540 struct elf_obj_sy *srcelf = symbol_get_obj (src);
9541 struct elf_obj_sy *destelf = symbol_get_obj (dest);
9542 if (srcelf->size)
9543 {
9544 if (destelf->size == NULL)
9545 destelf->size = XNEW (expressionS);
9546 *destelf->size = *srcelf->size;
9547 }
9548 else
9549 {
9550 if (destelf->size != NULL)
9551 free (destelf->size);
9552 destelf->size = NULL;
9553 }
9554 S_SET_SIZE (dest, S_GET_SIZE (src));
9555 }
9556 #endif
This page took 0.285193 seconds and 5 git commands to generate.