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