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