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