[PATCH][ARM][GAS]: Assembler support to interpret MVE VMOV instruction correctly.
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
1 /* tc-arm.c -- Assemble for the ARM
2 Copyright (C) 1994-2019 Free Software Foundation, Inc.
3 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
4 Modified by David Taylor (dtaylor@armltd.co.uk)
5 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
6 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
7 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
8
9 This file is part of GAS, the GNU Assembler.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
25
26 #include "as.h"
27 #include <limits.h>
28 #include <stdarg.h>
29 #define NO_RELOC 0
30 #include "safe-ctype.h"
31 #include "subsegs.h"
32 #include "obstack.h"
33 #include "libiberty.h"
34 #include "opcode/arm.h"
35
36 #ifdef OBJ_ELF
37 #include "elf/arm.h"
38 #include "dw2gencfi.h"
39 #endif
40
41 #include "dwarf2dbg.h"
42
43 #ifdef OBJ_ELF
44 /* Must be at least the size of the largest unwind opcode (currently two). */
45 #define ARM_OPCODE_CHUNK_SIZE 8
46
47 /* This structure holds the unwinding state. */
48
49 static struct
50 {
51 symbolS * proc_start;
52 symbolS * table_entry;
53 symbolS * personality_routine;
54 int personality_index;
55 /* The segment containing the function. */
56 segT saved_seg;
57 subsegT saved_subseg;
58 /* Opcodes generated from this function. */
59 unsigned char * opcodes;
60 int opcode_count;
61 int opcode_alloc;
62 /* The number of bytes pushed to the stack. */
63 offsetT frame_size;
64 /* We don't add stack adjustment opcodes immediately so that we can merge
65 multiple adjustments. We can also omit the final adjustment
66 when using a frame pointer. */
67 offsetT pending_offset;
68 /* These two fields are set by both unwind_movsp and unwind_setfp. They
69 hold the reg+offset to use when restoring sp from a frame pointer. */
70 offsetT fp_offset;
71 int fp_reg;
72 /* Nonzero if an unwind_setfp directive has been seen. */
73 unsigned fp_used:1;
74 /* Nonzero if the last opcode restores sp from fp_reg. */
75 unsigned sp_restored:1;
76 } unwind;
77
78 /* Whether --fdpic was given. */
79 static int arm_fdpic;
80
81 #endif /* OBJ_ELF */
82
83 /* Results from operand parsing worker functions. */
84
85 typedef enum
86 {
87 PARSE_OPERAND_SUCCESS,
88 PARSE_OPERAND_FAIL,
89 PARSE_OPERAND_FAIL_NO_BACKTRACK
90 } parse_operand_result;
91
92 enum arm_float_abi
93 {
94 ARM_FLOAT_ABI_HARD,
95 ARM_FLOAT_ABI_SOFTFP,
96 ARM_FLOAT_ABI_SOFT
97 };
98
99 /* Types of processor to assemble for. */
100 #ifndef CPU_DEFAULT
101 /* The code that was here used to select a default CPU depending on compiler
102 pre-defines which were only present when doing native builds, thus
103 changing gas' default behaviour depending upon the build host.
104
105 If you have a target that requires a default CPU option then the you
106 should define CPU_DEFAULT here. */
107 #endif
108
109 #ifndef FPU_DEFAULT
110 # ifdef TE_LINUX
111 # define FPU_DEFAULT FPU_ARCH_FPA
112 # elif defined (TE_NetBSD)
113 # ifdef OBJ_ELF
114 # define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
115 # else
116 /* Legacy a.out format. */
117 # define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
118 # endif
119 # elif defined (TE_VXWORKS)
120 # define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
121 # else
122 /* For backwards compatibility, default to FPA. */
123 # define FPU_DEFAULT FPU_ARCH_FPA
124 # endif
125 #endif /* ifndef FPU_DEFAULT */
126
127 #define streq(a, b) (strcmp (a, b) == 0)
128
129 /* Current set of feature bits available (CPU+FPU). Different from
130 selected_cpu + selected_fpu in case of autodetection since the CPU
131 feature bits are then all set. */
132 static arm_feature_set cpu_variant;
133 /* Feature bits used in each execution state. Used to set build attribute
134 (in particular Tag_*_ISA_use) in CPU autodetection mode. */
135 static arm_feature_set arm_arch_used;
136 static arm_feature_set thumb_arch_used;
137
138 /* Flags stored in private area of BFD structure. */
139 static int uses_apcs_26 = FALSE;
140 static int atpcs = FALSE;
141 static int support_interwork = FALSE;
142 static int uses_apcs_float = FALSE;
143 static int pic_code = FALSE;
144 static int fix_v4bx = FALSE;
145 /* Warn on using deprecated features. */
146 static int warn_on_deprecated = TRUE;
147
148 /* Understand CodeComposer Studio assembly syntax. */
149 bfd_boolean codecomposer_syntax = FALSE;
150
151 /* Variables that we set while parsing command-line options. Once all
152 options have been read we re-process these values to set the real
153 assembly flags. */
154
155 /* CPU and FPU feature bits set for legacy CPU and FPU options (eg. -marm1
156 instead of -mcpu=arm1). */
157 static const arm_feature_set *legacy_cpu = NULL;
158 static const arm_feature_set *legacy_fpu = NULL;
159
160 /* CPU, extension and FPU feature bits selected by -mcpu. */
161 static const arm_feature_set *mcpu_cpu_opt = NULL;
162 static arm_feature_set *mcpu_ext_opt = NULL;
163 static const arm_feature_set *mcpu_fpu_opt = NULL;
164
165 /* CPU, extension and FPU feature bits selected by -march. */
166 static const arm_feature_set *march_cpu_opt = NULL;
167 static arm_feature_set *march_ext_opt = NULL;
168 static const arm_feature_set *march_fpu_opt = NULL;
169
170 /* Feature bits selected by -mfpu. */
171 static const arm_feature_set *mfpu_opt = NULL;
172
173 /* Constants for known architecture features. */
174 static const arm_feature_set fpu_default = FPU_DEFAULT;
175 static const arm_feature_set fpu_arch_vfp_v1 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V1;
176 static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
177 static const arm_feature_set fpu_arch_vfp_v3 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V3;
178 static const arm_feature_set fpu_arch_neon_v1 ATTRIBUTE_UNUSED = FPU_ARCH_NEON_V1;
179 static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
180 static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
181 #ifdef OBJ_ELF
182 static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
183 #endif
184 static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
185
186 #ifdef CPU_DEFAULT
187 static const arm_feature_set cpu_default = CPU_DEFAULT;
188 #endif
189
190 static const arm_feature_set arm_ext_v1 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
191 static const arm_feature_set arm_ext_v2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V2);
192 static const arm_feature_set arm_ext_v2s = ARM_FEATURE_CORE_LOW (ARM_EXT_V2S);
193 static const arm_feature_set arm_ext_v3 = ARM_FEATURE_CORE_LOW (ARM_EXT_V3);
194 static const arm_feature_set arm_ext_v3m = ARM_FEATURE_CORE_LOW (ARM_EXT_V3M);
195 static const arm_feature_set arm_ext_v4 = ARM_FEATURE_CORE_LOW (ARM_EXT_V4);
196 static const arm_feature_set arm_ext_v4t = ARM_FEATURE_CORE_LOW (ARM_EXT_V4T);
197 static const arm_feature_set arm_ext_v5 = ARM_FEATURE_CORE_LOW (ARM_EXT_V5);
198 static const arm_feature_set arm_ext_v4t_5 =
199 ARM_FEATURE_CORE_LOW (ARM_EXT_V4T | ARM_EXT_V5);
200 static const arm_feature_set arm_ext_v5t = ARM_FEATURE_CORE_LOW (ARM_EXT_V5T);
201 static const arm_feature_set arm_ext_v5e = ARM_FEATURE_CORE_LOW (ARM_EXT_V5E);
202 static const arm_feature_set arm_ext_v5exp = ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP);
203 static const arm_feature_set arm_ext_v5j = ARM_FEATURE_CORE_LOW (ARM_EXT_V5J);
204 static const arm_feature_set arm_ext_v6 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6);
205 static const arm_feature_set arm_ext_v6k = ARM_FEATURE_CORE_LOW (ARM_EXT_V6K);
206 static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6T2);
207 /* Only for compatability of hint instructions. */
208 static const arm_feature_set arm_ext_v6k_v6t2 =
209 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K | ARM_EXT_V6T2);
210 static const arm_feature_set arm_ext_v6_notm =
211 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_NOTM);
212 static const arm_feature_set arm_ext_v6_dsp =
213 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_DSP);
214 static const arm_feature_set arm_ext_barrier =
215 ARM_FEATURE_CORE_LOW (ARM_EXT_BARRIER);
216 static const arm_feature_set arm_ext_msr =
217 ARM_FEATURE_CORE_LOW (ARM_EXT_THUMB_MSR);
218 static const arm_feature_set arm_ext_div = ARM_FEATURE_CORE_LOW (ARM_EXT_DIV);
219 static const arm_feature_set arm_ext_v7 = ARM_FEATURE_CORE_LOW (ARM_EXT_V7);
220 static const arm_feature_set arm_ext_v7a = ARM_FEATURE_CORE_LOW (ARM_EXT_V7A);
221 static const arm_feature_set arm_ext_v7r = ARM_FEATURE_CORE_LOW (ARM_EXT_V7R);
222 #ifdef OBJ_ELF
223 static const arm_feature_set ATTRIBUTE_UNUSED arm_ext_v7m = ARM_FEATURE_CORE_LOW (ARM_EXT_V7M);
224 #endif
225 static const arm_feature_set arm_ext_v8 = ARM_FEATURE_CORE_LOW (ARM_EXT_V8);
226 static const arm_feature_set arm_ext_m =
227 ARM_FEATURE_CORE (ARM_EXT_V6M | ARM_EXT_V7M,
228 ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
229 static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
230 static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
231 static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
232 static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
233 static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
234 static const arm_feature_set arm_ext_pan = ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN);
235 static const arm_feature_set arm_ext_v8m = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M);
236 static const arm_feature_set arm_ext_v8m_main =
237 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M_MAIN);
238 static const arm_feature_set arm_ext_v8_1m_main =
239 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN);
240 /* Instructions in ARMv8-M only found in M profile architectures. */
241 static const arm_feature_set arm_ext_v8m_m_only =
242 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
243 static const arm_feature_set arm_ext_v6t2_v8m =
244 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V6T2_V8M);
245 /* Instructions shared between ARMv8-A and ARMv8-M. */
246 static const arm_feature_set arm_ext_atomics =
247 ARM_FEATURE_CORE_HIGH (ARM_EXT2_ATOMICS);
248 #ifdef OBJ_ELF
249 /* DSP instructions Tag_DSP_extension refers to. */
250 static const arm_feature_set arm_ext_dsp =
251 ARM_FEATURE_CORE_LOW (ARM_EXT_V5E | ARM_EXT_V5ExP | ARM_EXT_V6_DSP);
252 #endif
253 static const arm_feature_set arm_ext_ras =
254 ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS);
255 /* FP16 instructions. */
256 static const arm_feature_set arm_ext_fp16 =
257 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST);
258 static const arm_feature_set arm_ext_fp16_fml =
259 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_FML);
260 static const arm_feature_set arm_ext_v8_2 =
261 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_2A);
262 static const arm_feature_set arm_ext_v8_3 =
263 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_3A);
264 static const arm_feature_set arm_ext_sb =
265 ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB);
266 static const arm_feature_set arm_ext_predres =
267 ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES);
268
269 static const arm_feature_set arm_arch_any = ARM_ANY;
270 #ifdef OBJ_ELF
271 static const arm_feature_set fpu_any = FPU_ANY;
272 #endif
273 static const arm_feature_set arm_arch_full ATTRIBUTE_UNUSED = ARM_FEATURE (-1, -1, -1);
274 static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
275 static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
276
277 static const arm_feature_set arm_cext_iwmmxt2 =
278 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
279 static const arm_feature_set arm_cext_iwmmxt =
280 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
281 static const arm_feature_set arm_cext_xscale =
282 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
283 static const arm_feature_set arm_cext_maverick =
284 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
285 static const arm_feature_set fpu_fpa_ext_v1 =
286 ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
287 static const arm_feature_set fpu_fpa_ext_v2 =
288 ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
289 static const arm_feature_set fpu_vfp_ext_v1xd =
290 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
291 static const arm_feature_set fpu_vfp_ext_v1 =
292 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
293 static const arm_feature_set fpu_vfp_ext_v2 =
294 ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
295 static const arm_feature_set fpu_vfp_ext_v3xd =
296 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
297 static const arm_feature_set fpu_vfp_ext_v3 =
298 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
299 static const arm_feature_set fpu_vfp_ext_d32 =
300 ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
301 static const arm_feature_set fpu_neon_ext_v1 =
302 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
303 static const arm_feature_set fpu_vfp_v3_or_neon_ext =
304 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
305 static const arm_feature_set mve_ext =
306 ARM_FEATURE_COPROC (FPU_MVE);
307 static const arm_feature_set mve_fp_ext =
308 ARM_FEATURE_COPROC (FPU_MVE_FP);
309 #ifdef OBJ_ELF
310 static const arm_feature_set fpu_vfp_fp16 =
311 ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
312 static const arm_feature_set fpu_neon_ext_fma =
313 ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
314 #endif
315 static const arm_feature_set fpu_vfp_ext_fma =
316 ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
317 static const arm_feature_set fpu_vfp_ext_armv8 =
318 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
319 static const arm_feature_set fpu_vfp_ext_armv8xd =
320 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
321 static const arm_feature_set fpu_neon_ext_armv8 =
322 ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
323 static const arm_feature_set fpu_crypto_ext_armv8 =
324 ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
325 static const arm_feature_set crc_ext_armv8 =
326 ARM_FEATURE_COPROC (CRC_EXT_ARMV8);
327 static const arm_feature_set fpu_neon_ext_v8_1 =
328 ARM_FEATURE_COPROC (FPU_NEON_EXT_RDMA);
329 static const arm_feature_set fpu_neon_ext_dotprod =
330 ARM_FEATURE_COPROC (FPU_NEON_EXT_DOTPROD);
331
332 static int mfloat_abi_opt = -1;
333 /* Architecture feature bits selected by the last -mcpu/-march or .cpu/.arch
334 directive. */
335 static arm_feature_set selected_arch = ARM_ARCH_NONE;
336 /* Extension feature bits selected by the last -mcpu/-march or .arch_extension
337 directive. */
338 static arm_feature_set selected_ext = ARM_ARCH_NONE;
339 /* Feature bits selected by the last -mcpu/-march or by the combination of the
340 last .cpu/.arch directive .arch_extension directives since that
341 directive. */
342 static arm_feature_set selected_cpu = ARM_ARCH_NONE;
343 /* FPU feature bits selected by the last -mfpu or .fpu directive. */
344 static arm_feature_set selected_fpu = FPU_NONE;
345 /* Feature bits selected by the last .object_arch directive. */
346 static arm_feature_set selected_object_arch = ARM_ARCH_NONE;
347 /* Must be long enough to hold any of the names in arm_cpus. */
348 static char selected_cpu_name[20];
349
350 extern FLONUM_TYPE generic_floating_point_number;
351
352 /* Return if no cpu was selected on command-line. */
353 static bfd_boolean
354 no_cpu_selected (void)
355 {
356 return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
357 }
358
359 #ifdef OBJ_ELF
360 # ifdef EABI_DEFAULT
361 static int meabi_flags = EABI_DEFAULT;
362 # else
363 static int meabi_flags = EF_ARM_EABI_UNKNOWN;
364 # endif
365
366 static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
367
368 bfd_boolean
369 arm_is_eabi (void)
370 {
371 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
372 }
373 #endif
374
375 #ifdef OBJ_ELF
376 /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
377 symbolS * GOT_symbol;
378 #endif
379
380 /* 0: assemble for ARM,
381 1: assemble for Thumb,
382 2: assemble for Thumb even though target CPU does not support thumb
383 instructions. */
384 static int thumb_mode = 0;
385 /* A value distinct from the possible values for thumb_mode that we
386 can use to record whether thumb_mode has been copied into the
387 tc_frag_data field of a frag. */
388 #define MODE_RECORDED (1 << 4)
389
390 /* Specifies the intrinsic IT insn behavior mode. */
391 enum implicit_it_mode
392 {
393 IMPLICIT_IT_MODE_NEVER = 0x00,
394 IMPLICIT_IT_MODE_ARM = 0x01,
395 IMPLICIT_IT_MODE_THUMB = 0x02,
396 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
397 };
398 static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
399
400 /* If unified_syntax is true, we are processing the new unified
401 ARM/Thumb syntax. Important differences from the old ARM mode:
402
403 - Immediate operands do not require a # prefix.
404 - Conditional affixes always appear at the end of the
405 instruction. (For backward compatibility, those instructions
406 that formerly had them in the middle, continue to accept them
407 there.)
408 - The IT instruction may appear, and if it does is validated
409 against subsequent conditional affixes. It does not generate
410 machine code.
411
412 Important differences from the old Thumb mode:
413
414 - Immediate operands do not require a # prefix.
415 - Most of the V6T2 instructions are only available in unified mode.
416 - The .N and .W suffixes are recognized and honored (it is an error
417 if they cannot be honored).
418 - All instructions set the flags if and only if they have an 's' affix.
419 - Conditional affixes may be used. They are validated against
420 preceding IT instructions. Unlike ARM mode, you cannot use a
421 conditional affix except in the scope of an IT instruction. */
422
423 static bfd_boolean unified_syntax = FALSE;
424
425 /* An immediate operand can start with #, and ld*, st*, pld operands
426 can contain [ and ]. We need to tell APP not to elide whitespace
427 before a [, which can appear as the first operand for pld.
428 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
429 const char arm_symbol_chars[] = "#[]{}";
430
431 enum neon_el_type
432 {
433 NT_invtype,
434 NT_untyped,
435 NT_integer,
436 NT_float,
437 NT_poly,
438 NT_signed,
439 NT_unsigned
440 };
441
442 struct neon_type_el
443 {
444 enum neon_el_type type;
445 unsigned size;
446 };
447
448 #define NEON_MAX_TYPE_ELS 4
449
450 struct neon_type
451 {
452 struct neon_type_el el[NEON_MAX_TYPE_ELS];
453 unsigned elems;
454 };
455
456 enum pred_instruction_type
457 {
458 OUTSIDE_PRED_INSN,
459 INSIDE_VPT_INSN,
460 INSIDE_IT_INSN,
461 INSIDE_IT_LAST_INSN,
462 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
463 if inside, should be the last one. */
464 NEUTRAL_IT_INSN, /* This could be either inside or outside,
465 i.e. BKPT and NOP. */
466 IT_INSN, /* The IT insn has been parsed. */
467 VPT_INSN, /* The VPT/VPST insn has been parsed. */
468 MVE_OUTSIDE_PRED_INSN , /* Instruction to indicate a MVE instruction without
469 a predication code. */
470 MVE_UNPREDICABLE_INSN /* MVE instruction that is non-predicable. */
471 };
472
473 /* The maximum number of operands we need. */
474 #define ARM_IT_MAX_OPERANDS 6
475 #define ARM_IT_MAX_RELOCS 3
476
477 struct arm_it
478 {
479 const char * error;
480 unsigned long instruction;
481 int size;
482 int size_req;
483 int cond;
484 /* "uncond_value" is set to the value in place of the conditional field in
485 unconditional versions of the instruction, or -1 if nothing is
486 appropriate. */
487 int uncond_value;
488 struct neon_type vectype;
489 /* This does not indicate an actual NEON instruction, only that
490 the mnemonic accepts neon-style type suffixes. */
491 int is_neon;
492 /* Set to the opcode if the instruction needs relaxation.
493 Zero if the instruction is not relaxed. */
494 unsigned long relax;
495 struct
496 {
497 bfd_reloc_code_real_type type;
498 expressionS exp;
499 int pc_rel;
500 } relocs[ARM_IT_MAX_RELOCS];
501
502 enum pred_instruction_type pred_insn_type;
503
504 struct
505 {
506 unsigned reg;
507 signed int imm;
508 struct neon_type_el vectype;
509 unsigned present : 1; /* Operand present. */
510 unsigned isreg : 1; /* Operand was a register. */
511 unsigned immisreg : 2; /* .imm field is a second register.
512 0: imm, 1: gpr, 2: MVE Q-register. */
513 unsigned isscalar : 2; /* Operand is a (SIMD) scalar:
514 0) not scalar,
515 1) Neon scalar,
516 2) MVE scalar. */
517 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
518 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
519 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
520 instructions. This allows us to disambiguate ARM <-> vector insns. */
521 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
522 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
523 unsigned isquad : 1; /* Operand is SIMD quad register. */
524 unsigned issingle : 1; /* Operand is VFP single-precision register. */
525 unsigned iszr : 1; /* Operand is ZR register. */
526 unsigned hasreloc : 1; /* Operand has relocation suffix. */
527 unsigned writeback : 1; /* Operand has trailing ! */
528 unsigned preind : 1; /* Preindexed address. */
529 unsigned postind : 1; /* Postindexed address. */
530 unsigned negative : 1; /* Index register was negated. */
531 unsigned shifted : 1; /* Shift applied to operation. */
532 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
533 } operands[ARM_IT_MAX_OPERANDS];
534 };
535
536 static struct arm_it inst;
537
538 #define NUM_FLOAT_VALS 8
539
540 const char * fp_const[] =
541 {
542 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
543 };
544
545 LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
546
547 #define FAIL (-1)
548 #define SUCCESS (0)
549
550 #define SUFF_S 1
551 #define SUFF_D 2
552 #define SUFF_E 3
553 #define SUFF_P 4
554
555 #define CP_T_X 0x00008000
556 #define CP_T_Y 0x00400000
557
558 #define CONDS_BIT 0x00100000
559 #define LOAD_BIT 0x00100000
560
561 #define DOUBLE_LOAD_FLAG 0x00000001
562
563 struct asm_cond
564 {
565 const char * template_name;
566 unsigned long value;
567 };
568
569 #define COND_ALWAYS 0xE
570
571 struct asm_psr
572 {
573 const char * template_name;
574 unsigned long field;
575 };
576
577 struct asm_barrier_opt
578 {
579 const char * template_name;
580 unsigned long value;
581 const arm_feature_set arch;
582 };
583
584 /* The bit that distinguishes CPSR and SPSR. */
585 #define SPSR_BIT (1 << 22)
586
587 /* The individual PSR flag bits. */
588 #define PSR_c (1 << 16)
589 #define PSR_x (1 << 17)
590 #define PSR_s (1 << 18)
591 #define PSR_f (1 << 19)
592
593 struct reloc_entry
594 {
595 const char * name;
596 bfd_reloc_code_real_type reloc;
597 };
598
599 enum vfp_reg_pos
600 {
601 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
602 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
603 };
604
605 enum vfp_ldstm_type
606 {
607 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
608 };
609
610 /* Bits for DEFINED field in neon_typed_alias. */
611 #define NTA_HASTYPE 1
612 #define NTA_HASINDEX 2
613
614 struct neon_typed_alias
615 {
616 unsigned char defined;
617 unsigned char index;
618 struct neon_type_el eltype;
619 };
620
621 /* ARM register categories. This includes coprocessor numbers and various
622 architecture extensions' registers. Each entry should have an error message
623 in reg_expected_msgs below. */
624 enum arm_reg_type
625 {
626 REG_TYPE_RN,
627 REG_TYPE_CP,
628 REG_TYPE_CN,
629 REG_TYPE_FN,
630 REG_TYPE_VFS,
631 REG_TYPE_VFD,
632 REG_TYPE_NQ,
633 REG_TYPE_VFSD,
634 REG_TYPE_NDQ,
635 REG_TYPE_NSD,
636 REG_TYPE_NSDQ,
637 REG_TYPE_VFC,
638 REG_TYPE_MVF,
639 REG_TYPE_MVD,
640 REG_TYPE_MVFX,
641 REG_TYPE_MVDX,
642 REG_TYPE_MVAX,
643 REG_TYPE_MQ,
644 REG_TYPE_DSPSC,
645 REG_TYPE_MMXWR,
646 REG_TYPE_MMXWC,
647 REG_TYPE_MMXWCG,
648 REG_TYPE_XSCALE,
649 REG_TYPE_RNB,
650 REG_TYPE_ZR
651 };
652
653 /* Structure for a hash table entry for a register.
654 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
655 information which states whether a vector type or index is specified (for a
656 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
657 struct reg_entry
658 {
659 const char * name;
660 unsigned int number;
661 unsigned char type;
662 unsigned char builtin;
663 struct neon_typed_alias * neon;
664 };
665
666 /* Diagnostics used when we don't get a register of the expected type. */
667 const char * const reg_expected_msgs[] =
668 {
669 [REG_TYPE_RN] = N_("ARM register expected"),
670 [REG_TYPE_CP] = N_("bad or missing co-processor number"),
671 [REG_TYPE_CN] = N_("co-processor register expected"),
672 [REG_TYPE_FN] = N_("FPA register expected"),
673 [REG_TYPE_VFS] = N_("VFP single precision register expected"),
674 [REG_TYPE_VFD] = N_("VFP/Neon double precision register expected"),
675 [REG_TYPE_NQ] = N_("Neon quad precision register expected"),
676 [REG_TYPE_VFSD] = N_("VFP single or double precision register expected"),
677 [REG_TYPE_NDQ] = N_("Neon double or quad precision register expected"),
678 [REG_TYPE_NSD] = N_("Neon single or double precision register expected"),
679 [REG_TYPE_NSDQ] = N_("VFP single, double or Neon quad precision register"
680 " expected"),
681 [REG_TYPE_VFC] = N_("VFP system register expected"),
682 [REG_TYPE_MVF] = N_("Maverick MVF register expected"),
683 [REG_TYPE_MVD] = N_("Maverick MVD register expected"),
684 [REG_TYPE_MVFX] = N_("Maverick MVFX register expected"),
685 [REG_TYPE_MVDX] = N_("Maverick MVDX register expected"),
686 [REG_TYPE_MVAX] = N_("Maverick MVAX register expected"),
687 [REG_TYPE_DSPSC] = N_("Maverick DSPSC register expected"),
688 [REG_TYPE_MMXWR] = N_("iWMMXt data register expected"),
689 [REG_TYPE_MMXWC] = N_("iWMMXt control register expected"),
690 [REG_TYPE_MMXWCG] = N_("iWMMXt scalar register expected"),
691 [REG_TYPE_XSCALE] = N_("XScale accumulator register expected"),
692 [REG_TYPE_MQ] = N_("MVE vector register expected"),
693 [REG_TYPE_RNB] = N_("")
694 };
695
696 /* Some well known registers that we refer to directly elsewhere. */
697 #define REG_R12 12
698 #define REG_SP 13
699 #define REG_LR 14
700 #define REG_PC 15
701
702 /* ARM instructions take 4bytes in the object file, Thumb instructions
703 take 2: */
704 #define INSN_SIZE 4
705
706 struct asm_opcode
707 {
708 /* Basic string to match. */
709 const char * template_name;
710
711 /* Parameters to instruction. */
712 unsigned int operands[8];
713
714 /* Conditional tag - see opcode_lookup. */
715 unsigned int tag : 4;
716
717 /* Basic instruction code. */
718 unsigned int avalue;
719
720 /* Thumb-format instruction code. */
721 unsigned int tvalue;
722
723 /* Which architecture variant provides this instruction. */
724 const arm_feature_set * avariant;
725 const arm_feature_set * tvariant;
726
727 /* Function to call to encode instruction in ARM format. */
728 void (* aencode) (void);
729
730 /* Function to call to encode instruction in Thumb format. */
731 void (* tencode) (void);
732
733 /* Indicates whether this instruction may be vector predicated. */
734 unsigned int mayBeVecPred : 1;
735 };
736
737 /* Defines for various bits that we will want to toggle. */
738 #define INST_IMMEDIATE 0x02000000
739 #define OFFSET_REG 0x02000000
740 #define HWOFFSET_IMM 0x00400000
741 #define SHIFT_BY_REG 0x00000010
742 #define PRE_INDEX 0x01000000
743 #define INDEX_UP 0x00800000
744 #define WRITE_BACK 0x00200000
745 #define LDM_TYPE_2_OR_3 0x00400000
746 #define CPSI_MMOD 0x00020000
747
748 #define LITERAL_MASK 0xf000f000
749 #define OPCODE_MASK 0xfe1fffff
750 #define V4_STR_BIT 0x00000020
751 #define VLDR_VMOV_SAME 0x0040f000
752
753 #define T2_SUBS_PC_LR 0xf3de8f00
754
755 #define DATA_OP_SHIFT 21
756 #define SBIT_SHIFT 20
757
758 #define T2_OPCODE_MASK 0xfe1fffff
759 #define T2_DATA_OP_SHIFT 21
760 #define T2_SBIT_SHIFT 20
761
762 #define A_COND_MASK 0xf0000000
763 #define A_PUSH_POP_OP_MASK 0x0fff0000
764
765 /* Opcodes for pushing/poping registers to/from the stack. */
766 #define A1_OPCODE_PUSH 0x092d0000
767 #define A2_OPCODE_PUSH 0x052d0004
768 #define A2_OPCODE_POP 0x049d0004
769
770 /* Codes to distinguish the arithmetic instructions. */
771 #define OPCODE_AND 0
772 #define OPCODE_EOR 1
773 #define OPCODE_SUB 2
774 #define OPCODE_RSB 3
775 #define OPCODE_ADD 4
776 #define OPCODE_ADC 5
777 #define OPCODE_SBC 6
778 #define OPCODE_RSC 7
779 #define OPCODE_TST 8
780 #define OPCODE_TEQ 9
781 #define OPCODE_CMP 10
782 #define OPCODE_CMN 11
783 #define OPCODE_ORR 12
784 #define OPCODE_MOV 13
785 #define OPCODE_BIC 14
786 #define OPCODE_MVN 15
787
788 #define T2_OPCODE_AND 0
789 #define T2_OPCODE_BIC 1
790 #define T2_OPCODE_ORR 2
791 #define T2_OPCODE_ORN 3
792 #define T2_OPCODE_EOR 4
793 #define T2_OPCODE_ADD 8
794 #define T2_OPCODE_ADC 10
795 #define T2_OPCODE_SBC 11
796 #define T2_OPCODE_SUB 13
797 #define T2_OPCODE_RSB 14
798
799 #define T_OPCODE_MUL 0x4340
800 #define T_OPCODE_TST 0x4200
801 #define T_OPCODE_CMN 0x42c0
802 #define T_OPCODE_NEG 0x4240
803 #define T_OPCODE_MVN 0x43c0
804
805 #define T_OPCODE_ADD_R3 0x1800
806 #define T_OPCODE_SUB_R3 0x1a00
807 #define T_OPCODE_ADD_HI 0x4400
808 #define T_OPCODE_ADD_ST 0xb000
809 #define T_OPCODE_SUB_ST 0xb080
810 #define T_OPCODE_ADD_SP 0xa800
811 #define T_OPCODE_ADD_PC 0xa000
812 #define T_OPCODE_ADD_I8 0x3000
813 #define T_OPCODE_SUB_I8 0x3800
814 #define T_OPCODE_ADD_I3 0x1c00
815 #define T_OPCODE_SUB_I3 0x1e00
816
817 #define T_OPCODE_ASR_R 0x4100
818 #define T_OPCODE_LSL_R 0x4080
819 #define T_OPCODE_LSR_R 0x40c0
820 #define T_OPCODE_ROR_R 0x41c0
821 #define T_OPCODE_ASR_I 0x1000
822 #define T_OPCODE_LSL_I 0x0000
823 #define T_OPCODE_LSR_I 0x0800
824
825 #define T_OPCODE_MOV_I8 0x2000
826 #define T_OPCODE_CMP_I8 0x2800
827 #define T_OPCODE_CMP_LR 0x4280
828 #define T_OPCODE_MOV_HR 0x4600
829 #define T_OPCODE_CMP_HR 0x4500
830
831 #define T_OPCODE_LDR_PC 0x4800
832 #define T_OPCODE_LDR_SP 0x9800
833 #define T_OPCODE_STR_SP 0x9000
834 #define T_OPCODE_LDR_IW 0x6800
835 #define T_OPCODE_STR_IW 0x6000
836 #define T_OPCODE_LDR_IH 0x8800
837 #define T_OPCODE_STR_IH 0x8000
838 #define T_OPCODE_LDR_IB 0x7800
839 #define T_OPCODE_STR_IB 0x7000
840 #define T_OPCODE_LDR_RW 0x5800
841 #define T_OPCODE_STR_RW 0x5000
842 #define T_OPCODE_LDR_RH 0x5a00
843 #define T_OPCODE_STR_RH 0x5200
844 #define T_OPCODE_LDR_RB 0x5c00
845 #define T_OPCODE_STR_RB 0x5400
846
847 #define T_OPCODE_PUSH 0xb400
848 #define T_OPCODE_POP 0xbc00
849
850 #define T_OPCODE_BRANCH 0xe000
851
852 #define THUMB_SIZE 2 /* Size of thumb instruction. */
853 #define THUMB_PP_PC_LR 0x0100
854 #define THUMB_LOAD_BIT 0x0800
855 #define THUMB2_LOAD_BIT 0x00100000
856
857 #define BAD_SYNTAX _("syntax error")
858 #define BAD_ARGS _("bad arguments to instruction")
859 #define BAD_SP _("r13 not allowed here")
860 #define BAD_PC _("r15 not allowed here")
861 #define BAD_ODD _("Odd register not allowed here")
862 #define BAD_EVEN _("Even register not allowed here")
863 #define BAD_COND _("instruction cannot be conditional")
864 #define BAD_OVERLAP _("registers may not be the same")
865 #define BAD_HIREG _("lo register required")
866 #define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
867 #define BAD_ADDR_MODE _("instruction does not accept this addressing mode")
868 #define BAD_BRANCH _("branch must be last instruction in IT block")
869 #define BAD_BRANCH_OFF _("branch out of range or not a multiple of 2")
870 #define BAD_NOT_IT _("instruction not allowed in IT block")
871 #define BAD_NOT_VPT _("instruction missing MVE vector predication code")
872 #define BAD_FPU _("selected FPU does not support instruction")
873 #define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
874 #define BAD_OUT_VPT \
875 _("vector predicated instruction should be in VPT/VPST block")
876 #define BAD_IT_COND _("incorrect condition in IT block")
877 #define BAD_VPT_COND _("incorrect condition in VPT/VPST block")
878 #define BAD_IT_IT _("IT falling in the range of a previous IT block")
879 #define MISSING_FNSTART _("missing .fnstart before unwinding directive")
880 #define BAD_PC_ADDRESSING \
881 _("cannot use register index with PC-relative addressing")
882 #define BAD_PC_WRITEBACK \
883 _("cannot use writeback with PC-relative addressing")
884 #define BAD_RANGE _("branch out of range")
885 #define BAD_FP16 _("selected processor does not support fp16 instruction")
886 #define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
887 #define THUMB1_RELOC_ONLY _("relocation valid in thumb1 code only")
888 #define MVE_NOT_IT _("Warning: instruction is UNPREDICTABLE in an IT " \
889 "block")
890 #define MVE_NOT_VPT _("Warning: instruction is UNPREDICTABLE in a VPT " \
891 "block")
892 #define MVE_BAD_PC _("Warning: instruction is UNPREDICTABLE with PC" \
893 " operand")
894 #define MVE_BAD_SP _("Warning: instruction is UNPREDICTABLE with SP" \
895 " operand")
896 #define BAD_SIMD_TYPE _("bad type in SIMD instruction")
897 #define BAD_MVE_AUTO \
898 _("GAS auto-detection mode and -march=all is deprecated for MVE, please" \
899 " use a valid -march or -mcpu option.")
900 #define BAD_MVE_SRCDEST _("Warning: 32-bit element size and same destination "\
901 "and source operands makes instruction UNPREDICTABLE")
902 #define BAD_EL_TYPE _("bad element type for instruction")
903 #define MVE_BAD_QREG _("MVE vector register Q[0..7] expected")
904
905 static struct hash_control * arm_ops_hsh;
906 static struct hash_control * arm_cond_hsh;
907 static struct hash_control * arm_vcond_hsh;
908 static struct hash_control * arm_shift_hsh;
909 static struct hash_control * arm_psr_hsh;
910 static struct hash_control * arm_v7m_psr_hsh;
911 static struct hash_control * arm_reg_hsh;
912 static struct hash_control * arm_reloc_hsh;
913 static struct hash_control * arm_barrier_opt_hsh;
914
915 /* Stuff needed to resolve the label ambiguity
916 As:
917 ...
918 label: <insn>
919 may differ from:
920 ...
921 label:
922 <insn> */
923
924 symbolS * last_label_seen;
925 static int label_is_thumb_function_name = FALSE;
926
927 /* Literal pool structure. Held on a per-section
928 and per-sub-section basis. */
929
930 #define MAX_LITERAL_POOL_SIZE 1024
931 typedef struct literal_pool
932 {
933 expressionS literals [MAX_LITERAL_POOL_SIZE];
934 unsigned int next_free_entry;
935 unsigned int id;
936 symbolS * symbol;
937 segT section;
938 subsegT sub_section;
939 #ifdef OBJ_ELF
940 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
941 #endif
942 struct literal_pool * next;
943 unsigned int alignment;
944 } literal_pool;
945
946 /* Pointer to a linked list of literal pools. */
947 literal_pool * list_of_pools = NULL;
948
949 typedef enum asmfunc_states
950 {
951 OUTSIDE_ASMFUNC,
952 WAITING_ASMFUNC_NAME,
953 WAITING_ENDASMFUNC
954 } asmfunc_states;
955
956 static asmfunc_states asmfunc_state = OUTSIDE_ASMFUNC;
957
958 #ifdef OBJ_ELF
959 # define now_pred seg_info (now_seg)->tc_segment_info_data.current_pred
960 #else
961 static struct current_pred now_pred;
962 #endif
963
964 static inline int
965 now_pred_compatible (int cond)
966 {
967 return (cond & ~1) == (now_pred.cc & ~1);
968 }
969
970 static inline int
971 conditional_insn (void)
972 {
973 return inst.cond != COND_ALWAYS;
974 }
975
976 static int in_pred_block (void);
977
978 static int handle_pred_state (void);
979
980 static void force_automatic_it_block_close (void);
981
982 static void it_fsm_post_encode (void);
983
984 #define set_pred_insn_type(type) \
985 do \
986 { \
987 inst.pred_insn_type = type; \
988 if (handle_pred_state () == FAIL) \
989 return; \
990 } \
991 while (0)
992
993 #define set_pred_insn_type_nonvoid(type, failret) \
994 do \
995 { \
996 inst.pred_insn_type = type; \
997 if (handle_pred_state () == FAIL) \
998 return failret; \
999 } \
1000 while(0)
1001
1002 #define set_pred_insn_type_last() \
1003 do \
1004 { \
1005 if (inst.cond == COND_ALWAYS) \
1006 set_pred_insn_type (IF_INSIDE_IT_LAST_INSN); \
1007 else \
1008 set_pred_insn_type (INSIDE_IT_LAST_INSN); \
1009 } \
1010 while (0)
1011
1012 /* Toggle value[pos]. */
1013 #define TOGGLE_BIT(value, pos) (value ^ (1 << pos))
1014
1015 /* Pure syntax. */
1016
1017 /* This array holds the chars that always start a comment. If the
1018 pre-processor is disabled, these aren't very useful. */
1019 char arm_comment_chars[] = "@";
1020
1021 /* This array holds the chars that only start a comment at the beginning of
1022 a line. If the line seems to have the form '# 123 filename'
1023 .line and .file directives will appear in the pre-processed output. */
1024 /* Note that input_file.c hand checks for '#' at the beginning of the
1025 first line of the input file. This is because the compiler outputs
1026 #NO_APP at the beginning of its output. */
1027 /* Also note that comments like this one will always work. */
1028 const char line_comment_chars[] = "#";
1029
1030 char arm_line_separator_chars[] = ";";
1031
1032 /* Chars that can be used to separate mant
1033 from exp in floating point numbers. */
1034 const char EXP_CHARS[] = "eE";
1035
1036 /* Chars that mean this number is a floating point constant. */
1037 /* As in 0f12.456 */
1038 /* or 0d1.2345e12 */
1039
1040 const char FLT_CHARS[] = "rRsSfFdDxXeEpPHh";
1041
1042 /* Prefix characters that indicate the start of an immediate
1043 value. */
1044 #define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
1045
1046 /* Separator character handling. */
1047
1048 #define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
1049
1050 enum fp_16bit_format
1051 {
1052 ARM_FP16_FORMAT_IEEE = 0x1,
1053 ARM_FP16_FORMAT_ALTERNATIVE = 0x2,
1054 ARM_FP16_FORMAT_DEFAULT = 0x3
1055 };
1056
1057 static enum fp_16bit_format fp16_format = ARM_FP16_FORMAT_DEFAULT;
1058
1059
1060 static inline int
1061 skip_past_char (char ** str, char c)
1062 {
1063 /* PR gas/14987: Allow for whitespace before the expected character. */
1064 skip_whitespace (*str);
1065
1066 if (**str == c)
1067 {
1068 (*str)++;
1069 return SUCCESS;
1070 }
1071 else
1072 return FAIL;
1073 }
1074
1075 #define skip_past_comma(str) skip_past_char (str, ',')
1076
1077 /* Arithmetic expressions (possibly involving symbols). */
1078
1079 /* Return TRUE if anything in the expression is a bignum. */
1080
1081 static bfd_boolean
1082 walk_no_bignums (symbolS * sp)
1083 {
1084 if (symbol_get_value_expression (sp)->X_op == O_big)
1085 return TRUE;
1086
1087 if (symbol_get_value_expression (sp)->X_add_symbol)
1088 {
1089 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
1090 || (symbol_get_value_expression (sp)->X_op_symbol
1091 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
1092 }
1093
1094 return FALSE;
1095 }
1096
1097 static bfd_boolean in_my_get_expression = FALSE;
1098
1099 /* Third argument to my_get_expression. */
1100 #define GE_NO_PREFIX 0
1101 #define GE_IMM_PREFIX 1
1102 #define GE_OPT_PREFIX 2
1103 /* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
1104 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
1105 #define GE_OPT_PREFIX_BIG 3
1106
1107 static int
1108 my_get_expression (expressionS * ep, char ** str, int prefix_mode)
1109 {
1110 char * save_in;
1111
1112 /* In unified syntax, all prefixes are optional. */
1113 if (unified_syntax)
1114 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
1115 : GE_OPT_PREFIX;
1116
1117 switch (prefix_mode)
1118 {
1119 case GE_NO_PREFIX: break;
1120 case GE_IMM_PREFIX:
1121 if (!is_immediate_prefix (**str))
1122 {
1123 inst.error = _("immediate expression requires a # prefix");
1124 return FAIL;
1125 }
1126 (*str)++;
1127 break;
1128 case GE_OPT_PREFIX:
1129 case GE_OPT_PREFIX_BIG:
1130 if (is_immediate_prefix (**str))
1131 (*str)++;
1132 break;
1133 default:
1134 abort ();
1135 }
1136
1137 memset (ep, 0, sizeof (expressionS));
1138
1139 save_in = input_line_pointer;
1140 input_line_pointer = *str;
1141 in_my_get_expression = TRUE;
1142 expression (ep);
1143 in_my_get_expression = FALSE;
1144
1145 if (ep->X_op == O_illegal || ep->X_op == O_absent)
1146 {
1147 /* We found a bad or missing expression in md_operand(). */
1148 *str = input_line_pointer;
1149 input_line_pointer = save_in;
1150 if (inst.error == NULL)
1151 inst.error = (ep->X_op == O_absent
1152 ? _("missing expression") :_("bad expression"));
1153 return 1;
1154 }
1155
1156 /* Get rid of any bignums now, so that we don't generate an error for which
1157 we can't establish a line number later on. Big numbers are never valid
1158 in instructions, which is where this routine is always called. */
1159 if (prefix_mode != GE_OPT_PREFIX_BIG
1160 && (ep->X_op == O_big
1161 || (ep->X_add_symbol
1162 && (walk_no_bignums (ep->X_add_symbol)
1163 || (ep->X_op_symbol
1164 && walk_no_bignums (ep->X_op_symbol))))))
1165 {
1166 inst.error = _("invalid constant");
1167 *str = input_line_pointer;
1168 input_line_pointer = save_in;
1169 return 1;
1170 }
1171
1172 *str = input_line_pointer;
1173 input_line_pointer = save_in;
1174 return SUCCESS;
1175 }
1176
1177 /* Turn a string in input_line_pointer into a floating point constant
1178 of type TYPE, and store the appropriate bytes in *LITP. The number
1179 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1180 returned, or NULL on OK.
1181
1182 Note that fp constants aren't represent in the normal way on the ARM.
1183 In big endian mode, things are as expected. However, in little endian
1184 mode fp constants are big-endian word-wise, and little-endian byte-wise
1185 within the words. For example, (double) 1.1 in big endian mode is
1186 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1187 the byte sequence 99 99 f1 3f 9a 99 99 99.
1188
1189 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
1190
1191 const char *
1192 md_atof (int type, char * litP, int * sizeP)
1193 {
1194 int prec;
1195 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1196 char *t;
1197 int i;
1198
1199 switch (type)
1200 {
1201 case 'H':
1202 case 'h':
1203 prec = 1;
1204 break;
1205
1206 case 'f':
1207 case 'F':
1208 case 's':
1209 case 'S':
1210 prec = 2;
1211 break;
1212
1213 case 'd':
1214 case 'D':
1215 case 'r':
1216 case 'R':
1217 prec = 4;
1218 break;
1219
1220 case 'x':
1221 case 'X':
1222 prec = 5;
1223 break;
1224
1225 case 'p':
1226 case 'P':
1227 prec = 5;
1228 break;
1229
1230 default:
1231 *sizeP = 0;
1232 return _("Unrecognized or unsupported floating point constant");
1233 }
1234
1235 t = atof_ieee (input_line_pointer, type, words);
1236 if (t)
1237 input_line_pointer = t;
1238 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1239
1240 if (target_big_endian || prec == 1)
1241 for (i = 0; i < prec; i++)
1242 {
1243 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1244 litP += sizeof (LITTLENUM_TYPE);
1245 }
1246 else if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
1247 for (i = prec - 1; i >= 0; i--)
1248 {
1249 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1250 litP += sizeof (LITTLENUM_TYPE);
1251 }
1252 else
1253 /* For a 4 byte float the order of elements in `words' is 1 0.
1254 For an 8 byte float the order is 1 0 3 2. */
1255 for (i = 0; i < prec; i += 2)
1256 {
1257 md_number_to_chars (litP, (valueT) words[i + 1],
1258 sizeof (LITTLENUM_TYPE));
1259 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1260 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1261 litP += 2 * sizeof (LITTLENUM_TYPE);
1262 }
1263
1264 return NULL;
1265 }
1266
1267 /* We handle all bad expressions here, so that we can report the faulty
1268 instruction in the error message. */
1269
1270 void
1271 md_operand (expressionS * exp)
1272 {
1273 if (in_my_get_expression)
1274 exp->X_op = O_illegal;
1275 }
1276
1277 /* Immediate values. */
1278
1279 #ifdef OBJ_ELF
1280 /* Generic immediate-value read function for use in directives.
1281 Accepts anything that 'expression' can fold to a constant.
1282 *val receives the number. */
1283
1284 static int
1285 immediate_for_directive (int *val)
1286 {
1287 expressionS exp;
1288 exp.X_op = O_illegal;
1289
1290 if (is_immediate_prefix (*input_line_pointer))
1291 {
1292 input_line_pointer++;
1293 expression (&exp);
1294 }
1295
1296 if (exp.X_op != O_constant)
1297 {
1298 as_bad (_("expected #constant"));
1299 ignore_rest_of_line ();
1300 return FAIL;
1301 }
1302 *val = exp.X_add_number;
1303 return SUCCESS;
1304 }
1305 #endif
1306
1307 /* Register parsing. */
1308
1309 /* Generic register parser. CCP points to what should be the
1310 beginning of a register name. If it is indeed a valid register
1311 name, advance CCP over it and return the reg_entry structure;
1312 otherwise return NULL. Does not issue diagnostics. */
1313
1314 static struct reg_entry *
1315 arm_reg_parse_multi (char **ccp)
1316 {
1317 char *start = *ccp;
1318 char *p;
1319 struct reg_entry *reg;
1320
1321 skip_whitespace (start);
1322
1323 #ifdef REGISTER_PREFIX
1324 if (*start != REGISTER_PREFIX)
1325 return NULL;
1326 start++;
1327 #endif
1328 #ifdef OPTIONAL_REGISTER_PREFIX
1329 if (*start == OPTIONAL_REGISTER_PREFIX)
1330 start++;
1331 #endif
1332
1333 p = start;
1334 if (!ISALPHA (*p) || !is_name_beginner (*p))
1335 return NULL;
1336
1337 do
1338 p++;
1339 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1340
1341 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1342
1343 if (!reg)
1344 return NULL;
1345
1346 *ccp = p;
1347 return reg;
1348 }
1349
1350 static int
1351 arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1352 enum arm_reg_type type)
1353 {
1354 /* Alternative syntaxes are accepted for a few register classes. */
1355 switch (type)
1356 {
1357 case REG_TYPE_MVF:
1358 case REG_TYPE_MVD:
1359 case REG_TYPE_MVFX:
1360 case REG_TYPE_MVDX:
1361 /* Generic coprocessor register names are allowed for these. */
1362 if (reg && reg->type == REG_TYPE_CN)
1363 return reg->number;
1364 break;
1365
1366 case REG_TYPE_CP:
1367 /* For backward compatibility, a bare number is valid here. */
1368 {
1369 unsigned long processor = strtoul (start, ccp, 10);
1370 if (*ccp != start && processor <= 15)
1371 return processor;
1372 }
1373 /* Fall through. */
1374
1375 case REG_TYPE_MMXWC:
1376 /* WC includes WCG. ??? I'm not sure this is true for all
1377 instructions that take WC registers. */
1378 if (reg && reg->type == REG_TYPE_MMXWCG)
1379 return reg->number;
1380 break;
1381
1382 default:
1383 break;
1384 }
1385
1386 return FAIL;
1387 }
1388
1389 /* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1390 return value is the register number or FAIL. */
1391
1392 static int
1393 arm_reg_parse (char **ccp, enum arm_reg_type type)
1394 {
1395 char *start = *ccp;
1396 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1397 int ret;
1398
1399 /* Do not allow a scalar (reg+index) to parse as a register. */
1400 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1401 return FAIL;
1402
1403 if (reg && reg->type == type)
1404 return reg->number;
1405
1406 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1407 return ret;
1408
1409 *ccp = start;
1410 return FAIL;
1411 }
1412
1413 /* Parse a Neon type specifier. *STR should point at the leading '.'
1414 character. Does no verification at this stage that the type fits the opcode
1415 properly. E.g.,
1416
1417 .i32.i32.s16
1418 .s32.f32
1419 .u16
1420
1421 Can all be legally parsed by this function.
1422
1423 Fills in neon_type struct pointer with parsed information, and updates STR
1424 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1425 type, FAIL if not. */
1426
1427 static int
1428 parse_neon_type (struct neon_type *type, char **str)
1429 {
1430 char *ptr = *str;
1431
1432 if (type)
1433 type->elems = 0;
1434
1435 while (type->elems < NEON_MAX_TYPE_ELS)
1436 {
1437 enum neon_el_type thistype = NT_untyped;
1438 unsigned thissize = -1u;
1439
1440 if (*ptr != '.')
1441 break;
1442
1443 ptr++;
1444
1445 /* Just a size without an explicit type. */
1446 if (ISDIGIT (*ptr))
1447 goto parsesize;
1448
1449 switch (TOLOWER (*ptr))
1450 {
1451 case 'i': thistype = NT_integer; break;
1452 case 'f': thistype = NT_float; break;
1453 case 'p': thistype = NT_poly; break;
1454 case 's': thistype = NT_signed; break;
1455 case 'u': thistype = NT_unsigned; break;
1456 case 'd':
1457 thistype = NT_float;
1458 thissize = 64;
1459 ptr++;
1460 goto done;
1461 default:
1462 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1463 return FAIL;
1464 }
1465
1466 ptr++;
1467
1468 /* .f is an abbreviation for .f32. */
1469 if (thistype == NT_float && !ISDIGIT (*ptr))
1470 thissize = 32;
1471 else
1472 {
1473 parsesize:
1474 thissize = strtoul (ptr, &ptr, 10);
1475
1476 if (thissize != 8 && thissize != 16 && thissize != 32
1477 && thissize != 64)
1478 {
1479 as_bad (_("bad size %d in type specifier"), thissize);
1480 return FAIL;
1481 }
1482 }
1483
1484 done:
1485 if (type)
1486 {
1487 type->el[type->elems].type = thistype;
1488 type->el[type->elems].size = thissize;
1489 type->elems++;
1490 }
1491 }
1492
1493 /* Empty/missing type is not a successful parse. */
1494 if (type->elems == 0)
1495 return FAIL;
1496
1497 *str = ptr;
1498
1499 return SUCCESS;
1500 }
1501
1502 /* Errors may be set multiple times during parsing or bit encoding
1503 (particularly in the Neon bits), but usually the earliest error which is set
1504 will be the most meaningful. Avoid overwriting it with later (cascading)
1505 errors by calling this function. */
1506
1507 static void
1508 first_error (const char *err)
1509 {
1510 if (!inst.error)
1511 inst.error = err;
1512 }
1513
1514 /* Parse a single type, e.g. ".s32", leading period included. */
1515 static int
1516 parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1517 {
1518 char *str = *ccp;
1519 struct neon_type optype;
1520
1521 if (*str == '.')
1522 {
1523 if (parse_neon_type (&optype, &str) == SUCCESS)
1524 {
1525 if (optype.elems == 1)
1526 *vectype = optype.el[0];
1527 else
1528 {
1529 first_error (_("only one type should be specified for operand"));
1530 return FAIL;
1531 }
1532 }
1533 else
1534 {
1535 first_error (_("vector type expected"));
1536 return FAIL;
1537 }
1538 }
1539 else
1540 return FAIL;
1541
1542 *ccp = str;
1543
1544 return SUCCESS;
1545 }
1546
1547 /* Special meanings for indices (which have a range of 0-7), which will fit into
1548 a 4-bit integer. */
1549
1550 #define NEON_ALL_LANES 15
1551 #define NEON_INTERLEAVE_LANES 14
1552
1553 /* Record a use of the given feature. */
1554 static void
1555 record_feature_use (const arm_feature_set *feature)
1556 {
1557 if (thumb_mode)
1558 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
1559 else
1560 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
1561 }
1562
1563 /* If the given feature available in the selected CPU, mark it as used.
1564 Returns TRUE iff feature is available. */
1565 static bfd_boolean
1566 mark_feature_used (const arm_feature_set *feature)
1567 {
1568
1569 /* Do not support the use of MVE only instructions when in auto-detection or
1570 -march=all. */
1571 if (((feature == &mve_ext) || (feature == &mve_fp_ext))
1572 && ARM_CPU_IS_ANY (cpu_variant))
1573 {
1574 first_error (BAD_MVE_AUTO);
1575 return FALSE;
1576 }
1577 /* Ensure the option is valid on the current architecture. */
1578 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
1579 return FALSE;
1580
1581 /* Add the appropriate architecture feature for the barrier option used.
1582 */
1583 record_feature_use (feature);
1584
1585 return TRUE;
1586 }
1587
1588 /* Parse either a register or a scalar, with an optional type. Return the
1589 register number, and optionally fill in the actual type of the register
1590 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1591 type/index information in *TYPEINFO. */
1592
1593 static int
1594 parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1595 enum arm_reg_type *rtype,
1596 struct neon_typed_alias *typeinfo)
1597 {
1598 char *str = *ccp;
1599 struct reg_entry *reg = arm_reg_parse_multi (&str);
1600 struct neon_typed_alias atype;
1601 struct neon_type_el parsetype;
1602
1603 atype.defined = 0;
1604 atype.index = -1;
1605 atype.eltype.type = NT_invtype;
1606 atype.eltype.size = -1;
1607
1608 /* Try alternate syntax for some types of register. Note these are mutually
1609 exclusive with the Neon syntax extensions. */
1610 if (reg == NULL)
1611 {
1612 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1613 if (altreg != FAIL)
1614 *ccp = str;
1615 if (typeinfo)
1616 *typeinfo = atype;
1617 return altreg;
1618 }
1619
1620 /* Undo polymorphism when a set of register types may be accepted. */
1621 if ((type == REG_TYPE_NDQ
1622 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1623 || (type == REG_TYPE_VFSD
1624 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1625 || (type == REG_TYPE_NSDQ
1626 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1627 || reg->type == REG_TYPE_NQ))
1628 || (type == REG_TYPE_NSD
1629 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1630 || (type == REG_TYPE_MMXWC
1631 && (reg->type == REG_TYPE_MMXWCG)))
1632 type = (enum arm_reg_type) reg->type;
1633
1634 if (type == REG_TYPE_MQ)
1635 {
1636 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
1637 return FAIL;
1638
1639 if (!reg || reg->type != REG_TYPE_NQ)
1640 return FAIL;
1641
1642 if (reg->number > 14 && !mark_feature_used (&fpu_vfp_ext_d32))
1643 {
1644 first_error (_("expected MVE register [q0..q7]"));
1645 return FAIL;
1646 }
1647 type = REG_TYPE_NQ;
1648 }
1649 else if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
1650 && (type == REG_TYPE_NQ))
1651 return FAIL;
1652
1653
1654 if (type != reg->type)
1655 return FAIL;
1656
1657 if (reg->neon)
1658 atype = *reg->neon;
1659
1660 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1661 {
1662 if ((atype.defined & NTA_HASTYPE) != 0)
1663 {
1664 first_error (_("can't redefine type for operand"));
1665 return FAIL;
1666 }
1667 atype.defined |= NTA_HASTYPE;
1668 atype.eltype = parsetype;
1669 }
1670
1671 if (skip_past_char (&str, '[') == SUCCESS)
1672 {
1673 if (type != REG_TYPE_VFD
1674 && !(type == REG_TYPE_VFS
1675 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_2))
1676 && !(type == REG_TYPE_NQ
1677 && ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)))
1678 {
1679 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
1680 first_error (_("only D and Q registers may be indexed"));
1681 else
1682 first_error (_("only D registers may be indexed"));
1683 return FAIL;
1684 }
1685
1686 if ((atype.defined & NTA_HASINDEX) != 0)
1687 {
1688 first_error (_("can't change index for operand"));
1689 return FAIL;
1690 }
1691
1692 atype.defined |= NTA_HASINDEX;
1693
1694 if (skip_past_char (&str, ']') == SUCCESS)
1695 atype.index = NEON_ALL_LANES;
1696 else
1697 {
1698 expressionS exp;
1699
1700 my_get_expression (&exp, &str, GE_NO_PREFIX);
1701
1702 if (exp.X_op != O_constant)
1703 {
1704 first_error (_("constant expression required"));
1705 return FAIL;
1706 }
1707
1708 if (skip_past_char (&str, ']') == FAIL)
1709 return FAIL;
1710
1711 atype.index = exp.X_add_number;
1712 }
1713 }
1714
1715 if (typeinfo)
1716 *typeinfo = atype;
1717
1718 if (rtype)
1719 *rtype = type;
1720
1721 *ccp = str;
1722
1723 return reg->number;
1724 }
1725
1726 /* Like arm_reg_parse, but also allow the following extra features:
1727 - If RTYPE is non-zero, return the (possibly restricted) type of the
1728 register (e.g. Neon double or quad reg when either has been requested).
1729 - If this is a Neon vector type with additional type information, fill
1730 in the struct pointed to by VECTYPE (if non-NULL).
1731 This function will fault on encountering a scalar. */
1732
1733 static int
1734 arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1735 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1736 {
1737 struct neon_typed_alias atype;
1738 char *str = *ccp;
1739 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1740
1741 if (reg == FAIL)
1742 return FAIL;
1743
1744 /* Do not allow regname(... to parse as a register. */
1745 if (*str == '(')
1746 return FAIL;
1747
1748 /* Do not allow a scalar (reg+index) to parse as a register. */
1749 if ((atype.defined & NTA_HASINDEX) != 0)
1750 {
1751 first_error (_("register operand expected, but got scalar"));
1752 return FAIL;
1753 }
1754
1755 if (vectype)
1756 *vectype = atype.eltype;
1757
1758 *ccp = str;
1759
1760 return reg;
1761 }
1762
1763 #define NEON_SCALAR_REG(X) ((X) >> 4)
1764 #define NEON_SCALAR_INDEX(X) ((X) & 15)
1765
1766 /* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1767 have enough information to be able to do a good job bounds-checking. So, we
1768 just do easy checks here, and do further checks later. */
1769
1770 static int
1771 parse_scalar (char **ccp, int elsize, struct neon_type_el *type, enum
1772 arm_reg_type reg_type)
1773 {
1774 int reg;
1775 char *str = *ccp;
1776 struct neon_typed_alias atype;
1777 unsigned reg_size;
1778
1779 reg = parse_typed_reg_or_scalar (&str, reg_type, NULL, &atype);
1780
1781 switch (reg_type)
1782 {
1783 case REG_TYPE_VFS:
1784 reg_size = 32;
1785 break;
1786 case REG_TYPE_VFD:
1787 reg_size = 64;
1788 break;
1789 case REG_TYPE_MQ:
1790 reg_size = 128;
1791 break;
1792 default:
1793 gas_assert (0);
1794 return FAIL;
1795 }
1796
1797 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
1798 return FAIL;
1799
1800 if (reg_type != REG_TYPE_MQ && atype.index == NEON_ALL_LANES)
1801 {
1802 first_error (_("scalar must have an index"));
1803 return FAIL;
1804 }
1805 else if (atype.index >= reg_size / elsize)
1806 {
1807 first_error (_("scalar index out of range"));
1808 return FAIL;
1809 }
1810
1811 if (type)
1812 *type = atype.eltype;
1813
1814 *ccp = str;
1815
1816 return reg * 16 + atype.index;
1817 }
1818
1819 /* Types of registers in a list. */
1820
1821 enum reg_list_els
1822 {
1823 REGLIST_RN,
1824 REGLIST_CLRM,
1825 REGLIST_VFP_S,
1826 REGLIST_VFP_S_VPR,
1827 REGLIST_VFP_D,
1828 REGLIST_VFP_D_VPR,
1829 REGLIST_NEON_D
1830 };
1831
1832 /* Parse an ARM register list. Returns the bitmask, or FAIL. */
1833
1834 static long
1835 parse_reg_list (char ** strp, enum reg_list_els etype)
1836 {
1837 char *str = *strp;
1838 long range = 0;
1839 int another_range;
1840
1841 gas_assert (etype == REGLIST_RN || etype == REGLIST_CLRM);
1842
1843 /* We come back here if we get ranges concatenated by '+' or '|'. */
1844 do
1845 {
1846 skip_whitespace (str);
1847
1848 another_range = 0;
1849
1850 if (*str == '{')
1851 {
1852 int in_range = 0;
1853 int cur_reg = -1;
1854
1855 str++;
1856 do
1857 {
1858 int reg;
1859 const char apsr_str[] = "apsr";
1860 int apsr_str_len = strlen (apsr_str);
1861
1862 reg = arm_reg_parse (&str, REGLIST_RN);
1863 if (etype == REGLIST_CLRM)
1864 {
1865 if (reg == REG_SP || reg == REG_PC)
1866 reg = FAIL;
1867 else if (reg == FAIL
1868 && !strncasecmp (str, apsr_str, apsr_str_len)
1869 && !ISALPHA (*(str + apsr_str_len)))
1870 {
1871 reg = 15;
1872 str += apsr_str_len;
1873 }
1874
1875 if (reg == FAIL)
1876 {
1877 first_error (_("r0-r12, lr or APSR expected"));
1878 return FAIL;
1879 }
1880 }
1881 else /* etype == REGLIST_RN. */
1882 {
1883 if (reg == FAIL)
1884 {
1885 first_error (_(reg_expected_msgs[REGLIST_RN]));
1886 return FAIL;
1887 }
1888 }
1889
1890 if (in_range)
1891 {
1892 int i;
1893
1894 if (reg <= cur_reg)
1895 {
1896 first_error (_("bad range in register list"));
1897 return FAIL;
1898 }
1899
1900 for (i = cur_reg + 1; i < reg; i++)
1901 {
1902 if (range & (1 << i))
1903 as_tsktsk
1904 (_("Warning: duplicated register (r%d) in register list"),
1905 i);
1906 else
1907 range |= 1 << i;
1908 }
1909 in_range = 0;
1910 }
1911
1912 if (range & (1 << reg))
1913 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1914 reg);
1915 else if (reg <= cur_reg)
1916 as_tsktsk (_("Warning: register range not in ascending order"));
1917
1918 range |= 1 << reg;
1919 cur_reg = reg;
1920 }
1921 while (skip_past_comma (&str) != FAIL
1922 || (in_range = 1, *str++ == '-'));
1923 str--;
1924
1925 if (skip_past_char (&str, '}') == FAIL)
1926 {
1927 first_error (_("missing `}'"));
1928 return FAIL;
1929 }
1930 }
1931 else if (etype == REGLIST_RN)
1932 {
1933 expressionS exp;
1934
1935 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
1936 return FAIL;
1937
1938 if (exp.X_op == O_constant)
1939 {
1940 if (exp.X_add_number
1941 != (exp.X_add_number & 0x0000ffff))
1942 {
1943 inst.error = _("invalid register mask");
1944 return FAIL;
1945 }
1946
1947 if ((range & exp.X_add_number) != 0)
1948 {
1949 int regno = range & exp.X_add_number;
1950
1951 regno &= -regno;
1952 regno = (1 << regno) - 1;
1953 as_tsktsk
1954 (_("Warning: duplicated register (r%d) in register list"),
1955 regno);
1956 }
1957
1958 range |= exp.X_add_number;
1959 }
1960 else
1961 {
1962 if (inst.relocs[0].type != 0)
1963 {
1964 inst.error = _("expression too complex");
1965 return FAIL;
1966 }
1967
1968 memcpy (&inst.relocs[0].exp, &exp, sizeof (expressionS));
1969 inst.relocs[0].type = BFD_RELOC_ARM_MULTI;
1970 inst.relocs[0].pc_rel = 0;
1971 }
1972 }
1973
1974 if (*str == '|' || *str == '+')
1975 {
1976 str++;
1977 another_range = 1;
1978 }
1979 }
1980 while (another_range);
1981
1982 *strp = str;
1983 return range;
1984 }
1985
1986 /* Parse a VFP register list. If the string is invalid return FAIL.
1987 Otherwise return the number of registers, and set PBASE to the first
1988 register. Parses registers of type ETYPE.
1989 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1990 - Q registers can be used to specify pairs of D registers
1991 - { } can be omitted from around a singleton register list
1992 FIXME: This is not implemented, as it would require backtracking in
1993 some cases, e.g.:
1994 vtbl.8 d3,d4,d5
1995 This could be done (the meaning isn't really ambiguous), but doesn't
1996 fit in well with the current parsing framework.
1997 - 32 D registers may be used (also true for VFPv3).
1998 FIXME: Types are ignored in these register lists, which is probably a
1999 bug. */
2000
2001 static int
2002 parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype,
2003 bfd_boolean *partial_match)
2004 {
2005 char *str = *ccp;
2006 int base_reg;
2007 int new_base;
2008 enum arm_reg_type regtype = (enum arm_reg_type) 0;
2009 int max_regs = 0;
2010 int count = 0;
2011 int warned = 0;
2012 unsigned long mask = 0;
2013 int i;
2014 bfd_boolean vpr_seen = FALSE;
2015 bfd_boolean expect_vpr =
2016 (etype == REGLIST_VFP_S_VPR) || (etype == REGLIST_VFP_D_VPR);
2017
2018 if (skip_past_char (&str, '{') == FAIL)
2019 {
2020 inst.error = _("expecting {");
2021 return FAIL;
2022 }
2023
2024 switch (etype)
2025 {
2026 case REGLIST_VFP_S:
2027 case REGLIST_VFP_S_VPR:
2028 regtype = REG_TYPE_VFS;
2029 max_regs = 32;
2030 break;
2031
2032 case REGLIST_VFP_D:
2033 case REGLIST_VFP_D_VPR:
2034 regtype = REG_TYPE_VFD;
2035 break;
2036
2037 case REGLIST_NEON_D:
2038 regtype = REG_TYPE_NDQ;
2039 break;
2040
2041 default:
2042 gas_assert (0);
2043 }
2044
2045 if (etype != REGLIST_VFP_S && etype != REGLIST_VFP_S_VPR)
2046 {
2047 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
2048 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
2049 {
2050 max_regs = 32;
2051 if (thumb_mode)
2052 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
2053 fpu_vfp_ext_d32);
2054 else
2055 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
2056 fpu_vfp_ext_d32);
2057 }
2058 else
2059 max_regs = 16;
2060 }
2061
2062 base_reg = max_regs;
2063 *partial_match = FALSE;
2064
2065 do
2066 {
2067 int setmask = 1, addregs = 1;
2068 const char vpr_str[] = "vpr";
2069 int vpr_str_len = strlen (vpr_str);
2070
2071 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
2072
2073 if (expect_vpr)
2074 {
2075 if (new_base == FAIL
2076 && !strncasecmp (str, vpr_str, vpr_str_len)
2077 && !ISALPHA (*(str + vpr_str_len))
2078 && !vpr_seen)
2079 {
2080 vpr_seen = TRUE;
2081 str += vpr_str_len;
2082 if (count == 0)
2083 base_reg = 0; /* Canonicalize VPR only on d0 with 0 regs. */
2084 }
2085 else if (vpr_seen)
2086 {
2087 first_error (_("VPR expected last"));
2088 return FAIL;
2089 }
2090 else if (new_base == FAIL)
2091 {
2092 if (regtype == REG_TYPE_VFS)
2093 first_error (_("VFP single precision register or VPR "
2094 "expected"));
2095 else /* regtype == REG_TYPE_VFD. */
2096 first_error (_("VFP/Neon double precision register or VPR "
2097 "expected"));
2098 return FAIL;
2099 }
2100 }
2101 else if (new_base == FAIL)
2102 {
2103 first_error (_(reg_expected_msgs[regtype]));
2104 return FAIL;
2105 }
2106
2107 *partial_match = TRUE;
2108 if (vpr_seen)
2109 continue;
2110
2111 if (new_base >= max_regs)
2112 {
2113 first_error (_("register out of range in list"));
2114 return FAIL;
2115 }
2116
2117 /* Note: a value of 2 * n is returned for the register Q<n>. */
2118 if (regtype == REG_TYPE_NQ)
2119 {
2120 setmask = 3;
2121 addregs = 2;
2122 }
2123
2124 if (new_base < base_reg)
2125 base_reg = new_base;
2126
2127 if (mask & (setmask << new_base))
2128 {
2129 first_error (_("invalid register list"));
2130 return FAIL;
2131 }
2132
2133 if ((mask >> new_base) != 0 && ! warned && !vpr_seen)
2134 {
2135 as_tsktsk (_("register list not in ascending order"));
2136 warned = 1;
2137 }
2138
2139 mask |= setmask << new_base;
2140 count += addregs;
2141
2142 if (*str == '-') /* We have the start of a range expression */
2143 {
2144 int high_range;
2145
2146 str++;
2147
2148 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
2149 == FAIL)
2150 {
2151 inst.error = gettext (reg_expected_msgs[regtype]);
2152 return FAIL;
2153 }
2154
2155 if (high_range >= max_regs)
2156 {
2157 first_error (_("register out of range in list"));
2158 return FAIL;
2159 }
2160
2161 if (regtype == REG_TYPE_NQ)
2162 high_range = high_range + 1;
2163
2164 if (high_range <= new_base)
2165 {
2166 inst.error = _("register range not in ascending order");
2167 return FAIL;
2168 }
2169
2170 for (new_base += addregs; new_base <= high_range; new_base += addregs)
2171 {
2172 if (mask & (setmask << new_base))
2173 {
2174 inst.error = _("invalid register list");
2175 return FAIL;
2176 }
2177
2178 mask |= setmask << new_base;
2179 count += addregs;
2180 }
2181 }
2182 }
2183 while (skip_past_comma (&str) != FAIL);
2184
2185 str++;
2186
2187 /* Sanity check -- should have raised a parse error above. */
2188 if ((!vpr_seen && count == 0) || count > max_regs)
2189 abort ();
2190
2191 *pbase = base_reg;
2192
2193 if (expect_vpr && !vpr_seen)
2194 {
2195 first_error (_("VPR expected last"));
2196 return FAIL;
2197 }
2198
2199 /* Final test -- the registers must be consecutive. */
2200 mask >>= base_reg;
2201 for (i = 0; i < count; i++)
2202 {
2203 if ((mask & (1u << i)) == 0)
2204 {
2205 inst.error = _("non-contiguous register range");
2206 return FAIL;
2207 }
2208 }
2209
2210 *ccp = str;
2211
2212 return count;
2213 }
2214
2215 /* True if two alias types are the same. */
2216
2217 static bfd_boolean
2218 neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
2219 {
2220 if (!a && !b)
2221 return TRUE;
2222
2223 if (!a || !b)
2224 return FALSE;
2225
2226 if (a->defined != b->defined)
2227 return FALSE;
2228
2229 if ((a->defined & NTA_HASTYPE) != 0
2230 && (a->eltype.type != b->eltype.type
2231 || a->eltype.size != b->eltype.size))
2232 return FALSE;
2233
2234 if ((a->defined & NTA_HASINDEX) != 0
2235 && (a->index != b->index))
2236 return FALSE;
2237
2238 return TRUE;
2239 }
2240
2241 /* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
2242 The base register is put in *PBASE.
2243 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
2244 the return value.
2245 The register stride (minus one) is put in bit 4 of the return value.
2246 Bits [6:5] encode the list length (minus one).
2247 The type of the list elements is put in *ELTYPE, if non-NULL. */
2248
2249 #define NEON_LANE(X) ((X) & 0xf)
2250 #define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
2251 #define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
2252
2253 static int
2254 parse_neon_el_struct_list (char **str, unsigned *pbase,
2255 int mve,
2256 struct neon_type_el *eltype)
2257 {
2258 char *ptr = *str;
2259 int base_reg = -1;
2260 int reg_incr = -1;
2261 int count = 0;
2262 int lane = -1;
2263 int leading_brace = 0;
2264 enum arm_reg_type rtype = REG_TYPE_NDQ;
2265 const char *const incr_error = mve ? _("register stride must be 1") :
2266 _("register stride must be 1 or 2");
2267 const char *const type_error = _("mismatched element/structure types in list");
2268 struct neon_typed_alias firsttype;
2269 firsttype.defined = 0;
2270 firsttype.eltype.type = NT_invtype;
2271 firsttype.eltype.size = -1;
2272 firsttype.index = -1;
2273
2274 if (skip_past_char (&ptr, '{') == SUCCESS)
2275 leading_brace = 1;
2276
2277 do
2278 {
2279 struct neon_typed_alias atype;
2280 if (mve)
2281 rtype = REG_TYPE_MQ;
2282 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
2283
2284 if (getreg == FAIL)
2285 {
2286 first_error (_(reg_expected_msgs[rtype]));
2287 return FAIL;
2288 }
2289
2290 if (base_reg == -1)
2291 {
2292 base_reg = getreg;
2293 if (rtype == REG_TYPE_NQ)
2294 {
2295 reg_incr = 1;
2296 }
2297 firsttype = atype;
2298 }
2299 else if (reg_incr == -1)
2300 {
2301 reg_incr = getreg - base_reg;
2302 if (reg_incr < 1 || reg_incr > 2)
2303 {
2304 first_error (_(incr_error));
2305 return FAIL;
2306 }
2307 }
2308 else if (getreg != base_reg + reg_incr * count)
2309 {
2310 first_error (_(incr_error));
2311 return FAIL;
2312 }
2313
2314 if (! neon_alias_types_same (&atype, &firsttype))
2315 {
2316 first_error (_(type_error));
2317 return FAIL;
2318 }
2319
2320 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
2321 modes. */
2322 if (ptr[0] == '-')
2323 {
2324 struct neon_typed_alias htype;
2325 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
2326 if (lane == -1)
2327 lane = NEON_INTERLEAVE_LANES;
2328 else if (lane != NEON_INTERLEAVE_LANES)
2329 {
2330 first_error (_(type_error));
2331 return FAIL;
2332 }
2333 if (reg_incr == -1)
2334 reg_incr = 1;
2335 else if (reg_incr != 1)
2336 {
2337 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2338 return FAIL;
2339 }
2340 ptr++;
2341 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2342 if (hireg == FAIL)
2343 {
2344 first_error (_(reg_expected_msgs[rtype]));
2345 return FAIL;
2346 }
2347 if (! neon_alias_types_same (&htype, &firsttype))
2348 {
2349 first_error (_(type_error));
2350 return FAIL;
2351 }
2352 count += hireg + dregs - getreg;
2353 continue;
2354 }
2355
2356 /* If we're using Q registers, we can't use [] or [n] syntax. */
2357 if (rtype == REG_TYPE_NQ)
2358 {
2359 count += 2;
2360 continue;
2361 }
2362
2363 if ((atype.defined & NTA_HASINDEX) != 0)
2364 {
2365 if (lane == -1)
2366 lane = atype.index;
2367 else if (lane != atype.index)
2368 {
2369 first_error (_(type_error));
2370 return FAIL;
2371 }
2372 }
2373 else if (lane == -1)
2374 lane = NEON_INTERLEAVE_LANES;
2375 else if (lane != NEON_INTERLEAVE_LANES)
2376 {
2377 first_error (_(type_error));
2378 return FAIL;
2379 }
2380 count++;
2381 }
2382 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
2383
2384 /* No lane set by [x]. We must be interleaving structures. */
2385 if (lane == -1)
2386 lane = NEON_INTERLEAVE_LANES;
2387
2388 /* Sanity check. */
2389 if (lane == -1 || base_reg == -1 || count < 1 || (!mve && count > 4)
2390 || (count > 1 && reg_incr == -1))
2391 {
2392 first_error (_("error parsing element/structure list"));
2393 return FAIL;
2394 }
2395
2396 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2397 {
2398 first_error (_("expected }"));
2399 return FAIL;
2400 }
2401
2402 if (reg_incr == -1)
2403 reg_incr = 1;
2404
2405 if (eltype)
2406 *eltype = firsttype.eltype;
2407
2408 *pbase = base_reg;
2409 *str = ptr;
2410
2411 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2412 }
2413
2414 /* Parse an explicit relocation suffix on an expression. This is
2415 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2416 arm_reloc_hsh contains no entries, so this function can only
2417 succeed if there is no () after the word. Returns -1 on error,
2418 BFD_RELOC_UNUSED if there wasn't any suffix. */
2419
2420 static int
2421 parse_reloc (char **str)
2422 {
2423 struct reloc_entry *r;
2424 char *p, *q;
2425
2426 if (**str != '(')
2427 return BFD_RELOC_UNUSED;
2428
2429 p = *str + 1;
2430 q = p;
2431
2432 while (*q && *q != ')' && *q != ',')
2433 q++;
2434 if (*q != ')')
2435 return -1;
2436
2437 if ((r = (struct reloc_entry *)
2438 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
2439 return -1;
2440
2441 *str = q + 1;
2442 return r->reloc;
2443 }
2444
2445 /* Directives: register aliases. */
2446
2447 static struct reg_entry *
2448 insert_reg_alias (char *str, unsigned number, int type)
2449 {
2450 struct reg_entry *new_reg;
2451 const char *name;
2452
2453 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
2454 {
2455 if (new_reg->builtin)
2456 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
2457
2458 /* Only warn about a redefinition if it's not defined as the
2459 same register. */
2460 else if (new_reg->number != number || new_reg->type != type)
2461 as_warn (_("ignoring redefinition of register alias '%s'"), str);
2462
2463 return NULL;
2464 }
2465
2466 name = xstrdup (str);
2467 new_reg = XNEW (struct reg_entry);
2468
2469 new_reg->name = name;
2470 new_reg->number = number;
2471 new_reg->type = type;
2472 new_reg->builtin = FALSE;
2473 new_reg->neon = NULL;
2474
2475 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
2476 abort ();
2477
2478 return new_reg;
2479 }
2480
2481 static void
2482 insert_neon_reg_alias (char *str, int number, int type,
2483 struct neon_typed_alias *atype)
2484 {
2485 struct reg_entry *reg = insert_reg_alias (str, number, type);
2486
2487 if (!reg)
2488 {
2489 first_error (_("attempt to redefine typed alias"));
2490 return;
2491 }
2492
2493 if (atype)
2494 {
2495 reg->neon = XNEW (struct neon_typed_alias);
2496 *reg->neon = *atype;
2497 }
2498 }
2499
2500 /* Look for the .req directive. This is of the form:
2501
2502 new_register_name .req existing_register_name
2503
2504 If we find one, or if it looks sufficiently like one that we want to
2505 handle any error here, return TRUE. Otherwise return FALSE. */
2506
2507 static bfd_boolean
2508 create_register_alias (char * newname, char *p)
2509 {
2510 struct reg_entry *old;
2511 char *oldname, *nbuf;
2512 size_t nlen;
2513
2514 /* The input scrubber ensures that whitespace after the mnemonic is
2515 collapsed to single spaces. */
2516 oldname = p;
2517 if (strncmp (oldname, " .req ", 6) != 0)
2518 return FALSE;
2519
2520 oldname += 6;
2521 if (*oldname == '\0')
2522 return FALSE;
2523
2524 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
2525 if (!old)
2526 {
2527 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
2528 return TRUE;
2529 }
2530
2531 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2532 the desired alias name, and p points to its end. If not, then
2533 the desired alias name is in the global original_case_string. */
2534 #ifdef TC_CASE_SENSITIVE
2535 nlen = p - newname;
2536 #else
2537 newname = original_case_string;
2538 nlen = strlen (newname);
2539 #endif
2540
2541 nbuf = xmemdup0 (newname, nlen);
2542
2543 /* Create aliases under the new name as stated; an all-lowercase
2544 version of the new name; and an all-uppercase version of the new
2545 name. */
2546 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2547 {
2548 for (p = nbuf; *p; p++)
2549 *p = TOUPPER (*p);
2550
2551 if (strncmp (nbuf, newname, nlen))
2552 {
2553 /* If this attempt to create an additional alias fails, do not bother
2554 trying to create the all-lower case alias. We will fail and issue
2555 a second, duplicate error message. This situation arises when the
2556 programmer does something like:
2557 foo .req r0
2558 Foo .req r1
2559 The second .req creates the "Foo" alias but then fails to create
2560 the artificial FOO alias because it has already been created by the
2561 first .req. */
2562 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2563 {
2564 free (nbuf);
2565 return TRUE;
2566 }
2567 }
2568
2569 for (p = nbuf; *p; p++)
2570 *p = TOLOWER (*p);
2571
2572 if (strncmp (nbuf, newname, nlen))
2573 insert_reg_alias (nbuf, old->number, old->type);
2574 }
2575
2576 free (nbuf);
2577 return TRUE;
2578 }
2579
2580 /* Create a Neon typed/indexed register alias using directives, e.g.:
2581 X .dn d5.s32[1]
2582 Y .qn 6.s16
2583 Z .dn d7
2584 T .dn Z[0]
2585 These typed registers can be used instead of the types specified after the
2586 Neon mnemonic, so long as all operands given have types. Types can also be
2587 specified directly, e.g.:
2588 vadd d0.s32, d1.s32, d2.s32 */
2589
2590 static bfd_boolean
2591 create_neon_reg_alias (char *newname, char *p)
2592 {
2593 enum arm_reg_type basetype;
2594 struct reg_entry *basereg;
2595 struct reg_entry mybasereg;
2596 struct neon_type ntype;
2597 struct neon_typed_alias typeinfo;
2598 char *namebuf, *nameend ATTRIBUTE_UNUSED;
2599 int namelen;
2600
2601 typeinfo.defined = 0;
2602 typeinfo.eltype.type = NT_invtype;
2603 typeinfo.eltype.size = -1;
2604 typeinfo.index = -1;
2605
2606 nameend = p;
2607
2608 if (strncmp (p, " .dn ", 5) == 0)
2609 basetype = REG_TYPE_VFD;
2610 else if (strncmp (p, " .qn ", 5) == 0)
2611 basetype = REG_TYPE_NQ;
2612 else
2613 return FALSE;
2614
2615 p += 5;
2616
2617 if (*p == '\0')
2618 return FALSE;
2619
2620 basereg = arm_reg_parse_multi (&p);
2621
2622 if (basereg && basereg->type != basetype)
2623 {
2624 as_bad (_("bad type for register"));
2625 return FALSE;
2626 }
2627
2628 if (basereg == NULL)
2629 {
2630 expressionS exp;
2631 /* Try parsing as an integer. */
2632 my_get_expression (&exp, &p, GE_NO_PREFIX);
2633 if (exp.X_op != O_constant)
2634 {
2635 as_bad (_("expression must be constant"));
2636 return FALSE;
2637 }
2638 basereg = &mybasereg;
2639 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2640 : exp.X_add_number;
2641 basereg->neon = 0;
2642 }
2643
2644 if (basereg->neon)
2645 typeinfo = *basereg->neon;
2646
2647 if (parse_neon_type (&ntype, &p) == SUCCESS)
2648 {
2649 /* We got a type. */
2650 if (typeinfo.defined & NTA_HASTYPE)
2651 {
2652 as_bad (_("can't redefine the type of a register alias"));
2653 return FALSE;
2654 }
2655
2656 typeinfo.defined |= NTA_HASTYPE;
2657 if (ntype.elems != 1)
2658 {
2659 as_bad (_("you must specify a single type only"));
2660 return FALSE;
2661 }
2662 typeinfo.eltype = ntype.el[0];
2663 }
2664
2665 if (skip_past_char (&p, '[') == SUCCESS)
2666 {
2667 expressionS exp;
2668 /* We got a scalar index. */
2669
2670 if (typeinfo.defined & NTA_HASINDEX)
2671 {
2672 as_bad (_("can't redefine the index of a scalar alias"));
2673 return FALSE;
2674 }
2675
2676 my_get_expression (&exp, &p, GE_NO_PREFIX);
2677
2678 if (exp.X_op != O_constant)
2679 {
2680 as_bad (_("scalar index must be constant"));
2681 return FALSE;
2682 }
2683
2684 typeinfo.defined |= NTA_HASINDEX;
2685 typeinfo.index = exp.X_add_number;
2686
2687 if (skip_past_char (&p, ']') == FAIL)
2688 {
2689 as_bad (_("expecting ]"));
2690 return FALSE;
2691 }
2692 }
2693
2694 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2695 the desired alias name, and p points to its end. If not, then
2696 the desired alias name is in the global original_case_string. */
2697 #ifdef TC_CASE_SENSITIVE
2698 namelen = nameend - newname;
2699 #else
2700 newname = original_case_string;
2701 namelen = strlen (newname);
2702 #endif
2703
2704 namebuf = xmemdup0 (newname, namelen);
2705
2706 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2707 typeinfo.defined != 0 ? &typeinfo : NULL);
2708
2709 /* Insert name in all uppercase. */
2710 for (p = namebuf; *p; p++)
2711 *p = TOUPPER (*p);
2712
2713 if (strncmp (namebuf, newname, namelen))
2714 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2715 typeinfo.defined != 0 ? &typeinfo : NULL);
2716
2717 /* Insert name in all lowercase. */
2718 for (p = namebuf; *p; p++)
2719 *p = TOLOWER (*p);
2720
2721 if (strncmp (namebuf, newname, namelen))
2722 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2723 typeinfo.defined != 0 ? &typeinfo : NULL);
2724
2725 free (namebuf);
2726 return TRUE;
2727 }
2728
2729 /* Should never be called, as .req goes between the alias and the
2730 register name, not at the beginning of the line. */
2731
2732 static void
2733 s_req (int a ATTRIBUTE_UNUSED)
2734 {
2735 as_bad (_("invalid syntax for .req directive"));
2736 }
2737
2738 static void
2739 s_dn (int a ATTRIBUTE_UNUSED)
2740 {
2741 as_bad (_("invalid syntax for .dn directive"));
2742 }
2743
2744 static void
2745 s_qn (int a ATTRIBUTE_UNUSED)
2746 {
2747 as_bad (_("invalid syntax for .qn directive"));
2748 }
2749
2750 /* The .unreq directive deletes an alias which was previously defined
2751 by .req. For example:
2752
2753 my_alias .req r11
2754 .unreq my_alias */
2755
2756 static void
2757 s_unreq (int a ATTRIBUTE_UNUSED)
2758 {
2759 char * name;
2760 char saved_char;
2761
2762 name = input_line_pointer;
2763
2764 while (*input_line_pointer != 0
2765 && *input_line_pointer != ' '
2766 && *input_line_pointer != '\n')
2767 ++input_line_pointer;
2768
2769 saved_char = *input_line_pointer;
2770 *input_line_pointer = 0;
2771
2772 if (!*name)
2773 as_bad (_("invalid syntax for .unreq directive"));
2774 else
2775 {
2776 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
2777 name);
2778
2779 if (!reg)
2780 as_bad (_("unknown register alias '%s'"), name);
2781 else if (reg->builtin)
2782 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
2783 name);
2784 else
2785 {
2786 char * p;
2787 char * nbuf;
2788
2789 hash_delete (arm_reg_hsh, name, FALSE);
2790 free ((char *) reg->name);
2791 if (reg->neon)
2792 free (reg->neon);
2793 free (reg);
2794
2795 /* Also locate the all upper case and all lower case versions.
2796 Do not complain if we cannot find one or the other as it
2797 was probably deleted above. */
2798
2799 nbuf = strdup (name);
2800 for (p = nbuf; *p; p++)
2801 *p = TOUPPER (*p);
2802 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
2803 if (reg)
2804 {
2805 hash_delete (arm_reg_hsh, nbuf, FALSE);
2806 free ((char *) reg->name);
2807 if (reg->neon)
2808 free (reg->neon);
2809 free (reg);
2810 }
2811
2812 for (p = nbuf; *p; p++)
2813 *p = TOLOWER (*p);
2814 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
2815 if (reg)
2816 {
2817 hash_delete (arm_reg_hsh, nbuf, FALSE);
2818 free ((char *) reg->name);
2819 if (reg->neon)
2820 free (reg->neon);
2821 free (reg);
2822 }
2823
2824 free (nbuf);
2825 }
2826 }
2827
2828 *input_line_pointer = saved_char;
2829 demand_empty_rest_of_line ();
2830 }
2831
2832 /* Directives: Instruction set selection. */
2833
2834 #ifdef OBJ_ELF
2835 /* This code is to handle mapping symbols as defined in the ARM ELF spec.
2836 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2837 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2838 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2839
2840 /* Create a new mapping symbol for the transition to STATE. */
2841
2842 static void
2843 make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
2844 {
2845 symbolS * symbolP;
2846 const char * symname;
2847 int type;
2848
2849 switch (state)
2850 {
2851 case MAP_DATA:
2852 symname = "$d";
2853 type = BSF_NO_FLAGS;
2854 break;
2855 case MAP_ARM:
2856 symname = "$a";
2857 type = BSF_NO_FLAGS;
2858 break;
2859 case MAP_THUMB:
2860 symname = "$t";
2861 type = BSF_NO_FLAGS;
2862 break;
2863 default:
2864 abort ();
2865 }
2866
2867 symbolP = symbol_new (symname, now_seg, value, frag);
2868 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2869
2870 switch (state)
2871 {
2872 case MAP_ARM:
2873 THUMB_SET_FUNC (symbolP, 0);
2874 ARM_SET_THUMB (symbolP, 0);
2875 ARM_SET_INTERWORK (symbolP, support_interwork);
2876 break;
2877
2878 case MAP_THUMB:
2879 THUMB_SET_FUNC (symbolP, 1);
2880 ARM_SET_THUMB (symbolP, 1);
2881 ARM_SET_INTERWORK (symbolP, support_interwork);
2882 break;
2883
2884 case MAP_DATA:
2885 default:
2886 break;
2887 }
2888
2889 /* Save the mapping symbols for future reference. Also check that
2890 we do not place two mapping symbols at the same offset within a
2891 frag. We'll handle overlap between frags in
2892 check_mapping_symbols.
2893
2894 If .fill or other data filling directive generates zero sized data,
2895 the mapping symbol for the following code will have the same value
2896 as the one generated for the data filling directive. In this case,
2897 we replace the old symbol with the new one at the same address. */
2898 if (value == 0)
2899 {
2900 if (frag->tc_frag_data.first_map != NULL)
2901 {
2902 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2903 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2904 }
2905 frag->tc_frag_data.first_map = symbolP;
2906 }
2907 if (frag->tc_frag_data.last_map != NULL)
2908 {
2909 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
2910 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2911 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2912 }
2913 frag->tc_frag_data.last_map = symbolP;
2914 }
2915
2916 /* We must sometimes convert a region marked as code to data during
2917 code alignment, if an odd number of bytes have to be padded. The
2918 code mapping symbol is pushed to an aligned address. */
2919
2920 static void
2921 insert_data_mapping_symbol (enum mstate state,
2922 valueT value, fragS *frag, offsetT bytes)
2923 {
2924 /* If there was already a mapping symbol, remove it. */
2925 if (frag->tc_frag_data.last_map != NULL
2926 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2927 {
2928 symbolS *symp = frag->tc_frag_data.last_map;
2929
2930 if (value == 0)
2931 {
2932 know (frag->tc_frag_data.first_map == symp);
2933 frag->tc_frag_data.first_map = NULL;
2934 }
2935 frag->tc_frag_data.last_map = NULL;
2936 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2937 }
2938
2939 make_mapping_symbol (MAP_DATA, value, frag);
2940 make_mapping_symbol (state, value + bytes, frag);
2941 }
2942
2943 static void mapping_state_2 (enum mstate state, int max_chars);
2944
2945 /* Set the mapping state to STATE. Only call this when about to
2946 emit some STATE bytes to the file. */
2947
2948 #define TRANSITION(from, to) (mapstate == (from) && state == (to))
2949 void
2950 mapping_state (enum mstate state)
2951 {
2952 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2953
2954 if (mapstate == state)
2955 /* The mapping symbol has already been emitted.
2956 There is nothing else to do. */
2957 return;
2958
2959 if (state == MAP_ARM || state == MAP_THUMB)
2960 /* PR gas/12931
2961 All ARM instructions require 4-byte alignment.
2962 (Almost) all Thumb instructions require 2-byte alignment.
2963
2964 When emitting instructions into any section, mark the section
2965 appropriately.
2966
2967 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2968 but themselves require 2-byte alignment; this applies to some
2969 PC- relative forms. However, these cases will involve implicit
2970 literal pool generation or an explicit .align >=2, both of
2971 which will cause the section to me marked with sufficient
2972 alignment. Thus, we don't handle those cases here. */
2973 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2974
2975 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
2976 /* This case will be evaluated later. */
2977 return;
2978
2979 mapping_state_2 (state, 0);
2980 }
2981
2982 /* Same as mapping_state, but MAX_CHARS bytes have already been
2983 allocated. Put the mapping symbol that far back. */
2984
2985 static void
2986 mapping_state_2 (enum mstate state, int max_chars)
2987 {
2988 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2989
2990 if (!SEG_NORMAL (now_seg))
2991 return;
2992
2993 if (mapstate == state)
2994 /* The mapping symbol has already been emitted.
2995 There is nothing else to do. */
2996 return;
2997
2998 if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2999 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
3000 {
3001 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
3002 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
3003
3004 if (add_symbol)
3005 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
3006 }
3007
3008 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
3009 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
3010 }
3011 #undef TRANSITION
3012 #else
3013 #define mapping_state(x) ((void)0)
3014 #define mapping_state_2(x, y) ((void)0)
3015 #endif
3016
3017 /* Find the real, Thumb encoded start of a Thumb function. */
3018
3019 #ifdef OBJ_COFF
3020 static symbolS *
3021 find_real_start (symbolS * symbolP)
3022 {
3023 char * real_start;
3024 const char * name = S_GET_NAME (symbolP);
3025 symbolS * new_target;
3026
3027 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
3028 #define STUB_NAME ".real_start_of"
3029
3030 if (name == NULL)
3031 abort ();
3032
3033 /* The compiler may generate BL instructions to local labels because
3034 it needs to perform a branch to a far away location. These labels
3035 do not have a corresponding ".real_start_of" label. We check
3036 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
3037 the ".real_start_of" convention for nonlocal branches. */
3038 if (S_IS_LOCAL (symbolP) || name[0] == '.')
3039 return symbolP;
3040
3041 real_start = concat (STUB_NAME, name, NULL);
3042 new_target = symbol_find (real_start);
3043 free (real_start);
3044
3045 if (new_target == NULL)
3046 {
3047 as_warn (_("Failed to find real start of function: %s\n"), name);
3048 new_target = symbolP;
3049 }
3050
3051 return new_target;
3052 }
3053 #endif
3054
3055 static void
3056 opcode_select (int width)
3057 {
3058 switch (width)
3059 {
3060 case 16:
3061 if (! thumb_mode)
3062 {
3063 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
3064 as_bad (_("selected processor does not support THUMB opcodes"));
3065
3066 thumb_mode = 1;
3067 /* No need to force the alignment, since we will have been
3068 coming from ARM mode, which is word-aligned. */
3069 record_alignment (now_seg, 1);
3070 }
3071 break;
3072
3073 case 32:
3074 if (thumb_mode)
3075 {
3076 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
3077 as_bad (_("selected processor does not support ARM opcodes"));
3078
3079 thumb_mode = 0;
3080
3081 if (!need_pass_2)
3082 frag_align (2, 0, 0);
3083
3084 record_alignment (now_seg, 1);
3085 }
3086 break;
3087
3088 default:
3089 as_bad (_("invalid instruction size selected (%d)"), width);
3090 }
3091 }
3092
3093 static void
3094 s_arm (int ignore ATTRIBUTE_UNUSED)
3095 {
3096 opcode_select (32);
3097 demand_empty_rest_of_line ();
3098 }
3099
3100 static void
3101 s_thumb (int ignore ATTRIBUTE_UNUSED)
3102 {
3103 opcode_select (16);
3104 demand_empty_rest_of_line ();
3105 }
3106
3107 static void
3108 s_code (int unused ATTRIBUTE_UNUSED)
3109 {
3110 int temp;
3111
3112 temp = get_absolute_expression ();
3113 switch (temp)
3114 {
3115 case 16:
3116 case 32:
3117 opcode_select (temp);
3118 break;
3119
3120 default:
3121 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
3122 }
3123 }
3124
3125 static void
3126 s_force_thumb (int ignore ATTRIBUTE_UNUSED)
3127 {
3128 /* If we are not already in thumb mode go into it, EVEN if
3129 the target processor does not support thumb instructions.
3130 This is used by gcc/config/arm/lib1funcs.asm for example
3131 to compile interworking support functions even if the
3132 target processor should not support interworking. */
3133 if (! thumb_mode)
3134 {
3135 thumb_mode = 2;
3136 record_alignment (now_seg, 1);
3137 }
3138
3139 demand_empty_rest_of_line ();
3140 }
3141
3142 static void
3143 s_thumb_func (int ignore ATTRIBUTE_UNUSED)
3144 {
3145 s_thumb (0);
3146
3147 /* The following label is the name/address of the start of a Thumb function.
3148 We need to know this for the interworking support. */
3149 label_is_thumb_function_name = TRUE;
3150 }
3151
3152 /* Perform a .set directive, but also mark the alias as
3153 being a thumb function. */
3154
3155 static void
3156 s_thumb_set (int equiv)
3157 {
3158 /* XXX the following is a duplicate of the code for s_set() in read.c
3159 We cannot just call that code as we need to get at the symbol that
3160 is created. */
3161 char * name;
3162 char delim;
3163 char * end_name;
3164 symbolS * symbolP;
3165
3166 /* Especial apologies for the random logic:
3167 This just grew, and could be parsed much more simply!
3168 Dean - in haste. */
3169 delim = get_symbol_name (& name);
3170 end_name = input_line_pointer;
3171 (void) restore_line_pointer (delim);
3172
3173 if (*input_line_pointer != ',')
3174 {
3175 *end_name = 0;
3176 as_bad (_("expected comma after name \"%s\""), name);
3177 *end_name = delim;
3178 ignore_rest_of_line ();
3179 return;
3180 }
3181
3182 input_line_pointer++;
3183 *end_name = 0;
3184
3185 if (name[0] == '.' && name[1] == '\0')
3186 {
3187 /* XXX - this should not happen to .thumb_set. */
3188 abort ();
3189 }
3190
3191 if ((symbolP = symbol_find (name)) == NULL
3192 && (symbolP = md_undefined_symbol (name)) == NULL)
3193 {
3194 #ifndef NO_LISTING
3195 /* When doing symbol listings, play games with dummy fragments living
3196 outside the normal fragment chain to record the file and line info
3197 for this symbol. */
3198 if (listing & LISTING_SYMBOLS)
3199 {
3200 extern struct list_info_struct * listing_tail;
3201 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
3202
3203 memset (dummy_frag, 0, sizeof (fragS));
3204 dummy_frag->fr_type = rs_fill;
3205 dummy_frag->line = listing_tail;
3206 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
3207 dummy_frag->fr_symbol = symbolP;
3208 }
3209 else
3210 #endif
3211 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
3212
3213 #ifdef OBJ_COFF
3214 /* "set" symbols are local unless otherwise specified. */
3215 SF_SET_LOCAL (symbolP);
3216 #endif /* OBJ_COFF */
3217 } /* Make a new symbol. */
3218
3219 symbol_table_insert (symbolP);
3220
3221 * end_name = delim;
3222
3223 if (equiv
3224 && S_IS_DEFINED (symbolP)
3225 && S_GET_SEGMENT (symbolP) != reg_section)
3226 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
3227
3228 pseudo_set (symbolP);
3229
3230 demand_empty_rest_of_line ();
3231
3232 /* XXX Now we come to the Thumb specific bit of code. */
3233
3234 THUMB_SET_FUNC (symbolP, 1);
3235 ARM_SET_THUMB (symbolP, 1);
3236 #if defined OBJ_ELF || defined OBJ_COFF
3237 ARM_SET_INTERWORK (symbolP, support_interwork);
3238 #endif
3239 }
3240
3241 /* Directives: Mode selection. */
3242
3243 /* .syntax [unified|divided] - choose the new unified syntax
3244 (same for Arm and Thumb encoding, modulo slight differences in what
3245 can be represented) or the old divergent syntax for each mode. */
3246 static void
3247 s_syntax (int unused ATTRIBUTE_UNUSED)
3248 {
3249 char *name, delim;
3250
3251 delim = get_symbol_name (& name);
3252
3253 if (!strcasecmp (name, "unified"))
3254 unified_syntax = TRUE;
3255 else if (!strcasecmp (name, "divided"))
3256 unified_syntax = FALSE;
3257 else
3258 {
3259 as_bad (_("unrecognized syntax mode \"%s\""), name);
3260 return;
3261 }
3262 (void) restore_line_pointer (delim);
3263 demand_empty_rest_of_line ();
3264 }
3265
3266 /* Directives: sectioning and alignment. */
3267
3268 static void
3269 s_bss (int ignore ATTRIBUTE_UNUSED)
3270 {
3271 /* We don't support putting frags in the BSS segment, we fake it by
3272 marking in_bss, then looking at s_skip for clues. */
3273 subseg_set (bss_section, 0);
3274 demand_empty_rest_of_line ();
3275
3276 #ifdef md_elf_section_change_hook
3277 md_elf_section_change_hook ();
3278 #endif
3279 }
3280
3281 static void
3282 s_even (int ignore ATTRIBUTE_UNUSED)
3283 {
3284 /* Never make frag if expect extra pass. */
3285 if (!need_pass_2)
3286 frag_align (1, 0, 0);
3287
3288 record_alignment (now_seg, 1);
3289
3290 demand_empty_rest_of_line ();
3291 }
3292
3293 /* Directives: CodeComposer Studio. */
3294
3295 /* .ref (for CodeComposer Studio syntax only). */
3296 static void
3297 s_ccs_ref (int unused ATTRIBUTE_UNUSED)
3298 {
3299 if (codecomposer_syntax)
3300 ignore_rest_of_line ();
3301 else
3302 as_bad (_(".ref pseudo-op only available with -mccs flag."));
3303 }
3304
3305 /* If name is not NULL, then it is used for marking the beginning of a
3306 function, whereas if it is NULL then it means the function end. */
3307 static void
3308 asmfunc_debug (const char * name)
3309 {
3310 static const char * last_name = NULL;
3311
3312 if (name != NULL)
3313 {
3314 gas_assert (last_name == NULL);
3315 last_name = name;
3316
3317 if (debug_type == DEBUG_STABS)
3318 stabs_generate_asm_func (name, name);
3319 }
3320 else
3321 {
3322 gas_assert (last_name != NULL);
3323
3324 if (debug_type == DEBUG_STABS)
3325 stabs_generate_asm_endfunc (last_name, last_name);
3326
3327 last_name = NULL;
3328 }
3329 }
3330
3331 static void
3332 s_ccs_asmfunc (int unused ATTRIBUTE_UNUSED)
3333 {
3334 if (codecomposer_syntax)
3335 {
3336 switch (asmfunc_state)
3337 {
3338 case OUTSIDE_ASMFUNC:
3339 asmfunc_state = WAITING_ASMFUNC_NAME;
3340 break;
3341
3342 case WAITING_ASMFUNC_NAME:
3343 as_bad (_(".asmfunc repeated."));
3344 break;
3345
3346 case WAITING_ENDASMFUNC:
3347 as_bad (_(".asmfunc without function."));
3348 break;
3349 }
3350 demand_empty_rest_of_line ();
3351 }
3352 else
3353 as_bad (_(".asmfunc pseudo-op only available with -mccs flag."));
3354 }
3355
3356 static void
3357 s_ccs_endasmfunc (int unused ATTRIBUTE_UNUSED)
3358 {
3359 if (codecomposer_syntax)
3360 {
3361 switch (asmfunc_state)
3362 {
3363 case OUTSIDE_ASMFUNC:
3364 as_bad (_(".endasmfunc without a .asmfunc."));
3365 break;
3366
3367 case WAITING_ASMFUNC_NAME:
3368 as_bad (_(".endasmfunc without function."));
3369 break;
3370
3371 case WAITING_ENDASMFUNC:
3372 asmfunc_state = OUTSIDE_ASMFUNC;
3373 asmfunc_debug (NULL);
3374 break;
3375 }
3376 demand_empty_rest_of_line ();
3377 }
3378 else
3379 as_bad (_(".endasmfunc pseudo-op only available with -mccs flag."));
3380 }
3381
3382 static void
3383 s_ccs_def (int name)
3384 {
3385 if (codecomposer_syntax)
3386 s_globl (name);
3387 else
3388 as_bad (_(".def pseudo-op only available with -mccs flag."));
3389 }
3390
3391 /* Directives: Literal pools. */
3392
3393 static literal_pool *
3394 find_literal_pool (void)
3395 {
3396 literal_pool * pool;
3397
3398 for (pool = list_of_pools; pool != NULL; pool = pool->next)
3399 {
3400 if (pool->section == now_seg
3401 && pool->sub_section == now_subseg)
3402 break;
3403 }
3404
3405 return pool;
3406 }
3407
3408 static literal_pool *
3409 find_or_make_literal_pool (void)
3410 {
3411 /* Next literal pool ID number. */
3412 static unsigned int latest_pool_num = 1;
3413 literal_pool * pool;
3414
3415 pool = find_literal_pool ();
3416
3417 if (pool == NULL)
3418 {
3419 /* Create a new pool. */
3420 pool = XNEW (literal_pool);
3421 if (! pool)
3422 return NULL;
3423
3424 pool->next_free_entry = 0;
3425 pool->section = now_seg;
3426 pool->sub_section = now_subseg;
3427 pool->next = list_of_pools;
3428 pool->symbol = NULL;
3429 pool->alignment = 2;
3430
3431 /* Add it to the list. */
3432 list_of_pools = pool;
3433 }
3434
3435 /* New pools, and emptied pools, will have a NULL symbol. */
3436 if (pool->symbol == NULL)
3437 {
3438 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3439 (valueT) 0, &zero_address_frag);
3440 pool->id = latest_pool_num ++;
3441 }
3442
3443 /* Done. */
3444 return pool;
3445 }
3446
3447 /* Add the literal in the global 'inst'
3448 structure to the relevant literal pool. */
3449
3450 static int
3451 add_to_lit_pool (unsigned int nbytes)
3452 {
3453 #define PADDING_SLOT 0x1
3454 #define LIT_ENTRY_SIZE_MASK 0xFF
3455 literal_pool * pool;
3456 unsigned int entry, pool_size = 0;
3457 bfd_boolean padding_slot_p = FALSE;
3458 unsigned imm1 = 0;
3459 unsigned imm2 = 0;
3460
3461 if (nbytes == 8)
3462 {
3463 imm1 = inst.operands[1].imm;
3464 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3465 : inst.relocs[0].exp.X_unsigned ? 0
3466 : ((bfd_int64_t) inst.operands[1].imm) >> 32);
3467 if (target_big_endian)
3468 {
3469 imm1 = imm2;
3470 imm2 = inst.operands[1].imm;
3471 }
3472 }
3473
3474 pool = find_or_make_literal_pool ();
3475
3476 /* Check if this literal value is already in the pool. */
3477 for (entry = 0; entry < pool->next_free_entry; entry ++)
3478 {
3479 if (nbytes == 4)
3480 {
3481 if ((pool->literals[entry].X_op == inst.relocs[0].exp.X_op)
3482 && (inst.relocs[0].exp.X_op == O_constant)
3483 && (pool->literals[entry].X_add_number
3484 == inst.relocs[0].exp.X_add_number)
3485 && (pool->literals[entry].X_md == nbytes)
3486 && (pool->literals[entry].X_unsigned
3487 == inst.relocs[0].exp.X_unsigned))
3488 break;
3489
3490 if ((pool->literals[entry].X_op == inst.relocs[0].exp.X_op)
3491 && (inst.relocs[0].exp.X_op == O_symbol)
3492 && (pool->literals[entry].X_add_number
3493 == inst.relocs[0].exp.X_add_number)
3494 && (pool->literals[entry].X_add_symbol
3495 == inst.relocs[0].exp.X_add_symbol)
3496 && (pool->literals[entry].X_op_symbol
3497 == inst.relocs[0].exp.X_op_symbol)
3498 && (pool->literals[entry].X_md == nbytes))
3499 break;
3500 }
3501 else if ((nbytes == 8)
3502 && !(pool_size & 0x7)
3503 && ((entry + 1) != pool->next_free_entry)
3504 && (pool->literals[entry].X_op == O_constant)
3505 && (pool->literals[entry].X_add_number == (offsetT) imm1)
3506 && (pool->literals[entry].X_unsigned
3507 == inst.relocs[0].exp.X_unsigned)
3508 && (pool->literals[entry + 1].X_op == O_constant)
3509 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
3510 && (pool->literals[entry + 1].X_unsigned
3511 == inst.relocs[0].exp.X_unsigned))
3512 break;
3513
3514 padding_slot_p = ((pool->literals[entry].X_md >> 8) == PADDING_SLOT);
3515 if (padding_slot_p && (nbytes == 4))
3516 break;
3517
3518 pool_size += 4;
3519 }
3520
3521 /* Do we need to create a new entry? */
3522 if (entry == pool->next_free_entry)
3523 {
3524 if (entry >= MAX_LITERAL_POOL_SIZE)
3525 {
3526 inst.error = _("literal pool overflow");
3527 return FAIL;
3528 }
3529
3530 if (nbytes == 8)
3531 {
3532 /* For 8-byte entries, we align to an 8-byte boundary,
3533 and split it into two 4-byte entries, because on 32-bit
3534 host, 8-byte constants are treated as big num, thus
3535 saved in "generic_bignum" which will be overwritten
3536 by later assignments.
3537
3538 We also need to make sure there is enough space for
3539 the split.
3540
3541 We also check to make sure the literal operand is a
3542 constant number. */
3543 if (!(inst.relocs[0].exp.X_op == O_constant
3544 || inst.relocs[0].exp.X_op == O_big))
3545 {
3546 inst.error = _("invalid type for literal pool");
3547 return FAIL;
3548 }
3549 else if (pool_size & 0x7)
3550 {
3551 if ((entry + 2) >= MAX_LITERAL_POOL_SIZE)
3552 {
3553 inst.error = _("literal pool overflow");
3554 return FAIL;
3555 }
3556
3557 pool->literals[entry] = inst.relocs[0].exp;
3558 pool->literals[entry].X_op = O_constant;
3559 pool->literals[entry].X_add_number = 0;
3560 pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
3561 pool->next_free_entry += 1;
3562 pool_size += 4;
3563 }
3564 else if ((entry + 1) >= MAX_LITERAL_POOL_SIZE)
3565 {
3566 inst.error = _("literal pool overflow");
3567 return FAIL;
3568 }
3569
3570 pool->literals[entry] = inst.relocs[0].exp;
3571 pool->literals[entry].X_op = O_constant;
3572 pool->literals[entry].X_add_number = imm1;
3573 pool->literals[entry].X_unsigned = inst.relocs[0].exp.X_unsigned;
3574 pool->literals[entry++].X_md = 4;
3575 pool->literals[entry] = inst.relocs[0].exp;
3576 pool->literals[entry].X_op = O_constant;
3577 pool->literals[entry].X_add_number = imm2;
3578 pool->literals[entry].X_unsigned = inst.relocs[0].exp.X_unsigned;
3579 pool->literals[entry].X_md = 4;
3580 pool->alignment = 3;
3581 pool->next_free_entry += 1;
3582 }
3583 else
3584 {
3585 pool->literals[entry] = inst.relocs[0].exp;
3586 pool->literals[entry].X_md = 4;
3587 }
3588
3589 #ifdef OBJ_ELF
3590 /* PR ld/12974: Record the location of the first source line to reference
3591 this entry in the literal pool. If it turns out during linking that the
3592 symbol does not exist we will be able to give an accurate line number for
3593 the (first use of the) missing reference. */
3594 if (debug_type == DEBUG_DWARF2)
3595 dwarf2_where (pool->locs + entry);
3596 #endif
3597 pool->next_free_entry += 1;
3598 }
3599 else if (padding_slot_p)
3600 {
3601 pool->literals[entry] = inst.relocs[0].exp;
3602 pool->literals[entry].X_md = nbytes;
3603 }
3604
3605 inst.relocs[0].exp.X_op = O_symbol;
3606 inst.relocs[0].exp.X_add_number = pool_size;
3607 inst.relocs[0].exp.X_add_symbol = pool->symbol;
3608
3609 return SUCCESS;
3610 }
3611
3612 bfd_boolean
3613 tc_start_label_without_colon (void)
3614 {
3615 bfd_boolean ret = TRUE;
3616
3617 if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
3618 {
3619 const char *label = input_line_pointer;
3620
3621 while (!is_end_of_line[(int) label[-1]])
3622 --label;
3623
3624 if (*label == '.')
3625 {
3626 as_bad (_("Invalid label '%s'"), label);
3627 ret = FALSE;
3628 }
3629
3630 asmfunc_debug (label);
3631
3632 asmfunc_state = WAITING_ENDASMFUNC;
3633 }
3634
3635 return ret;
3636 }
3637
3638 /* Can't use symbol_new here, so have to create a symbol and then at
3639 a later date assign it a value. That's what these functions do. */
3640
3641 static void
3642 symbol_locate (symbolS * symbolP,
3643 const char * name, /* It is copied, the caller can modify. */
3644 segT segment, /* Segment identifier (SEG_<something>). */
3645 valueT valu, /* Symbol value. */
3646 fragS * frag) /* Associated fragment. */
3647 {
3648 size_t name_length;
3649 char * preserved_copy_of_name;
3650
3651 name_length = strlen (name) + 1; /* +1 for \0. */
3652 obstack_grow (&notes, name, name_length);
3653 preserved_copy_of_name = (char *) obstack_finish (&notes);
3654
3655 #ifdef tc_canonicalize_symbol_name
3656 preserved_copy_of_name =
3657 tc_canonicalize_symbol_name (preserved_copy_of_name);
3658 #endif
3659
3660 S_SET_NAME (symbolP, preserved_copy_of_name);
3661
3662 S_SET_SEGMENT (symbolP, segment);
3663 S_SET_VALUE (symbolP, valu);
3664 symbol_clear_list_pointers (symbolP);
3665
3666 symbol_set_frag (symbolP, frag);
3667
3668 /* Link to end of symbol chain. */
3669 {
3670 extern int symbol_table_frozen;
3671
3672 if (symbol_table_frozen)
3673 abort ();
3674 }
3675
3676 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
3677
3678 obj_symbol_new_hook (symbolP);
3679
3680 #ifdef tc_symbol_new_hook
3681 tc_symbol_new_hook (symbolP);
3682 #endif
3683
3684 #ifdef DEBUG_SYMS
3685 verify_symbol_chain (symbol_rootP, symbol_lastP);
3686 #endif /* DEBUG_SYMS */
3687 }
3688
3689 static void
3690 s_ltorg (int ignored ATTRIBUTE_UNUSED)
3691 {
3692 unsigned int entry;
3693 literal_pool * pool;
3694 char sym_name[20];
3695
3696 pool = find_literal_pool ();
3697 if (pool == NULL
3698 || pool->symbol == NULL
3699 || pool->next_free_entry == 0)
3700 return;
3701
3702 /* Align pool as you have word accesses.
3703 Only make a frag if we have to. */
3704 if (!need_pass_2)
3705 frag_align (pool->alignment, 0, 0);
3706
3707 record_alignment (now_seg, 2);
3708
3709 #ifdef OBJ_ELF
3710 seg_info (now_seg)->tc_segment_info_data.mapstate = MAP_DATA;
3711 make_mapping_symbol (MAP_DATA, (valueT) frag_now_fix (), frag_now);
3712 #endif
3713 sprintf (sym_name, "$$lit_\002%x", pool->id);
3714
3715 symbol_locate (pool->symbol, sym_name, now_seg,
3716 (valueT) frag_now_fix (), frag_now);
3717 symbol_table_insert (pool->symbol);
3718
3719 ARM_SET_THUMB (pool->symbol, thumb_mode);
3720
3721 #if defined OBJ_COFF || defined OBJ_ELF
3722 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3723 #endif
3724
3725 for (entry = 0; entry < pool->next_free_entry; entry ++)
3726 {
3727 #ifdef OBJ_ELF
3728 if (debug_type == DEBUG_DWARF2)
3729 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3730 #endif
3731 /* First output the expression in the instruction to the pool. */
3732 emit_expr (&(pool->literals[entry]),
3733 pool->literals[entry].X_md & LIT_ENTRY_SIZE_MASK);
3734 }
3735
3736 /* Mark the pool as empty. */
3737 pool->next_free_entry = 0;
3738 pool->symbol = NULL;
3739 }
3740
3741 #ifdef OBJ_ELF
3742 /* Forward declarations for functions below, in the MD interface
3743 section. */
3744 static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3745 static valueT create_unwind_entry (int);
3746 static void start_unwind_section (const segT, int);
3747 static void add_unwind_opcode (valueT, int);
3748 static void flush_pending_unwind (void);
3749
3750 /* Directives: Data. */
3751
3752 static void
3753 s_arm_elf_cons (int nbytes)
3754 {
3755 expressionS exp;
3756
3757 #ifdef md_flush_pending_output
3758 md_flush_pending_output ();
3759 #endif
3760
3761 if (is_it_end_of_statement ())
3762 {
3763 demand_empty_rest_of_line ();
3764 return;
3765 }
3766
3767 #ifdef md_cons_align
3768 md_cons_align (nbytes);
3769 #endif
3770
3771 mapping_state (MAP_DATA);
3772 do
3773 {
3774 int reloc;
3775 char *base = input_line_pointer;
3776
3777 expression (& exp);
3778
3779 if (exp.X_op != O_symbol)
3780 emit_expr (&exp, (unsigned int) nbytes);
3781 else
3782 {
3783 char *before_reloc = input_line_pointer;
3784 reloc = parse_reloc (&input_line_pointer);
3785 if (reloc == -1)
3786 {
3787 as_bad (_("unrecognized relocation suffix"));
3788 ignore_rest_of_line ();
3789 return;
3790 }
3791 else if (reloc == BFD_RELOC_UNUSED)
3792 emit_expr (&exp, (unsigned int) nbytes);
3793 else
3794 {
3795 reloc_howto_type *howto = (reloc_howto_type *)
3796 bfd_reloc_type_lookup (stdoutput,
3797 (bfd_reloc_code_real_type) reloc);
3798 int size = bfd_get_reloc_size (howto);
3799
3800 if (reloc == BFD_RELOC_ARM_PLT32)
3801 {
3802 as_bad (_("(plt) is only valid on branch targets"));
3803 reloc = BFD_RELOC_UNUSED;
3804 size = 0;
3805 }
3806
3807 if (size > nbytes)
3808 as_bad (ngettext ("%s relocations do not fit in %d byte",
3809 "%s relocations do not fit in %d bytes",
3810 nbytes),
3811 howto->name, nbytes);
3812 else
3813 {
3814 /* We've parsed an expression stopping at O_symbol.
3815 But there may be more expression left now that we
3816 have parsed the relocation marker. Parse it again.
3817 XXX Surely there is a cleaner way to do this. */
3818 char *p = input_line_pointer;
3819 int offset;
3820 char *save_buf = XNEWVEC (char, input_line_pointer - base);
3821
3822 memcpy (save_buf, base, input_line_pointer - base);
3823 memmove (base + (input_line_pointer - before_reloc),
3824 base, before_reloc - base);
3825
3826 input_line_pointer = base + (input_line_pointer-before_reloc);
3827 expression (&exp);
3828 memcpy (base, save_buf, p - base);
3829
3830 offset = nbytes - size;
3831 p = frag_more (nbytes);
3832 memset (p, 0, nbytes);
3833 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
3834 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
3835 free (save_buf);
3836 }
3837 }
3838 }
3839 }
3840 while (*input_line_pointer++ == ',');
3841
3842 /* Put terminator back into stream. */
3843 input_line_pointer --;
3844 demand_empty_rest_of_line ();
3845 }
3846
3847 /* Emit an expression containing a 32-bit thumb instruction.
3848 Implementation based on put_thumb32_insn. */
3849
3850 static void
3851 emit_thumb32_expr (expressionS * exp)
3852 {
3853 expressionS exp_high = *exp;
3854
3855 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3856 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3857 exp->X_add_number &= 0xffff;
3858 emit_expr (exp, (unsigned int) THUMB_SIZE);
3859 }
3860
3861 /* Guess the instruction size based on the opcode. */
3862
3863 static int
3864 thumb_insn_size (int opcode)
3865 {
3866 if ((unsigned int) opcode < 0xe800u)
3867 return 2;
3868 else if ((unsigned int) opcode >= 0xe8000000u)
3869 return 4;
3870 else
3871 return 0;
3872 }
3873
3874 static bfd_boolean
3875 emit_insn (expressionS *exp, int nbytes)
3876 {
3877 int size = 0;
3878
3879 if (exp->X_op == O_constant)
3880 {
3881 size = nbytes;
3882
3883 if (size == 0)
3884 size = thumb_insn_size (exp->X_add_number);
3885
3886 if (size != 0)
3887 {
3888 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3889 {
3890 as_bad (_(".inst.n operand too big. "\
3891 "Use .inst.w instead"));
3892 size = 0;
3893 }
3894 else
3895 {
3896 if (now_pred.state == AUTOMATIC_PRED_BLOCK)
3897 set_pred_insn_type_nonvoid (OUTSIDE_PRED_INSN, 0);
3898 else
3899 set_pred_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3900
3901 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3902 emit_thumb32_expr (exp);
3903 else
3904 emit_expr (exp, (unsigned int) size);
3905
3906 it_fsm_post_encode ();
3907 }
3908 }
3909 else
3910 as_bad (_("cannot determine Thumb instruction size. " \
3911 "Use .inst.n/.inst.w instead"));
3912 }
3913 else
3914 as_bad (_("constant expression required"));
3915
3916 return (size != 0);
3917 }
3918
3919 /* Like s_arm_elf_cons but do not use md_cons_align and
3920 set the mapping state to MAP_ARM/MAP_THUMB. */
3921
3922 static void
3923 s_arm_elf_inst (int nbytes)
3924 {
3925 if (is_it_end_of_statement ())
3926 {
3927 demand_empty_rest_of_line ();
3928 return;
3929 }
3930
3931 /* Calling mapping_state () here will not change ARM/THUMB,
3932 but will ensure not to be in DATA state. */
3933
3934 if (thumb_mode)
3935 mapping_state (MAP_THUMB);
3936 else
3937 {
3938 if (nbytes != 0)
3939 {
3940 as_bad (_("width suffixes are invalid in ARM mode"));
3941 ignore_rest_of_line ();
3942 return;
3943 }
3944
3945 nbytes = 4;
3946
3947 mapping_state (MAP_ARM);
3948 }
3949
3950 do
3951 {
3952 expressionS exp;
3953
3954 expression (& exp);
3955
3956 if (! emit_insn (& exp, nbytes))
3957 {
3958 ignore_rest_of_line ();
3959 return;
3960 }
3961 }
3962 while (*input_line_pointer++ == ',');
3963
3964 /* Put terminator back into stream. */
3965 input_line_pointer --;
3966 demand_empty_rest_of_line ();
3967 }
3968
3969 /* Parse a .rel31 directive. */
3970
3971 static void
3972 s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3973 {
3974 expressionS exp;
3975 char *p;
3976 valueT highbit;
3977
3978 highbit = 0;
3979 if (*input_line_pointer == '1')
3980 highbit = 0x80000000;
3981 else if (*input_line_pointer != '0')
3982 as_bad (_("expected 0 or 1"));
3983
3984 input_line_pointer++;
3985 if (*input_line_pointer != ',')
3986 as_bad (_("missing comma"));
3987 input_line_pointer++;
3988
3989 #ifdef md_flush_pending_output
3990 md_flush_pending_output ();
3991 #endif
3992
3993 #ifdef md_cons_align
3994 md_cons_align (4);
3995 #endif
3996
3997 mapping_state (MAP_DATA);
3998
3999 expression (&exp);
4000
4001 p = frag_more (4);
4002 md_number_to_chars (p, highbit, 4);
4003 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
4004 BFD_RELOC_ARM_PREL31);
4005
4006 demand_empty_rest_of_line ();
4007 }
4008
4009 /* Directives: AEABI stack-unwind tables. */
4010
4011 /* Parse an unwind_fnstart directive. Simply records the current location. */
4012
4013 static void
4014 s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
4015 {
4016 demand_empty_rest_of_line ();
4017 if (unwind.proc_start)
4018 {
4019 as_bad (_("duplicate .fnstart directive"));
4020 return;
4021 }
4022
4023 /* Mark the start of the function. */
4024 unwind.proc_start = expr_build_dot ();
4025
4026 /* Reset the rest of the unwind info. */
4027 unwind.opcode_count = 0;
4028 unwind.table_entry = NULL;
4029 unwind.personality_routine = NULL;
4030 unwind.personality_index = -1;
4031 unwind.frame_size = 0;
4032 unwind.fp_offset = 0;
4033 unwind.fp_reg = REG_SP;
4034 unwind.fp_used = 0;
4035 unwind.sp_restored = 0;
4036 }
4037
4038
4039 /* Parse a handlerdata directive. Creates the exception handling table entry
4040 for the function. */
4041
4042 static void
4043 s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
4044 {
4045 demand_empty_rest_of_line ();
4046 if (!unwind.proc_start)
4047 as_bad (MISSING_FNSTART);
4048
4049 if (unwind.table_entry)
4050 as_bad (_("duplicate .handlerdata directive"));
4051
4052 create_unwind_entry (1);
4053 }
4054
4055 /* Parse an unwind_fnend directive. Generates the index table entry. */
4056
4057 static void
4058 s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
4059 {
4060 long where;
4061 char *ptr;
4062 valueT val;
4063 unsigned int marked_pr_dependency;
4064
4065 demand_empty_rest_of_line ();
4066
4067 if (!unwind.proc_start)
4068 {
4069 as_bad (_(".fnend directive without .fnstart"));
4070 return;
4071 }
4072
4073 /* Add eh table entry. */
4074 if (unwind.table_entry == NULL)
4075 val = create_unwind_entry (0);
4076 else
4077 val = 0;
4078
4079 /* Add index table entry. This is two words. */
4080 start_unwind_section (unwind.saved_seg, 1);
4081 frag_align (2, 0, 0);
4082 record_alignment (now_seg, 2);
4083
4084 ptr = frag_more (8);
4085 memset (ptr, 0, 8);
4086 where = frag_now_fix () - 8;
4087
4088 /* Self relative offset of the function start. */
4089 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
4090 BFD_RELOC_ARM_PREL31);
4091
4092 /* Indicate dependency on EHABI-defined personality routines to the
4093 linker, if it hasn't been done already. */
4094 marked_pr_dependency
4095 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
4096 if (unwind.personality_index >= 0 && unwind.personality_index < 3
4097 && !(marked_pr_dependency & (1 << unwind.personality_index)))
4098 {
4099 static const char *const name[] =
4100 {
4101 "__aeabi_unwind_cpp_pr0",
4102 "__aeabi_unwind_cpp_pr1",
4103 "__aeabi_unwind_cpp_pr2"
4104 };
4105 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
4106 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
4107 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
4108 |= 1 << unwind.personality_index;
4109 }
4110
4111 if (val)
4112 /* Inline exception table entry. */
4113 md_number_to_chars (ptr + 4, val, 4);
4114 else
4115 /* Self relative offset of the table entry. */
4116 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
4117 BFD_RELOC_ARM_PREL31);
4118
4119 /* Restore the original section. */
4120 subseg_set (unwind.saved_seg, unwind.saved_subseg);
4121
4122 unwind.proc_start = NULL;
4123 }
4124
4125
4126 /* Parse an unwind_cantunwind directive. */
4127
4128 static void
4129 s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
4130 {
4131 demand_empty_rest_of_line ();
4132 if (!unwind.proc_start)
4133 as_bad (MISSING_FNSTART);
4134
4135 if (unwind.personality_routine || unwind.personality_index != -1)
4136 as_bad (_("personality routine specified for cantunwind frame"));
4137
4138 unwind.personality_index = -2;
4139 }
4140
4141
4142 /* Parse a personalityindex directive. */
4143
4144 static void
4145 s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
4146 {
4147 expressionS exp;
4148
4149 if (!unwind.proc_start)
4150 as_bad (MISSING_FNSTART);
4151
4152 if (unwind.personality_routine || unwind.personality_index != -1)
4153 as_bad (_("duplicate .personalityindex directive"));
4154
4155 expression (&exp);
4156
4157 if (exp.X_op != O_constant
4158 || exp.X_add_number < 0 || exp.X_add_number > 15)
4159 {
4160 as_bad (_("bad personality routine number"));
4161 ignore_rest_of_line ();
4162 return;
4163 }
4164
4165 unwind.personality_index = exp.X_add_number;
4166
4167 demand_empty_rest_of_line ();
4168 }
4169
4170
4171 /* Parse a personality directive. */
4172
4173 static void
4174 s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
4175 {
4176 char *name, *p, c;
4177
4178 if (!unwind.proc_start)
4179 as_bad (MISSING_FNSTART);
4180
4181 if (unwind.personality_routine || unwind.personality_index != -1)
4182 as_bad (_("duplicate .personality directive"));
4183
4184 c = get_symbol_name (& name);
4185 p = input_line_pointer;
4186 if (c == '"')
4187 ++ input_line_pointer;
4188 unwind.personality_routine = symbol_find_or_make (name);
4189 *p = c;
4190 demand_empty_rest_of_line ();
4191 }
4192
4193
4194 /* Parse a directive saving core registers. */
4195
4196 static void
4197 s_arm_unwind_save_core (void)
4198 {
4199 valueT op;
4200 long range;
4201 int n;
4202
4203 range = parse_reg_list (&input_line_pointer, REGLIST_RN);
4204 if (range == FAIL)
4205 {
4206 as_bad (_("expected register list"));
4207 ignore_rest_of_line ();
4208 return;
4209 }
4210
4211 demand_empty_rest_of_line ();
4212
4213 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
4214 into .unwind_save {..., sp...}. We aren't bothered about the value of
4215 ip because it is clobbered by calls. */
4216 if (unwind.sp_restored && unwind.fp_reg == 12
4217 && (range & 0x3000) == 0x1000)
4218 {
4219 unwind.opcode_count--;
4220 unwind.sp_restored = 0;
4221 range = (range | 0x2000) & ~0x1000;
4222 unwind.pending_offset = 0;
4223 }
4224
4225 /* Pop r4-r15. */
4226 if (range & 0xfff0)
4227 {
4228 /* See if we can use the short opcodes. These pop a block of up to 8
4229 registers starting with r4, plus maybe r14. */
4230 for (n = 0; n < 8; n++)
4231 {
4232 /* Break at the first non-saved register. */
4233 if ((range & (1 << (n + 4))) == 0)
4234 break;
4235 }
4236 /* See if there are any other bits set. */
4237 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
4238 {
4239 /* Use the long form. */
4240 op = 0x8000 | ((range >> 4) & 0xfff);
4241 add_unwind_opcode (op, 2);
4242 }
4243 else
4244 {
4245 /* Use the short form. */
4246 if (range & 0x4000)
4247 op = 0xa8; /* Pop r14. */
4248 else
4249 op = 0xa0; /* Do not pop r14. */
4250 op |= (n - 1);
4251 add_unwind_opcode (op, 1);
4252 }
4253 }
4254
4255 /* Pop r0-r3. */
4256 if (range & 0xf)
4257 {
4258 op = 0xb100 | (range & 0xf);
4259 add_unwind_opcode (op, 2);
4260 }
4261
4262 /* Record the number of bytes pushed. */
4263 for (n = 0; n < 16; n++)
4264 {
4265 if (range & (1 << n))
4266 unwind.frame_size += 4;
4267 }
4268 }
4269
4270
4271 /* Parse a directive saving FPA registers. */
4272
4273 static void
4274 s_arm_unwind_save_fpa (int reg)
4275 {
4276 expressionS exp;
4277 int num_regs;
4278 valueT op;
4279
4280 /* Get Number of registers to transfer. */
4281 if (skip_past_comma (&input_line_pointer) != FAIL)
4282 expression (&exp);
4283 else
4284 exp.X_op = O_illegal;
4285
4286 if (exp.X_op != O_constant)
4287 {
4288 as_bad (_("expected , <constant>"));
4289 ignore_rest_of_line ();
4290 return;
4291 }
4292
4293 num_regs = exp.X_add_number;
4294
4295 if (num_regs < 1 || num_regs > 4)
4296 {
4297 as_bad (_("number of registers must be in the range [1:4]"));
4298 ignore_rest_of_line ();
4299 return;
4300 }
4301
4302 demand_empty_rest_of_line ();
4303
4304 if (reg == 4)
4305 {
4306 /* Short form. */
4307 op = 0xb4 | (num_regs - 1);
4308 add_unwind_opcode (op, 1);
4309 }
4310 else
4311 {
4312 /* Long form. */
4313 op = 0xc800 | (reg << 4) | (num_regs - 1);
4314 add_unwind_opcode (op, 2);
4315 }
4316 unwind.frame_size += num_regs * 12;
4317 }
4318
4319
4320 /* Parse a directive saving VFP registers for ARMv6 and above. */
4321
4322 static void
4323 s_arm_unwind_save_vfp_armv6 (void)
4324 {
4325 int count;
4326 unsigned int start;
4327 valueT op;
4328 int num_vfpv3_regs = 0;
4329 int num_regs_below_16;
4330 bfd_boolean partial_match;
4331
4332 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D,
4333 &partial_match);
4334 if (count == FAIL)
4335 {
4336 as_bad (_("expected register list"));
4337 ignore_rest_of_line ();
4338 return;
4339 }
4340
4341 demand_empty_rest_of_line ();
4342
4343 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
4344 than FSTMX/FLDMX-style ones). */
4345
4346 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
4347 if (start >= 16)
4348 num_vfpv3_regs = count;
4349 else if (start + count > 16)
4350 num_vfpv3_regs = start + count - 16;
4351
4352 if (num_vfpv3_regs > 0)
4353 {
4354 int start_offset = start > 16 ? start - 16 : 0;
4355 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
4356 add_unwind_opcode (op, 2);
4357 }
4358
4359 /* Generate opcode for registers numbered in the range 0 .. 15. */
4360 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
4361 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
4362 if (num_regs_below_16 > 0)
4363 {
4364 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
4365 add_unwind_opcode (op, 2);
4366 }
4367
4368 unwind.frame_size += count * 8;
4369 }
4370
4371
4372 /* Parse a directive saving VFP registers for pre-ARMv6. */
4373
4374 static void
4375 s_arm_unwind_save_vfp (void)
4376 {
4377 int count;
4378 unsigned int reg;
4379 valueT op;
4380 bfd_boolean partial_match;
4381
4382 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D,
4383 &partial_match);
4384 if (count == FAIL)
4385 {
4386 as_bad (_("expected register list"));
4387 ignore_rest_of_line ();
4388 return;
4389 }
4390
4391 demand_empty_rest_of_line ();
4392
4393 if (reg == 8)
4394 {
4395 /* Short form. */
4396 op = 0xb8 | (count - 1);
4397 add_unwind_opcode (op, 1);
4398 }
4399 else
4400 {
4401 /* Long form. */
4402 op = 0xb300 | (reg << 4) | (count - 1);
4403 add_unwind_opcode (op, 2);
4404 }
4405 unwind.frame_size += count * 8 + 4;
4406 }
4407
4408
4409 /* Parse a directive saving iWMMXt data registers. */
4410
4411 static void
4412 s_arm_unwind_save_mmxwr (void)
4413 {
4414 int reg;
4415 int hi_reg;
4416 int i;
4417 unsigned mask = 0;
4418 valueT op;
4419
4420 if (*input_line_pointer == '{')
4421 input_line_pointer++;
4422
4423 do
4424 {
4425 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
4426
4427 if (reg == FAIL)
4428 {
4429 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
4430 goto error;
4431 }
4432
4433 if (mask >> reg)
4434 as_tsktsk (_("register list not in ascending order"));
4435 mask |= 1 << reg;
4436
4437 if (*input_line_pointer == '-')
4438 {
4439 input_line_pointer++;
4440 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
4441 if (hi_reg == FAIL)
4442 {
4443 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
4444 goto error;
4445 }
4446 else if (reg >= hi_reg)
4447 {
4448 as_bad (_("bad register range"));
4449 goto error;
4450 }
4451 for (; reg < hi_reg; reg++)
4452 mask |= 1 << reg;
4453 }
4454 }
4455 while (skip_past_comma (&input_line_pointer) != FAIL);
4456
4457 skip_past_char (&input_line_pointer, '}');
4458
4459 demand_empty_rest_of_line ();
4460
4461 /* Generate any deferred opcodes because we're going to be looking at
4462 the list. */
4463 flush_pending_unwind ();
4464
4465 for (i = 0; i < 16; i++)
4466 {
4467 if (mask & (1 << i))
4468 unwind.frame_size += 8;
4469 }
4470
4471 /* Attempt to combine with a previous opcode. We do this because gcc
4472 likes to output separate unwind directives for a single block of
4473 registers. */
4474 if (unwind.opcode_count > 0)
4475 {
4476 i = unwind.opcodes[unwind.opcode_count - 1];
4477 if ((i & 0xf8) == 0xc0)
4478 {
4479 i &= 7;
4480 /* Only merge if the blocks are contiguous. */
4481 if (i < 6)
4482 {
4483 if ((mask & 0xfe00) == (1 << 9))
4484 {
4485 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
4486 unwind.opcode_count--;
4487 }
4488 }
4489 else if (i == 6 && unwind.opcode_count >= 2)
4490 {
4491 i = unwind.opcodes[unwind.opcode_count - 2];
4492 reg = i >> 4;
4493 i &= 0xf;
4494
4495 op = 0xffff << (reg - 1);
4496 if (reg > 0
4497 && ((mask & op) == (1u << (reg - 1))))
4498 {
4499 op = (1 << (reg + i + 1)) - 1;
4500 op &= ~((1 << reg) - 1);
4501 mask |= op;
4502 unwind.opcode_count -= 2;
4503 }
4504 }
4505 }
4506 }
4507
4508 hi_reg = 15;
4509 /* We want to generate opcodes in the order the registers have been
4510 saved, ie. descending order. */
4511 for (reg = 15; reg >= -1; reg--)
4512 {
4513 /* Save registers in blocks. */
4514 if (reg < 0
4515 || !(mask & (1 << reg)))
4516 {
4517 /* We found an unsaved reg. Generate opcodes to save the
4518 preceding block. */
4519 if (reg != hi_reg)
4520 {
4521 if (reg == 9)
4522 {
4523 /* Short form. */
4524 op = 0xc0 | (hi_reg - 10);
4525 add_unwind_opcode (op, 1);
4526 }
4527 else
4528 {
4529 /* Long form. */
4530 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4531 add_unwind_opcode (op, 2);
4532 }
4533 }
4534 hi_reg = reg - 1;
4535 }
4536 }
4537
4538 return;
4539 error:
4540 ignore_rest_of_line ();
4541 }
4542
4543 static void
4544 s_arm_unwind_save_mmxwcg (void)
4545 {
4546 int reg;
4547 int hi_reg;
4548 unsigned mask = 0;
4549 valueT op;
4550
4551 if (*input_line_pointer == '{')
4552 input_line_pointer++;
4553
4554 skip_whitespace (input_line_pointer);
4555
4556 do
4557 {
4558 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
4559
4560 if (reg == FAIL)
4561 {
4562 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
4563 goto error;
4564 }
4565
4566 reg -= 8;
4567 if (mask >> reg)
4568 as_tsktsk (_("register list not in ascending order"));
4569 mask |= 1 << reg;
4570
4571 if (*input_line_pointer == '-')
4572 {
4573 input_line_pointer++;
4574 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
4575 if (hi_reg == FAIL)
4576 {
4577 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
4578 goto error;
4579 }
4580 else if (reg >= hi_reg)
4581 {
4582 as_bad (_("bad register range"));
4583 goto error;
4584 }
4585 for (; reg < hi_reg; reg++)
4586 mask |= 1 << reg;
4587 }
4588 }
4589 while (skip_past_comma (&input_line_pointer) != FAIL);
4590
4591 skip_past_char (&input_line_pointer, '}');
4592
4593 demand_empty_rest_of_line ();
4594
4595 /* Generate any deferred opcodes because we're going to be looking at
4596 the list. */
4597 flush_pending_unwind ();
4598
4599 for (reg = 0; reg < 16; reg++)
4600 {
4601 if (mask & (1 << reg))
4602 unwind.frame_size += 4;
4603 }
4604 op = 0xc700 | mask;
4605 add_unwind_opcode (op, 2);
4606 return;
4607 error:
4608 ignore_rest_of_line ();
4609 }
4610
4611
4612 /* Parse an unwind_save directive.
4613 If the argument is non-zero, this is a .vsave directive. */
4614
4615 static void
4616 s_arm_unwind_save (int arch_v6)
4617 {
4618 char *peek;
4619 struct reg_entry *reg;
4620 bfd_boolean had_brace = FALSE;
4621
4622 if (!unwind.proc_start)
4623 as_bad (MISSING_FNSTART);
4624
4625 /* Figure out what sort of save we have. */
4626 peek = input_line_pointer;
4627
4628 if (*peek == '{')
4629 {
4630 had_brace = TRUE;
4631 peek++;
4632 }
4633
4634 reg = arm_reg_parse_multi (&peek);
4635
4636 if (!reg)
4637 {
4638 as_bad (_("register expected"));
4639 ignore_rest_of_line ();
4640 return;
4641 }
4642
4643 switch (reg->type)
4644 {
4645 case REG_TYPE_FN:
4646 if (had_brace)
4647 {
4648 as_bad (_("FPA .unwind_save does not take a register list"));
4649 ignore_rest_of_line ();
4650 return;
4651 }
4652 input_line_pointer = peek;
4653 s_arm_unwind_save_fpa (reg->number);
4654 return;
4655
4656 case REG_TYPE_RN:
4657 s_arm_unwind_save_core ();
4658 return;
4659
4660 case REG_TYPE_VFD:
4661 if (arch_v6)
4662 s_arm_unwind_save_vfp_armv6 ();
4663 else
4664 s_arm_unwind_save_vfp ();
4665 return;
4666
4667 case REG_TYPE_MMXWR:
4668 s_arm_unwind_save_mmxwr ();
4669 return;
4670
4671 case REG_TYPE_MMXWCG:
4672 s_arm_unwind_save_mmxwcg ();
4673 return;
4674
4675 default:
4676 as_bad (_(".unwind_save does not support this kind of register"));
4677 ignore_rest_of_line ();
4678 }
4679 }
4680
4681
4682 /* Parse an unwind_movsp directive. */
4683
4684 static void
4685 s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4686 {
4687 int reg;
4688 valueT op;
4689 int offset;
4690
4691 if (!unwind.proc_start)
4692 as_bad (MISSING_FNSTART);
4693
4694 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4695 if (reg == FAIL)
4696 {
4697 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
4698 ignore_rest_of_line ();
4699 return;
4700 }
4701
4702 /* Optional constant. */
4703 if (skip_past_comma (&input_line_pointer) != FAIL)
4704 {
4705 if (immediate_for_directive (&offset) == FAIL)
4706 return;
4707 }
4708 else
4709 offset = 0;
4710
4711 demand_empty_rest_of_line ();
4712
4713 if (reg == REG_SP || reg == REG_PC)
4714 {
4715 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
4716 return;
4717 }
4718
4719 if (unwind.fp_reg != REG_SP)
4720 as_bad (_("unexpected .unwind_movsp directive"));
4721
4722 /* Generate opcode to restore the value. */
4723 op = 0x90 | reg;
4724 add_unwind_opcode (op, 1);
4725
4726 /* Record the information for later. */
4727 unwind.fp_reg = reg;
4728 unwind.fp_offset = unwind.frame_size - offset;
4729 unwind.sp_restored = 1;
4730 }
4731
4732 /* Parse an unwind_pad directive. */
4733
4734 static void
4735 s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
4736 {
4737 int offset;
4738
4739 if (!unwind.proc_start)
4740 as_bad (MISSING_FNSTART);
4741
4742 if (immediate_for_directive (&offset) == FAIL)
4743 return;
4744
4745 if (offset & 3)
4746 {
4747 as_bad (_("stack increment must be multiple of 4"));
4748 ignore_rest_of_line ();
4749 return;
4750 }
4751
4752 /* Don't generate any opcodes, just record the details for later. */
4753 unwind.frame_size += offset;
4754 unwind.pending_offset += offset;
4755
4756 demand_empty_rest_of_line ();
4757 }
4758
4759 /* Parse an unwind_setfp directive. */
4760
4761 static void
4762 s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
4763 {
4764 int sp_reg;
4765 int fp_reg;
4766 int offset;
4767
4768 if (!unwind.proc_start)
4769 as_bad (MISSING_FNSTART);
4770
4771 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4772 if (skip_past_comma (&input_line_pointer) == FAIL)
4773 sp_reg = FAIL;
4774 else
4775 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4776
4777 if (fp_reg == FAIL || sp_reg == FAIL)
4778 {
4779 as_bad (_("expected <reg>, <reg>"));
4780 ignore_rest_of_line ();
4781 return;
4782 }
4783
4784 /* Optional constant. */
4785 if (skip_past_comma (&input_line_pointer) != FAIL)
4786 {
4787 if (immediate_for_directive (&offset) == FAIL)
4788 return;
4789 }
4790 else
4791 offset = 0;
4792
4793 demand_empty_rest_of_line ();
4794
4795 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
4796 {
4797 as_bad (_("register must be either sp or set by a previous"
4798 "unwind_movsp directive"));
4799 return;
4800 }
4801
4802 /* Don't generate any opcodes, just record the information for later. */
4803 unwind.fp_reg = fp_reg;
4804 unwind.fp_used = 1;
4805 if (sp_reg == REG_SP)
4806 unwind.fp_offset = unwind.frame_size - offset;
4807 else
4808 unwind.fp_offset -= offset;
4809 }
4810
4811 /* Parse an unwind_raw directive. */
4812
4813 static void
4814 s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
4815 {
4816 expressionS exp;
4817 /* This is an arbitrary limit. */
4818 unsigned char op[16];
4819 int count;
4820
4821 if (!unwind.proc_start)
4822 as_bad (MISSING_FNSTART);
4823
4824 expression (&exp);
4825 if (exp.X_op == O_constant
4826 && skip_past_comma (&input_line_pointer) != FAIL)
4827 {
4828 unwind.frame_size += exp.X_add_number;
4829 expression (&exp);
4830 }
4831 else
4832 exp.X_op = O_illegal;
4833
4834 if (exp.X_op != O_constant)
4835 {
4836 as_bad (_("expected <offset>, <opcode>"));
4837 ignore_rest_of_line ();
4838 return;
4839 }
4840
4841 count = 0;
4842
4843 /* Parse the opcode. */
4844 for (;;)
4845 {
4846 if (count >= 16)
4847 {
4848 as_bad (_("unwind opcode too long"));
4849 ignore_rest_of_line ();
4850 }
4851 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
4852 {
4853 as_bad (_("invalid unwind opcode"));
4854 ignore_rest_of_line ();
4855 return;
4856 }
4857 op[count++] = exp.X_add_number;
4858
4859 /* Parse the next byte. */
4860 if (skip_past_comma (&input_line_pointer) == FAIL)
4861 break;
4862
4863 expression (&exp);
4864 }
4865
4866 /* Add the opcode bytes in reverse order. */
4867 while (count--)
4868 add_unwind_opcode (op[count], 1);
4869
4870 demand_empty_rest_of_line ();
4871 }
4872
4873
4874 /* Parse a .eabi_attribute directive. */
4875
4876 static void
4877 s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4878 {
4879 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
4880
4881 if (tag >= 0 && tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4882 attributes_set_explicitly[tag] = 1;
4883 }
4884
4885 /* Emit a tls fix for the symbol. */
4886
4887 static void
4888 s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4889 {
4890 char *p;
4891 expressionS exp;
4892 #ifdef md_flush_pending_output
4893 md_flush_pending_output ();
4894 #endif
4895
4896 #ifdef md_cons_align
4897 md_cons_align (4);
4898 #endif
4899
4900 /* Since we're just labelling the code, there's no need to define a
4901 mapping symbol. */
4902 expression (&exp);
4903 p = obstack_next_free (&frchain_now->frch_obstack);
4904 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4905 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4906 : BFD_RELOC_ARM_TLS_DESCSEQ);
4907 }
4908 #endif /* OBJ_ELF */
4909
4910 static void s_arm_arch (int);
4911 static void s_arm_object_arch (int);
4912 static void s_arm_cpu (int);
4913 static void s_arm_fpu (int);
4914 static void s_arm_arch_extension (int);
4915
4916 #ifdef TE_PE
4917
4918 static void
4919 pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
4920 {
4921 expressionS exp;
4922
4923 do
4924 {
4925 expression (&exp);
4926 if (exp.X_op == O_symbol)
4927 exp.X_op = O_secrel;
4928
4929 emit_expr (&exp, 4);
4930 }
4931 while (*input_line_pointer++ == ',');
4932
4933 input_line_pointer--;
4934 demand_empty_rest_of_line ();
4935 }
4936 #endif /* TE_PE */
4937
4938 int
4939 arm_is_largest_exponent_ok (int precision)
4940 {
4941 /* precision == 1 ensures that this will only return
4942 true for 16 bit floats. */
4943 return (precision == 1) && (fp16_format == ARM_FP16_FORMAT_ALTERNATIVE);
4944 }
4945
4946 static void
4947 set_fp16_format (int dummy ATTRIBUTE_UNUSED)
4948 {
4949 char saved_char;
4950 char* name;
4951 enum fp_16bit_format new_format;
4952
4953 new_format = ARM_FP16_FORMAT_DEFAULT;
4954
4955 name = input_line_pointer;
4956 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
4957 input_line_pointer++;
4958
4959 saved_char = *input_line_pointer;
4960 *input_line_pointer = 0;
4961
4962 if (strcasecmp (name, "ieee") == 0)
4963 new_format = ARM_FP16_FORMAT_IEEE;
4964 else if (strcasecmp (name, "alternative") == 0)
4965 new_format = ARM_FP16_FORMAT_ALTERNATIVE;
4966 else
4967 {
4968 as_bad (_("unrecognised float16 format \"%s\""), name);
4969 goto cleanup;
4970 }
4971
4972 /* Only set fp16_format if it is still the default (aka not already
4973 been set yet). */
4974 if (fp16_format == ARM_FP16_FORMAT_DEFAULT)
4975 fp16_format = new_format;
4976 else
4977 {
4978 if (new_format != fp16_format)
4979 as_warn (_("float16 format cannot be set more than once, ignoring."));
4980 }
4981
4982 cleanup:
4983 *input_line_pointer = saved_char;
4984 ignore_rest_of_line ();
4985 }
4986
4987 /* This table describes all the machine specific pseudo-ops the assembler
4988 has to support. The fields are:
4989 pseudo-op name without dot
4990 function to call to execute this pseudo-op
4991 Integer arg to pass to the function. */
4992
4993 const pseudo_typeS md_pseudo_table[] =
4994 {
4995 /* Never called because '.req' does not start a line. */
4996 { "req", s_req, 0 },
4997 /* Following two are likewise never called. */
4998 { "dn", s_dn, 0 },
4999 { "qn", s_qn, 0 },
5000 { "unreq", s_unreq, 0 },
5001 { "bss", s_bss, 0 },
5002 { "align", s_align_ptwo, 2 },
5003 { "arm", s_arm, 0 },
5004 { "thumb", s_thumb, 0 },
5005 { "code", s_code, 0 },
5006 { "force_thumb", s_force_thumb, 0 },
5007 { "thumb_func", s_thumb_func, 0 },
5008 { "thumb_set", s_thumb_set, 0 },
5009 { "even", s_even, 0 },
5010 { "ltorg", s_ltorg, 0 },
5011 { "pool", s_ltorg, 0 },
5012 { "syntax", s_syntax, 0 },
5013 { "cpu", s_arm_cpu, 0 },
5014 { "arch", s_arm_arch, 0 },
5015 { "object_arch", s_arm_object_arch, 0 },
5016 { "fpu", s_arm_fpu, 0 },
5017 { "arch_extension", s_arm_arch_extension, 0 },
5018 #ifdef OBJ_ELF
5019 { "word", s_arm_elf_cons, 4 },
5020 { "long", s_arm_elf_cons, 4 },
5021 { "inst.n", s_arm_elf_inst, 2 },
5022 { "inst.w", s_arm_elf_inst, 4 },
5023 { "inst", s_arm_elf_inst, 0 },
5024 { "rel31", s_arm_rel31, 0 },
5025 { "fnstart", s_arm_unwind_fnstart, 0 },
5026 { "fnend", s_arm_unwind_fnend, 0 },
5027 { "cantunwind", s_arm_unwind_cantunwind, 0 },
5028 { "personality", s_arm_unwind_personality, 0 },
5029 { "personalityindex", s_arm_unwind_personalityindex, 0 },
5030 { "handlerdata", s_arm_unwind_handlerdata, 0 },
5031 { "save", s_arm_unwind_save, 0 },
5032 { "vsave", s_arm_unwind_save, 1 },
5033 { "movsp", s_arm_unwind_movsp, 0 },
5034 { "pad", s_arm_unwind_pad, 0 },
5035 { "setfp", s_arm_unwind_setfp, 0 },
5036 { "unwind_raw", s_arm_unwind_raw, 0 },
5037 { "eabi_attribute", s_arm_eabi_attribute, 0 },
5038 { "tlsdescseq", s_arm_tls_descseq, 0 },
5039 #else
5040 { "word", cons, 4},
5041
5042 /* These are used for dwarf. */
5043 {"2byte", cons, 2},
5044 {"4byte", cons, 4},
5045 {"8byte", cons, 8},
5046 /* These are used for dwarf2. */
5047 { "file", dwarf2_directive_file, 0 },
5048 { "loc", dwarf2_directive_loc, 0 },
5049 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
5050 #endif
5051 { "extend", float_cons, 'x' },
5052 { "ldouble", float_cons, 'x' },
5053 { "packed", float_cons, 'p' },
5054 #ifdef TE_PE
5055 {"secrel32", pe_directive_secrel, 0},
5056 #endif
5057
5058 /* These are for compatibility with CodeComposer Studio. */
5059 {"ref", s_ccs_ref, 0},
5060 {"def", s_ccs_def, 0},
5061 {"asmfunc", s_ccs_asmfunc, 0},
5062 {"endasmfunc", s_ccs_endasmfunc, 0},
5063
5064 {"float16", float_cons, 'h' },
5065 {"float16_format", set_fp16_format, 0 },
5066
5067 { 0, 0, 0 }
5068 };
5069
5070 /* Parser functions used exclusively in instruction operands. */
5071
5072 /* Generic immediate-value read function for use in insn parsing.
5073 STR points to the beginning of the immediate (the leading #);
5074 VAL receives the value; if the value is outside [MIN, MAX]
5075 issue an error. PREFIX_OPT is true if the immediate prefix is
5076 optional. */
5077
5078 static int
5079 parse_immediate (char **str, int *val, int min, int max,
5080 bfd_boolean prefix_opt)
5081 {
5082 expressionS exp;
5083
5084 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
5085 if (exp.X_op != O_constant)
5086 {
5087 inst.error = _("constant expression required");
5088 return FAIL;
5089 }
5090
5091 if (exp.X_add_number < min || exp.X_add_number > max)
5092 {
5093 inst.error = _("immediate value out of range");
5094 return FAIL;
5095 }
5096
5097 *val = exp.X_add_number;
5098 return SUCCESS;
5099 }
5100
5101 /* Less-generic immediate-value read function with the possibility of loading a
5102 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5103 instructions. Puts the result directly in inst.operands[i]. */
5104
5105 static int
5106 parse_big_immediate (char **str, int i, expressionS *in_exp,
5107 bfd_boolean allow_symbol_p)
5108 {
5109 expressionS exp;
5110 expressionS *exp_p = in_exp ? in_exp : &exp;
5111 char *ptr = *str;
5112
5113 my_get_expression (exp_p, &ptr, GE_OPT_PREFIX_BIG);
5114
5115 if (exp_p->X_op == O_constant)
5116 {
5117 inst.operands[i].imm = exp_p->X_add_number & 0xffffffff;
5118 /* If we're on a 64-bit host, then a 64-bit number can be returned using
5119 O_constant. We have to be careful not to break compilation for
5120 32-bit X_add_number, though. */
5121 if ((exp_p->X_add_number & ~(offsetT)(0xffffffffU)) != 0)
5122 {
5123 /* X >> 32 is illegal if sizeof (exp_p->X_add_number) == 4. */
5124 inst.operands[i].reg = (((exp_p->X_add_number >> 16) >> 16)
5125 & 0xffffffff);
5126 inst.operands[i].regisimm = 1;
5127 }
5128 }
5129 else if (exp_p->X_op == O_big
5130 && LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 32)
5131 {
5132 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
5133
5134 /* Bignums have their least significant bits in
5135 generic_bignum[0]. Make sure we put 32 bits in imm and
5136 32 bits in reg, in a (hopefully) portable way. */
5137 gas_assert (parts != 0);
5138
5139 /* Make sure that the number is not too big.
5140 PR 11972: Bignums can now be sign-extended to the
5141 size of a .octa so check that the out of range bits
5142 are all zero or all one. */
5143 if (LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 64)
5144 {
5145 LITTLENUM_TYPE m = -1;
5146
5147 if (generic_bignum[parts * 2] != 0
5148 && generic_bignum[parts * 2] != m)
5149 return FAIL;
5150
5151 for (j = parts * 2 + 1; j < (unsigned) exp_p->X_add_number; j++)
5152 if (generic_bignum[j] != generic_bignum[j-1])
5153 return FAIL;
5154 }
5155
5156 inst.operands[i].imm = 0;
5157 for (j = 0; j < parts; j++, idx++)
5158 inst.operands[i].imm |= generic_bignum[idx]
5159 << (LITTLENUM_NUMBER_OF_BITS * j);
5160 inst.operands[i].reg = 0;
5161 for (j = 0; j < parts; j++, idx++)
5162 inst.operands[i].reg |= generic_bignum[idx]
5163 << (LITTLENUM_NUMBER_OF_BITS * j);
5164 inst.operands[i].regisimm = 1;
5165 }
5166 else if (!(exp_p->X_op == O_symbol && allow_symbol_p))
5167 return FAIL;
5168
5169 *str = ptr;
5170
5171 return SUCCESS;
5172 }
5173
5174 /* Returns the pseudo-register number of an FPA immediate constant,
5175 or FAIL if there isn't a valid constant here. */
5176
5177 static int
5178 parse_fpa_immediate (char ** str)
5179 {
5180 LITTLENUM_TYPE words[MAX_LITTLENUMS];
5181 char * save_in;
5182 expressionS exp;
5183 int i;
5184 int j;
5185
5186 /* First try and match exact strings, this is to guarantee
5187 that some formats will work even for cross assembly. */
5188
5189 for (i = 0; fp_const[i]; i++)
5190 {
5191 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
5192 {
5193 char *start = *str;
5194
5195 *str += strlen (fp_const[i]);
5196 if (is_end_of_line[(unsigned char) **str])
5197 return i + 8;
5198 *str = start;
5199 }
5200 }
5201
5202 /* Just because we didn't get a match doesn't mean that the constant
5203 isn't valid, just that it is in a format that we don't
5204 automatically recognize. Try parsing it with the standard
5205 expression routines. */
5206
5207 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
5208
5209 /* Look for a raw floating point number. */
5210 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
5211 && is_end_of_line[(unsigned char) *save_in])
5212 {
5213 for (i = 0; i < NUM_FLOAT_VALS; i++)
5214 {
5215 for (j = 0; j < MAX_LITTLENUMS; j++)
5216 {
5217 if (words[j] != fp_values[i][j])
5218 break;
5219 }
5220
5221 if (j == MAX_LITTLENUMS)
5222 {
5223 *str = save_in;
5224 return i + 8;
5225 }
5226 }
5227 }
5228
5229 /* Try and parse a more complex expression, this will probably fail
5230 unless the code uses a floating point prefix (eg "0f"). */
5231 save_in = input_line_pointer;
5232 input_line_pointer = *str;
5233 if (expression (&exp) == absolute_section
5234 && exp.X_op == O_big
5235 && exp.X_add_number < 0)
5236 {
5237 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
5238 Ditto for 15. */
5239 #define X_PRECISION 5
5240 #define E_PRECISION 15L
5241 if (gen_to_words (words, X_PRECISION, E_PRECISION) == 0)
5242 {
5243 for (i = 0; i < NUM_FLOAT_VALS; i++)
5244 {
5245 for (j = 0; j < MAX_LITTLENUMS; j++)
5246 {
5247 if (words[j] != fp_values[i][j])
5248 break;
5249 }
5250
5251 if (j == MAX_LITTLENUMS)
5252 {
5253 *str = input_line_pointer;
5254 input_line_pointer = save_in;
5255 return i + 8;
5256 }
5257 }
5258 }
5259 }
5260
5261 *str = input_line_pointer;
5262 input_line_pointer = save_in;
5263 inst.error = _("invalid FPA immediate expression");
5264 return FAIL;
5265 }
5266
5267 /* Returns 1 if a number has "quarter-precision" float format
5268 0baBbbbbbc defgh000 00000000 00000000. */
5269
5270 static int
5271 is_quarter_float (unsigned imm)
5272 {
5273 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
5274 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
5275 }
5276
5277
5278 /* Detect the presence of a floating point or integer zero constant,
5279 i.e. #0.0 or #0. */
5280
5281 static bfd_boolean
5282 parse_ifimm_zero (char **in)
5283 {
5284 int error_code;
5285
5286 if (!is_immediate_prefix (**in))
5287 {
5288 /* In unified syntax, all prefixes are optional. */
5289 if (!unified_syntax)
5290 return FALSE;
5291 }
5292 else
5293 ++*in;
5294
5295 /* Accept #0x0 as a synonym for #0. */
5296 if (strncmp (*in, "0x", 2) == 0)
5297 {
5298 int val;
5299 if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
5300 return FALSE;
5301 return TRUE;
5302 }
5303
5304 error_code = atof_generic (in, ".", EXP_CHARS,
5305 &generic_floating_point_number);
5306
5307 if (!error_code
5308 && generic_floating_point_number.sign == '+'
5309 && (generic_floating_point_number.low
5310 > generic_floating_point_number.leader))
5311 return TRUE;
5312
5313 return FALSE;
5314 }
5315
5316 /* Parse an 8-bit "quarter-precision" floating point number of the form:
5317 0baBbbbbbc defgh000 00000000 00000000.
5318 The zero and minus-zero cases need special handling, since they can't be
5319 encoded in the "quarter-precision" float format, but can nonetheless be
5320 loaded as integer constants. */
5321
5322 static unsigned
5323 parse_qfloat_immediate (char **ccp, int *immed)
5324 {
5325 char *str = *ccp;
5326 char *fpnum;
5327 LITTLENUM_TYPE words[MAX_LITTLENUMS];
5328 int found_fpchar = 0;
5329
5330 skip_past_char (&str, '#');
5331
5332 /* We must not accidentally parse an integer as a floating-point number. Make
5333 sure that the value we parse is not an integer by checking for special
5334 characters '.' or 'e'.
5335 FIXME: This is a horrible hack, but doing better is tricky because type
5336 information isn't in a very usable state at parse time. */
5337 fpnum = str;
5338 skip_whitespace (fpnum);
5339
5340 if (strncmp (fpnum, "0x", 2) == 0)
5341 return FAIL;
5342 else
5343 {
5344 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
5345 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
5346 {
5347 found_fpchar = 1;
5348 break;
5349 }
5350
5351 if (!found_fpchar)
5352 return FAIL;
5353 }
5354
5355 if ((str = atof_ieee (str, 's', words)) != NULL)
5356 {
5357 unsigned fpword = 0;
5358 int i;
5359
5360 /* Our FP word must be 32 bits (single-precision FP). */
5361 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
5362 {
5363 fpword <<= LITTLENUM_NUMBER_OF_BITS;
5364 fpword |= words[i];
5365 }
5366
5367 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
5368 *immed = fpword;
5369 else
5370 return FAIL;
5371
5372 *ccp = str;
5373
5374 return SUCCESS;
5375 }
5376
5377 return FAIL;
5378 }
5379
5380 /* Shift operands. */
5381 enum shift_kind
5382 {
5383 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX, SHIFT_UXTW
5384 };
5385
5386 struct asm_shift_name
5387 {
5388 const char *name;
5389 enum shift_kind kind;
5390 };
5391
5392 /* Third argument to parse_shift. */
5393 enum parse_shift_mode
5394 {
5395 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
5396 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
5397 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
5398 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
5399 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
5400 SHIFT_UXTW_IMMEDIATE /* Shift must be UXTW immediate. */
5401 };
5402
5403 /* Parse a <shift> specifier on an ARM data processing instruction.
5404 This has three forms:
5405
5406 (LSL|LSR|ASL|ASR|ROR) Rs
5407 (LSL|LSR|ASL|ASR|ROR) #imm
5408 RRX
5409
5410 Note that ASL is assimilated to LSL in the instruction encoding, and
5411 RRX to ROR #0 (which cannot be written as such). */
5412
5413 static int
5414 parse_shift (char **str, int i, enum parse_shift_mode mode)
5415 {
5416 const struct asm_shift_name *shift_name;
5417 enum shift_kind shift;
5418 char *s = *str;
5419 char *p = s;
5420 int reg;
5421
5422 for (p = *str; ISALPHA (*p); p++)
5423 ;
5424
5425 if (p == *str)
5426 {
5427 inst.error = _("shift expression expected");
5428 return FAIL;
5429 }
5430
5431 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
5432 p - *str);
5433
5434 if (shift_name == NULL)
5435 {
5436 inst.error = _("shift expression expected");
5437 return FAIL;
5438 }
5439
5440 shift = shift_name->kind;
5441
5442 switch (mode)
5443 {
5444 case NO_SHIFT_RESTRICT:
5445 case SHIFT_IMMEDIATE:
5446 if (shift == SHIFT_UXTW)
5447 {
5448 inst.error = _("'UXTW' not allowed here");
5449 return FAIL;
5450 }
5451 break;
5452
5453 case SHIFT_LSL_OR_ASR_IMMEDIATE:
5454 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
5455 {
5456 inst.error = _("'LSL' or 'ASR' required");
5457 return FAIL;
5458 }
5459 break;
5460
5461 case SHIFT_LSL_IMMEDIATE:
5462 if (shift != SHIFT_LSL)
5463 {
5464 inst.error = _("'LSL' required");
5465 return FAIL;
5466 }
5467 break;
5468
5469 case SHIFT_ASR_IMMEDIATE:
5470 if (shift != SHIFT_ASR)
5471 {
5472 inst.error = _("'ASR' required");
5473 return FAIL;
5474 }
5475 break;
5476 case SHIFT_UXTW_IMMEDIATE:
5477 if (shift != SHIFT_UXTW)
5478 {
5479 inst.error = _("'UXTW' required");
5480 return FAIL;
5481 }
5482 break;
5483
5484 default: abort ();
5485 }
5486
5487 if (shift != SHIFT_RRX)
5488 {
5489 /* Whitespace can appear here if the next thing is a bare digit. */
5490 skip_whitespace (p);
5491
5492 if (mode == NO_SHIFT_RESTRICT
5493 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
5494 {
5495 inst.operands[i].imm = reg;
5496 inst.operands[i].immisreg = 1;
5497 }
5498 else if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
5499 return FAIL;
5500 }
5501 inst.operands[i].shift_kind = shift;
5502 inst.operands[i].shifted = 1;
5503 *str = p;
5504 return SUCCESS;
5505 }
5506
5507 /* Parse a <shifter_operand> for an ARM data processing instruction:
5508
5509 #<immediate>
5510 #<immediate>, <rotate>
5511 <Rm>
5512 <Rm>, <shift>
5513
5514 where <shift> is defined by parse_shift above, and <rotate> is a
5515 multiple of 2 between 0 and 30. Validation of immediate operands
5516 is deferred to md_apply_fix. */
5517
5518 static int
5519 parse_shifter_operand (char **str, int i)
5520 {
5521 int value;
5522 expressionS exp;
5523
5524 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
5525 {
5526 inst.operands[i].reg = value;
5527 inst.operands[i].isreg = 1;
5528
5529 /* parse_shift will override this if appropriate */
5530 inst.relocs[0].exp.X_op = O_constant;
5531 inst.relocs[0].exp.X_add_number = 0;
5532
5533 if (skip_past_comma (str) == FAIL)
5534 return SUCCESS;
5535
5536 /* Shift operation on register. */
5537 return parse_shift (str, i, NO_SHIFT_RESTRICT);
5538 }
5539
5540 if (my_get_expression (&inst.relocs[0].exp, str, GE_IMM_PREFIX))
5541 return FAIL;
5542
5543 if (skip_past_comma (str) == SUCCESS)
5544 {
5545 /* #x, y -- ie explicit rotation by Y. */
5546 if (my_get_expression (&exp, str, GE_NO_PREFIX))
5547 return FAIL;
5548
5549 if (exp.X_op != O_constant || inst.relocs[0].exp.X_op != O_constant)
5550 {
5551 inst.error = _("constant expression expected");
5552 return FAIL;
5553 }
5554
5555 value = exp.X_add_number;
5556 if (value < 0 || value > 30 || value % 2 != 0)
5557 {
5558 inst.error = _("invalid rotation");
5559 return FAIL;
5560 }
5561 if (inst.relocs[0].exp.X_add_number < 0
5562 || inst.relocs[0].exp.X_add_number > 255)
5563 {
5564 inst.error = _("invalid constant");
5565 return FAIL;
5566 }
5567
5568 /* Encode as specified. */
5569 inst.operands[i].imm = inst.relocs[0].exp.X_add_number | value << 7;
5570 return SUCCESS;
5571 }
5572
5573 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
5574 inst.relocs[0].pc_rel = 0;
5575 return SUCCESS;
5576 }
5577
5578 /* Group relocation information. Each entry in the table contains the
5579 textual name of the relocation as may appear in assembler source
5580 and must end with a colon.
5581 Along with this textual name are the relocation codes to be used if
5582 the corresponding instruction is an ALU instruction (ADD or SUB only),
5583 an LDR, an LDRS, or an LDC. */
5584
5585 struct group_reloc_table_entry
5586 {
5587 const char *name;
5588 int alu_code;
5589 int ldr_code;
5590 int ldrs_code;
5591 int ldc_code;
5592 };
5593
5594 typedef enum
5595 {
5596 /* Varieties of non-ALU group relocation. */
5597
5598 GROUP_LDR,
5599 GROUP_LDRS,
5600 GROUP_LDC,
5601 GROUP_MVE
5602 } group_reloc_type;
5603
5604 static struct group_reloc_table_entry group_reloc_table[] =
5605 { /* Program counter relative: */
5606 { "pc_g0_nc",
5607 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
5608 0, /* LDR */
5609 0, /* LDRS */
5610 0 }, /* LDC */
5611 { "pc_g0",
5612 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
5613 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
5614 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
5615 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
5616 { "pc_g1_nc",
5617 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
5618 0, /* LDR */
5619 0, /* LDRS */
5620 0 }, /* LDC */
5621 { "pc_g1",
5622 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
5623 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
5624 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
5625 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
5626 { "pc_g2",
5627 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
5628 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
5629 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
5630 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
5631 /* Section base relative */
5632 { "sb_g0_nc",
5633 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
5634 0, /* LDR */
5635 0, /* LDRS */
5636 0 }, /* LDC */
5637 { "sb_g0",
5638 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
5639 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
5640 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
5641 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
5642 { "sb_g1_nc",
5643 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
5644 0, /* LDR */
5645 0, /* LDRS */
5646 0 }, /* LDC */
5647 { "sb_g1",
5648 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5649 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5650 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5651 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5652 { "sb_g2",
5653 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5654 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5655 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5656 BFD_RELOC_ARM_LDC_SB_G2 }, /* LDC */
5657 /* Absolute thumb alu relocations. */
5658 { "lower0_7",
5659 BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC,/* ALU. */
5660 0, /* LDR. */
5661 0, /* LDRS. */
5662 0 }, /* LDC. */
5663 { "lower8_15",
5664 BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC,/* ALU. */
5665 0, /* LDR. */
5666 0, /* LDRS. */
5667 0 }, /* LDC. */
5668 { "upper0_7",
5669 BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC,/* ALU. */
5670 0, /* LDR. */
5671 0, /* LDRS. */
5672 0 }, /* LDC. */
5673 { "upper8_15",
5674 BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC,/* ALU. */
5675 0, /* LDR. */
5676 0, /* LDRS. */
5677 0 } }; /* LDC. */
5678
5679 /* Given the address of a pointer pointing to the textual name of a group
5680 relocation as may appear in assembler source, attempt to find its details
5681 in group_reloc_table. The pointer will be updated to the character after
5682 the trailing colon. On failure, FAIL will be returned; SUCCESS
5683 otherwise. On success, *entry will be updated to point at the relevant
5684 group_reloc_table entry. */
5685
5686 static int
5687 find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5688 {
5689 unsigned int i;
5690 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5691 {
5692 int length = strlen (group_reloc_table[i].name);
5693
5694 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5695 && (*str)[length] == ':')
5696 {
5697 *out = &group_reloc_table[i];
5698 *str += (length + 1);
5699 return SUCCESS;
5700 }
5701 }
5702
5703 return FAIL;
5704 }
5705
5706 /* Parse a <shifter_operand> for an ARM data processing instruction
5707 (as for parse_shifter_operand) where group relocations are allowed:
5708
5709 #<immediate>
5710 #<immediate>, <rotate>
5711 #:<group_reloc>:<expression>
5712 <Rm>
5713 <Rm>, <shift>
5714
5715 where <group_reloc> is one of the strings defined in group_reloc_table.
5716 The hashes are optional.
5717
5718 Everything else is as for parse_shifter_operand. */
5719
5720 static parse_operand_result
5721 parse_shifter_operand_group_reloc (char **str, int i)
5722 {
5723 /* Determine if we have the sequence of characters #: or just :
5724 coming next. If we do, then we check for a group relocation.
5725 If we don't, punt the whole lot to parse_shifter_operand. */
5726
5727 if (((*str)[0] == '#' && (*str)[1] == ':')
5728 || (*str)[0] == ':')
5729 {
5730 struct group_reloc_table_entry *entry;
5731
5732 if ((*str)[0] == '#')
5733 (*str) += 2;
5734 else
5735 (*str)++;
5736
5737 /* Try to parse a group relocation. Anything else is an error. */
5738 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5739 {
5740 inst.error = _("unknown group relocation");
5741 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5742 }
5743
5744 /* We now have the group relocation table entry corresponding to
5745 the name in the assembler source. Next, we parse the expression. */
5746 if (my_get_expression (&inst.relocs[0].exp, str, GE_NO_PREFIX))
5747 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5748
5749 /* Record the relocation type (always the ALU variant here). */
5750 inst.relocs[0].type = (bfd_reloc_code_real_type) entry->alu_code;
5751 gas_assert (inst.relocs[0].type != 0);
5752
5753 return PARSE_OPERAND_SUCCESS;
5754 }
5755 else
5756 return parse_shifter_operand (str, i) == SUCCESS
5757 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5758
5759 /* Never reached. */
5760 }
5761
5762 /* Parse a Neon alignment expression. Information is written to
5763 inst.operands[i]. We assume the initial ':' has been skipped.
5764
5765 align .imm = align << 8, .immisalign=1, .preind=0 */
5766 static parse_operand_result
5767 parse_neon_alignment (char **str, int i)
5768 {
5769 char *p = *str;
5770 expressionS exp;
5771
5772 my_get_expression (&exp, &p, GE_NO_PREFIX);
5773
5774 if (exp.X_op != O_constant)
5775 {
5776 inst.error = _("alignment must be constant");
5777 return PARSE_OPERAND_FAIL;
5778 }
5779
5780 inst.operands[i].imm = exp.X_add_number << 8;
5781 inst.operands[i].immisalign = 1;
5782 /* Alignments are not pre-indexes. */
5783 inst.operands[i].preind = 0;
5784
5785 *str = p;
5786 return PARSE_OPERAND_SUCCESS;
5787 }
5788
5789 /* Parse all forms of an ARM address expression. Information is written
5790 to inst.operands[i] and/or inst.relocs[0].
5791
5792 Preindexed addressing (.preind=1):
5793
5794 [Rn, #offset] .reg=Rn .relocs[0].exp=offset
5795 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5796 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5797 .shift_kind=shift .relocs[0].exp=shift_imm
5798
5799 These three may have a trailing ! which causes .writeback to be set also.
5800
5801 Postindexed addressing (.postind=1, .writeback=1):
5802
5803 [Rn], #offset .reg=Rn .relocs[0].exp=offset
5804 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5805 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5806 .shift_kind=shift .relocs[0].exp=shift_imm
5807
5808 Unindexed addressing (.preind=0, .postind=0):
5809
5810 [Rn], {option} .reg=Rn .imm=option .immisreg=0
5811
5812 Other:
5813
5814 [Rn]{!} shorthand for [Rn,#0]{!}
5815 =immediate .isreg=0 .relocs[0].exp=immediate
5816 label .reg=PC .relocs[0].pc_rel=1 .relocs[0].exp=label
5817
5818 It is the caller's responsibility to check for addressing modes not
5819 supported by the instruction, and to set inst.relocs[0].type. */
5820
5821 static parse_operand_result
5822 parse_address_main (char **str, int i, int group_relocations,
5823 group_reloc_type group_type)
5824 {
5825 char *p = *str;
5826 int reg;
5827
5828 if (skip_past_char (&p, '[') == FAIL)
5829 {
5830 if (skip_past_char (&p, '=') == FAIL)
5831 {
5832 /* Bare address - translate to PC-relative offset. */
5833 inst.relocs[0].pc_rel = 1;
5834 inst.operands[i].reg = REG_PC;
5835 inst.operands[i].isreg = 1;
5836 inst.operands[i].preind = 1;
5837
5838 if (my_get_expression (&inst.relocs[0].exp, &p, GE_OPT_PREFIX_BIG))
5839 return PARSE_OPERAND_FAIL;
5840 }
5841 else if (parse_big_immediate (&p, i, &inst.relocs[0].exp,
5842 /*allow_symbol_p=*/TRUE))
5843 return PARSE_OPERAND_FAIL;
5844
5845 *str = p;
5846 return PARSE_OPERAND_SUCCESS;
5847 }
5848
5849 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5850 skip_whitespace (p);
5851
5852 if (group_type == GROUP_MVE)
5853 {
5854 enum arm_reg_type rtype = REG_TYPE_MQ;
5855 struct neon_type_el et;
5856 if ((reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
5857 {
5858 inst.operands[i].isquad = 1;
5859 }
5860 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
5861 {
5862 inst.error = BAD_ADDR_MODE;
5863 return PARSE_OPERAND_FAIL;
5864 }
5865 }
5866 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
5867 {
5868 if (group_type == GROUP_MVE)
5869 inst.error = BAD_ADDR_MODE;
5870 else
5871 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5872 return PARSE_OPERAND_FAIL;
5873 }
5874 inst.operands[i].reg = reg;
5875 inst.operands[i].isreg = 1;
5876
5877 if (skip_past_comma (&p) == SUCCESS)
5878 {
5879 inst.operands[i].preind = 1;
5880
5881 if (*p == '+') p++;
5882 else if (*p == '-') p++, inst.operands[i].negative = 1;
5883
5884 enum arm_reg_type rtype = REG_TYPE_MQ;
5885 struct neon_type_el et;
5886 if (group_type == GROUP_MVE
5887 && (reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
5888 {
5889 inst.operands[i].immisreg = 2;
5890 inst.operands[i].imm = reg;
5891
5892 if (skip_past_comma (&p) == SUCCESS)
5893 {
5894 if (parse_shift (&p, i, SHIFT_UXTW_IMMEDIATE) == SUCCESS)
5895 {
5896 inst.operands[i].imm |= inst.relocs[0].exp.X_add_number << 5;
5897 inst.relocs[0].exp.X_add_number = 0;
5898 }
5899 else
5900 return PARSE_OPERAND_FAIL;
5901 }
5902 }
5903 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
5904 {
5905 inst.operands[i].imm = reg;
5906 inst.operands[i].immisreg = 1;
5907
5908 if (skip_past_comma (&p) == SUCCESS)
5909 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
5910 return PARSE_OPERAND_FAIL;
5911 }
5912 else if (skip_past_char (&p, ':') == SUCCESS)
5913 {
5914 /* FIXME: '@' should be used here, but it's filtered out by generic
5915 code before we get to see it here. This may be subject to
5916 change. */
5917 parse_operand_result result = parse_neon_alignment (&p, i);
5918
5919 if (result != PARSE_OPERAND_SUCCESS)
5920 return result;
5921 }
5922 else
5923 {
5924 if (inst.operands[i].negative)
5925 {
5926 inst.operands[i].negative = 0;
5927 p--;
5928 }
5929
5930 if (group_relocations
5931 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
5932 {
5933 struct group_reloc_table_entry *entry;
5934
5935 /* Skip over the #: or : sequence. */
5936 if (*p == '#')
5937 p += 2;
5938 else
5939 p++;
5940
5941 /* Try to parse a group relocation. Anything else is an
5942 error. */
5943 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5944 {
5945 inst.error = _("unknown group relocation");
5946 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5947 }
5948
5949 /* We now have the group relocation table entry corresponding to
5950 the name in the assembler source. Next, we parse the
5951 expression. */
5952 if (my_get_expression (&inst.relocs[0].exp, &p, GE_NO_PREFIX))
5953 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5954
5955 /* Record the relocation type. */
5956 switch (group_type)
5957 {
5958 case GROUP_LDR:
5959 inst.relocs[0].type
5960 = (bfd_reloc_code_real_type) entry->ldr_code;
5961 break;
5962
5963 case GROUP_LDRS:
5964 inst.relocs[0].type
5965 = (bfd_reloc_code_real_type) entry->ldrs_code;
5966 break;
5967
5968 case GROUP_LDC:
5969 inst.relocs[0].type
5970 = (bfd_reloc_code_real_type) entry->ldc_code;
5971 break;
5972
5973 default:
5974 gas_assert (0);
5975 }
5976
5977 if (inst.relocs[0].type == 0)
5978 {
5979 inst.error = _("this group relocation is not allowed on this instruction");
5980 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5981 }
5982 }
5983 else
5984 {
5985 char *q = p;
5986
5987 if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
5988 return PARSE_OPERAND_FAIL;
5989 /* If the offset is 0, find out if it's a +0 or -0. */
5990 if (inst.relocs[0].exp.X_op == O_constant
5991 && inst.relocs[0].exp.X_add_number == 0)
5992 {
5993 skip_whitespace (q);
5994 if (*q == '#')
5995 {
5996 q++;
5997 skip_whitespace (q);
5998 }
5999 if (*q == '-')
6000 inst.operands[i].negative = 1;
6001 }
6002 }
6003 }
6004 }
6005 else if (skip_past_char (&p, ':') == SUCCESS)
6006 {
6007 /* FIXME: '@' should be used here, but it's filtered out by generic code
6008 before we get to see it here. This may be subject to change. */
6009 parse_operand_result result = parse_neon_alignment (&p, i);
6010
6011 if (result != PARSE_OPERAND_SUCCESS)
6012 return result;
6013 }
6014
6015 if (skip_past_char (&p, ']') == FAIL)
6016 {
6017 inst.error = _("']' expected");
6018 return PARSE_OPERAND_FAIL;
6019 }
6020
6021 if (skip_past_char (&p, '!') == SUCCESS)
6022 inst.operands[i].writeback = 1;
6023
6024 else if (skip_past_comma (&p) == SUCCESS)
6025 {
6026 if (skip_past_char (&p, '{') == SUCCESS)
6027 {
6028 /* [Rn], {expr} - unindexed, with option */
6029 if (parse_immediate (&p, &inst.operands[i].imm,
6030 0, 255, TRUE) == FAIL)
6031 return PARSE_OPERAND_FAIL;
6032
6033 if (skip_past_char (&p, '}') == FAIL)
6034 {
6035 inst.error = _("'}' expected at end of 'option' field");
6036 return PARSE_OPERAND_FAIL;
6037 }
6038 if (inst.operands[i].preind)
6039 {
6040 inst.error = _("cannot combine index with option");
6041 return PARSE_OPERAND_FAIL;
6042 }
6043 *str = p;
6044 return PARSE_OPERAND_SUCCESS;
6045 }
6046 else
6047 {
6048 inst.operands[i].postind = 1;
6049 inst.operands[i].writeback = 1;
6050
6051 if (inst.operands[i].preind)
6052 {
6053 inst.error = _("cannot combine pre- and post-indexing");
6054 return PARSE_OPERAND_FAIL;
6055 }
6056
6057 if (*p == '+') p++;
6058 else if (*p == '-') p++, inst.operands[i].negative = 1;
6059
6060 enum arm_reg_type rtype = REG_TYPE_MQ;
6061 struct neon_type_el et;
6062 if (group_type == GROUP_MVE
6063 && (reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
6064 {
6065 inst.operands[i].immisreg = 2;
6066 inst.operands[i].imm = reg;
6067 }
6068 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
6069 {
6070 /* We might be using the immediate for alignment already. If we
6071 are, OR the register number into the low-order bits. */
6072 if (inst.operands[i].immisalign)
6073 inst.operands[i].imm |= reg;
6074 else
6075 inst.operands[i].imm = reg;
6076 inst.operands[i].immisreg = 1;
6077
6078 if (skip_past_comma (&p) == SUCCESS)
6079 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
6080 return PARSE_OPERAND_FAIL;
6081 }
6082 else
6083 {
6084 char *q = p;
6085
6086 if (inst.operands[i].negative)
6087 {
6088 inst.operands[i].negative = 0;
6089 p--;
6090 }
6091 if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
6092 return PARSE_OPERAND_FAIL;
6093 /* If the offset is 0, find out if it's a +0 or -0. */
6094 if (inst.relocs[0].exp.X_op == O_constant
6095 && inst.relocs[0].exp.X_add_number == 0)
6096 {
6097 skip_whitespace (q);
6098 if (*q == '#')
6099 {
6100 q++;
6101 skip_whitespace (q);
6102 }
6103 if (*q == '-')
6104 inst.operands[i].negative = 1;
6105 }
6106 }
6107 }
6108 }
6109
6110 /* If at this point neither .preind nor .postind is set, we have a
6111 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
6112 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
6113 {
6114 inst.operands[i].preind = 1;
6115 inst.relocs[0].exp.X_op = O_constant;
6116 inst.relocs[0].exp.X_add_number = 0;
6117 }
6118 *str = p;
6119 return PARSE_OPERAND_SUCCESS;
6120 }
6121
6122 static int
6123 parse_address (char **str, int i)
6124 {
6125 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
6126 ? SUCCESS : FAIL;
6127 }
6128
6129 static parse_operand_result
6130 parse_address_group_reloc (char **str, int i, group_reloc_type type)
6131 {
6132 return parse_address_main (str, i, 1, type);
6133 }
6134
6135 /* Parse an operand for a MOVW or MOVT instruction. */
6136 static int
6137 parse_half (char **str)
6138 {
6139 char * p;
6140
6141 p = *str;
6142 skip_past_char (&p, '#');
6143 if (strncasecmp (p, ":lower16:", 9) == 0)
6144 inst.relocs[0].type = BFD_RELOC_ARM_MOVW;
6145 else if (strncasecmp (p, ":upper16:", 9) == 0)
6146 inst.relocs[0].type = BFD_RELOC_ARM_MOVT;
6147
6148 if (inst.relocs[0].type != BFD_RELOC_UNUSED)
6149 {
6150 p += 9;
6151 skip_whitespace (p);
6152 }
6153
6154 if (my_get_expression (&inst.relocs[0].exp, &p, GE_NO_PREFIX))
6155 return FAIL;
6156
6157 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
6158 {
6159 if (inst.relocs[0].exp.X_op != O_constant)
6160 {
6161 inst.error = _("constant expression expected");
6162 return FAIL;
6163 }
6164 if (inst.relocs[0].exp.X_add_number < 0
6165 || inst.relocs[0].exp.X_add_number > 0xffff)
6166 {
6167 inst.error = _("immediate value out of range");
6168 return FAIL;
6169 }
6170 }
6171 *str = p;
6172 return SUCCESS;
6173 }
6174
6175 /* Miscellaneous. */
6176
6177 /* Parse a PSR flag operand. The value returned is FAIL on syntax error,
6178 or a bitmask suitable to be or-ed into the ARM msr instruction. */
6179 static int
6180 parse_psr (char **str, bfd_boolean lhs)
6181 {
6182 char *p;
6183 unsigned long psr_field;
6184 const struct asm_psr *psr;
6185 char *start;
6186 bfd_boolean is_apsr = FALSE;
6187 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
6188
6189 /* PR gas/12698: If the user has specified -march=all then m_profile will
6190 be TRUE, but we want to ignore it in this case as we are building for any
6191 CPU type, including non-m variants. */
6192 if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
6193 m_profile = FALSE;
6194
6195 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
6196 feature for ease of use and backwards compatibility. */
6197 p = *str;
6198 if (strncasecmp (p, "SPSR", 4) == 0)
6199 {
6200 if (m_profile)
6201 goto unsupported_psr;
6202
6203 psr_field = SPSR_BIT;
6204 }
6205 else if (strncasecmp (p, "CPSR", 4) == 0)
6206 {
6207 if (m_profile)
6208 goto unsupported_psr;
6209
6210 psr_field = 0;
6211 }
6212 else if (strncasecmp (p, "APSR", 4) == 0)
6213 {
6214 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
6215 and ARMv7-R architecture CPUs. */
6216 is_apsr = TRUE;
6217 psr_field = 0;
6218 }
6219 else if (m_profile)
6220 {
6221 start = p;
6222 do
6223 p++;
6224 while (ISALNUM (*p) || *p == '_');
6225
6226 if (strncasecmp (start, "iapsr", 5) == 0
6227 || strncasecmp (start, "eapsr", 5) == 0
6228 || strncasecmp (start, "xpsr", 4) == 0
6229 || strncasecmp (start, "psr", 3) == 0)
6230 p = start + strcspn (start, "rR") + 1;
6231
6232 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
6233 p - start);
6234
6235 if (!psr)
6236 return FAIL;
6237
6238 /* If APSR is being written, a bitfield may be specified. Note that
6239 APSR itself is handled above. */
6240 if (psr->field <= 3)
6241 {
6242 psr_field = psr->field;
6243 is_apsr = TRUE;
6244 goto check_suffix;
6245 }
6246
6247 *str = p;
6248 /* M-profile MSR instructions have the mask field set to "10", except
6249 *PSR variants which modify APSR, which may use a different mask (and
6250 have been handled already). Do that by setting the PSR_f field
6251 here. */
6252 return psr->field | (lhs ? PSR_f : 0);
6253 }
6254 else
6255 goto unsupported_psr;
6256
6257 p += 4;
6258 check_suffix:
6259 if (*p == '_')
6260 {
6261 /* A suffix follows. */
6262 p++;
6263 start = p;
6264
6265 do
6266 p++;
6267 while (ISALNUM (*p) || *p == '_');
6268
6269 if (is_apsr)
6270 {
6271 /* APSR uses a notation for bits, rather than fields. */
6272 unsigned int nzcvq_bits = 0;
6273 unsigned int g_bit = 0;
6274 char *bit;
6275
6276 for (bit = start; bit != p; bit++)
6277 {
6278 switch (TOLOWER (*bit))
6279 {
6280 case 'n':
6281 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
6282 break;
6283
6284 case 'z':
6285 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
6286 break;
6287
6288 case 'c':
6289 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
6290 break;
6291
6292 case 'v':
6293 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
6294 break;
6295
6296 case 'q':
6297 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
6298 break;
6299
6300 case 'g':
6301 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
6302 break;
6303
6304 default:
6305 inst.error = _("unexpected bit specified after APSR");
6306 return FAIL;
6307 }
6308 }
6309
6310 if (nzcvq_bits == 0x1f)
6311 psr_field |= PSR_f;
6312
6313 if (g_bit == 0x1)
6314 {
6315 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
6316 {
6317 inst.error = _("selected processor does not "
6318 "support DSP extension");
6319 return FAIL;
6320 }
6321
6322 psr_field |= PSR_s;
6323 }
6324
6325 if ((nzcvq_bits & 0x20) != 0
6326 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
6327 || (g_bit & 0x2) != 0)
6328 {
6329 inst.error = _("bad bitmask specified after APSR");
6330 return FAIL;
6331 }
6332 }
6333 else
6334 {
6335 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
6336 p - start);
6337 if (!psr)
6338 goto error;
6339
6340 psr_field |= psr->field;
6341 }
6342 }
6343 else
6344 {
6345 if (ISALNUM (*p))
6346 goto error; /* Garbage after "[CS]PSR". */
6347
6348 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
6349 is deprecated, but allow it anyway. */
6350 if (is_apsr && lhs)
6351 {
6352 psr_field |= PSR_f;
6353 as_tsktsk (_("writing to APSR without specifying a bitmask is "
6354 "deprecated"));
6355 }
6356 else if (!m_profile)
6357 /* These bits are never right for M-profile devices: don't set them
6358 (only code paths which read/write APSR reach here). */
6359 psr_field |= (PSR_c | PSR_f);
6360 }
6361 *str = p;
6362 return psr_field;
6363
6364 unsupported_psr:
6365 inst.error = _("selected processor does not support requested special "
6366 "purpose register");
6367 return FAIL;
6368
6369 error:
6370 inst.error = _("flag for {c}psr instruction expected");
6371 return FAIL;
6372 }
6373
6374 static int
6375 parse_sys_vldr_vstr (char **str)
6376 {
6377 unsigned i;
6378 int val = FAIL;
6379 struct {
6380 const char *name;
6381 int regl;
6382 int regh;
6383 } sysregs[] = {
6384 {"FPSCR", 0x1, 0x0},
6385 {"FPSCR_nzcvqc", 0x2, 0x0},
6386 {"VPR", 0x4, 0x1},
6387 {"P0", 0x5, 0x1},
6388 {"FPCXTNS", 0x6, 0x1},
6389 {"FPCXTS", 0x7, 0x1}
6390 };
6391 char *op_end = strchr (*str, ',');
6392 size_t op_strlen = op_end - *str;
6393
6394 for (i = 0; i < sizeof (sysregs) / sizeof (sysregs[0]); i++)
6395 {
6396 if (!strncmp (*str, sysregs[i].name, op_strlen))
6397 {
6398 val = sysregs[i].regl | (sysregs[i].regh << 3);
6399 *str = op_end;
6400 break;
6401 }
6402 }
6403
6404 return val;
6405 }
6406
6407 /* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
6408 value suitable for splatting into the AIF field of the instruction. */
6409
6410 static int
6411 parse_cps_flags (char **str)
6412 {
6413 int val = 0;
6414 int saw_a_flag = 0;
6415 char *s = *str;
6416
6417 for (;;)
6418 switch (*s++)
6419 {
6420 case '\0': case ',':
6421 goto done;
6422
6423 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
6424 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
6425 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
6426
6427 default:
6428 inst.error = _("unrecognized CPS flag");
6429 return FAIL;
6430 }
6431
6432 done:
6433 if (saw_a_flag == 0)
6434 {
6435 inst.error = _("missing CPS flags");
6436 return FAIL;
6437 }
6438
6439 *str = s - 1;
6440 return val;
6441 }
6442
6443 /* Parse an endian specifier ("BE" or "LE", case insensitive);
6444 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
6445
6446 static int
6447 parse_endian_specifier (char **str)
6448 {
6449 int little_endian;
6450 char *s = *str;
6451
6452 if (strncasecmp (s, "BE", 2))
6453 little_endian = 0;
6454 else if (strncasecmp (s, "LE", 2))
6455 little_endian = 1;
6456 else
6457 {
6458 inst.error = _("valid endian specifiers are be or le");
6459 return FAIL;
6460 }
6461
6462 if (ISALNUM (s[2]) || s[2] == '_')
6463 {
6464 inst.error = _("valid endian specifiers are be or le");
6465 return FAIL;
6466 }
6467
6468 *str = s + 2;
6469 return little_endian;
6470 }
6471
6472 /* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
6473 value suitable for poking into the rotate field of an sxt or sxta
6474 instruction, or FAIL on error. */
6475
6476 static int
6477 parse_ror (char **str)
6478 {
6479 int rot;
6480 char *s = *str;
6481
6482 if (strncasecmp (s, "ROR", 3) == 0)
6483 s += 3;
6484 else
6485 {
6486 inst.error = _("missing rotation field after comma");
6487 return FAIL;
6488 }
6489
6490 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
6491 return FAIL;
6492
6493 switch (rot)
6494 {
6495 case 0: *str = s; return 0x0;
6496 case 8: *str = s; return 0x1;
6497 case 16: *str = s; return 0x2;
6498 case 24: *str = s; return 0x3;
6499
6500 default:
6501 inst.error = _("rotation can only be 0, 8, 16, or 24");
6502 return FAIL;
6503 }
6504 }
6505
6506 /* Parse a conditional code (from conds[] below). The value returned is in the
6507 range 0 .. 14, or FAIL. */
6508 static int
6509 parse_cond (char **str)
6510 {
6511 char *q;
6512 const struct asm_cond *c;
6513 int n;
6514 /* Condition codes are always 2 characters, so matching up to
6515 3 characters is sufficient. */
6516 char cond[3];
6517
6518 q = *str;
6519 n = 0;
6520 while (ISALPHA (*q) && n < 3)
6521 {
6522 cond[n] = TOLOWER (*q);
6523 q++;
6524 n++;
6525 }
6526
6527 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
6528 if (!c)
6529 {
6530 inst.error = _("condition required");
6531 return FAIL;
6532 }
6533
6534 *str = q;
6535 return c->value;
6536 }
6537
6538 /* Parse an option for a barrier instruction. Returns the encoding for the
6539 option, or FAIL. */
6540 static int
6541 parse_barrier (char **str)
6542 {
6543 char *p, *q;
6544 const struct asm_barrier_opt *o;
6545
6546 p = q = *str;
6547 while (ISALPHA (*q))
6548 q++;
6549
6550 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
6551 q - p);
6552 if (!o)
6553 return FAIL;
6554
6555 if (!mark_feature_used (&o->arch))
6556 return FAIL;
6557
6558 *str = q;
6559 return o->value;
6560 }
6561
6562 /* Parse the operands of a table branch instruction. Similar to a memory
6563 operand. */
6564 static int
6565 parse_tb (char **str)
6566 {
6567 char * p = *str;
6568 int reg;
6569
6570 if (skip_past_char (&p, '[') == FAIL)
6571 {
6572 inst.error = _("'[' expected");
6573 return FAIL;
6574 }
6575
6576 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
6577 {
6578 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6579 return FAIL;
6580 }
6581 inst.operands[0].reg = reg;
6582
6583 if (skip_past_comma (&p) == FAIL)
6584 {
6585 inst.error = _("',' expected");
6586 return FAIL;
6587 }
6588
6589 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
6590 {
6591 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6592 return FAIL;
6593 }
6594 inst.operands[0].imm = reg;
6595
6596 if (skip_past_comma (&p) == SUCCESS)
6597 {
6598 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
6599 return FAIL;
6600 if (inst.relocs[0].exp.X_add_number != 1)
6601 {
6602 inst.error = _("invalid shift");
6603 return FAIL;
6604 }
6605 inst.operands[0].shifted = 1;
6606 }
6607
6608 if (skip_past_char (&p, ']') == FAIL)
6609 {
6610 inst.error = _("']' expected");
6611 return FAIL;
6612 }
6613 *str = p;
6614 return SUCCESS;
6615 }
6616
6617 /* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
6618 information on the types the operands can take and how they are encoded.
6619 Up to four operands may be read; this function handles setting the
6620 ".present" field for each read operand itself.
6621 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
6622 else returns FAIL. */
6623
6624 static int
6625 parse_neon_mov (char **str, int *which_operand)
6626 {
6627 int i = *which_operand, val;
6628 enum arm_reg_type rtype;
6629 char *ptr = *str;
6630 struct neon_type_el optype;
6631
6632 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6633 {
6634 /* Cases 17 or 19. */
6635 inst.operands[i].reg = val;
6636 inst.operands[i].isvec = 1;
6637 inst.operands[i].isscalar = 2;
6638 inst.operands[i].vectype = optype;
6639 inst.operands[i++].present = 1;
6640
6641 if (skip_past_comma (&ptr) == FAIL)
6642 goto wanted_comma;
6643
6644 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6645 {
6646 /* Case 17: VMOV<c>.<dt> <Qd[idx]>, <Rt> */
6647 inst.operands[i].reg = val;
6648 inst.operands[i].isreg = 1;
6649 inst.operands[i].present = 1;
6650 }
6651 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6652 {
6653 /* Case 19: VMOV<c> <Qd[idx]>, <Qd[idx2]>, <Rt>, <Rt2> */
6654 inst.operands[i].reg = val;
6655 inst.operands[i].isvec = 1;
6656 inst.operands[i].isscalar = 2;
6657 inst.operands[i].vectype = optype;
6658 inst.operands[i++].present = 1;
6659
6660 if (skip_past_comma (&ptr) == FAIL)
6661 goto wanted_comma;
6662
6663 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6664 goto wanted_arm;
6665
6666 inst.operands[i].reg = val;
6667 inst.operands[i].isreg = 1;
6668 inst.operands[i++].present = 1;
6669
6670 if (skip_past_comma (&ptr) == FAIL)
6671 goto wanted_comma;
6672
6673 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6674 goto wanted_arm;
6675
6676 inst.operands[i].reg = val;
6677 inst.operands[i].isreg = 1;
6678 inst.operands[i].present = 1;
6679 }
6680 else
6681 {
6682 first_error (_("expected ARM or MVE vector register"));
6683 return FAIL;
6684 }
6685 }
6686 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_VFD)) != FAIL)
6687 {
6688 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
6689 inst.operands[i].reg = val;
6690 inst.operands[i].isscalar = 1;
6691 inst.operands[i].vectype = optype;
6692 inst.operands[i++].present = 1;
6693
6694 if (skip_past_comma (&ptr) == FAIL)
6695 goto wanted_comma;
6696
6697 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6698 goto wanted_arm;
6699
6700 inst.operands[i].reg = val;
6701 inst.operands[i].isreg = 1;
6702 inst.operands[i].present = 1;
6703 }
6704 else if (((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
6705 != FAIL)
6706 || ((val = arm_typed_reg_parse (&ptr, REG_TYPE_MQ, &rtype, &optype))
6707 != FAIL))
6708 {
6709 /* Cases 0, 1, 2, 3, 5 (D only). */
6710 if (skip_past_comma (&ptr) == FAIL)
6711 goto wanted_comma;
6712
6713 inst.operands[i].reg = val;
6714 inst.operands[i].isreg = 1;
6715 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6716 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6717 inst.operands[i].isvec = 1;
6718 inst.operands[i].vectype = optype;
6719 inst.operands[i++].present = 1;
6720
6721 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6722 {
6723 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
6724 Case 13: VMOV <Sd>, <Rm> */
6725 inst.operands[i].reg = val;
6726 inst.operands[i].isreg = 1;
6727 inst.operands[i].present = 1;
6728
6729 if (rtype == REG_TYPE_NQ)
6730 {
6731 first_error (_("can't use Neon quad register here"));
6732 return FAIL;
6733 }
6734 else if (rtype != REG_TYPE_VFS)
6735 {
6736 i++;
6737 if (skip_past_comma (&ptr) == FAIL)
6738 goto wanted_comma;
6739 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6740 goto wanted_arm;
6741 inst.operands[i].reg = val;
6742 inst.operands[i].isreg = 1;
6743 inst.operands[i].present = 1;
6744 }
6745 }
6746 else if (((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
6747 &optype)) != FAIL)
6748 || ((val = arm_typed_reg_parse (&ptr, REG_TYPE_MQ, &rtype,
6749 &optype)) != FAIL))
6750 {
6751 /* Case 0: VMOV<c><q> <Qd>, <Qm>
6752 Case 1: VMOV<c><q> <Dd>, <Dm>
6753 Case 8: VMOV.F32 <Sd>, <Sm>
6754 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
6755
6756 inst.operands[i].reg = val;
6757 inst.operands[i].isreg = 1;
6758 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6759 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6760 inst.operands[i].isvec = 1;
6761 inst.operands[i].vectype = optype;
6762 inst.operands[i].present = 1;
6763
6764 if (skip_past_comma (&ptr) == SUCCESS)
6765 {
6766 /* Case 15. */
6767 i++;
6768
6769 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6770 goto wanted_arm;
6771
6772 inst.operands[i].reg = val;
6773 inst.operands[i].isreg = 1;
6774 inst.operands[i++].present = 1;
6775
6776 if (skip_past_comma (&ptr) == FAIL)
6777 goto wanted_comma;
6778
6779 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6780 goto wanted_arm;
6781
6782 inst.operands[i].reg = val;
6783 inst.operands[i].isreg = 1;
6784 inst.operands[i].present = 1;
6785 }
6786 }
6787 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
6788 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
6789 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
6790 Case 10: VMOV.F32 <Sd>, #<imm>
6791 Case 11: VMOV.F64 <Dd>, #<imm> */
6792 inst.operands[i].immisfloat = 1;
6793 else if (parse_big_immediate (&ptr, i, NULL, /*allow_symbol_p=*/FALSE)
6794 == SUCCESS)
6795 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6796 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6797 ;
6798 else
6799 {
6800 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6801 return FAIL;
6802 }
6803 }
6804 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6805 {
6806 /* Cases 6, 7, 16, 18. */
6807 inst.operands[i].reg = val;
6808 inst.operands[i].isreg = 1;
6809 inst.operands[i++].present = 1;
6810
6811 if (skip_past_comma (&ptr) == FAIL)
6812 goto wanted_comma;
6813
6814 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6815 {
6816 /* Case 18: VMOV<c>.<dt> <Rt>, <Qn[idx]> */
6817 inst.operands[i].reg = val;
6818 inst.operands[i].isscalar = 2;
6819 inst.operands[i].present = 1;
6820 inst.operands[i].vectype = optype;
6821 }
6822 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_VFD)) != FAIL)
6823 {
6824 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6825 inst.operands[i].reg = val;
6826 inst.operands[i].isscalar = 1;
6827 inst.operands[i].present = 1;
6828 inst.operands[i].vectype = optype;
6829 }
6830 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6831 {
6832 inst.operands[i].reg = val;
6833 inst.operands[i].isreg = 1;
6834 inst.operands[i++].present = 1;
6835
6836 if (skip_past_comma (&ptr) == FAIL)
6837 goto wanted_comma;
6838
6839 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6840 != FAIL)
6841 {
6842 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6843
6844 inst.operands[i].reg = val;
6845 inst.operands[i].isreg = 1;
6846 inst.operands[i].isvec = 1;
6847 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6848 inst.operands[i].vectype = optype;
6849 inst.operands[i].present = 1;
6850
6851 if (rtype == REG_TYPE_VFS)
6852 {
6853 /* Case 14. */
6854 i++;
6855 if (skip_past_comma (&ptr) == FAIL)
6856 goto wanted_comma;
6857 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6858 &optype)) == FAIL)
6859 {
6860 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6861 return FAIL;
6862 }
6863 inst.operands[i].reg = val;
6864 inst.operands[i].isreg = 1;
6865 inst.operands[i].isvec = 1;
6866 inst.operands[i].issingle = 1;
6867 inst.operands[i].vectype = optype;
6868 inst.operands[i].present = 1;
6869 }
6870 }
6871 else
6872 {
6873 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ))
6874 != FAIL)
6875 {
6876 /* Case 16: VMOV<c> <Rt>, <Rt2>, <Qd[idx]>, <Qd[idx2]> */
6877 inst.operands[i].reg = val;
6878 inst.operands[i].isvec = 1;
6879 inst.operands[i].isscalar = 2;
6880 inst.operands[i].vectype = optype;
6881 inst.operands[i++].present = 1;
6882
6883 if (skip_past_comma (&ptr) == FAIL)
6884 goto wanted_comma;
6885
6886 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ))
6887 == FAIL)
6888 {
6889 first_error (_(reg_expected_msgs[REG_TYPE_MQ]));
6890 return FAIL;
6891 }
6892 inst.operands[i].reg = val;
6893 inst.operands[i].isvec = 1;
6894 inst.operands[i].isscalar = 2;
6895 inst.operands[i].vectype = optype;
6896 inst.operands[i].present = 1;
6897 }
6898 else
6899 {
6900 first_error (_("VFP single, double or MVE vector register"
6901 " expected"));
6902 return FAIL;
6903 }
6904 }
6905 }
6906 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
6907 != FAIL)
6908 {
6909 /* Case 13. */
6910 inst.operands[i].reg = val;
6911 inst.operands[i].isreg = 1;
6912 inst.operands[i].isvec = 1;
6913 inst.operands[i].issingle = 1;
6914 inst.operands[i].vectype = optype;
6915 inst.operands[i].present = 1;
6916 }
6917 }
6918 else
6919 {
6920 first_error (_("parse error"));
6921 return FAIL;
6922 }
6923
6924 /* Successfully parsed the operands. Update args. */
6925 *which_operand = i;
6926 *str = ptr;
6927 return SUCCESS;
6928
6929 wanted_comma:
6930 first_error (_("expected comma"));
6931 return FAIL;
6932
6933 wanted_arm:
6934 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
6935 return FAIL;
6936 }
6937
6938 /* Use this macro when the operand constraints are different
6939 for ARM and THUMB (e.g. ldrd). */
6940 #define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6941 ((arm_operand) | ((thumb_operand) << 16))
6942
6943 /* Matcher codes for parse_operands. */
6944 enum operand_parse_code
6945 {
6946 OP_stop, /* end of line */
6947
6948 OP_RR, /* ARM register */
6949 OP_RRnpc, /* ARM register, not r15 */
6950 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
6951 OP_RRnpcb, /* ARM register, not r15, in square brackets */
6952 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
6953 optional trailing ! */
6954 OP_RRw, /* ARM register, not r15, optional trailing ! */
6955 OP_RCP, /* Coprocessor number */
6956 OP_RCN, /* Coprocessor register */
6957 OP_RF, /* FPA register */
6958 OP_RVS, /* VFP single precision register */
6959 OP_RVD, /* VFP double precision register (0..15) */
6960 OP_RND, /* Neon double precision register (0..31) */
6961 OP_RNDMQ, /* Neon double precision (0..31) or MVE vector register. */
6962 OP_RNDMQR, /* Neon double precision (0..31), MVE vector or ARM register.
6963 */
6964 OP_RNQ, /* Neon quad precision register */
6965 OP_RNQMQ, /* Neon quad or MVE vector register. */
6966 OP_RVSD, /* VFP single or double precision register */
6967 OP_RVSD_COND, /* VFP single, double precision register or condition code. */
6968 OP_RVSDMQ, /* VFP single, double precision or MVE vector register. */
6969 OP_RNSD, /* Neon single or double precision register */
6970 OP_RNDQ, /* Neon double or quad precision register */
6971 OP_RNDQMQ, /* Neon double, quad or MVE vector register. */
6972 OP_RNDQMQR, /* Neon double, quad, MVE vector or ARM register. */
6973 OP_RNSDQ, /* Neon single, double or quad precision register */
6974 OP_RNSC, /* Neon scalar D[X] */
6975 OP_RVC, /* VFP control register */
6976 OP_RMF, /* Maverick F register */
6977 OP_RMD, /* Maverick D register */
6978 OP_RMFX, /* Maverick FX register */
6979 OP_RMDX, /* Maverick DX register */
6980 OP_RMAX, /* Maverick AX register */
6981 OP_RMDS, /* Maverick DSPSC register */
6982 OP_RIWR, /* iWMMXt wR register */
6983 OP_RIWC, /* iWMMXt wC register */
6984 OP_RIWG, /* iWMMXt wCG register */
6985 OP_RXA, /* XScale accumulator register */
6986
6987 OP_RNSDQMQ, /* Neon single, double or quad register or MVE vector register
6988 */
6989 OP_RNSDQMQR, /* Neon single, double or quad register, MVE vector register or
6990 GPR (no SP/SP) */
6991 OP_RMQ, /* MVE vector register. */
6992 OP_RMQRZ, /* MVE vector or ARM register including ZR. */
6993 OP_RMQRR, /* MVE vector or ARM register. */
6994
6995 /* New operands for Armv8.1-M Mainline. */
6996 OP_LR, /* ARM LR register */
6997 OP_RRe, /* ARM register, only even numbered. */
6998 OP_RRo, /* ARM register, only odd numbered, not r13 or r15. */
6999 OP_RRnpcsp_I32, /* ARM register (no BadReg) or literal 1 .. 32 */
7000 OP_RR_ZR, /* ARM register or ZR but no PC */
7001
7002 OP_REGLST, /* ARM register list */
7003 OP_CLRMLST, /* CLRM register list */
7004 OP_VRSLST, /* VFP single-precision register list */
7005 OP_VRDLST, /* VFP double-precision register list */
7006 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
7007 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
7008 OP_NSTRLST, /* Neon element/structure list */
7009 OP_VRSDVLST, /* VFP single or double-precision register list and VPR */
7010 OP_MSTRLST2, /* MVE vector list with two elements. */
7011 OP_MSTRLST4, /* MVE vector list with four elements. */
7012
7013 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
7014 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
7015 OP_RSVD_FI0, /* VFP S or D reg, or floating point immediate zero. */
7016 OP_RSVDMQ_FI0, /* VFP S, D, MVE vector register or floating point immediate
7017 zero. */
7018 OP_RR_RNSC, /* ARM reg or Neon scalar. */
7019 OP_RNSD_RNSC, /* Neon S or D reg, or Neon scalar. */
7020 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
7021 OP_RNSDQ_RNSC_MQ, /* Vector S, D or Q reg, Neon scalar or MVE vector register.
7022 */
7023 OP_RNSDQ_RNSC_MQ_RR, /* Vector S, D or Q reg, or MVE vector reg , or Neon
7024 scalar, or ARM register. */
7025 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
7026 OP_RNDQ_RNSC_RR, /* Neon D or Q reg, Neon scalar, or ARM register. */
7027 OP_RNDQMQ_RNSC_RR, /* Neon D or Q reg, Neon scalar, MVE vector or ARM
7028 register. */
7029 OP_RNDQMQ_RNSC, /* Neon D, Q or MVE vector reg, or Neon scalar. */
7030 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
7031 OP_VMOV, /* Neon VMOV operands. */
7032 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
7033 /* Neon D, Q or MVE vector register, or big immediate for logic and VMVN. */
7034 OP_RNDQMQ_Ibig,
7035 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
7036 OP_RNDQMQ_I63b_RR, /* Neon D or Q reg, immediate for shift, MVE vector or
7037 ARM register. */
7038 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
7039 OP_VLDR, /* VLDR operand. */
7040
7041 OP_I0, /* immediate zero */
7042 OP_I7, /* immediate value 0 .. 7 */
7043 OP_I15, /* 0 .. 15 */
7044 OP_I16, /* 1 .. 16 */
7045 OP_I16z, /* 0 .. 16 */
7046 OP_I31, /* 0 .. 31 */
7047 OP_I31w, /* 0 .. 31, optional trailing ! */
7048 OP_I32, /* 1 .. 32 */
7049 OP_I32z, /* 0 .. 32 */
7050 OP_I48_I64, /* 48 or 64 */
7051 OP_I63, /* 0 .. 63 */
7052 OP_I63s, /* -64 .. 63 */
7053 OP_I64, /* 1 .. 64 */
7054 OP_I64z, /* 0 .. 64 */
7055 OP_I255, /* 0 .. 255 */
7056
7057 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
7058 OP_I7b, /* 0 .. 7 */
7059 OP_I15b, /* 0 .. 15 */
7060 OP_I31b, /* 0 .. 31 */
7061
7062 OP_SH, /* shifter operand */
7063 OP_SHG, /* shifter operand with possible group relocation */
7064 OP_ADDR, /* Memory address expression (any mode) */
7065 OP_ADDRMVE, /* Memory address expression for MVE's VSTR/VLDR. */
7066 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
7067 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
7068 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
7069 OP_EXP, /* arbitrary expression */
7070 OP_EXPi, /* same, with optional immediate prefix */
7071 OP_EXPr, /* same, with optional relocation suffix */
7072 OP_EXPs, /* same, with optional non-first operand relocation suffix */
7073 OP_HALF, /* 0 .. 65535 or low/high reloc. */
7074 OP_IROT1, /* VCADD rotate immediate: 90, 270. */
7075 OP_IROT2, /* VCMLA rotate immediate: 0, 90, 180, 270. */
7076
7077 OP_CPSF, /* CPS flags */
7078 OP_ENDI, /* Endianness specifier */
7079 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
7080 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
7081 OP_COND, /* conditional code */
7082 OP_TB, /* Table branch. */
7083
7084 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
7085
7086 OP_RRnpc_I0, /* ARM register or literal 0 */
7087 OP_RR_EXr, /* ARM register or expression with opt. reloc stuff. */
7088 OP_RR_EXi, /* ARM register or expression with imm prefix */
7089 OP_RF_IF, /* FPA register or immediate */
7090 OP_RIWR_RIWC, /* iWMMXt R or C reg */
7091 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
7092
7093 /* Optional operands. */
7094 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
7095 OP_oI31b, /* 0 .. 31 */
7096 OP_oI32b, /* 1 .. 32 */
7097 OP_oI32z, /* 0 .. 32 */
7098 OP_oIffffb, /* 0 .. 65535 */
7099 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
7100
7101 OP_oRR, /* ARM register */
7102 OP_oLR, /* ARM LR register */
7103 OP_oRRnpc, /* ARM register, not the PC */
7104 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
7105 OP_oRRw, /* ARM register, not r15, optional trailing ! */
7106 OP_oRND, /* Optional Neon double precision register */
7107 OP_oRNQ, /* Optional Neon quad precision register */
7108 OP_oRNDQMQ, /* Optional Neon double, quad or MVE vector register. */
7109 OP_oRNDQ, /* Optional Neon double or quad precision register */
7110 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
7111 OP_oRNSDQMQ, /* Optional single, double or quad register or MVE vector
7112 register. */
7113 OP_oSHll, /* LSL immediate */
7114 OP_oSHar, /* ASR immediate */
7115 OP_oSHllar, /* LSL or ASR immediate */
7116 OP_oROR, /* ROR 0/8/16/24 */
7117 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
7118
7119 OP_oRMQRZ, /* optional MVE vector or ARM register including ZR. */
7120
7121 /* Some pre-defined mixed (ARM/THUMB) operands. */
7122 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
7123 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
7124 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
7125
7126 OP_FIRST_OPTIONAL = OP_oI7b
7127 };
7128
7129 /* Generic instruction operand parser. This does no encoding and no
7130 semantic validation; it merely squirrels values away in the inst
7131 structure. Returns SUCCESS or FAIL depending on whether the
7132 specified grammar matched. */
7133 static int
7134 parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
7135 {
7136 unsigned const int *upat = pattern;
7137 char *backtrack_pos = 0;
7138 const char *backtrack_error = 0;
7139 int i, val = 0, backtrack_index = 0;
7140 enum arm_reg_type rtype;
7141 parse_operand_result result;
7142 unsigned int op_parse_code;
7143 bfd_boolean partial_match;
7144
7145 #define po_char_or_fail(chr) \
7146 do \
7147 { \
7148 if (skip_past_char (&str, chr) == FAIL) \
7149 goto bad_args; \
7150 } \
7151 while (0)
7152
7153 #define po_reg_or_fail(regtype) \
7154 do \
7155 { \
7156 val = arm_typed_reg_parse (& str, regtype, & rtype, \
7157 & inst.operands[i].vectype); \
7158 if (val == FAIL) \
7159 { \
7160 first_error (_(reg_expected_msgs[regtype])); \
7161 goto failure; \
7162 } \
7163 inst.operands[i].reg = val; \
7164 inst.operands[i].isreg = 1; \
7165 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
7166 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
7167 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
7168 || rtype == REG_TYPE_VFD \
7169 || rtype == REG_TYPE_NQ); \
7170 inst.operands[i].iszr = (rtype == REG_TYPE_ZR); \
7171 } \
7172 while (0)
7173
7174 #define po_reg_or_goto(regtype, label) \
7175 do \
7176 { \
7177 val = arm_typed_reg_parse (& str, regtype, & rtype, \
7178 & inst.operands[i].vectype); \
7179 if (val == FAIL) \
7180 goto label; \
7181 \
7182 inst.operands[i].reg = val; \
7183 inst.operands[i].isreg = 1; \
7184 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
7185 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
7186 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
7187 || rtype == REG_TYPE_VFD \
7188 || rtype == REG_TYPE_NQ); \
7189 inst.operands[i].iszr = (rtype == REG_TYPE_ZR); \
7190 } \
7191 while (0)
7192
7193 #define po_imm_or_fail(min, max, popt) \
7194 do \
7195 { \
7196 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
7197 goto failure; \
7198 inst.operands[i].imm = val; \
7199 } \
7200 while (0)
7201
7202 #define po_imm1_or_imm2_or_fail(imm1, imm2, popt) \
7203 do \
7204 { \
7205 expressionS exp; \
7206 my_get_expression (&exp, &str, popt); \
7207 if (exp.X_op != O_constant) \
7208 { \
7209 inst.error = _("constant expression required"); \
7210 goto failure; \
7211 } \
7212 if (exp.X_add_number != imm1 && exp.X_add_number != imm2) \
7213 { \
7214 inst.error = _("immediate value 48 or 64 expected"); \
7215 goto failure; \
7216 } \
7217 inst.operands[i].imm = exp.X_add_number; \
7218 } \
7219 while (0)
7220
7221 #define po_scalar_or_goto(elsz, label, reg_type) \
7222 do \
7223 { \
7224 val = parse_scalar (& str, elsz, & inst.operands[i].vectype, \
7225 reg_type); \
7226 if (val == FAIL) \
7227 goto label; \
7228 inst.operands[i].reg = val; \
7229 inst.operands[i].isscalar = 1; \
7230 } \
7231 while (0)
7232
7233 #define po_misc_or_fail(expr) \
7234 do \
7235 { \
7236 if (expr) \
7237 goto failure; \
7238 } \
7239 while (0)
7240
7241 #define po_misc_or_fail_no_backtrack(expr) \
7242 do \
7243 { \
7244 result = expr; \
7245 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
7246 backtrack_pos = 0; \
7247 if (result != PARSE_OPERAND_SUCCESS) \
7248 goto failure; \
7249 } \
7250 while (0)
7251
7252 #define po_barrier_or_imm(str) \
7253 do \
7254 { \
7255 val = parse_barrier (&str); \
7256 if (val == FAIL && ! ISALPHA (*str)) \
7257 goto immediate; \
7258 if (val == FAIL \
7259 /* ISB can only take SY as an option. */ \
7260 || ((inst.instruction & 0xf0) == 0x60 \
7261 && val != 0xf)) \
7262 { \
7263 inst.error = _("invalid barrier type"); \
7264 backtrack_pos = 0; \
7265 goto failure; \
7266 } \
7267 } \
7268 while (0)
7269
7270 skip_whitespace (str);
7271
7272 for (i = 0; upat[i] != OP_stop; i++)
7273 {
7274 op_parse_code = upat[i];
7275 if (op_parse_code >= 1<<16)
7276 op_parse_code = thumb ? (op_parse_code >> 16)
7277 : (op_parse_code & ((1<<16)-1));
7278
7279 if (op_parse_code >= OP_FIRST_OPTIONAL)
7280 {
7281 /* Remember where we are in case we need to backtrack. */
7282 backtrack_pos = str;
7283 backtrack_error = inst.error;
7284 backtrack_index = i;
7285 }
7286
7287 if (i > 0 && (i > 1 || inst.operands[0].present))
7288 po_char_or_fail (',');
7289
7290 switch (op_parse_code)
7291 {
7292 /* Registers */
7293 case OP_oRRnpc:
7294 case OP_oRRnpcsp:
7295 case OP_RRnpc:
7296 case OP_RRnpcsp:
7297 case OP_oRR:
7298 case OP_RRe:
7299 case OP_RRo:
7300 case OP_LR:
7301 case OP_oLR:
7302 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
7303 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
7304 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
7305 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
7306 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
7307 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
7308 case OP_oRND:
7309 case OP_RNDMQR:
7310 po_reg_or_goto (REG_TYPE_RN, try_rndmq);
7311 break;
7312 try_rndmq:
7313 case OP_RNDMQ:
7314 po_reg_or_goto (REG_TYPE_MQ, try_rnd);
7315 break;
7316 try_rnd:
7317 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
7318 case OP_RVC:
7319 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
7320 break;
7321 /* Also accept generic coprocessor regs for unknown registers. */
7322 coproc_reg:
7323 po_reg_or_goto (REG_TYPE_CN, vpr_po);
7324 break;
7325 /* Also accept P0 or p0 for VPR.P0. Since P0 is already an
7326 existing register with a value of 0, this seems like the
7327 best way to parse P0. */
7328 vpr_po:
7329 if (strncasecmp (str, "P0", 2) == 0)
7330 {
7331 str += 2;
7332 inst.operands[i].isreg = 1;
7333 inst.operands[i].reg = 13;
7334 }
7335 else
7336 goto failure;
7337 break;
7338 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
7339 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
7340 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
7341 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
7342 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
7343 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
7344 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
7345 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
7346 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
7347 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
7348 case OP_oRNQ:
7349 case OP_RNQMQ:
7350 po_reg_or_goto (REG_TYPE_MQ, try_nq);
7351 break;
7352 try_nq:
7353 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
7354 case OP_RNSD: po_reg_or_fail (REG_TYPE_NSD); break;
7355 case OP_RNDQMQR:
7356 po_reg_or_goto (REG_TYPE_RN, try_rndqmq);
7357 break;
7358 try_rndqmq:
7359 case OP_oRNDQMQ:
7360 case OP_RNDQMQ:
7361 po_reg_or_goto (REG_TYPE_MQ, try_rndq);
7362 break;
7363 try_rndq:
7364 case OP_oRNDQ:
7365 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
7366 case OP_RVSDMQ:
7367 po_reg_or_goto (REG_TYPE_MQ, try_rvsd);
7368 break;
7369 try_rvsd:
7370 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
7371 case OP_RVSD_COND:
7372 po_reg_or_goto (REG_TYPE_VFSD, try_cond);
7373 break;
7374 case OP_oRNSDQ:
7375 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
7376 case OP_RNSDQMQR:
7377 po_reg_or_goto (REG_TYPE_RN, try_mq);
7378 break;
7379 try_mq:
7380 case OP_oRNSDQMQ:
7381 case OP_RNSDQMQ:
7382 po_reg_or_goto (REG_TYPE_MQ, try_nsdq2);
7383 break;
7384 try_nsdq2:
7385 po_reg_or_fail (REG_TYPE_NSDQ);
7386 inst.error = 0;
7387 break;
7388 case OP_RMQRR:
7389 po_reg_or_goto (REG_TYPE_RN, try_rmq);
7390 break;
7391 try_rmq:
7392 case OP_RMQ:
7393 po_reg_or_fail (REG_TYPE_MQ);
7394 break;
7395 /* Neon scalar. Using an element size of 8 means that some invalid
7396 scalars are accepted here, so deal with those in later code. */
7397 case OP_RNSC: po_scalar_or_goto (8, failure, REG_TYPE_VFD); break;
7398
7399 case OP_RNDQ_I0:
7400 {
7401 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
7402 break;
7403 try_imm0:
7404 po_imm_or_fail (0, 0, TRUE);
7405 }
7406 break;
7407
7408 case OP_RVSD_I0:
7409 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
7410 break;
7411
7412 case OP_RSVDMQ_FI0:
7413 po_reg_or_goto (REG_TYPE_MQ, try_rsvd_fi0);
7414 break;
7415 try_rsvd_fi0:
7416 case OP_RSVD_FI0:
7417 {
7418 po_reg_or_goto (REG_TYPE_VFSD, try_ifimm0);
7419 break;
7420 try_ifimm0:
7421 if (parse_ifimm_zero (&str))
7422 inst.operands[i].imm = 0;
7423 else
7424 {
7425 inst.error
7426 = _("only floating point zero is allowed as immediate value");
7427 goto failure;
7428 }
7429 }
7430 break;
7431
7432 case OP_RR_RNSC:
7433 {
7434 po_scalar_or_goto (8, try_rr, REG_TYPE_VFD);
7435 break;
7436 try_rr:
7437 po_reg_or_fail (REG_TYPE_RN);
7438 }
7439 break;
7440
7441 case OP_RNSDQ_RNSC_MQ_RR:
7442 po_reg_or_goto (REG_TYPE_RN, try_rnsdq_rnsc_mq);
7443 break;
7444 try_rnsdq_rnsc_mq:
7445 case OP_RNSDQ_RNSC_MQ:
7446 po_reg_or_goto (REG_TYPE_MQ, try_rnsdq_rnsc);
7447 break;
7448 try_rnsdq_rnsc:
7449 case OP_RNSDQ_RNSC:
7450 {
7451 po_scalar_or_goto (8, try_nsdq, REG_TYPE_VFD);
7452 inst.error = 0;
7453 break;
7454 try_nsdq:
7455 po_reg_or_fail (REG_TYPE_NSDQ);
7456 inst.error = 0;
7457 }
7458 break;
7459
7460 case OP_RNSD_RNSC:
7461 {
7462 po_scalar_or_goto (8, try_s_scalar, REG_TYPE_VFD);
7463 break;
7464 try_s_scalar:
7465 po_scalar_or_goto (4, try_nsd, REG_TYPE_VFS);
7466 break;
7467 try_nsd:
7468 po_reg_or_fail (REG_TYPE_NSD);
7469 }
7470 break;
7471
7472 case OP_RNDQMQ_RNSC_RR:
7473 po_reg_or_goto (REG_TYPE_MQ, try_rndq_rnsc_rr);
7474 break;
7475 try_rndq_rnsc_rr:
7476 case OP_RNDQ_RNSC_RR:
7477 po_reg_or_goto (REG_TYPE_RN, try_rndq_rnsc);
7478 break;
7479 case OP_RNDQMQ_RNSC:
7480 po_reg_or_goto (REG_TYPE_MQ, try_rndq_rnsc);
7481 break;
7482 try_rndq_rnsc:
7483 case OP_RNDQ_RNSC:
7484 {
7485 po_scalar_or_goto (8, try_ndq, REG_TYPE_VFD);
7486 break;
7487 try_ndq:
7488 po_reg_or_fail (REG_TYPE_NDQ);
7489 }
7490 break;
7491
7492 case OP_RND_RNSC:
7493 {
7494 po_scalar_or_goto (8, try_vfd, REG_TYPE_VFD);
7495 break;
7496 try_vfd:
7497 po_reg_or_fail (REG_TYPE_VFD);
7498 }
7499 break;
7500
7501 case OP_VMOV:
7502 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
7503 not careful then bad things might happen. */
7504 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
7505 break;
7506
7507 case OP_RNDQMQ_Ibig:
7508 po_reg_or_goto (REG_TYPE_MQ, try_rndq_ibig);
7509 break;
7510 try_rndq_ibig:
7511 case OP_RNDQ_Ibig:
7512 {
7513 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
7514 break;
7515 try_immbig:
7516 /* There's a possibility of getting a 64-bit immediate here, so
7517 we need special handling. */
7518 if (parse_big_immediate (&str, i, NULL, /*allow_symbol_p=*/FALSE)
7519 == FAIL)
7520 {
7521 inst.error = _("immediate value is out of range");
7522 goto failure;
7523 }
7524 }
7525 break;
7526
7527 case OP_RNDQMQ_I63b_RR:
7528 po_reg_or_goto (REG_TYPE_MQ, try_rndq_i63b_rr);
7529 break;
7530 try_rndq_i63b_rr:
7531 po_reg_or_goto (REG_TYPE_RN, try_rndq_i63b);
7532 break;
7533 try_rndq_i63b:
7534 case OP_RNDQ_I63b:
7535 {
7536 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
7537 break;
7538 try_shimm:
7539 po_imm_or_fail (0, 63, TRUE);
7540 }
7541 break;
7542
7543 case OP_RRnpcb:
7544 po_char_or_fail ('[');
7545 po_reg_or_fail (REG_TYPE_RN);
7546 po_char_or_fail (']');
7547 break;
7548
7549 case OP_RRnpctw:
7550 case OP_RRw:
7551 case OP_oRRw:
7552 po_reg_or_fail (REG_TYPE_RN);
7553 if (skip_past_char (&str, '!') == SUCCESS)
7554 inst.operands[i].writeback = 1;
7555 break;
7556
7557 /* Immediates */
7558 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
7559 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
7560 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
7561 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
7562 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
7563 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
7564 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
7565 case OP_I48_I64: po_imm1_or_imm2_or_fail (48, 64, FALSE); break;
7566 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
7567 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
7568 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
7569 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
7570 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
7571
7572 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
7573 case OP_oI7b:
7574 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
7575 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
7576 case OP_oI31b:
7577 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
7578 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
7579 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
7580 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
7581
7582 /* Immediate variants */
7583 case OP_oI255c:
7584 po_char_or_fail ('{');
7585 po_imm_or_fail (0, 255, TRUE);
7586 po_char_or_fail ('}');
7587 break;
7588
7589 case OP_I31w:
7590 /* The expression parser chokes on a trailing !, so we have
7591 to find it first and zap it. */
7592 {
7593 char *s = str;
7594 while (*s && *s != ',')
7595 s++;
7596 if (s[-1] == '!')
7597 {
7598 s[-1] = '\0';
7599 inst.operands[i].writeback = 1;
7600 }
7601 po_imm_or_fail (0, 31, TRUE);
7602 if (str == s - 1)
7603 str = s;
7604 }
7605 break;
7606
7607 /* Expressions */
7608 case OP_EXPi: EXPi:
7609 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7610 GE_OPT_PREFIX));
7611 break;
7612
7613 case OP_EXP:
7614 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7615 GE_NO_PREFIX));
7616 break;
7617
7618 case OP_EXPr: EXPr:
7619 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7620 GE_NO_PREFIX));
7621 if (inst.relocs[0].exp.X_op == O_symbol)
7622 {
7623 val = parse_reloc (&str);
7624 if (val == -1)
7625 {
7626 inst.error = _("unrecognized relocation suffix");
7627 goto failure;
7628 }
7629 else if (val != BFD_RELOC_UNUSED)
7630 {
7631 inst.operands[i].imm = val;
7632 inst.operands[i].hasreloc = 1;
7633 }
7634 }
7635 break;
7636
7637 case OP_EXPs:
7638 po_misc_or_fail (my_get_expression (&inst.relocs[i].exp, &str,
7639 GE_NO_PREFIX));
7640 if (inst.relocs[i].exp.X_op == O_symbol)
7641 {
7642 inst.operands[i].hasreloc = 1;
7643 }
7644 else if (inst.relocs[i].exp.X_op == O_constant)
7645 {
7646 inst.operands[i].imm = inst.relocs[i].exp.X_add_number;
7647 inst.operands[i].hasreloc = 0;
7648 }
7649 break;
7650
7651 /* Operand for MOVW or MOVT. */
7652 case OP_HALF:
7653 po_misc_or_fail (parse_half (&str));
7654 break;
7655
7656 /* Register or expression. */
7657 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
7658 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
7659
7660 /* Register or immediate. */
7661 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
7662 I0: po_imm_or_fail (0, 0, FALSE); break;
7663
7664 case OP_RRnpcsp_I32: po_reg_or_goto (REG_TYPE_RN, I32); break;
7665 I32: po_imm_or_fail (1, 32, FALSE); break;
7666
7667 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
7668 IF:
7669 if (!is_immediate_prefix (*str))
7670 goto bad_args;
7671 str++;
7672 val = parse_fpa_immediate (&str);
7673 if (val == FAIL)
7674 goto failure;
7675 /* FPA immediates are encoded as registers 8-15.
7676 parse_fpa_immediate has already applied the offset. */
7677 inst.operands[i].reg = val;
7678 inst.operands[i].isreg = 1;
7679 break;
7680
7681 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
7682 I32z: po_imm_or_fail (0, 32, FALSE); break;
7683
7684 /* Two kinds of register. */
7685 case OP_RIWR_RIWC:
7686 {
7687 struct reg_entry *rege = arm_reg_parse_multi (&str);
7688 if (!rege
7689 || (rege->type != REG_TYPE_MMXWR
7690 && rege->type != REG_TYPE_MMXWC
7691 && rege->type != REG_TYPE_MMXWCG))
7692 {
7693 inst.error = _("iWMMXt data or control register expected");
7694 goto failure;
7695 }
7696 inst.operands[i].reg = rege->number;
7697 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
7698 }
7699 break;
7700
7701 case OP_RIWC_RIWG:
7702 {
7703 struct reg_entry *rege = arm_reg_parse_multi (&str);
7704 if (!rege
7705 || (rege->type != REG_TYPE_MMXWC
7706 && rege->type != REG_TYPE_MMXWCG))
7707 {
7708 inst.error = _("iWMMXt control register expected");
7709 goto failure;
7710 }
7711 inst.operands[i].reg = rege->number;
7712 inst.operands[i].isreg = 1;
7713 }
7714 break;
7715
7716 /* Misc */
7717 case OP_CPSF: val = parse_cps_flags (&str); break;
7718 case OP_ENDI: val = parse_endian_specifier (&str); break;
7719 case OP_oROR: val = parse_ror (&str); break;
7720 try_cond:
7721 case OP_COND: val = parse_cond (&str); break;
7722 case OP_oBARRIER_I15:
7723 po_barrier_or_imm (str); break;
7724 immediate:
7725 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
7726 goto failure;
7727 break;
7728
7729 case OP_wPSR:
7730 case OP_rPSR:
7731 po_reg_or_goto (REG_TYPE_RNB, try_psr);
7732 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
7733 {
7734 inst.error = _("Banked registers are not available with this "
7735 "architecture.");
7736 goto failure;
7737 }
7738 break;
7739 try_psr:
7740 val = parse_psr (&str, op_parse_code == OP_wPSR);
7741 break;
7742
7743 case OP_VLDR:
7744 po_reg_or_goto (REG_TYPE_VFSD, try_sysreg);
7745 break;
7746 try_sysreg:
7747 val = parse_sys_vldr_vstr (&str);
7748 break;
7749
7750 case OP_APSR_RR:
7751 po_reg_or_goto (REG_TYPE_RN, try_apsr);
7752 break;
7753 try_apsr:
7754 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
7755 instruction). */
7756 if (strncasecmp (str, "APSR_", 5) == 0)
7757 {
7758 unsigned found = 0;
7759 str += 5;
7760 while (found < 15)
7761 switch (*str++)
7762 {
7763 case 'c': found = (found & 1) ? 16 : found | 1; break;
7764 case 'n': found = (found & 2) ? 16 : found | 2; break;
7765 case 'z': found = (found & 4) ? 16 : found | 4; break;
7766 case 'v': found = (found & 8) ? 16 : found | 8; break;
7767 default: found = 16;
7768 }
7769 if (found != 15)
7770 goto failure;
7771 inst.operands[i].isvec = 1;
7772 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
7773 inst.operands[i].reg = REG_PC;
7774 }
7775 else
7776 goto failure;
7777 break;
7778
7779 case OP_TB:
7780 po_misc_or_fail (parse_tb (&str));
7781 break;
7782
7783 /* Register lists. */
7784 case OP_REGLST:
7785 val = parse_reg_list (&str, REGLIST_RN);
7786 if (*str == '^')
7787 {
7788 inst.operands[i].writeback = 1;
7789 str++;
7790 }
7791 break;
7792
7793 case OP_CLRMLST:
7794 val = parse_reg_list (&str, REGLIST_CLRM);
7795 break;
7796
7797 case OP_VRSLST:
7798 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S,
7799 &partial_match);
7800 break;
7801
7802 case OP_VRDLST:
7803 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D,
7804 &partial_match);
7805 break;
7806
7807 case OP_VRSDLST:
7808 /* Allow Q registers too. */
7809 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7810 REGLIST_NEON_D, &partial_match);
7811 if (val == FAIL)
7812 {
7813 inst.error = NULL;
7814 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7815 REGLIST_VFP_S, &partial_match);
7816 inst.operands[i].issingle = 1;
7817 }
7818 break;
7819
7820 case OP_VRSDVLST:
7821 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7822 REGLIST_VFP_D_VPR, &partial_match);
7823 if (val == FAIL && !partial_match)
7824 {
7825 inst.error = NULL;
7826 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7827 REGLIST_VFP_S_VPR, &partial_match);
7828 inst.operands[i].issingle = 1;
7829 }
7830 break;
7831
7832 case OP_NRDLST:
7833 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7834 REGLIST_NEON_D, &partial_match);
7835 break;
7836
7837 case OP_MSTRLST4:
7838 case OP_MSTRLST2:
7839 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7840 1, &inst.operands[i].vectype);
7841 if (val != (((op_parse_code == OP_MSTRLST2) ? 3 : 7) << 5 | 0xe))
7842 goto failure;
7843 break;
7844 case OP_NSTRLST:
7845 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7846 0, &inst.operands[i].vectype);
7847 break;
7848
7849 /* Addressing modes */
7850 case OP_ADDRMVE:
7851 po_misc_or_fail (parse_address_group_reloc (&str, i, GROUP_MVE));
7852 break;
7853
7854 case OP_ADDR:
7855 po_misc_or_fail (parse_address (&str, i));
7856 break;
7857
7858 case OP_ADDRGLDR:
7859 po_misc_or_fail_no_backtrack (
7860 parse_address_group_reloc (&str, i, GROUP_LDR));
7861 break;
7862
7863 case OP_ADDRGLDRS:
7864 po_misc_or_fail_no_backtrack (
7865 parse_address_group_reloc (&str, i, GROUP_LDRS));
7866 break;
7867
7868 case OP_ADDRGLDC:
7869 po_misc_or_fail_no_backtrack (
7870 parse_address_group_reloc (&str, i, GROUP_LDC));
7871 break;
7872
7873 case OP_SH:
7874 po_misc_or_fail (parse_shifter_operand (&str, i));
7875 break;
7876
7877 case OP_SHG:
7878 po_misc_or_fail_no_backtrack (
7879 parse_shifter_operand_group_reloc (&str, i));
7880 break;
7881
7882 case OP_oSHll:
7883 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
7884 break;
7885
7886 case OP_oSHar:
7887 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
7888 break;
7889
7890 case OP_oSHllar:
7891 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
7892 break;
7893
7894 case OP_RMQRZ:
7895 case OP_oRMQRZ:
7896 po_reg_or_goto (REG_TYPE_MQ, try_rr_zr);
7897 break;
7898
7899 case OP_RR_ZR:
7900 try_rr_zr:
7901 po_reg_or_goto (REG_TYPE_RN, ZR);
7902 break;
7903 ZR:
7904 po_reg_or_fail (REG_TYPE_ZR);
7905 break;
7906
7907 default:
7908 as_fatal (_("unhandled operand code %d"), op_parse_code);
7909 }
7910
7911 /* Various value-based sanity checks and shared operations. We
7912 do not signal immediate failures for the register constraints;
7913 this allows a syntax error to take precedence. */
7914 switch (op_parse_code)
7915 {
7916 case OP_oRRnpc:
7917 case OP_RRnpc:
7918 case OP_RRnpcb:
7919 case OP_RRw:
7920 case OP_oRRw:
7921 case OP_RRnpc_I0:
7922 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
7923 inst.error = BAD_PC;
7924 break;
7925
7926 case OP_oRRnpcsp:
7927 case OP_RRnpcsp:
7928 case OP_RRnpcsp_I32:
7929 if (inst.operands[i].isreg)
7930 {
7931 if (inst.operands[i].reg == REG_PC)
7932 inst.error = BAD_PC;
7933 else if (inst.operands[i].reg == REG_SP
7934 /* The restriction on Rd/Rt/Rt2 on Thumb mode has been
7935 relaxed since ARMv8-A. */
7936 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
7937 {
7938 gas_assert (thumb);
7939 inst.error = BAD_SP;
7940 }
7941 }
7942 break;
7943
7944 case OP_RRnpctw:
7945 if (inst.operands[i].isreg
7946 && inst.operands[i].reg == REG_PC
7947 && (inst.operands[i].writeback || thumb))
7948 inst.error = BAD_PC;
7949 break;
7950
7951 case OP_RVSD_COND:
7952 case OP_VLDR:
7953 if (inst.operands[i].isreg)
7954 break;
7955 /* fall through. */
7956
7957 case OP_CPSF:
7958 case OP_ENDI:
7959 case OP_oROR:
7960 case OP_wPSR:
7961 case OP_rPSR:
7962 case OP_COND:
7963 case OP_oBARRIER_I15:
7964 case OP_REGLST:
7965 case OP_CLRMLST:
7966 case OP_VRSLST:
7967 case OP_VRDLST:
7968 case OP_VRSDLST:
7969 case OP_VRSDVLST:
7970 case OP_NRDLST:
7971 case OP_NSTRLST:
7972 case OP_MSTRLST2:
7973 case OP_MSTRLST4:
7974 if (val == FAIL)
7975 goto failure;
7976 inst.operands[i].imm = val;
7977 break;
7978
7979 case OP_LR:
7980 case OP_oLR:
7981 if (inst.operands[i].reg != REG_LR)
7982 inst.error = _("operand must be LR register");
7983 break;
7984
7985 case OP_RMQRZ:
7986 case OP_oRMQRZ:
7987 case OP_RR_ZR:
7988 if (!inst.operands[i].iszr && inst.operands[i].reg == REG_PC)
7989 inst.error = BAD_PC;
7990 break;
7991
7992 case OP_RRe:
7993 if (inst.operands[i].isreg
7994 && (inst.operands[i].reg & 0x00000001) != 0)
7995 inst.error = BAD_ODD;
7996 break;
7997
7998 case OP_RRo:
7999 if (inst.operands[i].isreg)
8000 {
8001 if ((inst.operands[i].reg & 0x00000001) != 1)
8002 inst.error = BAD_EVEN;
8003 else if (inst.operands[i].reg == REG_SP)
8004 as_tsktsk (MVE_BAD_SP);
8005 else if (inst.operands[i].reg == REG_PC)
8006 inst.error = BAD_PC;
8007 }
8008 break;
8009
8010 default:
8011 break;
8012 }
8013
8014 /* If we get here, this operand was successfully parsed. */
8015 inst.operands[i].present = 1;
8016 continue;
8017
8018 bad_args:
8019 inst.error = BAD_ARGS;
8020
8021 failure:
8022 if (!backtrack_pos)
8023 {
8024 /* The parse routine should already have set inst.error, but set a
8025 default here just in case. */
8026 if (!inst.error)
8027 inst.error = BAD_SYNTAX;
8028 return FAIL;
8029 }
8030
8031 /* Do not backtrack over a trailing optional argument that
8032 absorbed some text. We will only fail again, with the
8033 'garbage following instruction' error message, which is
8034 probably less helpful than the current one. */
8035 if (backtrack_index == i && backtrack_pos != str
8036 && upat[i+1] == OP_stop)
8037 {
8038 if (!inst.error)
8039 inst.error = BAD_SYNTAX;
8040 return FAIL;
8041 }
8042
8043 /* Try again, skipping the optional argument at backtrack_pos. */
8044 str = backtrack_pos;
8045 inst.error = backtrack_error;
8046 inst.operands[backtrack_index].present = 0;
8047 i = backtrack_index;
8048 backtrack_pos = 0;
8049 }
8050
8051 /* Check that we have parsed all the arguments. */
8052 if (*str != '\0' && !inst.error)
8053 inst.error = _("garbage following instruction");
8054
8055 return inst.error ? FAIL : SUCCESS;
8056 }
8057
8058 #undef po_char_or_fail
8059 #undef po_reg_or_fail
8060 #undef po_reg_or_goto
8061 #undef po_imm_or_fail
8062 #undef po_scalar_or_fail
8063 #undef po_barrier_or_imm
8064
8065 /* Shorthand macro for instruction encoding functions issuing errors. */
8066 #define constraint(expr, err) \
8067 do \
8068 { \
8069 if (expr) \
8070 { \
8071 inst.error = err; \
8072 return; \
8073 } \
8074 } \
8075 while (0)
8076
8077 /* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
8078 instructions are unpredictable if these registers are used. This
8079 is the BadReg predicate in ARM's Thumb-2 documentation.
8080
8081 Before ARMv8-A, REG_PC and REG_SP were not allowed in quite a few
8082 places, while the restriction on REG_SP was relaxed since ARMv8-A. */
8083 #define reject_bad_reg(reg) \
8084 do \
8085 if (reg == REG_PC) \
8086 { \
8087 inst.error = BAD_PC; \
8088 return; \
8089 } \
8090 else if (reg == REG_SP \
8091 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8)) \
8092 { \
8093 inst.error = BAD_SP; \
8094 return; \
8095 } \
8096 while (0)
8097
8098 /* If REG is R13 (the stack pointer), warn that its use is
8099 deprecated. */
8100 #define warn_deprecated_sp(reg) \
8101 do \
8102 if (warn_on_deprecated && reg == REG_SP) \
8103 as_tsktsk (_("use of r13 is deprecated")); \
8104 while (0)
8105
8106 /* Functions for operand encoding. ARM, then Thumb. */
8107
8108 #define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
8109
8110 /* If the current inst is scalar ARMv8.2 fp16 instruction, do special encoding.
8111
8112 The only binary encoding difference is the Coprocessor number. Coprocessor
8113 9 is used for half-precision calculations or conversions. The format of the
8114 instruction is the same as the equivalent Coprocessor 10 instruction that
8115 exists for Single-Precision operation. */
8116
8117 static void
8118 do_scalar_fp16_v82_encode (void)
8119 {
8120 if (inst.cond < COND_ALWAYS)
8121 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
8122 " the behaviour is UNPREDICTABLE"));
8123 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
8124 _(BAD_FP16));
8125
8126 inst.instruction = (inst.instruction & 0xfffff0ff) | 0x900;
8127 mark_feature_used (&arm_ext_fp16);
8128 }
8129
8130 /* If VAL can be encoded in the immediate field of an ARM instruction,
8131 return the encoded form. Otherwise, return FAIL. */
8132
8133 static unsigned int
8134 encode_arm_immediate (unsigned int val)
8135 {
8136 unsigned int a, i;
8137
8138 if (val <= 0xff)
8139 return val;
8140
8141 for (i = 2; i < 32; i += 2)
8142 if ((a = rotate_left (val, i)) <= 0xff)
8143 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
8144
8145 return FAIL;
8146 }
8147
8148 /* If VAL can be encoded in the immediate field of a Thumb32 instruction,
8149 return the encoded form. Otherwise, return FAIL. */
8150 static unsigned int
8151 encode_thumb32_immediate (unsigned int val)
8152 {
8153 unsigned int a, i;
8154
8155 if (val <= 0xff)
8156 return val;
8157
8158 for (i = 1; i <= 24; i++)
8159 {
8160 a = val >> i;
8161 if ((val & ~(0xff << i)) == 0)
8162 return ((val >> i) & 0x7f) | ((32 - i) << 7);
8163 }
8164
8165 a = val & 0xff;
8166 if (val == ((a << 16) | a))
8167 return 0x100 | a;
8168 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
8169 return 0x300 | a;
8170
8171 a = val & 0xff00;
8172 if (val == ((a << 16) | a))
8173 return 0x200 | (a >> 8);
8174
8175 return FAIL;
8176 }
8177 /* Encode a VFP SP or DP register number into inst.instruction. */
8178
8179 static void
8180 encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
8181 {
8182 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
8183 && reg > 15)
8184 {
8185 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
8186 {
8187 if (thumb_mode)
8188 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
8189 fpu_vfp_ext_d32);
8190 else
8191 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
8192 fpu_vfp_ext_d32);
8193 }
8194 else
8195 {
8196 first_error (_("D register out of range for selected VFP version"));
8197 return;
8198 }
8199 }
8200
8201 switch (pos)
8202 {
8203 case VFP_REG_Sd:
8204 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
8205 break;
8206
8207 case VFP_REG_Sn:
8208 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
8209 break;
8210
8211 case VFP_REG_Sm:
8212 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
8213 break;
8214
8215 case VFP_REG_Dd:
8216 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
8217 break;
8218
8219 case VFP_REG_Dn:
8220 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
8221 break;
8222
8223 case VFP_REG_Dm:
8224 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
8225 break;
8226
8227 default:
8228 abort ();
8229 }
8230 }
8231
8232 /* Encode a <shift> in an ARM-format instruction. The immediate,
8233 if any, is handled by md_apply_fix. */
8234 static void
8235 encode_arm_shift (int i)
8236 {
8237 /* register-shifted register. */
8238 if (inst.operands[i].immisreg)
8239 {
8240 int op_index;
8241 for (op_index = 0; op_index <= i; ++op_index)
8242 {
8243 /* Check the operand only when it's presented. In pre-UAL syntax,
8244 if the destination register is the same as the first operand, two
8245 register form of the instruction can be used. */
8246 if (inst.operands[op_index].present && inst.operands[op_index].isreg
8247 && inst.operands[op_index].reg == REG_PC)
8248 as_warn (UNPRED_REG ("r15"));
8249 }
8250
8251 if (inst.operands[i].imm == REG_PC)
8252 as_warn (UNPRED_REG ("r15"));
8253 }
8254
8255 if (inst.operands[i].shift_kind == SHIFT_RRX)
8256 inst.instruction |= SHIFT_ROR << 5;
8257 else
8258 {
8259 inst.instruction |= inst.operands[i].shift_kind << 5;
8260 if (inst.operands[i].immisreg)
8261 {
8262 inst.instruction |= SHIFT_BY_REG;
8263 inst.instruction |= inst.operands[i].imm << 8;
8264 }
8265 else
8266 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
8267 }
8268 }
8269
8270 static void
8271 encode_arm_shifter_operand (int i)
8272 {
8273 if (inst.operands[i].isreg)
8274 {
8275 inst.instruction |= inst.operands[i].reg;
8276 encode_arm_shift (i);
8277 }
8278 else
8279 {
8280 inst.instruction |= INST_IMMEDIATE;
8281 if (inst.relocs[0].type != BFD_RELOC_ARM_IMMEDIATE)
8282 inst.instruction |= inst.operands[i].imm;
8283 }
8284 }
8285
8286 /* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
8287 static void
8288 encode_arm_addr_mode_common (int i, bfd_boolean is_t)
8289 {
8290 /* PR 14260:
8291 Generate an error if the operand is not a register. */
8292 constraint (!inst.operands[i].isreg,
8293 _("Instruction does not support =N addresses"));
8294
8295 inst.instruction |= inst.operands[i].reg << 16;
8296
8297 if (inst.operands[i].preind)
8298 {
8299 if (is_t)
8300 {
8301 inst.error = _("instruction does not accept preindexed addressing");
8302 return;
8303 }
8304 inst.instruction |= PRE_INDEX;
8305 if (inst.operands[i].writeback)
8306 inst.instruction |= WRITE_BACK;
8307
8308 }
8309 else if (inst.operands[i].postind)
8310 {
8311 gas_assert (inst.operands[i].writeback);
8312 if (is_t)
8313 inst.instruction |= WRITE_BACK;
8314 }
8315 else /* unindexed - only for coprocessor */
8316 {
8317 inst.error = _("instruction does not accept unindexed addressing");
8318 return;
8319 }
8320
8321 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
8322 && (((inst.instruction & 0x000f0000) >> 16)
8323 == ((inst.instruction & 0x0000f000) >> 12)))
8324 as_warn ((inst.instruction & LOAD_BIT)
8325 ? _("destination register same as write-back base")
8326 : _("source register same as write-back base"));
8327 }
8328
8329 /* inst.operands[i] was set up by parse_address. Encode it into an
8330 ARM-format mode 2 load or store instruction. If is_t is true,
8331 reject forms that cannot be used with a T instruction (i.e. not
8332 post-indexed). */
8333 static void
8334 encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
8335 {
8336 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
8337
8338 encode_arm_addr_mode_common (i, is_t);
8339
8340 if (inst.operands[i].immisreg)
8341 {
8342 constraint ((inst.operands[i].imm == REG_PC
8343 || (is_pc && inst.operands[i].writeback)),
8344 BAD_PC_ADDRESSING);
8345 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
8346 inst.instruction |= inst.operands[i].imm;
8347 if (!inst.operands[i].negative)
8348 inst.instruction |= INDEX_UP;
8349 if (inst.operands[i].shifted)
8350 {
8351 if (inst.operands[i].shift_kind == SHIFT_RRX)
8352 inst.instruction |= SHIFT_ROR << 5;
8353 else
8354 {
8355 inst.instruction |= inst.operands[i].shift_kind << 5;
8356 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
8357 }
8358 }
8359 }
8360 else /* immediate offset in inst.relocs[0] */
8361 {
8362 if (is_pc && !inst.relocs[0].pc_rel)
8363 {
8364 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
8365
8366 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
8367 cannot use PC in addressing.
8368 PC cannot be used in writeback addressing, either. */
8369 constraint ((is_t || inst.operands[i].writeback),
8370 BAD_PC_ADDRESSING);
8371
8372 /* Use of PC in str is deprecated for ARMv7. */
8373 if (warn_on_deprecated
8374 && !is_load
8375 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
8376 as_tsktsk (_("use of PC in this instruction is deprecated"));
8377 }
8378
8379 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
8380 {
8381 /* Prefer + for zero encoded value. */
8382 if (!inst.operands[i].negative)
8383 inst.instruction |= INDEX_UP;
8384 inst.relocs[0].type = BFD_RELOC_ARM_OFFSET_IMM;
8385 }
8386 }
8387 }
8388
8389 /* inst.operands[i] was set up by parse_address. Encode it into an
8390 ARM-format mode 3 load or store instruction. Reject forms that
8391 cannot be used with such instructions. If is_t is true, reject
8392 forms that cannot be used with a T instruction (i.e. not
8393 post-indexed). */
8394 static void
8395 encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
8396 {
8397 if (inst.operands[i].immisreg && inst.operands[i].shifted)
8398 {
8399 inst.error = _("instruction does not accept scaled register index");
8400 return;
8401 }
8402
8403 encode_arm_addr_mode_common (i, is_t);
8404
8405 if (inst.operands[i].immisreg)
8406 {
8407 constraint ((inst.operands[i].imm == REG_PC
8408 || (is_t && inst.operands[i].reg == REG_PC)),
8409 BAD_PC_ADDRESSING);
8410 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
8411 BAD_PC_WRITEBACK);
8412 inst.instruction |= inst.operands[i].imm;
8413 if (!inst.operands[i].negative)
8414 inst.instruction |= INDEX_UP;
8415 }
8416 else /* immediate offset in inst.relocs[0] */
8417 {
8418 constraint ((inst.operands[i].reg == REG_PC && !inst.relocs[0].pc_rel
8419 && inst.operands[i].writeback),
8420 BAD_PC_WRITEBACK);
8421 inst.instruction |= HWOFFSET_IMM;
8422 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
8423 {
8424 /* Prefer + for zero encoded value. */
8425 if (!inst.operands[i].negative)
8426 inst.instruction |= INDEX_UP;
8427
8428 inst.relocs[0].type = BFD_RELOC_ARM_OFFSET_IMM8;
8429 }
8430 }
8431 }
8432
8433 /* Write immediate bits [7:0] to the following locations:
8434
8435 |28/24|23 19|18 16|15 4|3 0|
8436 | a |x x x x x|b c d|x x x x x x x x x x x x|e f g h|
8437
8438 This function is used by VMOV/VMVN/VORR/VBIC. */
8439
8440 static void
8441 neon_write_immbits (unsigned immbits)
8442 {
8443 inst.instruction |= immbits & 0xf;
8444 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
8445 inst.instruction |= ((immbits >> 7) & 0x1) << (thumb_mode ? 28 : 24);
8446 }
8447
8448 /* Invert low-order SIZE bits of XHI:XLO. */
8449
8450 static void
8451 neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
8452 {
8453 unsigned immlo = xlo ? *xlo : 0;
8454 unsigned immhi = xhi ? *xhi : 0;
8455
8456 switch (size)
8457 {
8458 case 8:
8459 immlo = (~immlo) & 0xff;
8460 break;
8461
8462 case 16:
8463 immlo = (~immlo) & 0xffff;
8464 break;
8465
8466 case 64:
8467 immhi = (~immhi) & 0xffffffff;
8468 /* fall through. */
8469
8470 case 32:
8471 immlo = (~immlo) & 0xffffffff;
8472 break;
8473
8474 default:
8475 abort ();
8476 }
8477
8478 if (xlo)
8479 *xlo = immlo;
8480
8481 if (xhi)
8482 *xhi = immhi;
8483 }
8484
8485 /* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
8486 A, B, C, D. */
8487
8488 static int
8489 neon_bits_same_in_bytes (unsigned imm)
8490 {
8491 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
8492 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
8493 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
8494 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
8495 }
8496
8497 /* For immediate of above form, return 0bABCD. */
8498
8499 static unsigned
8500 neon_squash_bits (unsigned imm)
8501 {
8502 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
8503 | ((imm & 0x01000000) >> 21);
8504 }
8505
8506 /* Compress quarter-float representation to 0b...000 abcdefgh. */
8507
8508 static unsigned
8509 neon_qfloat_bits (unsigned imm)
8510 {
8511 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
8512 }
8513
8514 /* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
8515 the instruction. *OP is passed as the initial value of the op field, and
8516 may be set to a different value depending on the constant (i.e.
8517 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
8518 MVN). If the immediate looks like a repeated pattern then also
8519 try smaller element sizes. */
8520
8521 static int
8522 neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
8523 unsigned *immbits, int *op, int size,
8524 enum neon_el_type type)
8525 {
8526 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
8527 float. */
8528 if (type == NT_float && !float_p)
8529 return FAIL;
8530
8531 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
8532 {
8533 if (size != 32 || *op == 1)
8534 return FAIL;
8535 *immbits = neon_qfloat_bits (immlo);
8536 return 0xf;
8537 }
8538
8539 if (size == 64)
8540 {
8541 if (neon_bits_same_in_bytes (immhi)
8542 && neon_bits_same_in_bytes (immlo))
8543 {
8544 if (*op == 1)
8545 return FAIL;
8546 *immbits = (neon_squash_bits (immhi) << 4)
8547 | neon_squash_bits (immlo);
8548 *op = 1;
8549 return 0xe;
8550 }
8551
8552 if (immhi != immlo)
8553 return FAIL;
8554 }
8555
8556 if (size >= 32)
8557 {
8558 if (immlo == (immlo & 0x000000ff))
8559 {
8560 *immbits = immlo;
8561 return 0x0;
8562 }
8563 else if (immlo == (immlo & 0x0000ff00))
8564 {
8565 *immbits = immlo >> 8;
8566 return 0x2;
8567 }
8568 else if (immlo == (immlo & 0x00ff0000))
8569 {
8570 *immbits = immlo >> 16;
8571 return 0x4;
8572 }
8573 else if (immlo == (immlo & 0xff000000))
8574 {
8575 *immbits = immlo >> 24;
8576 return 0x6;
8577 }
8578 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
8579 {
8580 *immbits = (immlo >> 8) & 0xff;
8581 return 0xc;
8582 }
8583 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
8584 {
8585 *immbits = (immlo >> 16) & 0xff;
8586 return 0xd;
8587 }
8588
8589 if ((immlo & 0xffff) != (immlo >> 16))
8590 return FAIL;
8591 immlo &= 0xffff;
8592 }
8593
8594 if (size >= 16)
8595 {
8596 if (immlo == (immlo & 0x000000ff))
8597 {
8598 *immbits = immlo;
8599 return 0x8;
8600 }
8601 else if (immlo == (immlo & 0x0000ff00))
8602 {
8603 *immbits = immlo >> 8;
8604 return 0xa;
8605 }
8606
8607 if ((immlo & 0xff) != (immlo >> 8))
8608 return FAIL;
8609 immlo &= 0xff;
8610 }
8611
8612 if (immlo == (immlo & 0x000000ff))
8613 {
8614 /* Don't allow MVN with 8-bit immediate. */
8615 if (*op == 1)
8616 return FAIL;
8617 *immbits = immlo;
8618 return 0xe;
8619 }
8620
8621 return FAIL;
8622 }
8623
8624 #if defined BFD_HOST_64_BIT
8625 /* Returns TRUE if double precision value V may be cast
8626 to single precision without loss of accuracy. */
8627
8628 static bfd_boolean
8629 is_double_a_single (bfd_int64_t v)
8630 {
8631 int exp = (int)((v >> 52) & 0x7FF);
8632 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
8633
8634 return (exp == 0 || exp == 0x7FF
8635 || (exp >= 1023 - 126 && exp <= 1023 + 127))
8636 && (mantissa & 0x1FFFFFFFl) == 0;
8637 }
8638
8639 /* Returns a double precision value casted to single precision
8640 (ignoring the least significant bits in exponent and mantissa). */
8641
8642 static int
8643 double_to_single (bfd_int64_t v)
8644 {
8645 int sign = (int) ((v >> 63) & 1l);
8646 int exp = (int) ((v >> 52) & 0x7FF);
8647 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
8648
8649 if (exp == 0x7FF)
8650 exp = 0xFF;
8651 else
8652 {
8653 exp = exp - 1023 + 127;
8654 if (exp >= 0xFF)
8655 {
8656 /* Infinity. */
8657 exp = 0x7F;
8658 mantissa = 0;
8659 }
8660 else if (exp < 0)
8661 {
8662 /* No denormalized numbers. */
8663 exp = 0;
8664 mantissa = 0;
8665 }
8666 }
8667 mantissa >>= 29;
8668 return (sign << 31) | (exp << 23) | mantissa;
8669 }
8670 #endif /* BFD_HOST_64_BIT */
8671
8672 enum lit_type
8673 {
8674 CONST_THUMB,
8675 CONST_ARM,
8676 CONST_VEC
8677 };
8678
8679 static void do_vfp_nsyn_opcode (const char *);
8680
8681 /* inst.relocs[0].exp describes an "=expr" load pseudo-operation.
8682 Determine whether it can be performed with a move instruction; if
8683 it can, convert inst.instruction to that move instruction and
8684 return TRUE; if it can't, convert inst.instruction to a literal-pool
8685 load and return FALSE. If this is not a valid thing to do in the
8686 current context, set inst.error and return TRUE.
8687
8688 inst.operands[i] describes the destination register. */
8689
8690 static bfd_boolean
8691 move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
8692 {
8693 unsigned long tbit;
8694 bfd_boolean thumb_p = (t == CONST_THUMB);
8695 bfd_boolean arm_p = (t == CONST_ARM);
8696
8697 if (thumb_p)
8698 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
8699 else
8700 tbit = LOAD_BIT;
8701
8702 if ((inst.instruction & tbit) == 0)
8703 {
8704 inst.error = _("invalid pseudo operation");
8705 return TRUE;
8706 }
8707
8708 if (inst.relocs[0].exp.X_op != O_constant
8709 && inst.relocs[0].exp.X_op != O_symbol
8710 && inst.relocs[0].exp.X_op != O_big)
8711 {
8712 inst.error = _("constant expression expected");
8713 return TRUE;
8714 }
8715
8716 if (inst.relocs[0].exp.X_op == O_constant
8717 || inst.relocs[0].exp.X_op == O_big)
8718 {
8719 #if defined BFD_HOST_64_BIT
8720 bfd_int64_t v;
8721 #else
8722 offsetT v;
8723 #endif
8724 if (inst.relocs[0].exp.X_op == O_big)
8725 {
8726 LITTLENUM_TYPE w[X_PRECISION];
8727 LITTLENUM_TYPE * l;
8728
8729 if (inst.relocs[0].exp.X_add_number == -1)
8730 {
8731 gen_to_words (w, X_PRECISION, E_PRECISION);
8732 l = w;
8733 /* FIXME: Should we check words w[2..5] ? */
8734 }
8735 else
8736 l = generic_bignum;
8737
8738 #if defined BFD_HOST_64_BIT
8739 v =
8740 ((((((((bfd_int64_t) l[3] & LITTLENUM_MASK)
8741 << LITTLENUM_NUMBER_OF_BITS)
8742 | ((bfd_int64_t) l[2] & LITTLENUM_MASK))
8743 << LITTLENUM_NUMBER_OF_BITS)
8744 | ((bfd_int64_t) l[1] & LITTLENUM_MASK))
8745 << LITTLENUM_NUMBER_OF_BITS)
8746 | ((bfd_int64_t) l[0] & LITTLENUM_MASK));
8747 #else
8748 v = ((l[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
8749 | (l[0] & LITTLENUM_MASK);
8750 #endif
8751 }
8752 else
8753 v = inst.relocs[0].exp.X_add_number;
8754
8755 if (!inst.operands[i].issingle)
8756 {
8757 if (thumb_p)
8758 {
8759 /* LDR should not use lead in a flag-setting instruction being
8760 chosen so we do not check whether movs can be used. */
8761
8762 if ((ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
8763 || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
8764 && inst.operands[i].reg != 13
8765 && inst.operands[i].reg != 15)
8766 {
8767 /* Check if on thumb2 it can be done with a mov.w, mvn or
8768 movw instruction. */
8769 unsigned int newimm;
8770 bfd_boolean isNegated;
8771
8772 newimm = encode_thumb32_immediate (v);
8773 if (newimm != (unsigned int) FAIL)
8774 isNegated = FALSE;
8775 else
8776 {
8777 newimm = encode_thumb32_immediate (~v);
8778 if (newimm != (unsigned int) FAIL)
8779 isNegated = TRUE;
8780 }
8781
8782 /* The number can be loaded with a mov.w or mvn
8783 instruction. */
8784 if (newimm != (unsigned int) FAIL
8785 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
8786 {
8787 inst.instruction = (0xf04f0000 /* MOV.W. */
8788 | (inst.operands[i].reg << 8));
8789 /* Change to MOVN. */
8790 inst.instruction |= (isNegated ? 0x200000 : 0);
8791 inst.instruction |= (newimm & 0x800) << 15;
8792 inst.instruction |= (newimm & 0x700) << 4;
8793 inst.instruction |= (newimm & 0x0ff);
8794 return TRUE;
8795 }
8796 /* The number can be loaded with a movw instruction. */
8797 else if ((v & ~0xFFFF) == 0
8798 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
8799 {
8800 int imm = v & 0xFFFF;
8801
8802 inst.instruction = 0xf2400000; /* MOVW. */
8803 inst.instruction |= (inst.operands[i].reg << 8);
8804 inst.instruction |= (imm & 0xf000) << 4;
8805 inst.instruction |= (imm & 0x0800) << 15;
8806 inst.instruction |= (imm & 0x0700) << 4;
8807 inst.instruction |= (imm & 0x00ff);
8808 /* In case this replacement is being done on Armv8-M
8809 Baseline we need to make sure to disable the
8810 instruction size check, as otherwise GAS will reject
8811 the use of this T32 instruction. */
8812 inst.size_req = 0;
8813 return TRUE;
8814 }
8815 }
8816 }
8817 else if (arm_p)
8818 {
8819 int value = encode_arm_immediate (v);
8820
8821 if (value != FAIL)
8822 {
8823 /* This can be done with a mov instruction. */
8824 inst.instruction &= LITERAL_MASK;
8825 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
8826 inst.instruction |= value & 0xfff;
8827 return TRUE;
8828 }
8829
8830 value = encode_arm_immediate (~ v);
8831 if (value != FAIL)
8832 {
8833 /* This can be done with a mvn instruction. */
8834 inst.instruction &= LITERAL_MASK;
8835 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
8836 inst.instruction |= value & 0xfff;
8837 return TRUE;
8838 }
8839 }
8840 else if (t == CONST_VEC && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
8841 {
8842 int op = 0;
8843 unsigned immbits = 0;
8844 unsigned immlo = inst.operands[1].imm;
8845 unsigned immhi = inst.operands[1].regisimm
8846 ? inst.operands[1].reg
8847 : inst.relocs[0].exp.X_unsigned
8848 ? 0
8849 : ((bfd_int64_t)((int) immlo)) >> 32;
8850 int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8851 &op, 64, NT_invtype);
8852
8853 if (cmode == FAIL)
8854 {
8855 neon_invert_size (&immlo, &immhi, 64);
8856 op = !op;
8857 cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8858 &op, 64, NT_invtype);
8859 }
8860
8861 if (cmode != FAIL)
8862 {
8863 inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
8864 | (1 << 23)
8865 | (cmode << 8)
8866 | (op << 5)
8867 | (1 << 4);
8868
8869 /* Fill other bits in vmov encoding for both thumb and arm. */
8870 if (thumb_mode)
8871 inst.instruction |= (0x7U << 29) | (0xF << 24);
8872 else
8873 inst.instruction |= (0xFU << 28) | (0x1 << 25);
8874 neon_write_immbits (immbits);
8875 return TRUE;
8876 }
8877 }
8878 }
8879
8880 if (t == CONST_VEC)
8881 {
8882 /* Check if vldr Rx, =constant could be optimized to vmov Rx, #constant. */
8883 if (inst.operands[i].issingle
8884 && is_quarter_float (inst.operands[1].imm)
8885 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3xd))
8886 {
8887 inst.operands[1].imm =
8888 neon_qfloat_bits (v);
8889 do_vfp_nsyn_opcode ("fconsts");
8890 return TRUE;
8891 }
8892
8893 /* If our host does not support a 64-bit type then we cannot perform
8894 the following optimization. This mean that there will be a
8895 discrepancy between the output produced by an assembler built for
8896 a 32-bit-only host and the output produced from a 64-bit host, but
8897 this cannot be helped. */
8898 #if defined BFD_HOST_64_BIT
8899 else if (!inst.operands[1].issingle
8900 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
8901 {
8902 if (is_double_a_single (v)
8903 && is_quarter_float (double_to_single (v)))
8904 {
8905 inst.operands[1].imm =
8906 neon_qfloat_bits (double_to_single (v));
8907 do_vfp_nsyn_opcode ("fconstd");
8908 return TRUE;
8909 }
8910 }
8911 #endif
8912 }
8913 }
8914
8915 if (add_to_lit_pool ((!inst.operands[i].isvec
8916 || inst.operands[i].issingle) ? 4 : 8) == FAIL)
8917 return TRUE;
8918
8919 inst.operands[1].reg = REG_PC;
8920 inst.operands[1].isreg = 1;
8921 inst.operands[1].preind = 1;
8922 inst.relocs[0].pc_rel = 1;
8923 inst.relocs[0].type = (thumb_p
8924 ? BFD_RELOC_ARM_THUMB_OFFSET
8925 : (mode_3
8926 ? BFD_RELOC_ARM_HWLITERAL
8927 : BFD_RELOC_ARM_LITERAL));
8928 return FALSE;
8929 }
8930
8931 /* inst.operands[i] was set up by parse_address. Encode it into an
8932 ARM-format instruction. Reject all forms which cannot be encoded
8933 into a coprocessor load/store instruction. If wb_ok is false,
8934 reject use of writeback; if unind_ok is false, reject use of
8935 unindexed addressing. If reloc_override is not 0, use it instead
8936 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
8937 (in which case it is preserved). */
8938
8939 static int
8940 encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
8941 {
8942 if (!inst.operands[i].isreg)
8943 {
8944 /* PR 18256 */
8945 if (! inst.operands[0].isvec)
8946 {
8947 inst.error = _("invalid co-processor operand");
8948 return FAIL;
8949 }
8950 if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
8951 return SUCCESS;
8952 }
8953
8954 inst.instruction |= inst.operands[i].reg << 16;
8955
8956 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
8957
8958 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
8959 {
8960 gas_assert (!inst.operands[i].writeback);
8961 if (!unind_ok)
8962 {
8963 inst.error = _("instruction does not support unindexed addressing");
8964 return FAIL;
8965 }
8966 inst.instruction |= inst.operands[i].imm;
8967 inst.instruction |= INDEX_UP;
8968 return SUCCESS;
8969 }
8970
8971 if (inst.operands[i].preind)
8972 inst.instruction |= PRE_INDEX;
8973
8974 if (inst.operands[i].writeback)
8975 {
8976 if (inst.operands[i].reg == REG_PC)
8977 {
8978 inst.error = _("pc may not be used with write-back");
8979 return FAIL;
8980 }
8981 if (!wb_ok)
8982 {
8983 inst.error = _("instruction does not support writeback");
8984 return FAIL;
8985 }
8986 inst.instruction |= WRITE_BACK;
8987 }
8988
8989 if (reloc_override)
8990 inst.relocs[0].type = (bfd_reloc_code_real_type) reloc_override;
8991 else if ((inst.relocs[0].type < BFD_RELOC_ARM_ALU_PC_G0_NC
8992 || inst.relocs[0].type > BFD_RELOC_ARM_LDC_SB_G2)
8993 && inst.relocs[0].type != BFD_RELOC_ARM_LDR_PC_G0)
8994 {
8995 if (thumb_mode)
8996 inst.relocs[0].type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
8997 else
8998 inst.relocs[0].type = BFD_RELOC_ARM_CP_OFF_IMM;
8999 }
9000
9001 /* Prefer + for zero encoded value. */
9002 if (!inst.operands[i].negative)
9003 inst.instruction |= INDEX_UP;
9004
9005 return SUCCESS;
9006 }
9007
9008 /* Functions for instruction encoding, sorted by sub-architecture.
9009 First some generics; their names are taken from the conventional
9010 bit positions for register arguments in ARM format instructions. */
9011
9012 static void
9013 do_noargs (void)
9014 {
9015 }
9016
9017 static void
9018 do_rd (void)
9019 {
9020 inst.instruction |= inst.operands[0].reg << 12;
9021 }
9022
9023 static void
9024 do_rn (void)
9025 {
9026 inst.instruction |= inst.operands[0].reg << 16;
9027 }
9028
9029 static void
9030 do_rd_rm (void)
9031 {
9032 inst.instruction |= inst.operands[0].reg << 12;
9033 inst.instruction |= inst.operands[1].reg;
9034 }
9035
9036 static void
9037 do_rm_rn (void)
9038 {
9039 inst.instruction |= inst.operands[0].reg;
9040 inst.instruction |= inst.operands[1].reg << 16;
9041 }
9042
9043 static void
9044 do_rd_rn (void)
9045 {
9046 inst.instruction |= inst.operands[0].reg << 12;
9047 inst.instruction |= inst.operands[1].reg << 16;
9048 }
9049
9050 static void
9051 do_rn_rd (void)
9052 {
9053 inst.instruction |= inst.operands[0].reg << 16;
9054 inst.instruction |= inst.operands[1].reg << 12;
9055 }
9056
9057 static void
9058 do_tt (void)
9059 {
9060 inst.instruction |= inst.operands[0].reg << 8;
9061 inst.instruction |= inst.operands[1].reg << 16;
9062 }
9063
9064 static bfd_boolean
9065 check_obsolete (const arm_feature_set *feature, const char *msg)
9066 {
9067 if (ARM_CPU_IS_ANY (cpu_variant))
9068 {
9069 as_tsktsk ("%s", msg);
9070 return TRUE;
9071 }
9072 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
9073 {
9074 as_bad ("%s", msg);
9075 return TRUE;
9076 }
9077
9078 return FALSE;
9079 }
9080
9081 static void
9082 do_rd_rm_rn (void)
9083 {
9084 unsigned Rn = inst.operands[2].reg;
9085 /* Enforce restrictions on SWP instruction. */
9086 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
9087 {
9088 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
9089 _("Rn must not overlap other operands"));
9090
9091 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
9092 */
9093 if (!check_obsolete (&arm_ext_v8,
9094 _("swp{b} use is obsoleted for ARMv8 and later"))
9095 && warn_on_deprecated
9096 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
9097 as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
9098 }
9099
9100 inst.instruction |= inst.operands[0].reg << 12;
9101 inst.instruction |= inst.operands[1].reg;
9102 inst.instruction |= Rn << 16;
9103 }
9104
9105 static void
9106 do_rd_rn_rm (void)
9107 {
9108 inst.instruction |= inst.operands[0].reg << 12;
9109 inst.instruction |= inst.operands[1].reg << 16;
9110 inst.instruction |= inst.operands[2].reg;
9111 }
9112
9113 static void
9114 do_rm_rd_rn (void)
9115 {
9116 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
9117 constraint (((inst.relocs[0].exp.X_op != O_constant
9118 && inst.relocs[0].exp.X_op != O_illegal)
9119 || inst.relocs[0].exp.X_add_number != 0),
9120 BAD_ADDR_MODE);
9121 inst.instruction |= inst.operands[0].reg;
9122 inst.instruction |= inst.operands[1].reg << 12;
9123 inst.instruction |= inst.operands[2].reg << 16;
9124 }
9125
9126 static void
9127 do_imm0 (void)
9128 {
9129 inst.instruction |= inst.operands[0].imm;
9130 }
9131
9132 static void
9133 do_rd_cpaddr (void)
9134 {
9135 inst.instruction |= inst.operands[0].reg << 12;
9136 encode_arm_cp_address (1, TRUE, TRUE, 0);
9137 }
9138
9139 /* ARM instructions, in alphabetical order by function name (except
9140 that wrapper functions appear immediately after the function they
9141 wrap). */
9142
9143 /* This is a pseudo-op of the form "adr rd, label" to be converted
9144 into a relative address of the form "add rd, pc, #label-.-8". */
9145
9146 static void
9147 do_adr (void)
9148 {
9149 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
9150
9151 /* Frag hacking will turn this into a sub instruction if the offset turns
9152 out to be negative. */
9153 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
9154 inst.relocs[0].pc_rel = 1;
9155 inst.relocs[0].exp.X_add_number -= 8;
9156
9157 if (support_interwork
9158 && inst.relocs[0].exp.X_op == O_symbol
9159 && inst.relocs[0].exp.X_add_symbol != NULL
9160 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
9161 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
9162 inst.relocs[0].exp.X_add_number |= 1;
9163 }
9164
9165 /* This is a pseudo-op of the form "adrl rd, label" to be converted
9166 into a relative address of the form:
9167 add rd, pc, #low(label-.-8)"
9168 add rd, rd, #high(label-.-8)" */
9169
9170 static void
9171 do_adrl (void)
9172 {
9173 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
9174
9175 /* Frag hacking will turn this into a sub instruction if the offset turns
9176 out to be negative. */
9177 inst.relocs[0].type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
9178 inst.relocs[0].pc_rel = 1;
9179 inst.size = INSN_SIZE * 2;
9180 inst.relocs[0].exp.X_add_number -= 8;
9181
9182 if (support_interwork
9183 && inst.relocs[0].exp.X_op == O_symbol
9184 && inst.relocs[0].exp.X_add_symbol != NULL
9185 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
9186 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
9187 inst.relocs[0].exp.X_add_number |= 1;
9188 }
9189
9190 static void
9191 do_arit (void)
9192 {
9193 constraint (inst.relocs[0].type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9194 && inst.relocs[0].type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9195 THUMB1_RELOC_ONLY);
9196 if (!inst.operands[1].present)
9197 inst.operands[1].reg = inst.operands[0].reg;
9198 inst.instruction |= inst.operands[0].reg << 12;
9199 inst.instruction |= inst.operands[1].reg << 16;
9200 encode_arm_shifter_operand (2);
9201 }
9202
9203 static void
9204 do_barrier (void)
9205 {
9206 if (inst.operands[0].present)
9207 inst.instruction |= inst.operands[0].imm;
9208 else
9209 inst.instruction |= 0xf;
9210 }
9211
9212 static void
9213 do_bfc (void)
9214 {
9215 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
9216 constraint (msb > 32, _("bit-field extends past end of register"));
9217 /* The instruction encoding stores the LSB and MSB,
9218 not the LSB and width. */
9219 inst.instruction |= inst.operands[0].reg << 12;
9220 inst.instruction |= inst.operands[1].imm << 7;
9221 inst.instruction |= (msb - 1) << 16;
9222 }
9223
9224 static void
9225 do_bfi (void)
9226 {
9227 unsigned int msb;
9228
9229 /* #0 in second position is alternative syntax for bfc, which is
9230 the same instruction but with REG_PC in the Rm field. */
9231 if (!inst.operands[1].isreg)
9232 inst.operands[1].reg = REG_PC;
9233
9234 msb = inst.operands[2].imm + inst.operands[3].imm;
9235 constraint (msb > 32, _("bit-field extends past end of register"));
9236 /* The instruction encoding stores the LSB and MSB,
9237 not the LSB and width. */
9238 inst.instruction |= inst.operands[0].reg << 12;
9239 inst.instruction |= inst.operands[1].reg;
9240 inst.instruction |= inst.operands[2].imm << 7;
9241 inst.instruction |= (msb - 1) << 16;
9242 }
9243
9244 static void
9245 do_bfx (void)
9246 {
9247 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
9248 _("bit-field extends past end of register"));
9249 inst.instruction |= inst.operands[0].reg << 12;
9250 inst.instruction |= inst.operands[1].reg;
9251 inst.instruction |= inst.operands[2].imm << 7;
9252 inst.instruction |= (inst.operands[3].imm - 1) << 16;
9253 }
9254
9255 /* ARM V5 breakpoint instruction (argument parse)
9256 BKPT <16 bit unsigned immediate>
9257 Instruction is not conditional.
9258 The bit pattern given in insns[] has the COND_ALWAYS condition,
9259 and it is an error if the caller tried to override that. */
9260
9261 static void
9262 do_bkpt (void)
9263 {
9264 /* Top 12 of 16 bits to bits 19:8. */
9265 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
9266
9267 /* Bottom 4 of 16 bits to bits 3:0. */
9268 inst.instruction |= inst.operands[0].imm & 0xf;
9269 }
9270
9271 static void
9272 encode_branch (int default_reloc)
9273 {
9274 if (inst.operands[0].hasreloc)
9275 {
9276 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
9277 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
9278 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
9279 inst.relocs[0].type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
9280 ? BFD_RELOC_ARM_PLT32
9281 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
9282 }
9283 else
9284 inst.relocs[0].type = (bfd_reloc_code_real_type) default_reloc;
9285 inst.relocs[0].pc_rel = 1;
9286 }
9287
9288 static void
9289 do_branch (void)
9290 {
9291 #ifdef OBJ_ELF
9292 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
9293 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
9294 else
9295 #endif
9296 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
9297 }
9298
9299 static void
9300 do_bl (void)
9301 {
9302 #ifdef OBJ_ELF
9303 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
9304 {
9305 if (inst.cond == COND_ALWAYS)
9306 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
9307 else
9308 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
9309 }
9310 else
9311 #endif
9312 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
9313 }
9314
9315 /* ARM V5 branch-link-exchange instruction (argument parse)
9316 BLX <target_addr> ie BLX(1)
9317 BLX{<condition>} <Rm> ie BLX(2)
9318 Unfortunately, there are two different opcodes for this mnemonic.
9319 So, the insns[].value is not used, and the code here zaps values
9320 into inst.instruction.
9321 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
9322
9323 static void
9324 do_blx (void)
9325 {
9326 if (inst.operands[0].isreg)
9327 {
9328 /* Arg is a register; the opcode provided by insns[] is correct.
9329 It is not illegal to do "blx pc", just useless. */
9330 if (inst.operands[0].reg == REG_PC)
9331 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
9332
9333 inst.instruction |= inst.operands[0].reg;
9334 }
9335 else
9336 {
9337 /* Arg is an address; this instruction cannot be executed
9338 conditionally, and the opcode must be adjusted.
9339 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
9340 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
9341 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9342 inst.instruction = 0xfa000000;
9343 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
9344 }
9345 }
9346
9347 static void
9348 do_bx (void)
9349 {
9350 bfd_boolean want_reloc;
9351
9352 if (inst.operands[0].reg == REG_PC)
9353 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
9354
9355 inst.instruction |= inst.operands[0].reg;
9356 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
9357 it is for ARMv4t or earlier. */
9358 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
9359 if (!ARM_FEATURE_ZERO (selected_object_arch)
9360 && !ARM_CPU_HAS_FEATURE (selected_object_arch, arm_ext_v5))
9361 want_reloc = TRUE;
9362
9363 #ifdef OBJ_ELF
9364 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
9365 #endif
9366 want_reloc = FALSE;
9367
9368 if (want_reloc)
9369 inst.relocs[0].type = BFD_RELOC_ARM_V4BX;
9370 }
9371
9372
9373 /* ARM v5TEJ. Jump to Jazelle code. */
9374
9375 static void
9376 do_bxj (void)
9377 {
9378 if (inst.operands[0].reg == REG_PC)
9379 as_tsktsk (_("use of r15 in bxj is not really useful"));
9380
9381 inst.instruction |= inst.operands[0].reg;
9382 }
9383
9384 /* Co-processor data operation:
9385 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
9386 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
9387 static void
9388 do_cdp (void)
9389 {
9390 inst.instruction |= inst.operands[0].reg << 8;
9391 inst.instruction |= inst.operands[1].imm << 20;
9392 inst.instruction |= inst.operands[2].reg << 12;
9393 inst.instruction |= inst.operands[3].reg << 16;
9394 inst.instruction |= inst.operands[4].reg;
9395 inst.instruction |= inst.operands[5].imm << 5;
9396 }
9397
9398 static void
9399 do_cmp (void)
9400 {
9401 inst.instruction |= inst.operands[0].reg << 16;
9402 encode_arm_shifter_operand (1);
9403 }
9404
9405 /* Transfer between coprocessor and ARM registers.
9406 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
9407 MRC2
9408 MCR{cond}
9409 MCR2
9410
9411 No special properties. */
9412
9413 struct deprecated_coproc_regs_s
9414 {
9415 unsigned cp;
9416 int opc1;
9417 unsigned crn;
9418 unsigned crm;
9419 int opc2;
9420 arm_feature_set deprecated;
9421 arm_feature_set obsoleted;
9422 const char *dep_msg;
9423 const char *obs_msg;
9424 };
9425
9426 #define DEPR_ACCESS_V8 \
9427 N_("This coprocessor register access is deprecated in ARMv8")
9428
9429 /* Table of all deprecated coprocessor registers. */
9430 static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
9431 {
9432 {15, 0, 7, 10, 5, /* CP15DMB. */
9433 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9434 DEPR_ACCESS_V8, NULL},
9435 {15, 0, 7, 10, 4, /* CP15DSB. */
9436 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9437 DEPR_ACCESS_V8, NULL},
9438 {15, 0, 7, 5, 4, /* CP15ISB. */
9439 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9440 DEPR_ACCESS_V8, NULL},
9441 {14, 6, 1, 0, 0, /* TEEHBR. */
9442 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9443 DEPR_ACCESS_V8, NULL},
9444 {14, 6, 0, 0, 0, /* TEECR. */
9445 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9446 DEPR_ACCESS_V8, NULL},
9447 };
9448
9449 #undef DEPR_ACCESS_V8
9450
9451 static const size_t deprecated_coproc_reg_count =
9452 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
9453
9454 static void
9455 do_co_reg (void)
9456 {
9457 unsigned Rd;
9458 size_t i;
9459
9460 Rd = inst.operands[2].reg;
9461 if (thumb_mode)
9462 {
9463 if (inst.instruction == 0xee000010
9464 || inst.instruction == 0xfe000010)
9465 /* MCR, MCR2 */
9466 reject_bad_reg (Rd);
9467 else if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
9468 /* MRC, MRC2 */
9469 constraint (Rd == REG_SP, BAD_SP);
9470 }
9471 else
9472 {
9473 /* MCR */
9474 if (inst.instruction == 0xe000010)
9475 constraint (Rd == REG_PC, BAD_PC);
9476 }
9477
9478 for (i = 0; i < deprecated_coproc_reg_count; ++i)
9479 {
9480 const struct deprecated_coproc_regs_s *r =
9481 deprecated_coproc_regs + i;
9482
9483 if (inst.operands[0].reg == r->cp
9484 && inst.operands[1].imm == r->opc1
9485 && inst.operands[3].reg == r->crn
9486 && inst.operands[4].reg == r->crm
9487 && inst.operands[5].imm == r->opc2)
9488 {
9489 if (! ARM_CPU_IS_ANY (cpu_variant)
9490 && warn_on_deprecated
9491 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
9492 as_tsktsk ("%s", r->dep_msg);
9493 }
9494 }
9495
9496 inst.instruction |= inst.operands[0].reg << 8;
9497 inst.instruction |= inst.operands[1].imm << 21;
9498 inst.instruction |= Rd << 12;
9499 inst.instruction |= inst.operands[3].reg << 16;
9500 inst.instruction |= inst.operands[4].reg;
9501 inst.instruction |= inst.operands[5].imm << 5;
9502 }
9503
9504 /* Transfer between coprocessor register and pair of ARM registers.
9505 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
9506 MCRR2
9507 MRRC{cond}
9508 MRRC2
9509
9510 Two XScale instructions are special cases of these:
9511
9512 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
9513 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
9514
9515 Result unpredictable if Rd or Rn is R15. */
9516
9517 static void
9518 do_co_reg2c (void)
9519 {
9520 unsigned Rd, Rn;
9521
9522 Rd = inst.operands[2].reg;
9523 Rn = inst.operands[3].reg;
9524
9525 if (thumb_mode)
9526 {
9527 reject_bad_reg (Rd);
9528 reject_bad_reg (Rn);
9529 }
9530 else
9531 {
9532 constraint (Rd == REG_PC, BAD_PC);
9533 constraint (Rn == REG_PC, BAD_PC);
9534 }
9535
9536 /* Only check the MRRC{2} variants. */
9537 if ((inst.instruction & 0x0FF00000) == 0x0C500000)
9538 {
9539 /* If Rd == Rn, error that the operation is
9540 unpredictable (example MRRC p3,#1,r1,r1,c4). */
9541 constraint (Rd == Rn, BAD_OVERLAP);
9542 }
9543
9544 inst.instruction |= inst.operands[0].reg << 8;
9545 inst.instruction |= inst.operands[1].imm << 4;
9546 inst.instruction |= Rd << 12;
9547 inst.instruction |= Rn << 16;
9548 inst.instruction |= inst.operands[4].reg;
9549 }
9550
9551 static void
9552 do_cpsi (void)
9553 {
9554 inst.instruction |= inst.operands[0].imm << 6;
9555 if (inst.operands[1].present)
9556 {
9557 inst.instruction |= CPSI_MMOD;
9558 inst.instruction |= inst.operands[1].imm;
9559 }
9560 }
9561
9562 static void
9563 do_dbg (void)
9564 {
9565 inst.instruction |= inst.operands[0].imm;
9566 }
9567
9568 static void
9569 do_div (void)
9570 {
9571 unsigned Rd, Rn, Rm;
9572
9573 Rd = inst.operands[0].reg;
9574 Rn = (inst.operands[1].present
9575 ? inst.operands[1].reg : Rd);
9576 Rm = inst.operands[2].reg;
9577
9578 constraint ((Rd == REG_PC), BAD_PC);
9579 constraint ((Rn == REG_PC), BAD_PC);
9580 constraint ((Rm == REG_PC), BAD_PC);
9581
9582 inst.instruction |= Rd << 16;
9583 inst.instruction |= Rn << 0;
9584 inst.instruction |= Rm << 8;
9585 }
9586
9587 static void
9588 do_it (void)
9589 {
9590 /* There is no IT instruction in ARM mode. We
9591 process it to do the validation as if in
9592 thumb mode, just in case the code gets
9593 assembled for thumb using the unified syntax. */
9594
9595 inst.size = 0;
9596 if (unified_syntax)
9597 {
9598 set_pred_insn_type (IT_INSN);
9599 now_pred.mask = (inst.instruction & 0xf) | 0x10;
9600 now_pred.cc = inst.operands[0].imm;
9601 }
9602 }
9603
9604 /* If there is only one register in the register list,
9605 then return its register number. Otherwise return -1. */
9606 static int
9607 only_one_reg_in_list (int range)
9608 {
9609 int i = ffs (range) - 1;
9610 return (i > 15 || range != (1 << i)) ? -1 : i;
9611 }
9612
9613 static void
9614 encode_ldmstm(int from_push_pop_mnem)
9615 {
9616 int base_reg = inst.operands[0].reg;
9617 int range = inst.operands[1].imm;
9618 int one_reg;
9619
9620 inst.instruction |= base_reg << 16;
9621 inst.instruction |= range;
9622
9623 if (inst.operands[1].writeback)
9624 inst.instruction |= LDM_TYPE_2_OR_3;
9625
9626 if (inst.operands[0].writeback)
9627 {
9628 inst.instruction |= WRITE_BACK;
9629 /* Check for unpredictable uses of writeback. */
9630 if (inst.instruction & LOAD_BIT)
9631 {
9632 /* Not allowed in LDM type 2. */
9633 if ((inst.instruction & LDM_TYPE_2_OR_3)
9634 && ((range & (1 << REG_PC)) == 0))
9635 as_warn (_("writeback of base register is UNPREDICTABLE"));
9636 /* Only allowed if base reg not in list for other types. */
9637 else if (range & (1 << base_reg))
9638 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
9639 }
9640 else /* STM. */
9641 {
9642 /* Not allowed for type 2. */
9643 if (inst.instruction & LDM_TYPE_2_OR_3)
9644 as_warn (_("writeback of base register is UNPREDICTABLE"));
9645 /* Only allowed if base reg not in list, or first in list. */
9646 else if ((range & (1 << base_reg))
9647 && (range & ((1 << base_reg) - 1)))
9648 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
9649 }
9650 }
9651
9652 /* If PUSH/POP has only one register, then use the A2 encoding. */
9653 one_reg = only_one_reg_in_list (range);
9654 if (from_push_pop_mnem && one_reg >= 0)
9655 {
9656 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
9657
9658 if (is_push && one_reg == 13 /* SP */)
9659 /* PR 22483: The A2 encoding cannot be used when
9660 pushing the stack pointer as this is UNPREDICTABLE. */
9661 return;
9662
9663 inst.instruction &= A_COND_MASK;
9664 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
9665 inst.instruction |= one_reg << 12;
9666 }
9667 }
9668
9669 static void
9670 do_ldmstm (void)
9671 {
9672 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
9673 }
9674
9675 /* ARMv5TE load-consecutive (argument parse)
9676 Mode is like LDRH.
9677
9678 LDRccD R, mode
9679 STRccD R, mode. */
9680
9681 static void
9682 do_ldrd (void)
9683 {
9684 constraint (inst.operands[0].reg % 2 != 0,
9685 _("first transfer register must be even"));
9686 constraint (inst.operands[1].present
9687 && inst.operands[1].reg != inst.operands[0].reg + 1,
9688 _("can only transfer two consecutive registers"));
9689 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
9690 constraint (!inst.operands[2].isreg, _("'[' expected"));
9691
9692 if (!inst.operands[1].present)
9693 inst.operands[1].reg = inst.operands[0].reg + 1;
9694
9695 /* encode_arm_addr_mode_3 will diagnose overlap between the base
9696 register and the first register written; we have to diagnose
9697 overlap between the base and the second register written here. */
9698
9699 if (inst.operands[2].reg == inst.operands[1].reg
9700 && (inst.operands[2].writeback || inst.operands[2].postind))
9701 as_warn (_("base register written back, and overlaps "
9702 "second transfer register"));
9703
9704 if (!(inst.instruction & V4_STR_BIT))
9705 {
9706 /* For an index-register load, the index register must not overlap the
9707 destination (even if not write-back). */
9708 if (inst.operands[2].immisreg
9709 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
9710 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
9711 as_warn (_("index register overlaps transfer register"));
9712 }
9713 inst.instruction |= inst.operands[0].reg << 12;
9714 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
9715 }
9716
9717 static void
9718 do_ldrex (void)
9719 {
9720 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
9721 || inst.operands[1].postind || inst.operands[1].writeback
9722 || inst.operands[1].immisreg || inst.operands[1].shifted
9723 || inst.operands[1].negative
9724 /* This can arise if the programmer has written
9725 strex rN, rM, foo
9726 or if they have mistakenly used a register name as the last
9727 operand, eg:
9728 strex rN, rM, rX
9729 It is very difficult to distinguish between these two cases
9730 because "rX" might actually be a label. ie the register
9731 name has been occluded by a symbol of the same name. So we
9732 just generate a general 'bad addressing mode' type error
9733 message and leave it up to the programmer to discover the
9734 true cause and fix their mistake. */
9735 || (inst.operands[1].reg == REG_PC),
9736 BAD_ADDR_MODE);
9737
9738 constraint (inst.relocs[0].exp.X_op != O_constant
9739 || inst.relocs[0].exp.X_add_number != 0,
9740 _("offset must be zero in ARM encoding"));
9741
9742 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
9743
9744 inst.instruction |= inst.operands[0].reg << 12;
9745 inst.instruction |= inst.operands[1].reg << 16;
9746 inst.relocs[0].type = BFD_RELOC_UNUSED;
9747 }
9748
9749 static void
9750 do_ldrexd (void)
9751 {
9752 constraint (inst.operands[0].reg % 2 != 0,
9753 _("even register required"));
9754 constraint (inst.operands[1].present
9755 && inst.operands[1].reg != inst.operands[0].reg + 1,
9756 _("can only load two consecutive registers"));
9757 /* If op 1 were present and equal to PC, this function wouldn't
9758 have been called in the first place. */
9759 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
9760
9761 inst.instruction |= inst.operands[0].reg << 12;
9762 inst.instruction |= inst.operands[2].reg << 16;
9763 }
9764
9765 /* In both ARM and thumb state 'ldr pc, #imm' with an immediate
9766 which is not a multiple of four is UNPREDICTABLE. */
9767 static void
9768 check_ldr_r15_aligned (void)
9769 {
9770 constraint (!(inst.operands[1].immisreg)
9771 && (inst.operands[0].reg == REG_PC
9772 && inst.operands[1].reg == REG_PC
9773 && (inst.relocs[0].exp.X_add_number & 0x3)),
9774 _("ldr to register 15 must be 4-byte aligned"));
9775 }
9776
9777 static void
9778 do_ldst (void)
9779 {
9780 inst.instruction |= inst.operands[0].reg << 12;
9781 if (!inst.operands[1].isreg)
9782 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/FALSE))
9783 return;
9784 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
9785 check_ldr_r15_aligned ();
9786 }
9787
9788 static void
9789 do_ldstt (void)
9790 {
9791 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
9792 reject [Rn,...]. */
9793 if (inst.operands[1].preind)
9794 {
9795 constraint (inst.relocs[0].exp.X_op != O_constant
9796 || inst.relocs[0].exp.X_add_number != 0,
9797 _("this instruction requires a post-indexed address"));
9798
9799 inst.operands[1].preind = 0;
9800 inst.operands[1].postind = 1;
9801 inst.operands[1].writeback = 1;
9802 }
9803 inst.instruction |= inst.operands[0].reg << 12;
9804 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
9805 }
9806
9807 /* Halfword and signed-byte load/store operations. */
9808
9809 static void
9810 do_ldstv4 (void)
9811 {
9812 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
9813 inst.instruction |= inst.operands[0].reg << 12;
9814 if (!inst.operands[1].isreg)
9815 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/TRUE))
9816 return;
9817 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
9818 }
9819
9820 static void
9821 do_ldsttv4 (void)
9822 {
9823 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
9824 reject [Rn,...]. */
9825 if (inst.operands[1].preind)
9826 {
9827 constraint (inst.relocs[0].exp.X_op != O_constant
9828 || inst.relocs[0].exp.X_add_number != 0,
9829 _("this instruction requires a post-indexed address"));
9830
9831 inst.operands[1].preind = 0;
9832 inst.operands[1].postind = 1;
9833 inst.operands[1].writeback = 1;
9834 }
9835 inst.instruction |= inst.operands[0].reg << 12;
9836 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
9837 }
9838
9839 /* Co-processor register load/store.
9840 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
9841 static void
9842 do_lstc (void)
9843 {
9844 inst.instruction |= inst.operands[0].reg << 8;
9845 inst.instruction |= inst.operands[1].reg << 12;
9846 encode_arm_cp_address (2, TRUE, TRUE, 0);
9847 }
9848
9849 static void
9850 do_mlas (void)
9851 {
9852 /* This restriction does not apply to mls (nor to mla in v6 or later). */
9853 if (inst.operands[0].reg == inst.operands[1].reg
9854 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
9855 && !(inst.instruction & 0x00400000))
9856 as_tsktsk (_("Rd and Rm should be different in mla"));
9857
9858 inst.instruction |= inst.operands[0].reg << 16;
9859 inst.instruction |= inst.operands[1].reg;
9860 inst.instruction |= inst.operands[2].reg << 8;
9861 inst.instruction |= inst.operands[3].reg << 12;
9862 }
9863
9864 static void
9865 do_mov (void)
9866 {
9867 constraint (inst.relocs[0].type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9868 && inst.relocs[0].type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9869 THUMB1_RELOC_ONLY);
9870 inst.instruction |= inst.operands[0].reg << 12;
9871 encode_arm_shifter_operand (1);
9872 }
9873
9874 /* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
9875 static void
9876 do_mov16 (void)
9877 {
9878 bfd_vma imm;
9879 bfd_boolean top;
9880
9881 top = (inst.instruction & 0x00400000) != 0;
9882 constraint (top && inst.relocs[0].type == BFD_RELOC_ARM_MOVW,
9883 _(":lower16: not allowed in this instruction"));
9884 constraint (!top && inst.relocs[0].type == BFD_RELOC_ARM_MOVT,
9885 _(":upper16: not allowed in this instruction"));
9886 inst.instruction |= inst.operands[0].reg << 12;
9887 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
9888 {
9889 imm = inst.relocs[0].exp.X_add_number;
9890 /* The value is in two pieces: 0:11, 16:19. */
9891 inst.instruction |= (imm & 0x00000fff);
9892 inst.instruction |= (imm & 0x0000f000) << 4;
9893 }
9894 }
9895
9896 static int
9897 do_vfp_nsyn_mrs (void)
9898 {
9899 if (inst.operands[0].isvec)
9900 {
9901 if (inst.operands[1].reg != 1)
9902 first_error (_("operand 1 must be FPSCR"));
9903 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
9904 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
9905 do_vfp_nsyn_opcode ("fmstat");
9906 }
9907 else if (inst.operands[1].isvec)
9908 do_vfp_nsyn_opcode ("fmrx");
9909 else
9910 return FAIL;
9911
9912 return SUCCESS;
9913 }
9914
9915 static int
9916 do_vfp_nsyn_msr (void)
9917 {
9918 if (inst.operands[0].isvec)
9919 do_vfp_nsyn_opcode ("fmxr");
9920 else
9921 return FAIL;
9922
9923 return SUCCESS;
9924 }
9925
9926 static void
9927 do_vmrs (void)
9928 {
9929 unsigned Rt = inst.operands[0].reg;
9930
9931 if (thumb_mode && Rt == REG_SP)
9932 {
9933 inst.error = BAD_SP;
9934 return;
9935 }
9936
9937 switch (inst.operands[1].reg)
9938 {
9939 /* MVFR2 is only valid for Armv8-A. */
9940 case 5:
9941 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
9942 _(BAD_FPU));
9943 break;
9944
9945 /* Check for new Armv8.1-M Mainline changes to <spec_reg>. */
9946 case 1: /* fpscr. */
9947 constraint (!(ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
9948 || ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
9949 _(BAD_FPU));
9950 break;
9951
9952 case 14: /* fpcxt_ns. */
9953 case 15: /* fpcxt_s. */
9954 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main),
9955 _("selected processor does not support instruction"));
9956 break;
9957
9958 case 2: /* fpscr_nzcvqc. */
9959 case 12: /* vpr. */
9960 case 13: /* p0. */
9961 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main)
9962 || (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
9963 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
9964 _("selected processor does not support instruction"));
9965 if (inst.operands[0].reg != 2
9966 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
9967 as_warn (_("accessing MVE system register without MVE is UNPREDICTABLE"));
9968 break;
9969
9970 default:
9971 break;
9972 }
9973
9974 /* APSR_ sets isvec. All other refs to PC are illegal. */
9975 if (!inst.operands[0].isvec && Rt == REG_PC)
9976 {
9977 inst.error = BAD_PC;
9978 return;
9979 }
9980
9981 /* If we get through parsing the register name, we just insert the number
9982 generated into the instruction without further validation. */
9983 inst.instruction |= (inst.operands[1].reg << 16);
9984 inst.instruction |= (Rt << 12);
9985 }
9986
9987 static void
9988 do_vmsr (void)
9989 {
9990 unsigned Rt = inst.operands[1].reg;
9991
9992 if (thumb_mode)
9993 reject_bad_reg (Rt);
9994 else if (Rt == REG_PC)
9995 {
9996 inst.error = BAD_PC;
9997 return;
9998 }
9999
10000 switch (inst.operands[0].reg)
10001 {
10002 /* MVFR2 is only valid for Armv8-A. */
10003 case 5:
10004 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
10005 _(BAD_FPU));
10006 break;
10007
10008 /* Check for new Armv8.1-M Mainline changes to <spec_reg>. */
10009 case 1: /* fpcr. */
10010 constraint (!(ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10011 || ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10012 _(BAD_FPU));
10013 break;
10014
10015 case 14: /* fpcxt_ns. */
10016 case 15: /* fpcxt_s. */
10017 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main),
10018 _("selected processor does not support instruction"));
10019 break;
10020
10021 case 2: /* fpscr_nzcvqc. */
10022 case 12: /* vpr. */
10023 case 13: /* p0. */
10024 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main)
10025 || (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10026 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10027 _("selected processor does not support instruction"));
10028 if (inst.operands[0].reg != 2
10029 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
10030 as_warn (_("accessing MVE system register without MVE is UNPREDICTABLE"));
10031 break;
10032
10033 default:
10034 break;
10035 }
10036
10037 /* If we get through parsing the register name, we just insert the number
10038 generated into the instruction without further validation. */
10039 inst.instruction |= (inst.operands[0].reg << 16);
10040 inst.instruction |= (Rt << 12);
10041 }
10042
10043 static void
10044 do_mrs (void)
10045 {
10046 unsigned br;
10047
10048 if (do_vfp_nsyn_mrs () == SUCCESS)
10049 return;
10050
10051 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10052 inst.instruction |= inst.operands[0].reg << 12;
10053
10054 if (inst.operands[1].isreg)
10055 {
10056 br = inst.operands[1].reg;
10057 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf0000))
10058 as_bad (_("bad register for mrs"));
10059 }
10060 else
10061 {
10062 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
10063 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
10064 != (PSR_c|PSR_f),
10065 _("'APSR', 'CPSR' or 'SPSR' expected"));
10066 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
10067 }
10068
10069 inst.instruction |= br;
10070 }
10071
10072 /* Two possible forms:
10073 "{C|S}PSR_<field>, Rm",
10074 "{C|S}PSR_f, #expression". */
10075
10076 static void
10077 do_msr (void)
10078 {
10079 if (do_vfp_nsyn_msr () == SUCCESS)
10080 return;
10081
10082 inst.instruction |= inst.operands[0].imm;
10083 if (inst.operands[1].isreg)
10084 inst.instruction |= inst.operands[1].reg;
10085 else
10086 {
10087 inst.instruction |= INST_IMMEDIATE;
10088 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
10089 inst.relocs[0].pc_rel = 0;
10090 }
10091 }
10092
10093 static void
10094 do_mul (void)
10095 {
10096 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
10097
10098 if (!inst.operands[2].present)
10099 inst.operands[2].reg = inst.operands[0].reg;
10100 inst.instruction |= inst.operands[0].reg << 16;
10101 inst.instruction |= inst.operands[1].reg;
10102 inst.instruction |= inst.operands[2].reg << 8;
10103
10104 if (inst.operands[0].reg == inst.operands[1].reg
10105 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
10106 as_tsktsk (_("Rd and Rm should be different in mul"));
10107 }
10108
10109 /* Long Multiply Parser
10110 UMULL RdLo, RdHi, Rm, Rs
10111 SMULL RdLo, RdHi, Rm, Rs
10112 UMLAL RdLo, RdHi, Rm, Rs
10113 SMLAL RdLo, RdHi, Rm, Rs. */
10114
10115 static void
10116 do_mull (void)
10117 {
10118 inst.instruction |= inst.operands[0].reg << 12;
10119 inst.instruction |= inst.operands[1].reg << 16;
10120 inst.instruction |= inst.operands[2].reg;
10121 inst.instruction |= inst.operands[3].reg << 8;
10122
10123 /* rdhi and rdlo must be different. */
10124 if (inst.operands[0].reg == inst.operands[1].reg)
10125 as_tsktsk (_("rdhi and rdlo must be different"));
10126
10127 /* rdhi, rdlo and rm must all be different before armv6. */
10128 if ((inst.operands[0].reg == inst.operands[2].reg
10129 || inst.operands[1].reg == inst.operands[2].reg)
10130 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
10131 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
10132 }
10133
10134 static void
10135 do_nop (void)
10136 {
10137 if (inst.operands[0].present
10138 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
10139 {
10140 /* Architectural NOP hints are CPSR sets with no bits selected. */
10141 inst.instruction &= 0xf0000000;
10142 inst.instruction |= 0x0320f000;
10143 if (inst.operands[0].present)
10144 inst.instruction |= inst.operands[0].imm;
10145 }
10146 }
10147
10148 /* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
10149 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
10150 Condition defaults to COND_ALWAYS.
10151 Error if Rd, Rn or Rm are R15. */
10152
10153 static void
10154 do_pkhbt (void)
10155 {
10156 inst.instruction |= inst.operands[0].reg << 12;
10157 inst.instruction |= inst.operands[1].reg << 16;
10158 inst.instruction |= inst.operands[2].reg;
10159 if (inst.operands[3].present)
10160 encode_arm_shift (3);
10161 }
10162
10163 /* ARM V6 PKHTB (Argument Parse). */
10164
10165 static void
10166 do_pkhtb (void)
10167 {
10168 if (!inst.operands[3].present)
10169 {
10170 /* If the shift specifier is omitted, turn the instruction
10171 into pkhbt rd, rm, rn. */
10172 inst.instruction &= 0xfff00010;
10173 inst.instruction |= inst.operands[0].reg << 12;
10174 inst.instruction |= inst.operands[1].reg;
10175 inst.instruction |= inst.operands[2].reg << 16;
10176 }
10177 else
10178 {
10179 inst.instruction |= inst.operands[0].reg << 12;
10180 inst.instruction |= inst.operands[1].reg << 16;
10181 inst.instruction |= inst.operands[2].reg;
10182 encode_arm_shift (3);
10183 }
10184 }
10185
10186 /* ARMv5TE: Preload-Cache
10187 MP Extensions: Preload for write
10188
10189 PLD(W) <addr_mode>
10190
10191 Syntactically, like LDR with B=1, W=0, L=1. */
10192
10193 static void
10194 do_pld (void)
10195 {
10196 constraint (!inst.operands[0].isreg,
10197 _("'[' expected after PLD mnemonic"));
10198 constraint (inst.operands[0].postind,
10199 _("post-indexed expression used in preload instruction"));
10200 constraint (inst.operands[0].writeback,
10201 _("writeback used in preload instruction"));
10202 constraint (!inst.operands[0].preind,
10203 _("unindexed addressing used in preload instruction"));
10204 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
10205 }
10206
10207 /* ARMv7: PLI <addr_mode> */
10208 static void
10209 do_pli (void)
10210 {
10211 constraint (!inst.operands[0].isreg,
10212 _("'[' expected after PLI mnemonic"));
10213 constraint (inst.operands[0].postind,
10214 _("post-indexed expression used in preload instruction"));
10215 constraint (inst.operands[0].writeback,
10216 _("writeback used in preload instruction"));
10217 constraint (!inst.operands[0].preind,
10218 _("unindexed addressing used in preload instruction"));
10219 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
10220 inst.instruction &= ~PRE_INDEX;
10221 }
10222
10223 static void
10224 do_push_pop (void)
10225 {
10226 constraint (inst.operands[0].writeback,
10227 _("push/pop do not support {reglist}^"));
10228 inst.operands[1] = inst.operands[0];
10229 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
10230 inst.operands[0].isreg = 1;
10231 inst.operands[0].writeback = 1;
10232 inst.operands[0].reg = REG_SP;
10233 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
10234 }
10235
10236 /* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
10237 word at the specified address and the following word
10238 respectively.
10239 Unconditionally executed.
10240 Error if Rn is R15. */
10241
10242 static void
10243 do_rfe (void)
10244 {
10245 inst.instruction |= inst.operands[0].reg << 16;
10246 if (inst.operands[0].writeback)
10247 inst.instruction |= WRITE_BACK;
10248 }
10249
10250 /* ARM V6 ssat (argument parse). */
10251
10252 static void
10253 do_ssat (void)
10254 {
10255 inst.instruction |= inst.operands[0].reg << 12;
10256 inst.instruction |= (inst.operands[1].imm - 1) << 16;
10257 inst.instruction |= inst.operands[2].reg;
10258
10259 if (inst.operands[3].present)
10260 encode_arm_shift (3);
10261 }
10262
10263 /* ARM V6 usat (argument parse). */
10264
10265 static void
10266 do_usat (void)
10267 {
10268 inst.instruction |= inst.operands[0].reg << 12;
10269 inst.instruction |= inst.operands[1].imm << 16;
10270 inst.instruction |= inst.operands[2].reg;
10271
10272 if (inst.operands[3].present)
10273 encode_arm_shift (3);
10274 }
10275
10276 /* ARM V6 ssat16 (argument parse). */
10277
10278 static void
10279 do_ssat16 (void)
10280 {
10281 inst.instruction |= inst.operands[0].reg << 12;
10282 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
10283 inst.instruction |= inst.operands[2].reg;
10284 }
10285
10286 static void
10287 do_usat16 (void)
10288 {
10289 inst.instruction |= inst.operands[0].reg << 12;
10290 inst.instruction |= inst.operands[1].imm << 16;
10291 inst.instruction |= inst.operands[2].reg;
10292 }
10293
10294 /* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
10295 preserving the other bits.
10296
10297 setend <endian_specifier>, where <endian_specifier> is either
10298 BE or LE. */
10299
10300 static void
10301 do_setend (void)
10302 {
10303 if (warn_on_deprecated
10304 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
10305 as_tsktsk (_("setend use is deprecated for ARMv8"));
10306
10307 if (inst.operands[0].imm)
10308 inst.instruction |= 0x200;
10309 }
10310
10311 static void
10312 do_shift (void)
10313 {
10314 unsigned int Rm = (inst.operands[1].present
10315 ? inst.operands[1].reg
10316 : inst.operands[0].reg);
10317
10318 inst.instruction |= inst.operands[0].reg << 12;
10319 inst.instruction |= Rm;
10320 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
10321 {
10322 inst.instruction |= inst.operands[2].reg << 8;
10323 inst.instruction |= SHIFT_BY_REG;
10324 /* PR 12854: Error on extraneous shifts. */
10325 constraint (inst.operands[2].shifted,
10326 _("extraneous shift as part of operand to shift insn"));
10327 }
10328 else
10329 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
10330 }
10331
10332 static void
10333 do_smc (void)
10334 {
10335 unsigned int value = inst.relocs[0].exp.X_add_number;
10336 constraint (value > 0xf, _("immediate too large (bigger than 0xF)"));
10337
10338 inst.relocs[0].type = BFD_RELOC_ARM_SMC;
10339 inst.relocs[0].pc_rel = 0;
10340 }
10341
10342 static void
10343 do_hvc (void)
10344 {
10345 inst.relocs[0].type = BFD_RELOC_ARM_HVC;
10346 inst.relocs[0].pc_rel = 0;
10347 }
10348
10349 static void
10350 do_swi (void)
10351 {
10352 inst.relocs[0].type = BFD_RELOC_ARM_SWI;
10353 inst.relocs[0].pc_rel = 0;
10354 }
10355
10356 static void
10357 do_setpan (void)
10358 {
10359 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
10360 _("selected processor does not support SETPAN instruction"));
10361
10362 inst.instruction |= ((inst.operands[0].imm & 1) << 9);
10363 }
10364
10365 static void
10366 do_t_setpan (void)
10367 {
10368 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
10369 _("selected processor does not support SETPAN instruction"));
10370
10371 inst.instruction |= (inst.operands[0].imm << 3);
10372 }
10373
10374 /* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
10375 SMLAxy{cond} Rd,Rm,Rs,Rn
10376 SMLAWy{cond} Rd,Rm,Rs,Rn
10377 Error if any register is R15. */
10378
10379 static void
10380 do_smla (void)
10381 {
10382 inst.instruction |= inst.operands[0].reg << 16;
10383 inst.instruction |= inst.operands[1].reg;
10384 inst.instruction |= inst.operands[2].reg << 8;
10385 inst.instruction |= inst.operands[3].reg << 12;
10386 }
10387
10388 /* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
10389 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
10390 Error if any register is R15.
10391 Warning if Rdlo == Rdhi. */
10392
10393 static void
10394 do_smlal (void)
10395 {
10396 inst.instruction |= inst.operands[0].reg << 12;
10397 inst.instruction |= inst.operands[1].reg << 16;
10398 inst.instruction |= inst.operands[2].reg;
10399 inst.instruction |= inst.operands[3].reg << 8;
10400
10401 if (inst.operands[0].reg == inst.operands[1].reg)
10402 as_tsktsk (_("rdhi and rdlo must be different"));
10403 }
10404
10405 /* ARM V5E (El Segundo) signed-multiply (argument parse)
10406 SMULxy{cond} Rd,Rm,Rs
10407 Error if any register is R15. */
10408
10409 static void
10410 do_smul (void)
10411 {
10412 inst.instruction |= inst.operands[0].reg << 16;
10413 inst.instruction |= inst.operands[1].reg;
10414 inst.instruction |= inst.operands[2].reg << 8;
10415 }
10416
10417 /* ARM V6 srs (argument parse). The variable fields in the encoding are
10418 the same for both ARM and Thumb-2. */
10419
10420 static void
10421 do_srs (void)
10422 {
10423 int reg;
10424
10425 if (inst.operands[0].present)
10426 {
10427 reg = inst.operands[0].reg;
10428 constraint (reg != REG_SP, _("SRS base register must be r13"));
10429 }
10430 else
10431 reg = REG_SP;
10432
10433 inst.instruction |= reg << 16;
10434 inst.instruction |= inst.operands[1].imm;
10435 if (inst.operands[0].writeback || inst.operands[1].writeback)
10436 inst.instruction |= WRITE_BACK;
10437 }
10438
10439 /* ARM V6 strex (argument parse). */
10440
10441 static void
10442 do_strex (void)
10443 {
10444 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
10445 || inst.operands[2].postind || inst.operands[2].writeback
10446 || inst.operands[2].immisreg || inst.operands[2].shifted
10447 || inst.operands[2].negative
10448 /* See comment in do_ldrex(). */
10449 || (inst.operands[2].reg == REG_PC),
10450 BAD_ADDR_MODE);
10451
10452 constraint (inst.operands[0].reg == inst.operands[1].reg
10453 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10454
10455 constraint (inst.relocs[0].exp.X_op != O_constant
10456 || inst.relocs[0].exp.X_add_number != 0,
10457 _("offset must be zero in ARM encoding"));
10458
10459 inst.instruction |= inst.operands[0].reg << 12;
10460 inst.instruction |= inst.operands[1].reg;
10461 inst.instruction |= inst.operands[2].reg << 16;
10462 inst.relocs[0].type = BFD_RELOC_UNUSED;
10463 }
10464
10465 static void
10466 do_t_strexbh (void)
10467 {
10468 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
10469 || inst.operands[2].postind || inst.operands[2].writeback
10470 || inst.operands[2].immisreg || inst.operands[2].shifted
10471 || inst.operands[2].negative,
10472 BAD_ADDR_MODE);
10473
10474 constraint (inst.operands[0].reg == inst.operands[1].reg
10475 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10476
10477 do_rm_rd_rn ();
10478 }
10479
10480 static void
10481 do_strexd (void)
10482 {
10483 constraint (inst.operands[1].reg % 2 != 0,
10484 _("even register required"));
10485 constraint (inst.operands[2].present
10486 && inst.operands[2].reg != inst.operands[1].reg + 1,
10487 _("can only store two consecutive registers"));
10488 /* If op 2 were present and equal to PC, this function wouldn't
10489 have been called in the first place. */
10490 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
10491
10492 constraint (inst.operands[0].reg == inst.operands[1].reg
10493 || inst.operands[0].reg == inst.operands[1].reg + 1
10494 || inst.operands[0].reg == inst.operands[3].reg,
10495 BAD_OVERLAP);
10496
10497 inst.instruction |= inst.operands[0].reg << 12;
10498 inst.instruction |= inst.operands[1].reg;
10499 inst.instruction |= inst.operands[3].reg << 16;
10500 }
10501
10502 /* ARM V8 STRL. */
10503 static void
10504 do_stlex (void)
10505 {
10506 constraint (inst.operands[0].reg == inst.operands[1].reg
10507 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10508
10509 do_rd_rm_rn ();
10510 }
10511
10512 static void
10513 do_t_stlex (void)
10514 {
10515 constraint (inst.operands[0].reg == inst.operands[1].reg
10516 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10517
10518 do_rm_rd_rn ();
10519 }
10520
10521 /* ARM V6 SXTAH extracts a 16-bit value from a register, sign
10522 extends it to 32-bits, and adds the result to a value in another
10523 register. You can specify a rotation by 0, 8, 16, or 24 bits
10524 before extracting the 16-bit value.
10525 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
10526 Condition defaults to COND_ALWAYS.
10527 Error if any register uses R15. */
10528
10529 static void
10530 do_sxtah (void)
10531 {
10532 inst.instruction |= inst.operands[0].reg << 12;
10533 inst.instruction |= inst.operands[1].reg << 16;
10534 inst.instruction |= inst.operands[2].reg;
10535 inst.instruction |= inst.operands[3].imm << 10;
10536 }
10537
10538 /* ARM V6 SXTH.
10539
10540 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
10541 Condition defaults to COND_ALWAYS.
10542 Error if any register uses R15. */
10543
10544 static void
10545 do_sxth (void)
10546 {
10547 inst.instruction |= inst.operands[0].reg << 12;
10548 inst.instruction |= inst.operands[1].reg;
10549 inst.instruction |= inst.operands[2].imm << 10;
10550 }
10551 \f
10552 /* VFP instructions. In a logical order: SP variant first, monad
10553 before dyad, arithmetic then move then load/store. */
10554
10555 static void
10556 do_vfp_sp_monadic (void)
10557 {
10558 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10559 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10560 _(BAD_FPU));
10561
10562 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10563 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
10564 }
10565
10566 static void
10567 do_vfp_sp_dyadic (void)
10568 {
10569 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10570 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
10571 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
10572 }
10573
10574 static void
10575 do_vfp_sp_compare_z (void)
10576 {
10577 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10578 }
10579
10580 static void
10581 do_vfp_dp_sp_cvt (void)
10582 {
10583 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10584 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
10585 }
10586
10587 static void
10588 do_vfp_sp_dp_cvt (void)
10589 {
10590 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10591 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
10592 }
10593
10594 static void
10595 do_vfp_reg_from_sp (void)
10596 {
10597 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10598 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10599 _(BAD_FPU));
10600
10601 inst.instruction |= inst.operands[0].reg << 12;
10602 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
10603 }
10604
10605 static void
10606 do_vfp_reg2_from_sp2 (void)
10607 {
10608 constraint (inst.operands[2].imm != 2,
10609 _("only two consecutive VFP SP registers allowed here"));
10610 inst.instruction |= inst.operands[0].reg << 12;
10611 inst.instruction |= inst.operands[1].reg << 16;
10612 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
10613 }
10614
10615 static void
10616 do_vfp_sp_from_reg (void)
10617 {
10618 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10619 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10620 _(BAD_FPU));
10621
10622 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
10623 inst.instruction |= inst.operands[1].reg << 12;
10624 }
10625
10626 static void
10627 do_vfp_sp2_from_reg2 (void)
10628 {
10629 constraint (inst.operands[0].imm != 2,
10630 _("only two consecutive VFP SP registers allowed here"));
10631 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
10632 inst.instruction |= inst.operands[1].reg << 12;
10633 inst.instruction |= inst.operands[2].reg << 16;
10634 }
10635
10636 static void
10637 do_vfp_sp_ldst (void)
10638 {
10639 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10640 encode_arm_cp_address (1, FALSE, TRUE, 0);
10641 }
10642
10643 static void
10644 do_vfp_dp_ldst (void)
10645 {
10646 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10647 encode_arm_cp_address (1, FALSE, TRUE, 0);
10648 }
10649
10650
10651 static void
10652 vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
10653 {
10654 if (inst.operands[0].writeback)
10655 inst.instruction |= WRITE_BACK;
10656 else
10657 constraint (ldstm_type != VFP_LDSTMIA,
10658 _("this addressing mode requires base-register writeback"));
10659 inst.instruction |= inst.operands[0].reg << 16;
10660 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
10661 inst.instruction |= inst.operands[1].imm;
10662 }
10663
10664 static void
10665 vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
10666 {
10667 int count;
10668
10669 if (inst.operands[0].writeback)
10670 inst.instruction |= WRITE_BACK;
10671 else
10672 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
10673 _("this addressing mode requires base-register writeback"));
10674
10675 inst.instruction |= inst.operands[0].reg << 16;
10676 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10677
10678 count = inst.operands[1].imm << 1;
10679 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
10680 count += 1;
10681
10682 inst.instruction |= count;
10683 }
10684
10685 static void
10686 do_vfp_sp_ldstmia (void)
10687 {
10688 vfp_sp_ldstm (VFP_LDSTMIA);
10689 }
10690
10691 static void
10692 do_vfp_sp_ldstmdb (void)
10693 {
10694 vfp_sp_ldstm (VFP_LDSTMDB);
10695 }
10696
10697 static void
10698 do_vfp_dp_ldstmia (void)
10699 {
10700 vfp_dp_ldstm (VFP_LDSTMIA);
10701 }
10702
10703 static void
10704 do_vfp_dp_ldstmdb (void)
10705 {
10706 vfp_dp_ldstm (VFP_LDSTMDB);
10707 }
10708
10709 static void
10710 do_vfp_xp_ldstmia (void)
10711 {
10712 vfp_dp_ldstm (VFP_LDSTMIAX);
10713 }
10714
10715 static void
10716 do_vfp_xp_ldstmdb (void)
10717 {
10718 vfp_dp_ldstm (VFP_LDSTMDBX);
10719 }
10720
10721 static void
10722 do_vfp_dp_rd_rm (void)
10723 {
10724 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
10725 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10726 _(BAD_FPU));
10727
10728 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10729 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
10730 }
10731
10732 static void
10733 do_vfp_dp_rn_rd (void)
10734 {
10735 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
10736 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10737 }
10738
10739 static void
10740 do_vfp_dp_rd_rn (void)
10741 {
10742 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10743 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
10744 }
10745
10746 static void
10747 do_vfp_dp_rd_rn_rm (void)
10748 {
10749 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
10750 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10751 _(BAD_FPU));
10752
10753 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10754 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
10755 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
10756 }
10757
10758 static void
10759 do_vfp_dp_rd (void)
10760 {
10761 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10762 }
10763
10764 static void
10765 do_vfp_dp_rm_rd_rn (void)
10766 {
10767 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
10768 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10769 _(BAD_FPU));
10770
10771 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
10772 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10773 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
10774 }
10775
10776 /* VFPv3 instructions. */
10777 static void
10778 do_vfp_sp_const (void)
10779 {
10780 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10781 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
10782 inst.instruction |= (inst.operands[1].imm & 0x0f);
10783 }
10784
10785 static void
10786 do_vfp_dp_const (void)
10787 {
10788 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10789 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
10790 inst.instruction |= (inst.operands[1].imm & 0x0f);
10791 }
10792
10793 static void
10794 vfp_conv (int srcsize)
10795 {
10796 int immbits = srcsize - inst.operands[1].imm;
10797
10798 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
10799 {
10800 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
10801 i.e. immbits must be in range 0 - 16. */
10802 inst.error = _("immediate value out of range, expected range [0, 16]");
10803 return;
10804 }
10805 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
10806 {
10807 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
10808 i.e. immbits must be in range 0 - 31. */
10809 inst.error = _("immediate value out of range, expected range [1, 32]");
10810 return;
10811 }
10812
10813 inst.instruction |= (immbits & 1) << 5;
10814 inst.instruction |= (immbits >> 1);
10815 }
10816
10817 static void
10818 do_vfp_sp_conv_16 (void)
10819 {
10820 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10821 vfp_conv (16);
10822 }
10823
10824 static void
10825 do_vfp_dp_conv_16 (void)
10826 {
10827 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10828 vfp_conv (16);
10829 }
10830
10831 static void
10832 do_vfp_sp_conv_32 (void)
10833 {
10834 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10835 vfp_conv (32);
10836 }
10837
10838 static void
10839 do_vfp_dp_conv_32 (void)
10840 {
10841 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10842 vfp_conv (32);
10843 }
10844 \f
10845 /* FPA instructions. Also in a logical order. */
10846
10847 static void
10848 do_fpa_cmp (void)
10849 {
10850 inst.instruction |= inst.operands[0].reg << 16;
10851 inst.instruction |= inst.operands[1].reg;
10852 }
10853
10854 static void
10855 do_fpa_ldmstm (void)
10856 {
10857 inst.instruction |= inst.operands[0].reg << 12;
10858 switch (inst.operands[1].imm)
10859 {
10860 case 1: inst.instruction |= CP_T_X; break;
10861 case 2: inst.instruction |= CP_T_Y; break;
10862 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
10863 case 4: break;
10864 default: abort ();
10865 }
10866
10867 if (inst.instruction & (PRE_INDEX | INDEX_UP))
10868 {
10869 /* The instruction specified "ea" or "fd", so we can only accept
10870 [Rn]{!}. The instruction does not really support stacking or
10871 unstacking, so we have to emulate these by setting appropriate
10872 bits and offsets. */
10873 constraint (inst.relocs[0].exp.X_op != O_constant
10874 || inst.relocs[0].exp.X_add_number != 0,
10875 _("this instruction does not support indexing"));
10876
10877 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
10878 inst.relocs[0].exp.X_add_number = 12 * inst.operands[1].imm;
10879
10880 if (!(inst.instruction & INDEX_UP))
10881 inst.relocs[0].exp.X_add_number = -inst.relocs[0].exp.X_add_number;
10882
10883 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
10884 {
10885 inst.operands[2].preind = 0;
10886 inst.operands[2].postind = 1;
10887 }
10888 }
10889
10890 encode_arm_cp_address (2, TRUE, TRUE, 0);
10891 }
10892 \f
10893 /* iWMMXt instructions: strictly in alphabetical order. */
10894
10895 static void
10896 do_iwmmxt_tandorc (void)
10897 {
10898 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
10899 }
10900
10901 static void
10902 do_iwmmxt_textrc (void)
10903 {
10904 inst.instruction |= inst.operands[0].reg << 12;
10905 inst.instruction |= inst.operands[1].imm;
10906 }
10907
10908 static void
10909 do_iwmmxt_textrm (void)
10910 {
10911 inst.instruction |= inst.operands[0].reg << 12;
10912 inst.instruction |= inst.operands[1].reg << 16;
10913 inst.instruction |= inst.operands[2].imm;
10914 }
10915
10916 static void
10917 do_iwmmxt_tinsr (void)
10918 {
10919 inst.instruction |= inst.operands[0].reg << 16;
10920 inst.instruction |= inst.operands[1].reg << 12;
10921 inst.instruction |= inst.operands[2].imm;
10922 }
10923
10924 static void
10925 do_iwmmxt_tmia (void)
10926 {
10927 inst.instruction |= inst.operands[0].reg << 5;
10928 inst.instruction |= inst.operands[1].reg;
10929 inst.instruction |= inst.operands[2].reg << 12;
10930 }
10931
10932 static void
10933 do_iwmmxt_waligni (void)
10934 {
10935 inst.instruction |= inst.operands[0].reg << 12;
10936 inst.instruction |= inst.operands[1].reg << 16;
10937 inst.instruction |= inst.operands[2].reg;
10938 inst.instruction |= inst.operands[3].imm << 20;
10939 }
10940
10941 static void
10942 do_iwmmxt_wmerge (void)
10943 {
10944 inst.instruction |= inst.operands[0].reg << 12;
10945 inst.instruction |= inst.operands[1].reg << 16;
10946 inst.instruction |= inst.operands[2].reg;
10947 inst.instruction |= inst.operands[3].imm << 21;
10948 }
10949
10950 static void
10951 do_iwmmxt_wmov (void)
10952 {
10953 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
10954 inst.instruction |= inst.operands[0].reg << 12;
10955 inst.instruction |= inst.operands[1].reg << 16;
10956 inst.instruction |= inst.operands[1].reg;
10957 }
10958
10959 static void
10960 do_iwmmxt_wldstbh (void)
10961 {
10962 int reloc;
10963 inst.instruction |= inst.operands[0].reg << 12;
10964 if (thumb_mode)
10965 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
10966 else
10967 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
10968 encode_arm_cp_address (1, TRUE, FALSE, reloc);
10969 }
10970
10971 static void
10972 do_iwmmxt_wldstw (void)
10973 {
10974 /* RIWR_RIWC clears .isreg for a control register. */
10975 if (!inst.operands[0].isreg)
10976 {
10977 constraint (inst.cond != COND_ALWAYS, BAD_COND);
10978 inst.instruction |= 0xf0000000;
10979 }
10980
10981 inst.instruction |= inst.operands[0].reg << 12;
10982 encode_arm_cp_address (1, TRUE, TRUE, 0);
10983 }
10984
10985 static void
10986 do_iwmmxt_wldstd (void)
10987 {
10988 inst.instruction |= inst.operands[0].reg << 12;
10989 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
10990 && inst.operands[1].immisreg)
10991 {
10992 inst.instruction &= ~0x1a000ff;
10993 inst.instruction |= (0xfU << 28);
10994 if (inst.operands[1].preind)
10995 inst.instruction |= PRE_INDEX;
10996 if (!inst.operands[1].negative)
10997 inst.instruction |= INDEX_UP;
10998 if (inst.operands[1].writeback)
10999 inst.instruction |= WRITE_BACK;
11000 inst.instruction |= inst.operands[1].reg << 16;
11001 inst.instruction |= inst.relocs[0].exp.X_add_number << 4;
11002 inst.instruction |= inst.operands[1].imm;
11003 }
11004 else
11005 encode_arm_cp_address (1, TRUE, FALSE, 0);
11006 }
11007
11008 static void
11009 do_iwmmxt_wshufh (void)
11010 {
11011 inst.instruction |= inst.operands[0].reg << 12;
11012 inst.instruction |= inst.operands[1].reg << 16;
11013 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
11014 inst.instruction |= (inst.operands[2].imm & 0x0f);
11015 }
11016
11017 static void
11018 do_iwmmxt_wzero (void)
11019 {
11020 /* WZERO reg is an alias for WANDN reg, reg, reg. */
11021 inst.instruction |= inst.operands[0].reg;
11022 inst.instruction |= inst.operands[0].reg << 12;
11023 inst.instruction |= inst.operands[0].reg << 16;
11024 }
11025
11026 static void
11027 do_iwmmxt_wrwrwr_or_imm5 (void)
11028 {
11029 if (inst.operands[2].isreg)
11030 do_rd_rn_rm ();
11031 else {
11032 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
11033 _("immediate operand requires iWMMXt2"));
11034 do_rd_rn ();
11035 if (inst.operands[2].imm == 0)
11036 {
11037 switch ((inst.instruction >> 20) & 0xf)
11038 {
11039 case 4:
11040 case 5:
11041 case 6:
11042 case 7:
11043 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
11044 inst.operands[2].imm = 16;
11045 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
11046 break;
11047 case 8:
11048 case 9:
11049 case 10:
11050 case 11:
11051 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
11052 inst.operands[2].imm = 32;
11053 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
11054 break;
11055 case 12:
11056 case 13:
11057 case 14:
11058 case 15:
11059 {
11060 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
11061 unsigned long wrn;
11062 wrn = (inst.instruction >> 16) & 0xf;
11063 inst.instruction &= 0xff0fff0f;
11064 inst.instruction |= wrn;
11065 /* Bail out here; the instruction is now assembled. */
11066 return;
11067 }
11068 }
11069 }
11070 /* Map 32 -> 0, etc. */
11071 inst.operands[2].imm &= 0x1f;
11072 inst.instruction |= (0xfU << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
11073 }
11074 }
11075 \f
11076 /* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
11077 operations first, then control, shift, and load/store. */
11078
11079 /* Insns like "foo X,Y,Z". */
11080
11081 static void
11082 do_mav_triple (void)
11083 {
11084 inst.instruction |= inst.operands[0].reg << 16;
11085 inst.instruction |= inst.operands[1].reg;
11086 inst.instruction |= inst.operands[2].reg << 12;
11087 }
11088
11089 /* Insns like "foo W,X,Y,Z".
11090 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
11091
11092 static void
11093 do_mav_quad (void)
11094 {
11095 inst.instruction |= inst.operands[0].reg << 5;
11096 inst.instruction |= inst.operands[1].reg << 12;
11097 inst.instruction |= inst.operands[2].reg << 16;
11098 inst.instruction |= inst.operands[3].reg;
11099 }
11100
11101 /* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
11102 static void
11103 do_mav_dspsc (void)
11104 {
11105 inst.instruction |= inst.operands[1].reg << 12;
11106 }
11107
11108 /* Maverick shift immediate instructions.
11109 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
11110 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
11111
11112 static void
11113 do_mav_shift (void)
11114 {
11115 int imm = inst.operands[2].imm;
11116
11117 inst.instruction |= inst.operands[0].reg << 12;
11118 inst.instruction |= inst.operands[1].reg << 16;
11119
11120 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
11121 Bits 5-7 of the insn should have bits 4-6 of the immediate.
11122 Bit 4 should be 0. */
11123 imm = (imm & 0xf) | ((imm & 0x70) << 1);
11124
11125 inst.instruction |= imm;
11126 }
11127 \f
11128 /* XScale instructions. Also sorted arithmetic before move. */
11129
11130 /* Xscale multiply-accumulate (argument parse)
11131 MIAcc acc0,Rm,Rs
11132 MIAPHcc acc0,Rm,Rs
11133 MIAxycc acc0,Rm,Rs. */
11134
11135 static void
11136 do_xsc_mia (void)
11137 {
11138 inst.instruction |= inst.operands[1].reg;
11139 inst.instruction |= inst.operands[2].reg << 12;
11140 }
11141
11142 /* Xscale move-accumulator-register (argument parse)
11143
11144 MARcc acc0,RdLo,RdHi. */
11145
11146 static void
11147 do_xsc_mar (void)
11148 {
11149 inst.instruction |= inst.operands[1].reg << 12;
11150 inst.instruction |= inst.operands[2].reg << 16;
11151 }
11152
11153 /* Xscale move-register-accumulator (argument parse)
11154
11155 MRAcc RdLo,RdHi,acc0. */
11156
11157 static void
11158 do_xsc_mra (void)
11159 {
11160 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
11161 inst.instruction |= inst.operands[0].reg << 12;
11162 inst.instruction |= inst.operands[1].reg << 16;
11163 }
11164 \f
11165 /* Encoding functions relevant only to Thumb. */
11166
11167 /* inst.operands[i] is a shifted-register operand; encode
11168 it into inst.instruction in the format used by Thumb32. */
11169
11170 static void
11171 encode_thumb32_shifted_operand (int i)
11172 {
11173 unsigned int value = inst.relocs[0].exp.X_add_number;
11174 unsigned int shift = inst.operands[i].shift_kind;
11175
11176 constraint (inst.operands[i].immisreg,
11177 _("shift by register not allowed in thumb mode"));
11178 inst.instruction |= inst.operands[i].reg;
11179 if (shift == SHIFT_RRX)
11180 inst.instruction |= SHIFT_ROR << 4;
11181 else
11182 {
11183 constraint (inst.relocs[0].exp.X_op != O_constant,
11184 _("expression too complex"));
11185
11186 constraint (value > 32
11187 || (value == 32 && (shift == SHIFT_LSL
11188 || shift == SHIFT_ROR)),
11189 _("shift expression is too large"));
11190
11191 if (value == 0)
11192 shift = SHIFT_LSL;
11193 else if (value == 32)
11194 value = 0;
11195
11196 inst.instruction |= shift << 4;
11197 inst.instruction |= (value & 0x1c) << 10;
11198 inst.instruction |= (value & 0x03) << 6;
11199 }
11200 }
11201
11202
11203 /* inst.operands[i] was set up by parse_address. Encode it into a
11204 Thumb32 format load or store instruction. Reject forms that cannot
11205 be used with such instructions. If is_t is true, reject forms that
11206 cannot be used with a T instruction; if is_d is true, reject forms
11207 that cannot be used with a D instruction. If it is a store insn,
11208 reject PC in Rn. */
11209
11210 static void
11211 encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
11212 {
11213 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
11214
11215 constraint (!inst.operands[i].isreg,
11216 _("Instruction does not support =N addresses"));
11217
11218 inst.instruction |= inst.operands[i].reg << 16;
11219 if (inst.operands[i].immisreg)
11220 {
11221 constraint (is_pc, BAD_PC_ADDRESSING);
11222 constraint (is_t || is_d, _("cannot use register index with this instruction"));
11223 constraint (inst.operands[i].negative,
11224 _("Thumb does not support negative register indexing"));
11225 constraint (inst.operands[i].postind,
11226 _("Thumb does not support register post-indexing"));
11227 constraint (inst.operands[i].writeback,
11228 _("Thumb does not support register indexing with writeback"));
11229 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
11230 _("Thumb supports only LSL in shifted register indexing"));
11231
11232 inst.instruction |= inst.operands[i].imm;
11233 if (inst.operands[i].shifted)
11234 {
11235 constraint (inst.relocs[0].exp.X_op != O_constant,
11236 _("expression too complex"));
11237 constraint (inst.relocs[0].exp.X_add_number < 0
11238 || inst.relocs[0].exp.X_add_number > 3,
11239 _("shift out of range"));
11240 inst.instruction |= inst.relocs[0].exp.X_add_number << 4;
11241 }
11242 inst.relocs[0].type = BFD_RELOC_UNUSED;
11243 }
11244 else if (inst.operands[i].preind)
11245 {
11246 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
11247 constraint (is_t && inst.operands[i].writeback,
11248 _("cannot use writeback with this instruction"));
11249 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
11250 BAD_PC_ADDRESSING);
11251
11252 if (is_d)
11253 {
11254 inst.instruction |= 0x01000000;
11255 if (inst.operands[i].writeback)
11256 inst.instruction |= 0x00200000;
11257 }
11258 else
11259 {
11260 inst.instruction |= 0x00000c00;
11261 if (inst.operands[i].writeback)
11262 inst.instruction |= 0x00000100;
11263 }
11264 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_IMM;
11265 }
11266 else if (inst.operands[i].postind)
11267 {
11268 gas_assert (inst.operands[i].writeback);
11269 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
11270 constraint (is_t, _("cannot use post-indexing with this instruction"));
11271
11272 if (is_d)
11273 inst.instruction |= 0x00200000;
11274 else
11275 inst.instruction |= 0x00000900;
11276 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_IMM;
11277 }
11278 else /* unindexed - only for coprocessor */
11279 inst.error = _("instruction does not accept unindexed addressing");
11280 }
11281
11282 /* Table of Thumb instructions which exist in 16- and/or 32-bit
11283 encodings (the latter only in post-V6T2 cores). The index is the
11284 value used in the insns table below. When there is more than one
11285 possible 16-bit encoding for the instruction, this table always
11286 holds variant (1).
11287 Also contains several pseudo-instructions used during relaxation. */
11288 #define T16_32_TAB \
11289 X(_adc, 4140, eb400000), \
11290 X(_adcs, 4140, eb500000), \
11291 X(_add, 1c00, eb000000), \
11292 X(_adds, 1c00, eb100000), \
11293 X(_addi, 0000, f1000000), \
11294 X(_addis, 0000, f1100000), \
11295 X(_add_pc,000f, f20f0000), \
11296 X(_add_sp,000d, f10d0000), \
11297 X(_adr, 000f, f20f0000), \
11298 X(_and, 4000, ea000000), \
11299 X(_ands, 4000, ea100000), \
11300 X(_asr, 1000, fa40f000), \
11301 X(_asrs, 1000, fa50f000), \
11302 X(_b, e000, f000b000), \
11303 X(_bcond, d000, f0008000), \
11304 X(_bf, 0000, f040e001), \
11305 X(_bfcsel,0000, f000e001), \
11306 X(_bfx, 0000, f060e001), \
11307 X(_bfl, 0000, f000c001), \
11308 X(_bflx, 0000, f070e001), \
11309 X(_bic, 4380, ea200000), \
11310 X(_bics, 4380, ea300000), \
11311 X(_cinc, 0000, ea509000), \
11312 X(_cinv, 0000, ea50a000), \
11313 X(_cmn, 42c0, eb100f00), \
11314 X(_cmp, 2800, ebb00f00), \
11315 X(_cneg, 0000, ea50b000), \
11316 X(_cpsie, b660, f3af8400), \
11317 X(_cpsid, b670, f3af8600), \
11318 X(_cpy, 4600, ea4f0000), \
11319 X(_csel, 0000, ea508000), \
11320 X(_cset, 0000, ea5f900f), \
11321 X(_csetm, 0000, ea5fa00f), \
11322 X(_csinc, 0000, ea509000), \
11323 X(_csinv, 0000, ea50a000), \
11324 X(_csneg, 0000, ea50b000), \
11325 X(_dec_sp,80dd, f1ad0d00), \
11326 X(_dls, 0000, f040e001), \
11327 X(_dlstp, 0000, f000e001), \
11328 X(_eor, 4040, ea800000), \
11329 X(_eors, 4040, ea900000), \
11330 X(_inc_sp,00dd, f10d0d00), \
11331 X(_lctp, 0000, f00fe001), \
11332 X(_ldmia, c800, e8900000), \
11333 X(_ldr, 6800, f8500000), \
11334 X(_ldrb, 7800, f8100000), \
11335 X(_ldrh, 8800, f8300000), \
11336 X(_ldrsb, 5600, f9100000), \
11337 X(_ldrsh, 5e00, f9300000), \
11338 X(_ldr_pc,4800, f85f0000), \
11339 X(_ldr_pc2,4800, f85f0000), \
11340 X(_ldr_sp,9800, f85d0000), \
11341 X(_le, 0000, f00fc001), \
11342 X(_letp, 0000, f01fc001), \
11343 X(_lsl, 0000, fa00f000), \
11344 X(_lsls, 0000, fa10f000), \
11345 X(_lsr, 0800, fa20f000), \
11346 X(_lsrs, 0800, fa30f000), \
11347 X(_mov, 2000, ea4f0000), \
11348 X(_movs, 2000, ea5f0000), \
11349 X(_mul, 4340, fb00f000), \
11350 X(_muls, 4340, ffffffff), /* no 32b muls */ \
11351 X(_mvn, 43c0, ea6f0000), \
11352 X(_mvns, 43c0, ea7f0000), \
11353 X(_neg, 4240, f1c00000), /* rsb #0 */ \
11354 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
11355 X(_orr, 4300, ea400000), \
11356 X(_orrs, 4300, ea500000), \
11357 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
11358 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
11359 X(_rev, ba00, fa90f080), \
11360 X(_rev16, ba40, fa90f090), \
11361 X(_revsh, bac0, fa90f0b0), \
11362 X(_ror, 41c0, fa60f000), \
11363 X(_rors, 41c0, fa70f000), \
11364 X(_sbc, 4180, eb600000), \
11365 X(_sbcs, 4180, eb700000), \
11366 X(_stmia, c000, e8800000), \
11367 X(_str, 6000, f8400000), \
11368 X(_strb, 7000, f8000000), \
11369 X(_strh, 8000, f8200000), \
11370 X(_str_sp,9000, f84d0000), \
11371 X(_sub, 1e00, eba00000), \
11372 X(_subs, 1e00, ebb00000), \
11373 X(_subi, 8000, f1a00000), \
11374 X(_subis, 8000, f1b00000), \
11375 X(_sxtb, b240, fa4ff080), \
11376 X(_sxth, b200, fa0ff080), \
11377 X(_tst, 4200, ea100f00), \
11378 X(_uxtb, b2c0, fa5ff080), \
11379 X(_uxth, b280, fa1ff080), \
11380 X(_nop, bf00, f3af8000), \
11381 X(_yield, bf10, f3af8001), \
11382 X(_wfe, bf20, f3af8002), \
11383 X(_wfi, bf30, f3af8003), \
11384 X(_wls, 0000, f040c001), \
11385 X(_wlstp, 0000, f000c001), \
11386 X(_sev, bf40, f3af8004), \
11387 X(_sevl, bf50, f3af8005), \
11388 X(_udf, de00, f7f0a000)
11389
11390 /* To catch errors in encoding functions, the codes are all offset by
11391 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
11392 as 16-bit instructions. */
11393 #define X(a,b,c) T_MNEM##a
11394 enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
11395 #undef X
11396
11397 #define X(a,b,c) 0x##b
11398 static const unsigned short thumb_op16[] = { T16_32_TAB };
11399 #define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
11400 #undef X
11401
11402 #define X(a,b,c) 0x##c
11403 static const unsigned int thumb_op32[] = { T16_32_TAB };
11404 #define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
11405 #define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
11406 #undef X
11407 #undef T16_32_TAB
11408
11409 /* Thumb instruction encoders, in alphabetical order. */
11410
11411 /* ADDW or SUBW. */
11412
11413 static void
11414 do_t_add_sub_w (void)
11415 {
11416 int Rd, Rn;
11417
11418 Rd = inst.operands[0].reg;
11419 Rn = inst.operands[1].reg;
11420
11421 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
11422 is the SP-{plus,minus}-immediate form of the instruction. */
11423 if (Rn == REG_SP)
11424 constraint (Rd == REG_PC, BAD_PC);
11425 else
11426 reject_bad_reg (Rd);
11427
11428 inst.instruction |= (Rn << 16) | (Rd << 8);
11429 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMM12;
11430 }
11431
11432 /* Parse an add or subtract instruction. We get here with inst.instruction
11433 equaling any of THUMB_OPCODE_add, adds, sub, or subs. */
11434
11435 static void
11436 do_t_add_sub (void)
11437 {
11438 int Rd, Rs, Rn;
11439
11440 Rd = inst.operands[0].reg;
11441 Rs = (inst.operands[1].present
11442 ? inst.operands[1].reg /* Rd, Rs, foo */
11443 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11444
11445 if (Rd == REG_PC)
11446 set_pred_insn_type_last ();
11447
11448 if (unified_syntax)
11449 {
11450 bfd_boolean flags;
11451 bfd_boolean narrow;
11452 int opcode;
11453
11454 flags = (inst.instruction == T_MNEM_adds
11455 || inst.instruction == T_MNEM_subs);
11456 if (flags)
11457 narrow = !in_pred_block ();
11458 else
11459 narrow = in_pred_block ();
11460 if (!inst.operands[2].isreg)
11461 {
11462 int add;
11463
11464 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11465 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
11466
11467 add = (inst.instruction == T_MNEM_add
11468 || inst.instruction == T_MNEM_adds);
11469 opcode = 0;
11470 if (inst.size_req != 4)
11471 {
11472 /* Attempt to use a narrow opcode, with relaxation if
11473 appropriate. */
11474 if (Rd == REG_SP && Rs == REG_SP && !flags)
11475 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
11476 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
11477 opcode = T_MNEM_add_sp;
11478 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
11479 opcode = T_MNEM_add_pc;
11480 else if (Rd <= 7 && Rs <= 7 && narrow)
11481 {
11482 if (flags)
11483 opcode = add ? T_MNEM_addis : T_MNEM_subis;
11484 else
11485 opcode = add ? T_MNEM_addi : T_MNEM_subi;
11486 }
11487 if (opcode)
11488 {
11489 inst.instruction = THUMB_OP16(opcode);
11490 inst.instruction |= (Rd << 4) | Rs;
11491 if (inst.relocs[0].type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11492 || (inst.relocs[0].type
11493 > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC))
11494 {
11495 if (inst.size_req == 2)
11496 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11497 else
11498 inst.relax = opcode;
11499 }
11500 }
11501 else
11502 constraint (inst.size_req == 2, BAD_HIREG);
11503 }
11504 if (inst.size_req == 4
11505 || (inst.size_req != 2 && !opcode))
11506 {
11507 constraint ((inst.relocs[0].type
11508 >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC)
11509 && (inst.relocs[0].type
11510 <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC) ,
11511 THUMB1_RELOC_ONLY);
11512 if (Rd == REG_PC)
11513 {
11514 constraint (add, BAD_PC);
11515 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
11516 _("only SUBS PC, LR, #const allowed"));
11517 constraint (inst.relocs[0].exp.X_op != O_constant,
11518 _("expression too complex"));
11519 constraint (inst.relocs[0].exp.X_add_number < 0
11520 || inst.relocs[0].exp.X_add_number > 0xff,
11521 _("immediate value out of range"));
11522 inst.instruction = T2_SUBS_PC_LR
11523 | inst.relocs[0].exp.X_add_number;
11524 inst.relocs[0].type = BFD_RELOC_UNUSED;
11525 return;
11526 }
11527 else if (Rs == REG_PC)
11528 {
11529 /* Always use addw/subw. */
11530 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
11531 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMM12;
11532 }
11533 else
11534 {
11535 inst.instruction = THUMB_OP32 (inst.instruction);
11536 inst.instruction = (inst.instruction & 0xe1ffffff)
11537 | 0x10000000;
11538 if (flags)
11539 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11540 else
11541 inst.relocs[0].type = BFD_RELOC_ARM_T32_ADD_IMM;
11542 }
11543 inst.instruction |= Rd << 8;
11544 inst.instruction |= Rs << 16;
11545 }
11546 }
11547 else
11548 {
11549 unsigned int value = inst.relocs[0].exp.X_add_number;
11550 unsigned int shift = inst.operands[2].shift_kind;
11551
11552 Rn = inst.operands[2].reg;
11553 /* See if we can do this with a 16-bit instruction. */
11554 if (!inst.operands[2].shifted && inst.size_req != 4)
11555 {
11556 if (Rd > 7 || Rs > 7 || Rn > 7)
11557 narrow = FALSE;
11558
11559 if (narrow)
11560 {
11561 inst.instruction = ((inst.instruction == T_MNEM_adds
11562 || inst.instruction == T_MNEM_add)
11563 ? T_OPCODE_ADD_R3
11564 : T_OPCODE_SUB_R3);
11565 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
11566 return;
11567 }
11568
11569 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
11570 {
11571 /* Thumb-1 cores (except v6-M) require at least one high
11572 register in a narrow non flag setting add. */
11573 if (Rd > 7 || Rn > 7
11574 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
11575 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
11576 {
11577 if (Rd == Rn)
11578 {
11579 Rn = Rs;
11580 Rs = Rd;
11581 }
11582 inst.instruction = T_OPCODE_ADD_HI;
11583 inst.instruction |= (Rd & 8) << 4;
11584 inst.instruction |= (Rd & 7);
11585 inst.instruction |= Rn << 3;
11586 return;
11587 }
11588 }
11589 }
11590
11591 constraint (Rd == REG_PC, BAD_PC);
11592 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11593 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
11594 constraint (Rs == REG_PC, BAD_PC);
11595 reject_bad_reg (Rn);
11596
11597 /* If we get here, it can't be done in 16 bits. */
11598 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
11599 _("shift must be constant"));
11600 inst.instruction = THUMB_OP32 (inst.instruction);
11601 inst.instruction |= Rd << 8;
11602 inst.instruction |= Rs << 16;
11603 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
11604 _("shift value over 3 not allowed in thumb mode"));
11605 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
11606 _("only LSL shift allowed in thumb mode"));
11607 encode_thumb32_shifted_operand (2);
11608 }
11609 }
11610 else
11611 {
11612 constraint (inst.instruction == T_MNEM_adds
11613 || inst.instruction == T_MNEM_subs,
11614 BAD_THUMB32);
11615
11616 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
11617 {
11618 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
11619 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
11620 BAD_HIREG);
11621
11622 inst.instruction = (inst.instruction == T_MNEM_add
11623 ? 0x0000 : 0x8000);
11624 inst.instruction |= (Rd << 4) | Rs;
11625 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11626 return;
11627 }
11628
11629 Rn = inst.operands[2].reg;
11630 constraint (inst.operands[2].shifted, _("unshifted register required"));
11631
11632 /* We now have Rd, Rs, and Rn set to registers. */
11633 if (Rd > 7 || Rs > 7 || Rn > 7)
11634 {
11635 /* Can't do this for SUB. */
11636 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
11637 inst.instruction = T_OPCODE_ADD_HI;
11638 inst.instruction |= (Rd & 8) << 4;
11639 inst.instruction |= (Rd & 7);
11640 if (Rs == Rd)
11641 inst.instruction |= Rn << 3;
11642 else if (Rn == Rd)
11643 inst.instruction |= Rs << 3;
11644 else
11645 constraint (1, _("dest must overlap one source register"));
11646 }
11647 else
11648 {
11649 inst.instruction = (inst.instruction == T_MNEM_add
11650 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
11651 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
11652 }
11653 }
11654 }
11655
11656 static void
11657 do_t_adr (void)
11658 {
11659 unsigned Rd;
11660
11661 Rd = inst.operands[0].reg;
11662 reject_bad_reg (Rd);
11663
11664 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
11665 {
11666 /* Defer to section relaxation. */
11667 inst.relax = inst.instruction;
11668 inst.instruction = THUMB_OP16 (inst.instruction);
11669 inst.instruction |= Rd << 4;
11670 }
11671 else if (unified_syntax && inst.size_req != 2)
11672 {
11673 /* Generate a 32-bit opcode. */
11674 inst.instruction = THUMB_OP32 (inst.instruction);
11675 inst.instruction |= Rd << 8;
11676 inst.relocs[0].type = BFD_RELOC_ARM_T32_ADD_PC12;
11677 inst.relocs[0].pc_rel = 1;
11678 }
11679 else
11680 {
11681 /* Generate a 16-bit opcode. */
11682 inst.instruction = THUMB_OP16 (inst.instruction);
11683 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11684 inst.relocs[0].exp.X_add_number -= 4; /* PC relative adjust. */
11685 inst.relocs[0].pc_rel = 1;
11686 inst.instruction |= Rd << 4;
11687 }
11688
11689 if (inst.relocs[0].exp.X_op == O_symbol
11690 && inst.relocs[0].exp.X_add_symbol != NULL
11691 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
11692 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
11693 inst.relocs[0].exp.X_add_number += 1;
11694 }
11695
11696 /* Arithmetic instructions for which there is just one 16-bit
11697 instruction encoding, and it allows only two low registers.
11698 For maximal compatibility with ARM syntax, we allow three register
11699 operands even when Thumb-32 instructions are not available, as long
11700 as the first two are identical. For instance, both "sbc r0,r1" and
11701 "sbc r0,r0,r1" are allowed. */
11702 static void
11703 do_t_arit3 (void)
11704 {
11705 int Rd, Rs, Rn;
11706
11707 Rd = inst.operands[0].reg;
11708 Rs = (inst.operands[1].present
11709 ? inst.operands[1].reg /* Rd, Rs, foo */
11710 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11711 Rn = inst.operands[2].reg;
11712
11713 reject_bad_reg (Rd);
11714 reject_bad_reg (Rs);
11715 if (inst.operands[2].isreg)
11716 reject_bad_reg (Rn);
11717
11718 if (unified_syntax)
11719 {
11720 if (!inst.operands[2].isreg)
11721 {
11722 /* For an immediate, we always generate a 32-bit opcode;
11723 section relaxation will shrink it later if possible. */
11724 inst.instruction = THUMB_OP32 (inst.instruction);
11725 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11726 inst.instruction |= Rd << 8;
11727 inst.instruction |= Rs << 16;
11728 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11729 }
11730 else
11731 {
11732 bfd_boolean narrow;
11733
11734 /* See if we can do this with a 16-bit instruction. */
11735 if (THUMB_SETS_FLAGS (inst.instruction))
11736 narrow = !in_pred_block ();
11737 else
11738 narrow = in_pred_block ();
11739
11740 if (Rd > 7 || Rn > 7 || Rs > 7)
11741 narrow = FALSE;
11742 if (inst.operands[2].shifted)
11743 narrow = FALSE;
11744 if (inst.size_req == 4)
11745 narrow = FALSE;
11746
11747 if (narrow
11748 && Rd == Rs)
11749 {
11750 inst.instruction = THUMB_OP16 (inst.instruction);
11751 inst.instruction |= Rd;
11752 inst.instruction |= Rn << 3;
11753 return;
11754 }
11755
11756 /* If we get here, it can't be done in 16 bits. */
11757 constraint (inst.operands[2].shifted
11758 && inst.operands[2].immisreg,
11759 _("shift must be constant"));
11760 inst.instruction = THUMB_OP32 (inst.instruction);
11761 inst.instruction |= Rd << 8;
11762 inst.instruction |= Rs << 16;
11763 encode_thumb32_shifted_operand (2);
11764 }
11765 }
11766 else
11767 {
11768 /* On its face this is a lie - the instruction does set the
11769 flags. However, the only supported mnemonic in this mode
11770 says it doesn't. */
11771 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11772
11773 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
11774 _("unshifted register required"));
11775 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
11776 constraint (Rd != Rs,
11777 _("dest and source1 must be the same register"));
11778
11779 inst.instruction = THUMB_OP16 (inst.instruction);
11780 inst.instruction |= Rd;
11781 inst.instruction |= Rn << 3;
11782 }
11783 }
11784
11785 /* Similarly, but for instructions where the arithmetic operation is
11786 commutative, so we can allow either of them to be different from
11787 the destination operand in a 16-bit instruction. For instance, all
11788 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
11789 accepted. */
11790 static void
11791 do_t_arit3c (void)
11792 {
11793 int Rd, Rs, Rn;
11794
11795 Rd = inst.operands[0].reg;
11796 Rs = (inst.operands[1].present
11797 ? inst.operands[1].reg /* Rd, Rs, foo */
11798 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11799 Rn = inst.operands[2].reg;
11800
11801 reject_bad_reg (Rd);
11802 reject_bad_reg (Rs);
11803 if (inst.operands[2].isreg)
11804 reject_bad_reg (Rn);
11805
11806 if (unified_syntax)
11807 {
11808 if (!inst.operands[2].isreg)
11809 {
11810 /* For an immediate, we always generate a 32-bit opcode;
11811 section relaxation will shrink it later if possible. */
11812 inst.instruction = THUMB_OP32 (inst.instruction);
11813 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11814 inst.instruction |= Rd << 8;
11815 inst.instruction |= Rs << 16;
11816 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11817 }
11818 else
11819 {
11820 bfd_boolean narrow;
11821
11822 /* See if we can do this with a 16-bit instruction. */
11823 if (THUMB_SETS_FLAGS (inst.instruction))
11824 narrow = !in_pred_block ();
11825 else
11826 narrow = in_pred_block ();
11827
11828 if (Rd > 7 || Rn > 7 || Rs > 7)
11829 narrow = FALSE;
11830 if (inst.operands[2].shifted)
11831 narrow = FALSE;
11832 if (inst.size_req == 4)
11833 narrow = FALSE;
11834
11835 if (narrow)
11836 {
11837 if (Rd == Rs)
11838 {
11839 inst.instruction = THUMB_OP16 (inst.instruction);
11840 inst.instruction |= Rd;
11841 inst.instruction |= Rn << 3;
11842 return;
11843 }
11844 if (Rd == Rn)
11845 {
11846 inst.instruction = THUMB_OP16 (inst.instruction);
11847 inst.instruction |= Rd;
11848 inst.instruction |= Rs << 3;
11849 return;
11850 }
11851 }
11852
11853 /* If we get here, it can't be done in 16 bits. */
11854 constraint (inst.operands[2].shifted
11855 && inst.operands[2].immisreg,
11856 _("shift must be constant"));
11857 inst.instruction = THUMB_OP32 (inst.instruction);
11858 inst.instruction |= Rd << 8;
11859 inst.instruction |= Rs << 16;
11860 encode_thumb32_shifted_operand (2);
11861 }
11862 }
11863 else
11864 {
11865 /* On its face this is a lie - the instruction does set the
11866 flags. However, the only supported mnemonic in this mode
11867 says it doesn't. */
11868 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11869
11870 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
11871 _("unshifted register required"));
11872 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
11873
11874 inst.instruction = THUMB_OP16 (inst.instruction);
11875 inst.instruction |= Rd;
11876
11877 if (Rd == Rs)
11878 inst.instruction |= Rn << 3;
11879 else if (Rd == Rn)
11880 inst.instruction |= Rs << 3;
11881 else
11882 constraint (1, _("dest must overlap one source register"));
11883 }
11884 }
11885
11886 static void
11887 do_t_bfc (void)
11888 {
11889 unsigned Rd;
11890 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
11891 constraint (msb > 32, _("bit-field extends past end of register"));
11892 /* The instruction encoding stores the LSB and MSB,
11893 not the LSB and width. */
11894 Rd = inst.operands[0].reg;
11895 reject_bad_reg (Rd);
11896 inst.instruction |= Rd << 8;
11897 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
11898 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
11899 inst.instruction |= msb - 1;
11900 }
11901
11902 static void
11903 do_t_bfi (void)
11904 {
11905 int Rd, Rn;
11906 unsigned int msb;
11907
11908 Rd = inst.operands[0].reg;
11909 reject_bad_reg (Rd);
11910
11911 /* #0 in second position is alternative syntax for bfc, which is
11912 the same instruction but with REG_PC in the Rm field. */
11913 if (!inst.operands[1].isreg)
11914 Rn = REG_PC;
11915 else
11916 {
11917 Rn = inst.operands[1].reg;
11918 reject_bad_reg (Rn);
11919 }
11920
11921 msb = inst.operands[2].imm + inst.operands[3].imm;
11922 constraint (msb > 32, _("bit-field extends past end of register"));
11923 /* The instruction encoding stores the LSB and MSB,
11924 not the LSB and width. */
11925 inst.instruction |= Rd << 8;
11926 inst.instruction |= Rn << 16;
11927 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
11928 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
11929 inst.instruction |= msb - 1;
11930 }
11931
11932 static void
11933 do_t_bfx (void)
11934 {
11935 unsigned Rd, Rn;
11936
11937 Rd = inst.operands[0].reg;
11938 Rn = inst.operands[1].reg;
11939
11940 reject_bad_reg (Rd);
11941 reject_bad_reg (Rn);
11942
11943 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
11944 _("bit-field extends past end of register"));
11945 inst.instruction |= Rd << 8;
11946 inst.instruction |= Rn << 16;
11947 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
11948 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
11949 inst.instruction |= inst.operands[3].imm - 1;
11950 }
11951
11952 /* ARM V5 Thumb BLX (argument parse)
11953 BLX <target_addr> which is BLX(1)
11954 BLX <Rm> which is BLX(2)
11955 Unfortunately, there are two different opcodes for this mnemonic.
11956 So, the insns[].value is not used, and the code here zaps values
11957 into inst.instruction.
11958
11959 ??? How to take advantage of the additional two bits of displacement
11960 available in Thumb32 mode? Need new relocation? */
11961
11962 static void
11963 do_t_blx (void)
11964 {
11965 set_pred_insn_type_last ();
11966
11967 if (inst.operands[0].isreg)
11968 {
11969 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
11970 /* We have a register, so this is BLX(2). */
11971 inst.instruction |= inst.operands[0].reg << 3;
11972 }
11973 else
11974 {
11975 /* No register. This must be BLX(1). */
11976 inst.instruction = 0xf000e800;
11977 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
11978 }
11979 }
11980
11981 static void
11982 do_t_branch (void)
11983 {
11984 int opcode;
11985 int cond;
11986 bfd_reloc_code_real_type reloc;
11987
11988 cond = inst.cond;
11989 set_pred_insn_type (IF_INSIDE_IT_LAST_INSN);
11990
11991 if (in_pred_block ())
11992 {
11993 /* Conditional branches inside IT blocks are encoded as unconditional
11994 branches. */
11995 cond = COND_ALWAYS;
11996 }
11997 else
11998 cond = inst.cond;
11999
12000 if (cond != COND_ALWAYS)
12001 opcode = T_MNEM_bcond;
12002 else
12003 opcode = inst.instruction;
12004
12005 if (unified_syntax
12006 && (inst.size_req == 4
12007 || (inst.size_req != 2
12008 && (inst.operands[0].hasreloc
12009 || inst.relocs[0].exp.X_op == O_constant))))
12010 {
12011 inst.instruction = THUMB_OP32(opcode);
12012 if (cond == COND_ALWAYS)
12013 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
12014 else
12015 {
12016 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2),
12017 _("selected architecture does not support "
12018 "wide conditional branch instruction"));
12019
12020 gas_assert (cond != 0xF);
12021 inst.instruction |= cond << 22;
12022 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
12023 }
12024 }
12025 else
12026 {
12027 inst.instruction = THUMB_OP16(opcode);
12028 if (cond == COND_ALWAYS)
12029 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
12030 else
12031 {
12032 inst.instruction |= cond << 8;
12033 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
12034 }
12035 /* Allow section relaxation. */
12036 if (unified_syntax && inst.size_req != 2)
12037 inst.relax = opcode;
12038 }
12039 inst.relocs[0].type = reloc;
12040 inst.relocs[0].pc_rel = 1;
12041 }
12042
12043 /* Actually do the work for Thumb state bkpt and hlt. The only difference
12044 between the two is the maximum immediate allowed - which is passed in
12045 RANGE. */
12046 static void
12047 do_t_bkpt_hlt1 (int range)
12048 {
12049 constraint (inst.cond != COND_ALWAYS,
12050 _("instruction is always unconditional"));
12051 if (inst.operands[0].present)
12052 {
12053 constraint (inst.operands[0].imm > range,
12054 _("immediate value out of range"));
12055 inst.instruction |= inst.operands[0].imm;
12056 }
12057
12058 set_pred_insn_type (NEUTRAL_IT_INSN);
12059 }
12060
12061 static void
12062 do_t_hlt (void)
12063 {
12064 do_t_bkpt_hlt1 (63);
12065 }
12066
12067 static void
12068 do_t_bkpt (void)
12069 {
12070 do_t_bkpt_hlt1 (255);
12071 }
12072
12073 static void
12074 do_t_branch23 (void)
12075 {
12076 set_pred_insn_type_last ();
12077 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
12078
12079 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
12080 this file. We used to simply ignore the PLT reloc type here --
12081 the branch encoding is now needed to deal with TLSCALL relocs.
12082 So if we see a PLT reloc now, put it back to how it used to be to
12083 keep the preexisting behaviour. */
12084 if (inst.relocs[0].type == BFD_RELOC_ARM_PLT32)
12085 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH23;
12086
12087 #if defined(OBJ_COFF)
12088 /* If the destination of the branch is a defined symbol which does not have
12089 the THUMB_FUNC attribute, then we must be calling a function which has
12090 the (interfacearm) attribute. We look for the Thumb entry point to that
12091 function and change the branch to refer to that function instead. */
12092 if ( inst.relocs[0].exp.X_op == O_symbol
12093 && inst.relocs[0].exp.X_add_symbol != NULL
12094 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
12095 && ! THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
12096 inst.relocs[0].exp.X_add_symbol
12097 = find_real_start (inst.relocs[0].exp.X_add_symbol);
12098 #endif
12099 }
12100
12101 static void
12102 do_t_bx (void)
12103 {
12104 set_pred_insn_type_last ();
12105 inst.instruction |= inst.operands[0].reg << 3;
12106 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
12107 should cause the alignment to be checked once it is known. This is
12108 because BX PC only works if the instruction is word aligned. */
12109 }
12110
12111 static void
12112 do_t_bxj (void)
12113 {
12114 int Rm;
12115
12116 set_pred_insn_type_last ();
12117 Rm = inst.operands[0].reg;
12118 reject_bad_reg (Rm);
12119 inst.instruction |= Rm << 16;
12120 }
12121
12122 static void
12123 do_t_clz (void)
12124 {
12125 unsigned Rd;
12126 unsigned Rm;
12127
12128 Rd = inst.operands[0].reg;
12129 Rm = inst.operands[1].reg;
12130
12131 reject_bad_reg (Rd);
12132 reject_bad_reg (Rm);
12133
12134 inst.instruction |= Rd << 8;
12135 inst.instruction |= Rm << 16;
12136 inst.instruction |= Rm;
12137 }
12138
12139 /* For the Armv8.1-M conditional instructions. */
12140 static void
12141 do_t_cond (void)
12142 {
12143 unsigned Rd, Rn, Rm;
12144 signed int cond;
12145
12146 constraint (inst.cond != COND_ALWAYS, BAD_COND);
12147
12148 Rd = inst.operands[0].reg;
12149 switch (inst.instruction)
12150 {
12151 case T_MNEM_csinc:
12152 case T_MNEM_csinv:
12153 case T_MNEM_csneg:
12154 case T_MNEM_csel:
12155 Rn = inst.operands[1].reg;
12156 Rm = inst.operands[2].reg;
12157 cond = inst.operands[3].imm;
12158 constraint (Rn == REG_SP, BAD_SP);
12159 constraint (Rm == REG_SP, BAD_SP);
12160 break;
12161
12162 case T_MNEM_cinc:
12163 case T_MNEM_cinv:
12164 case T_MNEM_cneg:
12165 Rn = inst.operands[1].reg;
12166 cond = inst.operands[2].imm;
12167 /* Invert the last bit to invert the cond. */
12168 cond = TOGGLE_BIT (cond, 0);
12169 constraint (Rn == REG_SP, BAD_SP);
12170 Rm = Rn;
12171 break;
12172
12173 case T_MNEM_csetm:
12174 case T_MNEM_cset:
12175 cond = inst.operands[1].imm;
12176 /* Invert the last bit to invert the cond. */
12177 cond = TOGGLE_BIT (cond, 0);
12178 Rn = REG_PC;
12179 Rm = REG_PC;
12180 break;
12181
12182 default: abort ();
12183 }
12184
12185 set_pred_insn_type (OUTSIDE_PRED_INSN);
12186 inst.instruction = THUMB_OP32 (inst.instruction);
12187 inst.instruction |= Rd << 8;
12188 inst.instruction |= Rn << 16;
12189 inst.instruction |= Rm;
12190 inst.instruction |= cond << 4;
12191 }
12192
12193 static void
12194 do_t_csdb (void)
12195 {
12196 set_pred_insn_type (OUTSIDE_PRED_INSN);
12197 }
12198
12199 static void
12200 do_t_cps (void)
12201 {
12202 set_pred_insn_type (OUTSIDE_PRED_INSN);
12203 inst.instruction |= inst.operands[0].imm;
12204 }
12205
12206 static void
12207 do_t_cpsi (void)
12208 {
12209 set_pred_insn_type (OUTSIDE_PRED_INSN);
12210 if (unified_syntax
12211 && (inst.operands[1].present || inst.size_req == 4)
12212 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
12213 {
12214 unsigned int imod = (inst.instruction & 0x0030) >> 4;
12215 inst.instruction = 0xf3af8000;
12216 inst.instruction |= imod << 9;
12217 inst.instruction |= inst.operands[0].imm << 5;
12218 if (inst.operands[1].present)
12219 inst.instruction |= 0x100 | inst.operands[1].imm;
12220 }
12221 else
12222 {
12223 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
12224 && (inst.operands[0].imm & 4),
12225 _("selected processor does not support 'A' form "
12226 "of this instruction"));
12227 constraint (inst.operands[1].present || inst.size_req == 4,
12228 _("Thumb does not support the 2-argument "
12229 "form of this instruction"));
12230 inst.instruction |= inst.operands[0].imm;
12231 }
12232 }
12233
12234 /* THUMB CPY instruction (argument parse). */
12235
12236 static void
12237 do_t_cpy (void)
12238 {
12239 if (inst.size_req == 4)
12240 {
12241 inst.instruction = THUMB_OP32 (T_MNEM_mov);
12242 inst.instruction |= inst.operands[0].reg << 8;
12243 inst.instruction |= inst.operands[1].reg;
12244 }
12245 else
12246 {
12247 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
12248 inst.instruction |= (inst.operands[0].reg & 0x7);
12249 inst.instruction |= inst.operands[1].reg << 3;
12250 }
12251 }
12252
12253 static void
12254 do_t_cbz (void)
12255 {
12256 set_pred_insn_type (OUTSIDE_PRED_INSN);
12257 constraint (inst.operands[0].reg > 7, BAD_HIREG);
12258 inst.instruction |= inst.operands[0].reg;
12259 inst.relocs[0].pc_rel = 1;
12260 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH7;
12261 }
12262
12263 static void
12264 do_t_dbg (void)
12265 {
12266 inst.instruction |= inst.operands[0].imm;
12267 }
12268
12269 static void
12270 do_t_div (void)
12271 {
12272 unsigned Rd, Rn, Rm;
12273
12274 Rd = inst.operands[0].reg;
12275 Rn = (inst.operands[1].present
12276 ? inst.operands[1].reg : Rd);
12277 Rm = inst.operands[2].reg;
12278
12279 reject_bad_reg (Rd);
12280 reject_bad_reg (Rn);
12281 reject_bad_reg (Rm);
12282
12283 inst.instruction |= Rd << 8;
12284 inst.instruction |= Rn << 16;
12285 inst.instruction |= Rm;
12286 }
12287
12288 static void
12289 do_t_hint (void)
12290 {
12291 if (unified_syntax && inst.size_req == 4)
12292 inst.instruction = THUMB_OP32 (inst.instruction);
12293 else
12294 inst.instruction = THUMB_OP16 (inst.instruction);
12295 }
12296
12297 static void
12298 do_t_it (void)
12299 {
12300 unsigned int cond = inst.operands[0].imm;
12301
12302 set_pred_insn_type (IT_INSN);
12303 now_pred.mask = (inst.instruction & 0xf) | 0x10;
12304 now_pred.cc = cond;
12305 now_pred.warn_deprecated = FALSE;
12306 now_pred.type = SCALAR_PRED;
12307
12308 /* If the condition is a negative condition, invert the mask. */
12309 if ((cond & 0x1) == 0x0)
12310 {
12311 unsigned int mask = inst.instruction & 0x000f;
12312
12313 if ((mask & 0x7) == 0)
12314 {
12315 /* No conversion needed. */
12316 now_pred.block_length = 1;
12317 }
12318 else if ((mask & 0x3) == 0)
12319 {
12320 mask ^= 0x8;
12321 now_pred.block_length = 2;
12322 }
12323 else if ((mask & 0x1) == 0)
12324 {
12325 mask ^= 0xC;
12326 now_pred.block_length = 3;
12327 }
12328 else
12329 {
12330 mask ^= 0xE;
12331 now_pred.block_length = 4;
12332 }
12333
12334 inst.instruction &= 0xfff0;
12335 inst.instruction |= mask;
12336 }
12337
12338 inst.instruction |= cond << 4;
12339 }
12340
12341 /* Helper function used for both push/pop and ldm/stm. */
12342 static void
12343 encode_thumb2_multi (bfd_boolean do_io, int base, unsigned mask,
12344 bfd_boolean writeback)
12345 {
12346 bfd_boolean load, store;
12347
12348 gas_assert (base != -1 || !do_io);
12349 load = do_io && ((inst.instruction & (1 << 20)) != 0);
12350 store = do_io && !load;
12351
12352 if (mask & (1 << 13))
12353 inst.error = _("SP not allowed in register list");
12354
12355 if (do_io && (mask & (1 << base)) != 0
12356 && writeback)
12357 inst.error = _("having the base register in the register list when "
12358 "using write back is UNPREDICTABLE");
12359
12360 if (load)
12361 {
12362 if (mask & (1 << 15))
12363 {
12364 if (mask & (1 << 14))
12365 inst.error = _("LR and PC should not both be in register list");
12366 else
12367 set_pred_insn_type_last ();
12368 }
12369 }
12370 else if (store)
12371 {
12372 if (mask & (1 << 15))
12373 inst.error = _("PC not allowed in register list");
12374 }
12375
12376 if (do_io && ((mask & (mask - 1)) == 0))
12377 {
12378 /* Single register transfers implemented as str/ldr. */
12379 if (writeback)
12380 {
12381 if (inst.instruction & (1 << 23))
12382 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
12383 else
12384 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
12385 }
12386 else
12387 {
12388 if (inst.instruction & (1 << 23))
12389 inst.instruction = 0x00800000; /* ia -> [base] */
12390 else
12391 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
12392 }
12393
12394 inst.instruction |= 0xf8400000;
12395 if (load)
12396 inst.instruction |= 0x00100000;
12397
12398 mask = ffs (mask) - 1;
12399 mask <<= 12;
12400 }
12401 else if (writeback)
12402 inst.instruction |= WRITE_BACK;
12403
12404 inst.instruction |= mask;
12405 if (do_io)
12406 inst.instruction |= base << 16;
12407 }
12408
12409 static void
12410 do_t_ldmstm (void)
12411 {
12412 /* This really doesn't seem worth it. */
12413 constraint (inst.relocs[0].type != BFD_RELOC_UNUSED,
12414 _("expression too complex"));
12415 constraint (inst.operands[1].writeback,
12416 _("Thumb load/store multiple does not support {reglist}^"));
12417
12418 if (unified_syntax)
12419 {
12420 bfd_boolean narrow;
12421 unsigned mask;
12422
12423 narrow = FALSE;
12424 /* See if we can use a 16-bit instruction. */
12425 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
12426 && inst.size_req != 4
12427 && !(inst.operands[1].imm & ~0xff))
12428 {
12429 mask = 1 << inst.operands[0].reg;
12430
12431 if (inst.operands[0].reg <= 7)
12432 {
12433 if (inst.instruction == T_MNEM_stmia
12434 ? inst.operands[0].writeback
12435 : (inst.operands[0].writeback
12436 == !(inst.operands[1].imm & mask)))
12437 {
12438 if (inst.instruction == T_MNEM_stmia
12439 && (inst.operands[1].imm & mask)
12440 && (inst.operands[1].imm & (mask - 1)))
12441 as_warn (_("value stored for r%d is UNKNOWN"),
12442 inst.operands[0].reg);
12443
12444 inst.instruction = THUMB_OP16 (inst.instruction);
12445 inst.instruction |= inst.operands[0].reg << 8;
12446 inst.instruction |= inst.operands[1].imm;
12447 narrow = TRUE;
12448 }
12449 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
12450 {
12451 /* This means 1 register in reg list one of 3 situations:
12452 1. Instruction is stmia, but without writeback.
12453 2. lmdia without writeback, but with Rn not in
12454 reglist.
12455 3. ldmia with writeback, but with Rn in reglist.
12456 Case 3 is UNPREDICTABLE behaviour, so we handle
12457 case 1 and 2 which can be converted into a 16-bit
12458 str or ldr. The SP cases are handled below. */
12459 unsigned long opcode;
12460 /* First, record an error for Case 3. */
12461 if (inst.operands[1].imm & mask
12462 && inst.operands[0].writeback)
12463 inst.error =
12464 _("having the base register in the register list when "
12465 "using write back is UNPREDICTABLE");
12466
12467 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
12468 : T_MNEM_ldr);
12469 inst.instruction = THUMB_OP16 (opcode);
12470 inst.instruction |= inst.operands[0].reg << 3;
12471 inst.instruction |= (ffs (inst.operands[1].imm)-1);
12472 narrow = TRUE;
12473 }
12474 }
12475 else if (inst.operands[0] .reg == REG_SP)
12476 {
12477 if (inst.operands[0].writeback)
12478 {
12479 inst.instruction =
12480 THUMB_OP16 (inst.instruction == T_MNEM_stmia
12481 ? T_MNEM_push : T_MNEM_pop);
12482 inst.instruction |= inst.operands[1].imm;
12483 narrow = TRUE;
12484 }
12485 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
12486 {
12487 inst.instruction =
12488 THUMB_OP16 (inst.instruction == T_MNEM_stmia
12489 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
12490 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
12491 narrow = TRUE;
12492 }
12493 }
12494 }
12495
12496 if (!narrow)
12497 {
12498 if (inst.instruction < 0xffff)
12499 inst.instruction = THUMB_OP32 (inst.instruction);
12500
12501 encode_thumb2_multi (TRUE /* do_io */, inst.operands[0].reg,
12502 inst.operands[1].imm,
12503 inst.operands[0].writeback);
12504 }
12505 }
12506 else
12507 {
12508 constraint (inst.operands[0].reg > 7
12509 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
12510 constraint (inst.instruction != T_MNEM_ldmia
12511 && inst.instruction != T_MNEM_stmia,
12512 _("Thumb-2 instruction only valid in unified syntax"));
12513 if (inst.instruction == T_MNEM_stmia)
12514 {
12515 if (!inst.operands[0].writeback)
12516 as_warn (_("this instruction will write back the base register"));
12517 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
12518 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
12519 as_warn (_("value stored for r%d is UNKNOWN"),
12520 inst.operands[0].reg);
12521 }
12522 else
12523 {
12524 if (!inst.operands[0].writeback
12525 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
12526 as_warn (_("this instruction will write back the base register"));
12527 else if (inst.operands[0].writeback
12528 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
12529 as_warn (_("this instruction will not write back the base register"));
12530 }
12531
12532 inst.instruction = THUMB_OP16 (inst.instruction);
12533 inst.instruction |= inst.operands[0].reg << 8;
12534 inst.instruction |= inst.operands[1].imm;
12535 }
12536 }
12537
12538 static void
12539 do_t_ldrex (void)
12540 {
12541 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
12542 || inst.operands[1].postind || inst.operands[1].writeback
12543 || inst.operands[1].immisreg || inst.operands[1].shifted
12544 || inst.operands[1].negative,
12545 BAD_ADDR_MODE);
12546
12547 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
12548
12549 inst.instruction |= inst.operands[0].reg << 12;
12550 inst.instruction |= inst.operands[1].reg << 16;
12551 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_U8;
12552 }
12553
12554 static void
12555 do_t_ldrexd (void)
12556 {
12557 if (!inst.operands[1].present)
12558 {
12559 constraint (inst.operands[0].reg == REG_LR,
12560 _("r14 not allowed as first register "
12561 "when second register is omitted"));
12562 inst.operands[1].reg = inst.operands[0].reg + 1;
12563 }
12564 constraint (inst.operands[0].reg == inst.operands[1].reg,
12565 BAD_OVERLAP);
12566
12567 inst.instruction |= inst.operands[0].reg << 12;
12568 inst.instruction |= inst.operands[1].reg << 8;
12569 inst.instruction |= inst.operands[2].reg << 16;
12570 }
12571
12572 static void
12573 do_t_ldst (void)
12574 {
12575 unsigned long opcode;
12576 int Rn;
12577
12578 if (inst.operands[0].isreg
12579 && !inst.operands[0].preind
12580 && inst.operands[0].reg == REG_PC)
12581 set_pred_insn_type_last ();
12582
12583 opcode = inst.instruction;
12584 if (unified_syntax)
12585 {
12586 if (!inst.operands[1].isreg)
12587 {
12588 if (opcode <= 0xffff)
12589 inst.instruction = THUMB_OP32 (opcode);
12590 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
12591 return;
12592 }
12593 if (inst.operands[1].isreg
12594 && !inst.operands[1].writeback
12595 && !inst.operands[1].shifted && !inst.operands[1].postind
12596 && !inst.operands[1].negative && inst.operands[0].reg <= 7
12597 && opcode <= 0xffff
12598 && inst.size_req != 4)
12599 {
12600 /* Insn may have a 16-bit form. */
12601 Rn = inst.operands[1].reg;
12602 if (inst.operands[1].immisreg)
12603 {
12604 inst.instruction = THUMB_OP16 (opcode);
12605 /* [Rn, Rik] */
12606 if (Rn <= 7 && inst.operands[1].imm <= 7)
12607 goto op16;
12608 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
12609 reject_bad_reg (inst.operands[1].imm);
12610 }
12611 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
12612 && opcode != T_MNEM_ldrsb)
12613 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
12614 || (Rn == REG_SP && opcode == T_MNEM_str))
12615 {
12616 /* [Rn, #const] */
12617 if (Rn > 7)
12618 {
12619 if (Rn == REG_PC)
12620 {
12621 if (inst.relocs[0].pc_rel)
12622 opcode = T_MNEM_ldr_pc2;
12623 else
12624 opcode = T_MNEM_ldr_pc;
12625 }
12626 else
12627 {
12628 if (opcode == T_MNEM_ldr)
12629 opcode = T_MNEM_ldr_sp;
12630 else
12631 opcode = T_MNEM_str_sp;
12632 }
12633 inst.instruction = inst.operands[0].reg << 8;
12634 }
12635 else
12636 {
12637 inst.instruction = inst.operands[0].reg;
12638 inst.instruction |= inst.operands[1].reg << 3;
12639 }
12640 inst.instruction |= THUMB_OP16 (opcode);
12641 if (inst.size_req == 2)
12642 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12643 else
12644 inst.relax = opcode;
12645 return;
12646 }
12647 }
12648 /* Definitely a 32-bit variant. */
12649
12650 /* Warning for Erratum 752419. */
12651 if (opcode == T_MNEM_ldr
12652 && inst.operands[0].reg == REG_SP
12653 && inst.operands[1].writeback == 1
12654 && !inst.operands[1].immisreg)
12655 {
12656 if (no_cpu_selected ()
12657 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
12658 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
12659 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
12660 as_warn (_("This instruction may be unpredictable "
12661 "if executed on M-profile cores "
12662 "with interrupts enabled."));
12663 }
12664
12665 /* Do some validations regarding addressing modes. */
12666 if (inst.operands[1].immisreg)
12667 reject_bad_reg (inst.operands[1].imm);
12668
12669 constraint (inst.operands[1].writeback == 1
12670 && inst.operands[0].reg == inst.operands[1].reg,
12671 BAD_OVERLAP);
12672
12673 inst.instruction = THUMB_OP32 (opcode);
12674 inst.instruction |= inst.operands[0].reg << 12;
12675 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
12676 check_ldr_r15_aligned ();
12677 return;
12678 }
12679
12680 constraint (inst.operands[0].reg > 7, BAD_HIREG);
12681
12682 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
12683 {
12684 /* Only [Rn,Rm] is acceptable. */
12685 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
12686 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
12687 || inst.operands[1].postind || inst.operands[1].shifted
12688 || inst.operands[1].negative,
12689 _("Thumb does not support this addressing mode"));
12690 inst.instruction = THUMB_OP16 (inst.instruction);
12691 goto op16;
12692 }
12693
12694 inst.instruction = THUMB_OP16 (inst.instruction);
12695 if (!inst.operands[1].isreg)
12696 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
12697 return;
12698
12699 constraint (!inst.operands[1].preind
12700 || inst.operands[1].shifted
12701 || inst.operands[1].writeback,
12702 _("Thumb does not support this addressing mode"));
12703 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
12704 {
12705 constraint (inst.instruction & 0x0600,
12706 _("byte or halfword not valid for base register"));
12707 constraint (inst.operands[1].reg == REG_PC
12708 && !(inst.instruction & THUMB_LOAD_BIT),
12709 _("r15 based store not allowed"));
12710 constraint (inst.operands[1].immisreg,
12711 _("invalid base register for register offset"));
12712
12713 if (inst.operands[1].reg == REG_PC)
12714 inst.instruction = T_OPCODE_LDR_PC;
12715 else if (inst.instruction & THUMB_LOAD_BIT)
12716 inst.instruction = T_OPCODE_LDR_SP;
12717 else
12718 inst.instruction = T_OPCODE_STR_SP;
12719
12720 inst.instruction |= inst.operands[0].reg << 8;
12721 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12722 return;
12723 }
12724
12725 constraint (inst.operands[1].reg > 7, BAD_HIREG);
12726 if (!inst.operands[1].immisreg)
12727 {
12728 /* Immediate offset. */
12729 inst.instruction |= inst.operands[0].reg;
12730 inst.instruction |= inst.operands[1].reg << 3;
12731 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12732 return;
12733 }
12734
12735 /* Register offset. */
12736 constraint (inst.operands[1].imm > 7, BAD_HIREG);
12737 constraint (inst.operands[1].negative,
12738 _("Thumb does not support this addressing mode"));
12739
12740 op16:
12741 switch (inst.instruction)
12742 {
12743 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
12744 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
12745 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
12746 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
12747 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
12748 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
12749 case 0x5600 /* ldrsb */:
12750 case 0x5e00 /* ldrsh */: break;
12751 default: abort ();
12752 }
12753
12754 inst.instruction |= inst.operands[0].reg;
12755 inst.instruction |= inst.operands[1].reg << 3;
12756 inst.instruction |= inst.operands[1].imm << 6;
12757 }
12758
12759 static void
12760 do_t_ldstd (void)
12761 {
12762 if (!inst.operands[1].present)
12763 {
12764 inst.operands[1].reg = inst.operands[0].reg + 1;
12765 constraint (inst.operands[0].reg == REG_LR,
12766 _("r14 not allowed here"));
12767 constraint (inst.operands[0].reg == REG_R12,
12768 _("r12 not allowed here"));
12769 }
12770
12771 if (inst.operands[2].writeback
12772 && (inst.operands[0].reg == inst.operands[2].reg
12773 || inst.operands[1].reg == inst.operands[2].reg))
12774 as_warn (_("base register written back, and overlaps "
12775 "one of transfer registers"));
12776
12777 inst.instruction |= inst.operands[0].reg << 12;
12778 inst.instruction |= inst.operands[1].reg << 8;
12779 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
12780 }
12781
12782 static void
12783 do_t_ldstt (void)
12784 {
12785 inst.instruction |= inst.operands[0].reg << 12;
12786 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
12787 }
12788
12789 static void
12790 do_t_mla (void)
12791 {
12792 unsigned Rd, Rn, Rm, Ra;
12793
12794 Rd = inst.operands[0].reg;
12795 Rn = inst.operands[1].reg;
12796 Rm = inst.operands[2].reg;
12797 Ra = inst.operands[3].reg;
12798
12799 reject_bad_reg (Rd);
12800 reject_bad_reg (Rn);
12801 reject_bad_reg (Rm);
12802 reject_bad_reg (Ra);
12803
12804 inst.instruction |= Rd << 8;
12805 inst.instruction |= Rn << 16;
12806 inst.instruction |= Rm;
12807 inst.instruction |= Ra << 12;
12808 }
12809
12810 static void
12811 do_t_mlal (void)
12812 {
12813 unsigned RdLo, RdHi, Rn, Rm;
12814
12815 RdLo = inst.operands[0].reg;
12816 RdHi = inst.operands[1].reg;
12817 Rn = inst.operands[2].reg;
12818 Rm = inst.operands[3].reg;
12819
12820 reject_bad_reg (RdLo);
12821 reject_bad_reg (RdHi);
12822 reject_bad_reg (Rn);
12823 reject_bad_reg (Rm);
12824
12825 inst.instruction |= RdLo << 12;
12826 inst.instruction |= RdHi << 8;
12827 inst.instruction |= Rn << 16;
12828 inst.instruction |= Rm;
12829 }
12830
12831 static void
12832 do_t_mov_cmp (void)
12833 {
12834 unsigned Rn, Rm;
12835
12836 Rn = inst.operands[0].reg;
12837 Rm = inst.operands[1].reg;
12838
12839 if (Rn == REG_PC)
12840 set_pred_insn_type_last ();
12841
12842 if (unified_syntax)
12843 {
12844 int r0off = (inst.instruction == T_MNEM_mov
12845 || inst.instruction == T_MNEM_movs) ? 8 : 16;
12846 unsigned long opcode;
12847 bfd_boolean narrow;
12848 bfd_boolean low_regs;
12849
12850 low_regs = (Rn <= 7 && Rm <= 7);
12851 opcode = inst.instruction;
12852 if (in_pred_block ())
12853 narrow = opcode != T_MNEM_movs;
12854 else
12855 narrow = opcode != T_MNEM_movs || low_regs;
12856 if (inst.size_req == 4
12857 || inst.operands[1].shifted)
12858 narrow = FALSE;
12859
12860 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
12861 if (opcode == T_MNEM_movs && inst.operands[1].isreg
12862 && !inst.operands[1].shifted
12863 && Rn == REG_PC
12864 && Rm == REG_LR)
12865 {
12866 inst.instruction = T2_SUBS_PC_LR;
12867 return;
12868 }
12869
12870 if (opcode == T_MNEM_cmp)
12871 {
12872 constraint (Rn == REG_PC, BAD_PC);
12873 if (narrow)
12874 {
12875 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
12876 but valid. */
12877 warn_deprecated_sp (Rm);
12878 /* R15 was documented as a valid choice for Rm in ARMv6,
12879 but as UNPREDICTABLE in ARMv7. ARM's proprietary
12880 tools reject R15, so we do too. */
12881 constraint (Rm == REG_PC, BAD_PC);
12882 }
12883 else
12884 reject_bad_reg (Rm);
12885 }
12886 else if (opcode == T_MNEM_mov
12887 || opcode == T_MNEM_movs)
12888 {
12889 if (inst.operands[1].isreg)
12890 {
12891 if (opcode == T_MNEM_movs)
12892 {
12893 reject_bad_reg (Rn);
12894 reject_bad_reg (Rm);
12895 }
12896 else if (narrow)
12897 {
12898 /* This is mov.n. */
12899 if ((Rn == REG_SP || Rn == REG_PC)
12900 && (Rm == REG_SP || Rm == REG_PC))
12901 {
12902 as_tsktsk (_("Use of r%u as a source register is "
12903 "deprecated when r%u is the destination "
12904 "register."), Rm, Rn);
12905 }
12906 }
12907 else
12908 {
12909 /* This is mov.w. */
12910 constraint (Rn == REG_PC, BAD_PC);
12911 constraint (Rm == REG_PC, BAD_PC);
12912 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
12913 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
12914 }
12915 }
12916 else
12917 reject_bad_reg (Rn);
12918 }
12919
12920 if (!inst.operands[1].isreg)
12921 {
12922 /* Immediate operand. */
12923 if (!in_pred_block () && opcode == T_MNEM_mov)
12924 narrow = 0;
12925 if (low_regs && narrow)
12926 {
12927 inst.instruction = THUMB_OP16 (opcode);
12928 inst.instruction |= Rn << 8;
12929 if (inst.relocs[0].type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
12930 || inst.relocs[0].type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
12931 {
12932 if (inst.size_req == 2)
12933 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_IMM;
12934 else
12935 inst.relax = opcode;
12936 }
12937 }
12938 else
12939 {
12940 constraint ((inst.relocs[0].type
12941 >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC)
12942 && (inst.relocs[0].type
12943 <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC) ,
12944 THUMB1_RELOC_ONLY);
12945
12946 inst.instruction = THUMB_OP32 (inst.instruction);
12947 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12948 inst.instruction |= Rn << r0off;
12949 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
12950 }
12951 }
12952 else if (inst.operands[1].shifted && inst.operands[1].immisreg
12953 && (inst.instruction == T_MNEM_mov
12954 || inst.instruction == T_MNEM_movs))
12955 {
12956 /* Register shifts are encoded as separate shift instructions. */
12957 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
12958
12959 if (in_pred_block ())
12960 narrow = !flags;
12961 else
12962 narrow = flags;
12963
12964 if (inst.size_req == 4)
12965 narrow = FALSE;
12966
12967 if (!low_regs || inst.operands[1].imm > 7)
12968 narrow = FALSE;
12969
12970 if (Rn != Rm)
12971 narrow = FALSE;
12972
12973 switch (inst.operands[1].shift_kind)
12974 {
12975 case SHIFT_LSL:
12976 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
12977 break;
12978 case SHIFT_ASR:
12979 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
12980 break;
12981 case SHIFT_LSR:
12982 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
12983 break;
12984 case SHIFT_ROR:
12985 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
12986 break;
12987 default:
12988 abort ();
12989 }
12990
12991 inst.instruction = opcode;
12992 if (narrow)
12993 {
12994 inst.instruction |= Rn;
12995 inst.instruction |= inst.operands[1].imm << 3;
12996 }
12997 else
12998 {
12999 if (flags)
13000 inst.instruction |= CONDS_BIT;
13001
13002 inst.instruction |= Rn << 8;
13003 inst.instruction |= Rm << 16;
13004 inst.instruction |= inst.operands[1].imm;
13005 }
13006 }
13007 else if (!narrow)
13008 {
13009 /* Some mov with immediate shift have narrow variants.
13010 Register shifts are handled above. */
13011 if (low_regs && inst.operands[1].shifted
13012 && (inst.instruction == T_MNEM_mov
13013 || inst.instruction == T_MNEM_movs))
13014 {
13015 if (in_pred_block ())
13016 narrow = (inst.instruction == T_MNEM_mov);
13017 else
13018 narrow = (inst.instruction == T_MNEM_movs);
13019 }
13020
13021 if (narrow)
13022 {
13023 switch (inst.operands[1].shift_kind)
13024 {
13025 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
13026 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
13027 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
13028 default: narrow = FALSE; break;
13029 }
13030 }
13031
13032 if (narrow)
13033 {
13034 inst.instruction |= Rn;
13035 inst.instruction |= Rm << 3;
13036 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
13037 }
13038 else
13039 {
13040 inst.instruction = THUMB_OP32 (inst.instruction);
13041 inst.instruction |= Rn << r0off;
13042 encode_thumb32_shifted_operand (1);
13043 }
13044 }
13045 else
13046 switch (inst.instruction)
13047 {
13048 case T_MNEM_mov:
13049 /* In v4t or v5t a move of two lowregs produces unpredictable
13050 results. Don't allow this. */
13051 if (low_regs)
13052 {
13053 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
13054 "MOV Rd, Rs with two low registers is not "
13055 "permitted on this architecture");
13056 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13057 arm_ext_v6);
13058 }
13059
13060 inst.instruction = T_OPCODE_MOV_HR;
13061 inst.instruction |= (Rn & 0x8) << 4;
13062 inst.instruction |= (Rn & 0x7);
13063 inst.instruction |= Rm << 3;
13064 break;
13065
13066 case T_MNEM_movs:
13067 /* We know we have low registers at this point.
13068 Generate LSLS Rd, Rs, #0. */
13069 inst.instruction = T_OPCODE_LSL_I;
13070 inst.instruction |= Rn;
13071 inst.instruction |= Rm << 3;
13072 break;
13073
13074 case T_MNEM_cmp:
13075 if (low_regs)
13076 {
13077 inst.instruction = T_OPCODE_CMP_LR;
13078 inst.instruction |= Rn;
13079 inst.instruction |= Rm << 3;
13080 }
13081 else
13082 {
13083 inst.instruction = T_OPCODE_CMP_HR;
13084 inst.instruction |= (Rn & 0x8) << 4;
13085 inst.instruction |= (Rn & 0x7);
13086 inst.instruction |= Rm << 3;
13087 }
13088 break;
13089 }
13090 return;
13091 }
13092
13093 inst.instruction = THUMB_OP16 (inst.instruction);
13094
13095 /* PR 10443: Do not silently ignore shifted operands. */
13096 constraint (inst.operands[1].shifted,
13097 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
13098
13099 if (inst.operands[1].isreg)
13100 {
13101 if (Rn < 8 && Rm < 8)
13102 {
13103 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
13104 since a MOV instruction produces unpredictable results. */
13105 if (inst.instruction == T_OPCODE_MOV_I8)
13106 inst.instruction = T_OPCODE_ADD_I3;
13107 else
13108 inst.instruction = T_OPCODE_CMP_LR;
13109
13110 inst.instruction |= Rn;
13111 inst.instruction |= Rm << 3;
13112 }
13113 else
13114 {
13115 if (inst.instruction == T_OPCODE_MOV_I8)
13116 inst.instruction = T_OPCODE_MOV_HR;
13117 else
13118 inst.instruction = T_OPCODE_CMP_HR;
13119 do_t_cpy ();
13120 }
13121 }
13122 else
13123 {
13124 constraint (Rn > 7,
13125 _("only lo regs allowed with immediate"));
13126 inst.instruction |= Rn << 8;
13127 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_IMM;
13128 }
13129 }
13130
13131 static void
13132 do_t_mov16 (void)
13133 {
13134 unsigned Rd;
13135 bfd_vma imm;
13136 bfd_boolean top;
13137
13138 top = (inst.instruction & 0x00800000) != 0;
13139 if (inst.relocs[0].type == BFD_RELOC_ARM_MOVW)
13140 {
13141 constraint (top, _(":lower16: not allowed in this instruction"));
13142 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_MOVW;
13143 }
13144 else if (inst.relocs[0].type == BFD_RELOC_ARM_MOVT)
13145 {
13146 constraint (!top, _(":upper16: not allowed in this instruction"));
13147 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_MOVT;
13148 }
13149
13150 Rd = inst.operands[0].reg;
13151 reject_bad_reg (Rd);
13152
13153 inst.instruction |= Rd << 8;
13154 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
13155 {
13156 imm = inst.relocs[0].exp.X_add_number;
13157 inst.instruction |= (imm & 0xf000) << 4;
13158 inst.instruction |= (imm & 0x0800) << 15;
13159 inst.instruction |= (imm & 0x0700) << 4;
13160 inst.instruction |= (imm & 0x00ff);
13161 }
13162 }
13163
13164 static void
13165 do_t_mvn_tst (void)
13166 {
13167 unsigned Rn, Rm;
13168
13169 Rn = inst.operands[0].reg;
13170 Rm = inst.operands[1].reg;
13171
13172 if (inst.instruction == T_MNEM_cmp
13173 || inst.instruction == T_MNEM_cmn)
13174 constraint (Rn == REG_PC, BAD_PC);
13175 else
13176 reject_bad_reg (Rn);
13177 reject_bad_reg (Rm);
13178
13179 if (unified_syntax)
13180 {
13181 int r0off = (inst.instruction == T_MNEM_mvn
13182 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
13183 bfd_boolean narrow;
13184
13185 if (inst.size_req == 4
13186 || inst.instruction > 0xffff
13187 || inst.operands[1].shifted
13188 || Rn > 7 || Rm > 7)
13189 narrow = FALSE;
13190 else if (inst.instruction == T_MNEM_cmn
13191 || inst.instruction == T_MNEM_tst)
13192 narrow = TRUE;
13193 else if (THUMB_SETS_FLAGS (inst.instruction))
13194 narrow = !in_pred_block ();
13195 else
13196 narrow = in_pred_block ();
13197
13198 if (!inst.operands[1].isreg)
13199 {
13200 /* For an immediate, we always generate a 32-bit opcode;
13201 section relaxation will shrink it later if possible. */
13202 if (inst.instruction < 0xffff)
13203 inst.instruction = THUMB_OP32 (inst.instruction);
13204 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13205 inst.instruction |= Rn << r0off;
13206 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13207 }
13208 else
13209 {
13210 /* See if we can do this with a 16-bit instruction. */
13211 if (narrow)
13212 {
13213 inst.instruction = THUMB_OP16 (inst.instruction);
13214 inst.instruction |= Rn;
13215 inst.instruction |= Rm << 3;
13216 }
13217 else
13218 {
13219 constraint (inst.operands[1].shifted
13220 && inst.operands[1].immisreg,
13221 _("shift must be constant"));
13222 if (inst.instruction < 0xffff)
13223 inst.instruction = THUMB_OP32 (inst.instruction);
13224 inst.instruction |= Rn << r0off;
13225 encode_thumb32_shifted_operand (1);
13226 }
13227 }
13228 }
13229 else
13230 {
13231 constraint (inst.instruction > 0xffff
13232 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
13233 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
13234 _("unshifted register required"));
13235 constraint (Rn > 7 || Rm > 7,
13236 BAD_HIREG);
13237
13238 inst.instruction = THUMB_OP16 (inst.instruction);
13239 inst.instruction |= Rn;
13240 inst.instruction |= Rm << 3;
13241 }
13242 }
13243
13244 static void
13245 do_t_mrs (void)
13246 {
13247 unsigned Rd;
13248
13249 if (do_vfp_nsyn_mrs () == SUCCESS)
13250 return;
13251
13252 Rd = inst.operands[0].reg;
13253 reject_bad_reg (Rd);
13254 inst.instruction |= Rd << 8;
13255
13256 if (inst.operands[1].isreg)
13257 {
13258 unsigned br = inst.operands[1].reg;
13259 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
13260 as_bad (_("bad register for mrs"));
13261
13262 inst.instruction |= br & (0xf << 16);
13263 inst.instruction |= (br & 0x300) >> 4;
13264 inst.instruction |= (br & SPSR_BIT) >> 2;
13265 }
13266 else
13267 {
13268 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
13269
13270 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
13271 {
13272 /* PR gas/12698: The constraint is only applied for m_profile.
13273 If the user has specified -march=all, we want to ignore it as
13274 we are building for any CPU type, including non-m variants. */
13275 bfd_boolean m_profile =
13276 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
13277 constraint ((flags != 0) && m_profile, _("selected processor does "
13278 "not support requested special purpose register"));
13279 }
13280 else
13281 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
13282 devices). */
13283 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
13284 _("'APSR', 'CPSR' or 'SPSR' expected"));
13285
13286 inst.instruction |= (flags & SPSR_BIT) >> 2;
13287 inst.instruction |= inst.operands[1].imm & 0xff;
13288 inst.instruction |= 0xf0000;
13289 }
13290 }
13291
13292 static void
13293 do_t_msr (void)
13294 {
13295 int flags;
13296 unsigned Rn;
13297
13298 if (do_vfp_nsyn_msr () == SUCCESS)
13299 return;
13300
13301 constraint (!inst.operands[1].isreg,
13302 _("Thumb encoding does not support an immediate here"));
13303
13304 if (inst.operands[0].isreg)
13305 flags = (int)(inst.operands[0].reg);
13306 else
13307 flags = inst.operands[0].imm;
13308
13309 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
13310 {
13311 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
13312
13313 /* PR gas/12698: The constraint is only applied for m_profile.
13314 If the user has specified -march=all, we want to ignore it as
13315 we are building for any CPU type, including non-m variants. */
13316 bfd_boolean m_profile =
13317 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
13318 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
13319 && (bits & ~(PSR_s | PSR_f)) != 0)
13320 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
13321 && bits != PSR_f)) && m_profile,
13322 _("selected processor does not support requested special "
13323 "purpose register"));
13324 }
13325 else
13326 constraint ((flags & 0xff) != 0, _("selected processor does not support "
13327 "requested special purpose register"));
13328
13329 Rn = inst.operands[1].reg;
13330 reject_bad_reg (Rn);
13331
13332 inst.instruction |= (flags & SPSR_BIT) >> 2;
13333 inst.instruction |= (flags & 0xf0000) >> 8;
13334 inst.instruction |= (flags & 0x300) >> 4;
13335 inst.instruction |= (flags & 0xff);
13336 inst.instruction |= Rn << 16;
13337 }
13338
13339 static void
13340 do_t_mul (void)
13341 {
13342 bfd_boolean narrow;
13343 unsigned Rd, Rn, Rm;
13344
13345 if (!inst.operands[2].present)
13346 inst.operands[2].reg = inst.operands[0].reg;
13347
13348 Rd = inst.operands[0].reg;
13349 Rn = inst.operands[1].reg;
13350 Rm = inst.operands[2].reg;
13351
13352 if (unified_syntax)
13353 {
13354 if (inst.size_req == 4
13355 || (Rd != Rn
13356 && Rd != Rm)
13357 || Rn > 7
13358 || Rm > 7)
13359 narrow = FALSE;
13360 else if (inst.instruction == T_MNEM_muls)
13361 narrow = !in_pred_block ();
13362 else
13363 narrow = in_pred_block ();
13364 }
13365 else
13366 {
13367 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
13368 constraint (Rn > 7 || Rm > 7,
13369 BAD_HIREG);
13370 narrow = TRUE;
13371 }
13372
13373 if (narrow)
13374 {
13375 /* 16-bit MULS/Conditional MUL. */
13376 inst.instruction = THUMB_OP16 (inst.instruction);
13377 inst.instruction |= Rd;
13378
13379 if (Rd == Rn)
13380 inst.instruction |= Rm << 3;
13381 else if (Rd == Rm)
13382 inst.instruction |= Rn << 3;
13383 else
13384 constraint (1, _("dest must overlap one source register"));
13385 }
13386 else
13387 {
13388 constraint (inst.instruction != T_MNEM_mul,
13389 _("Thumb-2 MUL must not set flags"));
13390 /* 32-bit MUL. */
13391 inst.instruction = THUMB_OP32 (inst.instruction);
13392 inst.instruction |= Rd << 8;
13393 inst.instruction |= Rn << 16;
13394 inst.instruction |= Rm << 0;
13395
13396 reject_bad_reg (Rd);
13397 reject_bad_reg (Rn);
13398 reject_bad_reg (Rm);
13399 }
13400 }
13401
13402 static void
13403 do_t_mull (void)
13404 {
13405 unsigned RdLo, RdHi, Rn, Rm;
13406
13407 RdLo = inst.operands[0].reg;
13408 RdHi = inst.operands[1].reg;
13409 Rn = inst.operands[2].reg;
13410 Rm = inst.operands[3].reg;
13411
13412 reject_bad_reg (RdLo);
13413 reject_bad_reg (RdHi);
13414 reject_bad_reg (Rn);
13415 reject_bad_reg (Rm);
13416
13417 inst.instruction |= RdLo << 12;
13418 inst.instruction |= RdHi << 8;
13419 inst.instruction |= Rn << 16;
13420 inst.instruction |= Rm;
13421
13422 if (RdLo == RdHi)
13423 as_tsktsk (_("rdhi and rdlo must be different"));
13424 }
13425
13426 static void
13427 do_t_nop (void)
13428 {
13429 set_pred_insn_type (NEUTRAL_IT_INSN);
13430
13431 if (unified_syntax)
13432 {
13433 if (inst.size_req == 4 || inst.operands[0].imm > 15)
13434 {
13435 inst.instruction = THUMB_OP32 (inst.instruction);
13436 inst.instruction |= inst.operands[0].imm;
13437 }
13438 else
13439 {
13440 /* PR9722: Check for Thumb2 availability before
13441 generating a thumb2 nop instruction. */
13442 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
13443 {
13444 inst.instruction = THUMB_OP16 (inst.instruction);
13445 inst.instruction |= inst.operands[0].imm << 4;
13446 }
13447 else
13448 inst.instruction = 0x46c0;
13449 }
13450 }
13451 else
13452 {
13453 constraint (inst.operands[0].present,
13454 _("Thumb does not support NOP with hints"));
13455 inst.instruction = 0x46c0;
13456 }
13457 }
13458
13459 static void
13460 do_t_neg (void)
13461 {
13462 if (unified_syntax)
13463 {
13464 bfd_boolean narrow;
13465
13466 if (THUMB_SETS_FLAGS (inst.instruction))
13467 narrow = !in_pred_block ();
13468 else
13469 narrow = in_pred_block ();
13470 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
13471 narrow = FALSE;
13472 if (inst.size_req == 4)
13473 narrow = FALSE;
13474
13475 if (!narrow)
13476 {
13477 inst.instruction = THUMB_OP32 (inst.instruction);
13478 inst.instruction |= inst.operands[0].reg << 8;
13479 inst.instruction |= inst.operands[1].reg << 16;
13480 }
13481 else
13482 {
13483 inst.instruction = THUMB_OP16 (inst.instruction);
13484 inst.instruction |= inst.operands[0].reg;
13485 inst.instruction |= inst.operands[1].reg << 3;
13486 }
13487 }
13488 else
13489 {
13490 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
13491 BAD_HIREG);
13492 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
13493
13494 inst.instruction = THUMB_OP16 (inst.instruction);
13495 inst.instruction |= inst.operands[0].reg;
13496 inst.instruction |= inst.operands[1].reg << 3;
13497 }
13498 }
13499
13500 static void
13501 do_t_orn (void)
13502 {
13503 unsigned Rd, Rn;
13504
13505 Rd = inst.operands[0].reg;
13506 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
13507
13508 reject_bad_reg (Rd);
13509 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
13510 reject_bad_reg (Rn);
13511
13512 inst.instruction |= Rd << 8;
13513 inst.instruction |= Rn << 16;
13514
13515 if (!inst.operands[2].isreg)
13516 {
13517 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13518 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13519 }
13520 else
13521 {
13522 unsigned Rm;
13523
13524 Rm = inst.operands[2].reg;
13525 reject_bad_reg (Rm);
13526
13527 constraint (inst.operands[2].shifted
13528 && inst.operands[2].immisreg,
13529 _("shift must be constant"));
13530 encode_thumb32_shifted_operand (2);
13531 }
13532 }
13533
13534 static void
13535 do_t_pkhbt (void)
13536 {
13537 unsigned Rd, Rn, Rm;
13538
13539 Rd = inst.operands[0].reg;
13540 Rn = inst.operands[1].reg;
13541 Rm = inst.operands[2].reg;
13542
13543 reject_bad_reg (Rd);
13544 reject_bad_reg (Rn);
13545 reject_bad_reg (Rm);
13546
13547 inst.instruction |= Rd << 8;
13548 inst.instruction |= Rn << 16;
13549 inst.instruction |= Rm;
13550 if (inst.operands[3].present)
13551 {
13552 unsigned int val = inst.relocs[0].exp.X_add_number;
13553 constraint (inst.relocs[0].exp.X_op != O_constant,
13554 _("expression too complex"));
13555 inst.instruction |= (val & 0x1c) << 10;
13556 inst.instruction |= (val & 0x03) << 6;
13557 }
13558 }
13559
13560 static void
13561 do_t_pkhtb (void)
13562 {
13563 if (!inst.operands[3].present)
13564 {
13565 unsigned Rtmp;
13566
13567 inst.instruction &= ~0x00000020;
13568
13569 /* PR 10168. Swap the Rm and Rn registers. */
13570 Rtmp = inst.operands[1].reg;
13571 inst.operands[1].reg = inst.operands[2].reg;
13572 inst.operands[2].reg = Rtmp;
13573 }
13574 do_t_pkhbt ();
13575 }
13576
13577 static void
13578 do_t_pld (void)
13579 {
13580 if (inst.operands[0].immisreg)
13581 reject_bad_reg (inst.operands[0].imm);
13582
13583 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
13584 }
13585
13586 static void
13587 do_t_push_pop (void)
13588 {
13589 unsigned mask;
13590
13591 constraint (inst.operands[0].writeback,
13592 _("push/pop do not support {reglist}^"));
13593 constraint (inst.relocs[0].type != BFD_RELOC_UNUSED,
13594 _("expression too complex"));
13595
13596 mask = inst.operands[0].imm;
13597 if (inst.size_req != 4 && (mask & ~0xff) == 0)
13598 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
13599 else if (inst.size_req != 4
13600 && (mask & ~0xff) == (1U << (inst.instruction == T_MNEM_push
13601 ? REG_LR : REG_PC)))
13602 {
13603 inst.instruction = THUMB_OP16 (inst.instruction);
13604 inst.instruction |= THUMB_PP_PC_LR;
13605 inst.instruction |= mask & 0xff;
13606 }
13607 else if (unified_syntax)
13608 {
13609 inst.instruction = THUMB_OP32 (inst.instruction);
13610 encode_thumb2_multi (TRUE /* do_io */, 13, mask, TRUE);
13611 }
13612 else
13613 {
13614 inst.error = _("invalid register list to push/pop instruction");
13615 return;
13616 }
13617 }
13618
13619 static void
13620 do_t_clrm (void)
13621 {
13622 if (unified_syntax)
13623 encode_thumb2_multi (FALSE /* do_io */, -1, inst.operands[0].imm, FALSE);
13624 else
13625 {
13626 inst.error = _("invalid register list to push/pop instruction");
13627 return;
13628 }
13629 }
13630
13631 static void
13632 do_t_vscclrm (void)
13633 {
13634 if (inst.operands[0].issingle)
13635 {
13636 inst.instruction |= (inst.operands[0].reg & 0x1) << 22;
13637 inst.instruction |= (inst.operands[0].reg & 0x1e) << 11;
13638 inst.instruction |= inst.operands[0].imm;
13639 }
13640 else
13641 {
13642 inst.instruction |= (inst.operands[0].reg & 0x10) << 18;
13643 inst.instruction |= (inst.operands[0].reg & 0xf) << 12;
13644 inst.instruction |= 1 << 8;
13645 inst.instruction |= inst.operands[0].imm << 1;
13646 }
13647 }
13648
13649 static void
13650 do_t_rbit (void)
13651 {
13652 unsigned Rd, Rm;
13653
13654 Rd = inst.operands[0].reg;
13655 Rm = inst.operands[1].reg;
13656
13657 reject_bad_reg (Rd);
13658 reject_bad_reg (Rm);
13659
13660 inst.instruction |= Rd << 8;
13661 inst.instruction |= Rm << 16;
13662 inst.instruction |= Rm;
13663 }
13664
13665 static void
13666 do_t_rev (void)
13667 {
13668 unsigned Rd, Rm;
13669
13670 Rd = inst.operands[0].reg;
13671 Rm = inst.operands[1].reg;
13672
13673 reject_bad_reg (Rd);
13674 reject_bad_reg (Rm);
13675
13676 if (Rd <= 7 && Rm <= 7
13677 && inst.size_req != 4)
13678 {
13679 inst.instruction = THUMB_OP16 (inst.instruction);
13680 inst.instruction |= Rd;
13681 inst.instruction |= Rm << 3;
13682 }
13683 else if (unified_syntax)
13684 {
13685 inst.instruction = THUMB_OP32 (inst.instruction);
13686 inst.instruction |= Rd << 8;
13687 inst.instruction |= Rm << 16;
13688 inst.instruction |= Rm;
13689 }
13690 else
13691 inst.error = BAD_HIREG;
13692 }
13693
13694 static void
13695 do_t_rrx (void)
13696 {
13697 unsigned Rd, Rm;
13698
13699 Rd = inst.operands[0].reg;
13700 Rm = inst.operands[1].reg;
13701
13702 reject_bad_reg (Rd);
13703 reject_bad_reg (Rm);
13704
13705 inst.instruction |= Rd << 8;
13706 inst.instruction |= Rm;
13707 }
13708
13709 static void
13710 do_t_rsb (void)
13711 {
13712 unsigned Rd, Rs;
13713
13714 Rd = inst.operands[0].reg;
13715 Rs = (inst.operands[1].present
13716 ? inst.operands[1].reg /* Rd, Rs, foo */
13717 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
13718
13719 reject_bad_reg (Rd);
13720 reject_bad_reg (Rs);
13721 if (inst.operands[2].isreg)
13722 reject_bad_reg (inst.operands[2].reg);
13723
13724 inst.instruction |= Rd << 8;
13725 inst.instruction |= Rs << 16;
13726 if (!inst.operands[2].isreg)
13727 {
13728 bfd_boolean narrow;
13729
13730 if ((inst.instruction & 0x00100000) != 0)
13731 narrow = !in_pred_block ();
13732 else
13733 narrow = in_pred_block ();
13734
13735 if (Rd > 7 || Rs > 7)
13736 narrow = FALSE;
13737
13738 if (inst.size_req == 4 || !unified_syntax)
13739 narrow = FALSE;
13740
13741 if (inst.relocs[0].exp.X_op != O_constant
13742 || inst.relocs[0].exp.X_add_number != 0)
13743 narrow = FALSE;
13744
13745 /* Turn rsb #0 into 16-bit neg. We should probably do this via
13746 relaxation, but it doesn't seem worth the hassle. */
13747 if (narrow)
13748 {
13749 inst.relocs[0].type = BFD_RELOC_UNUSED;
13750 inst.instruction = THUMB_OP16 (T_MNEM_negs);
13751 inst.instruction |= Rs << 3;
13752 inst.instruction |= Rd;
13753 }
13754 else
13755 {
13756 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13757 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13758 }
13759 }
13760 else
13761 encode_thumb32_shifted_operand (2);
13762 }
13763
13764 static void
13765 do_t_setend (void)
13766 {
13767 if (warn_on_deprecated
13768 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
13769 as_tsktsk (_("setend use is deprecated for ARMv8"));
13770
13771 set_pred_insn_type (OUTSIDE_PRED_INSN);
13772 if (inst.operands[0].imm)
13773 inst.instruction |= 0x8;
13774 }
13775
13776 static void
13777 do_t_shift (void)
13778 {
13779 if (!inst.operands[1].present)
13780 inst.operands[1].reg = inst.operands[0].reg;
13781
13782 if (unified_syntax)
13783 {
13784 bfd_boolean narrow;
13785 int shift_kind;
13786
13787 switch (inst.instruction)
13788 {
13789 case T_MNEM_asr:
13790 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
13791 case T_MNEM_lsl:
13792 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
13793 case T_MNEM_lsr:
13794 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
13795 case T_MNEM_ror:
13796 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
13797 default: abort ();
13798 }
13799
13800 if (THUMB_SETS_FLAGS (inst.instruction))
13801 narrow = !in_pred_block ();
13802 else
13803 narrow = in_pred_block ();
13804 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
13805 narrow = FALSE;
13806 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
13807 narrow = FALSE;
13808 if (inst.operands[2].isreg
13809 && (inst.operands[1].reg != inst.operands[0].reg
13810 || inst.operands[2].reg > 7))
13811 narrow = FALSE;
13812 if (inst.size_req == 4)
13813 narrow = FALSE;
13814
13815 reject_bad_reg (inst.operands[0].reg);
13816 reject_bad_reg (inst.operands[1].reg);
13817
13818 if (!narrow)
13819 {
13820 if (inst.operands[2].isreg)
13821 {
13822 reject_bad_reg (inst.operands[2].reg);
13823 inst.instruction = THUMB_OP32 (inst.instruction);
13824 inst.instruction |= inst.operands[0].reg << 8;
13825 inst.instruction |= inst.operands[1].reg << 16;
13826 inst.instruction |= inst.operands[2].reg;
13827
13828 /* PR 12854: Error on extraneous shifts. */
13829 constraint (inst.operands[2].shifted,
13830 _("extraneous shift as part of operand to shift insn"));
13831 }
13832 else
13833 {
13834 inst.operands[1].shifted = 1;
13835 inst.operands[1].shift_kind = shift_kind;
13836 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
13837 ? T_MNEM_movs : T_MNEM_mov);
13838 inst.instruction |= inst.operands[0].reg << 8;
13839 encode_thumb32_shifted_operand (1);
13840 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
13841 inst.relocs[0].type = BFD_RELOC_UNUSED;
13842 }
13843 }
13844 else
13845 {
13846 if (inst.operands[2].isreg)
13847 {
13848 switch (shift_kind)
13849 {
13850 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
13851 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
13852 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
13853 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
13854 default: abort ();
13855 }
13856
13857 inst.instruction |= inst.operands[0].reg;
13858 inst.instruction |= inst.operands[2].reg << 3;
13859
13860 /* PR 12854: Error on extraneous shifts. */
13861 constraint (inst.operands[2].shifted,
13862 _("extraneous shift as part of operand to shift insn"));
13863 }
13864 else
13865 {
13866 switch (shift_kind)
13867 {
13868 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
13869 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
13870 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
13871 default: abort ();
13872 }
13873 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
13874 inst.instruction |= inst.operands[0].reg;
13875 inst.instruction |= inst.operands[1].reg << 3;
13876 }
13877 }
13878 }
13879 else
13880 {
13881 constraint (inst.operands[0].reg > 7
13882 || inst.operands[1].reg > 7, BAD_HIREG);
13883 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
13884
13885 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
13886 {
13887 constraint (inst.operands[2].reg > 7, BAD_HIREG);
13888 constraint (inst.operands[0].reg != inst.operands[1].reg,
13889 _("source1 and dest must be same register"));
13890
13891 switch (inst.instruction)
13892 {
13893 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
13894 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
13895 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
13896 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
13897 default: abort ();
13898 }
13899
13900 inst.instruction |= inst.operands[0].reg;
13901 inst.instruction |= inst.operands[2].reg << 3;
13902
13903 /* PR 12854: Error on extraneous shifts. */
13904 constraint (inst.operands[2].shifted,
13905 _("extraneous shift as part of operand to shift insn"));
13906 }
13907 else
13908 {
13909 switch (inst.instruction)
13910 {
13911 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
13912 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
13913 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
13914 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
13915 default: abort ();
13916 }
13917 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
13918 inst.instruction |= inst.operands[0].reg;
13919 inst.instruction |= inst.operands[1].reg << 3;
13920 }
13921 }
13922 }
13923
13924 static void
13925 do_t_simd (void)
13926 {
13927 unsigned Rd, Rn, Rm;
13928
13929 Rd = inst.operands[0].reg;
13930 Rn = inst.operands[1].reg;
13931 Rm = inst.operands[2].reg;
13932
13933 reject_bad_reg (Rd);
13934 reject_bad_reg (Rn);
13935 reject_bad_reg (Rm);
13936
13937 inst.instruction |= Rd << 8;
13938 inst.instruction |= Rn << 16;
13939 inst.instruction |= Rm;
13940 }
13941
13942 static void
13943 do_t_simd2 (void)
13944 {
13945 unsigned Rd, Rn, Rm;
13946
13947 Rd = inst.operands[0].reg;
13948 Rm = inst.operands[1].reg;
13949 Rn = inst.operands[2].reg;
13950
13951 reject_bad_reg (Rd);
13952 reject_bad_reg (Rn);
13953 reject_bad_reg (Rm);
13954
13955 inst.instruction |= Rd << 8;
13956 inst.instruction |= Rn << 16;
13957 inst.instruction |= Rm;
13958 }
13959
13960 static void
13961 do_t_smc (void)
13962 {
13963 unsigned int value = inst.relocs[0].exp.X_add_number;
13964 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
13965 _("SMC is not permitted on this architecture"));
13966 constraint (inst.relocs[0].exp.X_op != O_constant,
13967 _("expression too complex"));
13968 constraint (value > 0xf, _("immediate too large (bigger than 0xF)"));
13969
13970 inst.relocs[0].type = BFD_RELOC_UNUSED;
13971 inst.instruction |= (value & 0x000f) << 16;
13972
13973 /* PR gas/15623: SMC instructions must be last in an IT block. */
13974 set_pred_insn_type_last ();
13975 }
13976
13977 static void
13978 do_t_hvc (void)
13979 {
13980 unsigned int value = inst.relocs[0].exp.X_add_number;
13981
13982 inst.relocs[0].type = BFD_RELOC_UNUSED;
13983 inst.instruction |= (value & 0x0fff);
13984 inst.instruction |= (value & 0xf000) << 4;
13985 }
13986
13987 static void
13988 do_t_ssat_usat (int bias)
13989 {
13990 unsigned Rd, Rn;
13991
13992 Rd = inst.operands[0].reg;
13993 Rn = inst.operands[2].reg;
13994
13995 reject_bad_reg (Rd);
13996 reject_bad_reg (Rn);
13997
13998 inst.instruction |= Rd << 8;
13999 inst.instruction |= inst.operands[1].imm - bias;
14000 inst.instruction |= Rn << 16;
14001
14002 if (inst.operands[3].present)
14003 {
14004 offsetT shift_amount = inst.relocs[0].exp.X_add_number;
14005
14006 inst.relocs[0].type = BFD_RELOC_UNUSED;
14007
14008 constraint (inst.relocs[0].exp.X_op != O_constant,
14009 _("expression too complex"));
14010
14011 if (shift_amount != 0)
14012 {
14013 constraint (shift_amount > 31,
14014 _("shift expression is too large"));
14015
14016 if (inst.operands[3].shift_kind == SHIFT_ASR)
14017 inst.instruction |= 0x00200000; /* sh bit. */
14018
14019 inst.instruction |= (shift_amount & 0x1c) << 10;
14020 inst.instruction |= (shift_amount & 0x03) << 6;
14021 }
14022 }
14023 }
14024
14025 static void
14026 do_t_ssat (void)
14027 {
14028 do_t_ssat_usat (1);
14029 }
14030
14031 static void
14032 do_t_ssat16 (void)
14033 {
14034 unsigned Rd, Rn;
14035
14036 Rd = inst.operands[0].reg;
14037 Rn = inst.operands[2].reg;
14038
14039 reject_bad_reg (Rd);
14040 reject_bad_reg (Rn);
14041
14042 inst.instruction |= Rd << 8;
14043 inst.instruction |= inst.operands[1].imm - 1;
14044 inst.instruction |= Rn << 16;
14045 }
14046
14047 static void
14048 do_t_strex (void)
14049 {
14050 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
14051 || inst.operands[2].postind || inst.operands[2].writeback
14052 || inst.operands[2].immisreg || inst.operands[2].shifted
14053 || inst.operands[2].negative,
14054 BAD_ADDR_MODE);
14055
14056 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
14057
14058 inst.instruction |= inst.operands[0].reg << 8;
14059 inst.instruction |= inst.operands[1].reg << 12;
14060 inst.instruction |= inst.operands[2].reg << 16;
14061 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_U8;
14062 }
14063
14064 static void
14065 do_t_strexd (void)
14066 {
14067 if (!inst.operands[2].present)
14068 inst.operands[2].reg = inst.operands[1].reg + 1;
14069
14070 constraint (inst.operands[0].reg == inst.operands[1].reg
14071 || inst.operands[0].reg == inst.operands[2].reg
14072 || inst.operands[0].reg == inst.operands[3].reg,
14073 BAD_OVERLAP);
14074
14075 inst.instruction |= inst.operands[0].reg;
14076 inst.instruction |= inst.operands[1].reg << 12;
14077 inst.instruction |= inst.operands[2].reg << 8;
14078 inst.instruction |= inst.operands[3].reg << 16;
14079 }
14080
14081 static void
14082 do_t_sxtah (void)
14083 {
14084 unsigned Rd, Rn, Rm;
14085
14086 Rd = inst.operands[0].reg;
14087 Rn = inst.operands[1].reg;
14088 Rm = inst.operands[2].reg;
14089
14090 reject_bad_reg (Rd);
14091 reject_bad_reg (Rn);
14092 reject_bad_reg (Rm);
14093
14094 inst.instruction |= Rd << 8;
14095 inst.instruction |= Rn << 16;
14096 inst.instruction |= Rm;
14097 inst.instruction |= inst.operands[3].imm << 4;
14098 }
14099
14100 static void
14101 do_t_sxth (void)
14102 {
14103 unsigned Rd, Rm;
14104
14105 Rd = inst.operands[0].reg;
14106 Rm = inst.operands[1].reg;
14107
14108 reject_bad_reg (Rd);
14109 reject_bad_reg (Rm);
14110
14111 if (inst.instruction <= 0xffff
14112 && inst.size_req != 4
14113 && Rd <= 7 && Rm <= 7
14114 && (!inst.operands[2].present || inst.operands[2].imm == 0))
14115 {
14116 inst.instruction = THUMB_OP16 (inst.instruction);
14117 inst.instruction |= Rd;
14118 inst.instruction |= Rm << 3;
14119 }
14120 else if (unified_syntax)
14121 {
14122 if (inst.instruction <= 0xffff)
14123 inst.instruction = THUMB_OP32 (inst.instruction);
14124 inst.instruction |= Rd << 8;
14125 inst.instruction |= Rm;
14126 inst.instruction |= inst.operands[2].imm << 4;
14127 }
14128 else
14129 {
14130 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
14131 _("Thumb encoding does not support rotation"));
14132 constraint (1, BAD_HIREG);
14133 }
14134 }
14135
14136 static void
14137 do_t_swi (void)
14138 {
14139 inst.relocs[0].type = BFD_RELOC_ARM_SWI;
14140 }
14141
14142 static void
14143 do_t_tb (void)
14144 {
14145 unsigned Rn, Rm;
14146 int half;
14147
14148 half = (inst.instruction & 0x10) != 0;
14149 set_pred_insn_type_last ();
14150 constraint (inst.operands[0].immisreg,
14151 _("instruction requires register index"));
14152
14153 Rn = inst.operands[0].reg;
14154 Rm = inst.operands[0].imm;
14155
14156 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
14157 constraint (Rn == REG_SP, BAD_SP);
14158 reject_bad_reg (Rm);
14159
14160 constraint (!half && inst.operands[0].shifted,
14161 _("instruction does not allow shifted index"));
14162 inst.instruction |= (Rn << 16) | Rm;
14163 }
14164
14165 static void
14166 do_t_udf (void)
14167 {
14168 if (!inst.operands[0].present)
14169 inst.operands[0].imm = 0;
14170
14171 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
14172 {
14173 constraint (inst.size_req == 2,
14174 _("immediate value out of range"));
14175 inst.instruction = THUMB_OP32 (inst.instruction);
14176 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
14177 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
14178 }
14179 else
14180 {
14181 inst.instruction = THUMB_OP16 (inst.instruction);
14182 inst.instruction |= inst.operands[0].imm;
14183 }
14184
14185 set_pred_insn_type (NEUTRAL_IT_INSN);
14186 }
14187
14188
14189 static void
14190 do_t_usat (void)
14191 {
14192 do_t_ssat_usat (0);
14193 }
14194
14195 static void
14196 do_t_usat16 (void)
14197 {
14198 unsigned Rd, Rn;
14199
14200 Rd = inst.operands[0].reg;
14201 Rn = inst.operands[2].reg;
14202
14203 reject_bad_reg (Rd);
14204 reject_bad_reg (Rn);
14205
14206 inst.instruction |= Rd << 8;
14207 inst.instruction |= inst.operands[1].imm;
14208 inst.instruction |= Rn << 16;
14209 }
14210
14211 /* Checking the range of the branch offset (VAL) with NBITS bits
14212 and IS_SIGNED signedness. Also checks the LSB to be 0. */
14213 static int
14214 v8_1_branch_value_check (int val, int nbits, int is_signed)
14215 {
14216 gas_assert (nbits > 0 && nbits <= 32);
14217 if (is_signed)
14218 {
14219 int cmp = (1 << (nbits - 1));
14220 if ((val < -cmp) || (val >= cmp) || (val & 0x01))
14221 return FAIL;
14222 }
14223 else
14224 {
14225 if ((val <= 0) || (val >= (1 << nbits)) || (val & 0x1))
14226 return FAIL;
14227 }
14228 return SUCCESS;
14229 }
14230
14231 /* For branches in Armv8.1-M Mainline. */
14232 static void
14233 do_t_branch_future (void)
14234 {
14235 unsigned long insn = inst.instruction;
14236
14237 inst.instruction = THUMB_OP32 (inst.instruction);
14238 if (inst.operands[0].hasreloc == 0)
14239 {
14240 if (v8_1_branch_value_check (inst.operands[0].imm, 5, FALSE) == FAIL)
14241 as_bad (BAD_BRANCH_OFF);
14242
14243 inst.instruction |= ((inst.operands[0].imm & 0x1f) >> 1) << 23;
14244 }
14245 else
14246 {
14247 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH5;
14248 inst.relocs[0].pc_rel = 1;
14249 }
14250
14251 switch (insn)
14252 {
14253 case T_MNEM_bf:
14254 if (inst.operands[1].hasreloc == 0)
14255 {
14256 int val = inst.operands[1].imm;
14257 if (v8_1_branch_value_check (inst.operands[1].imm, 17, TRUE) == FAIL)
14258 as_bad (BAD_BRANCH_OFF);
14259
14260 int immA = (val & 0x0001f000) >> 12;
14261 int immB = (val & 0x00000ffc) >> 2;
14262 int immC = (val & 0x00000002) >> 1;
14263 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14264 }
14265 else
14266 {
14267 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF17;
14268 inst.relocs[1].pc_rel = 1;
14269 }
14270 break;
14271
14272 case T_MNEM_bfl:
14273 if (inst.operands[1].hasreloc == 0)
14274 {
14275 int val = inst.operands[1].imm;
14276 if (v8_1_branch_value_check (inst.operands[1].imm, 19, TRUE) == FAIL)
14277 as_bad (BAD_BRANCH_OFF);
14278
14279 int immA = (val & 0x0007f000) >> 12;
14280 int immB = (val & 0x00000ffc) >> 2;
14281 int immC = (val & 0x00000002) >> 1;
14282 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14283 }
14284 else
14285 {
14286 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF19;
14287 inst.relocs[1].pc_rel = 1;
14288 }
14289 break;
14290
14291 case T_MNEM_bfcsel:
14292 /* Operand 1. */
14293 if (inst.operands[1].hasreloc == 0)
14294 {
14295 int val = inst.operands[1].imm;
14296 int immA = (val & 0x00001000) >> 12;
14297 int immB = (val & 0x00000ffc) >> 2;
14298 int immC = (val & 0x00000002) >> 1;
14299 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14300 }
14301 else
14302 {
14303 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF13;
14304 inst.relocs[1].pc_rel = 1;
14305 }
14306
14307 /* Operand 2. */
14308 if (inst.operands[2].hasreloc == 0)
14309 {
14310 constraint ((inst.operands[0].hasreloc != 0), BAD_ARGS);
14311 int val2 = inst.operands[2].imm;
14312 int val0 = inst.operands[0].imm & 0x1f;
14313 int diff = val2 - val0;
14314 if (diff == 4)
14315 inst.instruction |= 1 << 17; /* T bit. */
14316 else if (diff != 2)
14317 as_bad (_("out of range label-relative fixup value"));
14318 }
14319 else
14320 {
14321 constraint ((inst.operands[0].hasreloc == 0), BAD_ARGS);
14322 inst.relocs[2].type = BFD_RELOC_THUMB_PCREL_BFCSEL;
14323 inst.relocs[2].pc_rel = 1;
14324 }
14325
14326 /* Operand 3. */
14327 constraint (inst.cond != COND_ALWAYS, BAD_COND);
14328 inst.instruction |= (inst.operands[3].imm & 0xf) << 18;
14329 break;
14330
14331 case T_MNEM_bfx:
14332 case T_MNEM_bflx:
14333 inst.instruction |= inst.operands[1].reg << 16;
14334 break;
14335
14336 default: abort ();
14337 }
14338 }
14339
14340 /* Helper function for do_t_loloop to handle relocations. */
14341 static void
14342 v8_1_loop_reloc (int is_le)
14343 {
14344 if (inst.relocs[0].exp.X_op == O_constant)
14345 {
14346 int value = inst.relocs[0].exp.X_add_number;
14347 value = (is_le) ? -value : value;
14348
14349 if (v8_1_branch_value_check (value, 12, FALSE) == FAIL)
14350 as_bad (BAD_BRANCH_OFF);
14351
14352 int imml, immh;
14353
14354 immh = (value & 0x00000ffc) >> 2;
14355 imml = (value & 0x00000002) >> 1;
14356
14357 inst.instruction |= (imml << 11) | (immh << 1);
14358 }
14359 else
14360 {
14361 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_LOOP12;
14362 inst.relocs[0].pc_rel = 1;
14363 }
14364 }
14365
14366 /* For shifts with four operands in MVE. */
14367 static void
14368 do_mve_scalar_shift1 (void)
14369 {
14370 unsigned int value = inst.operands[2].imm;
14371
14372 inst.instruction |= inst.operands[0].reg << 16;
14373 inst.instruction |= inst.operands[1].reg << 8;
14374
14375 /* Setting the bit for saturation. */
14376 inst.instruction |= ((value == 64) ? 0: 1) << 7;
14377
14378 /* Assuming Rm is already checked not to be 11x1. */
14379 constraint (inst.operands[3].reg == inst.operands[0].reg, BAD_OVERLAP);
14380 constraint (inst.operands[3].reg == inst.operands[1].reg, BAD_OVERLAP);
14381 inst.instruction |= inst.operands[3].reg << 12;
14382 }
14383
14384 /* For shifts in MVE. */
14385 static void
14386 do_mve_scalar_shift (void)
14387 {
14388 if (!inst.operands[2].present)
14389 {
14390 inst.operands[2] = inst.operands[1];
14391 inst.operands[1].reg = 0xf;
14392 }
14393
14394 inst.instruction |= inst.operands[0].reg << 16;
14395 inst.instruction |= inst.operands[1].reg << 8;
14396
14397 if (inst.operands[2].isreg)
14398 {
14399 /* Assuming Rm is already checked not to be 11x1. */
14400 constraint (inst.operands[2].reg == inst.operands[0].reg, BAD_OVERLAP);
14401 constraint (inst.operands[2].reg == inst.operands[1].reg, BAD_OVERLAP);
14402 inst.instruction |= inst.operands[2].reg << 12;
14403 }
14404 else
14405 {
14406 /* Assuming imm is already checked as [1,32]. */
14407 unsigned int value = inst.operands[2].imm;
14408 inst.instruction |= (value & 0x1c) << 10;
14409 inst.instruction |= (value & 0x03) << 6;
14410 /* Change last 4 bits from 0xd to 0xf. */
14411 inst.instruction |= 0x2;
14412 }
14413 }
14414
14415 /* MVE instruction encoder helpers. */
14416 #define M_MNEM_vabav 0xee800f01
14417 #define M_MNEM_vmladav 0xeef00e00
14418 #define M_MNEM_vmladava 0xeef00e20
14419 #define M_MNEM_vmladavx 0xeef01e00
14420 #define M_MNEM_vmladavax 0xeef01e20
14421 #define M_MNEM_vmlsdav 0xeef00e01
14422 #define M_MNEM_vmlsdava 0xeef00e21
14423 #define M_MNEM_vmlsdavx 0xeef01e01
14424 #define M_MNEM_vmlsdavax 0xeef01e21
14425 #define M_MNEM_vmullt 0xee011e00
14426 #define M_MNEM_vmullb 0xee010e00
14427 #define M_MNEM_vst20 0xfc801e00
14428 #define M_MNEM_vst21 0xfc801e20
14429 #define M_MNEM_vst40 0xfc801e01
14430 #define M_MNEM_vst41 0xfc801e21
14431 #define M_MNEM_vst42 0xfc801e41
14432 #define M_MNEM_vst43 0xfc801e61
14433 #define M_MNEM_vld20 0xfc901e00
14434 #define M_MNEM_vld21 0xfc901e20
14435 #define M_MNEM_vld40 0xfc901e01
14436 #define M_MNEM_vld41 0xfc901e21
14437 #define M_MNEM_vld42 0xfc901e41
14438 #define M_MNEM_vld43 0xfc901e61
14439 #define M_MNEM_vstrb 0xec000e00
14440 #define M_MNEM_vstrh 0xec000e10
14441 #define M_MNEM_vstrw 0xec000e40
14442 #define M_MNEM_vstrd 0xec000e50
14443 #define M_MNEM_vldrb 0xec100e00
14444 #define M_MNEM_vldrh 0xec100e10
14445 #define M_MNEM_vldrw 0xec100e40
14446 #define M_MNEM_vldrd 0xec100e50
14447 #define M_MNEM_vmovlt 0xeea01f40
14448 #define M_MNEM_vmovlb 0xeea00f40
14449 #define M_MNEM_vmovnt 0xfe311e81
14450 #define M_MNEM_vmovnb 0xfe310e81
14451 #define M_MNEM_vadc 0xee300f00
14452 #define M_MNEM_vadci 0xee301f00
14453 #define M_MNEM_vbrsr 0xfe011e60
14454 #define M_MNEM_vaddlv 0xee890f00
14455 #define M_MNEM_vaddlva 0xee890f20
14456 #define M_MNEM_vaddv 0xeef10f00
14457 #define M_MNEM_vaddva 0xeef10f20
14458 #define M_MNEM_vddup 0xee011f6e
14459 #define M_MNEM_vdwdup 0xee011f60
14460 #define M_MNEM_vidup 0xee010f6e
14461 #define M_MNEM_viwdup 0xee010f60
14462 #define M_MNEM_vmaxv 0xeee20f00
14463 #define M_MNEM_vmaxav 0xeee00f00
14464 #define M_MNEM_vminv 0xeee20f80
14465 #define M_MNEM_vminav 0xeee00f80
14466 #define M_MNEM_vmlaldav 0xee800e00
14467 #define M_MNEM_vmlaldava 0xee800e20
14468 #define M_MNEM_vmlaldavx 0xee801e00
14469 #define M_MNEM_vmlaldavax 0xee801e20
14470 #define M_MNEM_vmlsldav 0xee800e01
14471 #define M_MNEM_vmlsldava 0xee800e21
14472 #define M_MNEM_vmlsldavx 0xee801e01
14473 #define M_MNEM_vmlsldavax 0xee801e21
14474 #define M_MNEM_vrmlaldavhx 0xee801f00
14475 #define M_MNEM_vrmlaldavhax 0xee801f20
14476 #define M_MNEM_vrmlsldavh 0xfe800e01
14477 #define M_MNEM_vrmlsldavha 0xfe800e21
14478 #define M_MNEM_vrmlsldavhx 0xfe801e01
14479 #define M_MNEM_vrmlsldavhax 0xfe801e21
14480 #define M_MNEM_vqmovnt 0xee331e01
14481 #define M_MNEM_vqmovnb 0xee330e01
14482 #define M_MNEM_vqmovunt 0xee311e81
14483 #define M_MNEM_vqmovunb 0xee310e81
14484 #define M_MNEM_vshrnt 0xee801fc1
14485 #define M_MNEM_vshrnb 0xee800fc1
14486 #define M_MNEM_vrshrnt 0xfe801fc1
14487 #define M_MNEM_vqshrnt 0xee801f40
14488 #define M_MNEM_vqshrnb 0xee800f40
14489 #define M_MNEM_vqshrunt 0xee801fc0
14490 #define M_MNEM_vqshrunb 0xee800fc0
14491 #define M_MNEM_vrshrnb 0xfe800fc1
14492 #define M_MNEM_vqrshrnt 0xee801f41
14493 #define M_MNEM_vqrshrnb 0xee800f41
14494 #define M_MNEM_vqrshrunt 0xfe801fc0
14495 #define M_MNEM_vqrshrunb 0xfe800fc0
14496
14497 /* Neon instruction encoder helpers. */
14498
14499 /* Encodings for the different types for various Neon opcodes. */
14500
14501 /* An "invalid" code for the following tables. */
14502 #define N_INV -1u
14503
14504 struct neon_tab_entry
14505 {
14506 unsigned integer;
14507 unsigned float_or_poly;
14508 unsigned scalar_or_imm;
14509 };
14510
14511 /* Map overloaded Neon opcodes to their respective encodings. */
14512 #define NEON_ENC_TAB \
14513 X(vabd, 0x0000700, 0x1200d00, N_INV), \
14514 X(vabdl, 0x0800700, N_INV, N_INV), \
14515 X(vmax, 0x0000600, 0x0000f00, N_INV), \
14516 X(vmin, 0x0000610, 0x0200f00, N_INV), \
14517 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
14518 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
14519 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
14520 X(vadd, 0x0000800, 0x0000d00, N_INV), \
14521 X(vaddl, 0x0800000, N_INV, N_INV), \
14522 X(vsub, 0x1000800, 0x0200d00, N_INV), \
14523 X(vsubl, 0x0800200, N_INV, N_INV), \
14524 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
14525 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
14526 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
14527 /* Register variants of the following two instructions are encoded as
14528 vcge / vcgt with the operands reversed. */ \
14529 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
14530 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
14531 X(vfma, N_INV, 0x0000c10, N_INV), \
14532 X(vfms, N_INV, 0x0200c10, N_INV), \
14533 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
14534 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
14535 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
14536 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
14537 X(vmlal, 0x0800800, N_INV, 0x0800240), \
14538 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
14539 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
14540 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
14541 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
14542 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
14543 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
14544 X(vqrdmlah, 0x3000b10, N_INV, 0x0800e40), \
14545 X(vqrdmlsh, 0x3000c10, N_INV, 0x0800f40), \
14546 X(vshl, 0x0000400, N_INV, 0x0800510), \
14547 X(vqshl, 0x0000410, N_INV, 0x0800710), \
14548 X(vand, 0x0000110, N_INV, 0x0800030), \
14549 X(vbic, 0x0100110, N_INV, 0x0800030), \
14550 X(veor, 0x1000110, N_INV, N_INV), \
14551 X(vorn, 0x0300110, N_INV, 0x0800010), \
14552 X(vorr, 0x0200110, N_INV, 0x0800010), \
14553 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
14554 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
14555 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
14556 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
14557 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
14558 X(vst1, 0x0000000, 0x0800000, N_INV), \
14559 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
14560 X(vst2, 0x0000100, 0x0800100, N_INV), \
14561 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
14562 X(vst3, 0x0000200, 0x0800200, N_INV), \
14563 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
14564 X(vst4, 0x0000300, 0x0800300, N_INV), \
14565 X(vmovn, 0x1b20200, N_INV, N_INV), \
14566 X(vtrn, 0x1b20080, N_INV, N_INV), \
14567 X(vqmovn, 0x1b20200, N_INV, N_INV), \
14568 X(vqmovun, 0x1b20240, N_INV, N_INV), \
14569 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
14570 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
14571 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
14572 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
14573 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
14574 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
14575 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
14576 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
14577 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
14578 X(vseleq, 0xe000a00, N_INV, N_INV), \
14579 X(vselvs, 0xe100a00, N_INV, N_INV), \
14580 X(vselge, 0xe200a00, N_INV, N_INV), \
14581 X(vselgt, 0xe300a00, N_INV, N_INV), \
14582 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
14583 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
14584 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
14585 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
14586 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
14587 X(aes, 0x3b00300, N_INV, N_INV), \
14588 X(sha3op, 0x2000c00, N_INV, N_INV), \
14589 X(sha1h, 0x3b902c0, N_INV, N_INV), \
14590 X(sha2op, 0x3ba0380, N_INV, N_INV)
14591
14592 enum neon_opc
14593 {
14594 #define X(OPC,I,F,S) N_MNEM_##OPC
14595 NEON_ENC_TAB
14596 #undef X
14597 };
14598
14599 static const struct neon_tab_entry neon_enc_tab[] =
14600 {
14601 #define X(OPC,I,F,S) { (I), (F), (S) }
14602 NEON_ENC_TAB
14603 #undef X
14604 };
14605
14606 /* Do not use these macros; instead, use NEON_ENCODE defined below. */
14607 #define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14608 #define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14609 #define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14610 #define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14611 #define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14612 #define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14613 #define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14614 #define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14615 #define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14616 #define NEON_ENC_SINGLE_(X) \
14617 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
14618 #define NEON_ENC_DOUBLE_(X) \
14619 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
14620 #define NEON_ENC_FPV8_(X) \
14621 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
14622
14623 #define NEON_ENCODE(type, inst) \
14624 do \
14625 { \
14626 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
14627 inst.is_neon = 1; \
14628 } \
14629 while (0)
14630
14631 #define check_neon_suffixes \
14632 do \
14633 { \
14634 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
14635 { \
14636 as_bad (_("invalid neon suffix for non neon instruction")); \
14637 return; \
14638 } \
14639 } \
14640 while (0)
14641
14642 /* Define shapes for instruction operands. The following mnemonic characters
14643 are used in this table:
14644
14645 F - VFP S<n> register
14646 D - Neon D<n> register
14647 Q - Neon Q<n> register
14648 I - Immediate
14649 S - Scalar
14650 R - ARM register
14651 L - D<n> register list
14652
14653 This table is used to generate various data:
14654 - enumerations of the form NS_DDR to be used as arguments to
14655 neon_select_shape.
14656 - a table classifying shapes into single, double, quad, mixed.
14657 - a table used to drive neon_select_shape. */
14658
14659 #define NEON_SHAPE_DEF \
14660 X(4, (R, R, Q, Q), QUAD), \
14661 X(4, (Q, R, R, I), QUAD), \
14662 X(4, (R, R, S, S), QUAD), \
14663 X(4, (S, S, R, R), QUAD), \
14664 X(3, (Q, R, I), QUAD), \
14665 X(3, (I, Q, Q), QUAD), \
14666 X(3, (I, Q, R), QUAD), \
14667 X(3, (R, Q, Q), QUAD), \
14668 X(3, (D, D, D), DOUBLE), \
14669 X(3, (Q, Q, Q), QUAD), \
14670 X(3, (D, D, I), DOUBLE), \
14671 X(3, (Q, Q, I), QUAD), \
14672 X(3, (D, D, S), DOUBLE), \
14673 X(3, (Q, Q, S), QUAD), \
14674 X(3, (Q, Q, R), QUAD), \
14675 X(3, (R, R, Q), QUAD), \
14676 X(2, (R, Q), QUAD), \
14677 X(2, (D, D), DOUBLE), \
14678 X(2, (Q, Q), QUAD), \
14679 X(2, (D, S), DOUBLE), \
14680 X(2, (Q, S), QUAD), \
14681 X(2, (D, R), DOUBLE), \
14682 X(2, (Q, R), QUAD), \
14683 X(2, (D, I), DOUBLE), \
14684 X(2, (Q, I), QUAD), \
14685 X(3, (D, L, D), DOUBLE), \
14686 X(2, (D, Q), MIXED), \
14687 X(2, (Q, D), MIXED), \
14688 X(3, (D, Q, I), MIXED), \
14689 X(3, (Q, D, I), MIXED), \
14690 X(3, (Q, D, D), MIXED), \
14691 X(3, (D, Q, Q), MIXED), \
14692 X(3, (Q, Q, D), MIXED), \
14693 X(3, (Q, D, S), MIXED), \
14694 X(3, (D, Q, S), MIXED), \
14695 X(4, (D, D, D, I), DOUBLE), \
14696 X(4, (Q, Q, Q, I), QUAD), \
14697 X(4, (D, D, S, I), DOUBLE), \
14698 X(4, (Q, Q, S, I), QUAD), \
14699 X(2, (F, F), SINGLE), \
14700 X(3, (F, F, F), SINGLE), \
14701 X(2, (F, I), SINGLE), \
14702 X(2, (F, D), MIXED), \
14703 X(2, (D, F), MIXED), \
14704 X(3, (F, F, I), MIXED), \
14705 X(4, (R, R, F, F), SINGLE), \
14706 X(4, (F, F, R, R), SINGLE), \
14707 X(3, (D, R, R), DOUBLE), \
14708 X(3, (R, R, D), DOUBLE), \
14709 X(2, (S, R), SINGLE), \
14710 X(2, (R, S), SINGLE), \
14711 X(2, (F, R), SINGLE), \
14712 X(2, (R, F), SINGLE), \
14713 /* Used for MVE tail predicated loop instructions. */\
14714 X(2, (R, R), QUAD), \
14715 /* Half float shape supported so far. */\
14716 X (2, (H, D), MIXED), \
14717 X (2, (D, H), MIXED), \
14718 X (2, (H, F), MIXED), \
14719 X (2, (F, H), MIXED), \
14720 X (2, (H, H), HALF), \
14721 X (2, (H, R), HALF), \
14722 X (2, (R, H), HALF), \
14723 X (2, (H, I), HALF), \
14724 X (3, (H, H, H), HALF), \
14725 X (3, (H, F, I), MIXED), \
14726 X (3, (F, H, I), MIXED), \
14727 X (3, (D, H, H), MIXED), \
14728 X (3, (D, H, S), MIXED)
14729
14730 #define S2(A,B) NS_##A##B
14731 #define S3(A,B,C) NS_##A##B##C
14732 #define S4(A,B,C,D) NS_##A##B##C##D
14733
14734 #define X(N, L, C) S##N L
14735
14736 enum neon_shape
14737 {
14738 NEON_SHAPE_DEF,
14739 NS_NULL
14740 };
14741
14742 #undef X
14743 #undef S2
14744 #undef S3
14745 #undef S4
14746
14747 enum neon_shape_class
14748 {
14749 SC_HALF,
14750 SC_SINGLE,
14751 SC_DOUBLE,
14752 SC_QUAD,
14753 SC_MIXED
14754 };
14755
14756 #define X(N, L, C) SC_##C
14757
14758 static enum neon_shape_class neon_shape_class[] =
14759 {
14760 NEON_SHAPE_DEF
14761 };
14762
14763 #undef X
14764
14765 enum neon_shape_el
14766 {
14767 SE_H,
14768 SE_F,
14769 SE_D,
14770 SE_Q,
14771 SE_I,
14772 SE_S,
14773 SE_R,
14774 SE_L
14775 };
14776
14777 /* Register widths of above. */
14778 static unsigned neon_shape_el_size[] =
14779 {
14780 16,
14781 32,
14782 64,
14783 128,
14784 0,
14785 32,
14786 32,
14787 0
14788 };
14789
14790 struct neon_shape_info
14791 {
14792 unsigned els;
14793 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
14794 };
14795
14796 #define S2(A,B) { SE_##A, SE_##B }
14797 #define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
14798 #define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
14799
14800 #define X(N, L, C) { N, S##N L }
14801
14802 static struct neon_shape_info neon_shape_tab[] =
14803 {
14804 NEON_SHAPE_DEF
14805 };
14806
14807 #undef X
14808 #undef S2
14809 #undef S3
14810 #undef S4
14811
14812 /* Bit masks used in type checking given instructions.
14813 'N_EQK' means the type must be the same as (or based on in some way) the key
14814 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
14815 set, various other bits can be set as well in order to modify the meaning of
14816 the type constraint. */
14817
14818 enum neon_type_mask
14819 {
14820 N_S8 = 0x0000001,
14821 N_S16 = 0x0000002,
14822 N_S32 = 0x0000004,
14823 N_S64 = 0x0000008,
14824 N_U8 = 0x0000010,
14825 N_U16 = 0x0000020,
14826 N_U32 = 0x0000040,
14827 N_U64 = 0x0000080,
14828 N_I8 = 0x0000100,
14829 N_I16 = 0x0000200,
14830 N_I32 = 0x0000400,
14831 N_I64 = 0x0000800,
14832 N_8 = 0x0001000,
14833 N_16 = 0x0002000,
14834 N_32 = 0x0004000,
14835 N_64 = 0x0008000,
14836 N_P8 = 0x0010000,
14837 N_P16 = 0x0020000,
14838 N_F16 = 0x0040000,
14839 N_F32 = 0x0080000,
14840 N_F64 = 0x0100000,
14841 N_P64 = 0x0200000,
14842 N_KEY = 0x1000000, /* Key element (main type specifier). */
14843 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
14844 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
14845 N_UNT = 0x8000000, /* Must be explicitly untyped. */
14846 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
14847 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
14848 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
14849 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
14850 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
14851 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
14852 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
14853 N_UTYP = 0,
14854 N_MAX_NONSPECIAL = N_P64
14855 };
14856
14857 #define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
14858
14859 #define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
14860 #define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
14861 #define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
14862 #define N_S_32 (N_S8 | N_S16 | N_S32)
14863 #define N_F_16_32 (N_F16 | N_F32)
14864 #define N_SUF_32 (N_SU_32 | N_F_16_32)
14865 #define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
14866 #define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F16 | N_F32)
14867 #define N_F_ALL (N_F16 | N_F32 | N_F64)
14868 #define N_I_MVE (N_I8 | N_I16 | N_I32)
14869 #define N_F_MVE (N_F16 | N_F32)
14870 #define N_SU_MVE (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
14871
14872 /* Pass this as the first type argument to neon_check_type to ignore types
14873 altogether. */
14874 #define N_IGNORE_TYPE (N_KEY | N_EQK)
14875
14876 /* Select a "shape" for the current instruction (describing register types or
14877 sizes) from a list of alternatives. Return NS_NULL if the current instruction
14878 doesn't fit. For non-polymorphic shapes, checking is usually done as a
14879 function of operand parsing, so this function doesn't need to be called.
14880 Shapes should be listed in order of decreasing length. */
14881
14882 static enum neon_shape
14883 neon_select_shape (enum neon_shape shape, ...)
14884 {
14885 va_list ap;
14886 enum neon_shape first_shape = shape;
14887
14888 /* Fix missing optional operands. FIXME: we don't know at this point how
14889 many arguments we should have, so this makes the assumption that we have
14890 > 1. This is true of all current Neon opcodes, I think, but may not be
14891 true in the future. */
14892 if (!inst.operands[1].present)
14893 inst.operands[1] = inst.operands[0];
14894
14895 va_start (ap, shape);
14896
14897 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
14898 {
14899 unsigned j;
14900 int matches = 1;
14901
14902 for (j = 0; j < neon_shape_tab[shape].els; j++)
14903 {
14904 if (!inst.operands[j].present)
14905 {
14906 matches = 0;
14907 break;
14908 }
14909
14910 switch (neon_shape_tab[shape].el[j])
14911 {
14912 /* If a .f16, .16, .u16, .s16 type specifier is given over
14913 a VFP single precision register operand, it's essentially
14914 means only half of the register is used.
14915
14916 If the type specifier is given after the mnemonics, the
14917 information is stored in inst.vectype. If the type specifier
14918 is given after register operand, the information is stored
14919 in inst.operands[].vectype.
14920
14921 When there is only one type specifier, and all the register
14922 operands are the same type of hardware register, the type
14923 specifier applies to all register operands.
14924
14925 If no type specifier is given, the shape is inferred from
14926 operand information.
14927
14928 for example:
14929 vadd.f16 s0, s1, s2: NS_HHH
14930 vabs.f16 s0, s1: NS_HH
14931 vmov.f16 s0, r1: NS_HR
14932 vmov.f16 r0, s1: NS_RH
14933 vcvt.f16 r0, s1: NS_RH
14934 vcvt.f16.s32 s2, s2, #29: NS_HFI
14935 vcvt.f16.s32 s2, s2: NS_HF
14936 */
14937 case SE_H:
14938 if (!(inst.operands[j].isreg
14939 && inst.operands[j].isvec
14940 && inst.operands[j].issingle
14941 && !inst.operands[j].isquad
14942 && ((inst.vectype.elems == 1
14943 && inst.vectype.el[0].size == 16)
14944 || (inst.vectype.elems > 1
14945 && inst.vectype.el[j].size == 16)
14946 || (inst.vectype.elems == 0
14947 && inst.operands[j].vectype.type != NT_invtype
14948 && inst.operands[j].vectype.size == 16))))
14949 matches = 0;
14950 break;
14951
14952 case SE_F:
14953 if (!(inst.operands[j].isreg
14954 && inst.operands[j].isvec
14955 && inst.operands[j].issingle
14956 && !inst.operands[j].isquad
14957 && ((inst.vectype.elems == 1 && inst.vectype.el[0].size == 32)
14958 || (inst.vectype.elems > 1 && inst.vectype.el[j].size == 32)
14959 || (inst.vectype.elems == 0
14960 && (inst.operands[j].vectype.size == 32
14961 || inst.operands[j].vectype.type == NT_invtype)))))
14962 matches = 0;
14963 break;
14964
14965 case SE_D:
14966 if (!(inst.operands[j].isreg
14967 && inst.operands[j].isvec
14968 && !inst.operands[j].isquad
14969 && !inst.operands[j].issingle))
14970 matches = 0;
14971 break;
14972
14973 case SE_R:
14974 if (!(inst.operands[j].isreg
14975 && !inst.operands[j].isvec))
14976 matches = 0;
14977 break;
14978
14979 case SE_Q:
14980 if (!(inst.operands[j].isreg
14981 && inst.operands[j].isvec
14982 && inst.operands[j].isquad
14983 && !inst.operands[j].issingle))
14984 matches = 0;
14985 break;
14986
14987 case SE_I:
14988 if (!(!inst.operands[j].isreg
14989 && !inst.operands[j].isscalar))
14990 matches = 0;
14991 break;
14992
14993 case SE_S:
14994 if (!(!inst.operands[j].isreg
14995 && inst.operands[j].isscalar))
14996 matches = 0;
14997 break;
14998
14999 case SE_L:
15000 break;
15001 }
15002 if (!matches)
15003 break;
15004 }
15005 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
15006 /* We've matched all the entries in the shape table, and we don't
15007 have any left over operands which have not been matched. */
15008 break;
15009 }
15010
15011 va_end (ap);
15012
15013 if (shape == NS_NULL && first_shape != NS_NULL)
15014 first_error (_("invalid instruction shape"));
15015
15016 return shape;
15017 }
15018
15019 /* True if SHAPE is predominantly a quadword operation (most of the time, this
15020 means the Q bit should be set). */
15021
15022 static int
15023 neon_quad (enum neon_shape shape)
15024 {
15025 return neon_shape_class[shape] == SC_QUAD;
15026 }
15027
15028 static void
15029 neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
15030 unsigned *g_size)
15031 {
15032 /* Allow modification to be made to types which are constrained to be
15033 based on the key element, based on bits set alongside N_EQK. */
15034 if ((typebits & N_EQK) != 0)
15035 {
15036 if ((typebits & N_HLF) != 0)
15037 *g_size /= 2;
15038 else if ((typebits & N_DBL) != 0)
15039 *g_size *= 2;
15040 if ((typebits & N_SGN) != 0)
15041 *g_type = NT_signed;
15042 else if ((typebits & N_UNS) != 0)
15043 *g_type = NT_unsigned;
15044 else if ((typebits & N_INT) != 0)
15045 *g_type = NT_integer;
15046 else if ((typebits & N_FLT) != 0)
15047 *g_type = NT_float;
15048 else if ((typebits & N_SIZ) != 0)
15049 *g_type = NT_untyped;
15050 }
15051 }
15052
15053 /* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
15054 operand type, i.e. the single type specified in a Neon instruction when it
15055 is the only one given. */
15056
15057 static struct neon_type_el
15058 neon_type_promote (struct neon_type_el *key, unsigned thisarg)
15059 {
15060 struct neon_type_el dest = *key;
15061
15062 gas_assert ((thisarg & N_EQK) != 0);
15063
15064 neon_modify_type_size (thisarg, &dest.type, &dest.size);
15065
15066 return dest;
15067 }
15068
15069 /* Convert Neon type and size into compact bitmask representation. */
15070
15071 static enum neon_type_mask
15072 type_chk_of_el_type (enum neon_el_type type, unsigned size)
15073 {
15074 switch (type)
15075 {
15076 case NT_untyped:
15077 switch (size)
15078 {
15079 case 8: return N_8;
15080 case 16: return N_16;
15081 case 32: return N_32;
15082 case 64: return N_64;
15083 default: ;
15084 }
15085 break;
15086
15087 case NT_integer:
15088 switch (size)
15089 {
15090 case 8: return N_I8;
15091 case 16: return N_I16;
15092 case 32: return N_I32;
15093 case 64: return N_I64;
15094 default: ;
15095 }
15096 break;
15097
15098 case NT_float:
15099 switch (size)
15100 {
15101 case 16: return N_F16;
15102 case 32: return N_F32;
15103 case 64: return N_F64;
15104 default: ;
15105 }
15106 break;
15107
15108 case NT_poly:
15109 switch (size)
15110 {
15111 case 8: return N_P8;
15112 case 16: return N_P16;
15113 case 64: return N_P64;
15114 default: ;
15115 }
15116 break;
15117
15118 case NT_signed:
15119 switch (size)
15120 {
15121 case 8: return N_S8;
15122 case 16: return N_S16;
15123 case 32: return N_S32;
15124 case 64: return N_S64;
15125 default: ;
15126 }
15127 break;
15128
15129 case NT_unsigned:
15130 switch (size)
15131 {
15132 case 8: return N_U8;
15133 case 16: return N_U16;
15134 case 32: return N_U32;
15135 case 64: return N_U64;
15136 default: ;
15137 }
15138 break;
15139
15140 default: ;
15141 }
15142
15143 return N_UTYP;
15144 }
15145
15146 /* Convert compact Neon bitmask type representation to a type and size. Only
15147 handles the case where a single bit is set in the mask. */
15148
15149 static int
15150 el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
15151 enum neon_type_mask mask)
15152 {
15153 if ((mask & N_EQK) != 0)
15154 return FAIL;
15155
15156 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
15157 *size = 8;
15158 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
15159 *size = 16;
15160 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
15161 *size = 32;
15162 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
15163 *size = 64;
15164 else
15165 return FAIL;
15166
15167 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
15168 *type = NT_signed;
15169 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
15170 *type = NT_unsigned;
15171 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
15172 *type = NT_integer;
15173 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
15174 *type = NT_untyped;
15175 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
15176 *type = NT_poly;
15177 else if ((mask & (N_F_ALL)) != 0)
15178 *type = NT_float;
15179 else
15180 return FAIL;
15181
15182 return SUCCESS;
15183 }
15184
15185 /* Modify a bitmask of allowed types. This is only needed for type
15186 relaxation. */
15187
15188 static unsigned
15189 modify_types_allowed (unsigned allowed, unsigned mods)
15190 {
15191 unsigned size;
15192 enum neon_el_type type;
15193 unsigned destmask;
15194 int i;
15195
15196 destmask = 0;
15197
15198 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
15199 {
15200 if (el_type_of_type_chk (&type, &size,
15201 (enum neon_type_mask) (allowed & i)) == SUCCESS)
15202 {
15203 neon_modify_type_size (mods, &type, &size);
15204 destmask |= type_chk_of_el_type (type, size);
15205 }
15206 }
15207
15208 return destmask;
15209 }
15210
15211 /* Check type and return type classification.
15212 The manual states (paraphrase): If one datatype is given, it indicates the
15213 type given in:
15214 - the second operand, if there is one
15215 - the operand, if there is no second operand
15216 - the result, if there are no operands.
15217 This isn't quite good enough though, so we use a concept of a "key" datatype
15218 which is set on a per-instruction basis, which is the one which matters when
15219 only one data type is written.
15220 Note: this function has side-effects (e.g. filling in missing operands). All
15221 Neon instructions should call it before performing bit encoding. */
15222
15223 static struct neon_type_el
15224 neon_check_type (unsigned els, enum neon_shape ns, ...)
15225 {
15226 va_list ap;
15227 unsigned i, pass, key_el = 0;
15228 unsigned types[NEON_MAX_TYPE_ELS];
15229 enum neon_el_type k_type = NT_invtype;
15230 unsigned k_size = -1u;
15231 struct neon_type_el badtype = {NT_invtype, -1};
15232 unsigned key_allowed = 0;
15233
15234 /* Optional registers in Neon instructions are always (not) in operand 1.
15235 Fill in the missing operand here, if it was omitted. */
15236 if (els > 1 && !inst.operands[1].present)
15237 inst.operands[1] = inst.operands[0];
15238
15239 /* Suck up all the varargs. */
15240 va_start (ap, ns);
15241 for (i = 0; i < els; i++)
15242 {
15243 unsigned thisarg = va_arg (ap, unsigned);
15244 if (thisarg == N_IGNORE_TYPE)
15245 {
15246 va_end (ap);
15247 return badtype;
15248 }
15249 types[i] = thisarg;
15250 if ((thisarg & N_KEY) != 0)
15251 key_el = i;
15252 }
15253 va_end (ap);
15254
15255 if (inst.vectype.elems > 0)
15256 for (i = 0; i < els; i++)
15257 if (inst.operands[i].vectype.type != NT_invtype)
15258 {
15259 first_error (_("types specified in both the mnemonic and operands"));
15260 return badtype;
15261 }
15262
15263 /* Duplicate inst.vectype elements here as necessary.
15264 FIXME: No idea if this is exactly the same as the ARM assembler,
15265 particularly when an insn takes one register and one non-register
15266 operand. */
15267 if (inst.vectype.elems == 1 && els > 1)
15268 {
15269 unsigned j;
15270 inst.vectype.elems = els;
15271 inst.vectype.el[key_el] = inst.vectype.el[0];
15272 for (j = 0; j < els; j++)
15273 if (j != key_el)
15274 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
15275 types[j]);
15276 }
15277 else if (inst.vectype.elems == 0 && els > 0)
15278 {
15279 unsigned j;
15280 /* No types were given after the mnemonic, so look for types specified
15281 after each operand. We allow some flexibility here; as long as the
15282 "key" operand has a type, we can infer the others. */
15283 for (j = 0; j < els; j++)
15284 if (inst.operands[j].vectype.type != NT_invtype)
15285 inst.vectype.el[j] = inst.operands[j].vectype;
15286
15287 if (inst.operands[key_el].vectype.type != NT_invtype)
15288 {
15289 for (j = 0; j < els; j++)
15290 if (inst.operands[j].vectype.type == NT_invtype)
15291 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
15292 types[j]);
15293 }
15294 else
15295 {
15296 first_error (_("operand types can't be inferred"));
15297 return badtype;
15298 }
15299 }
15300 else if (inst.vectype.elems != els)
15301 {
15302 first_error (_("type specifier has the wrong number of parts"));
15303 return badtype;
15304 }
15305
15306 for (pass = 0; pass < 2; pass++)
15307 {
15308 for (i = 0; i < els; i++)
15309 {
15310 unsigned thisarg = types[i];
15311 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
15312 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
15313 enum neon_el_type g_type = inst.vectype.el[i].type;
15314 unsigned g_size = inst.vectype.el[i].size;
15315
15316 /* Decay more-specific signed & unsigned types to sign-insensitive
15317 integer types if sign-specific variants are unavailable. */
15318 if ((g_type == NT_signed || g_type == NT_unsigned)
15319 && (types_allowed & N_SU_ALL) == 0)
15320 g_type = NT_integer;
15321
15322 /* If only untyped args are allowed, decay any more specific types to
15323 them. Some instructions only care about signs for some element
15324 sizes, so handle that properly. */
15325 if (((types_allowed & N_UNT) == 0)
15326 && ((g_size == 8 && (types_allowed & N_8) != 0)
15327 || (g_size == 16 && (types_allowed & N_16) != 0)
15328 || (g_size == 32 && (types_allowed & N_32) != 0)
15329 || (g_size == 64 && (types_allowed & N_64) != 0)))
15330 g_type = NT_untyped;
15331
15332 if (pass == 0)
15333 {
15334 if ((thisarg & N_KEY) != 0)
15335 {
15336 k_type = g_type;
15337 k_size = g_size;
15338 key_allowed = thisarg & ~N_KEY;
15339
15340 /* Check architecture constraint on FP16 extension. */
15341 if (k_size == 16
15342 && k_type == NT_float
15343 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
15344 {
15345 inst.error = _(BAD_FP16);
15346 return badtype;
15347 }
15348 }
15349 }
15350 else
15351 {
15352 if ((thisarg & N_VFP) != 0)
15353 {
15354 enum neon_shape_el regshape;
15355 unsigned regwidth, match;
15356
15357 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
15358 if (ns == NS_NULL)
15359 {
15360 first_error (_("invalid instruction shape"));
15361 return badtype;
15362 }
15363 regshape = neon_shape_tab[ns].el[i];
15364 regwidth = neon_shape_el_size[regshape];
15365
15366 /* In VFP mode, operands must match register widths. If we
15367 have a key operand, use its width, else use the width of
15368 the current operand. */
15369 if (k_size != -1u)
15370 match = k_size;
15371 else
15372 match = g_size;
15373
15374 /* FP16 will use a single precision register. */
15375 if (regwidth == 32 && match == 16)
15376 {
15377 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
15378 match = regwidth;
15379 else
15380 {
15381 inst.error = _(BAD_FP16);
15382 return badtype;
15383 }
15384 }
15385
15386 if (regwidth != match)
15387 {
15388 first_error (_("operand size must match register width"));
15389 return badtype;
15390 }
15391 }
15392
15393 if ((thisarg & N_EQK) == 0)
15394 {
15395 unsigned given_type = type_chk_of_el_type (g_type, g_size);
15396
15397 if ((given_type & types_allowed) == 0)
15398 {
15399 first_error (BAD_SIMD_TYPE);
15400 return badtype;
15401 }
15402 }
15403 else
15404 {
15405 enum neon_el_type mod_k_type = k_type;
15406 unsigned mod_k_size = k_size;
15407 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
15408 if (g_type != mod_k_type || g_size != mod_k_size)
15409 {
15410 first_error (_("inconsistent types in Neon instruction"));
15411 return badtype;
15412 }
15413 }
15414 }
15415 }
15416 }
15417
15418 return inst.vectype.el[key_el];
15419 }
15420
15421 /* Neon-style VFP instruction forwarding. */
15422
15423 /* Thumb VFP instructions have 0xE in the condition field. */
15424
15425 static void
15426 do_vfp_cond_or_thumb (void)
15427 {
15428 inst.is_neon = 1;
15429
15430 if (thumb_mode)
15431 inst.instruction |= 0xe0000000;
15432 else
15433 inst.instruction |= inst.cond << 28;
15434 }
15435
15436 /* Look up and encode a simple mnemonic, for use as a helper function for the
15437 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
15438 etc. It is assumed that operand parsing has already been done, and that the
15439 operands are in the form expected by the given opcode (this isn't necessarily
15440 the same as the form in which they were parsed, hence some massaging must
15441 take place before this function is called).
15442 Checks current arch version against that in the looked-up opcode. */
15443
15444 static void
15445 do_vfp_nsyn_opcode (const char *opname)
15446 {
15447 const struct asm_opcode *opcode;
15448
15449 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
15450
15451 if (!opcode)
15452 abort ();
15453
15454 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
15455 thumb_mode ? *opcode->tvariant : *opcode->avariant),
15456 _(BAD_FPU));
15457
15458 inst.is_neon = 1;
15459
15460 if (thumb_mode)
15461 {
15462 inst.instruction = opcode->tvalue;
15463 opcode->tencode ();
15464 }
15465 else
15466 {
15467 inst.instruction = (inst.cond << 28) | opcode->avalue;
15468 opcode->aencode ();
15469 }
15470 }
15471
15472 static void
15473 do_vfp_nsyn_add_sub (enum neon_shape rs)
15474 {
15475 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
15476
15477 if (rs == NS_FFF || rs == NS_HHH)
15478 {
15479 if (is_add)
15480 do_vfp_nsyn_opcode ("fadds");
15481 else
15482 do_vfp_nsyn_opcode ("fsubs");
15483
15484 /* ARMv8.2 fp16 instruction. */
15485 if (rs == NS_HHH)
15486 do_scalar_fp16_v82_encode ();
15487 }
15488 else
15489 {
15490 if (is_add)
15491 do_vfp_nsyn_opcode ("faddd");
15492 else
15493 do_vfp_nsyn_opcode ("fsubd");
15494 }
15495 }
15496
15497 /* Check operand types to see if this is a VFP instruction, and if so call
15498 PFN (). */
15499
15500 static int
15501 try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
15502 {
15503 enum neon_shape rs;
15504 struct neon_type_el et;
15505
15506 switch (args)
15507 {
15508 case 2:
15509 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
15510 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
15511 break;
15512
15513 case 3:
15514 rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15515 et = neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15516 N_F_ALL | N_KEY | N_VFP);
15517 break;
15518
15519 default:
15520 abort ();
15521 }
15522
15523 if (et.type != NT_invtype)
15524 {
15525 pfn (rs);
15526 return SUCCESS;
15527 }
15528
15529 inst.error = NULL;
15530 return FAIL;
15531 }
15532
15533 static void
15534 do_vfp_nsyn_mla_mls (enum neon_shape rs)
15535 {
15536 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
15537
15538 if (rs == NS_FFF || rs == NS_HHH)
15539 {
15540 if (is_mla)
15541 do_vfp_nsyn_opcode ("fmacs");
15542 else
15543 do_vfp_nsyn_opcode ("fnmacs");
15544
15545 /* ARMv8.2 fp16 instruction. */
15546 if (rs == NS_HHH)
15547 do_scalar_fp16_v82_encode ();
15548 }
15549 else
15550 {
15551 if (is_mla)
15552 do_vfp_nsyn_opcode ("fmacd");
15553 else
15554 do_vfp_nsyn_opcode ("fnmacd");
15555 }
15556 }
15557
15558 static void
15559 do_vfp_nsyn_fma_fms (enum neon_shape rs)
15560 {
15561 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
15562
15563 if (rs == NS_FFF || rs == NS_HHH)
15564 {
15565 if (is_fma)
15566 do_vfp_nsyn_opcode ("ffmas");
15567 else
15568 do_vfp_nsyn_opcode ("ffnmas");
15569
15570 /* ARMv8.2 fp16 instruction. */
15571 if (rs == NS_HHH)
15572 do_scalar_fp16_v82_encode ();
15573 }
15574 else
15575 {
15576 if (is_fma)
15577 do_vfp_nsyn_opcode ("ffmad");
15578 else
15579 do_vfp_nsyn_opcode ("ffnmad");
15580 }
15581 }
15582
15583 static void
15584 do_vfp_nsyn_mul (enum neon_shape rs)
15585 {
15586 if (rs == NS_FFF || rs == NS_HHH)
15587 {
15588 do_vfp_nsyn_opcode ("fmuls");
15589
15590 /* ARMv8.2 fp16 instruction. */
15591 if (rs == NS_HHH)
15592 do_scalar_fp16_v82_encode ();
15593 }
15594 else
15595 do_vfp_nsyn_opcode ("fmuld");
15596 }
15597
15598 static void
15599 do_vfp_nsyn_abs_neg (enum neon_shape rs)
15600 {
15601 int is_neg = (inst.instruction & 0x80) != 0;
15602 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_VFP | N_KEY);
15603
15604 if (rs == NS_FF || rs == NS_HH)
15605 {
15606 if (is_neg)
15607 do_vfp_nsyn_opcode ("fnegs");
15608 else
15609 do_vfp_nsyn_opcode ("fabss");
15610
15611 /* ARMv8.2 fp16 instruction. */
15612 if (rs == NS_HH)
15613 do_scalar_fp16_v82_encode ();
15614 }
15615 else
15616 {
15617 if (is_neg)
15618 do_vfp_nsyn_opcode ("fnegd");
15619 else
15620 do_vfp_nsyn_opcode ("fabsd");
15621 }
15622 }
15623
15624 /* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
15625 insns belong to Neon, and are handled elsewhere. */
15626
15627 static void
15628 do_vfp_nsyn_ldm_stm (int is_dbmode)
15629 {
15630 int is_ldm = (inst.instruction & (1 << 20)) != 0;
15631 if (is_ldm)
15632 {
15633 if (is_dbmode)
15634 do_vfp_nsyn_opcode ("fldmdbs");
15635 else
15636 do_vfp_nsyn_opcode ("fldmias");
15637 }
15638 else
15639 {
15640 if (is_dbmode)
15641 do_vfp_nsyn_opcode ("fstmdbs");
15642 else
15643 do_vfp_nsyn_opcode ("fstmias");
15644 }
15645 }
15646
15647 static void
15648 do_vfp_nsyn_sqrt (void)
15649 {
15650 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
15651 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
15652
15653 if (rs == NS_FF || rs == NS_HH)
15654 {
15655 do_vfp_nsyn_opcode ("fsqrts");
15656
15657 /* ARMv8.2 fp16 instruction. */
15658 if (rs == NS_HH)
15659 do_scalar_fp16_v82_encode ();
15660 }
15661 else
15662 do_vfp_nsyn_opcode ("fsqrtd");
15663 }
15664
15665 static void
15666 do_vfp_nsyn_div (void)
15667 {
15668 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15669 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15670 N_F_ALL | N_KEY | N_VFP);
15671
15672 if (rs == NS_FFF || rs == NS_HHH)
15673 {
15674 do_vfp_nsyn_opcode ("fdivs");
15675
15676 /* ARMv8.2 fp16 instruction. */
15677 if (rs == NS_HHH)
15678 do_scalar_fp16_v82_encode ();
15679 }
15680 else
15681 do_vfp_nsyn_opcode ("fdivd");
15682 }
15683
15684 static void
15685 do_vfp_nsyn_nmul (void)
15686 {
15687 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15688 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15689 N_F_ALL | N_KEY | N_VFP);
15690
15691 if (rs == NS_FFF || rs == NS_HHH)
15692 {
15693 NEON_ENCODE (SINGLE, inst);
15694 do_vfp_sp_dyadic ();
15695
15696 /* ARMv8.2 fp16 instruction. */
15697 if (rs == NS_HHH)
15698 do_scalar_fp16_v82_encode ();
15699 }
15700 else
15701 {
15702 NEON_ENCODE (DOUBLE, inst);
15703 do_vfp_dp_rd_rn_rm ();
15704 }
15705 do_vfp_cond_or_thumb ();
15706
15707 }
15708
15709 /* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
15710 (0, 1, 2, 3). */
15711
15712 static unsigned
15713 neon_logbits (unsigned x)
15714 {
15715 return ffs (x) - 4;
15716 }
15717
15718 #define LOW4(R) ((R) & 0xf)
15719 #define HI1(R) (((R) >> 4) & 1)
15720
15721 static unsigned
15722 mve_get_vcmp_vpt_cond (struct neon_type_el et)
15723 {
15724 switch (et.type)
15725 {
15726 default:
15727 first_error (BAD_EL_TYPE);
15728 return 0;
15729 case NT_float:
15730 switch (inst.operands[0].imm)
15731 {
15732 default:
15733 first_error (_("invalid condition"));
15734 return 0;
15735 case 0x0:
15736 /* eq. */
15737 return 0;
15738 case 0x1:
15739 /* ne. */
15740 return 1;
15741 case 0xa:
15742 /* ge/ */
15743 return 4;
15744 case 0xb:
15745 /* lt. */
15746 return 5;
15747 case 0xc:
15748 /* gt. */
15749 return 6;
15750 case 0xd:
15751 /* le. */
15752 return 7;
15753 }
15754 case NT_integer:
15755 /* only accept eq and ne. */
15756 if (inst.operands[0].imm > 1)
15757 {
15758 first_error (_("invalid condition"));
15759 return 0;
15760 }
15761 return inst.operands[0].imm;
15762 case NT_unsigned:
15763 if (inst.operands[0].imm == 0x2)
15764 return 2;
15765 else if (inst.operands[0].imm == 0x8)
15766 return 3;
15767 else
15768 {
15769 first_error (_("invalid condition"));
15770 return 0;
15771 }
15772 case NT_signed:
15773 switch (inst.operands[0].imm)
15774 {
15775 default:
15776 first_error (_("invalid condition"));
15777 return 0;
15778 case 0xa:
15779 /* ge. */
15780 return 4;
15781 case 0xb:
15782 /* lt. */
15783 return 5;
15784 case 0xc:
15785 /* gt. */
15786 return 6;
15787 case 0xd:
15788 /* le. */
15789 return 7;
15790 }
15791 }
15792 /* Should be unreachable. */
15793 abort ();
15794 }
15795
15796 static void
15797 do_mve_vpt (void)
15798 {
15799 /* We are dealing with a vector predicated block. */
15800 if (inst.operands[0].present)
15801 {
15802 enum neon_shape rs = neon_select_shape (NS_IQQ, NS_IQR, NS_NULL);
15803 struct neon_type_el et
15804 = neon_check_type (3, rs, N_EQK, N_KEY | N_F_MVE | N_I_MVE | N_SU_32,
15805 N_EQK);
15806
15807 unsigned fcond = mve_get_vcmp_vpt_cond (et);
15808
15809 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
15810
15811 if (et.type == NT_invtype)
15812 return;
15813
15814 if (et.type == NT_float)
15815 {
15816 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
15817 BAD_FPU);
15818 constraint (et.size != 16 && et.size != 32, BAD_EL_TYPE);
15819 inst.instruction |= (et.size == 16) << 28;
15820 inst.instruction |= 0x3 << 20;
15821 }
15822 else
15823 {
15824 constraint (et.size != 8 && et.size != 16 && et.size != 32,
15825 BAD_EL_TYPE);
15826 inst.instruction |= 1 << 28;
15827 inst.instruction |= neon_logbits (et.size) << 20;
15828 }
15829
15830 if (inst.operands[2].isquad)
15831 {
15832 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15833 inst.instruction |= LOW4 (inst.operands[2].reg);
15834 inst.instruction |= (fcond & 0x2) >> 1;
15835 }
15836 else
15837 {
15838 if (inst.operands[2].reg == REG_SP)
15839 as_tsktsk (MVE_BAD_SP);
15840 inst.instruction |= 1 << 6;
15841 inst.instruction |= (fcond & 0x2) << 4;
15842 inst.instruction |= inst.operands[2].reg;
15843 }
15844 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15845 inst.instruction |= (fcond & 0x4) << 10;
15846 inst.instruction |= (fcond & 0x1) << 7;
15847
15848 }
15849 set_pred_insn_type (VPT_INSN);
15850 now_pred.cc = 0;
15851 now_pred.mask = ((inst.instruction & 0x00400000) >> 19)
15852 | ((inst.instruction & 0xe000) >> 13);
15853 now_pred.warn_deprecated = FALSE;
15854 now_pred.type = VECTOR_PRED;
15855 inst.is_neon = 1;
15856 }
15857
15858 static void
15859 do_mve_vcmp (void)
15860 {
15861 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
15862 if (!inst.operands[1].isreg || !inst.operands[1].isquad)
15863 first_error (_(reg_expected_msgs[REG_TYPE_MQ]));
15864 if (!inst.operands[2].present)
15865 first_error (_("MVE vector or ARM register expected"));
15866 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
15867
15868 /* Deal with 'else' conditional MVE's vcmp, it will be parsed as vcmpe. */
15869 if ((inst.instruction & 0xffffffff) == N_MNEM_vcmpe
15870 && inst.operands[1].isquad)
15871 {
15872 inst.instruction = N_MNEM_vcmp;
15873 inst.cond = 0x10;
15874 }
15875
15876 if (inst.cond > COND_ALWAYS)
15877 inst.pred_insn_type = INSIDE_VPT_INSN;
15878 else
15879 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
15880
15881 enum neon_shape rs = neon_select_shape (NS_IQQ, NS_IQR, NS_NULL);
15882 struct neon_type_el et
15883 = neon_check_type (3, rs, N_EQK, N_KEY | N_F_MVE | N_I_MVE | N_SU_32,
15884 N_EQK);
15885
15886 constraint (rs == NS_IQR && inst.operands[2].reg == REG_PC
15887 && !inst.operands[2].iszr, BAD_PC);
15888
15889 unsigned fcond = mve_get_vcmp_vpt_cond (et);
15890
15891 inst.instruction = 0xee010f00;
15892 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15893 inst.instruction |= (fcond & 0x4) << 10;
15894 inst.instruction |= (fcond & 0x1) << 7;
15895 if (et.type == NT_float)
15896 {
15897 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
15898 BAD_FPU);
15899 inst.instruction |= (et.size == 16) << 28;
15900 inst.instruction |= 0x3 << 20;
15901 }
15902 else
15903 {
15904 inst.instruction |= 1 << 28;
15905 inst.instruction |= neon_logbits (et.size) << 20;
15906 }
15907 if (inst.operands[2].isquad)
15908 {
15909 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
15910 inst.instruction |= (fcond & 0x2) >> 1;
15911 inst.instruction |= LOW4 (inst.operands[2].reg);
15912 }
15913 else
15914 {
15915 if (inst.operands[2].reg == REG_SP)
15916 as_tsktsk (MVE_BAD_SP);
15917 inst.instruction |= 1 << 6;
15918 inst.instruction |= (fcond & 0x2) << 4;
15919 inst.instruction |= inst.operands[2].reg;
15920 }
15921
15922 inst.is_neon = 1;
15923 return;
15924 }
15925
15926 static void
15927 do_mve_vmaxa_vmina (void)
15928 {
15929 if (inst.cond > COND_ALWAYS)
15930 inst.pred_insn_type = INSIDE_VPT_INSN;
15931 else
15932 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
15933
15934 enum neon_shape rs = neon_select_shape (NS_QQ, NS_NULL);
15935 struct neon_type_el et
15936 = neon_check_type (2, rs, N_EQK, N_KEY | N_S8 | N_S16 | N_S32);
15937
15938 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15939 inst.instruction |= neon_logbits (et.size) << 18;
15940 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15941 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15942 inst.instruction |= LOW4 (inst.operands[1].reg);
15943 inst.is_neon = 1;
15944 }
15945
15946 static void
15947 do_mve_vfmas (void)
15948 {
15949 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
15950 struct neon_type_el et
15951 = neon_check_type (3, rs, N_F_MVE | N_KEY, N_EQK, N_EQK);
15952
15953 if (inst.cond > COND_ALWAYS)
15954 inst.pred_insn_type = INSIDE_VPT_INSN;
15955 else
15956 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
15957
15958 if (inst.operands[2].reg == REG_SP)
15959 as_tsktsk (MVE_BAD_SP);
15960 else if (inst.operands[2].reg == REG_PC)
15961 as_tsktsk (MVE_BAD_PC);
15962
15963 inst.instruction |= (et.size == 16) << 28;
15964 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15965 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15966 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15967 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15968 inst.instruction |= inst.operands[2].reg;
15969 inst.is_neon = 1;
15970 }
15971
15972 static void
15973 do_mve_viddup (void)
15974 {
15975 if (inst.cond > COND_ALWAYS)
15976 inst.pred_insn_type = INSIDE_VPT_INSN;
15977 else
15978 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
15979
15980 unsigned imm = inst.relocs[0].exp.X_add_number;
15981 constraint (imm != 1 && imm != 2 && imm != 4 && imm != 8,
15982 _("immediate must be either 1, 2, 4 or 8"));
15983
15984 enum neon_shape rs;
15985 struct neon_type_el et;
15986 unsigned Rm;
15987 if (inst.instruction == M_MNEM_vddup || inst.instruction == M_MNEM_vidup)
15988 {
15989 rs = neon_select_shape (NS_QRI, NS_NULL);
15990 et = neon_check_type (2, rs, N_KEY | N_U8 | N_U16 | N_U32, N_EQK);
15991 Rm = 7;
15992 }
15993 else
15994 {
15995 constraint ((inst.operands[2].reg % 2) != 1, BAD_EVEN);
15996 if (inst.operands[2].reg == REG_SP)
15997 as_tsktsk (MVE_BAD_SP);
15998 else if (inst.operands[2].reg == REG_PC)
15999 first_error (BAD_PC);
16000
16001 rs = neon_select_shape (NS_QRRI, NS_NULL);
16002 et = neon_check_type (3, rs, N_KEY | N_U8 | N_U16 | N_U32, N_EQK, N_EQK);
16003 Rm = inst.operands[2].reg >> 1;
16004 }
16005 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16006 inst.instruction |= neon_logbits (et.size) << 20;
16007 inst.instruction |= inst.operands[1].reg << 16;
16008 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16009 inst.instruction |= (imm > 2) << 7;
16010 inst.instruction |= Rm << 1;
16011 inst.instruction |= (imm == 2 || imm == 8);
16012 inst.is_neon = 1;
16013 }
16014
16015 static void
16016 do_mve_vmlas (void)
16017 {
16018 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
16019 struct neon_type_el et
16020 = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
16021
16022 if (inst.operands[2].reg == REG_PC)
16023 as_tsktsk (MVE_BAD_PC);
16024 else if (inst.operands[2].reg == REG_SP)
16025 as_tsktsk (MVE_BAD_SP);
16026
16027 if (inst.cond > COND_ALWAYS)
16028 inst.pred_insn_type = INSIDE_VPT_INSN;
16029 else
16030 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16031
16032 inst.instruction |= (et.type == NT_unsigned) << 28;
16033 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16034 inst.instruction |= neon_logbits (et.size) << 20;
16035 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16036 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16037 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16038 inst.instruction |= inst.operands[2].reg;
16039 inst.is_neon = 1;
16040 }
16041
16042 static void
16043 do_mve_vshll (void)
16044 {
16045 struct neon_type_el et
16046 = neon_check_type (2, NS_QQI, N_EQK, N_S8 | N_U8 | N_S16 | N_U16 | N_KEY);
16047
16048 if (inst.cond > COND_ALWAYS)
16049 inst.pred_insn_type = INSIDE_VPT_INSN;
16050 else
16051 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16052
16053 int imm = inst.operands[2].imm;
16054 constraint (imm < 1 || (unsigned)imm > et.size,
16055 _("immediate value out of range"));
16056
16057 if ((unsigned)imm == et.size)
16058 {
16059 inst.instruction |= neon_logbits (et.size) << 18;
16060 inst.instruction |= 0x110001;
16061 }
16062 else
16063 {
16064 inst.instruction |= (et.size + imm) << 16;
16065 inst.instruction |= 0x800140;
16066 }
16067
16068 inst.instruction |= (et.type == NT_unsigned) << 28;
16069 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16070 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16071 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16072 inst.instruction |= LOW4 (inst.operands[1].reg);
16073 inst.is_neon = 1;
16074 }
16075
16076 static void
16077 do_mve_vshlc (void)
16078 {
16079 if (inst.cond > COND_ALWAYS)
16080 inst.pred_insn_type = INSIDE_VPT_INSN;
16081 else
16082 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16083
16084 if (inst.operands[1].reg == REG_PC)
16085 as_tsktsk (MVE_BAD_PC);
16086 else if (inst.operands[1].reg == REG_SP)
16087 as_tsktsk (MVE_BAD_SP);
16088
16089 int imm = inst.operands[2].imm;
16090 constraint (imm < 1 || imm > 32, _("immediate value out of range"));
16091
16092 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16093 inst.instruction |= (imm & 0x1f) << 16;
16094 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16095 inst.instruction |= inst.operands[1].reg;
16096 inst.is_neon = 1;
16097 }
16098
16099 static void
16100 do_mve_vshrn (void)
16101 {
16102 unsigned types;
16103 switch (inst.instruction)
16104 {
16105 case M_MNEM_vshrnt:
16106 case M_MNEM_vshrnb:
16107 case M_MNEM_vrshrnt:
16108 case M_MNEM_vrshrnb:
16109 types = N_I16 | N_I32;
16110 break;
16111 case M_MNEM_vqshrnt:
16112 case M_MNEM_vqshrnb:
16113 case M_MNEM_vqrshrnt:
16114 case M_MNEM_vqrshrnb:
16115 types = N_U16 | N_U32 | N_S16 | N_S32;
16116 break;
16117 case M_MNEM_vqshrunt:
16118 case M_MNEM_vqshrunb:
16119 case M_MNEM_vqrshrunt:
16120 case M_MNEM_vqrshrunb:
16121 types = N_S16 | N_S32;
16122 break;
16123 default:
16124 abort ();
16125 }
16126
16127 struct neon_type_el et = neon_check_type (2, NS_QQI, N_EQK, types | N_KEY);
16128
16129 if (inst.cond > COND_ALWAYS)
16130 inst.pred_insn_type = INSIDE_VPT_INSN;
16131 else
16132 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16133
16134 unsigned Qd = inst.operands[0].reg;
16135 unsigned Qm = inst.operands[1].reg;
16136 unsigned imm = inst.operands[2].imm;
16137 constraint (imm < 1 || ((unsigned) imm) > (et.size / 2),
16138 et.size == 16
16139 ? _("immediate operand expected in the range [1,8]")
16140 : _("immediate operand expected in the range [1,16]"));
16141
16142 inst.instruction |= (et.type == NT_unsigned) << 28;
16143 inst.instruction |= HI1 (Qd) << 22;
16144 inst.instruction |= (et.size - imm) << 16;
16145 inst.instruction |= LOW4 (Qd) << 12;
16146 inst.instruction |= HI1 (Qm) << 5;
16147 inst.instruction |= LOW4 (Qm);
16148 inst.is_neon = 1;
16149 }
16150
16151 static void
16152 do_mve_vqmovn (void)
16153 {
16154 struct neon_type_el et;
16155 if (inst.instruction == M_MNEM_vqmovnt
16156 || inst.instruction == M_MNEM_vqmovnb)
16157 et = neon_check_type (2, NS_QQ, N_EQK,
16158 N_U16 | N_U32 | N_S16 | N_S32 | N_KEY);
16159 else
16160 et = neon_check_type (2, NS_QQ, N_EQK, N_S16 | N_S32 | N_KEY);
16161
16162 if (inst.cond > COND_ALWAYS)
16163 inst.pred_insn_type = INSIDE_VPT_INSN;
16164 else
16165 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16166
16167 inst.instruction |= (et.type == NT_unsigned) << 28;
16168 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16169 inst.instruction |= (et.size == 32) << 18;
16170 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16171 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16172 inst.instruction |= LOW4 (inst.operands[1].reg);
16173 inst.is_neon = 1;
16174 }
16175
16176 static void
16177 do_mve_vpsel (void)
16178 {
16179 neon_select_shape (NS_QQQ, NS_NULL);
16180
16181 if (inst.cond > COND_ALWAYS)
16182 inst.pred_insn_type = INSIDE_VPT_INSN;
16183 else
16184 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16185
16186 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16187 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16188 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16189 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16190 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16191 inst.instruction |= LOW4 (inst.operands[2].reg);
16192 inst.is_neon = 1;
16193 }
16194
16195 static void
16196 do_mve_vpnot (void)
16197 {
16198 if (inst.cond > COND_ALWAYS)
16199 inst.pred_insn_type = INSIDE_VPT_INSN;
16200 else
16201 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16202 }
16203
16204 static void
16205 do_mve_vmaxnma_vminnma (void)
16206 {
16207 enum neon_shape rs = neon_select_shape (NS_QQ, NS_NULL);
16208 struct neon_type_el et
16209 = neon_check_type (2, rs, N_EQK, N_F_MVE | N_KEY);
16210
16211 if (inst.cond > COND_ALWAYS)
16212 inst.pred_insn_type = INSIDE_VPT_INSN;
16213 else
16214 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16215
16216 inst.instruction |= (et.size == 16) << 28;
16217 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16218 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16219 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16220 inst.instruction |= LOW4 (inst.operands[1].reg);
16221 inst.is_neon = 1;
16222 }
16223
16224 static void
16225 do_mve_vcmul (void)
16226 {
16227 enum neon_shape rs = neon_select_shape (NS_QQQI, NS_NULL);
16228 struct neon_type_el et
16229 = neon_check_type (3, rs, N_EQK, N_EQK, N_F_MVE | N_KEY);
16230
16231 if (inst.cond > COND_ALWAYS)
16232 inst.pred_insn_type = INSIDE_VPT_INSN;
16233 else
16234 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16235
16236 unsigned rot = inst.relocs[0].exp.X_add_number;
16237 constraint (rot != 0 && rot != 90 && rot != 180 && rot != 270,
16238 _("immediate out of range"));
16239
16240 if (et.size == 32 && (inst.operands[0].reg == inst.operands[1].reg
16241 || inst.operands[0].reg == inst.operands[2].reg))
16242 as_tsktsk (BAD_MVE_SRCDEST);
16243
16244 inst.instruction |= (et.size == 32) << 28;
16245 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16246 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16247 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16248 inst.instruction |= (rot > 90) << 12;
16249 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16250 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16251 inst.instruction |= LOW4 (inst.operands[2].reg);
16252 inst.instruction |= (rot == 90 || rot == 270);
16253 inst.is_neon = 1;
16254 }
16255
16256 /* To handle the Low Overhead Loop instructions
16257 in Armv8.1-M Mainline and MVE. */
16258 static void
16259 do_t_loloop (void)
16260 {
16261 unsigned long insn = inst.instruction;
16262
16263 inst.instruction = THUMB_OP32 (inst.instruction);
16264
16265 if (insn == T_MNEM_lctp)
16266 return;
16267
16268 set_pred_insn_type (MVE_OUTSIDE_PRED_INSN);
16269
16270 if (insn == T_MNEM_wlstp || insn == T_MNEM_dlstp)
16271 {
16272 struct neon_type_el et
16273 = neon_check_type (2, NS_RR, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
16274 inst.instruction |= neon_logbits (et.size) << 20;
16275 inst.is_neon = 1;
16276 }
16277
16278 switch (insn)
16279 {
16280 case T_MNEM_letp:
16281 constraint (!inst.operands[0].present,
16282 _("expected LR"));
16283 /* fall through. */
16284 case T_MNEM_le:
16285 /* le <label>. */
16286 if (!inst.operands[0].present)
16287 inst.instruction |= 1 << 21;
16288
16289 v8_1_loop_reloc (TRUE);
16290 break;
16291
16292 case T_MNEM_wls:
16293 case T_MNEM_wlstp:
16294 v8_1_loop_reloc (FALSE);
16295 /* fall through. */
16296 case T_MNEM_dlstp:
16297 case T_MNEM_dls:
16298 constraint (inst.operands[1].isreg != 1, BAD_ARGS);
16299
16300 if (insn == T_MNEM_wlstp || insn == T_MNEM_dlstp)
16301 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16302 else if (inst.operands[1].reg == REG_PC)
16303 as_tsktsk (MVE_BAD_PC);
16304 if (inst.operands[1].reg == REG_SP)
16305 as_tsktsk (MVE_BAD_SP);
16306
16307 inst.instruction |= (inst.operands[1].reg << 16);
16308 break;
16309
16310 default:
16311 abort ();
16312 }
16313 }
16314
16315
16316 static void
16317 do_vfp_nsyn_cmp (void)
16318 {
16319 enum neon_shape rs;
16320 if (!inst.operands[0].isreg)
16321 {
16322 do_mve_vcmp ();
16323 return;
16324 }
16325 else
16326 {
16327 constraint (inst.operands[2].present, BAD_SYNTAX);
16328 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd),
16329 BAD_FPU);
16330 }
16331
16332 if (inst.operands[1].isreg)
16333 {
16334 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
16335 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
16336
16337 if (rs == NS_FF || rs == NS_HH)
16338 {
16339 NEON_ENCODE (SINGLE, inst);
16340 do_vfp_sp_monadic ();
16341 }
16342 else
16343 {
16344 NEON_ENCODE (DOUBLE, inst);
16345 do_vfp_dp_rd_rm ();
16346 }
16347 }
16348 else
16349 {
16350 rs = neon_select_shape (NS_HI, NS_FI, NS_DI, NS_NULL);
16351 neon_check_type (2, rs, N_F_ALL | N_KEY | N_VFP, N_EQK);
16352
16353 switch (inst.instruction & 0x0fffffff)
16354 {
16355 case N_MNEM_vcmp:
16356 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
16357 break;
16358 case N_MNEM_vcmpe:
16359 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
16360 break;
16361 default:
16362 abort ();
16363 }
16364
16365 if (rs == NS_FI || rs == NS_HI)
16366 {
16367 NEON_ENCODE (SINGLE, inst);
16368 do_vfp_sp_compare_z ();
16369 }
16370 else
16371 {
16372 NEON_ENCODE (DOUBLE, inst);
16373 do_vfp_dp_rd ();
16374 }
16375 }
16376 do_vfp_cond_or_thumb ();
16377
16378 /* ARMv8.2 fp16 instruction. */
16379 if (rs == NS_HI || rs == NS_HH)
16380 do_scalar_fp16_v82_encode ();
16381 }
16382
16383 static void
16384 nsyn_insert_sp (void)
16385 {
16386 inst.operands[1] = inst.operands[0];
16387 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
16388 inst.operands[0].reg = REG_SP;
16389 inst.operands[0].isreg = 1;
16390 inst.operands[0].writeback = 1;
16391 inst.operands[0].present = 1;
16392 }
16393
16394 static void
16395 do_vfp_nsyn_push (void)
16396 {
16397 nsyn_insert_sp ();
16398
16399 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
16400 _("register list must contain at least 1 and at most 16 "
16401 "registers"));
16402
16403 if (inst.operands[1].issingle)
16404 do_vfp_nsyn_opcode ("fstmdbs");
16405 else
16406 do_vfp_nsyn_opcode ("fstmdbd");
16407 }
16408
16409 static void
16410 do_vfp_nsyn_pop (void)
16411 {
16412 nsyn_insert_sp ();
16413
16414 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
16415 _("register list must contain at least 1 and at most 16 "
16416 "registers"));
16417
16418 if (inst.operands[1].issingle)
16419 do_vfp_nsyn_opcode ("fldmias");
16420 else
16421 do_vfp_nsyn_opcode ("fldmiad");
16422 }
16423
16424 /* Fix up Neon data-processing instructions, ORing in the correct bits for
16425 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
16426
16427 static void
16428 neon_dp_fixup (struct arm_it* insn)
16429 {
16430 unsigned int i = insn->instruction;
16431 insn->is_neon = 1;
16432
16433 if (thumb_mode)
16434 {
16435 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
16436 if (i & (1 << 24))
16437 i |= 1 << 28;
16438
16439 i &= ~(1 << 24);
16440
16441 i |= 0xef000000;
16442 }
16443 else
16444 i |= 0xf2000000;
16445
16446 insn->instruction = i;
16447 }
16448
16449 static void
16450 mve_encode_qqr (int size, int U, int fp)
16451 {
16452 if (inst.operands[2].reg == REG_SP)
16453 as_tsktsk (MVE_BAD_SP);
16454 else if (inst.operands[2].reg == REG_PC)
16455 as_tsktsk (MVE_BAD_PC);
16456
16457 if (fp)
16458 {
16459 /* vadd. */
16460 if (((unsigned)inst.instruction) == 0xd00)
16461 inst.instruction = 0xee300f40;
16462 /* vsub. */
16463 else if (((unsigned)inst.instruction) == 0x200d00)
16464 inst.instruction = 0xee301f40;
16465 /* vmul. */
16466 else if (((unsigned)inst.instruction) == 0x1000d10)
16467 inst.instruction = 0xee310e60;
16468
16469 /* Setting size which is 1 for F16 and 0 for F32. */
16470 inst.instruction |= (size == 16) << 28;
16471 }
16472 else
16473 {
16474 /* vadd. */
16475 if (((unsigned)inst.instruction) == 0x800)
16476 inst.instruction = 0xee010f40;
16477 /* vsub. */
16478 else if (((unsigned)inst.instruction) == 0x1000800)
16479 inst.instruction = 0xee011f40;
16480 /* vhadd. */
16481 else if (((unsigned)inst.instruction) == 0)
16482 inst.instruction = 0xee000f40;
16483 /* vhsub. */
16484 else if (((unsigned)inst.instruction) == 0x200)
16485 inst.instruction = 0xee001f40;
16486 /* vmla. */
16487 else if (((unsigned)inst.instruction) == 0x900)
16488 inst.instruction = 0xee010e40;
16489 /* vmul. */
16490 else if (((unsigned)inst.instruction) == 0x910)
16491 inst.instruction = 0xee011e60;
16492 /* vqadd. */
16493 else if (((unsigned)inst.instruction) == 0x10)
16494 inst.instruction = 0xee000f60;
16495 /* vqsub. */
16496 else if (((unsigned)inst.instruction) == 0x210)
16497 inst.instruction = 0xee001f60;
16498 /* vqrdmlah. */
16499 else if (((unsigned)inst.instruction) == 0x3000b10)
16500 inst.instruction = 0xee000e40;
16501 /* vqdmulh. */
16502 else if (((unsigned)inst.instruction) == 0x0000b00)
16503 inst.instruction = 0xee010e60;
16504 /* vqrdmulh. */
16505 else if (((unsigned)inst.instruction) == 0x1000b00)
16506 inst.instruction = 0xfe010e60;
16507
16508 /* Set U-bit. */
16509 inst.instruction |= U << 28;
16510
16511 /* Setting bits for size. */
16512 inst.instruction |= neon_logbits (size) << 20;
16513 }
16514 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16515 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16516 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16517 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16518 inst.instruction |= inst.operands[2].reg;
16519 inst.is_neon = 1;
16520 }
16521
16522 static void
16523 mve_encode_rqq (unsigned bit28, unsigned size)
16524 {
16525 inst.instruction |= bit28 << 28;
16526 inst.instruction |= neon_logbits (size) << 20;
16527 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16528 inst.instruction |= inst.operands[0].reg << 12;
16529 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16530 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16531 inst.instruction |= LOW4 (inst.operands[2].reg);
16532 inst.is_neon = 1;
16533 }
16534
16535 static void
16536 mve_encode_qqq (int ubit, int size)
16537 {
16538
16539 inst.instruction |= (ubit != 0) << 28;
16540 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16541 inst.instruction |= neon_logbits (size) << 20;
16542 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16543 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16544 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16545 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16546 inst.instruction |= LOW4 (inst.operands[2].reg);
16547
16548 inst.is_neon = 1;
16549 }
16550
16551 static void
16552 mve_encode_rq (unsigned bit28, unsigned size)
16553 {
16554 inst.instruction |= bit28 << 28;
16555 inst.instruction |= neon_logbits (size) << 18;
16556 inst.instruction |= inst.operands[0].reg << 12;
16557 inst.instruction |= LOW4 (inst.operands[1].reg);
16558 inst.is_neon = 1;
16559 }
16560
16561 static void
16562 mve_encode_rrqq (unsigned U, unsigned size)
16563 {
16564 constraint (inst.operands[3].reg > 14, MVE_BAD_QREG);
16565
16566 inst.instruction |= U << 28;
16567 inst.instruction |= (inst.operands[1].reg >> 1) << 20;
16568 inst.instruction |= LOW4 (inst.operands[2].reg) << 16;
16569 inst.instruction |= (size == 32) << 16;
16570 inst.instruction |= inst.operands[0].reg << 12;
16571 inst.instruction |= HI1 (inst.operands[2].reg) << 7;
16572 inst.instruction |= inst.operands[3].reg;
16573 inst.is_neon = 1;
16574 }
16575
16576 /* Encode insns with bit pattern:
16577
16578 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
16579 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
16580
16581 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
16582 different meaning for some instruction. */
16583
16584 static void
16585 neon_three_same (int isquad, int ubit, int size)
16586 {
16587 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16588 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16589 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16590 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16591 inst.instruction |= LOW4 (inst.operands[2].reg);
16592 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16593 inst.instruction |= (isquad != 0) << 6;
16594 inst.instruction |= (ubit != 0) << 24;
16595 if (size != -1)
16596 inst.instruction |= neon_logbits (size) << 20;
16597
16598 neon_dp_fixup (&inst);
16599 }
16600
16601 /* Encode instructions of the form:
16602
16603 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
16604 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
16605
16606 Don't write size if SIZE == -1. */
16607
16608 static void
16609 neon_two_same (int qbit, int ubit, int size)
16610 {
16611 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16612 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16613 inst.instruction |= LOW4 (inst.operands[1].reg);
16614 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16615 inst.instruction |= (qbit != 0) << 6;
16616 inst.instruction |= (ubit != 0) << 24;
16617
16618 if (size != -1)
16619 inst.instruction |= neon_logbits (size) << 18;
16620
16621 neon_dp_fixup (&inst);
16622 }
16623
16624 enum vfp_or_neon_is_neon_bits
16625 {
16626 NEON_CHECK_CC = 1,
16627 NEON_CHECK_ARCH = 2,
16628 NEON_CHECK_ARCH8 = 4
16629 };
16630
16631 /* Call this function if an instruction which may have belonged to the VFP or
16632 Neon instruction sets, but turned out to be a Neon instruction (due to the
16633 operand types involved, etc.). We have to check and/or fix-up a couple of
16634 things:
16635
16636 - Make sure the user hasn't attempted to make a Neon instruction
16637 conditional.
16638 - Alter the value in the condition code field if necessary.
16639 - Make sure that the arch supports Neon instructions.
16640
16641 Which of these operations take place depends on bits from enum
16642 vfp_or_neon_is_neon_bits.
16643
16644 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
16645 current instruction's condition is COND_ALWAYS, the condition field is
16646 changed to inst.uncond_value. This is necessary because instructions shared
16647 between VFP and Neon may be conditional for the VFP variants only, and the
16648 unconditional Neon version must have, e.g., 0xF in the condition field. */
16649
16650 static int
16651 vfp_or_neon_is_neon (unsigned check)
16652 {
16653 /* Conditions are always legal in Thumb mode (IT blocks). */
16654 if (!thumb_mode && (check & NEON_CHECK_CC))
16655 {
16656 if (inst.cond != COND_ALWAYS)
16657 {
16658 first_error (_(BAD_COND));
16659 return FAIL;
16660 }
16661 if (inst.uncond_value != -1)
16662 inst.instruction |= inst.uncond_value << 28;
16663 }
16664
16665
16666 if (((check & NEON_CHECK_ARCH) && !mark_feature_used (&fpu_neon_ext_v1))
16667 || ((check & NEON_CHECK_ARCH8)
16668 && !mark_feature_used (&fpu_neon_ext_armv8)))
16669 {
16670 first_error (_(BAD_FPU));
16671 return FAIL;
16672 }
16673
16674 return SUCCESS;
16675 }
16676
16677
16678 /* Return TRUE if the SIMD instruction is available for the current
16679 cpu_variant. FP is set to TRUE if this is a SIMD floating-point
16680 instruction. CHECK contains th. CHECK contains the set of bits to pass to
16681 vfp_or_neon_is_neon for the NEON specific checks. */
16682
16683 static bfd_boolean
16684 check_simd_pred_availability (int fp, unsigned check)
16685 {
16686 if (inst.cond > COND_ALWAYS)
16687 {
16688 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16689 {
16690 inst.error = BAD_FPU;
16691 return FALSE;
16692 }
16693 inst.pred_insn_type = INSIDE_VPT_INSN;
16694 }
16695 else if (inst.cond < COND_ALWAYS)
16696 {
16697 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16698 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16699 else if (vfp_or_neon_is_neon (check) == FAIL)
16700 return FALSE;
16701 }
16702 else
16703 {
16704 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fp ? mve_fp_ext : mve_ext)
16705 && vfp_or_neon_is_neon (check) == FAIL)
16706 return FALSE;
16707
16708 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16709 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16710 }
16711 return TRUE;
16712 }
16713
16714 /* Neon instruction encoders, in approximate order of appearance. */
16715
16716 static void
16717 do_neon_dyadic_i_su (void)
16718 {
16719 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16720 return;
16721
16722 enum neon_shape rs;
16723 struct neon_type_el et;
16724 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16725 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
16726 else
16727 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16728
16729 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_32 | N_KEY);
16730
16731
16732 if (rs != NS_QQR)
16733 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16734 else
16735 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
16736 }
16737
16738 static void
16739 do_neon_dyadic_i64_su (void)
16740 {
16741 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
16742 return;
16743 enum neon_shape rs;
16744 struct neon_type_el et;
16745 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16746 {
16747 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
16748 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
16749 }
16750 else
16751 {
16752 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16753 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_ALL | N_KEY);
16754 }
16755 if (rs == NS_QQR)
16756 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
16757 else
16758 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16759 }
16760
16761 static void
16762 neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
16763 unsigned immbits)
16764 {
16765 unsigned size = et.size >> 3;
16766 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16767 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16768 inst.instruction |= LOW4 (inst.operands[1].reg);
16769 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16770 inst.instruction |= (isquad != 0) << 6;
16771 inst.instruction |= immbits << 16;
16772 inst.instruction |= (size >> 3) << 7;
16773 inst.instruction |= (size & 0x7) << 19;
16774 if (write_ubit)
16775 inst.instruction |= (uval != 0) << 24;
16776
16777 neon_dp_fixup (&inst);
16778 }
16779
16780 static void
16781 do_neon_shl (void)
16782 {
16783 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16784 return;
16785
16786 if (!inst.operands[2].isreg)
16787 {
16788 enum neon_shape rs;
16789 struct neon_type_el et;
16790 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16791 {
16792 rs = neon_select_shape (NS_QQI, NS_NULL);
16793 et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_MVE);
16794 }
16795 else
16796 {
16797 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
16798 et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
16799 }
16800 int imm = inst.operands[2].imm;
16801
16802 constraint (imm < 0 || (unsigned)imm >= et.size,
16803 _("immediate out of range for shift"));
16804 NEON_ENCODE (IMMED, inst);
16805 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
16806 }
16807 else
16808 {
16809 enum neon_shape rs;
16810 struct neon_type_el et;
16811 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16812 {
16813 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
16814 et = neon_check_type (3, rs, N_EQK, N_SU_MVE | N_KEY, N_EQK | N_EQK);
16815 }
16816 else
16817 {
16818 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16819 et = neon_check_type (3, rs, N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
16820 }
16821
16822
16823 if (rs == NS_QQR)
16824 {
16825 constraint (inst.operands[0].reg != inst.operands[1].reg,
16826 _("invalid instruction shape"));
16827 if (inst.operands[2].reg == REG_SP)
16828 as_tsktsk (MVE_BAD_SP);
16829 else if (inst.operands[2].reg == REG_PC)
16830 as_tsktsk (MVE_BAD_PC);
16831
16832 inst.instruction = 0xee311e60;
16833 inst.instruction |= (et.type == NT_unsigned) << 28;
16834 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16835 inst.instruction |= neon_logbits (et.size) << 18;
16836 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16837 inst.instruction |= inst.operands[2].reg;
16838 inst.is_neon = 1;
16839 }
16840 else
16841 {
16842 unsigned int tmp;
16843
16844 /* VSHL/VQSHL 3-register variants have syntax such as:
16845 vshl.xx Dd, Dm, Dn
16846 whereas other 3-register operations encoded by neon_three_same have
16847 syntax like:
16848 vadd.xx Dd, Dn, Dm
16849 (i.e. with Dn & Dm reversed). Swap operands[1].reg and
16850 operands[2].reg here. */
16851 tmp = inst.operands[2].reg;
16852 inst.operands[2].reg = inst.operands[1].reg;
16853 inst.operands[1].reg = tmp;
16854 NEON_ENCODE (INTEGER, inst);
16855 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16856 }
16857 }
16858 }
16859
16860 static void
16861 do_neon_qshl (void)
16862 {
16863 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16864 return;
16865
16866 if (!inst.operands[2].isreg)
16867 {
16868 enum neon_shape rs;
16869 struct neon_type_el et;
16870 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16871 {
16872 rs = neon_select_shape (NS_QQI, NS_NULL);
16873 et = neon_check_type (2, rs, N_EQK, N_KEY | N_SU_MVE);
16874 }
16875 else
16876 {
16877 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
16878 et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
16879 }
16880 int imm = inst.operands[2].imm;
16881
16882 constraint (imm < 0 || (unsigned)imm >= et.size,
16883 _("immediate out of range for shift"));
16884 NEON_ENCODE (IMMED, inst);
16885 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
16886 }
16887 else
16888 {
16889 enum neon_shape rs;
16890 struct neon_type_el et;
16891
16892 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16893 {
16894 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
16895 et = neon_check_type (3, rs, N_EQK, N_SU_MVE | N_KEY, N_EQK | N_EQK);
16896 }
16897 else
16898 {
16899 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16900 et = neon_check_type (3, rs, N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
16901 }
16902
16903 if (rs == NS_QQR)
16904 {
16905 constraint (inst.operands[0].reg != inst.operands[1].reg,
16906 _("invalid instruction shape"));
16907 if (inst.operands[2].reg == REG_SP)
16908 as_tsktsk (MVE_BAD_SP);
16909 else if (inst.operands[2].reg == REG_PC)
16910 as_tsktsk (MVE_BAD_PC);
16911
16912 inst.instruction = 0xee311ee0;
16913 inst.instruction |= (et.type == NT_unsigned) << 28;
16914 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16915 inst.instruction |= neon_logbits (et.size) << 18;
16916 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16917 inst.instruction |= inst.operands[2].reg;
16918 inst.is_neon = 1;
16919 }
16920 else
16921 {
16922 unsigned int tmp;
16923
16924 /* See note in do_neon_shl. */
16925 tmp = inst.operands[2].reg;
16926 inst.operands[2].reg = inst.operands[1].reg;
16927 inst.operands[1].reg = tmp;
16928 NEON_ENCODE (INTEGER, inst);
16929 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16930 }
16931 }
16932 }
16933
16934 static void
16935 do_neon_rshl (void)
16936 {
16937 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16938 return;
16939
16940 enum neon_shape rs;
16941 struct neon_type_el et;
16942 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16943 {
16944 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
16945 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
16946 }
16947 else
16948 {
16949 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16950 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_ALL | N_KEY);
16951 }
16952
16953 unsigned int tmp;
16954
16955 if (rs == NS_QQR)
16956 {
16957 if (inst.operands[2].reg == REG_PC)
16958 as_tsktsk (MVE_BAD_PC);
16959 else if (inst.operands[2].reg == REG_SP)
16960 as_tsktsk (MVE_BAD_SP);
16961
16962 constraint (inst.operands[0].reg != inst.operands[1].reg,
16963 _("invalid instruction shape"));
16964
16965 if (inst.instruction == 0x0000510)
16966 /* We are dealing with vqrshl. */
16967 inst.instruction = 0xee331ee0;
16968 else
16969 /* We are dealing with vrshl. */
16970 inst.instruction = 0xee331e60;
16971
16972 inst.instruction |= (et.type == NT_unsigned) << 28;
16973 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16974 inst.instruction |= neon_logbits (et.size) << 18;
16975 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16976 inst.instruction |= inst.operands[2].reg;
16977 inst.is_neon = 1;
16978 }
16979 else
16980 {
16981 tmp = inst.operands[2].reg;
16982 inst.operands[2].reg = inst.operands[1].reg;
16983 inst.operands[1].reg = tmp;
16984 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16985 }
16986 }
16987
16988 static int
16989 neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
16990 {
16991 /* Handle .I8 pseudo-instructions. */
16992 if (size == 8)
16993 {
16994 /* Unfortunately, this will make everything apart from zero out-of-range.
16995 FIXME is this the intended semantics? There doesn't seem much point in
16996 accepting .I8 if so. */
16997 immediate |= immediate << 8;
16998 size = 16;
16999 }
17000
17001 if (size >= 32)
17002 {
17003 if (immediate == (immediate & 0x000000ff))
17004 {
17005 *immbits = immediate;
17006 return 0x1;
17007 }
17008 else if (immediate == (immediate & 0x0000ff00))
17009 {
17010 *immbits = immediate >> 8;
17011 return 0x3;
17012 }
17013 else if (immediate == (immediate & 0x00ff0000))
17014 {
17015 *immbits = immediate >> 16;
17016 return 0x5;
17017 }
17018 else if (immediate == (immediate & 0xff000000))
17019 {
17020 *immbits = immediate >> 24;
17021 return 0x7;
17022 }
17023 if ((immediate & 0xffff) != (immediate >> 16))
17024 goto bad_immediate;
17025 immediate &= 0xffff;
17026 }
17027
17028 if (immediate == (immediate & 0x000000ff))
17029 {
17030 *immbits = immediate;
17031 return 0x9;
17032 }
17033 else if (immediate == (immediate & 0x0000ff00))
17034 {
17035 *immbits = immediate >> 8;
17036 return 0xb;
17037 }
17038
17039 bad_immediate:
17040 first_error (_("immediate value out of range"));
17041 return FAIL;
17042 }
17043
17044 static void
17045 do_neon_logic (void)
17046 {
17047 if (inst.operands[2].present && inst.operands[2].isreg)
17048 {
17049 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17050 if (rs == NS_QQQ
17051 && !check_simd_pred_availability (FALSE,
17052 NEON_CHECK_ARCH | NEON_CHECK_CC))
17053 return;
17054 else if (rs != NS_QQQ
17055 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
17056 first_error (BAD_FPU);
17057
17058 neon_check_type (3, rs, N_IGNORE_TYPE);
17059 /* U bit and size field were set as part of the bitmask. */
17060 NEON_ENCODE (INTEGER, inst);
17061 neon_three_same (neon_quad (rs), 0, -1);
17062 }
17063 else
17064 {
17065 const int three_ops_form = (inst.operands[2].present
17066 && !inst.operands[2].isreg);
17067 const int immoperand = (three_ops_form ? 2 : 1);
17068 enum neon_shape rs = (three_ops_form
17069 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
17070 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
17071 /* Because neon_select_shape makes the second operand a copy of the first
17072 if the second operand is not present. */
17073 if (rs == NS_QQI
17074 && !check_simd_pred_availability (FALSE,
17075 NEON_CHECK_ARCH | NEON_CHECK_CC))
17076 return;
17077 else if (rs != NS_QQI
17078 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
17079 first_error (BAD_FPU);
17080
17081 struct neon_type_el et;
17082 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17083 et = neon_check_type (2, rs, N_I32 | N_I16 | N_KEY, N_EQK);
17084 else
17085 et = neon_check_type (2, rs, N_I8 | N_I16 | N_I32 | N_I64 | N_F32
17086 | N_KEY, N_EQK);
17087
17088 if (et.type == NT_invtype)
17089 return;
17090 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
17091 unsigned immbits;
17092 int cmode;
17093
17094
17095 if (three_ops_form)
17096 constraint (inst.operands[0].reg != inst.operands[1].reg,
17097 _("first and second operands shall be the same register"));
17098
17099 NEON_ENCODE (IMMED, inst);
17100
17101 immbits = inst.operands[immoperand].imm;
17102 if (et.size == 64)
17103 {
17104 /* .i64 is a pseudo-op, so the immediate must be a repeating
17105 pattern. */
17106 if (immbits != (inst.operands[immoperand].regisimm ?
17107 inst.operands[immoperand].reg : 0))
17108 {
17109 /* Set immbits to an invalid constant. */
17110 immbits = 0xdeadbeef;
17111 }
17112 }
17113
17114 switch (opcode)
17115 {
17116 case N_MNEM_vbic:
17117 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17118 break;
17119
17120 case N_MNEM_vorr:
17121 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17122 break;
17123
17124 case N_MNEM_vand:
17125 /* Pseudo-instruction for VBIC. */
17126 neon_invert_size (&immbits, 0, et.size);
17127 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17128 break;
17129
17130 case N_MNEM_vorn:
17131 /* Pseudo-instruction for VORR. */
17132 neon_invert_size (&immbits, 0, et.size);
17133 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17134 break;
17135
17136 default:
17137 abort ();
17138 }
17139
17140 if (cmode == FAIL)
17141 return;
17142
17143 inst.instruction |= neon_quad (rs) << 6;
17144 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17145 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17146 inst.instruction |= cmode << 8;
17147 neon_write_immbits (immbits);
17148
17149 neon_dp_fixup (&inst);
17150 }
17151 }
17152
17153 static void
17154 do_neon_bitfield (void)
17155 {
17156 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17157 neon_check_type (3, rs, N_IGNORE_TYPE);
17158 neon_three_same (neon_quad (rs), 0, -1);
17159 }
17160
17161 static void
17162 neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
17163 unsigned destbits)
17164 {
17165 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17166 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
17167 types | N_KEY);
17168 if (et.type == NT_float)
17169 {
17170 NEON_ENCODE (FLOAT, inst);
17171 if (rs == NS_QQR)
17172 mve_encode_qqr (et.size, 0, 1);
17173 else
17174 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
17175 }
17176 else
17177 {
17178 NEON_ENCODE (INTEGER, inst);
17179 if (rs == NS_QQR)
17180 mve_encode_qqr (et.size, et.type == ubit_meaning, 0);
17181 else
17182 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
17183 }
17184 }
17185
17186
17187 static void
17188 do_neon_dyadic_if_su_d (void)
17189 {
17190 /* This version only allow D registers, but that constraint is enforced during
17191 operand parsing so we don't need to do anything extra here. */
17192 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
17193 }
17194
17195 static void
17196 do_neon_dyadic_if_i_d (void)
17197 {
17198 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17199 affected if we specify unsigned args. */
17200 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17201 }
17202
17203 static void
17204 do_mve_vstr_vldr_QI (int size, int elsize, int load)
17205 {
17206 constraint (size < 32, BAD_ADDR_MODE);
17207 constraint (size != elsize, BAD_EL_TYPE);
17208 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
17209 constraint (!inst.operands[1].preind, BAD_ADDR_MODE);
17210 constraint (load && inst.operands[0].reg == inst.operands[1].reg,
17211 _("destination register and offset register may not be the"
17212 " same"));
17213
17214 int imm = inst.relocs[0].exp.X_add_number;
17215 int add = 1;
17216 if (imm < 0)
17217 {
17218 add = 0;
17219 imm = -imm;
17220 }
17221 constraint ((imm % (size / 8) != 0)
17222 || imm > (0x7f << neon_logbits (size)),
17223 (size == 32) ? _("immediate must be a multiple of 4 in the"
17224 " range of +/-[0,508]")
17225 : _("immediate must be a multiple of 8 in the"
17226 " range of +/-[0,1016]"));
17227 inst.instruction |= 0x11 << 24;
17228 inst.instruction |= add << 23;
17229 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17230 inst.instruction |= inst.operands[1].writeback << 21;
17231 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17232 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17233 inst.instruction |= 1 << 12;
17234 inst.instruction |= (size == 64) << 8;
17235 inst.instruction &= 0xffffff00;
17236 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
17237 inst.instruction |= imm >> neon_logbits (size);
17238 }
17239
17240 static void
17241 do_mve_vstr_vldr_RQ (int size, int elsize, int load)
17242 {
17243 unsigned os = inst.operands[1].imm >> 5;
17244 constraint (os != 0 && size == 8,
17245 _("can not shift offsets when accessing less than half-word"));
17246 constraint (os && os != neon_logbits (size),
17247 _("shift immediate must be 1, 2 or 3 for half-word, word"
17248 " or double-word accesses respectively"));
17249 if (inst.operands[1].reg == REG_PC)
17250 as_tsktsk (MVE_BAD_PC);
17251
17252 switch (size)
17253 {
17254 case 8:
17255 constraint (elsize >= 64, BAD_EL_TYPE);
17256 break;
17257 case 16:
17258 constraint (elsize < 16 || elsize >= 64, BAD_EL_TYPE);
17259 break;
17260 case 32:
17261 case 64:
17262 constraint (elsize != size, BAD_EL_TYPE);
17263 break;
17264 default:
17265 break;
17266 }
17267 constraint (inst.operands[1].writeback || !inst.operands[1].preind,
17268 BAD_ADDR_MODE);
17269 if (load)
17270 {
17271 constraint (inst.operands[0].reg == (inst.operands[1].imm & 0x1f),
17272 _("destination register and offset register may not be"
17273 " the same"));
17274 constraint (size == elsize && inst.vectype.el[0].type != NT_unsigned,
17275 BAD_EL_TYPE);
17276 constraint (inst.vectype.el[0].type != NT_unsigned
17277 && inst.vectype.el[0].type != NT_signed, BAD_EL_TYPE);
17278 inst.instruction |= (inst.vectype.el[0].type == NT_unsigned) << 28;
17279 }
17280 else
17281 {
17282 constraint (inst.vectype.el[0].type != NT_untyped, BAD_EL_TYPE);
17283 }
17284
17285 inst.instruction |= 1 << 23;
17286 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17287 inst.instruction |= inst.operands[1].reg << 16;
17288 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17289 inst.instruction |= neon_logbits (elsize) << 7;
17290 inst.instruction |= HI1 (inst.operands[1].imm) << 5;
17291 inst.instruction |= LOW4 (inst.operands[1].imm);
17292 inst.instruction |= !!os;
17293 }
17294
17295 static void
17296 do_mve_vstr_vldr_RI (int size, int elsize, int load)
17297 {
17298 enum neon_el_type type = inst.vectype.el[0].type;
17299
17300 constraint (size >= 64, BAD_ADDR_MODE);
17301 switch (size)
17302 {
17303 case 16:
17304 constraint (elsize < 16 || elsize >= 64, BAD_EL_TYPE);
17305 break;
17306 case 32:
17307 constraint (elsize != size, BAD_EL_TYPE);
17308 break;
17309 default:
17310 break;
17311 }
17312 if (load)
17313 {
17314 constraint (elsize != size && type != NT_unsigned
17315 && type != NT_signed, BAD_EL_TYPE);
17316 }
17317 else
17318 {
17319 constraint (elsize != size && type != NT_untyped, BAD_EL_TYPE);
17320 }
17321
17322 int imm = inst.relocs[0].exp.X_add_number;
17323 int add = 1;
17324 if (imm < 0)
17325 {
17326 add = 0;
17327 imm = -imm;
17328 }
17329
17330 if ((imm % (size / 8) != 0) || imm > (0x7f << neon_logbits (size)))
17331 {
17332 switch (size)
17333 {
17334 case 8:
17335 constraint (1, _("immediate must be in the range of +/-[0,127]"));
17336 break;
17337 case 16:
17338 constraint (1, _("immediate must be a multiple of 2 in the"
17339 " range of +/-[0,254]"));
17340 break;
17341 case 32:
17342 constraint (1, _("immediate must be a multiple of 4 in the"
17343 " range of +/-[0,508]"));
17344 break;
17345 }
17346 }
17347
17348 if (size != elsize)
17349 {
17350 constraint (inst.operands[1].reg > 7, BAD_HIREG);
17351 constraint (inst.operands[0].reg > 14,
17352 _("MVE vector register in the range [Q0..Q7] expected"));
17353 inst.instruction |= (load && type == NT_unsigned) << 28;
17354 inst.instruction |= (size == 16) << 19;
17355 inst.instruction |= neon_logbits (elsize) << 7;
17356 }
17357 else
17358 {
17359 if (inst.operands[1].reg == REG_PC)
17360 as_tsktsk (MVE_BAD_PC);
17361 else if (inst.operands[1].reg == REG_SP && inst.operands[1].writeback)
17362 as_tsktsk (MVE_BAD_SP);
17363 inst.instruction |= 1 << 12;
17364 inst.instruction |= neon_logbits (size) << 7;
17365 }
17366 inst.instruction |= inst.operands[1].preind << 24;
17367 inst.instruction |= add << 23;
17368 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17369 inst.instruction |= inst.operands[1].writeback << 21;
17370 inst.instruction |= inst.operands[1].reg << 16;
17371 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17372 inst.instruction &= 0xffffff80;
17373 inst.instruction |= imm >> neon_logbits (size);
17374
17375 }
17376
17377 static void
17378 do_mve_vstr_vldr (void)
17379 {
17380 unsigned size;
17381 int load = 0;
17382
17383 if (inst.cond > COND_ALWAYS)
17384 inst.pred_insn_type = INSIDE_VPT_INSN;
17385 else
17386 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17387
17388 switch (inst.instruction)
17389 {
17390 default:
17391 gas_assert (0);
17392 break;
17393 case M_MNEM_vldrb:
17394 load = 1;
17395 /* fall through. */
17396 case M_MNEM_vstrb:
17397 size = 8;
17398 break;
17399 case M_MNEM_vldrh:
17400 load = 1;
17401 /* fall through. */
17402 case M_MNEM_vstrh:
17403 size = 16;
17404 break;
17405 case M_MNEM_vldrw:
17406 load = 1;
17407 /* fall through. */
17408 case M_MNEM_vstrw:
17409 size = 32;
17410 break;
17411 case M_MNEM_vldrd:
17412 load = 1;
17413 /* fall through. */
17414 case M_MNEM_vstrd:
17415 size = 64;
17416 break;
17417 }
17418 unsigned elsize = inst.vectype.el[0].size;
17419
17420 if (inst.operands[1].isquad)
17421 {
17422 /* We are dealing with [Q, imm]{!} cases. */
17423 do_mve_vstr_vldr_QI (size, elsize, load);
17424 }
17425 else
17426 {
17427 if (inst.operands[1].immisreg == 2)
17428 {
17429 /* We are dealing with [R, Q, {UXTW #os}] cases. */
17430 do_mve_vstr_vldr_RQ (size, elsize, load);
17431 }
17432 else if (!inst.operands[1].immisreg)
17433 {
17434 /* We are dealing with [R, Imm]{!}/[R], Imm cases. */
17435 do_mve_vstr_vldr_RI (size, elsize, load);
17436 }
17437 else
17438 constraint (1, BAD_ADDR_MODE);
17439 }
17440
17441 inst.is_neon = 1;
17442 }
17443
17444 static void
17445 do_mve_vst_vld (void)
17446 {
17447 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17448 return;
17449
17450 constraint (!inst.operands[1].preind || inst.relocs[0].exp.X_add_symbol != 0
17451 || inst.relocs[0].exp.X_add_number != 0
17452 || inst.operands[1].immisreg != 0,
17453 BAD_ADDR_MODE);
17454 constraint (inst.vectype.el[0].size > 32, BAD_EL_TYPE);
17455 if (inst.operands[1].reg == REG_PC)
17456 as_tsktsk (MVE_BAD_PC);
17457 else if (inst.operands[1].reg == REG_SP && inst.operands[1].writeback)
17458 as_tsktsk (MVE_BAD_SP);
17459
17460
17461 /* These instructions are one of the "exceptions" mentioned in
17462 handle_pred_state. They are MVE instructions that are not VPT compatible
17463 and do not accept a VPT code, thus appending such a code is a syntax
17464 error. */
17465 if (inst.cond > COND_ALWAYS)
17466 first_error (BAD_SYNTAX);
17467 /* If we append a scalar condition code we can set this to
17468 MVE_OUTSIDE_PRED_INSN as it will also lead to a syntax error. */
17469 else if (inst.cond < COND_ALWAYS)
17470 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17471 else
17472 inst.pred_insn_type = MVE_UNPREDICABLE_INSN;
17473
17474 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17475 inst.instruction |= inst.operands[1].writeback << 21;
17476 inst.instruction |= inst.operands[1].reg << 16;
17477 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17478 inst.instruction |= neon_logbits (inst.vectype.el[0].size) << 7;
17479 inst.is_neon = 1;
17480 }
17481
17482 static void
17483 do_mve_vaddlv (void)
17484 {
17485 enum neon_shape rs = neon_select_shape (NS_RRQ, NS_NULL);
17486 struct neon_type_el et
17487 = neon_check_type (3, rs, N_EQK, N_EQK, N_S32 | N_U32 | N_KEY);
17488
17489 if (et.type == NT_invtype)
17490 first_error (BAD_EL_TYPE);
17491
17492 if (inst.cond > COND_ALWAYS)
17493 inst.pred_insn_type = INSIDE_VPT_INSN;
17494 else
17495 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17496
17497 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
17498
17499 inst.instruction |= (et.type == NT_unsigned) << 28;
17500 inst.instruction |= inst.operands[1].reg << 19;
17501 inst.instruction |= inst.operands[0].reg << 12;
17502 inst.instruction |= inst.operands[2].reg;
17503 inst.is_neon = 1;
17504 }
17505
17506 static void
17507 do_neon_dyadic_if_su (void)
17508 {
17509 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17510 struct neon_type_el et = neon_check_type (3, rs, N_EQK , N_EQK,
17511 N_SUF_32 | N_KEY);
17512
17513 constraint ((inst.instruction == ((unsigned) N_MNEM_vmax)
17514 || inst.instruction == ((unsigned) N_MNEM_vmin))
17515 && et.type == NT_float
17516 && !ARM_CPU_HAS_FEATURE (cpu_variant,fpu_neon_ext_v1), BAD_FPU);
17517
17518 if (!check_simd_pred_availability (et.type == NT_float,
17519 NEON_CHECK_ARCH | NEON_CHECK_CC))
17520 return;
17521
17522 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
17523 }
17524
17525 static void
17526 do_neon_addsub_if_i (void)
17527 {
17528 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
17529 && try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
17530 return;
17531
17532 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17533 struct neon_type_el et = neon_check_type (3, rs, N_EQK,
17534 N_EQK, N_IF_32 | N_I64 | N_KEY);
17535
17536 constraint (rs == NS_QQR && et.size == 64, BAD_FPU);
17537 /* If we are parsing Q registers and the element types match MVE, which NEON
17538 also supports, then we must check whether this is an instruction that can
17539 be used by both MVE/NEON. This distinction can be made based on whether
17540 they are predicated or not. */
17541 if ((rs == NS_QQQ || rs == NS_QQR) && et.size != 64)
17542 {
17543 if (!check_simd_pred_availability (et.type == NT_float,
17544 NEON_CHECK_ARCH | NEON_CHECK_CC))
17545 return;
17546 }
17547 else
17548 {
17549 /* If they are either in a D register or are using an unsupported. */
17550 if (rs != NS_QQR
17551 && vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
17552 return;
17553 }
17554
17555 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17556 affected if we specify unsigned args. */
17557 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
17558 }
17559
17560 /* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
17561 result to be:
17562 V<op> A,B (A is operand 0, B is operand 2)
17563 to mean:
17564 V<op> A,B,A
17565 not:
17566 V<op> A,B,B
17567 so handle that case specially. */
17568
17569 static void
17570 neon_exchange_operands (void)
17571 {
17572 if (inst.operands[1].present)
17573 {
17574 void *scratch = xmalloc (sizeof (inst.operands[0]));
17575
17576 /* Swap operands[1] and operands[2]. */
17577 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
17578 inst.operands[1] = inst.operands[2];
17579 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
17580 free (scratch);
17581 }
17582 else
17583 {
17584 inst.operands[1] = inst.operands[2];
17585 inst.operands[2] = inst.operands[0];
17586 }
17587 }
17588
17589 static void
17590 neon_compare (unsigned regtypes, unsigned immtypes, int invert)
17591 {
17592 if (inst.operands[2].isreg)
17593 {
17594 if (invert)
17595 neon_exchange_operands ();
17596 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
17597 }
17598 else
17599 {
17600 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
17601 struct neon_type_el et = neon_check_type (2, rs,
17602 N_EQK | N_SIZ, immtypes | N_KEY);
17603
17604 NEON_ENCODE (IMMED, inst);
17605 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17606 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17607 inst.instruction |= LOW4 (inst.operands[1].reg);
17608 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17609 inst.instruction |= neon_quad (rs) << 6;
17610 inst.instruction |= (et.type == NT_float) << 10;
17611 inst.instruction |= neon_logbits (et.size) << 18;
17612
17613 neon_dp_fixup (&inst);
17614 }
17615 }
17616
17617 static void
17618 do_neon_cmp (void)
17619 {
17620 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, FALSE);
17621 }
17622
17623 static void
17624 do_neon_cmp_inv (void)
17625 {
17626 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, TRUE);
17627 }
17628
17629 static void
17630 do_neon_ceq (void)
17631 {
17632 neon_compare (N_IF_32, N_IF_32, FALSE);
17633 }
17634
17635 /* For multiply instructions, we have the possibility of 16-bit or 32-bit
17636 scalars, which are encoded in 5 bits, M : Rm.
17637 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
17638 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
17639 index in M.
17640
17641 Dot Product instructions are similar to multiply instructions except elsize
17642 should always be 32.
17643
17644 This function translates SCALAR, which is GAS's internal encoding of indexed
17645 scalar register, to raw encoding. There is also register and index range
17646 check based on ELSIZE. */
17647
17648 static unsigned
17649 neon_scalar_for_mul (unsigned scalar, unsigned elsize)
17650 {
17651 unsigned regno = NEON_SCALAR_REG (scalar);
17652 unsigned elno = NEON_SCALAR_INDEX (scalar);
17653
17654 switch (elsize)
17655 {
17656 case 16:
17657 if (regno > 7 || elno > 3)
17658 goto bad_scalar;
17659 return regno | (elno << 3);
17660
17661 case 32:
17662 if (regno > 15 || elno > 1)
17663 goto bad_scalar;
17664 return regno | (elno << 4);
17665
17666 default:
17667 bad_scalar:
17668 first_error (_("scalar out of range for multiply instruction"));
17669 }
17670
17671 return 0;
17672 }
17673
17674 /* Encode multiply / multiply-accumulate scalar instructions. */
17675
17676 static void
17677 neon_mul_mac (struct neon_type_el et, int ubit)
17678 {
17679 unsigned scalar;
17680
17681 /* Give a more helpful error message if we have an invalid type. */
17682 if (et.type == NT_invtype)
17683 return;
17684
17685 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
17686 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17687 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17688 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17689 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
17690 inst.instruction |= LOW4 (scalar);
17691 inst.instruction |= HI1 (scalar) << 5;
17692 inst.instruction |= (et.type == NT_float) << 8;
17693 inst.instruction |= neon_logbits (et.size) << 20;
17694 inst.instruction |= (ubit != 0) << 24;
17695
17696 neon_dp_fixup (&inst);
17697 }
17698
17699 static void
17700 do_neon_mac_maybe_scalar (void)
17701 {
17702 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
17703 return;
17704
17705 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
17706 return;
17707
17708 if (inst.operands[2].isscalar)
17709 {
17710 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17711 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
17712 struct neon_type_el et = neon_check_type (3, rs,
17713 N_EQK, N_EQK, N_I16 | N_I32 | N_F_16_32 | N_KEY);
17714 NEON_ENCODE (SCALAR, inst);
17715 neon_mul_mac (et, neon_quad (rs));
17716 }
17717 else if (!inst.operands[2].isvec)
17718 {
17719 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17720
17721 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
17722 neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
17723
17724 neon_dyadic_misc (NT_unsigned, N_SU_MVE, 0);
17725 }
17726 else
17727 {
17728 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17729 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17730 affected if we specify unsigned args. */
17731 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17732 }
17733 }
17734
17735 static void
17736 do_neon_fmac (void)
17737 {
17738 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_fma)
17739 && try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
17740 return;
17741
17742 if (!check_simd_pred_availability (TRUE, NEON_CHECK_CC | NEON_CHECK_ARCH))
17743 return;
17744
17745 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
17746 {
17747 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
17748 struct neon_type_el et = neon_check_type (3, rs, N_F_MVE | N_KEY, N_EQK,
17749 N_EQK);
17750
17751 if (rs == NS_QQR)
17752 {
17753 if (inst.operands[2].reg == REG_SP)
17754 as_tsktsk (MVE_BAD_SP);
17755 else if (inst.operands[2].reg == REG_PC)
17756 as_tsktsk (MVE_BAD_PC);
17757
17758 inst.instruction = 0xee310e40;
17759 inst.instruction |= (et.size == 16) << 28;
17760 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17761 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17762 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17763 inst.instruction |= HI1 (inst.operands[1].reg) << 6;
17764 inst.instruction |= inst.operands[2].reg;
17765 inst.is_neon = 1;
17766 return;
17767 }
17768 }
17769 else
17770 {
17771 constraint (!inst.operands[2].isvec, BAD_FPU);
17772 }
17773
17774 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17775 }
17776
17777 static void
17778 do_neon_tst (void)
17779 {
17780 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17781 struct neon_type_el et = neon_check_type (3, rs,
17782 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
17783 neon_three_same (neon_quad (rs), 0, et.size);
17784 }
17785
17786 /* VMUL with 3 registers allows the P8 type. The scalar version supports the
17787 same types as the MAC equivalents. The polynomial type for this instruction
17788 is encoded the same as the integer type. */
17789
17790 static void
17791 do_neon_mul (void)
17792 {
17793 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
17794 return;
17795
17796 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
17797 return;
17798
17799 if (inst.operands[2].isscalar)
17800 {
17801 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17802 do_neon_mac_maybe_scalar ();
17803 }
17804 else
17805 {
17806 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17807 {
17808 enum neon_shape rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
17809 struct neon_type_el et
17810 = neon_check_type (3, rs, N_EQK, N_EQK, N_I_MVE | N_F_MVE | N_KEY);
17811 if (et.type == NT_float)
17812 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
17813 BAD_FPU);
17814
17815 neon_dyadic_misc (NT_float, N_I_MVE | N_F_MVE, 0);
17816 }
17817 else
17818 {
17819 constraint (!inst.operands[2].isvec, BAD_FPU);
17820 neon_dyadic_misc (NT_poly,
17821 N_I8 | N_I16 | N_I32 | N_F16 | N_F32 | N_P8, 0);
17822 }
17823 }
17824 }
17825
17826 static void
17827 do_neon_qdmulh (void)
17828 {
17829 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
17830 return;
17831
17832 if (inst.operands[2].isscalar)
17833 {
17834 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17835 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
17836 struct neon_type_el et = neon_check_type (3, rs,
17837 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
17838 NEON_ENCODE (SCALAR, inst);
17839 neon_mul_mac (et, neon_quad (rs));
17840 }
17841 else
17842 {
17843 enum neon_shape rs;
17844 struct neon_type_el et;
17845 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17846 {
17847 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
17848 et = neon_check_type (3, rs,
17849 N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
17850 }
17851 else
17852 {
17853 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17854 et = neon_check_type (3, rs,
17855 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
17856 }
17857
17858 NEON_ENCODE (INTEGER, inst);
17859 if (rs == NS_QQR)
17860 mve_encode_qqr (et.size, 0, 0);
17861 else
17862 /* The U bit (rounding) comes from bit mask. */
17863 neon_three_same (neon_quad (rs), 0, et.size);
17864 }
17865 }
17866
17867 static void
17868 do_mve_vaddv (void)
17869 {
17870 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
17871 struct neon_type_el et
17872 = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
17873
17874 if (et.type == NT_invtype)
17875 first_error (BAD_EL_TYPE);
17876
17877 if (inst.cond > COND_ALWAYS)
17878 inst.pred_insn_type = INSIDE_VPT_INSN;
17879 else
17880 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17881
17882 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
17883
17884 mve_encode_rq (et.type == NT_unsigned, et.size);
17885 }
17886
17887 static void
17888 do_mve_vhcadd (void)
17889 {
17890 enum neon_shape rs = neon_select_shape (NS_QQQI, NS_NULL);
17891 struct neon_type_el et
17892 = neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
17893
17894 if (inst.cond > COND_ALWAYS)
17895 inst.pred_insn_type = INSIDE_VPT_INSN;
17896 else
17897 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17898
17899 unsigned rot = inst.relocs[0].exp.X_add_number;
17900 constraint (rot != 90 && rot != 270, _("immediate out of range"));
17901
17902 if (et.size == 32 && inst.operands[0].reg == inst.operands[2].reg)
17903 as_tsktsk (_("Warning: 32-bit element size and same first and third "
17904 "operand makes instruction UNPREDICTABLE"));
17905
17906 mve_encode_qqq (0, et.size);
17907 inst.instruction |= (rot == 270) << 12;
17908 inst.is_neon = 1;
17909 }
17910
17911 static void
17912 do_mve_vqdmull (void)
17913 {
17914 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
17915 struct neon_type_el et
17916 = neon_check_type (3, rs, N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
17917
17918 if (et.size == 32
17919 && (inst.operands[0].reg == inst.operands[1].reg
17920 || (rs == NS_QQQ && inst.operands[0].reg == inst.operands[2].reg)))
17921 as_tsktsk (BAD_MVE_SRCDEST);
17922
17923 if (inst.cond > COND_ALWAYS)
17924 inst.pred_insn_type = INSIDE_VPT_INSN;
17925 else
17926 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17927
17928 if (rs == NS_QQQ)
17929 {
17930 mve_encode_qqq (et.size == 32, 64);
17931 inst.instruction |= 1;
17932 }
17933 else
17934 {
17935 mve_encode_qqr (64, et.size == 32, 0);
17936 inst.instruction |= 0x3 << 5;
17937 }
17938 }
17939
17940 static void
17941 do_mve_vadc (void)
17942 {
17943 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
17944 struct neon_type_el et
17945 = neon_check_type (3, rs, N_KEY | N_I32, N_EQK, N_EQK);
17946
17947 if (et.type == NT_invtype)
17948 first_error (BAD_EL_TYPE);
17949
17950 if (inst.cond > COND_ALWAYS)
17951 inst.pred_insn_type = INSIDE_VPT_INSN;
17952 else
17953 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17954
17955 mve_encode_qqq (0, 64);
17956 }
17957
17958 static void
17959 do_mve_vbrsr (void)
17960 {
17961 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
17962 struct neon_type_el et
17963 = neon_check_type (3, rs, N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
17964
17965 if (inst.cond > COND_ALWAYS)
17966 inst.pred_insn_type = INSIDE_VPT_INSN;
17967 else
17968 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17969
17970 mve_encode_qqr (et.size, 0, 0);
17971 }
17972
17973 static void
17974 do_mve_vsbc (void)
17975 {
17976 neon_check_type (3, NS_QQQ, N_EQK, N_EQK, N_I32 | N_KEY);
17977
17978 if (inst.cond > COND_ALWAYS)
17979 inst.pred_insn_type = INSIDE_VPT_INSN;
17980 else
17981 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17982
17983 mve_encode_qqq (1, 64);
17984 }
17985
17986 static void
17987 do_mve_vmulh (void)
17988 {
17989 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
17990 struct neon_type_el et
17991 = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
17992
17993 if (inst.cond > COND_ALWAYS)
17994 inst.pred_insn_type = INSIDE_VPT_INSN;
17995 else
17996 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17997
17998 mve_encode_qqq (et.type == NT_unsigned, et.size);
17999 }
18000
18001 static void
18002 do_mve_vqdmlah (void)
18003 {
18004 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
18005 struct neon_type_el et
18006 = neon_check_type (3, rs, N_EQK, N_EQK, N_S_32 | N_KEY);
18007
18008 if (inst.cond > COND_ALWAYS)
18009 inst.pred_insn_type = INSIDE_VPT_INSN;
18010 else
18011 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18012
18013 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
18014 }
18015
18016 static void
18017 do_mve_vqdmladh (void)
18018 {
18019 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
18020 struct neon_type_el et
18021 = neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18022
18023 if (inst.cond > COND_ALWAYS)
18024 inst.pred_insn_type = INSIDE_VPT_INSN;
18025 else
18026 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18027
18028 mve_encode_qqq (0, et.size);
18029 }
18030
18031
18032 static void
18033 do_mve_vmull (void)
18034 {
18035
18036 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_DDS,
18037 NS_QQS, NS_QQQ, NS_QQR, NS_NULL);
18038 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
18039 && inst.cond == COND_ALWAYS
18040 && ((unsigned)inst.instruction) == M_MNEM_vmullt)
18041 {
18042 if (rs == NS_QQQ)
18043 {
18044
18045 struct neon_type_el et = neon_check_type (3, rs, N_EQK , N_EQK,
18046 N_SUF_32 | N_F64 | N_P8
18047 | N_P16 | N_I_MVE | N_KEY);
18048 if (((et.type == NT_poly) && et.size == 8
18049 && ARM_CPU_IS_ANY (cpu_variant))
18050 || (et.type == NT_integer) || (et.type == NT_float))
18051 goto neon_vmul;
18052 }
18053 else
18054 goto neon_vmul;
18055 }
18056
18057 constraint (rs != NS_QQQ, BAD_FPU);
18058 struct neon_type_el et = neon_check_type (3, rs, N_EQK , N_EQK,
18059 N_SU_32 | N_P8 | N_P16 | N_KEY);
18060
18061 /* We are dealing with MVE's vmullt. */
18062 if (et.size == 32
18063 && (inst.operands[0].reg == inst.operands[1].reg
18064 || inst.operands[0].reg == inst.operands[2].reg))
18065 as_tsktsk (BAD_MVE_SRCDEST);
18066
18067 if (inst.cond > COND_ALWAYS)
18068 inst.pred_insn_type = INSIDE_VPT_INSN;
18069 else
18070 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18071
18072 if (et.type == NT_poly)
18073 mve_encode_qqq (neon_logbits (et.size), 64);
18074 else
18075 mve_encode_qqq (et.type == NT_unsigned, et.size);
18076
18077 return;
18078
18079 neon_vmul:
18080 inst.instruction = N_MNEM_vmul;
18081 inst.cond = 0xb;
18082 if (thumb_mode)
18083 inst.pred_insn_type = INSIDE_IT_INSN;
18084 do_neon_mul ();
18085 }
18086
18087 static void
18088 do_mve_vabav (void)
18089 {
18090 enum neon_shape rs = neon_select_shape (NS_RQQ, NS_NULL);
18091
18092 if (rs == NS_NULL)
18093 return;
18094
18095 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18096 return;
18097
18098 struct neon_type_el et = neon_check_type (2, NS_NULL, N_EQK, N_KEY | N_S8
18099 | N_S16 | N_S32 | N_U8 | N_U16
18100 | N_U32);
18101
18102 if (inst.cond > COND_ALWAYS)
18103 inst.pred_insn_type = INSIDE_VPT_INSN;
18104 else
18105 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18106
18107 mve_encode_rqq (et.type == NT_unsigned, et.size);
18108 }
18109
18110 static void
18111 do_mve_vmladav (void)
18112 {
18113 enum neon_shape rs = neon_select_shape (NS_RQQ, NS_NULL);
18114 struct neon_type_el et = neon_check_type (3, rs,
18115 N_EQK, N_EQK, N_SU_MVE | N_KEY);
18116
18117 if (et.type == NT_unsigned
18118 && (inst.instruction == M_MNEM_vmladavx
18119 || inst.instruction == M_MNEM_vmladavax
18120 || inst.instruction == M_MNEM_vmlsdav
18121 || inst.instruction == M_MNEM_vmlsdava
18122 || inst.instruction == M_MNEM_vmlsdavx
18123 || inst.instruction == M_MNEM_vmlsdavax))
18124 first_error (BAD_SIMD_TYPE);
18125
18126 constraint (inst.operands[2].reg > 14,
18127 _("MVE vector register in the range [Q0..Q7] expected"));
18128
18129 if (inst.cond > COND_ALWAYS)
18130 inst.pred_insn_type = INSIDE_VPT_INSN;
18131 else
18132 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18133
18134 if (inst.instruction == M_MNEM_vmlsdav
18135 || inst.instruction == M_MNEM_vmlsdava
18136 || inst.instruction == M_MNEM_vmlsdavx
18137 || inst.instruction == M_MNEM_vmlsdavax)
18138 inst.instruction |= (et.size == 8) << 28;
18139 else
18140 inst.instruction |= (et.size == 8) << 8;
18141
18142 mve_encode_rqq (et.type == NT_unsigned, 64);
18143 inst.instruction |= (et.size == 32) << 16;
18144 }
18145
18146 static void
18147 do_mve_vmlaldav (void)
18148 {
18149 enum neon_shape rs = neon_select_shape (NS_RRQQ, NS_NULL);
18150 struct neon_type_el et
18151 = neon_check_type (4, rs, N_EQK, N_EQK, N_EQK,
18152 N_S16 | N_S32 | N_U16 | N_U32 | N_KEY);
18153
18154 if (et.type == NT_unsigned
18155 && (inst.instruction == M_MNEM_vmlsldav
18156 || inst.instruction == M_MNEM_vmlsldava
18157 || inst.instruction == M_MNEM_vmlsldavx
18158 || inst.instruction == M_MNEM_vmlsldavax))
18159 first_error (BAD_SIMD_TYPE);
18160
18161 if (inst.cond > COND_ALWAYS)
18162 inst.pred_insn_type = INSIDE_VPT_INSN;
18163 else
18164 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18165
18166 mve_encode_rrqq (et.type == NT_unsigned, et.size);
18167 }
18168
18169 static void
18170 do_mve_vrmlaldavh (void)
18171 {
18172 struct neon_type_el et;
18173 if (inst.instruction == M_MNEM_vrmlsldavh
18174 || inst.instruction == M_MNEM_vrmlsldavha
18175 || inst.instruction == M_MNEM_vrmlsldavhx
18176 || inst.instruction == M_MNEM_vrmlsldavhax)
18177 {
18178 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK, N_S32 | N_KEY);
18179 if (inst.operands[1].reg == REG_SP)
18180 as_tsktsk (MVE_BAD_SP);
18181 }
18182 else
18183 {
18184 if (inst.instruction == M_MNEM_vrmlaldavhx
18185 || inst.instruction == M_MNEM_vrmlaldavhax)
18186 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK, N_S32 | N_KEY);
18187 else
18188 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK,
18189 N_U32 | N_S32 | N_KEY);
18190 /* vrmlaldavh's encoding with SP as the second, odd, GPR operand may alias
18191 with vmax/min instructions, making the use of SP in assembly really
18192 nonsensical, so instead of issuing a warning like we do for other uses
18193 of SP for the odd register operand we error out. */
18194 constraint (inst.operands[1].reg == REG_SP, BAD_SP);
18195 }
18196
18197 /* Make sure we still check the second operand is an odd one and that PC is
18198 disallowed. This because we are parsing for any GPR operand, to be able
18199 to distinguish between giving a warning or an error for SP as described
18200 above. */
18201 constraint ((inst.operands[1].reg % 2) != 1, BAD_EVEN);
18202 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
18203
18204 if (inst.cond > COND_ALWAYS)
18205 inst.pred_insn_type = INSIDE_VPT_INSN;
18206 else
18207 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18208
18209 mve_encode_rrqq (et.type == NT_unsigned, 0);
18210 }
18211
18212
18213 static void
18214 do_mve_vmaxnmv (void)
18215 {
18216 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
18217 struct neon_type_el et
18218 = neon_check_type (2, rs, N_EQK, N_F_MVE | N_KEY);
18219
18220 if (inst.cond > COND_ALWAYS)
18221 inst.pred_insn_type = INSIDE_VPT_INSN;
18222 else
18223 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18224
18225 if (inst.operands[0].reg == REG_SP)
18226 as_tsktsk (MVE_BAD_SP);
18227 else if (inst.operands[0].reg == REG_PC)
18228 as_tsktsk (MVE_BAD_PC);
18229
18230 mve_encode_rq (et.size == 16, 64);
18231 }
18232
18233 static void
18234 do_mve_vmaxv (void)
18235 {
18236 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
18237 struct neon_type_el et;
18238
18239 if (inst.instruction == M_MNEM_vmaxv || inst.instruction == M_MNEM_vminv)
18240 et = neon_check_type (2, rs, N_EQK, N_SU_MVE | N_KEY);
18241 else
18242 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18243
18244 if (inst.cond > COND_ALWAYS)
18245 inst.pred_insn_type = INSIDE_VPT_INSN;
18246 else
18247 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18248
18249 if (inst.operands[0].reg == REG_SP)
18250 as_tsktsk (MVE_BAD_SP);
18251 else if (inst.operands[0].reg == REG_PC)
18252 as_tsktsk (MVE_BAD_PC);
18253
18254 mve_encode_rq (et.type == NT_unsigned, et.size);
18255 }
18256
18257
18258 static void
18259 do_neon_qrdmlah (void)
18260 {
18261 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18262 return;
18263 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18264 {
18265 /* Check we're on the correct architecture. */
18266 if (!mark_feature_used (&fpu_neon_ext_armv8))
18267 inst.error
18268 = _("instruction form not available on this architecture.");
18269 else if (!mark_feature_used (&fpu_neon_ext_v8_1))
18270 {
18271 as_warn (_("this instruction implies use of ARMv8.1 AdvSIMD."));
18272 record_feature_use (&fpu_neon_ext_v8_1);
18273 }
18274 if (inst.operands[2].isscalar)
18275 {
18276 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
18277 struct neon_type_el et = neon_check_type (3, rs,
18278 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18279 NEON_ENCODE (SCALAR, inst);
18280 neon_mul_mac (et, neon_quad (rs));
18281 }
18282 else
18283 {
18284 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18285 struct neon_type_el et = neon_check_type (3, rs,
18286 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18287 NEON_ENCODE (INTEGER, inst);
18288 /* The U bit (rounding) comes from bit mask. */
18289 neon_three_same (neon_quad (rs), 0, et.size);
18290 }
18291 }
18292 else
18293 {
18294 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
18295 struct neon_type_el et
18296 = neon_check_type (3, rs, N_EQK, N_EQK, N_S_32 | N_KEY);
18297
18298 NEON_ENCODE (INTEGER, inst);
18299 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
18300 }
18301 }
18302
18303 static void
18304 do_neon_fcmp_absolute (void)
18305 {
18306 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18307 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
18308 N_F_16_32 | N_KEY);
18309 /* Size field comes from bit mask. */
18310 neon_three_same (neon_quad (rs), 1, et.size == 16 ? (int) et.size : -1);
18311 }
18312
18313 static void
18314 do_neon_fcmp_absolute_inv (void)
18315 {
18316 neon_exchange_operands ();
18317 do_neon_fcmp_absolute ();
18318 }
18319
18320 static void
18321 do_neon_step (void)
18322 {
18323 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18324 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
18325 N_F_16_32 | N_KEY);
18326 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
18327 }
18328
18329 static void
18330 do_neon_abs_neg (void)
18331 {
18332 enum neon_shape rs;
18333 struct neon_type_el et;
18334
18335 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
18336 return;
18337
18338 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
18339 et = neon_check_type (2, rs, N_EQK, N_S_32 | N_F_16_32 | N_KEY);
18340
18341 if (!check_simd_pred_availability (et.type == NT_float,
18342 NEON_CHECK_ARCH | NEON_CHECK_CC))
18343 return;
18344
18345 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
18346 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
18347 inst.instruction |= LOW4 (inst.operands[1].reg);
18348 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
18349 inst.instruction |= neon_quad (rs) << 6;
18350 inst.instruction |= (et.type == NT_float) << 10;
18351 inst.instruction |= neon_logbits (et.size) << 18;
18352
18353 neon_dp_fixup (&inst);
18354 }
18355
18356 static void
18357 do_neon_sli (void)
18358 {
18359 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18360 return;
18361
18362 enum neon_shape rs;
18363 struct neon_type_el et;
18364 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18365 {
18366 rs = neon_select_shape (NS_QQI, NS_NULL);
18367 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18368 }
18369 else
18370 {
18371 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18372 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
18373 }
18374
18375
18376 int imm = inst.operands[2].imm;
18377 constraint (imm < 0 || (unsigned)imm >= et.size,
18378 _("immediate out of range for insert"));
18379 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
18380 }
18381
18382 static void
18383 do_neon_sri (void)
18384 {
18385 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18386 return;
18387
18388 enum neon_shape rs;
18389 struct neon_type_el et;
18390 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18391 {
18392 rs = neon_select_shape (NS_QQI, NS_NULL);
18393 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18394 }
18395 else
18396 {
18397 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18398 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
18399 }
18400
18401 int imm = inst.operands[2].imm;
18402 constraint (imm < 1 || (unsigned)imm > et.size,
18403 _("immediate out of range for insert"));
18404 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
18405 }
18406
18407 static void
18408 do_neon_qshlu_imm (void)
18409 {
18410 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18411 return;
18412
18413 enum neon_shape rs;
18414 struct neon_type_el et;
18415 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18416 {
18417 rs = neon_select_shape (NS_QQI, NS_NULL);
18418 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18419 }
18420 else
18421 {
18422 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18423 et = neon_check_type (2, rs, N_EQK | N_UNS,
18424 N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
18425 }
18426
18427 int imm = inst.operands[2].imm;
18428 constraint (imm < 0 || (unsigned)imm >= et.size,
18429 _("immediate out of range for shift"));
18430 /* Only encodes the 'U present' variant of the instruction.
18431 In this case, signed types have OP (bit 8) set to 0.
18432 Unsigned types have OP set to 1. */
18433 inst.instruction |= (et.type == NT_unsigned) << 8;
18434 /* The rest of the bits are the same as other immediate shifts. */
18435 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
18436 }
18437
18438 static void
18439 do_neon_qmovn (void)
18440 {
18441 struct neon_type_el et = neon_check_type (2, NS_DQ,
18442 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
18443 /* Saturating move where operands can be signed or unsigned, and the
18444 destination has the same signedness. */
18445 NEON_ENCODE (INTEGER, inst);
18446 if (et.type == NT_unsigned)
18447 inst.instruction |= 0xc0;
18448 else
18449 inst.instruction |= 0x80;
18450 neon_two_same (0, 1, et.size / 2);
18451 }
18452
18453 static void
18454 do_neon_qmovun (void)
18455 {
18456 struct neon_type_el et = neon_check_type (2, NS_DQ,
18457 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
18458 /* Saturating move with unsigned results. Operands must be signed. */
18459 NEON_ENCODE (INTEGER, inst);
18460 neon_two_same (0, 1, et.size / 2);
18461 }
18462
18463 static void
18464 do_neon_rshift_sat_narrow (void)
18465 {
18466 /* FIXME: Types for narrowing. If operands are signed, results can be signed
18467 or unsigned. If operands are unsigned, results must also be unsigned. */
18468 struct neon_type_el et = neon_check_type (2, NS_DQI,
18469 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
18470 int imm = inst.operands[2].imm;
18471 /* This gets the bounds check, size encoding and immediate bits calculation
18472 right. */
18473 et.size /= 2;
18474
18475 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
18476 VQMOVN.I<size> <Dd>, <Qm>. */
18477 if (imm == 0)
18478 {
18479 inst.operands[2].present = 0;
18480 inst.instruction = N_MNEM_vqmovn;
18481 do_neon_qmovn ();
18482 return;
18483 }
18484
18485 constraint (imm < 1 || (unsigned)imm > et.size,
18486 _("immediate out of range"));
18487 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
18488 }
18489
18490 static void
18491 do_neon_rshift_sat_narrow_u (void)
18492 {
18493 /* FIXME: Types for narrowing. If operands are signed, results can be signed
18494 or unsigned. If operands are unsigned, results must also be unsigned. */
18495 struct neon_type_el et = neon_check_type (2, NS_DQI,
18496 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
18497 int imm = inst.operands[2].imm;
18498 /* This gets the bounds check, size encoding and immediate bits calculation
18499 right. */
18500 et.size /= 2;
18501
18502 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
18503 VQMOVUN.I<size> <Dd>, <Qm>. */
18504 if (imm == 0)
18505 {
18506 inst.operands[2].present = 0;
18507 inst.instruction = N_MNEM_vqmovun;
18508 do_neon_qmovun ();
18509 return;
18510 }
18511
18512 constraint (imm < 1 || (unsigned)imm > et.size,
18513 _("immediate out of range"));
18514 /* FIXME: The manual is kind of unclear about what value U should have in
18515 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
18516 must be 1. */
18517 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
18518 }
18519
18520 static void
18521 do_neon_movn (void)
18522 {
18523 struct neon_type_el et = neon_check_type (2, NS_DQ,
18524 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
18525 NEON_ENCODE (INTEGER, inst);
18526 neon_two_same (0, 1, et.size / 2);
18527 }
18528
18529 static void
18530 do_neon_rshift_narrow (void)
18531 {
18532 struct neon_type_el et = neon_check_type (2, NS_DQI,
18533 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
18534 int imm = inst.operands[2].imm;
18535 /* This gets the bounds check, size encoding and immediate bits calculation
18536 right. */
18537 et.size /= 2;
18538
18539 /* If immediate is zero then we are a pseudo-instruction for
18540 VMOVN.I<size> <Dd>, <Qm> */
18541 if (imm == 0)
18542 {
18543 inst.operands[2].present = 0;
18544 inst.instruction = N_MNEM_vmovn;
18545 do_neon_movn ();
18546 return;
18547 }
18548
18549 constraint (imm < 1 || (unsigned)imm > et.size,
18550 _("immediate out of range for narrowing operation"));
18551 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
18552 }
18553
18554 static void
18555 do_neon_shll (void)
18556 {
18557 /* FIXME: Type checking when lengthening. */
18558 struct neon_type_el et = neon_check_type (2, NS_QDI,
18559 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
18560 unsigned imm = inst.operands[2].imm;
18561
18562 if (imm == et.size)
18563 {
18564 /* Maximum shift variant. */
18565 NEON_ENCODE (INTEGER, inst);
18566 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
18567 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
18568 inst.instruction |= LOW4 (inst.operands[1].reg);
18569 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
18570 inst.instruction |= neon_logbits (et.size) << 18;
18571
18572 neon_dp_fixup (&inst);
18573 }
18574 else
18575 {
18576 /* A more-specific type check for non-max versions. */
18577 et = neon_check_type (2, NS_QDI,
18578 N_EQK | N_DBL, N_SU_32 | N_KEY);
18579 NEON_ENCODE (IMMED, inst);
18580 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
18581 }
18582 }
18583
18584 /* Check the various types for the VCVT instruction, and return which version
18585 the current instruction is. */
18586
18587 #define CVT_FLAVOUR_VAR \
18588 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
18589 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
18590 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
18591 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
18592 /* Half-precision conversions. */ \
18593 CVT_VAR (s16_f16, N_S16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
18594 CVT_VAR (u16_f16, N_U16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
18595 CVT_VAR (f16_s16, N_F16 | N_KEY, N_S16, whole_reg, NULL, NULL, NULL) \
18596 CVT_VAR (f16_u16, N_F16 | N_KEY, N_U16, whole_reg, NULL, NULL, NULL) \
18597 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
18598 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
18599 /* New VCVT instructions introduced by ARMv8.2 fp16 extension. \
18600 Compared with single/double precision variants, only the co-processor \
18601 field is different, so the encoding flow is reused here. */ \
18602 CVT_VAR (f16_s32, N_F16 | N_KEY, N_S32, N_VFP, "fsltos", "fsitos", NULL) \
18603 CVT_VAR (f16_u32, N_F16 | N_KEY, N_U32, N_VFP, "fultos", "fuitos", NULL) \
18604 CVT_VAR (u32_f16, N_U32, N_F16 | N_KEY, N_VFP, "ftouls", "ftouis", "ftouizs")\
18605 CVT_VAR (s32_f16, N_S32, N_F16 | N_KEY, N_VFP, "ftosls", "ftosis", "ftosizs")\
18606 /* VFP instructions. */ \
18607 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
18608 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
18609 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
18610 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
18611 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
18612 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
18613 /* VFP instructions with bitshift. */ \
18614 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
18615 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
18616 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
18617 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
18618 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
18619 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
18620 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
18621 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
18622
18623 #define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
18624 neon_cvt_flavour_##C,
18625
18626 /* The different types of conversions we can do. */
18627 enum neon_cvt_flavour
18628 {
18629 CVT_FLAVOUR_VAR
18630 neon_cvt_flavour_invalid,
18631 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
18632 };
18633
18634 #undef CVT_VAR
18635
18636 static enum neon_cvt_flavour
18637 get_neon_cvt_flavour (enum neon_shape rs)
18638 {
18639 #define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
18640 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
18641 if (et.type != NT_invtype) \
18642 { \
18643 inst.error = NULL; \
18644 return (neon_cvt_flavour_##C); \
18645 }
18646
18647 struct neon_type_el et;
18648 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
18649 || rs == NS_FF) ? N_VFP : 0;
18650 /* The instruction versions which take an immediate take one register
18651 argument, which is extended to the width of the full register. Thus the
18652 "source" and "destination" registers must have the same width. Hack that
18653 here by making the size equal to the key (wider, in this case) operand. */
18654 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
18655
18656 CVT_FLAVOUR_VAR;
18657
18658 return neon_cvt_flavour_invalid;
18659 #undef CVT_VAR
18660 }
18661
18662 enum neon_cvt_mode
18663 {
18664 neon_cvt_mode_a,
18665 neon_cvt_mode_n,
18666 neon_cvt_mode_p,
18667 neon_cvt_mode_m,
18668 neon_cvt_mode_z,
18669 neon_cvt_mode_x,
18670 neon_cvt_mode_r
18671 };
18672
18673 /* Neon-syntax VFP conversions. */
18674
18675 static void
18676 do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
18677 {
18678 const char *opname = 0;
18679
18680 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI
18681 || rs == NS_FHI || rs == NS_HFI)
18682 {
18683 /* Conversions with immediate bitshift. */
18684 const char *enc[] =
18685 {
18686 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
18687 CVT_FLAVOUR_VAR
18688 NULL
18689 #undef CVT_VAR
18690 };
18691
18692 if (flavour < (int) ARRAY_SIZE (enc))
18693 {
18694 opname = enc[flavour];
18695 constraint (inst.operands[0].reg != inst.operands[1].reg,
18696 _("operands 0 and 1 must be the same register"));
18697 inst.operands[1] = inst.operands[2];
18698 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
18699 }
18700 }
18701 else
18702 {
18703 /* Conversions without bitshift. */
18704 const char *enc[] =
18705 {
18706 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
18707 CVT_FLAVOUR_VAR
18708 NULL
18709 #undef CVT_VAR
18710 };
18711
18712 if (flavour < (int) ARRAY_SIZE (enc))
18713 opname = enc[flavour];
18714 }
18715
18716 if (opname)
18717 do_vfp_nsyn_opcode (opname);
18718
18719 /* ARMv8.2 fp16 VCVT instruction. */
18720 if (flavour == neon_cvt_flavour_s32_f16
18721 || flavour == neon_cvt_flavour_u32_f16
18722 || flavour == neon_cvt_flavour_f16_u32
18723 || flavour == neon_cvt_flavour_f16_s32)
18724 do_scalar_fp16_v82_encode ();
18725 }
18726
18727 static void
18728 do_vfp_nsyn_cvtz (void)
18729 {
18730 enum neon_shape rs = neon_select_shape (NS_FH, NS_FF, NS_FD, NS_NULL);
18731 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
18732 const char *enc[] =
18733 {
18734 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
18735 CVT_FLAVOUR_VAR
18736 NULL
18737 #undef CVT_VAR
18738 };
18739
18740 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
18741 do_vfp_nsyn_opcode (enc[flavour]);
18742 }
18743
18744 static void
18745 do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
18746 enum neon_cvt_mode mode)
18747 {
18748 int sz, op;
18749 int rm;
18750
18751 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
18752 D register operands. */
18753 if (flavour == neon_cvt_flavour_s32_f64
18754 || flavour == neon_cvt_flavour_u32_f64)
18755 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
18756 _(BAD_FPU));
18757
18758 if (flavour == neon_cvt_flavour_s32_f16
18759 || flavour == neon_cvt_flavour_u32_f16)
18760 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
18761 _(BAD_FP16));
18762
18763 set_pred_insn_type (OUTSIDE_PRED_INSN);
18764
18765 switch (flavour)
18766 {
18767 case neon_cvt_flavour_s32_f64:
18768 sz = 1;
18769 op = 1;
18770 break;
18771 case neon_cvt_flavour_s32_f32:
18772 sz = 0;
18773 op = 1;
18774 break;
18775 case neon_cvt_flavour_s32_f16:
18776 sz = 0;
18777 op = 1;
18778 break;
18779 case neon_cvt_flavour_u32_f64:
18780 sz = 1;
18781 op = 0;
18782 break;
18783 case neon_cvt_flavour_u32_f32:
18784 sz = 0;
18785 op = 0;
18786 break;
18787 case neon_cvt_flavour_u32_f16:
18788 sz = 0;
18789 op = 0;
18790 break;
18791 default:
18792 first_error (_("invalid instruction shape"));
18793 return;
18794 }
18795
18796 switch (mode)
18797 {
18798 case neon_cvt_mode_a: rm = 0; break;
18799 case neon_cvt_mode_n: rm = 1; break;
18800 case neon_cvt_mode_p: rm = 2; break;
18801 case neon_cvt_mode_m: rm = 3; break;
18802 default: first_error (_("invalid rounding mode")); return;
18803 }
18804
18805 NEON_ENCODE (FPV8, inst);
18806 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
18807 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
18808 inst.instruction |= sz << 8;
18809
18810 /* ARMv8.2 fp16 VCVT instruction. */
18811 if (flavour == neon_cvt_flavour_s32_f16
18812 ||flavour == neon_cvt_flavour_u32_f16)
18813 do_scalar_fp16_v82_encode ();
18814 inst.instruction |= op << 7;
18815 inst.instruction |= rm << 16;
18816 inst.instruction |= 0xf0000000;
18817 inst.is_neon = TRUE;
18818 }
18819
18820 static void
18821 do_neon_cvt_1 (enum neon_cvt_mode mode)
18822 {
18823 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
18824 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ,
18825 NS_FH, NS_HF, NS_FHI, NS_HFI,
18826 NS_NULL);
18827 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
18828
18829 if (flavour == neon_cvt_flavour_invalid)
18830 return;
18831
18832 /* PR11109: Handle round-to-zero for VCVT conversions. */
18833 if (mode == neon_cvt_mode_z
18834 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
18835 && (flavour == neon_cvt_flavour_s16_f16
18836 || flavour == neon_cvt_flavour_u16_f16
18837 || flavour == neon_cvt_flavour_s32_f32
18838 || flavour == neon_cvt_flavour_u32_f32
18839 || flavour == neon_cvt_flavour_s32_f64
18840 || flavour == neon_cvt_flavour_u32_f64)
18841 && (rs == NS_FD || rs == NS_FF))
18842 {
18843 do_vfp_nsyn_cvtz ();
18844 return;
18845 }
18846
18847 /* ARMv8.2 fp16 VCVT conversions. */
18848 if (mode == neon_cvt_mode_z
18849 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16)
18850 && (flavour == neon_cvt_flavour_s32_f16
18851 || flavour == neon_cvt_flavour_u32_f16)
18852 && (rs == NS_FH))
18853 {
18854 do_vfp_nsyn_cvtz ();
18855 do_scalar_fp16_v82_encode ();
18856 return;
18857 }
18858
18859 /* VFP rather than Neon conversions. */
18860 if (flavour >= neon_cvt_flavour_first_fp)
18861 {
18862 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
18863 do_vfp_nsyn_cvt (rs, flavour);
18864 else
18865 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
18866
18867 return;
18868 }
18869
18870 switch (rs)
18871 {
18872 case NS_QQI:
18873 if (mode == neon_cvt_mode_z
18874 && (flavour == neon_cvt_flavour_f16_s16
18875 || flavour == neon_cvt_flavour_f16_u16
18876 || flavour == neon_cvt_flavour_s16_f16
18877 || flavour == neon_cvt_flavour_u16_f16
18878 || flavour == neon_cvt_flavour_f32_u32
18879 || flavour == neon_cvt_flavour_f32_s32
18880 || flavour == neon_cvt_flavour_s32_f32
18881 || flavour == neon_cvt_flavour_u32_f32))
18882 {
18883 if (!check_simd_pred_availability (TRUE,
18884 NEON_CHECK_CC | NEON_CHECK_ARCH))
18885 return;
18886 }
18887 else if (mode == neon_cvt_mode_n)
18888 {
18889 /* We are dealing with vcvt with the 'ne' condition. */
18890 inst.cond = 0x1;
18891 inst.instruction = N_MNEM_vcvt;
18892 do_neon_cvt_1 (neon_cvt_mode_z);
18893 return;
18894 }
18895 /* fall through. */
18896 case NS_DDI:
18897 {
18898 unsigned immbits;
18899 unsigned enctab[] = {0x0000100, 0x1000100, 0x0, 0x1000000,
18900 0x0000100, 0x1000100, 0x0, 0x1000000};
18901
18902 if ((rs != NS_QQI || !ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
18903 && vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
18904 return;
18905
18906 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
18907 {
18908 constraint (inst.operands[2].present && inst.operands[2].imm == 0,
18909 _("immediate value out of range"));
18910 switch (flavour)
18911 {
18912 case neon_cvt_flavour_f16_s16:
18913 case neon_cvt_flavour_f16_u16:
18914 case neon_cvt_flavour_s16_f16:
18915 case neon_cvt_flavour_u16_f16:
18916 constraint (inst.operands[2].imm > 16,
18917 _("immediate value out of range"));
18918 break;
18919 case neon_cvt_flavour_f32_u32:
18920 case neon_cvt_flavour_f32_s32:
18921 case neon_cvt_flavour_s32_f32:
18922 case neon_cvt_flavour_u32_f32:
18923 constraint (inst.operands[2].imm > 32,
18924 _("immediate value out of range"));
18925 break;
18926 default:
18927 inst.error = BAD_FPU;
18928 return;
18929 }
18930 }
18931
18932 /* Fixed-point conversion with #0 immediate is encoded as an
18933 integer conversion. */
18934 if (inst.operands[2].present && inst.operands[2].imm == 0)
18935 goto int_encode;
18936 NEON_ENCODE (IMMED, inst);
18937 if (flavour != neon_cvt_flavour_invalid)
18938 inst.instruction |= enctab[flavour];
18939 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
18940 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
18941 inst.instruction |= LOW4 (inst.operands[1].reg);
18942 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
18943 inst.instruction |= neon_quad (rs) << 6;
18944 inst.instruction |= 1 << 21;
18945 if (flavour < neon_cvt_flavour_s16_f16)
18946 {
18947 inst.instruction |= 1 << 21;
18948 immbits = 32 - inst.operands[2].imm;
18949 inst.instruction |= immbits << 16;
18950 }
18951 else
18952 {
18953 inst.instruction |= 3 << 20;
18954 immbits = 16 - inst.operands[2].imm;
18955 inst.instruction |= immbits << 16;
18956 inst.instruction &= ~(1 << 9);
18957 }
18958
18959 neon_dp_fixup (&inst);
18960 }
18961 break;
18962
18963 case NS_QQ:
18964 if ((mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
18965 || mode == neon_cvt_mode_m || mode == neon_cvt_mode_p)
18966 && (flavour == neon_cvt_flavour_s16_f16
18967 || flavour == neon_cvt_flavour_u16_f16
18968 || flavour == neon_cvt_flavour_s32_f32
18969 || flavour == neon_cvt_flavour_u32_f32))
18970 {
18971 if (!check_simd_pred_availability (TRUE,
18972 NEON_CHECK_CC | NEON_CHECK_ARCH8))
18973 return;
18974 }
18975 else if (mode == neon_cvt_mode_z
18976 && (flavour == neon_cvt_flavour_f16_s16
18977 || flavour == neon_cvt_flavour_f16_u16
18978 || flavour == neon_cvt_flavour_s16_f16
18979 || flavour == neon_cvt_flavour_u16_f16
18980 || flavour == neon_cvt_flavour_f32_u32
18981 || flavour == neon_cvt_flavour_f32_s32
18982 || flavour == neon_cvt_flavour_s32_f32
18983 || flavour == neon_cvt_flavour_u32_f32))
18984 {
18985 if (!check_simd_pred_availability (TRUE,
18986 NEON_CHECK_CC | NEON_CHECK_ARCH))
18987 return;
18988 }
18989 /* fall through. */
18990 case NS_DD:
18991 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
18992 {
18993
18994 NEON_ENCODE (FLOAT, inst);
18995 if (!check_simd_pred_availability (TRUE,
18996 NEON_CHECK_CC | NEON_CHECK_ARCH8))
18997 return;
18998
18999 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19000 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19001 inst.instruction |= LOW4 (inst.operands[1].reg);
19002 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19003 inst.instruction |= neon_quad (rs) << 6;
19004 inst.instruction |= (flavour == neon_cvt_flavour_u16_f16
19005 || flavour == neon_cvt_flavour_u32_f32) << 7;
19006 inst.instruction |= mode << 8;
19007 if (flavour == neon_cvt_flavour_u16_f16
19008 || flavour == neon_cvt_flavour_s16_f16)
19009 /* Mask off the original size bits and reencode them. */
19010 inst.instruction = ((inst.instruction & 0xfff3ffff) | (1 << 18));
19011
19012 if (thumb_mode)
19013 inst.instruction |= 0xfc000000;
19014 else
19015 inst.instruction |= 0xf0000000;
19016 }
19017 else
19018 {
19019 int_encode:
19020 {
19021 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080,
19022 0x100, 0x180, 0x0, 0x080};
19023
19024 NEON_ENCODE (INTEGER, inst);
19025
19026 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
19027 {
19028 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
19029 return;
19030 }
19031
19032 if (flavour != neon_cvt_flavour_invalid)
19033 inst.instruction |= enctab[flavour];
19034
19035 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19036 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19037 inst.instruction |= LOW4 (inst.operands[1].reg);
19038 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19039 inst.instruction |= neon_quad (rs) << 6;
19040 if (flavour >= neon_cvt_flavour_s16_f16
19041 && flavour <= neon_cvt_flavour_f16_u16)
19042 /* Half precision. */
19043 inst.instruction |= 1 << 18;
19044 else
19045 inst.instruction |= 2 << 18;
19046
19047 neon_dp_fixup (&inst);
19048 }
19049 }
19050 break;
19051
19052 /* Half-precision conversions for Advanced SIMD -- neon. */
19053 case NS_QD:
19054 case NS_DQ:
19055 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
19056 return;
19057
19058 if ((rs == NS_DQ)
19059 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
19060 {
19061 as_bad (_("operand size must match register width"));
19062 break;
19063 }
19064
19065 if ((rs == NS_QD)
19066 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
19067 {
19068 as_bad (_("operand size must match register width"));
19069 break;
19070 }
19071
19072 if (rs == NS_DQ)
19073 inst.instruction = 0x3b60600;
19074 else
19075 inst.instruction = 0x3b60700;
19076
19077 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19078 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19079 inst.instruction |= LOW4 (inst.operands[1].reg);
19080 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19081 neon_dp_fixup (&inst);
19082 break;
19083
19084 default:
19085 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
19086 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
19087 do_vfp_nsyn_cvt (rs, flavour);
19088 else
19089 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
19090 }
19091 }
19092
19093 static void
19094 do_neon_cvtr (void)
19095 {
19096 do_neon_cvt_1 (neon_cvt_mode_x);
19097 }
19098
19099 static void
19100 do_neon_cvt (void)
19101 {
19102 do_neon_cvt_1 (neon_cvt_mode_z);
19103 }
19104
19105 static void
19106 do_neon_cvta (void)
19107 {
19108 do_neon_cvt_1 (neon_cvt_mode_a);
19109 }
19110
19111 static void
19112 do_neon_cvtn (void)
19113 {
19114 do_neon_cvt_1 (neon_cvt_mode_n);
19115 }
19116
19117 static void
19118 do_neon_cvtp (void)
19119 {
19120 do_neon_cvt_1 (neon_cvt_mode_p);
19121 }
19122
19123 static void
19124 do_neon_cvtm (void)
19125 {
19126 do_neon_cvt_1 (neon_cvt_mode_m);
19127 }
19128
19129 static void
19130 do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
19131 {
19132 if (is_double)
19133 mark_feature_used (&fpu_vfp_ext_armv8);
19134
19135 encode_arm_vfp_reg (inst.operands[0].reg,
19136 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
19137 encode_arm_vfp_reg (inst.operands[1].reg,
19138 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
19139 inst.instruction |= to ? 0x10000 : 0;
19140 inst.instruction |= t ? 0x80 : 0;
19141 inst.instruction |= is_double ? 0x100 : 0;
19142 do_vfp_cond_or_thumb ();
19143 }
19144
19145 static void
19146 do_neon_cvttb_1 (bfd_boolean t)
19147 {
19148 enum neon_shape rs = neon_select_shape (NS_HF, NS_HD, NS_FH, NS_FF, NS_FD,
19149 NS_DF, NS_DH, NS_QQ, NS_QQI, NS_NULL);
19150
19151 if (rs == NS_NULL)
19152 return;
19153 else if (rs == NS_QQ || rs == NS_QQI)
19154 {
19155 int single_to_half = 0;
19156 if (!check_simd_pred_availability (TRUE, NEON_CHECK_ARCH))
19157 return;
19158
19159 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
19160
19161 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
19162 && (flavour == neon_cvt_flavour_u16_f16
19163 || flavour == neon_cvt_flavour_s16_f16
19164 || flavour == neon_cvt_flavour_f16_s16
19165 || flavour == neon_cvt_flavour_f16_u16
19166 || flavour == neon_cvt_flavour_u32_f32
19167 || flavour == neon_cvt_flavour_s32_f32
19168 || flavour == neon_cvt_flavour_f32_s32
19169 || flavour == neon_cvt_flavour_f32_u32))
19170 {
19171 inst.cond = 0xf;
19172 inst.instruction = N_MNEM_vcvt;
19173 set_pred_insn_type (INSIDE_VPT_INSN);
19174 do_neon_cvt_1 (neon_cvt_mode_z);
19175 return;
19176 }
19177 else if (rs == NS_QQ && flavour == neon_cvt_flavour_f32_f16)
19178 single_to_half = 1;
19179 else if (rs == NS_QQ && flavour != neon_cvt_flavour_f16_f32)
19180 {
19181 first_error (BAD_FPU);
19182 return;
19183 }
19184
19185 inst.instruction = 0xee3f0e01;
19186 inst.instruction |= single_to_half << 28;
19187 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19188 inst.instruction |= LOW4 (inst.operands[0].reg) << 13;
19189 inst.instruction |= t << 12;
19190 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19191 inst.instruction |= LOW4 (inst.operands[1].reg) << 1;
19192 inst.is_neon = 1;
19193 }
19194 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
19195 {
19196 inst.error = NULL;
19197 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
19198 }
19199 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
19200 {
19201 inst.error = NULL;
19202 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
19203 }
19204 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
19205 {
19206 /* The VCVTB and VCVTT instructions with D-register operands
19207 don't work for SP only targets. */
19208 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
19209 _(BAD_FPU));
19210
19211 inst.error = NULL;
19212 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
19213 }
19214 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
19215 {
19216 /* The VCVTB and VCVTT instructions with D-register operands
19217 don't work for SP only targets. */
19218 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
19219 _(BAD_FPU));
19220
19221 inst.error = NULL;
19222 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
19223 }
19224 else
19225 return;
19226 }
19227
19228 static void
19229 do_neon_cvtb (void)
19230 {
19231 do_neon_cvttb_1 (FALSE);
19232 }
19233
19234
19235 static void
19236 do_neon_cvtt (void)
19237 {
19238 do_neon_cvttb_1 (TRUE);
19239 }
19240
19241 static void
19242 neon_move_immediate (void)
19243 {
19244 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
19245 struct neon_type_el et = neon_check_type (2, rs,
19246 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
19247 unsigned immlo, immhi = 0, immbits;
19248 int op, cmode, float_p;
19249
19250 constraint (et.type == NT_invtype,
19251 _("operand size must be specified for immediate VMOV"));
19252
19253 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
19254 op = (inst.instruction & (1 << 5)) != 0;
19255
19256 immlo = inst.operands[1].imm;
19257 if (inst.operands[1].regisimm)
19258 immhi = inst.operands[1].reg;
19259
19260 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
19261 _("immediate has bits set outside the operand size"));
19262
19263 float_p = inst.operands[1].immisfloat;
19264
19265 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
19266 et.size, et.type)) == FAIL)
19267 {
19268 /* Invert relevant bits only. */
19269 neon_invert_size (&immlo, &immhi, et.size);
19270 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
19271 with one or the other; those cases are caught by
19272 neon_cmode_for_move_imm. */
19273 op = !op;
19274 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
19275 &op, et.size, et.type)) == FAIL)
19276 {
19277 first_error (_("immediate out of range"));
19278 return;
19279 }
19280 }
19281
19282 inst.instruction &= ~(1 << 5);
19283 inst.instruction |= op << 5;
19284
19285 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19286 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19287 inst.instruction |= neon_quad (rs) << 6;
19288 inst.instruction |= cmode << 8;
19289
19290 neon_write_immbits (immbits);
19291 }
19292
19293 static void
19294 do_neon_mvn (void)
19295 {
19296 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
19297 return;
19298
19299 if (inst.operands[1].isreg)
19300 {
19301 enum neon_shape rs;
19302 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19303 rs = neon_select_shape (NS_QQ, NS_NULL);
19304 else
19305 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
19306
19307 NEON_ENCODE (INTEGER, inst);
19308 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19309 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19310 inst.instruction |= LOW4 (inst.operands[1].reg);
19311 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19312 inst.instruction |= neon_quad (rs) << 6;
19313 }
19314 else
19315 {
19316 NEON_ENCODE (IMMED, inst);
19317 neon_move_immediate ();
19318 }
19319
19320 neon_dp_fixup (&inst);
19321
19322 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19323 {
19324 constraint (!inst.operands[1].isreg && !inst.operands[0].isquad, BAD_FPU);
19325 constraint ((inst.instruction & 0xd00) == 0xd00,
19326 _("immediate value out of range"));
19327 }
19328 }
19329
19330 /* Encode instructions of form:
19331
19332 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
19333 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
19334
19335 static void
19336 neon_mixed_length (struct neon_type_el et, unsigned size)
19337 {
19338 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19339 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19340 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
19341 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
19342 inst.instruction |= LOW4 (inst.operands[2].reg);
19343 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
19344 inst.instruction |= (et.type == NT_unsigned) << 24;
19345 inst.instruction |= neon_logbits (size) << 20;
19346
19347 neon_dp_fixup (&inst);
19348 }
19349
19350 static void
19351 do_neon_dyadic_long (void)
19352 {
19353 enum neon_shape rs = neon_select_shape (NS_QDD, NS_QQQ, NS_QQR, NS_NULL);
19354 if (rs == NS_QDD)
19355 {
19356 if (vfp_or_neon_is_neon (NEON_CHECK_ARCH | NEON_CHECK_CC) == FAIL)
19357 return;
19358
19359 NEON_ENCODE (INTEGER, inst);
19360 /* FIXME: Type checking for lengthening op. */
19361 struct neon_type_el et = neon_check_type (3, NS_QDD,
19362 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
19363 neon_mixed_length (et, et.size);
19364 }
19365 else if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
19366 && (inst.cond == 0xf || inst.cond == 0x10))
19367 {
19368 /* If parsing for MVE, vaddl/vsubl/vabdl{e,t} can only be vadd/vsub/vabd
19369 in an IT block with le/lt conditions. */
19370
19371 if (inst.cond == 0xf)
19372 inst.cond = 0xb;
19373 else if (inst.cond == 0x10)
19374 inst.cond = 0xd;
19375
19376 inst.pred_insn_type = INSIDE_IT_INSN;
19377
19378 if (inst.instruction == N_MNEM_vaddl)
19379 {
19380 inst.instruction = N_MNEM_vadd;
19381 do_neon_addsub_if_i ();
19382 }
19383 else if (inst.instruction == N_MNEM_vsubl)
19384 {
19385 inst.instruction = N_MNEM_vsub;
19386 do_neon_addsub_if_i ();
19387 }
19388 else if (inst.instruction == N_MNEM_vabdl)
19389 {
19390 inst.instruction = N_MNEM_vabd;
19391 do_neon_dyadic_if_su ();
19392 }
19393 }
19394 else
19395 first_error (BAD_FPU);
19396 }
19397
19398 static void
19399 do_neon_abal (void)
19400 {
19401 struct neon_type_el et = neon_check_type (3, NS_QDD,
19402 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
19403 neon_mixed_length (et, et.size);
19404 }
19405
19406 static void
19407 neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
19408 {
19409 if (inst.operands[2].isscalar)
19410 {
19411 struct neon_type_el et = neon_check_type (3, NS_QDS,
19412 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
19413 NEON_ENCODE (SCALAR, inst);
19414 neon_mul_mac (et, et.type == NT_unsigned);
19415 }
19416 else
19417 {
19418 struct neon_type_el et = neon_check_type (3, NS_QDD,
19419 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
19420 NEON_ENCODE (INTEGER, inst);
19421 neon_mixed_length (et, et.size);
19422 }
19423 }
19424
19425 static void
19426 do_neon_mac_maybe_scalar_long (void)
19427 {
19428 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
19429 }
19430
19431 /* Like neon_scalar_for_mul, this function generate Rm encoding from GAS's
19432 internal SCALAR. QUAD_P is 1 if it's for Q format, otherwise it's 0. */
19433
19434 static unsigned
19435 neon_scalar_for_fmac_fp16_long (unsigned scalar, unsigned quad_p)
19436 {
19437 unsigned regno = NEON_SCALAR_REG (scalar);
19438 unsigned elno = NEON_SCALAR_INDEX (scalar);
19439
19440 if (quad_p)
19441 {
19442 if (regno > 7 || elno > 3)
19443 goto bad_scalar;
19444
19445 return ((regno & 0x7)
19446 | ((elno & 0x1) << 3)
19447 | (((elno >> 1) & 0x1) << 5));
19448 }
19449 else
19450 {
19451 if (regno > 15 || elno > 1)
19452 goto bad_scalar;
19453
19454 return (((regno & 0x1) << 5)
19455 | ((regno >> 1) & 0x7)
19456 | ((elno & 0x1) << 3));
19457 }
19458
19459 bad_scalar:
19460 first_error (_("scalar out of range for multiply instruction"));
19461 return 0;
19462 }
19463
19464 static void
19465 do_neon_fmac_maybe_scalar_long (int subtype)
19466 {
19467 enum neon_shape rs;
19468 int high8;
19469 /* NOTE: vfmal/vfmsl use slightly different NEON three-same encoding. 'size"
19470 field (bits[21:20]) has different meaning. For scalar index variant, it's
19471 used to differentiate add and subtract, otherwise it's with fixed value
19472 0x2. */
19473 int size = -1;
19474
19475 if (inst.cond != COND_ALWAYS)
19476 as_warn (_("vfmal/vfmsl with FP16 type cannot be conditional, the "
19477 "behaviour is UNPREDICTABLE"));
19478
19479 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16_fml),
19480 _(BAD_FP16));
19481
19482 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
19483 _(BAD_FPU));
19484
19485 /* vfmal/vfmsl are in three-same D/Q register format or the third operand can
19486 be a scalar index register. */
19487 if (inst.operands[2].isscalar)
19488 {
19489 high8 = 0xfe000000;
19490 if (subtype)
19491 size = 16;
19492 rs = neon_select_shape (NS_DHS, NS_QDS, NS_NULL);
19493 }
19494 else
19495 {
19496 high8 = 0xfc000000;
19497 size = 32;
19498 if (subtype)
19499 inst.instruction |= (0x1 << 23);
19500 rs = neon_select_shape (NS_DHH, NS_QDD, NS_NULL);
19501 }
19502
19503 neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_F16);
19504
19505 /* "opcode" from template has included "ubit", so simply pass 0 here. Also,
19506 the "S" bit in size field has been reused to differentiate vfmal and vfmsl,
19507 so we simply pass -1 as size. */
19508 unsigned quad_p = (rs == NS_QDD || rs == NS_QDS);
19509 neon_three_same (quad_p, 0, size);
19510
19511 /* Undo neon_dp_fixup. Redo the high eight bits. */
19512 inst.instruction &= 0x00ffffff;
19513 inst.instruction |= high8;
19514
19515 #define LOW1(R) ((R) & 0x1)
19516 #define HI4(R) (((R) >> 1) & 0xf)
19517 /* Unlike usually NEON three-same, encoding for Vn and Vm will depend on
19518 whether the instruction is in Q form and whether Vm is a scalar indexed
19519 operand. */
19520 if (inst.operands[2].isscalar)
19521 {
19522 unsigned rm
19523 = neon_scalar_for_fmac_fp16_long (inst.operands[2].reg, quad_p);
19524 inst.instruction &= 0xffffffd0;
19525 inst.instruction |= rm;
19526
19527 if (!quad_p)
19528 {
19529 /* Redo Rn as well. */
19530 inst.instruction &= 0xfff0ff7f;
19531 inst.instruction |= HI4 (inst.operands[1].reg) << 16;
19532 inst.instruction |= LOW1 (inst.operands[1].reg) << 7;
19533 }
19534 }
19535 else if (!quad_p)
19536 {
19537 /* Redo Rn and Rm. */
19538 inst.instruction &= 0xfff0ff50;
19539 inst.instruction |= HI4 (inst.operands[1].reg) << 16;
19540 inst.instruction |= LOW1 (inst.operands[1].reg) << 7;
19541 inst.instruction |= HI4 (inst.operands[2].reg);
19542 inst.instruction |= LOW1 (inst.operands[2].reg) << 5;
19543 }
19544 }
19545
19546 static void
19547 do_neon_vfmal (void)
19548 {
19549 return do_neon_fmac_maybe_scalar_long (0);
19550 }
19551
19552 static void
19553 do_neon_vfmsl (void)
19554 {
19555 return do_neon_fmac_maybe_scalar_long (1);
19556 }
19557
19558 static void
19559 do_neon_dyadic_wide (void)
19560 {
19561 struct neon_type_el et = neon_check_type (3, NS_QQD,
19562 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
19563 neon_mixed_length (et, et.size);
19564 }
19565
19566 static void
19567 do_neon_dyadic_narrow (void)
19568 {
19569 struct neon_type_el et = neon_check_type (3, NS_QDD,
19570 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
19571 /* Operand sign is unimportant, and the U bit is part of the opcode,
19572 so force the operand type to integer. */
19573 et.type = NT_integer;
19574 neon_mixed_length (et, et.size / 2);
19575 }
19576
19577 static void
19578 do_neon_mul_sat_scalar_long (void)
19579 {
19580 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
19581 }
19582
19583 static void
19584 do_neon_vmull (void)
19585 {
19586 if (inst.operands[2].isscalar)
19587 do_neon_mac_maybe_scalar_long ();
19588 else
19589 {
19590 struct neon_type_el et = neon_check_type (3, NS_QDD,
19591 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
19592
19593 if (et.type == NT_poly)
19594 NEON_ENCODE (POLY, inst);
19595 else
19596 NEON_ENCODE (INTEGER, inst);
19597
19598 /* For polynomial encoding the U bit must be zero, and the size must
19599 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
19600 obviously, as 0b10). */
19601 if (et.size == 64)
19602 {
19603 /* Check we're on the correct architecture. */
19604 if (!mark_feature_used (&fpu_crypto_ext_armv8))
19605 inst.error =
19606 _("Instruction form not available on this architecture.");
19607
19608 et.size = 32;
19609 }
19610
19611 neon_mixed_length (et, et.size);
19612 }
19613 }
19614
19615 static void
19616 do_neon_ext (void)
19617 {
19618 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
19619 struct neon_type_el et = neon_check_type (3, rs,
19620 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
19621 unsigned imm = (inst.operands[3].imm * et.size) / 8;
19622
19623 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
19624 _("shift out of range"));
19625 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19626 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19627 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
19628 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
19629 inst.instruction |= LOW4 (inst.operands[2].reg);
19630 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
19631 inst.instruction |= neon_quad (rs) << 6;
19632 inst.instruction |= imm << 8;
19633
19634 neon_dp_fixup (&inst);
19635 }
19636
19637 static void
19638 do_neon_rev (void)
19639 {
19640 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
19641 return;
19642
19643 enum neon_shape rs;
19644 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19645 rs = neon_select_shape (NS_QQ, NS_NULL);
19646 else
19647 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
19648
19649 struct neon_type_el et = neon_check_type (2, rs,
19650 N_EQK, N_8 | N_16 | N_32 | N_KEY);
19651
19652 unsigned op = (inst.instruction >> 7) & 3;
19653 /* N (width of reversed regions) is encoded as part of the bitmask. We
19654 extract it here to check the elements to be reversed are smaller.
19655 Otherwise we'd get a reserved instruction. */
19656 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
19657
19658 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext) && elsize == 64
19659 && inst.operands[0].reg == inst.operands[1].reg)
19660 as_tsktsk (_("Warning: 64-bit element size and same destination and source"
19661 " operands makes instruction UNPREDICTABLE"));
19662
19663 gas_assert (elsize != 0);
19664 constraint (et.size >= elsize,
19665 _("elements must be smaller than reversal region"));
19666 neon_two_same (neon_quad (rs), 1, et.size);
19667 }
19668
19669 static void
19670 do_neon_dup (void)
19671 {
19672 if (inst.operands[1].isscalar)
19673 {
19674 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1),
19675 BAD_FPU);
19676 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
19677 struct neon_type_el et = neon_check_type (2, rs,
19678 N_EQK, N_8 | N_16 | N_32 | N_KEY);
19679 unsigned sizebits = et.size >> 3;
19680 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
19681 int logsize = neon_logbits (et.size);
19682 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
19683
19684 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
19685 return;
19686
19687 NEON_ENCODE (SCALAR, inst);
19688 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19689 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19690 inst.instruction |= LOW4 (dm);
19691 inst.instruction |= HI1 (dm) << 5;
19692 inst.instruction |= neon_quad (rs) << 6;
19693 inst.instruction |= x << 17;
19694 inst.instruction |= sizebits << 16;
19695
19696 neon_dp_fixup (&inst);
19697 }
19698 else
19699 {
19700 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
19701 struct neon_type_el et = neon_check_type (2, rs,
19702 N_8 | N_16 | N_32 | N_KEY, N_EQK);
19703 if (rs == NS_QR)
19704 {
19705 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH))
19706 return;
19707 }
19708 else
19709 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1),
19710 BAD_FPU);
19711
19712 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19713 {
19714 if (inst.operands[1].reg == REG_SP)
19715 as_tsktsk (MVE_BAD_SP);
19716 else if (inst.operands[1].reg == REG_PC)
19717 as_tsktsk (MVE_BAD_PC);
19718 }
19719
19720 /* Duplicate ARM register to lanes of vector. */
19721 NEON_ENCODE (ARMREG, inst);
19722 switch (et.size)
19723 {
19724 case 8: inst.instruction |= 0x400000; break;
19725 case 16: inst.instruction |= 0x000020; break;
19726 case 32: inst.instruction |= 0x000000; break;
19727 default: break;
19728 }
19729 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
19730 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
19731 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
19732 inst.instruction |= neon_quad (rs) << 21;
19733 /* The encoding for this instruction is identical for the ARM and Thumb
19734 variants, except for the condition field. */
19735 do_vfp_cond_or_thumb ();
19736 }
19737 }
19738
19739 static void
19740 do_mve_mov (int toQ)
19741 {
19742 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19743 return;
19744 if (inst.cond > COND_ALWAYS)
19745 inst.pred_insn_type = MVE_UNPREDICABLE_INSN;
19746
19747 unsigned Rt = 0, Rt2 = 1, Q0 = 2, Q1 = 3;
19748 if (toQ)
19749 {
19750 Q0 = 0;
19751 Q1 = 1;
19752 Rt = 2;
19753 Rt2 = 3;
19754 }
19755
19756 constraint (inst.operands[Q0].reg != inst.operands[Q1].reg + 2,
19757 _("Index one must be [2,3] and index two must be two less than"
19758 " index one."));
19759 constraint (inst.operands[Rt].reg == inst.operands[Rt2].reg,
19760 _("General purpose registers may not be the same"));
19761 constraint (inst.operands[Rt].reg == REG_SP
19762 || inst.operands[Rt2].reg == REG_SP,
19763 BAD_SP);
19764 constraint (inst.operands[Rt].reg == REG_PC
19765 || inst.operands[Rt2].reg == REG_PC,
19766 BAD_PC);
19767
19768 inst.instruction = 0xec000f00;
19769 inst.instruction |= HI1 (inst.operands[Q1].reg / 32) << 23;
19770 inst.instruction |= !!toQ << 20;
19771 inst.instruction |= inst.operands[Rt2].reg << 16;
19772 inst.instruction |= LOW4 (inst.operands[Q1].reg / 32) << 13;
19773 inst.instruction |= (inst.operands[Q1].reg % 4) << 4;
19774 inst.instruction |= inst.operands[Rt].reg;
19775 }
19776
19777 static void
19778 do_mve_movn (void)
19779 {
19780 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19781 return;
19782
19783 if (inst.cond > COND_ALWAYS)
19784 inst.pred_insn_type = INSIDE_VPT_INSN;
19785 else
19786 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
19787
19788 struct neon_type_el et = neon_check_type (2, NS_QQ, N_EQK, N_I16 | N_I32
19789 | N_KEY);
19790
19791 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19792 inst.instruction |= (neon_logbits (et.size) - 1) << 18;
19793 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19794 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19795 inst.instruction |= LOW4 (inst.operands[1].reg);
19796 inst.is_neon = 1;
19797
19798 }
19799
19800 /* VMOV has particularly many variations. It can be one of:
19801 0. VMOV<c><q> <Qd>, <Qm>
19802 1. VMOV<c><q> <Dd>, <Dm>
19803 (Register operations, which are VORR with Rm = Rn.)
19804 2. VMOV<c><q>.<dt> <Qd>, #<imm>
19805 3. VMOV<c><q>.<dt> <Dd>, #<imm>
19806 (Immediate loads.)
19807 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
19808 (ARM register to scalar.)
19809 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
19810 (Two ARM registers to vector.)
19811 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
19812 (Scalar to ARM register.)
19813 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
19814 (Vector to two ARM registers.)
19815 8. VMOV.F32 <Sd>, <Sm>
19816 9. VMOV.F64 <Dd>, <Dm>
19817 (VFP register moves.)
19818 10. VMOV.F32 <Sd>, #imm
19819 11. VMOV.F64 <Dd>, #imm
19820 (VFP float immediate load.)
19821 12. VMOV <Rd>, <Sm>
19822 (VFP single to ARM reg.)
19823 13. VMOV <Sd>, <Rm>
19824 (ARM reg to VFP single.)
19825 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
19826 (Two ARM regs to two VFP singles.)
19827 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
19828 (Two VFP singles to two ARM regs.)
19829 16. VMOV<c> <Rt>, <Rt2>, <Qd[idx]>, <Qd[idx2]>
19830 17. VMOV<c> <Qd[idx]>, <Qd[idx2]>, <Rt>, <Rt2>
19831 18. VMOV<c>.<dt> <Rt>, <Qn[idx]>
19832 19. VMOV<c>.<dt> <Qd[idx]>, <Rt>
19833
19834 These cases can be disambiguated using neon_select_shape, except cases 1/9
19835 and 3/11 which depend on the operand type too.
19836
19837 All the encoded bits are hardcoded by this function.
19838
19839 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
19840 Cases 5, 7 may be used with VFPv2 and above.
19841
19842 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
19843 can specify a type where it doesn't make sense to, and is ignored). */
19844
19845 static void
19846 do_neon_mov (void)
19847 {
19848 enum neon_shape rs = neon_select_shape (NS_RRSS, NS_SSRR, NS_RRFF, NS_FFRR,
19849 NS_DRR, NS_RRD, NS_QQ, NS_DD, NS_QI,
19850 NS_DI, NS_SR, NS_RS, NS_FF, NS_FI,
19851 NS_RF, NS_FR, NS_HR, NS_RH, NS_HI,
19852 NS_NULL);
19853 struct neon_type_el et;
19854 const char *ldconst = 0;
19855
19856 switch (rs)
19857 {
19858 case NS_DD: /* case 1/9. */
19859 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
19860 /* It is not an error here if no type is given. */
19861 inst.error = NULL;
19862
19863 /* In MVE we interpret the following instructions as same, so ignoring
19864 the following type (float) and size (64) checks.
19865 a: VMOV<c><q> <Dd>, <Dm>
19866 b: VMOV<c><q>.F64 <Dd>, <Dm>. */
19867 if ((et.type == NT_float && et.size == 64)
19868 || (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)))
19869 {
19870 do_vfp_nsyn_opcode ("fcpyd");
19871 break;
19872 }
19873 /* fall through. */
19874
19875 case NS_QQ: /* case 0/1. */
19876 {
19877 if (!check_simd_pred_availability (FALSE,
19878 NEON_CHECK_CC | NEON_CHECK_ARCH))
19879 return;
19880 /* The architecture manual I have doesn't explicitly state which
19881 value the U bit should have for register->register moves, but
19882 the equivalent VORR instruction has U = 0, so do that. */
19883 inst.instruction = 0x0200110;
19884 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19885 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19886 inst.instruction |= LOW4 (inst.operands[1].reg);
19887 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19888 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
19889 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
19890 inst.instruction |= neon_quad (rs) << 6;
19891
19892 neon_dp_fixup (&inst);
19893 }
19894 break;
19895
19896 case NS_DI: /* case 3/11. */
19897 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
19898 inst.error = NULL;
19899 if (et.type == NT_float && et.size == 64)
19900 {
19901 /* case 11 (fconstd). */
19902 ldconst = "fconstd";
19903 goto encode_fconstd;
19904 }
19905 /* fall through. */
19906
19907 case NS_QI: /* case 2/3. */
19908 if (!check_simd_pred_availability (FALSE,
19909 NEON_CHECK_CC | NEON_CHECK_ARCH))
19910 return;
19911 inst.instruction = 0x0800010;
19912 neon_move_immediate ();
19913 neon_dp_fixup (&inst);
19914 break;
19915
19916 case NS_SR: /* case 4. */
19917 {
19918 unsigned bcdebits = 0;
19919 int logsize;
19920 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
19921 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
19922
19923 /* .<size> is optional here, defaulting to .32. */
19924 if (inst.vectype.elems == 0
19925 && inst.operands[0].vectype.type == NT_invtype
19926 && inst.operands[1].vectype.type == NT_invtype)
19927 {
19928 inst.vectype.el[0].type = NT_untyped;
19929 inst.vectype.el[0].size = 32;
19930 inst.vectype.elems = 1;
19931 }
19932
19933 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
19934 logsize = neon_logbits (et.size);
19935
19936 if (et.size != 32)
19937 {
19938 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
19939 && vfp_or_neon_is_neon (NEON_CHECK_ARCH) == FAIL)
19940 return;
19941 }
19942 else
19943 {
19944 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
19945 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
19946 _(BAD_FPU));
19947 }
19948
19949 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19950 {
19951 if (inst.operands[1].reg == REG_SP)
19952 as_tsktsk (MVE_BAD_SP);
19953 else if (inst.operands[1].reg == REG_PC)
19954 as_tsktsk (MVE_BAD_PC);
19955 }
19956 unsigned size = inst.operands[0].isscalar == 1 ? 64 : 128;
19957
19958 constraint (et.type == NT_invtype, _("bad type for scalar"));
19959 constraint (x >= size / et.size, _("scalar index out of range"));
19960
19961
19962 switch (et.size)
19963 {
19964 case 8: bcdebits = 0x8; break;
19965 case 16: bcdebits = 0x1; break;
19966 case 32: bcdebits = 0x0; break;
19967 default: ;
19968 }
19969
19970 bcdebits |= (x & ((1 << (3-logsize)) - 1)) << logsize;
19971
19972 inst.instruction = 0xe000b10;
19973 do_vfp_cond_or_thumb ();
19974 inst.instruction |= LOW4 (dn) << 16;
19975 inst.instruction |= HI1 (dn) << 7;
19976 inst.instruction |= inst.operands[1].reg << 12;
19977 inst.instruction |= (bcdebits & 3) << 5;
19978 inst.instruction |= ((bcdebits >> 2) & 3) << 21;
19979 inst.instruction |= (x >> (3-logsize)) << 16;
19980 }
19981 break;
19982
19983 case NS_DRR: /* case 5 (fmdrr). */
19984 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
19985 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
19986 _(BAD_FPU));
19987
19988 inst.instruction = 0xc400b10;
19989 do_vfp_cond_or_thumb ();
19990 inst.instruction |= LOW4 (inst.operands[0].reg);
19991 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
19992 inst.instruction |= inst.operands[1].reg << 12;
19993 inst.instruction |= inst.operands[2].reg << 16;
19994 break;
19995
19996 case NS_RS: /* case 6. */
19997 {
19998 unsigned logsize;
19999 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
20000 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
20001 unsigned abcdebits = 0;
20002
20003 /* .<dt> is optional here, defaulting to .32. */
20004 if (inst.vectype.elems == 0
20005 && inst.operands[0].vectype.type == NT_invtype
20006 && inst.operands[1].vectype.type == NT_invtype)
20007 {
20008 inst.vectype.el[0].type = NT_untyped;
20009 inst.vectype.el[0].size = 32;
20010 inst.vectype.elems = 1;
20011 }
20012
20013 et = neon_check_type (2, NS_NULL,
20014 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
20015 logsize = neon_logbits (et.size);
20016
20017 if (et.size != 32)
20018 {
20019 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
20020 && vfp_or_neon_is_neon (NEON_CHECK_CC
20021 | NEON_CHECK_ARCH) == FAIL)
20022 return;
20023 }
20024 else
20025 {
20026 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
20027 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20028 _(BAD_FPU));
20029 }
20030
20031 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20032 {
20033 if (inst.operands[0].reg == REG_SP)
20034 as_tsktsk (MVE_BAD_SP);
20035 else if (inst.operands[0].reg == REG_PC)
20036 as_tsktsk (MVE_BAD_PC);
20037 }
20038
20039 unsigned size = inst.operands[1].isscalar == 1 ? 64 : 128;
20040
20041 constraint (et.type == NT_invtype, _("bad type for scalar"));
20042 constraint (x >= size / et.size, _("scalar index out of range"));
20043
20044 switch (et.size)
20045 {
20046 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
20047 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
20048 case 32: abcdebits = 0x00; break;
20049 default: ;
20050 }
20051
20052 abcdebits |= (x & ((1 << (3-logsize)) - 1)) << logsize;
20053 inst.instruction = 0xe100b10;
20054 do_vfp_cond_or_thumb ();
20055 inst.instruction |= LOW4 (dn) << 16;
20056 inst.instruction |= HI1 (dn) << 7;
20057 inst.instruction |= inst.operands[0].reg << 12;
20058 inst.instruction |= (abcdebits & 3) << 5;
20059 inst.instruction |= (abcdebits >> 2) << 21;
20060 inst.instruction |= (x >> (3-logsize)) << 16;
20061 }
20062 break;
20063
20064 case NS_RRD: /* case 7 (fmrrd). */
20065 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20066 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20067 _(BAD_FPU));
20068
20069 inst.instruction = 0xc500b10;
20070 do_vfp_cond_or_thumb ();
20071 inst.instruction |= inst.operands[0].reg << 12;
20072 inst.instruction |= inst.operands[1].reg << 16;
20073 inst.instruction |= LOW4 (inst.operands[2].reg);
20074 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
20075 break;
20076
20077 case NS_FF: /* case 8 (fcpys). */
20078 do_vfp_nsyn_opcode ("fcpys");
20079 break;
20080
20081 case NS_HI:
20082 case NS_FI: /* case 10 (fconsts). */
20083 ldconst = "fconsts";
20084 encode_fconstd:
20085 if (!inst.operands[1].immisfloat)
20086 {
20087 unsigned new_imm;
20088 /* Immediate has to fit in 8 bits so float is enough. */
20089 float imm = (float) inst.operands[1].imm;
20090 memcpy (&new_imm, &imm, sizeof (float));
20091 /* But the assembly may have been written to provide an integer
20092 bit pattern that equates to a float, so check that the
20093 conversion has worked. */
20094 if (is_quarter_float (new_imm))
20095 {
20096 if (is_quarter_float (inst.operands[1].imm))
20097 as_warn (_("immediate constant is valid both as a bit-pattern and a floating point value (using the fp value)"));
20098
20099 inst.operands[1].imm = new_imm;
20100 inst.operands[1].immisfloat = 1;
20101 }
20102 }
20103
20104 if (is_quarter_float (inst.operands[1].imm))
20105 {
20106 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
20107 do_vfp_nsyn_opcode (ldconst);
20108
20109 /* ARMv8.2 fp16 vmov.f16 instruction. */
20110 if (rs == NS_HI)
20111 do_scalar_fp16_v82_encode ();
20112 }
20113 else
20114 first_error (_("immediate out of range"));
20115 break;
20116
20117 case NS_RH:
20118 case NS_RF: /* case 12 (fmrs). */
20119 do_vfp_nsyn_opcode ("fmrs");
20120 /* ARMv8.2 fp16 vmov.f16 instruction. */
20121 if (rs == NS_RH)
20122 do_scalar_fp16_v82_encode ();
20123 break;
20124
20125 case NS_HR:
20126 case NS_FR: /* case 13 (fmsr). */
20127 do_vfp_nsyn_opcode ("fmsr");
20128 /* ARMv8.2 fp16 vmov.f16 instruction. */
20129 if (rs == NS_HR)
20130 do_scalar_fp16_v82_encode ();
20131 break;
20132
20133 case NS_RRSS:
20134 do_mve_mov (0);
20135 break;
20136 case NS_SSRR:
20137 do_mve_mov (1);
20138 break;
20139
20140 /* The encoders for the fmrrs and fmsrr instructions expect three operands
20141 (one of which is a list), but we have parsed four. Do some fiddling to
20142 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
20143 expect. */
20144 case NS_RRFF: /* case 14 (fmrrs). */
20145 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20146 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20147 _(BAD_FPU));
20148 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
20149 _("VFP registers must be adjacent"));
20150 inst.operands[2].imm = 2;
20151 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
20152 do_vfp_nsyn_opcode ("fmrrs");
20153 break;
20154
20155 case NS_FFRR: /* case 15 (fmsrr). */
20156 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20157 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20158 _(BAD_FPU));
20159 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
20160 _("VFP registers must be adjacent"));
20161 inst.operands[1] = inst.operands[2];
20162 inst.operands[2] = inst.operands[3];
20163 inst.operands[0].imm = 2;
20164 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
20165 do_vfp_nsyn_opcode ("fmsrr");
20166 break;
20167
20168 case NS_NULL:
20169 /* neon_select_shape has determined that the instruction
20170 shape is wrong and has already set the error message. */
20171 break;
20172
20173 default:
20174 abort ();
20175 }
20176 }
20177
20178 static void
20179 do_mve_movl (void)
20180 {
20181 if (!(inst.operands[0].present && inst.operands[0].isquad
20182 && inst.operands[1].present && inst.operands[1].isquad
20183 && !inst.operands[2].present))
20184 {
20185 inst.instruction = 0;
20186 inst.cond = 0xb;
20187 if (thumb_mode)
20188 set_pred_insn_type (INSIDE_IT_INSN);
20189 do_neon_mov ();
20190 return;
20191 }
20192
20193 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20194 return;
20195
20196 if (inst.cond != COND_ALWAYS)
20197 inst.pred_insn_type = INSIDE_VPT_INSN;
20198
20199 struct neon_type_el et = neon_check_type (2, NS_QQ, N_EQK, N_S8 | N_U8
20200 | N_S16 | N_U16 | N_KEY);
20201
20202 inst.instruction |= (et.type == NT_unsigned) << 28;
20203 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20204 inst.instruction |= (neon_logbits (et.size) + 1) << 19;
20205 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20206 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
20207 inst.instruction |= LOW4 (inst.operands[1].reg);
20208 inst.is_neon = 1;
20209 }
20210
20211 static void
20212 do_neon_rshift_round_imm (void)
20213 {
20214 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20215 return;
20216
20217 enum neon_shape rs;
20218 struct neon_type_el et;
20219
20220 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20221 {
20222 rs = neon_select_shape (NS_QQI, NS_NULL);
20223 et = neon_check_type (2, rs, N_EQK, N_SU_MVE | N_KEY);
20224 }
20225 else
20226 {
20227 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
20228 et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
20229 }
20230 int imm = inst.operands[2].imm;
20231
20232 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
20233 if (imm == 0)
20234 {
20235 inst.operands[2].present = 0;
20236 do_neon_mov ();
20237 return;
20238 }
20239
20240 constraint (imm < 1 || (unsigned)imm > et.size,
20241 _("immediate out of range for shift"));
20242 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
20243 et.size - imm);
20244 }
20245
20246 static void
20247 do_neon_movhf (void)
20248 {
20249 enum neon_shape rs = neon_select_shape (NS_HH, NS_NULL);
20250 constraint (rs != NS_HH, _("invalid suffix"));
20251
20252 if (inst.cond != COND_ALWAYS)
20253 {
20254 if (thumb_mode)
20255 {
20256 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
20257 " the behaviour is UNPREDICTABLE"));
20258 }
20259 else
20260 {
20261 inst.error = BAD_COND;
20262 return;
20263 }
20264 }
20265
20266 do_vfp_sp_monadic ();
20267
20268 inst.is_neon = 1;
20269 inst.instruction |= 0xf0000000;
20270 }
20271
20272 static void
20273 do_neon_movl (void)
20274 {
20275 struct neon_type_el et = neon_check_type (2, NS_QD,
20276 N_EQK | N_DBL, N_SU_32 | N_KEY);
20277 unsigned sizebits = et.size >> 3;
20278 inst.instruction |= sizebits << 19;
20279 neon_two_same (0, et.type == NT_unsigned, -1);
20280 }
20281
20282 static void
20283 do_neon_trn (void)
20284 {
20285 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20286 struct neon_type_el et = neon_check_type (2, rs,
20287 N_EQK, N_8 | N_16 | N_32 | N_KEY);
20288 NEON_ENCODE (INTEGER, inst);
20289 neon_two_same (neon_quad (rs), 1, et.size);
20290 }
20291
20292 static void
20293 do_neon_zip_uzp (void)
20294 {
20295 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20296 struct neon_type_el et = neon_check_type (2, rs,
20297 N_EQK, N_8 | N_16 | N_32 | N_KEY);
20298 if (rs == NS_DD && et.size == 32)
20299 {
20300 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
20301 inst.instruction = N_MNEM_vtrn;
20302 do_neon_trn ();
20303 return;
20304 }
20305 neon_two_same (neon_quad (rs), 1, et.size);
20306 }
20307
20308 static void
20309 do_neon_sat_abs_neg (void)
20310 {
20311 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
20312 return;
20313
20314 enum neon_shape rs;
20315 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20316 rs = neon_select_shape (NS_QQ, NS_NULL);
20317 else
20318 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20319 struct neon_type_el et = neon_check_type (2, rs,
20320 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
20321 neon_two_same (neon_quad (rs), 1, et.size);
20322 }
20323
20324 static void
20325 do_neon_pair_long (void)
20326 {
20327 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20328 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
20329 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
20330 inst.instruction |= (et.type == NT_unsigned) << 7;
20331 neon_two_same (neon_quad (rs), 1, et.size);
20332 }
20333
20334 static void
20335 do_neon_recip_est (void)
20336 {
20337 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20338 struct neon_type_el et = neon_check_type (2, rs,
20339 N_EQK | N_FLT, N_F_16_32 | N_U32 | N_KEY);
20340 inst.instruction |= (et.type == NT_float) << 8;
20341 neon_two_same (neon_quad (rs), 1, et.size);
20342 }
20343
20344 static void
20345 do_neon_cls (void)
20346 {
20347 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20348 return;
20349
20350 enum neon_shape rs;
20351 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20352 rs = neon_select_shape (NS_QQ, NS_NULL);
20353 else
20354 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20355
20356 struct neon_type_el et = neon_check_type (2, rs,
20357 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
20358 neon_two_same (neon_quad (rs), 1, et.size);
20359 }
20360
20361 static void
20362 do_neon_clz (void)
20363 {
20364 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20365 return;
20366
20367 enum neon_shape rs;
20368 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20369 rs = neon_select_shape (NS_QQ, NS_NULL);
20370 else
20371 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20372
20373 struct neon_type_el et = neon_check_type (2, rs,
20374 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
20375 neon_two_same (neon_quad (rs), 1, et.size);
20376 }
20377
20378 static void
20379 do_neon_cnt (void)
20380 {
20381 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20382 struct neon_type_el et = neon_check_type (2, rs,
20383 N_EQK | N_INT, N_8 | N_KEY);
20384 neon_two_same (neon_quad (rs), 1, et.size);
20385 }
20386
20387 static void
20388 do_neon_swp (void)
20389 {
20390 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20391 neon_two_same (neon_quad (rs), 1, -1);
20392 }
20393
20394 static void
20395 do_neon_tbl_tbx (void)
20396 {
20397 unsigned listlenbits;
20398 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
20399
20400 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
20401 {
20402 first_error (_("bad list length for table lookup"));
20403 return;
20404 }
20405
20406 listlenbits = inst.operands[1].imm - 1;
20407 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20408 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20409 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
20410 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
20411 inst.instruction |= LOW4 (inst.operands[2].reg);
20412 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
20413 inst.instruction |= listlenbits << 8;
20414
20415 neon_dp_fixup (&inst);
20416 }
20417
20418 static void
20419 do_neon_ldm_stm (void)
20420 {
20421 /* P, U and L bits are part of bitmask. */
20422 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
20423 unsigned offsetbits = inst.operands[1].imm * 2;
20424
20425 if (inst.operands[1].issingle)
20426 {
20427 do_vfp_nsyn_ldm_stm (is_dbmode);
20428 return;
20429 }
20430
20431 constraint (is_dbmode && !inst.operands[0].writeback,
20432 _("writeback (!) must be used for VLDMDB and VSTMDB"));
20433
20434 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
20435 _("register list must contain at least 1 and at most 16 "
20436 "registers"));
20437
20438 inst.instruction |= inst.operands[0].reg << 16;
20439 inst.instruction |= inst.operands[0].writeback << 21;
20440 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
20441 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
20442
20443 inst.instruction |= offsetbits;
20444
20445 do_vfp_cond_or_thumb ();
20446 }
20447
20448 static void
20449 do_neon_ldr_str (void)
20450 {
20451 int is_ldr = (inst.instruction & (1 << 20)) != 0;
20452
20453 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
20454 And is UNPREDICTABLE in thumb mode. */
20455 if (!is_ldr
20456 && inst.operands[1].reg == REG_PC
20457 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
20458 {
20459 if (thumb_mode)
20460 inst.error = _("Use of PC here is UNPREDICTABLE");
20461 else if (warn_on_deprecated)
20462 as_tsktsk (_("Use of PC here is deprecated"));
20463 }
20464
20465 if (inst.operands[0].issingle)
20466 {
20467 if (is_ldr)
20468 do_vfp_nsyn_opcode ("flds");
20469 else
20470 do_vfp_nsyn_opcode ("fsts");
20471
20472 /* ARMv8.2 vldr.16/vstr.16 instruction. */
20473 if (inst.vectype.el[0].size == 16)
20474 do_scalar_fp16_v82_encode ();
20475 }
20476 else
20477 {
20478 if (is_ldr)
20479 do_vfp_nsyn_opcode ("fldd");
20480 else
20481 do_vfp_nsyn_opcode ("fstd");
20482 }
20483 }
20484
20485 static void
20486 do_t_vldr_vstr_sysreg (void)
20487 {
20488 int fp_vldr_bitno = 20, sysreg_vldr_bitno = 20;
20489 bfd_boolean is_vldr = ((inst.instruction & (1 << fp_vldr_bitno)) != 0);
20490
20491 /* Use of PC is UNPREDICTABLE. */
20492 if (inst.operands[1].reg == REG_PC)
20493 inst.error = _("Use of PC here is UNPREDICTABLE");
20494
20495 if (inst.operands[1].immisreg)
20496 inst.error = _("instruction does not accept register index");
20497
20498 if (!inst.operands[1].isreg)
20499 inst.error = _("instruction does not accept PC-relative addressing");
20500
20501 if (abs (inst.operands[1].imm) >= (1 << 7))
20502 inst.error = _("immediate value out of range");
20503
20504 inst.instruction = 0xec000f80;
20505 if (is_vldr)
20506 inst.instruction |= 1 << sysreg_vldr_bitno;
20507 encode_arm_cp_address (1, TRUE, FALSE, BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM);
20508 inst.instruction |= (inst.operands[0].imm & 0x7) << 13;
20509 inst.instruction |= (inst.operands[0].imm & 0x8) << 19;
20510 }
20511
20512 static void
20513 do_vldr_vstr (void)
20514 {
20515 bfd_boolean sysreg_op = !inst.operands[0].isreg;
20516
20517 /* VLDR/VSTR (System Register). */
20518 if (sysreg_op)
20519 {
20520 if (!mark_feature_used (&arm_ext_v8_1m_main))
20521 as_bad (_("Instruction not permitted on this architecture"));
20522
20523 do_t_vldr_vstr_sysreg ();
20524 }
20525 /* VLDR/VSTR. */
20526 else
20527 {
20528 if (!mark_feature_used (&fpu_vfp_ext_v1xd))
20529 as_bad (_("Instruction not permitted on this architecture"));
20530 do_neon_ldr_str ();
20531 }
20532 }
20533
20534 /* "interleave" version also handles non-interleaving register VLD1/VST1
20535 instructions. */
20536
20537 static void
20538 do_neon_ld_st_interleave (void)
20539 {
20540 struct neon_type_el et = neon_check_type (1, NS_NULL,
20541 N_8 | N_16 | N_32 | N_64);
20542 unsigned alignbits = 0;
20543 unsigned idx;
20544 /* The bits in this table go:
20545 0: register stride of one (0) or two (1)
20546 1,2: register list length, minus one (1, 2, 3, 4).
20547 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
20548 We use -1 for invalid entries. */
20549 const int typetable[] =
20550 {
20551 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
20552 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
20553 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
20554 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
20555 };
20556 int typebits;
20557
20558 if (et.type == NT_invtype)
20559 return;
20560
20561 if (inst.operands[1].immisalign)
20562 switch (inst.operands[1].imm >> 8)
20563 {
20564 case 64: alignbits = 1; break;
20565 case 128:
20566 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
20567 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
20568 goto bad_alignment;
20569 alignbits = 2;
20570 break;
20571 case 256:
20572 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
20573 goto bad_alignment;
20574 alignbits = 3;
20575 break;
20576 default:
20577 bad_alignment:
20578 first_error (_("bad alignment"));
20579 return;
20580 }
20581
20582 inst.instruction |= alignbits << 4;
20583 inst.instruction |= neon_logbits (et.size) << 6;
20584
20585 /* Bits [4:6] of the immediate in a list specifier encode register stride
20586 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
20587 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
20588 up the right value for "type" in a table based on this value and the given
20589 list style, then stick it back. */
20590 idx = ((inst.operands[0].imm >> 4) & 7)
20591 | (((inst.instruction >> 8) & 3) << 3);
20592
20593 typebits = typetable[idx];
20594
20595 constraint (typebits == -1, _("bad list type for instruction"));
20596 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
20597 BAD_EL_TYPE);
20598
20599 inst.instruction &= ~0xf00;
20600 inst.instruction |= typebits << 8;
20601 }
20602
20603 /* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
20604 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
20605 otherwise. The variable arguments are a list of pairs of legal (size, align)
20606 values, terminated with -1. */
20607
20608 static int
20609 neon_alignment_bit (int size, int align, int *do_alignment, ...)
20610 {
20611 va_list ap;
20612 int result = FAIL, thissize, thisalign;
20613
20614 if (!inst.operands[1].immisalign)
20615 {
20616 *do_alignment = 0;
20617 return SUCCESS;
20618 }
20619
20620 va_start (ap, do_alignment);
20621
20622 do
20623 {
20624 thissize = va_arg (ap, int);
20625 if (thissize == -1)
20626 break;
20627 thisalign = va_arg (ap, int);
20628
20629 if (size == thissize && align == thisalign)
20630 result = SUCCESS;
20631 }
20632 while (result != SUCCESS);
20633
20634 va_end (ap);
20635
20636 if (result == SUCCESS)
20637 *do_alignment = 1;
20638 else
20639 first_error (_("unsupported alignment for instruction"));
20640
20641 return result;
20642 }
20643
20644 static void
20645 do_neon_ld_st_lane (void)
20646 {
20647 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
20648 int align_good, do_alignment = 0;
20649 int logsize = neon_logbits (et.size);
20650 int align = inst.operands[1].imm >> 8;
20651 int n = (inst.instruction >> 8) & 3;
20652 int max_el = 64 / et.size;
20653
20654 if (et.type == NT_invtype)
20655 return;
20656
20657 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
20658 _("bad list length"));
20659 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
20660 _("scalar index out of range"));
20661 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
20662 && et.size == 8,
20663 _("stride of 2 unavailable when element size is 8"));
20664
20665 switch (n)
20666 {
20667 case 0: /* VLD1 / VST1. */
20668 align_good = neon_alignment_bit (et.size, align, &do_alignment, 16, 16,
20669 32, 32, -1);
20670 if (align_good == FAIL)
20671 return;
20672 if (do_alignment)
20673 {
20674 unsigned alignbits = 0;
20675 switch (et.size)
20676 {
20677 case 16: alignbits = 0x1; break;
20678 case 32: alignbits = 0x3; break;
20679 default: ;
20680 }
20681 inst.instruction |= alignbits << 4;
20682 }
20683 break;
20684
20685 case 1: /* VLD2 / VST2. */
20686 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 16,
20687 16, 32, 32, 64, -1);
20688 if (align_good == FAIL)
20689 return;
20690 if (do_alignment)
20691 inst.instruction |= 1 << 4;
20692 break;
20693
20694 case 2: /* VLD3 / VST3. */
20695 constraint (inst.operands[1].immisalign,
20696 _("can't use alignment with this instruction"));
20697 break;
20698
20699 case 3: /* VLD4 / VST4. */
20700 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
20701 16, 64, 32, 64, 32, 128, -1);
20702 if (align_good == FAIL)
20703 return;
20704 if (do_alignment)
20705 {
20706 unsigned alignbits = 0;
20707 switch (et.size)
20708 {
20709 case 8: alignbits = 0x1; break;
20710 case 16: alignbits = 0x1; break;
20711 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
20712 default: ;
20713 }
20714 inst.instruction |= alignbits << 4;
20715 }
20716 break;
20717
20718 default: ;
20719 }
20720
20721 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
20722 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
20723 inst.instruction |= 1 << (4 + logsize);
20724
20725 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
20726 inst.instruction |= logsize << 10;
20727 }
20728
20729 /* Encode single n-element structure to all lanes VLD<n> instructions. */
20730
20731 static void
20732 do_neon_ld_dup (void)
20733 {
20734 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
20735 int align_good, do_alignment = 0;
20736
20737 if (et.type == NT_invtype)
20738 return;
20739
20740 switch ((inst.instruction >> 8) & 3)
20741 {
20742 case 0: /* VLD1. */
20743 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
20744 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
20745 &do_alignment, 16, 16, 32, 32, -1);
20746 if (align_good == FAIL)
20747 return;
20748 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
20749 {
20750 case 1: break;
20751 case 2: inst.instruction |= 1 << 5; break;
20752 default: first_error (_("bad list length")); return;
20753 }
20754 inst.instruction |= neon_logbits (et.size) << 6;
20755 break;
20756
20757 case 1: /* VLD2. */
20758 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
20759 &do_alignment, 8, 16, 16, 32, 32, 64,
20760 -1);
20761 if (align_good == FAIL)
20762 return;
20763 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
20764 _("bad list length"));
20765 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
20766 inst.instruction |= 1 << 5;
20767 inst.instruction |= neon_logbits (et.size) << 6;
20768 break;
20769
20770 case 2: /* VLD3. */
20771 constraint (inst.operands[1].immisalign,
20772 _("can't use alignment with this instruction"));
20773 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
20774 _("bad list length"));
20775 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
20776 inst.instruction |= 1 << 5;
20777 inst.instruction |= neon_logbits (et.size) << 6;
20778 break;
20779
20780 case 3: /* VLD4. */
20781 {
20782 int align = inst.operands[1].imm >> 8;
20783 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
20784 16, 64, 32, 64, 32, 128, -1);
20785 if (align_good == FAIL)
20786 return;
20787 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
20788 _("bad list length"));
20789 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
20790 inst.instruction |= 1 << 5;
20791 if (et.size == 32 && align == 128)
20792 inst.instruction |= 0x3 << 6;
20793 else
20794 inst.instruction |= neon_logbits (et.size) << 6;
20795 }
20796 break;
20797
20798 default: ;
20799 }
20800
20801 inst.instruction |= do_alignment << 4;
20802 }
20803
20804 /* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
20805 apart from bits [11:4]. */
20806
20807 static void
20808 do_neon_ldx_stx (void)
20809 {
20810 if (inst.operands[1].isreg)
20811 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
20812
20813 switch (NEON_LANE (inst.operands[0].imm))
20814 {
20815 case NEON_INTERLEAVE_LANES:
20816 NEON_ENCODE (INTERLV, inst);
20817 do_neon_ld_st_interleave ();
20818 break;
20819
20820 case NEON_ALL_LANES:
20821 NEON_ENCODE (DUP, inst);
20822 if (inst.instruction == N_INV)
20823 {
20824 first_error ("only loads support such operands");
20825 break;
20826 }
20827 do_neon_ld_dup ();
20828 break;
20829
20830 default:
20831 NEON_ENCODE (LANE, inst);
20832 do_neon_ld_st_lane ();
20833 }
20834
20835 /* L bit comes from bit mask. */
20836 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20837 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20838 inst.instruction |= inst.operands[1].reg << 16;
20839
20840 if (inst.operands[1].postind)
20841 {
20842 int postreg = inst.operands[1].imm & 0xf;
20843 constraint (!inst.operands[1].immisreg,
20844 _("post-index must be a register"));
20845 constraint (postreg == 0xd || postreg == 0xf,
20846 _("bad register for post-index"));
20847 inst.instruction |= postreg;
20848 }
20849 else
20850 {
20851 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
20852 constraint (inst.relocs[0].exp.X_op != O_constant
20853 || inst.relocs[0].exp.X_add_number != 0,
20854 BAD_ADDR_MODE);
20855
20856 if (inst.operands[1].writeback)
20857 {
20858 inst.instruction |= 0xd;
20859 }
20860 else
20861 inst.instruction |= 0xf;
20862 }
20863
20864 if (thumb_mode)
20865 inst.instruction |= 0xf9000000;
20866 else
20867 inst.instruction |= 0xf4000000;
20868 }
20869
20870 /* FP v8. */
20871 static void
20872 do_vfp_nsyn_fpv8 (enum neon_shape rs)
20873 {
20874 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
20875 D register operands. */
20876 if (neon_shape_class[rs] == SC_DOUBLE)
20877 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
20878 _(BAD_FPU));
20879
20880 NEON_ENCODE (FPV8, inst);
20881
20882 if (rs == NS_FFF || rs == NS_HHH)
20883 {
20884 do_vfp_sp_dyadic ();
20885
20886 /* ARMv8.2 fp16 instruction. */
20887 if (rs == NS_HHH)
20888 do_scalar_fp16_v82_encode ();
20889 }
20890 else
20891 do_vfp_dp_rd_rn_rm ();
20892
20893 if (rs == NS_DDD)
20894 inst.instruction |= 0x100;
20895
20896 inst.instruction |= 0xf0000000;
20897 }
20898
20899 static void
20900 do_vsel (void)
20901 {
20902 set_pred_insn_type (OUTSIDE_PRED_INSN);
20903
20904 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
20905 first_error (_("invalid instruction shape"));
20906 }
20907
20908 static void
20909 do_vmaxnm (void)
20910 {
20911 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20912 set_pred_insn_type (OUTSIDE_PRED_INSN);
20913
20914 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
20915 return;
20916
20917 if (!check_simd_pred_availability (TRUE, NEON_CHECK_CC | NEON_CHECK_ARCH8))
20918 return;
20919
20920 neon_dyadic_misc (NT_untyped, N_F_16_32, 0);
20921 }
20922
20923 static void
20924 do_vrint_1 (enum neon_cvt_mode mode)
20925 {
20926 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_QQ, NS_NULL);
20927 struct neon_type_el et;
20928
20929 if (rs == NS_NULL)
20930 return;
20931
20932 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
20933 D register operands. */
20934 if (neon_shape_class[rs] == SC_DOUBLE)
20935 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
20936 _(BAD_FPU));
20937
20938 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY
20939 | N_VFP);
20940 if (et.type != NT_invtype)
20941 {
20942 /* VFP encodings. */
20943 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
20944 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
20945 set_pred_insn_type (OUTSIDE_PRED_INSN);
20946
20947 NEON_ENCODE (FPV8, inst);
20948 if (rs == NS_FF || rs == NS_HH)
20949 do_vfp_sp_monadic ();
20950 else
20951 do_vfp_dp_rd_rm ();
20952
20953 switch (mode)
20954 {
20955 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
20956 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
20957 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
20958 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
20959 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
20960 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
20961 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
20962 default: abort ();
20963 }
20964
20965 inst.instruction |= (rs == NS_DD) << 8;
20966 do_vfp_cond_or_thumb ();
20967
20968 /* ARMv8.2 fp16 vrint instruction. */
20969 if (rs == NS_HH)
20970 do_scalar_fp16_v82_encode ();
20971 }
20972 else
20973 {
20974 /* Neon encodings (or something broken...). */
20975 inst.error = NULL;
20976 et = neon_check_type (2, rs, N_EQK, N_F_16_32 | N_KEY);
20977
20978 if (et.type == NT_invtype)
20979 return;
20980
20981 if (!check_simd_pred_availability (TRUE,
20982 NEON_CHECK_CC | NEON_CHECK_ARCH8))
20983 return;
20984
20985 NEON_ENCODE (FLOAT, inst);
20986
20987 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20988 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20989 inst.instruction |= LOW4 (inst.operands[1].reg);
20990 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
20991 inst.instruction |= neon_quad (rs) << 6;
20992 /* Mask off the original size bits and reencode them. */
20993 inst.instruction = ((inst.instruction & 0xfff3ffff)
20994 | neon_logbits (et.size) << 18);
20995
20996 switch (mode)
20997 {
20998 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
20999 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
21000 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
21001 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
21002 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
21003 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
21004 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
21005 default: abort ();
21006 }
21007
21008 if (thumb_mode)
21009 inst.instruction |= 0xfc000000;
21010 else
21011 inst.instruction |= 0xf0000000;
21012 }
21013 }
21014
21015 static void
21016 do_vrintx (void)
21017 {
21018 do_vrint_1 (neon_cvt_mode_x);
21019 }
21020
21021 static void
21022 do_vrintz (void)
21023 {
21024 do_vrint_1 (neon_cvt_mode_z);
21025 }
21026
21027 static void
21028 do_vrintr (void)
21029 {
21030 do_vrint_1 (neon_cvt_mode_r);
21031 }
21032
21033 static void
21034 do_vrinta (void)
21035 {
21036 do_vrint_1 (neon_cvt_mode_a);
21037 }
21038
21039 static void
21040 do_vrintn (void)
21041 {
21042 do_vrint_1 (neon_cvt_mode_n);
21043 }
21044
21045 static void
21046 do_vrintp (void)
21047 {
21048 do_vrint_1 (neon_cvt_mode_p);
21049 }
21050
21051 static void
21052 do_vrintm (void)
21053 {
21054 do_vrint_1 (neon_cvt_mode_m);
21055 }
21056
21057 static unsigned
21058 neon_scalar_for_vcmla (unsigned opnd, unsigned elsize)
21059 {
21060 unsigned regno = NEON_SCALAR_REG (opnd);
21061 unsigned elno = NEON_SCALAR_INDEX (opnd);
21062
21063 if (elsize == 16 && elno < 2 && regno < 16)
21064 return regno | (elno << 4);
21065 else if (elsize == 32 && elno == 0)
21066 return regno;
21067
21068 first_error (_("scalar out of range"));
21069 return 0;
21070 }
21071
21072 static void
21073 do_vcmla (void)
21074 {
21075 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext)
21076 && (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8)
21077 || !mark_feature_used (&arm_ext_v8_3)), (BAD_FPU));
21078 constraint (inst.relocs[0].exp.X_op != O_constant,
21079 _("expression too complex"));
21080 unsigned rot = inst.relocs[0].exp.X_add_number;
21081 constraint (rot != 0 && rot != 90 && rot != 180 && rot != 270,
21082 _("immediate out of range"));
21083 rot /= 90;
21084
21085 if (!check_simd_pred_availability (TRUE,
21086 NEON_CHECK_ARCH8 | NEON_CHECK_CC))
21087 return;
21088
21089 if (inst.operands[2].isscalar)
21090 {
21091 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
21092 first_error (_("invalid instruction shape"));
21093 enum neon_shape rs = neon_select_shape (NS_DDSI, NS_QQSI, NS_NULL);
21094 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
21095 N_KEY | N_F16 | N_F32).size;
21096 unsigned m = neon_scalar_for_vcmla (inst.operands[2].reg, size);
21097 inst.is_neon = 1;
21098 inst.instruction = 0xfe000800;
21099 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21100 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21101 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
21102 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
21103 inst.instruction |= LOW4 (m);
21104 inst.instruction |= HI1 (m) << 5;
21105 inst.instruction |= neon_quad (rs) << 6;
21106 inst.instruction |= rot << 20;
21107 inst.instruction |= (size == 32) << 23;
21108 }
21109 else
21110 {
21111 enum neon_shape rs;
21112 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
21113 rs = neon_select_shape (NS_QQQI, NS_NULL);
21114 else
21115 rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
21116
21117 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
21118 N_KEY | N_F16 | N_F32).size;
21119 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext) && size == 32
21120 && (inst.operands[0].reg == inst.operands[1].reg
21121 || inst.operands[0].reg == inst.operands[2].reg))
21122 as_tsktsk (BAD_MVE_SRCDEST);
21123
21124 neon_three_same (neon_quad (rs), 0, -1);
21125 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
21126 inst.instruction |= 0xfc200800;
21127 inst.instruction |= rot << 23;
21128 inst.instruction |= (size == 32) << 20;
21129 }
21130 }
21131
21132 static void
21133 do_vcadd (void)
21134 {
21135 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
21136 && (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8)
21137 || !mark_feature_used (&arm_ext_v8_3)), (BAD_FPU));
21138 constraint (inst.relocs[0].exp.X_op != O_constant,
21139 _("expression too complex"));
21140
21141 unsigned rot = inst.relocs[0].exp.X_add_number;
21142 constraint (rot != 90 && rot != 270, _("immediate out of range"));
21143 enum neon_shape rs;
21144 struct neon_type_el et;
21145 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
21146 {
21147 rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
21148 et = neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_F16 | N_F32);
21149 }
21150 else
21151 {
21152 rs = neon_select_shape (NS_QQQI, NS_NULL);
21153 et = neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_F16 | N_F32 | N_I8
21154 | N_I16 | N_I32);
21155 if (et.size == 32 && inst.operands[0].reg == inst.operands[2].reg)
21156 as_tsktsk (_("Warning: 32-bit element size and same first and third "
21157 "operand makes instruction UNPREDICTABLE"));
21158 }
21159
21160 if (et.type == NT_invtype)
21161 return;
21162
21163 if (!check_simd_pred_availability (et.type == NT_float,
21164 NEON_CHECK_ARCH8 | NEON_CHECK_CC))
21165 return;
21166
21167 if (et.type == NT_float)
21168 {
21169 neon_three_same (neon_quad (rs), 0, -1);
21170 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
21171 inst.instruction |= 0xfc800800;
21172 inst.instruction |= (rot == 270) << 24;
21173 inst.instruction |= (et.size == 32) << 20;
21174 }
21175 else
21176 {
21177 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
21178 inst.instruction = 0xfe000f00;
21179 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21180 inst.instruction |= neon_logbits (et.size) << 20;
21181 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
21182 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21183 inst.instruction |= (rot == 270) << 12;
21184 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
21185 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
21186 inst.instruction |= LOW4 (inst.operands[2].reg);
21187 inst.is_neon = 1;
21188 }
21189 }
21190
21191 /* Dot Product instructions encoding support. */
21192
21193 static void
21194 do_neon_dotproduct (int unsigned_p)
21195 {
21196 enum neon_shape rs;
21197 unsigned scalar_oprd2 = 0;
21198 int high8;
21199
21200 if (inst.cond != COND_ALWAYS)
21201 as_warn (_("Dot Product instructions cannot be conditional, the behaviour "
21202 "is UNPREDICTABLE"));
21203
21204 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
21205 _(BAD_FPU));
21206
21207 /* Dot Product instructions are in three-same D/Q register format or the third
21208 operand can be a scalar index register. */
21209 if (inst.operands[2].isscalar)
21210 {
21211 scalar_oprd2 = neon_scalar_for_mul (inst.operands[2].reg, 32);
21212 high8 = 0xfe000000;
21213 rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
21214 }
21215 else
21216 {
21217 high8 = 0xfc000000;
21218 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
21219 }
21220
21221 if (unsigned_p)
21222 neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_U8);
21223 else
21224 neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_S8);
21225
21226 /* The "U" bit in traditional Three Same encoding is fixed to 0 for Dot
21227 Product instruction, so we pass 0 as the "ubit" parameter. And the
21228 "Size" field are fixed to 0x2, so we pass 32 as the "size" parameter. */
21229 neon_three_same (neon_quad (rs), 0, 32);
21230
21231 /* Undo neon_dp_fixup. Dot Product instructions are using a slightly
21232 different NEON three-same encoding. */
21233 inst.instruction &= 0x00ffffff;
21234 inst.instruction |= high8;
21235 /* Encode 'U' bit which indicates signedness. */
21236 inst.instruction |= (unsigned_p ? 1 : 0) << 4;
21237 /* Re-encode operand2 if it's indexed scalar operand. What has been encoded
21238 from inst.operand[2].reg in neon_three_same is GAS's internal encoding, not
21239 the instruction encoding. */
21240 if (inst.operands[2].isscalar)
21241 {
21242 inst.instruction &= 0xffffffd0;
21243 inst.instruction |= LOW4 (scalar_oprd2);
21244 inst.instruction |= HI1 (scalar_oprd2) << 5;
21245 }
21246 }
21247
21248 /* Dot Product instructions for signed integer. */
21249
21250 static void
21251 do_neon_dotproduct_s (void)
21252 {
21253 return do_neon_dotproduct (0);
21254 }
21255
21256 /* Dot Product instructions for unsigned integer. */
21257
21258 static void
21259 do_neon_dotproduct_u (void)
21260 {
21261 return do_neon_dotproduct (1);
21262 }
21263
21264 /* Crypto v1 instructions. */
21265 static void
21266 do_crypto_2op_1 (unsigned elttype, int op)
21267 {
21268 set_pred_insn_type (OUTSIDE_PRED_INSN);
21269
21270 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
21271 == NT_invtype)
21272 return;
21273
21274 inst.error = NULL;
21275
21276 NEON_ENCODE (INTEGER, inst);
21277 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21278 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21279 inst.instruction |= LOW4 (inst.operands[1].reg);
21280 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
21281 if (op != -1)
21282 inst.instruction |= op << 6;
21283
21284 if (thumb_mode)
21285 inst.instruction |= 0xfc000000;
21286 else
21287 inst.instruction |= 0xf0000000;
21288 }
21289
21290 static void
21291 do_crypto_3op_1 (int u, int op)
21292 {
21293 set_pred_insn_type (OUTSIDE_PRED_INSN);
21294
21295 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
21296 N_32 | N_UNT | N_KEY).type == NT_invtype)
21297 return;
21298
21299 inst.error = NULL;
21300
21301 NEON_ENCODE (INTEGER, inst);
21302 neon_three_same (1, u, 8 << op);
21303 }
21304
21305 static void
21306 do_aese (void)
21307 {
21308 do_crypto_2op_1 (N_8, 0);
21309 }
21310
21311 static void
21312 do_aesd (void)
21313 {
21314 do_crypto_2op_1 (N_8, 1);
21315 }
21316
21317 static void
21318 do_aesmc (void)
21319 {
21320 do_crypto_2op_1 (N_8, 2);
21321 }
21322
21323 static void
21324 do_aesimc (void)
21325 {
21326 do_crypto_2op_1 (N_8, 3);
21327 }
21328
21329 static void
21330 do_sha1c (void)
21331 {
21332 do_crypto_3op_1 (0, 0);
21333 }
21334
21335 static void
21336 do_sha1p (void)
21337 {
21338 do_crypto_3op_1 (0, 1);
21339 }
21340
21341 static void
21342 do_sha1m (void)
21343 {
21344 do_crypto_3op_1 (0, 2);
21345 }
21346
21347 static void
21348 do_sha1su0 (void)
21349 {
21350 do_crypto_3op_1 (0, 3);
21351 }
21352
21353 static void
21354 do_sha256h (void)
21355 {
21356 do_crypto_3op_1 (1, 0);
21357 }
21358
21359 static void
21360 do_sha256h2 (void)
21361 {
21362 do_crypto_3op_1 (1, 1);
21363 }
21364
21365 static void
21366 do_sha256su1 (void)
21367 {
21368 do_crypto_3op_1 (1, 2);
21369 }
21370
21371 static void
21372 do_sha1h (void)
21373 {
21374 do_crypto_2op_1 (N_32, -1);
21375 }
21376
21377 static void
21378 do_sha1su1 (void)
21379 {
21380 do_crypto_2op_1 (N_32, 0);
21381 }
21382
21383 static void
21384 do_sha256su0 (void)
21385 {
21386 do_crypto_2op_1 (N_32, 1);
21387 }
21388
21389 static void
21390 do_crc32_1 (unsigned int poly, unsigned int sz)
21391 {
21392 unsigned int Rd = inst.operands[0].reg;
21393 unsigned int Rn = inst.operands[1].reg;
21394 unsigned int Rm = inst.operands[2].reg;
21395
21396 set_pred_insn_type (OUTSIDE_PRED_INSN);
21397 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
21398 inst.instruction |= LOW4 (Rn) << 16;
21399 inst.instruction |= LOW4 (Rm);
21400 inst.instruction |= sz << (thumb_mode ? 4 : 21);
21401 inst.instruction |= poly << (thumb_mode ? 20 : 9);
21402
21403 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
21404 as_warn (UNPRED_REG ("r15"));
21405 }
21406
21407 static void
21408 do_crc32b (void)
21409 {
21410 do_crc32_1 (0, 0);
21411 }
21412
21413 static void
21414 do_crc32h (void)
21415 {
21416 do_crc32_1 (0, 1);
21417 }
21418
21419 static void
21420 do_crc32w (void)
21421 {
21422 do_crc32_1 (0, 2);
21423 }
21424
21425 static void
21426 do_crc32cb (void)
21427 {
21428 do_crc32_1 (1, 0);
21429 }
21430
21431 static void
21432 do_crc32ch (void)
21433 {
21434 do_crc32_1 (1, 1);
21435 }
21436
21437 static void
21438 do_crc32cw (void)
21439 {
21440 do_crc32_1 (1, 2);
21441 }
21442
21443 static void
21444 do_vjcvt (void)
21445 {
21446 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
21447 _(BAD_FPU));
21448 neon_check_type (2, NS_FD, N_S32, N_F64);
21449 do_vfp_sp_dp_cvt ();
21450 do_vfp_cond_or_thumb ();
21451 }
21452
21453 \f
21454 /* Overall per-instruction processing. */
21455
21456 /* We need to be able to fix up arbitrary expressions in some statements.
21457 This is so that we can handle symbols that are an arbitrary distance from
21458 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
21459 which returns part of an address in a form which will be valid for
21460 a data instruction. We do this by pushing the expression into a symbol
21461 in the expr_section, and creating a fix for that. */
21462
21463 static void
21464 fix_new_arm (fragS * frag,
21465 int where,
21466 short int size,
21467 expressionS * exp,
21468 int pc_rel,
21469 int reloc)
21470 {
21471 fixS * new_fix;
21472
21473 switch (exp->X_op)
21474 {
21475 case O_constant:
21476 if (pc_rel)
21477 {
21478 /* Create an absolute valued symbol, so we have something to
21479 refer to in the object file. Unfortunately for us, gas's
21480 generic expression parsing will already have folded out
21481 any use of .set foo/.type foo %function that may have
21482 been used to set type information of the target location,
21483 that's being specified symbolically. We have to presume
21484 the user knows what they are doing. */
21485 char name[16 + 8];
21486 symbolS *symbol;
21487
21488 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
21489
21490 symbol = symbol_find_or_make (name);
21491 S_SET_SEGMENT (symbol, absolute_section);
21492 symbol_set_frag (symbol, &zero_address_frag);
21493 S_SET_VALUE (symbol, exp->X_add_number);
21494 exp->X_op = O_symbol;
21495 exp->X_add_symbol = symbol;
21496 exp->X_add_number = 0;
21497 }
21498 /* FALLTHROUGH */
21499 case O_symbol:
21500 case O_add:
21501 case O_subtract:
21502 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
21503 (enum bfd_reloc_code_real) reloc);
21504 break;
21505
21506 default:
21507 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
21508 pc_rel, (enum bfd_reloc_code_real) reloc);
21509 break;
21510 }
21511
21512 /* Mark whether the fix is to a THUMB instruction, or an ARM
21513 instruction. */
21514 new_fix->tc_fix_data = thumb_mode;
21515 }
21516
21517 /* Create a frg for an instruction requiring relaxation. */
21518 static void
21519 output_relax_insn (void)
21520 {
21521 char * to;
21522 symbolS *sym;
21523 int offset;
21524
21525 /* The size of the instruction is unknown, so tie the debug info to the
21526 start of the instruction. */
21527 dwarf2_emit_insn (0);
21528
21529 switch (inst.relocs[0].exp.X_op)
21530 {
21531 case O_symbol:
21532 sym = inst.relocs[0].exp.X_add_symbol;
21533 offset = inst.relocs[0].exp.X_add_number;
21534 break;
21535 case O_constant:
21536 sym = NULL;
21537 offset = inst.relocs[0].exp.X_add_number;
21538 break;
21539 default:
21540 sym = make_expr_symbol (&inst.relocs[0].exp);
21541 offset = 0;
21542 break;
21543 }
21544 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
21545 inst.relax, sym, offset, NULL/*offset, opcode*/);
21546 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
21547 }
21548
21549 /* Write a 32-bit thumb instruction to buf. */
21550 static void
21551 put_thumb32_insn (char * buf, unsigned long insn)
21552 {
21553 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
21554 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
21555 }
21556
21557 static void
21558 output_inst (const char * str)
21559 {
21560 char * to = NULL;
21561
21562 if (inst.error)
21563 {
21564 as_bad ("%s -- `%s'", inst.error, str);
21565 return;
21566 }
21567 if (inst.relax)
21568 {
21569 output_relax_insn ();
21570 return;
21571 }
21572 if (inst.size == 0)
21573 return;
21574
21575 to = frag_more (inst.size);
21576 /* PR 9814: Record the thumb mode into the current frag so that we know
21577 what type of NOP padding to use, if necessary. We override any previous
21578 setting so that if the mode has changed then the NOPS that we use will
21579 match the encoding of the last instruction in the frag. */
21580 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
21581
21582 if (thumb_mode && (inst.size > THUMB_SIZE))
21583 {
21584 gas_assert (inst.size == (2 * THUMB_SIZE));
21585 put_thumb32_insn (to, inst.instruction);
21586 }
21587 else if (inst.size > INSN_SIZE)
21588 {
21589 gas_assert (inst.size == (2 * INSN_SIZE));
21590 md_number_to_chars (to, inst.instruction, INSN_SIZE);
21591 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
21592 }
21593 else
21594 md_number_to_chars (to, inst.instruction, inst.size);
21595
21596 int r;
21597 for (r = 0; r < ARM_IT_MAX_RELOCS; r++)
21598 {
21599 if (inst.relocs[r].type != BFD_RELOC_UNUSED)
21600 fix_new_arm (frag_now, to - frag_now->fr_literal,
21601 inst.size, & inst.relocs[r].exp, inst.relocs[r].pc_rel,
21602 inst.relocs[r].type);
21603 }
21604
21605 dwarf2_emit_insn (inst.size);
21606 }
21607
21608 static char *
21609 output_it_inst (int cond, int mask, char * to)
21610 {
21611 unsigned long instruction = 0xbf00;
21612
21613 mask &= 0xf;
21614 instruction |= mask;
21615 instruction |= cond << 4;
21616
21617 if (to == NULL)
21618 {
21619 to = frag_more (2);
21620 #ifdef OBJ_ELF
21621 dwarf2_emit_insn (2);
21622 #endif
21623 }
21624
21625 md_number_to_chars (to, instruction, 2);
21626
21627 return to;
21628 }
21629
21630 /* Tag values used in struct asm_opcode's tag field. */
21631 enum opcode_tag
21632 {
21633 OT_unconditional, /* Instruction cannot be conditionalized.
21634 The ARM condition field is still 0xE. */
21635 OT_unconditionalF, /* Instruction cannot be conditionalized
21636 and carries 0xF in its ARM condition field. */
21637 OT_csuffix, /* Instruction takes a conditional suffix. */
21638 OT_csuffixF, /* Some forms of the instruction take a scalar
21639 conditional suffix, others place 0xF where the
21640 condition field would be, others take a vector
21641 conditional suffix. */
21642 OT_cinfix3, /* Instruction takes a conditional infix,
21643 beginning at character index 3. (In
21644 unified mode, it becomes a suffix.) */
21645 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
21646 tsts, cmps, cmns, and teqs. */
21647 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
21648 character index 3, even in unified mode. Used for
21649 legacy instructions where suffix and infix forms
21650 may be ambiguous. */
21651 OT_csuf_or_in3, /* Instruction takes either a conditional
21652 suffix or an infix at character index 3. */
21653 OT_odd_infix_unc, /* This is the unconditional variant of an
21654 instruction that takes a conditional infix
21655 at an unusual position. In unified mode,
21656 this variant will accept a suffix. */
21657 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
21658 are the conditional variants of instructions that
21659 take conditional infixes in unusual positions.
21660 The infix appears at character index
21661 (tag - OT_odd_infix_0). These are not accepted
21662 in unified mode. */
21663 };
21664
21665 /* Subroutine of md_assemble, responsible for looking up the primary
21666 opcode from the mnemonic the user wrote. STR points to the
21667 beginning of the mnemonic.
21668
21669 This is not simply a hash table lookup, because of conditional
21670 variants. Most instructions have conditional variants, which are
21671 expressed with a _conditional affix_ to the mnemonic. If we were
21672 to encode each conditional variant as a literal string in the opcode
21673 table, it would have approximately 20,000 entries.
21674
21675 Most mnemonics take this affix as a suffix, and in unified syntax,
21676 'most' is upgraded to 'all'. However, in the divided syntax, some
21677 instructions take the affix as an infix, notably the s-variants of
21678 the arithmetic instructions. Of those instructions, all but six
21679 have the infix appear after the third character of the mnemonic.
21680
21681 Accordingly, the algorithm for looking up primary opcodes given
21682 an identifier is:
21683
21684 1. Look up the identifier in the opcode table.
21685 If we find a match, go to step U.
21686
21687 2. Look up the last two characters of the identifier in the
21688 conditions table. If we find a match, look up the first N-2
21689 characters of the identifier in the opcode table. If we
21690 find a match, go to step CE.
21691
21692 3. Look up the fourth and fifth characters of the identifier in
21693 the conditions table. If we find a match, extract those
21694 characters from the identifier, and look up the remaining
21695 characters in the opcode table. If we find a match, go
21696 to step CM.
21697
21698 4. Fail.
21699
21700 U. Examine the tag field of the opcode structure, in case this is
21701 one of the six instructions with its conditional infix in an
21702 unusual place. If it is, the tag tells us where to find the
21703 infix; look it up in the conditions table and set inst.cond
21704 accordingly. Otherwise, this is an unconditional instruction.
21705 Again set inst.cond accordingly. Return the opcode structure.
21706
21707 CE. Examine the tag field to make sure this is an instruction that
21708 should receive a conditional suffix. If it is not, fail.
21709 Otherwise, set inst.cond from the suffix we already looked up,
21710 and return the opcode structure.
21711
21712 CM. Examine the tag field to make sure this is an instruction that
21713 should receive a conditional infix after the third character.
21714 If it is not, fail. Otherwise, undo the edits to the current
21715 line of input and proceed as for case CE. */
21716
21717 static const struct asm_opcode *
21718 opcode_lookup (char **str)
21719 {
21720 char *end, *base;
21721 char *affix;
21722 const struct asm_opcode *opcode;
21723 const struct asm_cond *cond;
21724 char save[2];
21725
21726 /* Scan up to the end of the mnemonic, which must end in white space,
21727 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
21728 for (base = end = *str; *end != '\0'; end++)
21729 if (*end == ' ' || *end == '.')
21730 break;
21731
21732 if (end == base)
21733 return NULL;
21734
21735 /* Handle a possible width suffix and/or Neon type suffix. */
21736 if (end[0] == '.')
21737 {
21738 int offset = 2;
21739
21740 /* The .w and .n suffixes are only valid if the unified syntax is in
21741 use. */
21742 if (unified_syntax && end[1] == 'w')
21743 inst.size_req = 4;
21744 else if (unified_syntax && end[1] == 'n')
21745 inst.size_req = 2;
21746 else
21747 offset = 0;
21748
21749 inst.vectype.elems = 0;
21750
21751 *str = end + offset;
21752
21753 if (end[offset] == '.')
21754 {
21755 /* See if we have a Neon type suffix (possible in either unified or
21756 non-unified ARM syntax mode). */
21757 if (parse_neon_type (&inst.vectype, str) == FAIL)
21758 return NULL;
21759 }
21760 else if (end[offset] != '\0' && end[offset] != ' ')
21761 return NULL;
21762 }
21763 else
21764 *str = end;
21765
21766 /* Look for unaffixed or special-case affixed mnemonic. */
21767 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
21768 end - base);
21769 if (opcode)
21770 {
21771 /* step U */
21772 if (opcode->tag < OT_odd_infix_0)
21773 {
21774 inst.cond = COND_ALWAYS;
21775 return opcode;
21776 }
21777
21778 if (warn_on_deprecated && unified_syntax)
21779 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
21780 affix = base + (opcode->tag - OT_odd_infix_0);
21781 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
21782 gas_assert (cond);
21783
21784 inst.cond = cond->value;
21785 return opcode;
21786 }
21787 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
21788 {
21789 /* Cannot have a conditional suffix on a mnemonic of less than a character.
21790 */
21791 if (end - base < 2)
21792 return NULL;
21793 affix = end - 1;
21794 cond = (const struct asm_cond *) hash_find_n (arm_vcond_hsh, affix, 1);
21795 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
21796 affix - base);
21797 /* If this opcode can not be vector predicated then don't accept it with a
21798 vector predication code. */
21799 if (opcode && !opcode->mayBeVecPred)
21800 opcode = NULL;
21801 }
21802 if (!opcode || !cond)
21803 {
21804 /* Cannot have a conditional suffix on a mnemonic of less than two
21805 characters. */
21806 if (end - base < 3)
21807 return NULL;
21808
21809 /* Look for suffixed mnemonic. */
21810 affix = end - 2;
21811 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
21812 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
21813 affix - base);
21814 }
21815
21816 if (opcode && cond)
21817 {
21818 /* step CE */
21819 switch (opcode->tag)
21820 {
21821 case OT_cinfix3_legacy:
21822 /* Ignore conditional suffixes matched on infix only mnemonics. */
21823 break;
21824
21825 case OT_cinfix3:
21826 case OT_cinfix3_deprecated:
21827 case OT_odd_infix_unc:
21828 if (!unified_syntax)
21829 return NULL;
21830 /* Fall through. */
21831
21832 case OT_csuffix:
21833 case OT_csuffixF:
21834 case OT_csuf_or_in3:
21835 inst.cond = cond->value;
21836 return opcode;
21837
21838 case OT_unconditional:
21839 case OT_unconditionalF:
21840 if (thumb_mode)
21841 inst.cond = cond->value;
21842 else
21843 {
21844 /* Delayed diagnostic. */
21845 inst.error = BAD_COND;
21846 inst.cond = COND_ALWAYS;
21847 }
21848 return opcode;
21849
21850 default:
21851 return NULL;
21852 }
21853 }
21854
21855 /* Cannot have a usual-position infix on a mnemonic of less than
21856 six characters (five would be a suffix). */
21857 if (end - base < 6)
21858 return NULL;
21859
21860 /* Look for infixed mnemonic in the usual position. */
21861 affix = base + 3;
21862 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
21863 if (!cond)
21864 return NULL;
21865
21866 memcpy (save, affix, 2);
21867 memmove (affix, affix + 2, (end - affix) - 2);
21868 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
21869 (end - base) - 2);
21870 memmove (affix + 2, affix, (end - affix) - 2);
21871 memcpy (affix, save, 2);
21872
21873 if (opcode
21874 && (opcode->tag == OT_cinfix3
21875 || opcode->tag == OT_cinfix3_deprecated
21876 || opcode->tag == OT_csuf_or_in3
21877 || opcode->tag == OT_cinfix3_legacy))
21878 {
21879 /* Step CM. */
21880 if (warn_on_deprecated && unified_syntax
21881 && (opcode->tag == OT_cinfix3
21882 || opcode->tag == OT_cinfix3_deprecated))
21883 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
21884
21885 inst.cond = cond->value;
21886 return opcode;
21887 }
21888
21889 return NULL;
21890 }
21891
21892 /* This function generates an initial IT instruction, leaving its block
21893 virtually open for the new instructions. Eventually,
21894 the mask will be updated by now_pred_add_mask () each time
21895 a new instruction needs to be included in the IT block.
21896 Finally, the block is closed with close_automatic_it_block ().
21897 The block closure can be requested either from md_assemble (),
21898 a tencode (), or due to a label hook. */
21899
21900 static void
21901 new_automatic_it_block (int cond)
21902 {
21903 now_pred.state = AUTOMATIC_PRED_BLOCK;
21904 now_pred.mask = 0x18;
21905 now_pred.cc = cond;
21906 now_pred.block_length = 1;
21907 mapping_state (MAP_THUMB);
21908 now_pred.insn = output_it_inst (cond, now_pred.mask, NULL);
21909 now_pred.warn_deprecated = FALSE;
21910 now_pred.insn_cond = TRUE;
21911 }
21912
21913 /* Close an automatic IT block.
21914 See comments in new_automatic_it_block (). */
21915
21916 static void
21917 close_automatic_it_block (void)
21918 {
21919 now_pred.mask = 0x10;
21920 now_pred.block_length = 0;
21921 }
21922
21923 /* Update the mask of the current automatically-generated IT
21924 instruction. See comments in new_automatic_it_block (). */
21925
21926 static void
21927 now_pred_add_mask (int cond)
21928 {
21929 #define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
21930 #define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
21931 | ((bitvalue) << (nbit)))
21932 const int resulting_bit = (cond & 1);
21933
21934 now_pred.mask &= 0xf;
21935 now_pred.mask = SET_BIT_VALUE (now_pred.mask,
21936 resulting_bit,
21937 (5 - now_pred.block_length));
21938 now_pred.mask = SET_BIT_VALUE (now_pred.mask,
21939 1,
21940 ((5 - now_pred.block_length) - 1));
21941 output_it_inst (now_pred.cc, now_pred.mask, now_pred.insn);
21942
21943 #undef CLEAR_BIT
21944 #undef SET_BIT_VALUE
21945 }
21946
21947 /* The IT blocks handling machinery is accessed through the these functions:
21948 it_fsm_pre_encode () from md_assemble ()
21949 set_pred_insn_type () optional, from the tencode functions
21950 set_pred_insn_type_last () ditto
21951 in_pred_block () ditto
21952 it_fsm_post_encode () from md_assemble ()
21953 force_automatic_it_block_close () from label handling functions
21954
21955 Rationale:
21956 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
21957 initializing the IT insn type with a generic initial value depending
21958 on the inst.condition.
21959 2) During the tencode function, two things may happen:
21960 a) The tencode function overrides the IT insn type by
21961 calling either set_pred_insn_type (type) or
21962 set_pred_insn_type_last ().
21963 b) The tencode function queries the IT block state by
21964 calling in_pred_block () (i.e. to determine narrow/not narrow mode).
21965
21966 Both set_pred_insn_type and in_pred_block run the internal FSM state
21967 handling function (handle_pred_state), because: a) setting the IT insn
21968 type may incur in an invalid state (exiting the function),
21969 and b) querying the state requires the FSM to be updated.
21970 Specifically we want to avoid creating an IT block for conditional
21971 branches, so it_fsm_pre_encode is actually a guess and we can't
21972 determine whether an IT block is required until the tencode () routine
21973 has decided what type of instruction this actually it.
21974 Because of this, if set_pred_insn_type and in_pred_block have to be
21975 used, set_pred_insn_type has to be called first.
21976
21977 set_pred_insn_type_last () is a wrapper of set_pred_insn_type (type),
21978 that determines the insn IT type depending on the inst.cond code.
21979 When a tencode () routine encodes an instruction that can be
21980 either outside an IT block, or, in the case of being inside, has to be
21981 the last one, set_pred_insn_type_last () will determine the proper
21982 IT instruction type based on the inst.cond code. Otherwise,
21983 set_pred_insn_type can be called for overriding that logic or
21984 for covering other cases.
21985
21986 Calling handle_pred_state () may not transition the IT block state to
21987 OUTSIDE_PRED_BLOCK immediately, since the (current) state could be
21988 still queried. Instead, if the FSM determines that the state should
21989 be transitioned to OUTSIDE_PRED_BLOCK, a flag is marked to be closed
21990 after the tencode () function: that's what it_fsm_post_encode () does.
21991
21992 Since in_pred_block () calls the state handling function to get an
21993 updated state, an error may occur (due to invalid insns combination).
21994 In that case, inst.error is set.
21995 Therefore, inst.error has to be checked after the execution of
21996 the tencode () routine.
21997
21998 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
21999 any pending state change (if any) that didn't take place in
22000 handle_pred_state () as explained above. */
22001
22002 static void
22003 it_fsm_pre_encode (void)
22004 {
22005 if (inst.cond != COND_ALWAYS)
22006 inst.pred_insn_type = INSIDE_IT_INSN;
22007 else
22008 inst.pred_insn_type = OUTSIDE_PRED_INSN;
22009
22010 now_pred.state_handled = 0;
22011 }
22012
22013 /* IT state FSM handling function. */
22014 /* MVE instructions and non-MVE instructions are handled differently because of
22015 the introduction of VPT blocks.
22016 Specifications say that any non-MVE instruction inside a VPT block is
22017 UNPREDICTABLE, with the exception of the BKPT instruction. Whereas most MVE
22018 instructions are deemed to be UNPREDICTABLE if inside an IT block. For the
22019 few exceptions we have MVE_UNPREDICABLE_INSN.
22020 The error messages provided depending on the different combinations possible
22021 are described in the cases below:
22022 For 'most' MVE instructions:
22023 1) In an IT block, with an IT code: syntax error
22024 2) In an IT block, with a VPT code: error: must be in a VPT block
22025 3) In an IT block, with no code: warning: UNPREDICTABLE
22026 4) In a VPT block, with an IT code: syntax error
22027 5) In a VPT block, with a VPT code: OK!
22028 6) In a VPT block, with no code: error: missing code
22029 7) Outside a pred block, with an IT code: error: syntax error
22030 8) Outside a pred block, with a VPT code: error: should be in a VPT block
22031 9) Outside a pred block, with no code: OK!
22032 For non-MVE instructions:
22033 10) In an IT block, with an IT code: OK!
22034 11) In an IT block, with a VPT code: syntax error
22035 12) In an IT block, with no code: error: missing code
22036 13) In a VPT block, with an IT code: error: should be in an IT block
22037 14) In a VPT block, with a VPT code: syntax error
22038 15) In a VPT block, with no code: UNPREDICTABLE
22039 16) Outside a pred block, with an IT code: error: should be in an IT block
22040 17) Outside a pred block, with a VPT code: syntax error
22041 18) Outside a pred block, with no code: OK!
22042 */
22043
22044
22045 static int
22046 handle_pred_state (void)
22047 {
22048 now_pred.state_handled = 1;
22049 now_pred.insn_cond = FALSE;
22050
22051 switch (now_pred.state)
22052 {
22053 case OUTSIDE_PRED_BLOCK:
22054 switch (inst.pred_insn_type)
22055 {
22056 case MVE_UNPREDICABLE_INSN:
22057 case MVE_OUTSIDE_PRED_INSN:
22058 if (inst.cond < COND_ALWAYS)
22059 {
22060 /* Case 7: Outside a pred block, with an IT code: error: syntax
22061 error. */
22062 inst.error = BAD_SYNTAX;
22063 return FAIL;
22064 }
22065 /* Case 9: Outside a pred block, with no code: OK! */
22066 break;
22067 case OUTSIDE_PRED_INSN:
22068 if (inst.cond > COND_ALWAYS)
22069 {
22070 /* Case 17: Outside a pred block, with a VPT code: syntax error.
22071 */
22072 inst.error = BAD_SYNTAX;
22073 return FAIL;
22074 }
22075 /* Case 18: Outside a pred block, with no code: OK! */
22076 break;
22077
22078 case INSIDE_VPT_INSN:
22079 /* Case 8: Outside a pred block, with a VPT code: error: should be in
22080 a VPT block. */
22081 inst.error = BAD_OUT_VPT;
22082 return FAIL;
22083
22084 case INSIDE_IT_INSN:
22085 case INSIDE_IT_LAST_INSN:
22086 if (inst.cond < COND_ALWAYS)
22087 {
22088 /* Case 16: Outside a pred block, with an IT code: error: should
22089 be in an IT block. */
22090 if (thumb_mode == 0)
22091 {
22092 if (unified_syntax
22093 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
22094 as_tsktsk (_("Warning: conditional outside an IT block"\
22095 " for Thumb."));
22096 }
22097 else
22098 {
22099 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
22100 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
22101 {
22102 /* Automatically generate the IT instruction. */
22103 new_automatic_it_block (inst.cond);
22104 if (inst.pred_insn_type == INSIDE_IT_LAST_INSN)
22105 close_automatic_it_block ();
22106 }
22107 else
22108 {
22109 inst.error = BAD_OUT_IT;
22110 return FAIL;
22111 }
22112 }
22113 break;
22114 }
22115 else if (inst.cond > COND_ALWAYS)
22116 {
22117 /* Case 17: Outside a pred block, with a VPT code: syntax error.
22118 */
22119 inst.error = BAD_SYNTAX;
22120 return FAIL;
22121 }
22122 else
22123 gas_assert (0);
22124 case IF_INSIDE_IT_LAST_INSN:
22125 case NEUTRAL_IT_INSN:
22126 break;
22127
22128 case VPT_INSN:
22129 if (inst.cond != COND_ALWAYS)
22130 first_error (BAD_SYNTAX);
22131 now_pred.state = MANUAL_PRED_BLOCK;
22132 now_pred.block_length = 0;
22133 now_pred.type = VECTOR_PRED;
22134 now_pred.cc = 0;
22135 break;
22136 case IT_INSN:
22137 now_pred.state = MANUAL_PRED_BLOCK;
22138 now_pred.block_length = 0;
22139 now_pred.type = SCALAR_PRED;
22140 break;
22141 }
22142 break;
22143
22144 case AUTOMATIC_PRED_BLOCK:
22145 /* Three things may happen now:
22146 a) We should increment current it block size;
22147 b) We should close current it block (closing insn or 4 insns);
22148 c) We should close current it block and start a new one (due
22149 to incompatible conditions or
22150 4 insns-length block reached). */
22151
22152 switch (inst.pred_insn_type)
22153 {
22154 case INSIDE_VPT_INSN:
22155 case VPT_INSN:
22156 case MVE_UNPREDICABLE_INSN:
22157 case MVE_OUTSIDE_PRED_INSN:
22158 gas_assert (0);
22159 case OUTSIDE_PRED_INSN:
22160 /* The closure of the block shall happen immediately,
22161 so any in_pred_block () call reports the block as closed. */
22162 force_automatic_it_block_close ();
22163 break;
22164
22165 case INSIDE_IT_INSN:
22166 case INSIDE_IT_LAST_INSN:
22167 case IF_INSIDE_IT_LAST_INSN:
22168 now_pred.block_length++;
22169
22170 if (now_pred.block_length > 4
22171 || !now_pred_compatible (inst.cond))
22172 {
22173 force_automatic_it_block_close ();
22174 if (inst.pred_insn_type != IF_INSIDE_IT_LAST_INSN)
22175 new_automatic_it_block (inst.cond);
22176 }
22177 else
22178 {
22179 now_pred.insn_cond = TRUE;
22180 now_pred_add_mask (inst.cond);
22181 }
22182
22183 if (now_pred.state == AUTOMATIC_PRED_BLOCK
22184 && (inst.pred_insn_type == INSIDE_IT_LAST_INSN
22185 || inst.pred_insn_type == IF_INSIDE_IT_LAST_INSN))
22186 close_automatic_it_block ();
22187 break;
22188
22189 case NEUTRAL_IT_INSN:
22190 now_pred.block_length++;
22191 now_pred.insn_cond = TRUE;
22192
22193 if (now_pred.block_length > 4)
22194 force_automatic_it_block_close ();
22195 else
22196 now_pred_add_mask (now_pred.cc & 1);
22197 break;
22198
22199 case IT_INSN:
22200 close_automatic_it_block ();
22201 now_pred.state = MANUAL_PRED_BLOCK;
22202 break;
22203 }
22204 break;
22205
22206 case MANUAL_PRED_BLOCK:
22207 {
22208 int cond, is_last;
22209 if (now_pred.type == SCALAR_PRED)
22210 {
22211 /* Check conditional suffixes. */
22212 cond = now_pred.cc ^ ((now_pred.mask >> 4) & 1) ^ 1;
22213 now_pred.mask <<= 1;
22214 now_pred.mask &= 0x1f;
22215 is_last = (now_pred.mask == 0x10);
22216 }
22217 else
22218 {
22219 now_pred.cc ^= (now_pred.mask >> 4);
22220 cond = now_pred.cc + 0xf;
22221 now_pred.mask <<= 1;
22222 now_pred.mask &= 0x1f;
22223 is_last = now_pred.mask == 0x10;
22224 }
22225 now_pred.insn_cond = TRUE;
22226
22227 switch (inst.pred_insn_type)
22228 {
22229 case OUTSIDE_PRED_INSN:
22230 if (now_pred.type == SCALAR_PRED)
22231 {
22232 if (inst.cond == COND_ALWAYS)
22233 {
22234 /* Case 12: In an IT block, with no code: error: missing
22235 code. */
22236 inst.error = BAD_NOT_IT;
22237 return FAIL;
22238 }
22239 else if (inst.cond > COND_ALWAYS)
22240 {
22241 /* Case 11: In an IT block, with a VPT code: syntax error.
22242 */
22243 inst.error = BAD_SYNTAX;
22244 return FAIL;
22245 }
22246 else if (thumb_mode)
22247 {
22248 /* This is for some special cases where a non-MVE
22249 instruction is not allowed in an IT block, such as cbz,
22250 but are put into one with a condition code.
22251 You could argue this should be a syntax error, but we
22252 gave the 'not allowed in IT block' diagnostic in the
22253 past so we will keep doing so. */
22254 inst.error = BAD_NOT_IT;
22255 return FAIL;
22256 }
22257 break;
22258 }
22259 else
22260 {
22261 /* Case 15: In a VPT block, with no code: UNPREDICTABLE. */
22262 as_tsktsk (MVE_NOT_VPT);
22263 return SUCCESS;
22264 }
22265 case MVE_OUTSIDE_PRED_INSN:
22266 if (now_pred.type == SCALAR_PRED)
22267 {
22268 if (inst.cond == COND_ALWAYS)
22269 {
22270 /* Case 3: In an IT block, with no code: warning:
22271 UNPREDICTABLE. */
22272 as_tsktsk (MVE_NOT_IT);
22273 return SUCCESS;
22274 }
22275 else if (inst.cond < COND_ALWAYS)
22276 {
22277 /* Case 1: In an IT block, with an IT code: syntax error.
22278 */
22279 inst.error = BAD_SYNTAX;
22280 return FAIL;
22281 }
22282 else
22283 gas_assert (0);
22284 }
22285 else
22286 {
22287 if (inst.cond < COND_ALWAYS)
22288 {
22289 /* Case 4: In a VPT block, with an IT code: syntax error.
22290 */
22291 inst.error = BAD_SYNTAX;
22292 return FAIL;
22293 }
22294 else if (inst.cond == COND_ALWAYS)
22295 {
22296 /* Case 6: In a VPT block, with no code: error: missing
22297 code. */
22298 inst.error = BAD_NOT_VPT;
22299 return FAIL;
22300 }
22301 else
22302 {
22303 gas_assert (0);
22304 }
22305 }
22306 case MVE_UNPREDICABLE_INSN:
22307 as_tsktsk (now_pred.type == SCALAR_PRED ? MVE_NOT_IT : MVE_NOT_VPT);
22308 return SUCCESS;
22309 case INSIDE_IT_INSN:
22310 if (inst.cond > COND_ALWAYS)
22311 {
22312 /* Case 11: In an IT block, with a VPT code: syntax error. */
22313 /* Case 14: In a VPT block, with a VPT code: syntax error. */
22314 inst.error = BAD_SYNTAX;
22315 return FAIL;
22316 }
22317 else if (now_pred.type == SCALAR_PRED)
22318 {
22319 /* Case 10: In an IT block, with an IT code: OK! */
22320 if (cond != inst.cond)
22321 {
22322 inst.error = now_pred.type == SCALAR_PRED ? BAD_IT_COND :
22323 BAD_VPT_COND;
22324 return FAIL;
22325 }
22326 }
22327 else
22328 {
22329 /* Case 13: In a VPT block, with an IT code: error: should be
22330 in an IT block. */
22331 inst.error = BAD_OUT_IT;
22332 return FAIL;
22333 }
22334 break;
22335
22336 case INSIDE_VPT_INSN:
22337 if (now_pred.type == SCALAR_PRED)
22338 {
22339 /* Case 2: In an IT block, with a VPT code: error: must be in a
22340 VPT block. */
22341 inst.error = BAD_OUT_VPT;
22342 return FAIL;
22343 }
22344 /* Case 5: In a VPT block, with a VPT code: OK! */
22345 else if (cond != inst.cond)
22346 {
22347 inst.error = BAD_VPT_COND;
22348 return FAIL;
22349 }
22350 break;
22351 case INSIDE_IT_LAST_INSN:
22352 case IF_INSIDE_IT_LAST_INSN:
22353 if (now_pred.type == VECTOR_PRED || inst.cond > COND_ALWAYS)
22354 {
22355 /* Case 4: In a VPT block, with an IT code: syntax error. */
22356 /* Case 11: In an IT block, with a VPT code: syntax error. */
22357 inst.error = BAD_SYNTAX;
22358 return FAIL;
22359 }
22360 else if (cond != inst.cond)
22361 {
22362 inst.error = BAD_IT_COND;
22363 return FAIL;
22364 }
22365 if (!is_last)
22366 {
22367 inst.error = BAD_BRANCH;
22368 return FAIL;
22369 }
22370 break;
22371
22372 case NEUTRAL_IT_INSN:
22373 /* The BKPT instruction is unconditional even in a IT or VPT
22374 block. */
22375 break;
22376
22377 case IT_INSN:
22378 if (now_pred.type == SCALAR_PRED)
22379 {
22380 inst.error = BAD_IT_IT;
22381 return FAIL;
22382 }
22383 /* fall through. */
22384 case VPT_INSN:
22385 if (inst.cond == COND_ALWAYS)
22386 {
22387 /* Executing a VPT/VPST instruction inside an IT block or a
22388 VPT/VPST/IT instruction inside a VPT block is UNPREDICTABLE.
22389 */
22390 if (now_pred.type == SCALAR_PRED)
22391 as_tsktsk (MVE_NOT_IT);
22392 else
22393 as_tsktsk (MVE_NOT_VPT);
22394 return SUCCESS;
22395 }
22396 else
22397 {
22398 /* VPT/VPST do not accept condition codes. */
22399 inst.error = BAD_SYNTAX;
22400 return FAIL;
22401 }
22402 }
22403 }
22404 break;
22405 }
22406
22407 return SUCCESS;
22408 }
22409
22410 struct depr_insn_mask
22411 {
22412 unsigned long pattern;
22413 unsigned long mask;
22414 const char* description;
22415 };
22416
22417 /* List of 16-bit instruction patterns deprecated in an IT block in
22418 ARMv8. */
22419 static const struct depr_insn_mask depr_it_insns[] = {
22420 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
22421 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
22422 { 0xa000, 0xb800, N_("ADR") },
22423 { 0x4800, 0xf800, N_("Literal loads") },
22424 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
22425 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
22426 /* NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue'
22427 field in asm_opcode. 'tvalue' is used at the stage this check happen. */
22428 { 0x00dd, 0x7fff, N_("ADD/SUB sp, sp #imm") },
22429 { 0, 0, NULL }
22430 };
22431
22432 static void
22433 it_fsm_post_encode (void)
22434 {
22435 int is_last;
22436
22437 if (!now_pred.state_handled)
22438 handle_pred_state ();
22439
22440 if (now_pred.insn_cond
22441 && !now_pred.warn_deprecated
22442 && warn_on_deprecated
22443 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8)
22444 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_m))
22445 {
22446 if (inst.instruction >= 0x10000)
22447 {
22448 as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
22449 "performance deprecated in ARMv8-A and ARMv8-R"));
22450 now_pred.warn_deprecated = TRUE;
22451 }
22452 else
22453 {
22454 const struct depr_insn_mask *p = depr_it_insns;
22455
22456 while (p->mask != 0)
22457 {
22458 if ((inst.instruction & p->mask) == p->pattern)
22459 {
22460 as_tsktsk (_("IT blocks containing 16-bit Thumb "
22461 "instructions of the following class are "
22462 "performance deprecated in ARMv8-A and "
22463 "ARMv8-R: %s"), p->description);
22464 now_pred.warn_deprecated = TRUE;
22465 break;
22466 }
22467
22468 ++p;
22469 }
22470 }
22471
22472 if (now_pred.block_length > 1)
22473 {
22474 as_tsktsk (_("IT blocks containing more than one conditional "
22475 "instruction are performance deprecated in ARMv8-A and "
22476 "ARMv8-R"));
22477 now_pred.warn_deprecated = TRUE;
22478 }
22479 }
22480
22481 is_last = (now_pred.mask == 0x10);
22482 if (is_last)
22483 {
22484 now_pred.state = OUTSIDE_PRED_BLOCK;
22485 now_pred.mask = 0;
22486 }
22487 }
22488
22489 static void
22490 force_automatic_it_block_close (void)
22491 {
22492 if (now_pred.state == AUTOMATIC_PRED_BLOCK)
22493 {
22494 close_automatic_it_block ();
22495 now_pred.state = OUTSIDE_PRED_BLOCK;
22496 now_pred.mask = 0;
22497 }
22498 }
22499
22500 static int
22501 in_pred_block (void)
22502 {
22503 if (!now_pred.state_handled)
22504 handle_pred_state ();
22505
22506 return now_pred.state != OUTSIDE_PRED_BLOCK;
22507 }
22508
22509 /* Whether OPCODE only has T32 encoding. Since this function is only used by
22510 t32_insn_ok, OPCODE enabled by v6t2 extension bit do not need to be listed
22511 here, hence the "known" in the function name. */
22512
22513 static bfd_boolean
22514 known_t32_only_insn (const struct asm_opcode *opcode)
22515 {
22516 /* Original Thumb-1 wide instruction. */
22517 if (opcode->tencode == do_t_blx
22518 || opcode->tencode == do_t_branch23
22519 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
22520 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier))
22521 return TRUE;
22522
22523 /* Wide-only instruction added to ARMv8-M Baseline. */
22524 if (ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v8m_m_only)
22525 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_atomics)
22526 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v6t2_v8m)
22527 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_div))
22528 return TRUE;
22529
22530 return FALSE;
22531 }
22532
22533 /* Whether wide instruction variant can be used if available for a valid OPCODE
22534 in ARCH. */
22535
22536 static bfd_boolean
22537 t32_insn_ok (arm_feature_set arch, const struct asm_opcode *opcode)
22538 {
22539 if (known_t32_only_insn (opcode))
22540 return TRUE;
22541
22542 /* Instruction with narrow and wide encoding added to ARMv8-M. Availability
22543 of variant T3 of B.W is checked in do_t_branch. */
22544 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
22545 && opcode->tencode == do_t_branch)
22546 return TRUE;
22547
22548 /* MOV accepts T1/T3 encodings under Baseline, T3 encoding is 32bit. */
22549 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
22550 && opcode->tencode == do_t_mov_cmp
22551 /* Make sure CMP instruction is not affected. */
22552 && opcode->aencode == do_mov)
22553 return TRUE;
22554
22555 /* Wide instruction variants of all instructions with narrow *and* wide
22556 variants become available with ARMv6t2. Other opcodes are either
22557 narrow-only or wide-only and are thus available if OPCODE is valid. */
22558 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v6t2))
22559 return TRUE;
22560
22561 /* OPCODE with narrow only instruction variant or wide variant not
22562 available. */
22563 return FALSE;
22564 }
22565
22566 void
22567 md_assemble (char *str)
22568 {
22569 char *p = str;
22570 const struct asm_opcode * opcode;
22571
22572 /* Align the previous label if needed. */
22573 if (last_label_seen != NULL)
22574 {
22575 symbol_set_frag (last_label_seen, frag_now);
22576 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
22577 S_SET_SEGMENT (last_label_seen, now_seg);
22578 }
22579
22580 memset (&inst, '\0', sizeof (inst));
22581 int r;
22582 for (r = 0; r < ARM_IT_MAX_RELOCS; r++)
22583 inst.relocs[r].type = BFD_RELOC_UNUSED;
22584
22585 opcode = opcode_lookup (&p);
22586 if (!opcode)
22587 {
22588 /* It wasn't an instruction, but it might be a register alias of
22589 the form alias .req reg, or a Neon .dn/.qn directive. */
22590 if (! create_register_alias (str, p)
22591 && ! create_neon_reg_alias (str, p))
22592 as_bad (_("bad instruction `%s'"), str);
22593
22594 return;
22595 }
22596
22597 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
22598 as_tsktsk (_("s suffix on comparison instruction is deprecated"));
22599
22600 /* The value which unconditional instructions should have in place of the
22601 condition field. */
22602 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
22603
22604 if (thumb_mode)
22605 {
22606 arm_feature_set variant;
22607
22608 variant = cpu_variant;
22609 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
22610 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
22611 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
22612 /* Check that this instruction is supported for this CPU. */
22613 if (!opcode->tvariant
22614 || (thumb_mode == 1
22615 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
22616 {
22617 if (opcode->tencode == do_t_swi)
22618 as_bad (_("SVC is not permitted on this architecture"));
22619 else
22620 as_bad (_("selected processor does not support `%s' in Thumb mode"), str);
22621 return;
22622 }
22623 if (inst.cond != COND_ALWAYS && !unified_syntax
22624 && opcode->tencode != do_t_branch)
22625 {
22626 as_bad (_("Thumb does not support conditional execution"));
22627 return;
22628 }
22629
22630 /* Two things are addressed here:
22631 1) Implicit require narrow instructions on Thumb-1.
22632 This avoids relaxation accidentally introducing Thumb-2
22633 instructions.
22634 2) Reject wide instructions in non Thumb-2 cores.
22635
22636 Only instructions with narrow and wide variants need to be handled
22637 but selecting all non wide-only instructions is easier. */
22638 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2)
22639 && !t32_insn_ok (variant, opcode))
22640 {
22641 if (inst.size_req == 0)
22642 inst.size_req = 2;
22643 else if (inst.size_req == 4)
22644 {
22645 if (ARM_CPU_HAS_FEATURE (variant, arm_ext_v8m))
22646 as_bad (_("selected processor does not support 32bit wide "
22647 "variant of instruction `%s'"), str);
22648 else
22649 as_bad (_("selected processor does not support `%s' in "
22650 "Thumb-2 mode"), str);
22651 return;
22652 }
22653 }
22654
22655 inst.instruction = opcode->tvalue;
22656
22657 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
22658 {
22659 /* Prepare the pred_insn_type for those encodings that don't set
22660 it. */
22661 it_fsm_pre_encode ();
22662
22663 opcode->tencode ();
22664
22665 it_fsm_post_encode ();
22666 }
22667
22668 if (!(inst.error || inst.relax))
22669 {
22670 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
22671 inst.size = (inst.instruction > 0xffff ? 4 : 2);
22672 if (inst.size_req && inst.size_req != inst.size)
22673 {
22674 as_bad (_("cannot honor width suffix -- `%s'"), str);
22675 return;
22676 }
22677 }
22678
22679 /* Something has gone badly wrong if we try to relax a fixed size
22680 instruction. */
22681 gas_assert (inst.size_req == 0 || !inst.relax);
22682
22683 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
22684 *opcode->tvariant);
22685 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
22686 set those bits when Thumb-2 32-bit instructions are seen. The impact
22687 of relaxable instructions will be considered later after we finish all
22688 relaxation. */
22689 if (ARM_FEATURE_CORE_EQUAL (cpu_variant, arm_arch_any))
22690 variant = arm_arch_none;
22691 else
22692 variant = cpu_variant;
22693 if (inst.size == 4 && !t32_insn_ok (variant, opcode))
22694 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
22695 arm_ext_v6t2);
22696
22697 check_neon_suffixes;
22698
22699 if (!inst.error)
22700 {
22701 mapping_state (MAP_THUMB);
22702 }
22703 }
22704 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
22705 {
22706 bfd_boolean is_bx;
22707
22708 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
22709 is_bx = (opcode->aencode == do_bx);
22710
22711 /* Check that this instruction is supported for this CPU. */
22712 if (!(is_bx && fix_v4bx)
22713 && !(opcode->avariant &&
22714 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
22715 {
22716 as_bad (_("selected processor does not support `%s' in ARM mode"), str);
22717 return;
22718 }
22719 if (inst.size_req)
22720 {
22721 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
22722 return;
22723 }
22724
22725 inst.instruction = opcode->avalue;
22726 if (opcode->tag == OT_unconditionalF)
22727 inst.instruction |= 0xFU << 28;
22728 else
22729 inst.instruction |= inst.cond << 28;
22730 inst.size = INSN_SIZE;
22731 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
22732 {
22733 it_fsm_pre_encode ();
22734 opcode->aencode ();
22735 it_fsm_post_encode ();
22736 }
22737 /* Arm mode bx is marked as both v4T and v5 because it's still required
22738 on a hypothetical non-thumb v5 core. */
22739 if (is_bx)
22740 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
22741 else
22742 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
22743 *opcode->avariant);
22744
22745 check_neon_suffixes;
22746
22747 if (!inst.error)
22748 {
22749 mapping_state (MAP_ARM);
22750 }
22751 }
22752 else
22753 {
22754 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
22755 "-- `%s'"), str);
22756 return;
22757 }
22758 output_inst (str);
22759 }
22760
22761 static void
22762 check_pred_blocks_finished (void)
22763 {
22764 #ifdef OBJ_ELF
22765 asection *sect;
22766
22767 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
22768 if (seg_info (sect)->tc_segment_info_data.current_pred.state
22769 == MANUAL_PRED_BLOCK)
22770 {
22771 if (now_pred.type == SCALAR_PRED)
22772 as_warn (_("section '%s' finished with an open IT block."),
22773 sect->name);
22774 else
22775 as_warn (_("section '%s' finished with an open VPT/VPST block."),
22776 sect->name);
22777 }
22778 #else
22779 if (now_pred.state == MANUAL_PRED_BLOCK)
22780 {
22781 if (now_pred.type == SCALAR_PRED)
22782 as_warn (_("file finished with an open IT block."));
22783 else
22784 as_warn (_("file finished with an open VPT/VPST block."));
22785 }
22786 #endif
22787 }
22788
22789 /* Various frobbings of labels and their addresses. */
22790
22791 void
22792 arm_start_line_hook (void)
22793 {
22794 last_label_seen = NULL;
22795 }
22796
22797 void
22798 arm_frob_label (symbolS * sym)
22799 {
22800 last_label_seen = sym;
22801
22802 ARM_SET_THUMB (sym, thumb_mode);
22803
22804 #if defined OBJ_COFF || defined OBJ_ELF
22805 ARM_SET_INTERWORK (sym, support_interwork);
22806 #endif
22807
22808 force_automatic_it_block_close ();
22809
22810 /* Note - do not allow local symbols (.Lxxx) to be labelled
22811 as Thumb functions. This is because these labels, whilst
22812 they exist inside Thumb code, are not the entry points for
22813 possible ARM->Thumb calls. Also, these labels can be used
22814 as part of a computed goto or switch statement. eg gcc
22815 can generate code that looks like this:
22816
22817 ldr r2, [pc, .Laaa]
22818 lsl r3, r3, #2
22819 ldr r2, [r3, r2]
22820 mov pc, r2
22821
22822 .Lbbb: .word .Lxxx
22823 .Lccc: .word .Lyyy
22824 ..etc...
22825 .Laaa: .word Lbbb
22826
22827 The first instruction loads the address of the jump table.
22828 The second instruction converts a table index into a byte offset.
22829 The third instruction gets the jump address out of the table.
22830 The fourth instruction performs the jump.
22831
22832 If the address stored at .Laaa is that of a symbol which has the
22833 Thumb_Func bit set, then the linker will arrange for this address
22834 to have the bottom bit set, which in turn would mean that the
22835 address computation performed by the third instruction would end
22836 up with the bottom bit set. Since the ARM is capable of unaligned
22837 word loads, the instruction would then load the incorrect address
22838 out of the jump table, and chaos would ensue. */
22839 if (label_is_thumb_function_name
22840 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
22841 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
22842 {
22843 /* When the address of a Thumb function is taken the bottom
22844 bit of that address should be set. This will allow
22845 interworking between Arm and Thumb functions to work
22846 correctly. */
22847
22848 THUMB_SET_FUNC (sym, 1);
22849
22850 label_is_thumb_function_name = FALSE;
22851 }
22852
22853 dwarf2_emit_label (sym);
22854 }
22855
22856 bfd_boolean
22857 arm_data_in_code (void)
22858 {
22859 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
22860 {
22861 *input_line_pointer = '/';
22862 input_line_pointer += 5;
22863 *input_line_pointer = 0;
22864 return TRUE;
22865 }
22866
22867 return FALSE;
22868 }
22869
22870 char *
22871 arm_canonicalize_symbol_name (char * name)
22872 {
22873 int len;
22874
22875 if (thumb_mode && (len = strlen (name)) > 5
22876 && streq (name + len - 5, "/data"))
22877 *(name + len - 5) = 0;
22878
22879 return name;
22880 }
22881 \f
22882 /* Table of all register names defined by default. The user can
22883 define additional names with .req. Note that all register names
22884 should appear in both upper and lowercase variants. Some registers
22885 also have mixed-case names. */
22886
22887 #define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
22888 #define REGNUM(p,n,t) REGDEF(p##n, n, t)
22889 #define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
22890 #define REGSET(p,t) \
22891 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
22892 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
22893 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
22894 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
22895 #define REGSETH(p,t) \
22896 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
22897 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
22898 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
22899 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
22900 #define REGSET2(p,t) \
22901 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
22902 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
22903 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
22904 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
22905 #define SPLRBANK(base,bank,t) \
22906 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
22907 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
22908 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
22909 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
22910 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
22911 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
22912
22913 static const struct reg_entry reg_names[] =
22914 {
22915 /* ARM integer registers. */
22916 REGSET(r, RN), REGSET(R, RN),
22917
22918 /* ATPCS synonyms. */
22919 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
22920 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
22921 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
22922
22923 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
22924 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
22925 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
22926
22927 /* Well-known aliases. */
22928 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
22929 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
22930
22931 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
22932 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
22933
22934 /* Defining the new Zero register from ARMv8.1-M. */
22935 REGDEF(zr,15,ZR),
22936 REGDEF(ZR,15,ZR),
22937
22938 /* Coprocessor numbers. */
22939 REGSET(p, CP), REGSET(P, CP),
22940
22941 /* Coprocessor register numbers. The "cr" variants are for backward
22942 compatibility. */
22943 REGSET(c, CN), REGSET(C, CN),
22944 REGSET(cr, CN), REGSET(CR, CN),
22945
22946 /* ARM banked registers. */
22947 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
22948 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
22949 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
22950 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
22951 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
22952 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
22953 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
22954
22955 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
22956 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
22957 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
22958 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
22959 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
22960 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
22961 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
22962 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
22963
22964 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
22965 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
22966 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
22967 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
22968 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
22969 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
22970 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
22971 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
22972 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
22973
22974 /* FPA registers. */
22975 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
22976 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
22977
22978 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
22979 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
22980
22981 /* VFP SP registers. */
22982 REGSET(s,VFS), REGSET(S,VFS),
22983 REGSETH(s,VFS), REGSETH(S,VFS),
22984
22985 /* VFP DP Registers. */
22986 REGSET(d,VFD), REGSET(D,VFD),
22987 /* Extra Neon DP registers. */
22988 REGSETH(d,VFD), REGSETH(D,VFD),
22989
22990 /* Neon QP registers. */
22991 REGSET2(q,NQ), REGSET2(Q,NQ),
22992
22993 /* VFP control registers. */
22994 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
22995 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
22996 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
22997 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
22998 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
22999 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
23000 REGDEF(mvfr2,5,VFC), REGDEF(MVFR2,5,VFC),
23001 REGDEF(fpscr_nzcvqc,2,VFC), REGDEF(FPSCR_nzcvqc,2,VFC),
23002 REGDEF(vpr,12,VFC), REGDEF(VPR,12,VFC),
23003 REGDEF(fpcxt_ns,14,VFC), REGDEF(FPCXT_NS,14,VFC),
23004 REGDEF(fpcxt_s,15,VFC), REGDEF(FPCXT_S,15,VFC),
23005
23006 /* Maverick DSP coprocessor registers. */
23007 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
23008 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
23009
23010 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
23011 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
23012 REGDEF(dspsc,0,DSPSC),
23013
23014 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
23015 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
23016 REGDEF(DSPSC,0,DSPSC),
23017
23018 /* iWMMXt data registers - p0, c0-15. */
23019 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
23020
23021 /* iWMMXt control registers - p1, c0-3. */
23022 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
23023 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
23024 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
23025 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
23026
23027 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
23028 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
23029 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
23030 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
23031 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
23032
23033 /* XScale accumulator registers. */
23034 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
23035 };
23036 #undef REGDEF
23037 #undef REGNUM
23038 #undef REGSET
23039
23040 /* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
23041 within psr_required_here. */
23042 static const struct asm_psr psrs[] =
23043 {
23044 /* Backward compatibility notation. Note that "all" is no longer
23045 truly all possible PSR bits. */
23046 {"all", PSR_c | PSR_f},
23047 {"flg", PSR_f},
23048 {"ctl", PSR_c},
23049
23050 /* Individual flags. */
23051 {"f", PSR_f},
23052 {"c", PSR_c},
23053 {"x", PSR_x},
23054 {"s", PSR_s},
23055
23056 /* Combinations of flags. */
23057 {"fs", PSR_f | PSR_s},
23058 {"fx", PSR_f | PSR_x},
23059 {"fc", PSR_f | PSR_c},
23060 {"sf", PSR_s | PSR_f},
23061 {"sx", PSR_s | PSR_x},
23062 {"sc", PSR_s | PSR_c},
23063 {"xf", PSR_x | PSR_f},
23064 {"xs", PSR_x | PSR_s},
23065 {"xc", PSR_x | PSR_c},
23066 {"cf", PSR_c | PSR_f},
23067 {"cs", PSR_c | PSR_s},
23068 {"cx", PSR_c | PSR_x},
23069 {"fsx", PSR_f | PSR_s | PSR_x},
23070 {"fsc", PSR_f | PSR_s | PSR_c},
23071 {"fxs", PSR_f | PSR_x | PSR_s},
23072 {"fxc", PSR_f | PSR_x | PSR_c},
23073 {"fcs", PSR_f | PSR_c | PSR_s},
23074 {"fcx", PSR_f | PSR_c | PSR_x},
23075 {"sfx", PSR_s | PSR_f | PSR_x},
23076 {"sfc", PSR_s | PSR_f | PSR_c},
23077 {"sxf", PSR_s | PSR_x | PSR_f},
23078 {"sxc", PSR_s | PSR_x | PSR_c},
23079 {"scf", PSR_s | PSR_c | PSR_f},
23080 {"scx", PSR_s | PSR_c | PSR_x},
23081 {"xfs", PSR_x | PSR_f | PSR_s},
23082 {"xfc", PSR_x | PSR_f | PSR_c},
23083 {"xsf", PSR_x | PSR_s | PSR_f},
23084 {"xsc", PSR_x | PSR_s | PSR_c},
23085 {"xcf", PSR_x | PSR_c | PSR_f},
23086 {"xcs", PSR_x | PSR_c | PSR_s},
23087 {"cfs", PSR_c | PSR_f | PSR_s},
23088 {"cfx", PSR_c | PSR_f | PSR_x},
23089 {"csf", PSR_c | PSR_s | PSR_f},
23090 {"csx", PSR_c | PSR_s | PSR_x},
23091 {"cxf", PSR_c | PSR_x | PSR_f},
23092 {"cxs", PSR_c | PSR_x | PSR_s},
23093 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
23094 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
23095 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
23096 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
23097 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
23098 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
23099 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
23100 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
23101 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
23102 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
23103 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
23104 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
23105 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
23106 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
23107 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
23108 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
23109 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
23110 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
23111 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
23112 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
23113 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
23114 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
23115 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
23116 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
23117 };
23118
23119 /* Table of V7M psr names. */
23120 static const struct asm_psr v7m_psrs[] =
23121 {
23122 {"apsr", 0x0 }, {"APSR", 0x0 },
23123 {"iapsr", 0x1 }, {"IAPSR", 0x1 },
23124 {"eapsr", 0x2 }, {"EAPSR", 0x2 },
23125 {"psr", 0x3 }, {"PSR", 0x3 },
23126 {"xpsr", 0x3 }, {"XPSR", 0x3 }, {"xPSR", 3 },
23127 {"ipsr", 0x5 }, {"IPSR", 0x5 },
23128 {"epsr", 0x6 }, {"EPSR", 0x6 },
23129 {"iepsr", 0x7 }, {"IEPSR", 0x7 },
23130 {"msp", 0x8 }, {"MSP", 0x8 },
23131 {"psp", 0x9 }, {"PSP", 0x9 },
23132 {"msplim", 0xa }, {"MSPLIM", 0xa },
23133 {"psplim", 0xb }, {"PSPLIM", 0xb },
23134 {"primask", 0x10}, {"PRIMASK", 0x10},
23135 {"basepri", 0x11}, {"BASEPRI", 0x11},
23136 {"basepri_max", 0x12}, {"BASEPRI_MAX", 0x12},
23137 {"faultmask", 0x13}, {"FAULTMASK", 0x13},
23138 {"control", 0x14}, {"CONTROL", 0x14},
23139 {"msp_ns", 0x88}, {"MSP_NS", 0x88},
23140 {"psp_ns", 0x89}, {"PSP_NS", 0x89},
23141 {"msplim_ns", 0x8a}, {"MSPLIM_NS", 0x8a},
23142 {"psplim_ns", 0x8b}, {"PSPLIM_NS", 0x8b},
23143 {"primask_ns", 0x90}, {"PRIMASK_NS", 0x90},
23144 {"basepri_ns", 0x91}, {"BASEPRI_NS", 0x91},
23145 {"faultmask_ns", 0x93}, {"FAULTMASK_NS", 0x93},
23146 {"control_ns", 0x94}, {"CONTROL_NS", 0x94},
23147 {"sp_ns", 0x98}, {"SP_NS", 0x98 }
23148 };
23149
23150 /* Table of all shift-in-operand names. */
23151 static const struct asm_shift_name shift_names [] =
23152 {
23153 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
23154 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
23155 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
23156 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
23157 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
23158 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX },
23159 { "uxtw", SHIFT_UXTW}, { "UXTW", SHIFT_UXTW}
23160 };
23161
23162 /* Table of all explicit relocation names. */
23163 #ifdef OBJ_ELF
23164 static struct reloc_entry reloc_names[] =
23165 {
23166 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
23167 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
23168 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
23169 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
23170 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
23171 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
23172 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
23173 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
23174 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
23175 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
23176 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
23177 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
23178 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
23179 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
23180 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
23181 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
23182 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
23183 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ},
23184 { "gotfuncdesc", BFD_RELOC_ARM_GOTFUNCDESC },
23185 { "GOTFUNCDESC", BFD_RELOC_ARM_GOTFUNCDESC },
23186 { "gotofffuncdesc", BFD_RELOC_ARM_GOTOFFFUNCDESC },
23187 { "GOTOFFFUNCDESC", BFD_RELOC_ARM_GOTOFFFUNCDESC },
23188 { "funcdesc", BFD_RELOC_ARM_FUNCDESC },
23189 { "FUNCDESC", BFD_RELOC_ARM_FUNCDESC },
23190 { "tlsgd_fdpic", BFD_RELOC_ARM_TLS_GD32_FDPIC }, { "TLSGD_FDPIC", BFD_RELOC_ARM_TLS_GD32_FDPIC },
23191 { "tlsldm_fdpic", BFD_RELOC_ARM_TLS_LDM32_FDPIC }, { "TLSLDM_FDPIC", BFD_RELOC_ARM_TLS_LDM32_FDPIC },
23192 { "gottpoff_fdpic", BFD_RELOC_ARM_TLS_IE32_FDPIC }, { "GOTTPOFF_FDIC", BFD_RELOC_ARM_TLS_IE32_FDPIC },
23193 };
23194 #endif
23195
23196 /* Table of all conditional affixes. */
23197 static const struct asm_cond conds[] =
23198 {
23199 {"eq", 0x0},
23200 {"ne", 0x1},
23201 {"cs", 0x2}, {"hs", 0x2},
23202 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
23203 {"mi", 0x4},
23204 {"pl", 0x5},
23205 {"vs", 0x6},
23206 {"vc", 0x7},
23207 {"hi", 0x8},
23208 {"ls", 0x9},
23209 {"ge", 0xa},
23210 {"lt", 0xb},
23211 {"gt", 0xc},
23212 {"le", 0xd},
23213 {"al", 0xe}
23214 };
23215 static const struct asm_cond vconds[] =
23216 {
23217 {"t", 0xf},
23218 {"e", 0x10}
23219 };
23220
23221 #define UL_BARRIER(L,U,CODE,FEAT) \
23222 { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
23223 { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
23224
23225 static struct asm_barrier_opt barrier_opt_names[] =
23226 {
23227 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
23228 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
23229 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
23230 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
23231 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
23232 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
23233 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
23234 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
23235 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
23236 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
23237 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
23238 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
23239 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
23240 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
23241 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
23242 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
23243 };
23244
23245 #undef UL_BARRIER
23246
23247 /* Table of ARM-format instructions. */
23248
23249 /* Macros for gluing together operand strings. N.B. In all cases
23250 other than OPS0, the trailing OP_stop comes from default
23251 zero-initialization of the unspecified elements of the array. */
23252 #define OPS0() { OP_stop, }
23253 #define OPS1(a) { OP_##a, }
23254 #define OPS2(a,b) { OP_##a,OP_##b, }
23255 #define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
23256 #define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
23257 #define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
23258 #define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
23259
23260 /* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
23261 This is useful when mixing operands for ARM and THUMB, i.e. using the
23262 MIX_ARM_THUMB_OPERANDS macro.
23263 In order to use these macros, prefix the number of operands with _
23264 e.g. _3. */
23265 #define OPS_1(a) { a, }
23266 #define OPS_2(a,b) { a,b, }
23267 #define OPS_3(a,b,c) { a,b,c, }
23268 #define OPS_4(a,b,c,d) { a,b,c,d, }
23269 #define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
23270 #define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
23271
23272 /* These macros abstract out the exact format of the mnemonic table and
23273 save some repeated characters. */
23274
23275 /* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
23276 #define TxCE(mnem, op, top, nops, ops, ae, te) \
23277 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
23278 THUMB_VARIANT, do_##ae, do_##te, 0 }
23279
23280 /* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
23281 a T_MNEM_xyz enumerator. */
23282 #define TCE(mnem, aop, top, nops, ops, ae, te) \
23283 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
23284 #define tCE(mnem, aop, top, nops, ops, ae, te) \
23285 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
23286
23287 /* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
23288 infix after the third character. */
23289 #define TxC3(mnem, op, top, nops, ops, ae, te) \
23290 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
23291 THUMB_VARIANT, do_##ae, do_##te, 0 }
23292 #define TxC3w(mnem, op, top, nops, ops, ae, te) \
23293 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
23294 THUMB_VARIANT, do_##ae, do_##te, 0 }
23295 #define TC3(mnem, aop, top, nops, ops, ae, te) \
23296 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
23297 #define TC3w(mnem, aop, top, nops, ops, ae, te) \
23298 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
23299 #define tC3(mnem, aop, top, nops, ops, ae, te) \
23300 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
23301 #define tC3w(mnem, aop, top, nops, ops, ae, te) \
23302 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
23303
23304 /* Mnemonic that cannot be conditionalized. The ARM condition-code
23305 field is still 0xE. Many of the Thumb variants can be executed
23306 conditionally, so this is checked separately. */
23307 #define TUE(mnem, op, top, nops, ops, ae, te) \
23308 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
23309 THUMB_VARIANT, do_##ae, do_##te, 0 }
23310
23311 /* Same as TUE but the encoding function for ARM and Thumb modes is the same.
23312 Used by mnemonics that have very minimal differences in the encoding for
23313 ARM and Thumb variants and can be handled in a common function. */
23314 #define TUEc(mnem, op, top, nops, ops, en) \
23315 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
23316 THUMB_VARIANT, do_##en, do_##en, 0 }
23317
23318 /* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
23319 condition code field. */
23320 #define TUF(mnem, op, top, nops, ops, ae, te) \
23321 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
23322 THUMB_VARIANT, do_##ae, do_##te, 0 }
23323
23324 /* ARM-only variants of all the above. */
23325 #define CE(mnem, op, nops, ops, ae) \
23326 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23327
23328 #define C3(mnem, op, nops, ops, ae) \
23329 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23330
23331 /* Thumb-only variants of TCE and TUE. */
23332 #define ToC(mnem, top, nops, ops, te) \
23333 { mnem, OPS##nops ops, OT_csuffix, 0x0, 0x##top, 0, THUMB_VARIANT, NULL, \
23334 do_##te, 0 }
23335
23336 #define ToU(mnem, top, nops, ops, te) \
23337 { mnem, OPS##nops ops, OT_unconditional, 0x0, 0x##top, 0, THUMB_VARIANT, \
23338 NULL, do_##te, 0 }
23339
23340 /* T_MNEM_xyz enumerator variants of ToC. */
23341 #define toC(mnem, top, nops, ops, te) \
23342 { mnem, OPS##nops ops, OT_csuffix, 0x0, T_MNEM##top, 0, THUMB_VARIANT, NULL, \
23343 do_##te, 0 }
23344
23345 /* T_MNEM_xyz enumerator variants of ToU. */
23346 #define toU(mnem, top, nops, ops, te) \
23347 { mnem, OPS##nops ops, OT_unconditional, 0x0, T_MNEM##top, 0, THUMB_VARIANT, \
23348 NULL, do_##te, 0 }
23349
23350 /* Legacy mnemonics that always have conditional infix after the third
23351 character. */
23352 #define CL(mnem, op, nops, ops, ae) \
23353 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
23354 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23355
23356 /* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
23357 #define cCE(mnem, op, nops, ops, ae) \
23358 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
23359
23360 /* mov instructions that are shared between coprocessor and MVE. */
23361 #define mcCE(mnem, op, nops, ops, ae) \
23362 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, THUMB_VARIANT, do_##ae, do_##ae, 0 }
23363
23364 /* Legacy coprocessor instructions where conditional infix and conditional
23365 suffix are ambiguous. For consistency this includes all FPA instructions,
23366 not just the potentially ambiguous ones. */
23367 #define cCL(mnem, op, nops, ops, ae) \
23368 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
23369 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
23370
23371 /* Coprocessor, takes either a suffix or a position-3 infix
23372 (for an FPA corner case). */
23373 #define C3E(mnem, op, nops, ops, ae) \
23374 { mnem, OPS##nops ops, OT_csuf_or_in3, \
23375 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
23376
23377 #define xCM_(m1, m2, m3, op, nops, ops, ae) \
23378 { m1 #m2 m3, OPS##nops ops, \
23379 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
23380 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23381
23382 #define CM(m1, m2, op, nops, ops, ae) \
23383 xCM_ (m1, , m2, op, nops, ops, ae), \
23384 xCM_ (m1, eq, m2, op, nops, ops, ae), \
23385 xCM_ (m1, ne, m2, op, nops, ops, ae), \
23386 xCM_ (m1, cs, m2, op, nops, ops, ae), \
23387 xCM_ (m1, hs, m2, op, nops, ops, ae), \
23388 xCM_ (m1, cc, m2, op, nops, ops, ae), \
23389 xCM_ (m1, ul, m2, op, nops, ops, ae), \
23390 xCM_ (m1, lo, m2, op, nops, ops, ae), \
23391 xCM_ (m1, mi, m2, op, nops, ops, ae), \
23392 xCM_ (m1, pl, m2, op, nops, ops, ae), \
23393 xCM_ (m1, vs, m2, op, nops, ops, ae), \
23394 xCM_ (m1, vc, m2, op, nops, ops, ae), \
23395 xCM_ (m1, hi, m2, op, nops, ops, ae), \
23396 xCM_ (m1, ls, m2, op, nops, ops, ae), \
23397 xCM_ (m1, ge, m2, op, nops, ops, ae), \
23398 xCM_ (m1, lt, m2, op, nops, ops, ae), \
23399 xCM_ (m1, gt, m2, op, nops, ops, ae), \
23400 xCM_ (m1, le, m2, op, nops, ops, ae), \
23401 xCM_ (m1, al, m2, op, nops, ops, ae)
23402
23403 #define UE(mnem, op, nops, ops, ae) \
23404 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23405
23406 #define UF(mnem, op, nops, ops, ae) \
23407 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
23408
23409 /* Neon data-processing. ARM versions are unconditional with cond=0xf.
23410 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
23411 use the same encoding function for each. */
23412 #define NUF(mnem, op, nops, ops, enc) \
23413 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
23414 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 0 }
23415
23416 /* Neon data processing, version which indirects through neon_enc_tab for
23417 the various overloaded versions of opcodes. */
23418 #define nUF(mnem, op, nops, ops, enc) \
23419 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
23420 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 0 }
23421
23422 /* Neon insn with conditional suffix for the ARM version, non-overloaded
23423 version. */
23424 #define NCE_tag(mnem, op, nops, ops, enc, tag, mve_p) \
23425 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
23426 THUMB_VARIANT, do_##enc, do_##enc, mve_p }
23427
23428 #define NCE(mnem, op, nops, ops, enc) \
23429 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 0)
23430
23431 #define NCEF(mnem, op, nops, ops, enc) \
23432 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 0)
23433
23434 /* Neon insn with conditional suffix for the ARM version, overloaded types. */
23435 #define nCE_tag(mnem, op, nops, ops, enc, tag, mve_p) \
23436 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
23437 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, mve_p }
23438
23439 #define nCE(mnem, op, nops, ops, enc) \
23440 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 0)
23441
23442 #define nCEF(mnem, op, nops, ops, enc) \
23443 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 0)
23444
23445 /* */
23446 #define mCEF(mnem, op, nops, ops, enc) \
23447 { #mnem, OPS##nops ops, OT_csuffixF, M_MNEM##op, M_MNEM##op, \
23448 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
23449
23450
23451 /* nCEF but for MVE predicated instructions. */
23452 #define mnCEF(mnem, op, nops, ops, enc) \
23453 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 1)
23454
23455 /* nCE but for MVE predicated instructions. */
23456 #define mnCE(mnem, op, nops, ops, enc) \
23457 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 1)
23458
23459 /* NUF but for potentially MVE predicated instructions. */
23460 #define MNUF(mnem, op, nops, ops, enc) \
23461 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
23462 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
23463
23464 /* nUF but for potentially MVE predicated instructions. */
23465 #define mnUF(mnem, op, nops, ops, enc) \
23466 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
23467 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
23468
23469 /* ToC but for potentially MVE predicated instructions. */
23470 #define mToC(mnem, top, nops, ops, te) \
23471 { mnem, OPS##nops ops, OT_csuffix, 0x0, 0x##top, 0, THUMB_VARIANT, NULL, \
23472 do_##te, 1 }
23473
23474 /* NCE but for MVE predicated instructions. */
23475 #define MNCE(mnem, op, nops, ops, enc) \
23476 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 1)
23477
23478 /* NCEF but for MVE predicated instructions. */
23479 #define MNCEF(mnem, op, nops, ops, enc) \
23480 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 1)
23481 #define do_0 0
23482
23483 static const struct asm_opcode insns[] =
23484 {
23485 #define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
23486 #define THUMB_VARIANT & arm_ext_v4t
23487 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
23488 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
23489 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
23490 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
23491 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
23492 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
23493 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
23494 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
23495 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
23496 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
23497 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
23498 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
23499 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
23500 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
23501 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
23502 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
23503
23504 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
23505 for setting PSR flag bits. They are obsolete in V6 and do not
23506 have Thumb equivalents. */
23507 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
23508 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
23509 CL("tstp", 110f000, 2, (RR, SH), cmp),
23510 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
23511 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
23512 CL("cmpp", 150f000, 2, (RR, SH), cmp),
23513 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
23514 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
23515 CL("cmnp", 170f000, 2, (RR, SH), cmp),
23516
23517 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
23518 tC3("movs", 1b00000, _movs, 2, (RR, SHG), mov, t_mov_cmp),
23519 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
23520 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
23521
23522 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
23523 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
23524 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
23525 OP_RRnpc),
23526 OP_ADDRGLDR),ldst, t_ldst),
23527 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
23528
23529 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23530 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23531 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23532 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23533 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23534 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23535
23536 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
23537 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
23538
23539 /* Pseudo ops. */
23540 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
23541 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
23542 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
23543 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
23544
23545 /* Thumb-compatibility pseudo ops. */
23546 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
23547 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
23548 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
23549 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
23550 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
23551 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
23552 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
23553 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
23554 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
23555 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
23556 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
23557 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
23558
23559 /* These may simplify to neg. */
23560 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
23561 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
23562
23563 #undef THUMB_VARIANT
23564 #define THUMB_VARIANT & arm_ext_os
23565
23566 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
23567 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
23568
23569 #undef THUMB_VARIANT
23570 #define THUMB_VARIANT & arm_ext_v6
23571
23572 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
23573
23574 /* V1 instructions with no Thumb analogue prior to V6T2. */
23575 #undef THUMB_VARIANT
23576 #define THUMB_VARIANT & arm_ext_v6t2
23577
23578 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
23579 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
23580 CL("teqp", 130f000, 2, (RR, SH), cmp),
23581
23582 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
23583 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
23584 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
23585 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
23586
23587 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23588 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23589
23590 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23591 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
23592
23593 /* V1 instructions with no Thumb analogue at all. */
23594 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
23595 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
23596
23597 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
23598 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
23599 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
23600 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
23601 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
23602 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
23603 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
23604 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
23605
23606 #undef ARM_VARIANT
23607 #define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
23608 #undef THUMB_VARIANT
23609 #define THUMB_VARIANT & arm_ext_v4t
23610
23611 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
23612 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
23613
23614 #undef THUMB_VARIANT
23615 #define THUMB_VARIANT & arm_ext_v6t2
23616
23617 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
23618 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
23619
23620 /* Generic coprocessor instructions. */
23621 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
23622 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23623 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23624 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23625 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23626 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
23627 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
23628
23629 #undef ARM_VARIANT
23630 #define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
23631
23632 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
23633 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
23634
23635 #undef ARM_VARIANT
23636 #define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
23637 #undef THUMB_VARIANT
23638 #define THUMB_VARIANT & arm_ext_msr
23639
23640 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
23641 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
23642
23643 #undef ARM_VARIANT
23644 #define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
23645 #undef THUMB_VARIANT
23646 #define THUMB_VARIANT & arm_ext_v6t2
23647
23648 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
23649 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
23650 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
23651 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
23652 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
23653 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
23654 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
23655 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
23656
23657 #undef ARM_VARIANT
23658 #define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
23659 #undef THUMB_VARIANT
23660 #define THUMB_VARIANT & arm_ext_v4t
23661
23662 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23663 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23664 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23665 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23666 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23667 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
23668
23669 #undef ARM_VARIANT
23670 #define ARM_VARIANT & arm_ext_v4t_5
23671
23672 /* ARM Architecture 4T. */
23673 /* Note: bx (and blx) are required on V5, even if the processor does
23674 not support Thumb. */
23675 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
23676
23677 #undef ARM_VARIANT
23678 #define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
23679 #undef THUMB_VARIANT
23680 #define THUMB_VARIANT & arm_ext_v5t
23681
23682 /* Note: blx has 2 variants; the .value coded here is for
23683 BLX(2). Only this variant has conditional execution. */
23684 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
23685 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
23686
23687 #undef THUMB_VARIANT
23688 #define THUMB_VARIANT & arm_ext_v6t2
23689
23690 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
23691 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23692 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23693 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23694 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
23695 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
23696 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
23697 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
23698
23699 #undef ARM_VARIANT
23700 #define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
23701 #undef THUMB_VARIANT
23702 #define THUMB_VARIANT & arm_ext_v5exp
23703
23704 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23705 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23706 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23707 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23708
23709 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23710 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
23711
23712 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
23713 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
23714 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
23715 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
23716
23717 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23718 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23719 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23720 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23721
23722 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23723 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23724
23725 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
23726 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
23727 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
23728 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
23729
23730 #undef ARM_VARIANT
23731 #define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
23732 #undef THUMB_VARIANT
23733 #define THUMB_VARIANT & arm_ext_v6t2
23734
23735 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
23736 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
23737 ldrd, t_ldstd),
23738 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
23739 ADDRGLDRS), ldrd, t_ldstd),
23740
23741 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
23742 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
23743
23744 #undef ARM_VARIANT
23745 #define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
23746
23747 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
23748
23749 #undef ARM_VARIANT
23750 #define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
23751 #undef THUMB_VARIANT
23752 #define THUMB_VARIANT & arm_ext_v6
23753
23754 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
23755 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
23756 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
23757 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
23758 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
23759 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23760 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23761 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23762 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23763 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
23764
23765 #undef THUMB_VARIANT
23766 #define THUMB_VARIANT & arm_ext_v6t2_v8m
23767
23768 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
23769 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
23770 strex, t_strex),
23771 #undef THUMB_VARIANT
23772 #define THUMB_VARIANT & arm_ext_v6t2
23773
23774 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
23775 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
23776
23777 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
23778 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
23779
23780 /* ARM V6 not included in V7M. */
23781 #undef THUMB_VARIANT
23782 #define THUMB_VARIANT & arm_ext_v6_notm
23783 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
23784 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
23785 UF(rfeib, 9900a00, 1, (RRw), rfe),
23786 UF(rfeda, 8100a00, 1, (RRw), rfe),
23787 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
23788 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
23789 UF(rfefa, 8100a00, 1, (RRw), rfe),
23790 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
23791 UF(rfeed, 9900a00, 1, (RRw), rfe),
23792 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
23793 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
23794 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
23795 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
23796 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
23797 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
23798 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
23799 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
23800 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
23801 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
23802
23803 /* ARM V6 not included in V7M (eg. integer SIMD). */
23804 #undef THUMB_VARIANT
23805 #define THUMB_VARIANT & arm_ext_v6_dsp
23806 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
23807 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
23808 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23809 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23810 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23811 /* Old name for QASX. */
23812 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23813 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23814 /* Old name for QSAX. */
23815 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23816 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23817 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23818 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23819 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23820 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23821 /* Old name for SASX. */
23822 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23823 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23824 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23825 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23826 /* Old name for SHASX. */
23827 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23828 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23829 /* Old name for SHSAX. */
23830 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23831 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23832 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23833 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23834 /* Old name for SSAX. */
23835 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23836 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23837 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23838 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23839 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23840 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23841 /* Old name for UASX. */
23842 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23843 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23844 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23845 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23846 /* Old name for UHASX. */
23847 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23848 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23849 /* Old name for UHSAX. */
23850 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23851 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23852 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23853 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23854 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23855 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23856 /* Old name for UQASX. */
23857 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23858 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23859 /* Old name for UQSAX. */
23860 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23861 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23862 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23863 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23864 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23865 /* Old name for USAX. */
23866 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23867 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23868 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23869 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23870 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23871 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23872 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23873 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23874 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
23875 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
23876 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
23877 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23878 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23879 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
23880 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
23881 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23882 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23883 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
23884 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
23885 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23886 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23887 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23888 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23889 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23890 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23891 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23892 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23893 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23894 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23895 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
23896 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
23897 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
23898 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
23899 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
23900
23901 #undef ARM_VARIANT
23902 #define ARM_VARIANT & arm_ext_v6k_v6t2
23903 #undef THUMB_VARIANT
23904 #define THUMB_VARIANT & arm_ext_v6k_v6t2
23905
23906 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
23907 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
23908 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
23909 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
23910
23911 #undef THUMB_VARIANT
23912 #define THUMB_VARIANT & arm_ext_v6_notm
23913 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
23914 ldrexd, t_ldrexd),
23915 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
23916 RRnpcb), strexd, t_strexd),
23917
23918 #undef THUMB_VARIANT
23919 #define THUMB_VARIANT & arm_ext_v6t2_v8m
23920 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
23921 rd_rn, rd_rn),
23922 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
23923 rd_rn, rd_rn),
23924 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
23925 strex, t_strexbh),
23926 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
23927 strex, t_strexbh),
23928 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
23929
23930 #undef ARM_VARIANT
23931 #define ARM_VARIANT & arm_ext_sec
23932 #undef THUMB_VARIANT
23933 #define THUMB_VARIANT & arm_ext_sec
23934
23935 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
23936
23937 #undef ARM_VARIANT
23938 #define ARM_VARIANT & arm_ext_virt
23939 #undef THUMB_VARIANT
23940 #define THUMB_VARIANT & arm_ext_virt
23941
23942 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
23943 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
23944
23945 #undef ARM_VARIANT
23946 #define ARM_VARIANT & arm_ext_pan
23947 #undef THUMB_VARIANT
23948 #define THUMB_VARIANT & arm_ext_pan
23949
23950 TUF("setpan", 1100000, b610, 1, (I7), setpan, t_setpan),
23951
23952 #undef ARM_VARIANT
23953 #define ARM_VARIANT & arm_ext_v6t2
23954 #undef THUMB_VARIANT
23955 #define THUMB_VARIANT & arm_ext_v6t2
23956
23957 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
23958 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
23959 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
23960 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
23961
23962 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
23963 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
23964
23965 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
23966 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
23967 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
23968 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
23969
23970 #undef ARM_VARIANT
23971 #define ARM_VARIANT & arm_ext_v3
23972 #undef THUMB_VARIANT
23973 #define THUMB_VARIANT & arm_ext_v6t2
23974
23975 TUE("csdb", 320f014, f3af8014, 0, (), noargs, t_csdb),
23976 TUF("ssbb", 57ff040, f3bf8f40, 0, (), noargs, t_csdb),
23977 TUF("pssbb", 57ff044, f3bf8f44, 0, (), noargs, t_csdb),
23978
23979 #undef ARM_VARIANT
23980 #define ARM_VARIANT & arm_ext_v6t2
23981 #undef THUMB_VARIANT
23982 #define THUMB_VARIANT & arm_ext_v6t2_v8m
23983 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
23984 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
23985
23986 /* Thumb-only instructions. */
23987 #undef ARM_VARIANT
23988 #define ARM_VARIANT NULL
23989 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
23990 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
23991
23992 /* ARM does not really have an IT instruction, so always allow it.
23993 The opcode is copied from Thumb in order to allow warnings in
23994 -mimplicit-it=[never | arm] modes. */
23995 #undef ARM_VARIANT
23996 #define ARM_VARIANT & arm_ext_v1
23997 #undef THUMB_VARIANT
23998 #define THUMB_VARIANT & arm_ext_v6t2
23999
24000 TUE("it", bf08, bf08, 1, (COND), it, t_it),
24001 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
24002 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
24003 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
24004 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
24005 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
24006 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
24007 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
24008 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
24009 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
24010 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
24011 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
24012 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
24013 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
24014 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
24015 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
24016 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
24017 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
24018
24019 /* Thumb2 only instructions. */
24020 #undef ARM_VARIANT
24021 #define ARM_VARIANT NULL
24022
24023 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
24024 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
24025 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
24026 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
24027 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
24028 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
24029
24030 /* Hardware division instructions. */
24031 #undef ARM_VARIANT
24032 #define ARM_VARIANT & arm_ext_adiv
24033 #undef THUMB_VARIANT
24034 #define THUMB_VARIANT & arm_ext_div
24035
24036 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
24037 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
24038
24039 /* ARM V6M/V7 instructions. */
24040 #undef ARM_VARIANT
24041 #define ARM_VARIANT & arm_ext_barrier
24042 #undef THUMB_VARIANT
24043 #define THUMB_VARIANT & arm_ext_barrier
24044
24045 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
24046 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
24047 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
24048
24049 /* ARM V7 instructions. */
24050 #undef ARM_VARIANT
24051 #define ARM_VARIANT & arm_ext_v7
24052 #undef THUMB_VARIANT
24053 #define THUMB_VARIANT & arm_ext_v7
24054
24055 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
24056 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
24057
24058 #undef ARM_VARIANT
24059 #define ARM_VARIANT & arm_ext_mp
24060 #undef THUMB_VARIANT
24061 #define THUMB_VARIANT & arm_ext_mp
24062
24063 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
24064
24065 /* AArchv8 instructions. */
24066 #undef ARM_VARIANT
24067 #define ARM_VARIANT & arm_ext_v8
24068
24069 /* Instructions shared between armv8-a and armv8-m. */
24070 #undef THUMB_VARIANT
24071 #define THUMB_VARIANT & arm_ext_atomics
24072
24073 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24074 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24075 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24076 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24077 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24078 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24079 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24080 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
24081 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24082 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
24083 stlex, t_stlex),
24084 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
24085 stlex, t_stlex),
24086 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
24087 stlex, t_stlex),
24088 #undef THUMB_VARIANT
24089 #define THUMB_VARIANT & arm_ext_v8
24090
24091 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
24092 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
24093 ldrexd, t_ldrexd),
24094 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
24095 strexd, t_strexd),
24096
24097 /* Defined in V8 but is in undefined encoding space for earlier
24098 architectures. However earlier architectures are required to treat
24099 this instuction as a semihosting trap as well. Hence while not explicitly
24100 defined as such, it is in fact correct to define the instruction for all
24101 architectures. */
24102 #undef THUMB_VARIANT
24103 #define THUMB_VARIANT & arm_ext_v1
24104 #undef ARM_VARIANT
24105 #define ARM_VARIANT & arm_ext_v1
24106 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
24107
24108 /* ARMv8 T32 only. */
24109 #undef ARM_VARIANT
24110 #define ARM_VARIANT NULL
24111 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
24112 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
24113 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
24114
24115 /* FP for ARMv8. */
24116 #undef ARM_VARIANT
24117 #define ARM_VARIANT & fpu_vfp_ext_armv8xd
24118 #undef THUMB_VARIANT
24119 #define THUMB_VARIANT & fpu_vfp_ext_armv8xd
24120
24121 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
24122 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
24123 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
24124 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
24125 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
24126 mnCE(vrintz, _vrintr, 2, (RNSDQMQ, oRNSDQMQ), vrintz),
24127 mnCE(vrintx, _vrintr, 2, (RNSDQMQ, oRNSDQMQ), vrintx),
24128 mnUF(vrinta, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrinta),
24129 mnUF(vrintn, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintn),
24130 mnUF(vrintp, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintp),
24131 mnUF(vrintm, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintm),
24132
24133 /* Crypto v1 extensions. */
24134 #undef ARM_VARIANT
24135 #define ARM_VARIANT & fpu_crypto_ext_armv8
24136 #undef THUMB_VARIANT
24137 #define THUMB_VARIANT & fpu_crypto_ext_armv8
24138
24139 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
24140 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
24141 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
24142 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
24143 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
24144 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
24145 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
24146 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
24147 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
24148 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
24149 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
24150 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
24151 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
24152 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
24153
24154 #undef ARM_VARIANT
24155 #define ARM_VARIANT & crc_ext_armv8
24156 #undef THUMB_VARIANT
24157 #define THUMB_VARIANT & crc_ext_armv8
24158 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
24159 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
24160 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
24161 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
24162 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
24163 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
24164
24165 /* ARMv8.2 RAS extension. */
24166 #undef ARM_VARIANT
24167 #define ARM_VARIANT & arm_ext_ras
24168 #undef THUMB_VARIANT
24169 #define THUMB_VARIANT & arm_ext_ras
24170 TUE ("esb", 320f010, f3af8010, 0, (), noargs, noargs),
24171
24172 #undef ARM_VARIANT
24173 #define ARM_VARIANT & arm_ext_v8_3
24174 #undef THUMB_VARIANT
24175 #define THUMB_VARIANT & arm_ext_v8_3
24176 NCE (vjcvt, eb90bc0, 2, (RVS, RVD), vjcvt),
24177
24178 #undef ARM_VARIANT
24179 #define ARM_VARIANT & fpu_neon_ext_dotprod
24180 #undef THUMB_VARIANT
24181 #define THUMB_VARIANT & fpu_neon_ext_dotprod
24182 NUF (vsdot, d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), neon_dotproduct_s),
24183 NUF (vudot, d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), neon_dotproduct_u),
24184
24185 #undef ARM_VARIANT
24186 #define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
24187 #undef THUMB_VARIANT
24188 #define THUMB_VARIANT NULL
24189
24190 cCE("wfs", e200110, 1, (RR), rd),
24191 cCE("rfs", e300110, 1, (RR), rd),
24192 cCE("wfc", e400110, 1, (RR), rd),
24193 cCE("rfc", e500110, 1, (RR), rd),
24194
24195 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
24196 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
24197 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
24198 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
24199
24200 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
24201 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
24202 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
24203 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
24204
24205 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
24206 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
24207 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
24208 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
24209 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
24210 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
24211 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
24212 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
24213 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
24214 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
24215 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
24216 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
24217
24218 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
24219 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
24220 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
24221 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
24222 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
24223 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
24224 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
24225 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
24226 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
24227 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
24228 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
24229 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
24230
24231 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
24232 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
24233 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
24234 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
24235 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
24236 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
24237 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
24238 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
24239 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
24240 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
24241 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
24242 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
24243
24244 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
24245 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
24246 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
24247 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
24248 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
24249 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
24250 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
24251 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
24252 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
24253 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
24254 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
24255 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
24256
24257 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
24258 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
24259 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
24260 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
24261 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
24262 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
24263 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
24264 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
24265 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
24266 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
24267 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
24268 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
24269
24270 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
24271 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
24272 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
24273 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
24274 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
24275 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
24276 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
24277 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
24278 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
24279 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
24280 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
24281 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
24282
24283 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
24284 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
24285 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
24286 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
24287 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
24288 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
24289 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
24290 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
24291 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
24292 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
24293 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
24294 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
24295
24296 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
24297 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
24298 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
24299 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
24300 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
24301 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
24302 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
24303 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
24304 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
24305 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
24306 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
24307 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
24308
24309 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
24310 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
24311 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
24312 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
24313 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
24314 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
24315 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
24316 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
24317 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
24318 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
24319 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
24320 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
24321
24322 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
24323 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
24324 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
24325 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
24326 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
24327 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
24328 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
24329 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
24330 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
24331 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
24332 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
24333 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
24334
24335 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
24336 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
24337 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
24338 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
24339 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
24340 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
24341 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
24342 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
24343 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
24344 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
24345 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
24346 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
24347
24348 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
24349 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
24350 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
24351 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
24352 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
24353 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
24354 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
24355 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
24356 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
24357 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
24358 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
24359 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
24360
24361 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
24362 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
24363 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
24364 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
24365 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
24366 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
24367 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
24368 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
24369 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
24370 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
24371 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
24372 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
24373
24374 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
24375 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
24376 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
24377 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
24378 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
24379 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
24380 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
24381 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
24382 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
24383 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
24384 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
24385 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
24386
24387 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
24388 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
24389 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
24390 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
24391 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
24392 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
24393 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
24394 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
24395 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
24396 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
24397 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
24398 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
24399
24400 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
24401 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
24402 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
24403 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
24404 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
24405 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
24406 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
24407 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
24408 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
24409 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
24410 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
24411 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
24412
24413 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
24414 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
24415 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
24416 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
24417 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
24418 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24419 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24420 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24421 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
24422 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
24423 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
24424 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
24425
24426 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
24427 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
24428 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
24429 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
24430 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
24431 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24432 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24433 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24434 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
24435 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
24436 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
24437 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
24438
24439 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
24440 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
24441 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
24442 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
24443 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
24444 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24445 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24446 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24447 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
24448 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
24449 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
24450 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
24451
24452 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
24453 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
24454 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
24455 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
24456 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
24457 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24458 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24459 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24460 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
24461 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
24462 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
24463 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
24464
24465 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
24466 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
24467 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
24468 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
24469 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
24470 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24471 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24472 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24473 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
24474 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
24475 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
24476 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
24477
24478 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
24479 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
24480 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
24481 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
24482 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
24483 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24484 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24485 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24486 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
24487 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
24488 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
24489 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
24490
24491 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
24492 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
24493 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
24494 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
24495 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
24496 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24497 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24498 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24499 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
24500 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
24501 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
24502 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
24503
24504 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
24505 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
24506 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
24507 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
24508 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
24509 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24510 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24511 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24512 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
24513 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
24514 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
24515 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
24516
24517 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
24518 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
24519 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
24520 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
24521 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
24522 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24523 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24524 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24525 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
24526 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
24527 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
24528 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
24529
24530 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
24531 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
24532 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
24533 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
24534 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
24535 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24536 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24537 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24538 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
24539 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
24540 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
24541 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
24542
24543 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
24544 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
24545 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
24546 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
24547 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
24548 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24549 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24550 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24551 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
24552 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
24553 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
24554 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
24555
24556 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
24557 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
24558 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
24559 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
24560 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
24561 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24562 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24563 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24564 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
24565 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
24566 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
24567 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
24568
24569 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
24570 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
24571 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
24572 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
24573 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
24574 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
24575 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
24576 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
24577 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
24578 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
24579 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
24580 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
24581
24582 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
24583 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
24584 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
24585 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
24586
24587 cCL("flts", e000110, 2, (RF, RR), rn_rd),
24588 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
24589 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
24590 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
24591 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
24592 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
24593 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
24594 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
24595 cCL("flte", e080110, 2, (RF, RR), rn_rd),
24596 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
24597 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
24598 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
24599
24600 /* The implementation of the FIX instruction is broken on some
24601 assemblers, in that it accepts a precision specifier as well as a
24602 rounding specifier, despite the fact that this is meaningless.
24603 To be more compatible, we accept it as well, though of course it
24604 does not set any bits. */
24605 cCE("fix", e100110, 2, (RR, RF), rd_rm),
24606 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
24607 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
24608 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
24609 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
24610 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
24611 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
24612 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
24613 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
24614 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
24615 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
24616 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
24617 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
24618
24619 /* Instructions that were new with the real FPA, call them V2. */
24620 #undef ARM_VARIANT
24621 #define ARM_VARIANT & fpu_fpa_ext_v2
24622
24623 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24624 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24625 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24626 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24627 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24628 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
24629
24630 #undef ARM_VARIANT
24631 #define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
24632 #undef THUMB_VARIANT
24633 #define THUMB_VARIANT & arm_ext_v6t2
24634 mcCE(vmrs, ef00a10, 2, (APSR_RR, RVC), vmrs),
24635 mcCE(vmsr, ee00a10, 2, (RVC, RR), vmsr),
24636 #undef THUMB_VARIANT
24637
24638 /* Moves and type conversions. */
24639 cCE("fmstat", ef1fa10, 0, (), noargs),
24640 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
24641 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
24642 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
24643 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
24644 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
24645 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
24646 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
24647 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
24648
24649 /* Memory operations. */
24650 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
24651 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
24652 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
24653 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
24654 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
24655 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
24656 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
24657 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
24658 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
24659 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
24660 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
24661 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
24662 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
24663 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
24664 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
24665 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
24666 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
24667 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
24668
24669 /* Monadic operations. */
24670 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
24671 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
24672 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
24673
24674 /* Dyadic operations. */
24675 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24676 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24677 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24678 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24679 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24680 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24681 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24682 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24683 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
24684
24685 /* Comparisons. */
24686 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
24687 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
24688 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
24689 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
24690
24691 /* Double precision load/store are still present on single precision
24692 implementations. */
24693 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
24694 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
24695 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
24696 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
24697 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
24698 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
24699 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
24700 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
24701 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
24702 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
24703
24704 #undef ARM_VARIANT
24705 #define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
24706
24707 /* Moves and type conversions. */
24708 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
24709 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
24710 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
24711 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
24712 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
24713 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
24714 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
24715 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
24716 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
24717 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
24718 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
24719 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
24720
24721 /* Monadic operations. */
24722 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
24723 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
24724 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
24725
24726 /* Dyadic operations. */
24727 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24728 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24729 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24730 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24731 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24732 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24733 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24734 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24735 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
24736
24737 /* Comparisons. */
24738 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
24739 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
24740 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
24741 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
24742
24743 /* Instructions which may belong to either the Neon or VFP instruction sets.
24744 Individual encoder functions perform additional architecture checks. */
24745 #undef ARM_VARIANT
24746 #define ARM_VARIANT & fpu_vfp_ext_v1xd
24747 #undef THUMB_VARIANT
24748 #define THUMB_VARIANT & fpu_vfp_ext_v1xd
24749
24750 /* These mnemonics are unique to VFP. */
24751 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
24752 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
24753 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
24754 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
24755 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
24756 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
24757 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
24758 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
24759
24760 /* Mnemonics shared by Neon and VFP. */
24761 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
24762
24763 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24764 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24765 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24766 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24767 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24768 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
24769
24770 mnCEF(vcvt, _vcvt, 3, (RNSDQMQ, RNSDQMQ, oI32z), neon_cvt),
24771 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
24772 MNCEF(vcvtb, eb20a40, 3, (RVSDMQ, RVSDMQ, oI32b), neon_cvtb),
24773 MNCEF(vcvtt, eb20a40, 3, (RVSDMQ, RVSDMQ, oI32b), neon_cvtt),
24774
24775
24776 /* NOTE: All VMOV encoding is special-cased! */
24777 NCE(vmovq, 0, 1, (VMOV), neon_mov),
24778
24779 #undef THUMB_VARIANT
24780 /* Could be either VLDR/VSTR or VLDR/VSTR (system register) which are guarded
24781 by different feature bits. Since we are setting the Thumb guard, we can
24782 require Thumb-1 which makes it a nop guard and set the right feature bit in
24783 do_vldr_vstr (). */
24784 #define THUMB_VARIANT & arm_ext_v4t
24785 NCE(vldr, d100b00, 2, (VLDR, ADDRGLDC), vldr_vstr),
24786 NCE(vstr, d000b00, 2, (VLDR, ADDRGLDC), vldr_vstr),
24787
24788 #undef ARM_VARIANT
24789 #define ARM_VARIANT & arm_ext_fp16
24790 #undef THUMB_VARIANT
24791 #define THUMB_VARIANT & arm_ext_fp16
24792 /* New instructions added from v8.2, allowing the extraction and insertion of
24793 the upper 16 bits of a 32-bit vector register. */
24794 NCE (vmovx, eb00a40, 2, (RVS, RVS), neon_movhf),
24795 NCE (vins, eb00ac0, 2, (RVS, RVS), neon_movhf),
24796
24797 /* New backported fma/fms instructions optional in v8.2. */
24798 NCE (vfmal, 810, 3, (RNDQ, RNSD, RNSD_RNSC), neon_vfmal),
24799 NCE (vfmsl, 810, 3, (RNDQ, RNSD, RNSD_RNSC), neon_vfmsl),
24800
24801 #undef THUMB_VARIANT
24802 #define THUMB_VARIANT & fpu_neon_ext_v1
24803 #undef ARM_VARIANT
24804 #define ARM_VARIANT & fpu_neon_ext_v1
24805
24806 /* Data processing with three registers of the same length. */
24807 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
24808 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
24809 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
24810 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
24811 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
24812 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
24813 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
24814 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
24815 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
24816 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
24817 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
24818 /* If not immediate, fall back to neon_dyadic_i64_su.
24819 shl should accept I8 I16 I32 I64,
24820 qshl should accept S8 S16 S32 S64 U8 U16 U32 U64. */
24821 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl),
24822 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl),
24823 /* Logic ops, types optional & ignored. */
24824 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
24825 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
24826 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
24827 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
24828 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
24829 /* Bitfield ops, untyped. */
24830 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
24831 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
24832 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
24833 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
24834 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
24835 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
24836 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F16 F32. */
24837 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
24838 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
24839 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
24840 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
24841 back to neon_dyadic_if_su. */
24842 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
24843 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
24844 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
24845 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
24846 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
24847 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
24848 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
24849 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
24850 /* Comparison. Type I8 I16 I32 F32. */
24851 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
24852 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
24853 /* As above, D registers only. */
24854 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
24855 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
24856 /* Int and float variants, signedness unimportant. */
24857 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
24858 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
24859 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
24860 /* Add/sub take types I8 I16 I32 I64 F32. */
24861 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
24862 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
24863 /* vtst takes sizes 8, 16, 32. */
24864 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
24865 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
24866 /* VMUL takes I8 I16 I32 F32 P8. */
24867 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
24868 /* VQD{R}MULH takes S16 S32. */
24869 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
24870 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
24871 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
24872 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
24873 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
24874 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
24875 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
24876 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
24877 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
24878 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
24879 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
24880 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
24881 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
24882 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
24883 /* ARM v8.1 extension. */
24884 nUF (vqrdmlahq, _vqrdmlah, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
24885 nUF (vqrdmlsh, _vqrdmlsh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
24886 nUF (vqrdmlshq, _vqrdmlsh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
24887
24888 /* Two address, int/float. Types S8 S16 S32 F32. */
24889 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
24890 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
24891
24892 /* Data processing with two registers and a shift amount. */
24893 /* Right shifts, and variants with rounding.
24894 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
24895 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
24896 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
24897 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
24898 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
24899 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
24900 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
24901 /* Shift and insert. Sizes accepted 8 16 32 64. */
24902 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
24903 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
24904 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
24905 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
24906 /* Right shift immediate, saturating & narrowing, with rounding variants.
24907 Types accepted S16 S32 S64 U16 U32 U64. */
24908 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
24909 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
24910 /* As above, unsigned. Types accepted S16 S32 S64. */
24911 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
24912 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
24913 /* Right shift narrowing. Types accepted I16 I32 I64. */
24914 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
24915 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
24916 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
24917 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
24918 /* CVT with optional immediate for fixed-point variant. */
24919 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
24920
24921 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
24922
24923 /* Data processing, three registers of different lengths. */
24924 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
24925 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
24926 /* If not scalar, fall back to neon_dyadic_long.
24927 Vector types as above, scalar types S16 S32 U16 U32. */
24928 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
24929 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
24930 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
24931 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
24932 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
24933 /* Dyadic, narrowing insns. Types I16 I32 I64. */
24934 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
24935 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
24936 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
24937 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
24938 /* Saturating doubling multiplies. Types S16 S32. */
24939 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
24940 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
24941 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
24942 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
24943 S16 S32 U16 U32. */
24944 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
24945
24946 /* Extract. Size 8. */
24947 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
24948 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
24949
24950 /* Two registers, miscellaneous. */
24951 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
24952 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
24953 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
24954 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
24955 /* Vector replicate. Sizes 8 16 32. */
24956 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
24957 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
24958 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
24959 /* VMOVN. Types I16 I32 I64. */
24960 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
24961 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
24962 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
24963 /* VQMOVUN. Types S16 S32 S64. */
24964 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
24965 /* VZIP / VUZP. Sizes 8 16 32. */
24966 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
24967 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
24968 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
24969 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
24970 /* VQABS / VQNEG. Types S8 S16 S32. */
24971 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
24972 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
24973 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
24974 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
24975 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
24976 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
24977 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
24978 /* Reciprocal estimates. Types U32 F16 F32. */
24979 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
24980 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
24981 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
24982 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
24983 /* VCLS. Types S8 S16 S32. */
24984 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
24985 /* VCLZ. Types I8 I16 I32. */
24986 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
24987 /* VCNT. Size 8. */
24988 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
24989 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
24990 /* Two address, untyped. */
24991 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
24992 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
24993 /* VTRN. Sizes 8 16 32. */
24994 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
24995 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
24996
24997 /* Table lookup. Size 8. */
24998 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
24999 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
25000
25001 #undef THUMB_VARIANT
25002 #define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
25003 #undef ARM_VARIANT
25004 #define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
25005
25006 /* Neon element/structure load/store. */
25007 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
25008 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
25009 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
25010 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
25011 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
25012 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
25013 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
25014 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
25015
25016 #undef THUMB_VARIANT
25017 #define THUMB_VARIANT & fpu_vfp_ext_v3xd
25018 #undef ARM_VARIANT
25019 #define ARM_VARIANT & fpu_vfp_ext_v3xd
25020 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
25021 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25022 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25023 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25024 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25025 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25026 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25027 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25028 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25029
25030 #undef THUMB_VARIANT
25031 #define THUMB_VARIANT & fpu_vfp_ext_v3
25032 #undef ARM_VARIANT
25033 #define ARM_VARIANT & fpu_vfp_ext_v3
25034
25035 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
25036 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25037 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25038 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25039 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25040 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25041 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25042 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25043 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25044
25045 #undef ARM_VARIANT
25046 #define ARM_VARIANT & fpu_vfp_ext_fma
25047 #undef THUMB_VARIANT
25048 #define THUMB_VARIANT & fpu_vfp_ext_fma
25049 /* Mnemonics shared by Neon, VFP and MVE. These are included in the
25050 VFP FMA variant; NEON and VFP FMA always includes the NEON
25051 FMA instructions. */
25052 mnCEF(vfma, _vfma, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_fmac),
25053 mnCEF(vfms, _vfms, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), neon_fmac),
25054
25055 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
25056 the v form should always be used. */
25057 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25058 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25059 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25060 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25061 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25062 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25063
25064 #undef THUMB_VARIANT
25065 #undef ARM_VARIANT
25066 #define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
25067
25068 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25069 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25070 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25071 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25072 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25073 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25074 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
25075 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
25076
25077 #undef ARM_VARIANT
25078 #define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
25079
25080 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
25081 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
25082 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
25083 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
25084 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
25085 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
25086 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
25087 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
25088 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
25089 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25090 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25091 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25092 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25093 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25094 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25095 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25096 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25097 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25098 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
25099 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
25100 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25101 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25102 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25103 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25104 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25105 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25106 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
25107 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
25108 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
25109 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
25110 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
25111 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
25112 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
25113 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
25114 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
25115 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
25116 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
25117 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25118 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25119 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25120 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25121 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25122 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25123 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25124 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25125 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25126 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
25127 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25128 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25129 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25130 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25131 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25132 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25133 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25134 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25135 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25136 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25137 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25138 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25139 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25140 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25141 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25142 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25143 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25144 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25145 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25146 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
25147 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
25148 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
25149 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
25150 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25151 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25152 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25153 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25154 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25155 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25156 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25157 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25158 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25159 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25160 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25161 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25162 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25163 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25164 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25165 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25166 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25167 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25168 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
25169 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25170 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25171 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25172 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25173 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25174 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25175 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25176 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25177 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25178 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25179 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25180 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25181 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25182 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25183 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25184 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25185 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25186 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25187 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25188 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25189 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25190 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
25191 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25192 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25193 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25194 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25195 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25196 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25197 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25198 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25199 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25200 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25201 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25202 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25203 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25204 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25205 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25206 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25207 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
25208 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
25209 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
25210 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
25211 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
25212 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
25213 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25214 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25215 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25216 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25217 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25218 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25219 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25220 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25221 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25222 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
25223 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
25224 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
25225 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
25226 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
25227 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
25228 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25229 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25230 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25231 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
25232 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
25233 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
25234 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
25235 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
25236 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
25237 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25238 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25239 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25240 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25241 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
25242
25243 #undef ARM_VARIANT
25244 #define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
25245
25246 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
25247 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
25248 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
25249 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
25250 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
25251 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
25252 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25253 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25254 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25255 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25256 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25257 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25258 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25259 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25260 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25261 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25262 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25263 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25264 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25265 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25266 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
25267 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25268 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25269 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25270 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25271 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25272 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25273 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25274 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25275 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25276 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25277 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25278 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25279 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25280 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25281 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25282 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25283 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25284 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25285 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25286 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25287 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25288 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25289 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25290 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25291 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25292 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25293 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25294 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25295 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25296 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25297 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25298 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25299 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25300 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25301 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25302 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25303
25304 #undef ARM_VARIANT
25305 #define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
25306
25307 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
25308 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
25309 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
25310 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
25311 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
25312 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
25313 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
25314 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
25315 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
25316 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
25317 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
25318 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
25319 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
25320 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
25321 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
25322 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
25323 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
25324 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
25325 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
25326 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
25327 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
25328 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
25329 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
25330 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
25331 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
25332 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
25333 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
25334 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
25335 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
25336 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
25337 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
25338 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
25339 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
25340 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
25341 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
25342 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
25343 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
25344 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
25345 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
25346 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
25347 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
25348 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
25349 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
25350 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
25351 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
25352 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
25353 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
25354 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
25355 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
25356 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
25357 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
25358 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
25359 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
25360 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
25361 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
25362 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
25363 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
25364 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
25365 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
25366 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
25367 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
25368 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
25369 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
25370 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
25371 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
25372 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
25373 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
25374 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
25375 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
25376 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
25377 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
25378 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
25379 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
25380 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
25381 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
25382 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
25383
25384 /* ARMv8.5-A instructions. */
25385 #undef ARM_VARIANT
25386 #define ARM_VARIANT & arm_ext_sb
25387 #undef THUMB_VARIANT
25388 #define THUMB_VARIANT & arm_ext_sb
25389 TUF("sb", 57ff070, f3bf8f70, 0, (), noargs, noargs),
25390
25391 #undef ARM_VARIANT
25392 #define ARM_VARIANT & arm_ext_predres
25393 #undef THUMB_VARIANT
25394 #define THUMB_VARIANT & arm_ext_predres
25395 CE("cfprctx", e070f93, 1, (RRnpc), rd),
25396 CE("dvprctx", e070fb3, 1, (RRnpc), rd),
25397 CE("cpprctx", e070ff3, 1, (RRnpc), rd),
25398
25399 /* ARMv8-M instructions. */
25400 #undef ARM_VARIANT
25401 #define ARM_VARIANT NULL
25402 #undef THUMB_VARIANT
25403 #define THUMB_VARIANT & arm_ext_v8m
25404 ToU("sg", e97fe97f, 0, (), noargs),
25405 ToC("blxns", 4784, 1, (RRnpc), t_blx),
25406 ToC("bxns", 4704, 1, (RRnpc), t_bx),
25407 ToC("tt", e840f000, 2, (RRnpc, RRnpc), tt),
25408 ToC("ttt", e840f040, 2, (RRnpc, RRnpc), tt),
25409 ToC("tta", e840f080, 2, (RRnpc, RRnpc), tt),
25410 ToC("ttat", e840f0c0, 2, (RRnpc, RRnpc), tt),
25411
25412 /* FP for ARMv8-M Mainline. Enabled for ARMv8-M Mainline because the
25413 instructions behave as nop if no VFP is present. */
25414 #undef THUMB_VARIANT
25415 #define THUMB_VARIANT & arm_ext_v8m_main
25416 ToC("vlldm", ec300a00, 1, (RRnpc), rn),
25417 ToC("vlstm", ec200a00, 1, (RRnpc), rn),
25418
25419 /* Armv8.1-M Mainline instructions. */
25420 #undef THUMB_VARIANT
25421 #define THUMB_VARIANT & arm_ext_v8_1m_main
25422 toU("cinc", _cinc, 3, (RRnpcsp, RR_ZR, COND), t_cond),
25423 toU("cinv", _cinv, 3, (RRnpcsp, RR_ZR, COND), t_cond),
25424 toU("cneg", _cneg, 3, (RRnpcsp, RR_ZR, COND), t_cond),
25425 toU("csel", _csel, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
25426 toU("csetm", _csetm, 2, (RRnpcsp, COND), t_cond),
25427 toU("cset", _cset, 2, (RRnpcsp, COND), t_cond),
25428 toU("csinc", _csinc, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
25429 toU("csinv", _csinv, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
25430 toU("csneg", _csneg, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
25431
25432 toC("bf", _bf, 2, (EXPs, EXPs), t_branch_future),
25433 toU("bfcsel", _bfcsel, 4, (EXPs, EXPs, EXPs, COND), t_branch_future),
25434 toC("bfx", _bfx, 2, (EXPs, RRnpcsp), t_branch_future),
25435 toC("bfl", _bfl, 2, (EXPs, EXPs), t_branch_future),
25436 toC("bflx", _bflx, 2, (EXPs, RRnpcsp), t_branch_future),
25437
25438 toU("dls", _dls, 2, (LR, RRnpcsp), t_loloop),
25439 toU("wls", _wls, 3, (LR, RRnpcsp, EXP), t_loloop),
25440 toU("le", _le, 2, (oLR, EXP), t_loloop),
25441
25442 ToC("clrm", e89f0000, 1, (CLRMLST), t_clrm),
25443 ToC("vscclrm", ec9f0a00, 1, (VRSDVLST), t_vscclrm),
25444
25445 #undef THUMB_VARIANT
25446 #define THUMB_VARIANT & mve_ext
25447 ToC("lsll", ea50010d, 3, (RRe, RRo, RRnpcsp_I32), mve_scalar_shift),
25448 ToC("lsrl", ea50011f, 3, (RRe, RRo, I32), mve_scalar_shift),
25449 ToC("asrl", ea50012d, 3, (RRe, RRo, RRnpcsp_I32), mve_scalar_shift),
25450 ToC("uqrshll", ea51010d, 4, (RRe, RRo, I48_I64, RRnpcsp), mve_scalar_shift1),
25451 ToC("sqrshrl", ea51012d, 4, (RRe, RRo, I48_I64, RRnpcsp), mve_scalar_shift1),
25452 ToC("uqshll", ea51010f, 3, (RRe, RRo, I32), mve_scalar_shift),
25453 ToC("urshrl", ea51011f, 3, (RRe, RRo, I32), mve_scalar_shift),
25454 ToC("srshrl", ea51012f, 3, (RRe, RRo, I32), mve_scalar_shift),
25455 ToC("sqshll", ea51013f, 3, (RRe, RRo, I32), mve_scalar_shift),
25456 ToC("uqrshl", ea500f0d, 2, (RRnpcsp, RRnpcsp), mve_scalar_shift),
25457 ToC("sqrshr", ea500f2d, 2, (RRnpcsp, RRnpcsp), mve_scalar_shift),
25458 ToC("uqshl", ea500f0f, 2, (RRnpcsp, I32), mve_scalar_shift),
25459 ToC("urshr", ea500f1f, 2, (RRnpcsp, I32), mve_scalar_shift),
25460 ToC("srshr", ea500f2f, 2, (RRnpcsp, I32), mve_scalar_shift),
25461 ToC("sqshl", ea500f3f, 2, (RRnpcsp, I32), mve_scalar_shift),
25462
25463 ToC("vpt", ee410f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25464 ToC("vptt", ee018f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25465 ToC("vpte", ee418f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25466 ToC("vpttt", ee014f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25467 ToC("vptte", ee01cf00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25468 ToC("vptet", ee41cf00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25469 ToC("vptee", ee414f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25470 ToC("vptttt", ee012f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25471 ToC("vpttte", ee016f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25472 ToC("vpttet", ee01ef00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25473 ToC("vpttee", ee01af00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25474 ToC("vptett", ee41af00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25475 ToC("vptete", ee41ef00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25476 ToC("vpteet", ee416f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25477 ToC("vpteee", ee412f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
25478
25479 ToC("vpst", fe710f4d, 0, (), mve_vpt),
25480 ToC("vpstt", fe318f4d, 0, (), mve_vpt),
25481 ToC("vpste", fe718f4d, 0, (), mve_vpt),
25482 ToC("vpsttt", fe314f4d, 0, (), mve_vpt),
25483 ToC("vpstte", fe31cf4d, 0, (), mve_vpt),
25484 ToC("vpstet", fe71cf4d, 0, (), mve_vpt),
25485 ToC("vpstee", fe714f4d, 0, (), mve_vpt),
25486 ToC("vpstttt", fe312f4d, 0, (), mve_vpt),
25487 ToC("vpsttte", fe316f4d, 0, (), mve_vpt),
25488 ToC("vpsttet", fe31ef4d, 0, (), mve_vpt),
25489 ToC("vpsttee", fe31af4d, 0, (), mve_vpt),
25490 ToC("vpstett", fe71af4d, 0, (), mve_vpt),
25491 ToC("vpstete", fe71ef4d, 0, (), mve_vpt),
25492 ToC("vpsteet", fe716f4d, 0, (), mve_vpt),
25493 ToC("vpsteee", fe712f4d, 0, (), mve_vpt),
25494
25495 /* MVE and MVE FP only. */
25496 mToC("vhcadd", ee000f00, 4, (RMQ, RMQ, RMQ, EXPi), mve_vhcadd),
25497 mCEF(vadc, _vadc, 3, (RMQ, RMQ, RMQ), mve_vadc),
25498 mCEF(vadci, _vadci, 3, (RMQ, RMQ, RMQ), mve_vadc),
25499 mToC("vsbc", fe300f00, 3, (RMQ, RMQ, RMQ), mve_vsbc),
25500 mToC("vsbci", fe301f00, 3, (RMQ, RMQ, RMQ), mve_vsbc),
25501 mCEF(vmullb, _vmullb, 3, (RMQ, RMQ, RMQ), mve_vmull),
25502 mCEF(vabav, _vabav, 3, (RRnpcsp, RMQ, RMQ), mve_vabav),
25503 mCEF(vmladav, _vmladav, 3, (RRe, RMQ, RMQ), mve_vmladav),
25504 mCEF(vmladava, _vmladava, 3, (RRe, RMQ, RMQ), mve_vmladav),
25505 mCEF(vmladavx, _vmladavx, 3, (RRe, RMQ, RMQ), mve_vmladav),
25506 mCEF(vmladavax, _vmladavax, 3, (RRe, RMQ, RMQ), mve_vmladav),
25507 mCEF(vmlav, _vmladav, 3, (RRe, RMQ, RMQ), mve_vmladav),
25508 mCEF(vmlava, _vmladava, 3, (RRe, RMQ, RMQ), mve_vmladav),
25509 mCEF(vmlsdav, _vmlsdav, 3, (RRe, RMQ, RMQ), mve_vmladav),
25510 mCEF(vmlsdava, _vmlsdava, 3, (RRe, RMQ, RMQ), mve_vmladav),
25511 mCEF(vmlsdavx, _vmlsdavx, 3, (RRe, RMQ, RMQ), mve_vmladav),
25512 mCEF(vmlsdavax, _vmlsdavax, 3, (RRe, RMQ, RMQ), mve_vmladav),
25513
25514 mCEF(vst20, _vst20, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
25515 mCEF(vst21, _vst21, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
25516 mCEF(vst40, _vst40, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25517 mCEF(vst41, _vst41, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25518 mCEF(vst42, _vst42, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25519 mCEF(vst43, _vst43, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25520 mCEF(vld20, _vld20, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
25521 mCEF(vld21, _vld21, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
25522 mCEF(vld40, _vld40, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25523 mCEF(vld41, _vld41, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25524 mCEF(vld42, _vld42, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25525 mCEF(vld43, _vld43, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
25526 mCEF(vstrb, _vstrb, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25527 mCEF(vstrh, _vstrh, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25528 mCEF(vstrw, _vstrw, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25529 mCEF(vstrd, _vstrd, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25530 mCEF(vldrb, _vldrb, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25531 mCEF(vldrh, _vldrh, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25532 mCEF(vldrw, _vldrw, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25533 mCEF(vldrd, _vldrd, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
25534
25535 mCEF(vmovnt, _vmovnt, 2, (RMQ, RMQ), mve_movn),
25536 mCEF(vmovnb, _vmovnb, 2, (RMQ, RMQ), mve_movn),
25537 mCEF(vbrsr, _vbrsr, 3, (RMQ, RMQ, RR), mve_vbrsr),
25538 mCEF(vaddlv, _vaddlv, 3, (RRe, RRo, RMQ), mve_vaddlv),
25539 mCEF(vaddlva, _vaddlva, 3, (RRe, RRo, RMQ), mve_vaddlv),
25540 mCEF(vaddv, _vaddv, 2, (RRe, RMQ), mve_vaddv),
25541 mCEF(vaddva, _vaddva, 2, (RRe, RMQ), mve_vaddv),
25542 mCEF(vddup, _vddup, 3, (RMQ, RRe, EXPi), mve_viddup),
25543 mCEF(vdwdup, _vdwdup, 4, (RMQ, RRe, RR, EXPi), mve_viddup),
25544 mCEF(vidup, _vidup, 3, (RMQ, RRe, EXPi), mve_viddup),
25545 mCEF(viwdup, _viwdup, 4, (RMQ, RRe, RR, EXPi), mve_viddup),
25546 mToC("vmaxa", ee330e81, 2, (RMQ, RMQ), mve_vmaxa_vmina),
25547 mToC("vmina", ee331e81, 2, (RMQ, RMQ), mve_vmaxa_vmina),
25548 mCEF(vmaxv, _vmaxv, 2, (RR, RMQ), mve_vmaxv),
25549 mCEF(vmaxav, _vmaxav, 2, (RR, RMQ), mve_vmaxv),
25550 mCEF(vminv, _vminv, 2, (RR, RMQ), mve_vmaxv),
25551 mCEF(vminav, _vminav, 2, (RR, RMQ), mve_vmaxv),
25552
25553 mCEF(vmlaldav, _vmlaldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25554 mCEF(vmlaldava, _vmlaldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25555 mCEF(vmlaldavx, _vmlaldavx, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25556 mCEF(vmlaldavax, _vmlaldavax, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25557 mCEF(vmlalv, _vmlaldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25558 mCEF(vmlalva, _vmlaldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25559 mCEF(vmlsldav, _vmlsldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25560 mCEF(vmlsldava, _vmlsldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25561 mCEF(vmlsldavx, _vmlsldavx, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25562 mCEF(vmlsldavax, _vmlsldavax, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
25563 mToC("vrmlaldavh", ee800f00, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25564 mToC("vrmlaldavha",ee800f20, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25565 mCEF(vrmlaldavhx, _vrmlaldavhx, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25566 mCEF(vrmlaldavhax, _vrmlaldavhax, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25567 mToC("vrmlalvh", ee800f00, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25568 mToC("vrmlalvha", ee800f20, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25569 mCEF(vrmlsldavh, _vrmlsldavh, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25570 mCEF(vrmlsldavha, _vrmlsldavha, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25571 mCEF(vrmlsldavhx, _vrmlsldavhx, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25572 mCEF(vrmlsldavhax, _vrmlsldavhax, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
25573
25574 mToC("vmlas", ee011e40, 3, (RMQ, RMQ, RR), mve_vmlas),
25575 mToC("vmulh", ee010e01, 3, (RMQ, RMQ, RMQ), mve_vmulh),
25576 mToC("vrmulh", ee011e01, 3, (RMQ, RMQ, RMQ), mve_vmulh),
25577 mToC("vpnot", fe310f4d, 0, (), mve_vpnot),
25578 mToC("vpsel", fe310f01, 3, (RMQ, RMQ, RMQ), mve_vpsel),
25579
25580 mToC("vqdmladh", ee000e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25581 mToC("vqdmladhx", ee001e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25582 mToC("vqrdmladh", ee000e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25583 mToC("vqrdmladhx",ee001e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25584 mToC("vqdmlsdh", fe000e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25585 mToC("vqdmlsdhx", fe001e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25586 mToC("vqrdmlsdh", fe000e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25587 mToC("vqrdmlsdhx",fe001e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
25588 mToC("vqdmlah", ee000e60, 3, (RMQ, RMQ, RR), mve_vqdmlah),
25589 mToC("vqdmlash", ee001e60, 3, (RMQ, RMQ, RR), mve_vqdmlah),
25590 mToC("vqrdmlash", ee001e40, 3, (RMQ, RMQ, RR), mve_vqdmlah),
25591 mToC("vqdmullt", ee301f00, 3, (RMQ, RMQ, RMQRR), mve_vqdmull),
25592 mToC("vqdmullb", ee300f00, 3, (RMQ, RMQ, RMQRR), mve_vqdmull),
25593 mCEF(vqmovnt, _vqmovnt, 2, (RMQ, RMQ), mve_vqmovn),
25594 mCEF(vqmovnb, _vqmovnb, 2, (RMQ, RMQ), mve_vqmovn),
25595 mCEF(vqmovunt, _vqmovunt, 2, (RMQ, RMQ), mve_vqmovn),
25596 mCEF(vqmovunb, _vqmovunb, 2, (RMQ, RMQ), mve_vqmovn),
25597
25598 mCEF(vshrnt, _vshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25599 mCEF(vshrnb, _vshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25600 mCEF(vrshrnt, _vrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25601 mCEF(vrshrnb, _vrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25602 mCEF(vqshrnt, _vqrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25603 mCEF(vqshrnb, _vqrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25604 mCEF(vqshrunt, _vqrshrunt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25605 mCEF(vqshrunb, _vqrshrunb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25606 mCEF(vqrshrnt, _vqrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25607 mCEF(vqrshrnb, _vqrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25608 mCEF(vqrshrunt, _vqrshrunt, 3, (RMQ, RMQ, I32z), mve_vshrn),
25609 mCEF(vqrshrunb, _vqrshrunb, 3, (RMQ, RMQ, I32z), mve_vshrn),
25610
25611 mToC("vshlc", eea00fc0, 3, (RMQ, RR, I32z), mve_vshlc),
25612 mToC("vshllt", ee201e00, 3, (RMQ, RMQ, I32), mve_vshll),
25613 mToC("vshllb", ee200e00, 3, (RMQ, RMQ, I32), mve_vshll),
25614
25615 toU("dlstp", _dlstp, 2, (LR, RR), t_loloop),
25616 toU("wlstp", _wlstp, 3, (LR, RR, EXP), t_loloop),
25617 toU("letp", _letp, 2, (LR, EXP), t_loloop),
25618 toU("lctp", _lctp, 0, (), t_loloop),
25619
25620 #undef THUMB_VARIANT
25621 #define THUMB_VARIANT & mve_fp_ext
25622 mToC("vcmul", ee300e00, 4, (RMQ, RMQ, RMQ, EXPi), mve_vcmul),
25623 mToC("vfmas", ee311e40, 3, (RMQ, RMQ, RR), mve_vfmas),
25624 mToC("vmaxnma", ee3f0e81, 2, (RMQ, RMQ), mve_vmaxnma_vminnma),
25625 mToC("vminnma", ee3f1e81, 2, (RMQ, RMQ), mve_vmaxnma_vminnma),
25626 mToC("vmaxnmv", eeee0f00, 2, (RR, RMQ), mve_vmaxnmv),
25627 mToC("vmaxnmav",eeec0f00, 2, (RR, RMQ), mve_vmaxnmv),
25628 mToC("vminnmv", eeee0f80, 2, (RR, RMQ), mve_vmaxnmv),
25629 mToC("vminnmav",eeec0f80, 2, (RR, RMQ), mve_vmaxnmv),
25630
25631 #undef ARM_VARIANT
25632 #define ARM_VARIANT & fpu_vfp_ext_v1
25633 #undef THUMB_VARIANT
25634 #define THUMB_VARIANT & arm_ext_v6t2
25635 mnCEF(vmla, _vmla, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ_RR), neon_mac_maybe_scalar),
25636 mnCEF(vmul, _vmul, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ_RR), neon_mul),
25637
25638 mcCE(fcpyd, eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
25639
25640 #undef ARM_VARIANT
25641 #define ARM_VARIANT & fpu_vfp_ext_v1xd
25642
25643 MNCE(vmov, 0, 1, (VMOV), neon_mov),
25644 mcCE(fmrs, e100a10, 2, (RR, RVS), vfp_reg_from_sp),
25645 mcCE(fmsr, e000a10, 2, (RVS, RR), vfp_sp_from_reg),
25646 mcCE(fcpys, eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
25647
25648 mCEF(vmullt, _vmullt, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ), mve_vmull),
25649 mnCEF(vadd, _vadd, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_addsub_if_i),
25650 mnCEF(vsub, _vsub, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_addsub_if_i),
25651
25652 MNCEF(vabs, 1b10300, 2, (RNSDQMQ, RNSDQMQ), neon_abs_neg),
25653 MNCEF(vneg, 1b10380, 2, (RNSDQMQ, RNSDQMQ), neon_abs_neg),
25654
25655 mCEF(vmovlt, _vmovlt, 1, (VMOV), mve_movl),
25656 mCEF(vmovlb, _vmovlb, 1, (VMOV), mve_movl),
25657
25658 mnCE(vcmp, _vcmp, 3, (RVSD_COND, RSVDMQ_FI0, oRMQRZ), vfp_nsyn_cmp),
25659 mnCE(vcmpe, _vcmpe, 3, (RVSD_COND, RSVDMQ_FI0, oRMQRZ), vfp_nsyn_cmp),
25660
25661 #undef ARM_VARIANT
25662 #define ARM_VARIANT & fpu_vfp_ext_v2
25663
25664 mcCE(fmsrr, c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
25665 mcCE(fmrrs, c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
25666 mcCE(fmdrr, c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
25667 mcCE(fmrrd, c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
25668
25669 #undef ARM_VARIANT
25670 #define ARM_VARIANT & fpu_vfp_ext_armv8xd
25671 mnUF(vcvta, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvta),
25672 mnUF(vcvtp, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvtp),
25673 mnUF(vcvtn, _vcvta, 3, (RNSDQMQ, oRNSDQMQ, oI32z), neon_cvtn),
25674 mnUF(vcvtm, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvtm),
25675 mnUF(vmaxnm, _vmaxnm, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), vmaxnm),
25676 mnUF(vminnm, _vminnm, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), vmaxnm),
25677
25678 #undef ARM_VARIANT
25679 #define ARM_VARIANT & fpu_neon_ext_v1
25680 mnUF(vabd, _vabd, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
25681 mnUF(vabdl, _vabdl, 3, (RNQMQ, RNDMQ, RNDMQ), neon_dyadic_long),
25682 mnUF(vaddl, _vaddl, 3, (RNQMQ, RNDMQ, RNDMQR), neon_dyadic_long),
25683 mnUF(vsubl, _vsubl, 3, (RNQMQ, RNDMQ, RNDMQR), neon_dyadic_long),
25684 mnUF(vand, _vand, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
25685 mnUF(vbic, _vbic, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
25686 mnUF(vorr, _vorr, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
25687 mnUF(vorn, _vorn, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
25688 mnUF(veor, _veor, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_logic),
25689 MNUF(vcls, 1b00400, 2, (RNDQMQ, RNDQMQ), neon_cls),
25690 MNUF(vclz, 1b00480, 2, (RNDQMQ, RNDQMQ), neon_clz),
25691 mnCE(vdup, _vdup, 2, (RNDQMQ, RR_RNSC), neon_dup),
25692 MNUF(vhadd, 00000000, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i_su),
25693 MNUF(vrhadd, 00000100, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_i_su),
25694 MNUF(vhsub, 00000200, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i_su),
25695 mnUF(vmin, _vmin, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
25696 mnUF(vmax, _vmax, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
25697 MNUF(vqadd, 0000010, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i64_su),
25698 MNUF(vqsub, 0000210, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i64_su),
25699 mnUF(vmvn, _vmvn, 2, (RNDQMQ, RNDQMQ_Ibig), neon_mvn),
25700 MNUF(vqabs, 1b00700, 2, (RNDQMQ, RNDQMQ), neon_sat_abs_neg),
25701 MNUF(vqneg, 1b00780, 2, (RNDQMQ, RNDQMQ), neon_sat_abs_neg),
25702 mnUF(vqrdmlah, _vqrdmlah,3, (RNDQMQ, oRNDQMQ, RNDQ_RNSC_RR), neon_qrdmlah),
25703 mnUF(vqdmulh, _vqdmulh, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_RNSC_RR), neon_qdmulh),
25704 mnUF(vqrdmulh, _vqrdmulh,3, (RNDQMQ, oRNDQMQ, RNDQMQ_RNSC_RR), neon_qdmulh),
25705 MNUF(vqrshl, 0000510, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_rshl),
25706 MNUF(vrshl, 0000500, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_rshl),
25707 MNUF(vshr, 0800010, 3, (RNDQMQ, oRNDQMQ, I64z), neon_rshift_round_imm),
25708 MNUF(vrshr, 0800210, 3, (RNDQMQ, oRNDQMQ, I64z), neon_rshift_round_imm),
25709 MNUF(vsli, 1800510, 3, (RNDQMQ, oRNDQMQ, I63), neon_sli),
25710 MNUF(vsri, 1800410, 3, (RNDQMQ, oRNDQMQ, I64z), neon_sri),
25711 MNUF(vrev64, 1b00000, 2, (RNDQMQ, RNDQMQ), neon_rev),
25712 MNUF(vrev32, 1b00080, 2, (RNDQMQ, RNDQMQ), neon_rev),
25713 MNUF(vrev16, 1b00100, 2, (RNDQMQ, RNDQMQ), neon_rev),
25714 mnUF(vshl, _vshl, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_I63b_RR), neon_shl),
25715 mnUF(vqshl, _vqshl, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_I63b_RR), neon_qshl),
25716 MNUF(vqshlu, 1800610, 3, (RNDQMQ, oRNDQMQ, I63), neon_qshlu_imm),
25717
25718 #undef ARM_VARIANT
25719 #define ARM_VARIANT & arm_ext_v8_3
25720 #undef THUMB_VARIANT
25721 #define THUMB_VARIANT & arm_ext_v6t2_v8m
25722 MNUF (vcadd, 0, 4, (RNDQMQ, RNDQMQ, RNDQMQ, EXPi), vcadd),
25723 MNUF (vcmla, 0, 4, (RNDQMQ, RNDQMQ, RNDQMQ_RNSC, EXPi), vcmla),
25724 };
25725 #undef ARM_VARIANT
25726 #undef THUMB_VARIANT
25727 #undef TCE
25728 #undef TUE
25729 #undef TUF
25730 #undef TCC
25731 #undef cCE
25732 #undef cCL
25733 #undef C3E
25734 #undef C3
25735 #undef CE
25736 #undef CM
25737 #undef CL
25738 #undef UE
25739 #undef UF
25740 #undef UT
25741 #undef NUF
25742 #undef nUF
25743 #undef NCE
25744 #undef nCE
25745 #undef OPS0
25746 #undef OPS1
25747 #undef OPS2
25748 #undef OPS3
25749 #undef OPS4
25750 #undef OPS5
25751 #undef OPS6
25752 #undef do_0
25753 #undef ToC
25754 #undef toC
25755 #undef ToU
25756 #undef toU
25757 \f
25758 /* MD interface: bits in the object file. */
25759
25760 /* Turn an integer of n bytes (in val) into a stream of bytes appropriate
25761 for use in the a.out file, and stores them in the array pointed to by buf.
25762 This knows about the endian-ness of the target machine and does
25763 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
25764 2 (short) and 4 (long) Floating numbers are put out as a series of
25765 LITTLENUMS (shorts, here at least). */
25766
25767 void
25768 md_number_to_chars (char * buf, valueT val, int n)
25769 {
25770 if (target_big_endian)
25771 number_to_chars_bigendian (buf, val, n);
25772 else
25773 number_to_chars_littleendian (buf, val, n);
25774 }
25775
25776 static valueT
25777 md_chars_to_number (char * buf, int n)
25778 {
25779 valueT result = 0;
25780 unsigned char * where = (unsigned char *) buf;
25781
25782 if (target_big_endian)
25783 {
25784 while (n--)
25785 {
25786 result <<= 8;
25787 result |= (*where++ & 255);
25788 }
25789 }
25790 else
25791 {
25792 while (n--)
25793 {
25794 result <<= 8;
25795 result |= (where[n] & 255);
25796 }
25797 }
25798
25799 return result;
25800 }
25801
25802 /* MD interface: Sections. */
25803
25804 /* Calculate the maximum variable size (i.e., excluding fr_fix)
25805 that an rs_machine_dependent frag may reach. */
25806
25807 unsigned int
25808 arm_frag_max_var (fragS *fragp)
25809 {
25810 /* We only use rs_machine_dependent for variable-size Thumb instructions,
25811 which are either THUMB_SIZE (2) or INSN_SIZE (4).
25812
25813 Note that we generate relaxable instructions even for cases that don't
25814 really need it, like an immediate that's a trivial constant. So we're
25815 overestimating the instruction size for some of those cases. Rather
25816 than putting more intelligence here, it would probably be better to
25817 avoid generating a relaxation frag in the first place when it can be
25818 determined up front that a short instruction will suffice. */
25819
25820 gas_assert (fragp->fr_type == rs_machine_dependent);
25821 return INSN_SIZE;
25822 }
25823
25824 /* Estimate the size of a frag before relaxing. Assume everything fits in
25825 2 bytes. */
25826
25827 int
25828 md_estimate_size_before_relax (fragS * fragp,
25829 segT segtype ATTRIBUTE_UNUSED)
25830 {
25831 fragp->fr_var = 2;
25832 return 2;
25833 }
25834
25835 /* Convert a machine dependent frag. */
25836
25837 void
25838 md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
25839 {
25840 unsigned long insn;
25841 unsigned long old_op;
25842 char *buf;
25843 expressionS exp;
25844 fixS *fixp;
25845 int reloc_type;
25846 int pc_rel;
25847 int opcode;
25848
25849 buf = fragp->fr_literal + fragp->fr_fix;
25850
25851 old_op = bfd_get_16(abfd, buf);
25852 if (fragp->fr_symbol)
25853 {
25854 exp.X_op = O_symbol;
25855 exp.X_add_symbol = fragp->fr_symbol;
25856 }
25857 else
25858 {
25859 exp.X_op = O_constant;
25860 }
25861 exp.X_add_number = fragp->fr_offset;
25862 opcode = fragp->fr_subtype;
25863 switch (opcode)
25864 {
25865 case T_MNEM_ldr_pc:
25866 case T_MNEM_ldr_pc2:
25867 case T_MNEM_ldr_sp:
25868 case T_MNEM_str_sp:
25869 case T_MNEM_ldr:
25870 case T_MNEM_ldrb:
25871 case T_MNEM_ldrh:
25872 case T_MNEM_str:
25873 case T_MNEM_strb:
25874 case T_MNEM_strh:
25875 if (fragp->fr_var == 4)
25876 {
25877 insn = THUMB_OP32 (opcode);
25878 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
25879 {
25880 insn |= (old_op & 0x700) << 4;
25881 }
25882 else
25883 {
25884 insn |= (old_op & 7) << 12;
25885 insn |= (old_op & 0x38) << 13;
25886 }
25887 insn |= 0x00000c00;
25888 put_thumb32_insn (buf, insn);
25889 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
25890 }
25891 else
25892 {
25893 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
25894 }
25895 pc_rel = (opcode == T_MNEM_ldr_pc2);
25896 break;
25897 case T_MNEM_adr:
25898 if (fragp->fr_var == 4)
25899 {
25900 insn = THUMB_OP32 (opcode);
25901 insn |= (old_op & 0xf0) << 4;
25902 put_thumb32_insn (buf, insn);
25903 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
25904 }
25905 else
25906 {
25907 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
25908 exp.X_add_number -= 4;
25909 }
25910 pc_rel = 1;
25911 break;
25912 case T_MNEM_mov:
25913 case T_MNEM_movs:
25914 case T_MNEM_cmp:
25915 case T_MNEM_cmn:
25916 if (fragp->fr_var == 4)
25917 {
25918 int r0off = (opcode == T_MNEM_mov
25919 || opcode == T_MNEM_movs) ? 0 : 8;
25920 insn = THUMB_OP32 (opcode);
25921 insn = (insn & 0xe1ffffff) | 0x10000000;
25922 insn |= (old_op & 0x700) << r0off;
25923 put_thumb32_insn (buf, insn);
25924 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
25925 }
25926 else
25927 {
25928 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
25929 }
25930 pc_rel = 0;
25931 break;
25932 case T_MNEM_b:
25933 if (fragp->fr_var == 4)
25934 {
25935 insn = THUMB_OP32(opcode);
25936 put_thumb32_insn (buf, insn);
25937 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
25938 }
25939 else
25940 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
25941 pc_rel = 1;
25942 break;
25943 case T_MNEM_bcond:
25944 if (fragp->fr_var == 4)
25945 {
25946 insn = THUMB_OP32(opcode);
25947 insn |= (old_op & 0xf00) << 14;
25948 put_thumb32_insn (buf, insn);
25949 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
25950 }
25951 else
25952 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
25953 pc_rel = 1;
25954 break;
25955 case T_MNEM_add_sp:
25956 case T_MNEM_add_pc:
25957 case T_MNEM_inc_sp:
25958 case T_MNEM_dec_sp:
25959 if (fragp->fr_var == 4)
25960 {
25961 /* ??? Choose between add and addw. */
25962 insn = THUMB_OP32 (opcode);
25963 insn |= (old_op & 0xf0) << 4;
25964 put_thumb32_insn (buf, insn);
25965 if (opcode == T_MNEM_add_pc)
25966 reloc_type = BFD_RELOC_ARM_T32_IMM12;
25967 else
25968 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
25969 }
25970 else
25971 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
25972 pc_rel = 0;
25973 break;
25974
25975 case T_MNEM_addi:
25976 case T_MNEM_addis:
25977 case T_MNEM_subi:
25978 case T_MNEM_subis:
25979 if (fragp->fr_var == 4)
25980 {
25981 insn = THUMB_OP32 (opcode);
25982 insn |= (old_op & 0xf0) << 4;
25983 insn |= (old_op & 0xf) << 16;
25984 put_thumb32_insn (buf, insn);
25985 if (insn & (1 << 20))
25986 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
25987 else
25988 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
25989 }
25990 else
25991 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
25992 pc_rel = 0;
25993 break;
25994 default:
25995 abort ();
25996 }
25997 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
25998 (enum bfd_reloc_code_real) reloc_type);
25999 fixp->fx_file = fragp->fr_file;
26000 fixp->fx_line = fragp->fr_line;
26001 fragp->fr_fix += fragp->fr_var;
26002
26003 /* Set whether we use thumb-2 ISA based on final relaxation results. */
26004 if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
26005 && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
26006 ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
26007 }
26008
26009 /* Return the size of a relaxable immediate operand instruction.
26010 SHIFT and SIZE specify the form of the allowable immediate. */
26011 static int
26012 relax_immediate (fragS *fragp, int size, int shift)
26013 {
26014 offsetT offset;
26015 offsetT mask;
26016 offsetT low;
26017
26018 /* ??? Should be able to do better than this. */
26019 if (fragp->fr_symbol)
26020 return 4;
26021
26022 low = (1 << shift) - 1;
26023 mask = (1 << (shift + size)) - (1 << shift);
26024 offset = fragp->fr_offset;
26025 /* Force misaligned offsets to 32-bit variant. */
26026 if (offset & low)
26027 return 4;
26028 if (offset & ~mask)
26029 return 4;
26030 return 2;
26031 }
26032
26033 /* Get the address of a symbol during relaxation. */
26034 static addressT
26035 relaxed_symbol_addr (fragS *fragp, long stretch)
26036 {
26037 fragS *sym_frag;
26038 addressT addr;
26039 symbolS *sym;
26040
26041 sym = fragp->fr_symbol;
26042 sym_frag = symbol_get_frag (sym);
26043 know (S_GET_SEGMENT (sym) != absolute_section
26044 || sym_frag == &zero_address_frag);
26045 addr = S_GET_VALUE (sym) + fragp->fr_offset;
26046
26047 /* If frag has yet to be reached on this pass, assume it will
26048 move by STRETCH just as we did. If this is not so, it will
26049 be because some frag between grows, and that will force
26050 another pass. */
26051
26052 if (stretch != 0
26053 && sym_frag->relax_marker != fragp->relax_marker)
26054 {
26055 fragS *f;
26056
26057 /* Adjust stretch for any alignment frag. Note that if have
26058 been expanding the earlier code, the symbol may be
26059 defined in what appears to be an earlier frag. FIXME:
26060 This doesn't handle the fr_subtype field, which specifies
26061 a maximum number of bytes to skip when doing an
26062 alignment. */
26063 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
26064 {
26065 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
26066 {
26067 if (stretch < 0)
26068 stretch = - ((- stretch)
26069 & ~ ((1 << (int) f->fr_offset) - 1));
26070 else
26071 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
26072 if (stretch == 0)
26073 break;
26074 }
26075 }
26076 if (f != NULL)
26077 addr += stretch;
26078 }
26079
26080 return addr;
26081 }
26082
26083 /* Return the size of a relaxable adr pseudo-instruction or PC-relative
26084 load. */
26085 static int
26086 relax_adr (fragS *fragp, asection *sec, long stretch)
26087 {
26088 addressT addr;
26089 offsetT val;
26090
26091 /* Assume worst case for symbols not known to be in the same section. */
26092 if (fragp->fr_symbol == NULL
26093 || !S_IS_DEFINED (fragp->fr_symbol)
26094 || sec != S_GET_SEGMENT (fragp->fr_symbol)
26095 || S_IS_WEAK (fragp->fr_symbol))
26096 return 4;
26097
26098 val = relaxed_symbol_addr (fragp, stretch);
26099 addr = fragp->fr_address + fragp->fr_fix;
26100 addr = (addr + 4) & ~3;
26101 /* Force misaligned targets to 32-bit variant. */
26102 if (val & 3)
26103 return 4;
26104 val -= addr;
26105 if (val < 0 || val > 1020)
26106 return 4;
26107 return 2;
26108 }
26109
26110 /* Return the size of a relaxable add/sub immediate instruction. */
26111 static int
26112 relax_addsub (fragS *fragp, asection *sec)
26113 {
26114 char *buf;
26115 int op;
26116
26117 buf = fragp->fr_literal + fragp->fr_fix;
26118 op = bfd_get_16(sec->owner, buf);
26119 if ((op & 0xf) == ((op >> 4) & 0xf))
26120 return relax_immediate (fragp, 8, 0);
26121 else
26122 return relax_immediate (fragp, 3, 0);
26123 }
26124
26125 /* Return TRUE iff the definition of symbol S could be pre-empted
26126 (overridden) at link or load time. */
26127 static bfd_boolean
26128 symbol_preemptible (symbolS *s)
26129 {
26130 /* Weak symbols can always be pre-empted. */
26131 if (S_IS_WEAK (s))
26132 return TRUE;
26133
26134 /* Non-global symbols cannot be pre-empted. */
26135 if (! S_IS_EXTERNAL (s))
26136 return FALSE;
26137
26138 #ifdef OBJ_ELF
26139 /* In ELF, a global symbol can be marked protected, or private. In that
26140 case it can't be pre-empted (other definitions in the same link unit
26141 would violate the ODR). */
26142 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
26143 return FALSE;
26144 #endif
26145
26146 /* Other global symbols might be pre-empted. */
26147 return TRUE;
26148 }
26149
26150 /* Return the size of a relaxable branch instruction. BITS is the
26151 size of the offset field in the narrow instruction. */
26152
26153 static int
26154 relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
26155 {
26156 addressT addr;
26157 offsetT val;
26158 offsetT limit;
26159
26160 /* Assume worst case for symbols not known to be in the same section. */
26161 if (!S_IS_DEFINED (fragp->fr_symbol)
26162 || sec != S_GET_SEGMENT (fragp->fr_symbol)
26163 || S_IS_WEAK (fragp->fr_symbol))
26164 return 4;
26165
26166 #ifdef OBJ_ELF
26167 /* A branch to a function in ARM state will require interworking. */
26168 if (S_IS_DEFINED (fragp->fr_symbol)
26169 && ARM_IS_FUNC (fragp->fr_symbol))
26170 return 4;
26171 #endif
26172
26173 if (symbol_preemptible (fragp->fr_symbol))
26174 return 4;
26175
26176 val = relaxed_symbol_addr (fragp, stretch);
26177 addr = fragp->fr_address + fragp->fr_fix + 4;
26178 val -= addr;
26179
26180 /* Offset is a signed value *2 */
26181 limit = 1 << bits;
26182 if (val >= limit || val < -limit)
26183 return 4;
26184 return 2;
26185 }
26186
26187
26188 /* Relax a machine dependent frag. This returns the amount by which
26189 the current size of the frag should change. */
26190
26191 int
26192 arm_relax_frag (asection *sec, fragS *fragp, long stretch)
26193 {
26194 int oldsize;
26195 int newsize;
26196
26197 oldsize = fragp->fr_var;
26198 switch (fragp->fr_subtype)
26199 {
26200 case T_MNEM_ldr_pc2:
26201 newsize = relax_adr (fragp, sec, stretch);
26202 break;
26203 case T_MNEM_ldr_pc:
26204 case T_MNEM_ldr_sp:
26205 case T_MNEM_str_sp:
26206 newsize = relax_immediate (fragp, 8, 2);
26207 break;
26208 case T_MNEM_ldr:
26209 case T_MNEM_str:
26210 newsize = relax_immediate (fragp, 5, 2);
26211 break;
26212 case T_MNEM_ldrh:
26213 case T_MNEM_strh:
26214 newsize = relax_immediate (fragp, 5, 1);
26215 break;
26216 case T_MNEM_ldrb:
26217 case T_MNEM_strb:
26218 newsize = relax_immediate (fragp, 5, 0);
26219 break;
26220 case T_MNEM_adr:
26221 newsize = relax_adr (fragp, sec, stretch);
26222 break;
26223 case T_MNEM_mov:
26224 case T_MNEM_movs:
26225 case T_MNEM_cmp:
26226 case T_MNEM_cmn:
26227 newsize = relax_immediate (fragp, 8, 0);
26228 break;
26229 case T_MNEM_b:
26230 newsize = relax_branch (fragp, sec, 11, stretch);
26231 break;
26232 case T_MNEM_bcond:
26233 newsize = relax_branch (fragp, sec, 8, stretch);
26234 break;
26235 case T_MNEM_add_sp:
26236 case T_MNEM_add_pc:
26237 newsize = relax_immediate (fragp, 8, 2);
26238 break;
26239 case T_MNEM_inc_sp:
26240 case T_MNEM_dec_sp:
26241 newsize = relax_immediate (fragp, 7, 2);
26242 break;
26243 case T_MNEM_addi:
26244 case T_MNEM_addis:
26245 case T_MNEM_subi:
26246 case T_MNEM_subis:
26247 newsize = relax_addsub (fragp, sec);
26248 break;
26249 default:
26250 abort ();
26251 }
26252
26253 fragp->fr_var = newsize;
26254 /* Freeze wide instructions that are at or before the same location as
26255 in the previous pass. This avoids infinite loops.
26256 Don't freeze them unconditionally because targets may be artificially
26257 misaligned by the expansion of preceding frags. */
26258 if (stretch <= 0 && newsize > 2)
26259 {
26260 md_convert_frag (sec->owner, sec, fragp);
26261 frag_wane (fragp);
26262 }
26263
26264 return newsize - oldsize;
26265 }
26266
26267 /* Round up a section size to the appropriate boundary. */
26268
26269 valueT
26270 md_section_align (segT segment ATTRIBUTE_UNUSED,
26271 valueT size)
26272 {
26273 return size;
26274 }
26275
26276 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
26277 of an rs_align_code fragment. */
26278
26279 void
26280 arm_handle_align (fragS * fragP)
26281 {
26282 static unsigned char const arm_noop[2][2][4] =
26283 {
26284 { /* ARMv1 */
26285 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
26286 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
26287 },
26288 { /* ARMv6k */
26289 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
26290 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
26291 },
26292 };
26293 static unsigned char const thumb_noop[2][2][2] =
26294 {
26295 { /* Thumb-1 */
26296 {0xc0, 0x46}, /* LE */
26297 {0x46, 0xc0}, /* BE */
26298 },
26299 { /* Thumb-2 */
26300 {0x00, 0xbf}, /* LE */
26301 {0xbf, 0x00} /* BE */
26302 }
26303 };
26304 static unsigned char const wide_thumb_noop[2][4] =
26305 { /* Wide Thumb-2 */
26306 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
26307 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
26308 };
26309
26310 unsigned bytes, fix, noop_size;
26311 char * p;
26312 const unsigned char * noop;
26313 const unsigned char *narrow_noop = NULL;
26314 #ifdef OBJ_ELF
26315 enum mstate state;
26316 #endif
26317
26318 if (fragP->fr_type != rs_align_code)
26319 return;
26320
26321 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
26322 p = fragP->fr_literal + fragP->fr_fix;
26323 fix = 0;
26324
26325 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
26326 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
26327
26328 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
26329
26330 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
26331 {
26332 if (ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
26333 ? selected_cpu : arm_arch_none, arm_ext_v6t2))
26334 {
26335 narrow_noop = thumb_noop[1][target_big_endian];
26336 noop = wide_thumb_noop[target_big_endian];
26337 }
26338 else
26339 noop = thumb_noop[0][target_big_endian];
26340 noop_size = 2;
26341 #ifdef OBJ_ELF
26342 state = MAP_THUMB;
26343 #endif
26344 }
26345 else
26346 {
26347 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
26348 ? selected_cpu : arm_arch_none,
26349 arm_ext_v6k) != 0]
26350 [target_big_endian];
26351 noop_size = 4;
26352 #ifdef OBJ_ELF
26353 state = MAP_ARM;
26354 #endif
26355 }
26356
26357 fragP->fr_var = noop_size;
26358
26359 if (bytes & (noop_size - 1))
26360 {
26361 fix = bytes & (noop_size - 1);
26362 #ifdef OBJ_ELF
26363 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
26364 #endif
26365 memset (p, 0, fix);
26366 p += fix;
26367 bytes -= fix;
26368 }
26369
26370 if (narrow_noop)
26371 {
26372 if (bytes & noop_size)
26373 {
26374 /* Insert a narrow noop. */
26375 memcpy (p, narrow_noop, noop_size);
26376 p += noop_size;
26377 bytes -= noop_size;
26378 fix += noop_size;
26379 }
26380
26381 /* Use wide noops for the remainder */
26382 noop_size = 4;
26383 }
26384
26385 while (bytes >= noop_size)
26386 {
26387 memcpy (p, noop, noop_size);
26388 p += noop_size;
26389 bytes -= noop_size;
26390 fix += noop_size;
26391 }
26392
26393 fragP->fr_fix += fix;
26394 }
26395
26396 /* Called from md_do_align. Used to create an alignment
26397 frag in a code section. */
26398
26399 void
26400 arm_frag_align_code (int n, int max)
26401 {
26402 char * p;
26403
26404 /* We assume that there will never be a requirement
26405 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
26406 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
26407 {
26408 char err_msg[128];
26409
26410 sprintf (err_msg,
26411 _("alignments greater than %d bytes not supported in .text sections."),
26412 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
26413 as_fatal ("%s", err_msg);
26414 }
26415
26416 p = frag_var (rs_align_code,
26417 MAX_MEM_FOR_RS_ALIGN_CODE,
26418 1,
26419 (relax_substateT) max,
26420 (symbolS *) NULL,
26421 (offsetT) n,
26422 (char *) NULL);
26423 *p = 0;
26424 }
26425
26426 /* Perform target specific initialisation of a frag.
26427 Note - despite the name this initialisation is not done when the frag
26428 is created, but only when its type is assigned. A frag can be created
26429 and used a long time before its type is set, so beware of assuming that
26430 this initialisation is performed first. */
26431
26432 #ifndef OBJ_ELF
26433 void
26434 arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
26435 {
26436 /* Record whether this frag is in an ARM or a THUMB area. */
26437 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
26438 }
26439
26440 #else /* OBJ_ELF is defined. */
26441 void
26442 arm_init_frag (fragS * fragP, int max_chars)
26443 {
26444 bfd_boolean frag_thumb_mode;
26445
26446 /* If the current ARM vs THUMB mode has not already
26447 been recorded into this frag then do so now. */
26448 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
26449 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
26450
26451 /* PR 21809: Do not set a mapping state for debug sections
26452 - it just confuses other tools. */
26453 if (bfd_get_section_flags (NULL, now_seg) & SEC_DEBUGGING)
26454 return;
26455
26456 frag_thumb_mode = fragP->tc_frag_data.thumb_mode ^ MODE_RECORDED;
26457
26458 /* Record a mapping symbol for alignment frags. We will delete this
26459 later if the alignment ends up empty. */
26460 switch (fragP->fr_type)
26461 {
26462 case rs_align:
26463 case rs_align_test:
26464 case rs_fill:
26465 mapping_state_2 (MAP_DATA, max_chars);
26466 break;
26467 case rs_align_code:
26468 mapping_state_2 (frag_thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
26469 break;
26470 default:
26471 break;
26472 }
26473 }
26474
26475 /* When we change sections we need to issue a new mapping symbol. */
26476
26477 void
26478 arm_elf_change_section (void)
26479 {
26480 /* Link an unlinked unwind index table section to the .text section. */
26481 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
26482 && elf_linked_to_section (now_seg) == NULL)
26483 elf_linked_to_section (now_seg) = text_section;
26484 }
26485
26486 int
26487 arm_elf_section_type (const char * str, size_t len)
26488 {
26489 if (len == 5 && strncmp (str, "exidx", 5) == 0)
26490 return SHT_ARM_EXIDX;
26491
26492 return -1;
26493 }
26494 \f
26495 /* Code to deal with unwinding tables. */
26496
26497 static void add_unwind_adjustsp (offsetT);
26498
26499 /* Generate any deferred unwind frame offset. */
26500
26501 static void
26502 flush_pending_unwind (void)
26503 {
26504 offsetT offset;
26505
26506 offset = unwind.pending_offset;
26507 unwind.pending_offset = 0;
26508 if (offset != 0)
26509 add_unwind_adjustsp (offset);
26510 }
26511
26512 /* Add an opcode to this list for this function. Two-byte opcodes should
26513 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
26514 order. */
26515
26516 static void
26517 add_unwind_opcode (valueT op, int length)
26518 {
26519 /* Add any deferred stack adjustment. */
26520 if (unwind.pending_offset)
26521 flush_pending_unwind ();
26522
26523 unwind.sp_restored = 0;
26524
26525 if (unwind.opcode_count + length > unwind.opcode_alloc)
26526 {
26527 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
26528 if (unwind.opcodes)
26529 unwind.opcodes = XRESIZEVEC (unsigned char, unwind.opcodes,
26530 unwind.opcode_alloc);
26531 else
26532 unwind.opcodes = XNEWVEC (unsigned char, unwind.opcode_alloc);
26533 }
26534 while (length > 0)
26535 {
26536 length--;
26537 unwind.opcodes[unwind.opcode_count] = op & 0xff;
26538 op >>= 8;
26539 unwind.opcode_count++;
26540 }
26541 }
26542
26543 /* Add unwind opcodes to adjust the stack pointer. */
26544
26545 static void
26546 add_unwind_adjustsp (offsetT offset)
26547 {
26548 valueT op;
26549
26550 if (offset > 0x200)
26551 {
26552 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
26553 char bytes[5];
26554 int n;
26555 valueT o;
26556
26557 /* Long form: 0xb2, uleb128. */
26558 /* This might not fit in a word so add the individual bytes,
26559 remembering the list is built in reverse order. */
26560 o = (valueT) ((offset - 0x204) >> 2);
26561 if (o == 0)
26562 add_unwind_opcode (0, 1);
26563
26564 /* Calculate the uleb128 encoding of the offset. */
26565 n = 0;
26566 while (o)
26567 {
26568 bytes[n] = o & 0x7f;
26569 o >>= 7;
26570 if (o)
26571 bytes[n] |= 0x80;
26572 n++;
26573 }
26574 /* Add the insn. */
26575 for (; n; n--)
26576 add_unwind_opcode (bytes[n - 1], 1);
26577 add_unwind_opcode (0xb2, 1);
26578 }
26579 else if (offset > 0x100)
26580 {
26581 /* Two short opcodes. */
26582 add_unwind_opcode (0x3f, 1);
26583 op = (offset - 0x104) >> 2;
26584 add_unwind_opcode (op, 1);
26585 }
26586 else if (offset > 0)
26587 {
26588 /* Short opcode. */
26589 op = (offset - 4) >> 2;
26590 add_unwind_opcode (op, 1);
26591 }
26592 else if (offset < 0)
26593 {
26594 offset = -offset;
26595 while (offset > 0x100)
26596 {
26597 add_unwind_opcode (0x7f, 1);
26598 offset -= 0x100;
26599 }
26600 op = ((offset - 4) >> 2) | 0x40;
26601 add_unwind_opcode (op, 1);
26602 }
26603 }
26604
26605 /* Finish the list of unwind opcodes for this function. */
26606
26607 static void
26608 finish_unwind_opcodes (void)
26609 {
26610 valueT op;
26611
26612 if (unwind.fp_used)
26613 {
26614 /* Adjust sp as necessary. */
26615 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
26616 flush_pending_unwind ();
26617
26618 /* After restoring sp from the frame pointer. */
26619 op = 0x90 | unwind.fp_reg;
26620 add_unwind_opcode (op, 1);
26621 }
26622 else
26623 flush_pending_unwind ();
26624 }
26625
26626
26627 /* Start an exception table entry. If idx is nonzero this is an index table
26628 entry. */
26629
26630 static void
26631 start_unwind_section (const segT text_seg, int idx)
26632 {
26633 const char * text_name;
26634 const char * prefix;
26635 const char * prefix_once;
26636 const char * group_name;
26637 char * sec_name;
26638 int type;
26639 int flags;
26640 int linkonce;
26641
26642 if (idx)
26643 {
26644 prefix = ELF_STRING_ARM_unwind;
26645 prefix_once = ELF_STRING_ARM_unwind_once;
26646 type = SHT_ARM_EXIDX;
26647 }
26648 else
26649 {
26650 prefix = ELF_STRING_ARM_unwind_info;
26651 prefix_once = ELF_STRING_ARM_unwind_info_once;
26652 type = SHT_PROGBITS;
26653 }
26654
26655 text_name = segment_name (text_seg);
26656 if (streq (text_name, ".text"))
26657 text_name = "";
26658
26659 if (strncmp (text_name, ".gnu.linkonce.t.",
26660 strlen (".gnu.linkonce.t.")) == 0)
26661 {
26662 prefix = prefix_once;
26663 text_name += strlen (".gnu.linkonce.t.");
26664 }
26665
26666 sec_name = concat (prefix, text_name, (char *) NULL);
26667
26668 flags = SHF_ALLOC;
26669 linkonce = 0;
26670 group_name = 0;
26671
26672 /* Handle COMDAT group. */
26673 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
26674 {
26675 group_name = elf_group_name (text_seg);
26676 if (group_name == NULL)
26677 {
26678 as_bad (_("Group section `%s' has no group signature"),
26679 segment_name (text_seg));
26680 ignore_rest_of_line ();
26681 return;
26682 }
26683 flags |= SHF_GROUP;
26684 linkonce = 1;
26685 }
26686
26687 obj_elf_change_section (sec_name, type, 0, flags, 0, group_name,
26688 linkonce, 0);
26689
26690 /* Set the section link for index tables. */
26691 if (idx)
26692 elf_linked_to_section (now_seg) = text_seg;
26693 }
26694
26695
26696 /* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
26697 personality routine data. Returns zero, or the index table value for
26698 an inline entry. */
26699
26700 static valueT
26701 create_unwind_entry (int have_data)
26702 {
26703 int size;
26704 addressT where;
26705 char *ptr;
26706 /* The current word of data. */
26707 valueT data;
26708 /* The number of bytes left in this word. */
26709 int n;
26710
26711 finish_unwind_opcodes ();
26712
26713 /* Remember the current text section. */
26714 unwind.saved_seg = now_seg;
26715 unwind.saved_subseg = now_subseg;
26716
26717 start_unwind_section (now_seg, 0);
26718
26719 if (unwind.personality_routine == NULL)
26720 {
26721 if (unwind.personality_index == -2)
26722 {
26723 if (have_data)
26724 as_bad (_("handlerdata in cantunwind frame"));
26725 return 1; /* EXIDX_CANTUNWIND. */
26726 }
26727
26728 /* Use a default personality routine if none is specified. */
26729 if (unwind.personality_index == -1)
26730 {
26731 if (unwind.opcode_count > 3)
26732 unwind.personality_index = 1;
26733 else
26734 unwind.personality_index = 0;
26735 }
26736
26737 /* Space for the personality routine entry. */
26738 if (unwind.personality_index == 0)
26739 {
26740 if (unwind.opcode_count > 3)
26741 as_bad (_("too many unwind opcodes for personality routine 0"));
26742
26743 if (!have_data)
26744 {
26745 /* All the data is inline in the index table. */
26746 data = 0x80;
26747 n = 3;
26748 while (unwind.opcode_count > 0)
26749 {
26750 unwind.opcode_count--;
26751 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
26752 n--;
26753 }
26754
26755 /* Pad with "finish" opcodes. */
26756 while (n--)
26757 data = (data << 8) | 0xb0;
26758
26759 return data;
26760 }
26761 size = 0;
26762 }
26763 else
26764 /* We get two opcodes "free" in the first word. */
26765 size = unwind.opcode_count - 2;
26766 }
26767 else
26768 {
26769 /* PR 16765: Missing or misplaced unwind directives can trigger this. */
26770 if (unwind.personality_index != -1)
26771 {
26772 as_bad (_("attempt to recreate an unwind entry"));
26773 return 1;
26774 }
26775
26776 /* An extra byte is required for the opcode count. */
26777 size = unwind.opcode_count + 1;
26778 }
26779
26780 size = (size + 3) >> 2;
26781 if (size > 0xff)
26782 as_bad (_("too many unwind opcodes"));
26783
26784 frag_align (2, 0, 0);
26785 record_alignment (now_seg, 2);
26786 unwind.table_entry = expr_build_dot ();
26787
26788 /* Allocate the table entry. */
26789 ptr = frag_more ((size << 2) + 4);
26790 /* PR 13449: Zero the table entries in case some of them are not used. */
26791 memset (ptr, 0, (size << 2) + 4);
26792 where = frag_now_fix () - ((size << 2) + 4);
26793
26794 switch (unwind.personality_index)
26795 {
26796 case -1:
26797 /* ??? Should this be a PLT generating relocation? */
26798 /* Custom personality routine. */
26799 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
26800 BFD_RELOC_ARM_PREL31);
26801
26802 where += 4;
26803 ptr += 4;
26804
26805 /* Set the first byte to the number of additional words. */
26806 data = size > 0 ? size - 1 : 0;
26807 n = 3;
26808 break;
26809
26810 /* ABI defined personality routines. */
26811 case 0:
26812 /* Three opcodes bytes are packed into the first word. */
26813 data = 0x80;
26814 n = 3;
26815 break;
26816
26817 case 1:
26818 case 2:
26819 /* The size and first two opcode bytes go in the first word. */
26820 data = ((0x80 + unwind.personality_index) << 8) | size;
26821 n = 2;
26822 break;
26823
26824 default:
26825 /* Should never happen. */
26826 abort ();
26827 }
26828
26829 /* Pack the opcodes into words (MSB first), reversing the list at the same
26830 time. */
26831 while (unwind.opcode_count > 0)
26832 {
26833 if (n == 0)
26834 {
26835 md_number_to_chars (ptr, data, 4);
26836 ptr += 4;
26837 n = 4;
26838 data = 0;
26839 }
26840 unwind.opcode_count--;
26841 n--;
26842 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
26843 }
26844
26845 /* Finish off the last word. */
26846 if (n < 4)
26847 {
26848 /* Pad with "finish" opcodes. */
26849 while (n--)
26850 data = (data << 8) | 0xb0;
26851
26852 md_number_to_chars (ptr, data, 4);
26853 }
26854
26855 if (!have_data)
26856 {
26857 /* Add an empty descriptor if there is no user-specified data. */
26858 ptr = frag_more (4);
26859 md_number_to_chars (ptr, 0, 4);
26860 }
26861
26862 return 0;
26863 }
26864
26865
26866 /* Initialize the DWARF-2 unwind information for this procedure. */
26867
26868 void
26869 tc_arm_frame_initial_instructions (void)
26870 {
26871 cfi_add_CFA_def_cfa (REG_SP, 0);
26872 }
26873 #endif /* OBJ_ELF */
26874
26875 /* Convert REGNAME to a DWARF-2 register number. */
26876
26877 int
26878 tc_arm_regname_to_dw2regnum (char *regname)
26879 {
26880 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
26881 if (reg != FAIL)
26882 return reg;
26883
26884 /* PR 16694: Allow VFP registers as well. */
26885 reg = arm_reg_parse (&regname, REG_TYPE_VFS);
26886 if (reg != FAIL)
26887 return 64 + reg;
26888
26889 reg = arm_reg_parse (&regname, REG_TYPE_VFD);
26890 if (reg != FAIL)
26891 return reg + 256;
26892
26893 return FAIL;
26894 }
26895
26896 #ifdef TE_PE
26897 void
26898 tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
26899 {
26900 expressionS exp;
26901
26902 exp.X_op = O_secrel;
26903 exp.X_add_symbol = symbol;
26904 exp.X_add_number = 0;
26905 emit_expr (&exp, size);
26906 }
26907 #endif
26908
26909 /* MD interface: Symbol and relocation handling. */
26910
26911 /* Return the address within the segment that a PC-relative fixup is
26912 relative to. For ARM, PC-relative fixups applied to instructions
26913 are generally relative to the location of the fixup plus 8 bytes.
26914 Thumb branches are offset by 4, and Thumb loads relative to PC
26915 require special handling. */
26916
26917 long
26918 md_pcrel_from_section (fixS * fixP, segT seg)
26919 {
26920 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
26921
26922 /* If this is pc-relative and we are going to emit a relocation
26923 then we just want to put out any pipeline compensation that the linker
26924 will need. Otherwise we want to use the calculated base.
26925 For WinCE we skip the bias for externals as well, since this
26926 is how the MS ARM-CE assembler behaves and we want to be compatible. */
26927 if (fixP->fx_pcrel
26928 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
26929 || (arm_force_relocation (fixP)
26930 #ifdef TE_WINCE
26931 && !S_IS_EXTERNAL (fixP->fx_addsy)
26932 #endif
26933 )))
26934 base = 0;
26935
26936
26937 switch (fixP->fx_r_type)
26938 {
26939 /* PC relative addressing on the Thumb is slightly odd as the
26940 bottom two bits of the PC are forced to zero for the
26941 calculation. This happens *after* application of the
26942 pipeline offset. However, Thumb adrl already adjusts for
26943 this, so we need not do it again. */
26944 case BFD_RELOC_ARM_THUMB_ADD:
26945 return base & ~3;
26946
26947 case BFD_RELOC_ARM_THUMB_OFFSET:
26948 case BFD_RELOC_ARM_T32_OFFSET_IMM:
26949 case BFD_RELOC_ARM_T32_ADD_PC12:
26950 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
26951 return (base + 4) & ~3;
26952
26953 /* Thumb branches are simply offset by +4. */
26954 case BFD_RELOC_THUMB_PCREL_BRANCH5:
26955 case BFD_RELOC_THUMB_PCREL_BRANCH7:
26956 case BFD_RELOC_THUMB_PCREL_BRANCH9:
26957 case BFD_RELOC_THUMB_PCREL_BRANCH12:
26958 case BFD_RELOC_THUMB_PCREL_BRANCH20:
26959 case BFD_RELOC_THUMB_PCREL_BRANCH25:
26960 case BFD_RELOC_THUMB_PCREL_BFCSEL:
26961 case BFD_RELOC_ARM_THUMB_BF17:
26962 case BFD_RELOC_ARM_THUMB_BF19:
26963 case BFD_RELOC_ARM_THUMB_BF13:
26964 case BFD_RELOC_ARM_THUMB_LOOP12:
26965 return base + 4;
26966
26967 case BFD_RELOC_THUMB_PCREL_BRANCH23:
26968 if (fixP->fx_addsy
26969 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
26970 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
26971 && ARM_IS_FUNC (fixP->fx_addsy)
26972 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
26973 base = fixP->fx_where + fixP->fx_frag->fr_address;
26974 return base + 4;
26975
26976 /* BLX is like branches above, but forces the low two bits of PC to
26977 zero. */
26978 case BFD_RELOC_THUMB_PCREL_BLX:
26979 if (fixP->fx_addsy
26980 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
26981 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
26982 && THUMB_IS_FUNC (fixP->fx_addsy)
26983 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
26984 base = fixP->fx_where + fixP->fx_frag->fr_address;
26985 return (base + 4) & ~3;
26986
26987 /* ARM mode branches are offset by +8. However, the Windows CE
26988 loader expects the relocation not to take this into account. */
26989 case BFD_RELOC_ARM_PCREL_BLX:
26990 if (fixP->fx_addsy
26991 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
26992 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
26993 && ARM_IS_FUNC (fixP->fx_addsy)
26994 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
26995 base = fixP->fx_where + fixP->fx_frag->fr_address;
26996 return base + 8;
26997
26998 case BFD_RELOC_ARM_PCREL_CALL:
26999 if (fixP->fx_addsy
27000 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27001 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27002 && THUMB_IS_FUNC (fixP->fx_addsy)
27003 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
27004 base = fixP->fx_where + fixP->fx_frag->fr_address;
27005 return base + 8;
27006
27007 case BFD_RELOC_ARM_PCREL_BRANCH:
27008 case BFD_RELOC_ARM_PCREL_JUMP:
27009 case BFD_RELOC_ARM_PLT32:
27010 #ifdef TE_WINCE
27011 /* When handling fixups immediately, because we have already
27012 discovered the value of a symbol, or the address of the frag involved
27013 we must account for the offset by +8, as the OS loader will never see the reloc.
27014 see fixup_segment() in write.c
27015 The S_IS_EXTERNAL test handles the case of global symbols.
27016 Those need the calculated base, not just the pipe compensation the linker will need. */
27017 if (fixP->fx_pcrel
27018 && fixP->fx_addsy != NULL
27019 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27020 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
27021 return base + 8;
27022 return base;
27023 #else
27024 return base + 8;
27025 #endif
27026
27027
27028 /* ARM mode loads relative to PC are also offset by +8. Unlike
27029 branches, the Windows CE loader *does* expect the relocation
27030 to take this into account. */
27031 case BFD_RELOC_ARM_OFFSET_IMM:
27032 case BFD_RELOC_ARM_OFFSET_IMM8:
27033 case BFD_RELOC_ARM_HWLITERAL:
27034 case BFD_RELOC_ARM_LITERAL:
27035 case BFD_RELOC_ARM_CP_OFF_IMM:
27036 return base + 8;
27037
27038
27039 /* Other PC-relative relocations are un-offset. */
27040 default:
27041 return base;
27042 }
27043 }
27044
27045 static bfd_boolean flag_warn_syms = TRUE;
27046
27047 bfd_boolean
27048 arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
27049 {
27050 /* PR 18347 - Warn if the user attempts to create a symbol with the same
27051 name as an ARM instruction. Whilst strictly speaking it is allowed, it
27052 does mean that the resulting code might be very confusing to the reader.
27053 Also this warning can be triggered if the user omits an operand before
27054 an immediate address, eg:
27055
27056 LDR =foo
27057
27058 GAS treats this as an assignment of the value of the symbol foo to a
27059 symbol LDR, and so (without this code) it will not issue any kind of
27060 warning or error message.
27061
27062 Note - ARM instructions are case-insensitive but the strings in the hash
27063 table are all stored in lower case, so we must first ensure that name is
27064 lower case too. */
27065 if (flag_warn_syms && arm_ops_hsh)
27066 {
27067 char * nbuf = strdup (name);
27068 char * p;
27069
27070 for (p = nbuf; *p; p++)
27071 *p = TOLOWER (*p);
27072 if (hash_find (arm_ops_hsh, nbuf) != NULL)
27073 {
27074 static struct hash_control * already_warned = NULL;
27075
27076 if (already_warned == NULL)
27077 already_warned = hash_new ();
27078 /* Only warn about the symbol once. To keep the code
27079 simple we let hash_insert do the lookup for us. */
27080 if (hash_insert (already_warned, nbuf, NULL) == NULL)
27081 as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
27082 }
27083 else
27084 free (nbuf);
27085 }
27086
27087 return FALSE;
27088 }
27089
27090 /* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
27091 Otherwise we have no need to default values of symbols. */
27092
27093 symbolS *
27094 md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
27095 {
27096 #ifdef OBJ_ELF
27097 if (name[0] == '_' && name[1] == 'G'
27098 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
27099 {
27100 if (!GOT_symbol)
27101 {
27102 if (symbol_find (name))
27103 as_bad (_("GOT already in the symbol table"));
27104
27105 GOT_symbol = symbol_new (name, undefined_section,
27106 (valueT) 0, & zero_address_frag);
27107 }
27108
27109 return GOT_symbol;
27110 }
27111 #endif
27112
27113 return NULL;
27114 }
27115
27116 /* Subroutine of md_apply_fix. Check to see if an immediate can be
27117 computed as two separate immediate values, added together. We
27118 already know that this value cannot be computed by just one ARM
27119 instruction. */
27120
27121 static unsigned int
27122 validate_immediate_twopart (unsigned int val,
27123 unsigned int * highpart)
27124 {
27125 unsigned int a;
27126 unsigned int i;
27127
27128 for (i = 0; i < 32; i += 2)
27129 if (((a = rotate_left (val, i)) & 0xff) != 0)
27130 {
27131 if (a & 0xff00)
27132 {
27133 if (a & ~ 0xffff)
27134 continue;
27135 * highpart = (a >> 8) | ((i + 24) << 7);
27136 }
27137 else if (a & 0xff0000)
27138 {
27139 if (a & 0xff000000)
27140 continue;
27141 * highpart = (a >> 16) | ((i + 16) << 7);
27142 }
27143 else
27144 {
27145 gas_assert (a & 0xff000000);
27146 * highpart = (a >> 24) | ((i + 8) << 7);
27147 }
27148
27149 return (a & 0xff) | (i << 7);
27150 }
27151
27152 return FAIL;
27153 }
27154
27155 static int
27156 validate_offset_imm (unsigned int val, int hwse)
27157 {
27158 if ((hwse && val > 255) || val > 4095)
27159 return FAIL;
27160 return val;
27161 }
27162
27163 /* Subroutine of md_apply_fix. Do those data_ops which can take a
27164 negative immediate constant by altering the instruction. A bit of
27165 a hack really.
27166 MOV <-> MVN
27167 AND <-> BIC
27168 ADC <-> SBC
27169 by inverting the second operand, and
27170 ADD <-> SUB
27171 CMP <-> CMN
27172 by negating the second operand. */
27173
27174 static int
27175 negate_data_op (unsigned long * instruction,
27176 unsigned long value)
27177 {
27178 int op, new_inst;
27179 unsigned long negated, inverted;
27180
27181 negated = encode_arm_immediate (-value);
27182 inverted = encode_arm_immediate (~value);
27183
27184 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
27185 switch (op)
27186 {
27187 /* First negates. */
27188 case OPCODE_SUB: /* ADD <-> SUB */
27189 new_inst = OPCODE_ADD;
27190 value = negated;
27191 break;
27192
27193 case OPCODE_ADD:
27194 new_inst = OPCODE_SUB;
27195 value = negated;
27196 break;
27197
27198 case OPCODE_CMP: /* CMP <-> CMN */
27199 new_inst = OPCODE_CMN;
27200 value = negated;
27201 break;
27202
27203 case OPCODE_CMN:
27204 new_inst = OPCODE_CMP;
27205 value = negated;
27206 break;
27207
27208 /* Now Inverted ops. */
27209 case OPCODE_MOV: /* MOV <-> MVN */
27210 new_inst = OPCODE_MVN;
27211 value = inverted;
27212 break;
27213
27214 case OPCODE_MVN:
27215 new_inst = OPCODE_MOV;
27216 value = inverted;
27217 break;
27218
27219 case OPCODE_AND: /* AND <-> BIC */
27220 new_inst = OPCODE_BIC;
27221 value = inverted;
27222 break;
27223
27224 case OPCODE_BIC:
27225 new_inst = OPCODE_AND;
27226 value = inverted;
27227 break;
27228
27229 case OPCODE_ADC: /* ADC <-> SBC */
27230 new_inst = OPCODE_SBC;
27231 value = inverted;
27232 break;
27233
27234 case OPCODE_SBC:
27235 new_inst = OPCODE_ADC;
27236 value = inverted;
27237 break;
27238
27239 /* We cannot do anything. */
27240 default:
27241 return FAIL;
27242 }
27243
27244 if (value == (unsigned) FAIL)
27245 return FAIL;
27246
27247 *instruction &= OPCODE_MASK;
27248 *instruction |= new_inst << DATA_OP_SHIFT;
27249 return value;
27250 }
27251
27252 /* Like negate_data_op, but for Thumb-2. */
27253
27254 static unsigned int
27255 thumb32_negate_data_op (offsetT *instruction, unsigned int value)
27256 {
27257 int op, new_inst;
27258 int rd;
27259 unsigned int negated, inverted;
27260
27261 negated = encode_thumb32_immediate (-value);
27262 inverted = encode_thumb32_immediate (~value);
27263
27264 rd = (*instruction >> 8) & 0xf;
27265 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
27266 switch (op)
27267 {
27268 /* ADD <-> SUB. Includes CMP <-> CMN. */
27269 case T2_OPCODE_SUB:
27270 new_inst = T2_OPCODE_ADD;
27271 value = negated;
27272 break;
27273
27274 case T2_OPCODE_ADD:
27275 new_inst = T2_OPCODE_SUB;
27276 value = negated;
27277 break;
27278
27279 /* ORR <-> ORN. Includes MOV <-> MVN. */
27280 case T2_OPCODE_ORR:
27281 new_inst = T2_OPCODE_ORN;
27282 value = inverted;
27283 break;
27284
27285 case T2_OPCODE_ORN:
27286 new_inst = T2_OPCODE_ORR;
27287 value = inverted;
27288 break;
27289
27290 /* AND <-> BIC. TST has no inverted equivalent. */
27291 case T2_OPCODE_AND:
27292 new_inst = T2_OPCODE_BIC;
27293 if (rd == 15)
27294 value = FAIL;
27295 else
27296 value = inverted;
27297 break;
27298
27299 case T2_OPCODE_BIC:
27300 new_inst = T2_OPCODE_AND;
27301 value = inverted;
27302 break;
27303
27304 /* ADC <-> SBC */
27305 case T2_OPCODE_ADC:
27306 new_inst = T2_OPCODE_SBC;
27307 value = inverted;
27308 break;
27309
27310 case T2_OPCODE_SBC:
27311 new_inst = T2_OPCODE_ADC;
27312 value = inverted;
27313 break;
27314
27315 /* We cannot do anything. */
27316 default:
27317 return FAIL;
27318 }
27319
27320 if (value == (unsigned int)FAIL)
27321 return FAIL;
27322
27323 *instruction &= T2_OPCODE_MASK;
27324 *instruction |= new_inst << T2_DATA_OP_SHIFT;
27325 return value;
27326 }
27327
27328 /* Read a 32-bit thumb instruction from buf. */
27329
27330 static unsigned long
27331 get_thumb32_insn (char * buf)
27332 {
27333 unsigned long insn;
27334 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
27335 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
27336
27337 return insn;
27338 }
27339
27340 /* We usually want to set the low bit on the address of thumb function
27341 symbols. In particular .word foo - . should have the low bit set.
27342 Generic code tries to fold the difference of two symbols to
27343 a constant. Prevent this and force a relocation when the first symbols
27344 is a thumb function. */
27345
27346 bfd_boolean
27347 arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
27348 {
27349 if (op == O_subtract
27350 && l->X_op == O_symbol
27351 && r->X_op == O_symbol
27352 && THUMB_IS_FUNC (l->X_add_symbol))
27353 {
27354 l->X_op = O_subtract;
27355 l->X_op_symbol = r->X_add_symbol;
27356 l->X_add_number -= r->X_add_number;
27357 return TRUE;
27358 }
27359
27360 /* Process as normal. */
27361 return FALSE;
27362 }
27363
27364 /* Encode Thumb2 unconditional branches and calls. The encoding
27365 for the 2 are identical for the immediate values. */
27366
27367 static void
27368 encode_thumb2_b_bl_offset (char * buf, offsetT value)
27369 {
27370 #define T2I1I2MASK ((1 << 13) | (1 << 11))
27371 offsetT newval;
27372 offsetT newval2;
27373 addressT S, I1, I2, lo, hi;
27374
27375 S = (value >> 24) & 0x01;
27376 I1 = (value >> 23) & 0x01;
27377 I2 = (value >> 22) & 0x01;
27378 hi = (value >> 12) & 0x3ff;
27379 lo = (value >> 1) & 0x7ff;
27380 newval = md_chars_to_number (buf, THUMB_SIZE);
27381 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
27382 newval |= (S << 10) | hi;
27383 newval2 &= ~T2I1I2MASK;
27384 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
27385 md_number_to_chars (buf, newval, THUMB_SIZE);
27386 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
27387 }
27388
27389 void
27390 md_apply_fix (fixS * fixP,
27391 valueT * valP,
27392 segT seg)
27393 {
27394 offsetT value = * valP;
27395 offsetT newval;
27396 unsigned int newimm;
27397 unsigned long temp;
27398 int sign;
27399 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
27400
27401 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
27402
27403 /* Note whether this will delete the relocation. */
27404
27405 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
27406 fixP->fx_done = 1;
27407
27408 /* On a 64-bit host, silently truncate 'value' to 32 bits for
27409 consistency with the behaviour on 32-bit hosts. Remember value
27410 for emit_reloc. */
27411 value &= 0xffffffff;
27412 value ^= 0x80000000;
27413 value -= 0x80000000;
27414
27415 *valP = value;
27416 fixP->fx_addnumber = value;
27417
27418 /* Same treatment for fixP->fx_offset. */
27419 fixP->fx_offset &= 0xffffffff;
27420 fixP->fx_offset ^= 0x80000000;
27421 fixP->fx_offset -= 0x80000000;
27422
27423 switch (fixP->fx_r_type)
27424 {
27425 case BFD_RELOC_NONE:
27426 /* This will need to go in the object file. */
27427 fixP->fx_done = 0;
27428 break;
27429
27430 case BFD_RELOC_ARM_IMMEDIATE:
27431 /* We claim that this fixup has been processed here,
27432 even if in fact we generate an error because we do
27433 not have a reloc for it, so tc_gen_reloc will reject it. */
27434 fixP->fx_done = 1;
27435
27436 if (fixP->fx_addsy)
27437 {
27438 const char *msg = 0;
27439
27440 if (! S_IS_DEFINED (fixP->fx_addsy))
27441 msg = _("undefined symbol %s used as an immediate value");
27442 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
27443 msg = _("symbol %s is in a different section");
27444 else if (S_IS_WEAK (fixP->fx_addsy))
27445 msg = _("symbol %s is weak and may be overridden later");
27446
27447 if (msg)
27448 {
27449 as_bad_where (fixP->fx_file, fixP->fx_line,
27450 msg, S_GET_NAME (fixP->fx_addsy));
27451 break;
27452 }
27453 }
27454
27455 temp = md_chars_to_number (buf, INSN_SIZE);
27456
27457 /* If the offset is negative, we should use encoding A2 for ADR. */
27458 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
27459 newimm = negate_data_op (&temp, value);
27460 else
27461 {
27462 newimm = encode_arm_immediate (value);
27463
27464 /* If the instruction will fail, see if we can fix things up by
27465 changing the opcode. */
27466 if (newimm == (unsigned int) FAIL)
27467 newimm = negate_data_op (&temp, value);
27468 /* MOV accepts both ARM modified immediate (A1 encoding) and
27469 UINT16 (A2 encoding) when possible, MOVW only accepts UINT16.
27470 When disassembling, MOV is preferred when there is no encoding
27471 overlap. */
27472 if (newimm == (unsigned int) FAIL
27473 && ((temp >> DATA_OP_SHIFT) & 0xf) == OPCODE_MOV
27474 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
27475 && !((temp >> SBIT_SHIFT) & 0x1)
27476 && value >= 0 && value <= 0xffff)
27477 {
27478 /* Clear bits[23:20] to change encoding from A1 to A2. */
27479 temp &= 0xff0fffff;
27480 /* Encoding high 4bits imm. Code below will encode the remaining
27481 low 12bits. */
27482 temp |= (value & 0x0000f000) << 4;
27483 newimm = value & 0x00000fff;
27484 }
27485 }
27486
27487 if (newimm == (unsigned int) FAIL)
27488 {
27489 as_bad_where (fixP->fx_file, fixP->fx_line,
27490 _("invalid constant (%lx) after fixup"),
27491 (unsigned long) value);
27492 break;
27493 }
27494
27495 newimm |= (temp & 0xfffff000);
27496 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
27497 break;
27498
27499 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
27500 {
27501 unsigned int highpart = 0;
27502 unsigned int newinsn = 0xe1a00000; /* nop. */
27503
27504 if (fixP->fx_addsy)
27505 {
27506 const char *msg = 0;
27507
27508 if (! S_IS_DEFINED (fixP->fx_addsy))
27509 msg = _("undefined symbol %s used as an immediate value");
27510 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
27511 msg = _("symbol %s is in a different section");
27512 else if (S_IS_WEAK (fixP->fx_addsy))
27513 msg = _("symbol %s is weak and may be overridden later");
27514
27515 if (msg)
27516 {
27517 as_bad_where (fixP->fx_file, fixP->fx_line,
27518 msg, S_GET_NAME (fixP->fx_addsy));
27519 break;
27520 }
27521 }
27522
27523 newimm = encode_arm_immediate (value);
27524 temp = md_chars_to_number (buf, INSN_SIZE);
27525
27526 /* If the instruction will fail, see if we can fix things up by
27527 changing the opcode. */
27528 if (newimm == (unsigned int) FAIL
27529 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
27530 {
27531 /* No ? OK - try using two ADD instructions to generate
27532 the value. */
27533 newimm = validate_immediate_twopart (value, & highpart);
27534
27535 /* Yes - then make sure that the second instruction is
27536 also an add. */
27537 if (newimm != (unsigned int) FAIL)
27538 newinsn = temp;
27539 /* Still No ? Try using a negated value. */
27540 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
27541 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
27542 /* Otherwise - give up. */
27543 else
27544 {
27545 as_bad_where (fixP->fx_file, fixP->fx_line,
27546 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
27547 (long) value);
27548 break;
27549 }
27550
27551 /* Replace the first operand in the 2nd instruction (which
27552 is the PC) with the destination register. We have
27553 already added in the PC in the first instruction and we
27554 do not want to do it again. */
27555 newinsn &= ~ 0xf0000;
27556 newinsn |= ((newinsn & 0x0f000) << 4);
27557 }
27558
27559 newimm |= (temp & 0xfffff000);
27560 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
27561
27562 highpart |= (newinsn & 0xfffff000);
27563 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
27564 }
27565 break;
27566
27567 case BFD_RELOC_ARM_OFFSET_IMM:
27568 if (!fixP->fx_done && seg->use_rela_p)
27569 value = 0;
27570 /* Fall through. */
27571
27572 case BFD_RELOC_ARM_LITERAL:
27573 sign = value > 0;
27574
27575 if (value < 0)
27576 value = - value;
27577
27578 if (validate_offset_imm (value, 0) == FAIL)
27579 {
27580 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
27581 as_bad_where (fixP->fx_file, fixP->fx_line,
27582 _("invalid literal constant: pool needs to be closer"));
27583 else
27584 as_bad_where (fixP->fx_file, fixP->fx_line,
27585 _("bad immediate value for offset (%ld)"),
27586 (long) value);
27587 break;
27588 }
27589
27590 newval = md_chars_to_number (buf, INSN_SIZE);
27591 if (value == 0)
27592 newval &= 0xfffff000;
27593 else
27594 {
27595 newval &= 0xff7ff000;
27596 newval |= value | (sign ? INDEX_UP : 0);
27597 }
27598 md_number_to_chars (buf, newval, INSN_SIZE);
27599 break;
27600
27601 case BFD_RELOC_ARM_OFFSET_IMM8:
27602 case BFD_RELOC_ARM_HWLITERAL:
27603 sign = value > 0;
27604
27605 if (value < 0)
27606 value = - value;
27607
27608 if (validate_offset_imm (value, 1) == FAIL)
27609 {
27610 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
27611 as_bad_where (fixP->fx_file, fixP->fx_line,
27612 _("invalid literal constant: pool needs to be closer"));
27613 else
27614 as_bad_where (fixP->fx_file, fixP->fx_line,
27615 _("bad immediate value for 8-bit offset (%ld)"),
27616 (long) value);
27617 break;
27618 }
27619
27620 newval = md_chars_to_number (buf, INSN_SIZE);
27621 if (value == 0)
27622 newval &= 0xfffff0f0;
27623 else
27624 {
27625 newval &= 0xff7ff0f0;
27626 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
27627 }
27628 md_number_to_chars (buf, newval, INSN_SIZE);
27629 break;
27630
27631 case BFD_RELOC_ARM_T32_OFFSET_U8:
27632 if (value < 0 || value > 1020 || value % 4 != 0)
27633 as_bad_where (fixP->fx_file, fixP->fx_line,
27634 _("bad immediate value for offset (%ld)"), (long) value);
27635 value /= 4;
27636
27637 newval = md_chars_to_number (buf+2, THUMB_SIZE);
27638 newval |= value;
27639 md_number_to_chars (buf+2, newval, THUMB_SIZE);
27640 break;
27641
27642 case BFD_RELOC_ARM_T32_OFFSET_IMM:
27643 /* This is a complicated relocation used for all varieties of Thumb32
27644 load/store instruction with immediate offset:
27645
27646 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
27647 *4, optional writeback(W)
27648 (doubleword load/store)
27649
27650 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
27651 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
27652 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
27653 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
27654 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
27655
27656 Uppercase letters indicate bits that are already encoded at
27657 this point. Lowercase letters are our problem. For the
27658 second block of instructions, the secondary opcode nybble
27659 (bits 8..11) is present, and bit 23 is zero, even if this is
27660 a PC-relative operation. */
27661 newval = md_chars_to_number (buf, THUMB_SIZE);
27662 newval <<= 16;
27663 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
27664
27665 if ((newval & 0xf0000000) == 0xe0000000)
27666 {
27667 /* Doubleword load/store: 8-bit offset, scaled by 4. */
27668 if (value >= 0)
27669 newval |= (1 << 23);
27670 else
27671 value = -value;
27672 if (value % 4 != 0)
27673 {
27674 as_bad_where (fixP->fx_file, fixP->fx_line,
27675 _("offset not a multiple of 4"));
27676 break;
27677 }
27678 value /= 4;
27679 if (value > 0xff)
27680 {
27681 as_bad_where (fixP->fx_file, fixP->fx_line,
27682 _("offset out of range"));
27683 break;
27684 }
27685 newval &= ~0xff;
27686 }
27687 else if ((newval & 0x000f0000) == 0x000f0000)
27688 {
27689 /* PC-relative, 12-bit offset. */
27690 if (value >= 0)
27691 newval |= (1 << 23);
27692 else
27693 value = -value;
27694 if (value > 0xfff)
27695 {
27696 as_bad_where (fixP->fx_file, fixP->fx_line,
27697 _("offset out of range"));
27698 break;
27699 }
27700 newval &= ~0xfff;
27701 }
27702 else if ((newval & 0x00000100) == 0x00000100)
27703 {
27704 /* Writeback: 8-bit, +/- offset. */
27705 if (value >= 0)
27706 newval |= (1 << 9);
27707 else
27708 value = -value;
27709 if (value > 0xff)
27710 {
27711 as_bad_where (fixP->fx_file, fixP->fx_line,
27712 _("offset out of range"));
27713 break;
27714 }
27715 newval &= ~0xff;
27716 }
27717 else if ((newval & 0x00000f00) == 0x00000e00)
27718 {
27719 /* T-instruction: positive 8-bit offset. */
27720 if (value < 0 || value > 0xff)
27721 {
27722 as_bad_where (fixP->fx_file, fixP->fx_line,
27723 _("offset out of range"));
27724 break;
27725 }
27726 newval &= ~0xff;
27727 newval |= value;
27728 }
27729 else
27730 {
27731 /* Positive 12-bit or negative 8-bit offset. */
27732 int limit;
27733 if (value >= 0)
27734 {
27735 newval |= (1 << 23);
27736 limit = 0xfff;
27737 }
27738 else
27739 {
27740 value = -value;
27741 limit = 0xff;
27742 }
27743 if (value > limit)
27744 {
27745 as_bad_where (fixP->fx_file, fixP->fx_line,
27746 _("offset out of range"));
27747 break;
27748 }
27749 newval &= ~limit;
27750 }
27751
27752 newval |= value;
27753 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
27754 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
27755 break;
27756
27757 case BFD_RELOC_ARM_SHIFT_IMM:
27758 newval = md_chars_to_number (buf, INSN_SIZE);
27759 if (((unsigned long) value) > 32
27760 || (value == 32
27761 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
27762 {
27763 as_bad_where (fixP->fx_file, fixP->fx_line,
27764 _("shift expression is too large"));
27765 break;
27766 }
27767
27768 if (value == 0)
27769 /* Shifts of zero must be done as lsl. */
27770 newval &= ~0x60;
27771 else if (value == 32)
27772 value = 0;
27773 newval &= 0xfffff07f;
27774 newval |= (value & 0x1f) << 7;
27775 md_number_to_chars (buf, newval, INSN_SIZE);
27776 break;
27777
27778 case BFD_RELOC_ARM_T32_IMMEDIATE:
27779 case BFD_RELOC_ARM_T32_ADD_IMM:
27780 case BFD_RELOC_ARM_T32_IMM12:
27781 case BFD_RELOC_ARM_T32_ADD_PC12:
27782 /* We claim that this fixup has been processed here,
27783 even if in fact we generate an error because we do
27784 not have a reloc for it, so tc_gen_reloc will reject it. */
27785 fixP->fx_done = 1;
27786
27787 if (fixP->fx_addsy
27788 && ! S_IS_DEFINED (fixP->fx_addsy))
27789 {
27790 as_bad_where (fixP->fx_file, fixP->fx_line,
27791 _("undefined symbol %s used as an immediate value"),
27792 S_GET_NAME (fixP->fx_addsy));
27793 break;
27794 }
27795
27796 newval = md_chars_to_number (buf, THUMB_SIZE);
27797 newval <<= 16;
27798 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
27799
27800 newimm = FAIL;
27801 if ((fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
27802 /* ARMv8-M Baseline MOV will reach here, but it doesn't support
27803 Thumb2 modified immediate encoding (T2). */
27804 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
27805 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
27806 {
27807 newimm = encode_thumb32_immediate (value);
27808 if (newimm == (unsigned int) FAIL)
27809 newimm = thumb32_negate_data_op (&newval, value);
27810 }
27811 if (newimm == (unsigned int) FAIL)
27812 {
27813 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE)
27814 {
27815 /* Turn add/sum into addw/subw. */
27816 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
27817 newval = (newval & 0xfeffffff) | 0x02000000;
27818 /* No flat 12-bit imm encoding for addsw/subsw. */
27819 if ((newval & 0x00100000) == 0)
27820 {
27821 /* 12 bit immediate for addw/subw. */
27822 if (value < 0)
27823 {
27824 value = -value;
27825 newval ^= 0x00a00000;
27826 }
27827 if (value > 0xfff)
27828 newimm = (unsigned int) FAIL;
27829 else
27830 newimm = value;
27831 }
27832 }
27833 else
27834 {
27835 /* MOV accepts both Thumb2 modified immediate (T2 encoding) and
27836 UINT16 (T3 encoding), MOVW only accepts UINT16. When
27837 disassembling, MOV is preferred when there is no encoding
27838 overlap. */
27839 if (((newval >> T2_DATA_OP_SHIFT) & 0xf) == T2_OPCODE_ORR
27840 /* NOTE: MOV uses the ORR opcode in Thumb 2 mode
27841 but with the Rn field [19:16] set to 1111. */
27842 && (((newval >> 16) & 0xf) == 0xf)
27843 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m)
27844 && !((newval >> T2_SBIT_SHIFT) & 0x1)
27845 && value >= 0 && value <= 0xffff)
27846 {
27847 /* Toggle bit[25] to change encoding from T2 to T3. */
27848 newval ^= 1 << 25;
27849 /* Clear bits[19:16]. */
27850 newval &= 0xfff0ffff;
27851 /* Encoding high 4bits imm. Code below will encode the
27852 remaining low 12bits. */
27853 newval |= (value & 0x0000f000) << 4;
27854 newimm = value & 0x00000fff;
27855 }
27856 }
27857 }
27858
27859 if (newimm == (unsigned int)FAIL)
27860 {
27861 as_bad_where (fixP->fx_file, fixP->fx_line,
27862 _("invalid constant (%lx) after fixup"),
27863 (unsigned long) value);
27864 break;
27865 }
27866
27867 newval |= (newimm & 0x800) << 15;
27868 newval |= (newimm & 0x700) << 4;
27869 newval |= (newimm & 0x0ff);
27870
27871 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
27872 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
27873 break;
27874
27875 case BFD_RELOC_ARM_SMC:
27876 if (((unsigned long) value) > 0xf)
27877 as_bad_where (fixP->fx_file, fixP->fx_line,
27878 _("invalid smc expression"));
27879
27880 newval = md_chars_to_number (buf, INSN_SIZE);
27881 newval |= (value & 0xf);
27882 md_number_to_chars (buf, newval, INSN_SIZE);
27883 break;
27884
27885 case BFD_RELOC_ARM_HVC:
27886 if (((unsigned long) value) > 0xffff)
27887 as_bad_where (fixP->fx_file, fixP->fx_line,
27888 _("invalid hvc expression"));
27889 newval = md_chars_to_number (buf, INSN_SIZE);
27890 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
27891 md_number_to_chars (buf, newval, INSN_SIZE);
27892 break;
27893
27894 case BFD_RELOC_ARM_SWI:
27895 if (fixP->tc_fix_data != 0)
27896 {
27897 if (((unsigned long) value) > 0xff)
27898 as_bad_where (fixP->fx_file, fixP->fx_line,
27899 _("invalid swi expression"));
27900 newval = md_chars_to_number (buf, THUMB_SIZE);
27901 newval |= value;
27902 md_number_to_chars (buf, newval, THUMB_SIZE);
27903 }
27904 else
27905 {
27906 if (((unsigned long) value) > 0x00ffffff)
27907 as_bad_where (fixP->fx_file, fixP->fx_line,
27908 _("invalid swi expression"));
27909 newval = md_chars_to_number (buf, INSN_SIZE);
27910 newval |= value;
27911 md_number_to_chars (buf, newval, INSN_SIZE);
27912 }
27913 break;
27914
27915 case BFD_RELOC_ARM_MULTI:
27916 if (((unsigned long) value) > 0xffff)
27917 as_bad_where (fixP->fx_file, fixP->fx_line,
27918 _("invalid expression in load/store multiple"));
27919 newval = value | md_chars_to_number (buf, INSN_SIZE);
27920 md_number_to_chars (buf, newval, INSN_SIZE);
27921 break;
27922
27923 #ifdef OBJ_ELF
27924 case BFD_RELOC_ARM_PCREL_CALL:
27925
27926 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
27927 && fixP->fx_addsy
27928 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27929 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27930 && THUMB_IS_FUNC (fixP->fx_addsy))
27931 /* Flip the bl to blx. This is a simple flip
27932 bit here because we generate PCREL_CALL for
27933 unconditional bls. */
27934 {
27935 newval = md_chars_to_number (buf, INSN_SIZE);
27936 newval = newval | 0x10000000;
27937 md_number_to_chars (buf, newval, INSN_SIZE);
27938 temp = 1;
27939 fixP->fx_done = 1;
27940 }
27941 else
27942 temp = 3;
27943 goto arm_branch_common;
27944
27945 case BFD_RELOC_ARM_PCREL_JUMP:
27946 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
27947 && fixP->fx_addsy
27948 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27949 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27950 && THUMB_IS_FUNC (fixP->fx_addsy))
27951 {
27952 /* This would map to a bl<cond>, b<cond>,
27953 b<always> to a Thumb function. We
27954 need to force a relocation for this particular
27955 case. */
27956 newval = md_chars_to_number (buf, INSN_SIZE);
27957 fixP->fx_done = 0;
27958 }
27959 /* Fall through. */
27960
27961 case BFD_RELOC_ARM_PLT32:
27962 #endif
27963 case BFD_RELOC_ARM_PCREL_BRANCH:
27964 temp = 3;
27965 goto arm_branch_common;
27966
27967 case BFD_RELOC_ARM_PCREL_BLX:
27968
27969 temp = 1;
27970 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
27971 && fixP->fx_addsy
27972 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27973 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27974 && ARM_IS_FUNC (fixP->fx_addsy))
27975 {
27976 /* Flip the blx to a bl and warn. */
27977 const char *name = S_GET_NAME (fixP->fx_addsy);
27978 newval = 0xeb000000;
27979 as_warn_where (fixP->fx_file, fixP->fx_line,
27980 _("blx to '%s' an ARM ISA state function changed to bl"),
27981 name);
27982 md_number_to_chars (buf, newval, INSN_SIZE);
27983 temp = 3;
27984 fixP->fx_done = 1;
27985 }
27986
27987 #ifdef OBJ_ELF
27988 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
27989 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
27990 #endif
27991
27992 arm_branch_common:
27993 /* We are going to store value (shifted right by two) in the
27994 instruction, in a 24 bit, signed field. Bits 26 through 32 either
27995 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
27996 also be clear. */
27997 if (value & temp)
27998 as_bad_where (fixP->fx_file, fixP->fx_line,
27999 _("misaligned branch destination"));
28000 if ((value & (offsetT)0xfe000000) != (offsetT)0
28001 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
28002 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28003
28004 if (fixP->fx_done || !seg->use_rela_p)
28005 {
28006 newval = md_chars_to_number (buf, INSN_SIZE);
28007 newval |= (value >> 2) & 0x00ffffff;
28008 /* Set the H bit on BLX instructions. */
28009 if (temp == 1)
28010 {
28011 if (value & 2)
28012 newval |= 0x01000000;
28013 else
28014 newval &= ~0x01000000;
28015 }
28016 md_number_to_chars (buf, newval, INSN_SIZE);
28017 }
28018 break;
28019
28020 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
28021 /* CBZ can only branch forward. */
28022
28023 /* Attempts to use CBZ to branch to the next instruction
28024 (which, strictly speaking, are prohibited) will be turned into
28025 no-ops.
28026
28027 FIXME: It may be better to remove the instruction completely and
28028 perform relaxation. */
28029 if (value == -2)
28030 {
28031 newval = md_chars_to_number (buf, THUMB_SIZE);
28032 newval = 0xbf00; /* NOP encoding T1 */
28033 md_number_to_chars (buf, newval, THUMB_SIZE);
28034 }
28035 else
28036 {
28037 if (value & ~0x7e)
28038 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28039
28040 if (fixP->fx_done || !seg->use_rela_p)
28041 {
28042 newval = md_chars_to_number (buf, THUMB_SIZE);
28043 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
28044 md_number_to_chars (buf, newval, THUMB_SIZE);
28045 }
28046 }
28047 break;
28048
28049 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
28050 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
28051 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28052
28053 if (fixP->fx_done || !seg->use_rela_p)
28054 {
28055 newval = md_chars_to_number (buf, THUMB_SIZE);
28056 newval |= (value & 0x1ff) >> 1;
28057 md_number_to_chars (buf, newval, THUMB_SIZE);
28058 }
28059 break;
28060
28061 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
28062 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
28063 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28064
28065 if (fixP->fx_done || !seg->use_rela_p)
28066 {
28067 newval = md_chars_to_number (buf, THUMB_SIZE);
28068 newval |= (value & 0xfff) >> 1;
28069 md_number_to_chars (buf, newval, THUMB_SIZE);
28070 }
28071 break;
28072
28073 case BFD_RELOC_THUMB_PCREL_BRANCH20:
28074 if (fixP->fx_addsy
28075 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28076 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28077 && ARM_IS_FUNC (fixP->fx_addsy)
28078 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
28079 {
28080 /* Force a relocation for a branch 20 bits wide. */
28081 fixP->fx_done = 0;
28082 }
28083 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
28084 as_bad_where (fixP->fx_file, fixP->fx_line,
28085 _("conditional branch out of range"));
28086
28087 if (fixP->fx_done || !seg->use_rela_p)
28088 {
28089 offsetT newval2;
28090 addressT S, J1, J2, lo, hi;
28091
28092 S = (value & 0x00100000) >> 20;
28093 J2 = (value & 0x00080000) >> 19;
28094 J1 = (value & 0x00040000) >> 18;
28095 hi = (value & 0x0003f000) >> 12;
28096 lo = (value & 0x00000ffe) >> 1;
28097
28098 newval = md_chars_to_number (buf, THUMB_SIZE);
28099 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28100 newval |= (S << 10) | hi;
28101 newval2 |= (J1 << 13) | (J2 << 11) | lo;
28102 md_number_to_chars (buf, newval, THUMB_SIZE);
28103 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
28104 }
28105 break;
28106
28107 case BFD_RELOC_THUMB_PCREL_BLX:
28108 /* If there is a blx from a thumb state function to
28109 another thumb function flip this to a bl and warn
28110 about it. */
28111
28112 if (fixP->fx_addsy
28113 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28114 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28115 && THUMB_IS_FUNC (fixP->fx_addsy))
28116 {
28117 const char *name = S_GET_NAME (fixP->fx_addsy);
28118 as_warn_where (fixP->fx_file, fixP->fx_line,
28119 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
28120 name);
28121 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28122 newval = newval | 0x1000;
28123 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
28124 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
28125 fixP->fx_done = 1;
28126 }
28127
28128
28129 goto thumb_bl_common;
28130
28131 case BFD_RELOC_THUMB_PCREL_BRANCH23:
28132 /* A bl from Thumb state ISA to an internal ARM state function
28133 is converted to a blx. */
28134 if (fixP->fx_addsy
28135 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28136 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28137 && ARM_IS_FUNC (fixP->fx_addsy)
28138 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
28139 {
28140 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28141 newval = newval & ~0x1000;
28142 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
28143 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
28144 fixP->fx_done = 1;
28145 }
28146
28147 thumb_bl_common:
28148
28149 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
28150 /* For a BLX instruction, make sure that the relocation is rounded up
28151 to a word boundary. This follows the semantics of the instruction
28152 which specifies that bit 1 of the target address will come from bit
28153 1 of the base address. */
28154 value = (value + 3) & ~ 3;
28155
28156 #ifdef OBJ_ELF
28157 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
28158 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
28159 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
28160 #endif
28161
28162 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
28163 {
28164 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)))
28165 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28166 else if ((value & ~0x1ffffff)
28167 && ((value & ~0x1ffffff) != ~0x1ffffff))
28168 as_bad_where (fixP->fx_file, fixP->fx_line,
28169 _("Thumb2 branch out of range"));
28170 }
28171
28172 if (fixP->fx_done || !seg->use_rela_p)
28173 encode_thumb2_b_bl_offset (buf, value);
28174
28175 break;
28176
28177 case BFD_RELOC_THUMB_PCREL_BRANCH25:
28178 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
28179 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28180
28181 if (fixP->fx_done || !seg->use_rela_p)
28182 encode_thumb2_b_bl_offset (buf, value);
28183
28184 break;
28185
28186 case BFD_RELOC_8:
28187 if (fixP->fx_done || !seg->use_rela_p)
28188 *buf = value;
28189 break;
28190
28191 case BFD_RELOC_16:
28192 if (fixP->fx_done || !seg->use_rela_p)
28193 md_number_to_chars (buf, value, 2);
28194 break;
28195
28196 #ifdef OBJ_ELF
28197 case BFD_RELOC_ARM_TLS_CALL:
28198 case BFD_RELOC_ARM_THM_TLS_CALL:
28199 case BFD_RELOC_ARM_TLS_DESCSEQ:
28200 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
28201 case BFD_RELOC_ARM_TLS_GOTDESC:
28202 case BFD_RELOC_ARM_TLS_GD32:
28203 case BFD_RELOC_ARM_TLS_LE32:
28204 case BFD_RELOC_ARM_TLS_IE32:
28205 case BFD_RELOC_ARM_TLS_LDM32:
28206 case BFD_RELOC_ARM_TLS_LDO32:
28207 S_SET_THREAD_LOCAL (fixP->fx_addsy);
28208 break;
28209
28210 /* Same handling as above, but with the arm_fdpic guard. */
28211 case BFD_RELOC_ARM_TLS_GD32_FDPIC:
28212 case BFD_RELOC_ARM_TLS_IE32_FDPIC:
28213 case BFD_RELOC_ARM_TLS_LDM32_FDPIC:
28214 if (arm_fdpic)
28215 {
28216 S_SET_THREAD_LOCAL (fixP->fx_addsy);
28217 }
28218 else
28219 {
28220 as_bad_where (fixP->fx_file, fixP->fx_line,
28221 _("Relocation supported only in FDPIC mode"));
28222 }
28223 break;
28224
28225 case BFD_RELOC_ARM_GOT32:
28226 case BFD_RELOC_ARM_GOTOFF:
28227 break;
28228
28229 case BFD_RELOC_ARM_GOT_PREL:
28230 if (fixP->fx_done || !seg->use_rela_p)
28231 md_number_to_chars (buf, value, 4);
28232 break;
28233
28234 case BFD_RELOC_ARM_TARGET2:
28235 /* TARGET2 is not partial-inplace, so we need to write the
28236 addend here for REL targets, because it won't be written out
28237 during reloc processing later. */
28238 if (fixP->fx_done || !seg->use_rela_p)
28239 md_number_to_chars (buf, fixP->fx_offset, 4);
28240 break;
28241
28242 /* Relocations for FDPIC. */
28243 case BFD_RELOC_ARM_GOTFUNCDESC:
28244 case BFD_RELOC_ARM_GOTOFFFUNCDESC:
28245 case BFD_RELOC_ARM_FUNCDESC:
28246 if (arm_fdpic)
28247 {
28248 if (fixP->fx_done || !seg->use_rela_p)
28249 md_number_to_chars (buf, 0, 4);
28250 }
28251 else
28252 {
28253 as_bad_where (fixP->fx_file, fixP->fx_line,
28254 _("Relocation supported only in FDPIC mode"));
28255 }
28256 break;
28257 #endif
28258
28259 case BFD_RELOC_RVA:
28260 case BFD_RELOC_32:
28261 case BFD_RELOC_ARM_TARGET1:
28262 case BFD_RELOC_ARM_ROSEGREL32:
28263 case BFD_RELOC_ARM_SBREL32:
28264 case BFD_RELOC_32_PCREL:
28265 #ifdef TE_PE
28266 case BFD_RELOC_32_SECREL:
28267 #endif
28268 if (fixP->fx_done || !seg->use_rela_p)
28269 #ifdef TE_WINCE
28270 /* For WinCE we only do this for pcrel fixups. */
28271 if (fixP->fx_done || fixP->fx_pcrel)
28272 #endif
28273 md_number_to_chars (buf, value, 4);
28274 break;
28275
28276 #ifdef OBJ_ELF
28277 case BFD_RELOC_ARM_PREL31:
28278 if (fixP->fx_done || !seg->use_rela_p)
28279 {
28280 newval = md_chars_to_number (buf, 4) & 0x80000000;
28281 if ((value ^ (value >> 1)) & 0x40000000)
28282 {
28283 as_bad_where (fixP->fx_file, fixP->fx_line,
28284 _("rel31 relocation overflow"));
28285 }
28286 newval |= value & 0x7fffffff;
28287 md_number_to_chars (buf, newval, 4);
28288 }
28289 break;
28290 #endif
28291
28292 case BFD_RELOC_ARM_CP_OFF_IMM:
28293 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
28294 case BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM:
28295 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM)
28296 newval = md_chars_to_number (buf, INSN_SIZE);
28297 else
28298 newval = get_thumb32_insn (buf);
28299 if ((newval & 0x0f200f00) == 0x0d000900)
28300 {
28301 /* This is a fp16 vstr/vldr. The immediate offset in the mnemonic
28302 has permitted values that are multiples of 2, in the range 0
28303 to 510. */
28304 if (value < -510 || value > 510 || (value & 1))
28305 as_bad_where (fixP->fx_file, fixP->fx_line,
28306 _("co-processor offset out of range"));
28307 }
28308 else if ((newval & 0xfe001f80) == 0xec000f80)
28309 {
28310 if (value < -511 || value > 512 || (value & 3))
28311 as_bad_where (fixP->fx_file, fixP->fx_line,
28312 _("co-processor offset out of range"));
28313 }
28314 else if (value < -1023 || value > 1023 || (value & 3))
28315 as_bad_where (fixP->fx_file, fixP->fx_line,
28316 _("co-processor offset out of range"));
28317 cp_off_common:
28318 sign = value > 0;
28319 if (value < 0)
28320 value = -value;
28321 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
28322 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
28323 newval = md_chars_to_number (buf, INSN_SIZE);
28324 else
28325 newval = get_thumb32_insn (buf);
28326 if (value == 0)
28327 {
28328 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM)
28329 newval &= 0xffffff80;
28330 else
28331 newval &= 0xffffff00;
28332 }
28333 else
28334 {
28335 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM)
28336 newval &= 0xff7fff80;
28337 else
28338 newval &= 0xff7fff00;
28339 if ((newval & 0x0f200f00) == 0x0d000900)
28340 {
28341 /* This is a fp16 vstr/vldr.
28342
28343 It requires the immediate offset in the instruction is shifted
28344 left by 1 to be a half-word offset.
28345
28346 Here, left shift by 1 first, and later right shift by 2
28347 should get the right offset. */
28348 value <<= 1;
28349 }
28350 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
28351 }
28352 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
28353 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
28354 md_number_to_chars (buf, newval, INSN_SIZE);
28355 else
28356 put_thumb32_insn (buf, newval);
28357 break;
28358
28359 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
28360 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
28361 if (value < -255 || value > 255)
28362 as_bad_where (fixP->fx_file, fixP->fx_line,
28363 _("co-processor offset out of range"));
28364 value *= 4;
28365 goto cp_off_common;
28366
28367 case BFD_RELOC_ARM_THUMB_OFFSET:
28368 newval = md_chars_to_number (buf, THUMB_SIZE);
28369 /* Exactly what ranges, and where the offset is inserted depends
28370 on the type of instruction, we can establish this from the
28371 top 4 bits. */
28372 switch (newval >> 12)
28373 {
28374 case 4: /* PC load. */
28375 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
28376 forced to zero for these loads; md_pcrel_from has already
28377 compensated for this. */
28378 if (value & 3)
28379 as_bad_where (fixP->fx_file, fixP->fx_line,
28380 _("invalid offset, target not word aligned (0x%08lX)"),
28381 (((unsigned long) fixP->fx_frag->fr_address
28382 + (unsigned long) fixP->fx_where) & ~3)
28383 + (unsigned long) value);
28384
28385 if (value & ~0x3fc)
28386 as_bad_where (fixP->fx_file, fixP->fx_line,
28387 _("invalid offset, value too big (0x%08lX)"),
28388 (long) value);
28389
28390 newval |= value >> 2;
28391 break;
28392
28393 case 9: /* SP load/store. */
28394 if (value & ~0x3fc)
28395 as_bad_where (fixP->fx_file, fixP->fx_line,
28396 _("invalid offset, value too big (0x%08lX)"),
28397 (long) value);
28398 newval |= value >> 2;
28399 break;
28400
28401 case 6: /* Word load/store. */
28402 if (value & ~0x7c)
28403 as_bad_where (fixP->fx_file, fixP->fx_line,
28404 _("invalid offset, value too big (0x%08lX)"),
28405 (long) value);
28406 newval |= value << 4; /* 6 - 2. */
28407 break;
28408
28409 case 7: /* Byte load/store. */
28410 if (value & ~0x1f)
28411 as_bad_where (fixP->fx_file, fixP->fx_line,
28412 _("invalid offset, value too big (0x%08lX)"),
28413 (long) value);
28414 newval |= value << 6;
28415 break;
28416
28417 case 8: /* Halfword load/store. */
28418 if (value & ~0x3e)
28419 as_bad_where (fixP->fx_file, fixP->fx_line,
28420 _("invalid offset, value too big (0x%08lX)"),
28421 (long) value);
28422 newval |= value << 5; /* 6 - 1. */
28423 break;
28424
28425 default:
28426 as_bad_where (fixP->fx_file, fixP->fx_line,
28427 "Unable to process relocation for thumb opcode: %lx",
28428 (unsigned long) newval);
28429 break;
28430 }
28431 md_number_to_chars (buf, newval, THUMB_SIZE);
28432 break;
28433
28434 case BFD_RELOC_ARM_THUMB_ADD:
28435 /* This is a complicated relocation, since we use it for all of
28436 the following immediate relocations:
28437
28438 3bit ADD/SUB
28439 8bit ADD/SUB
28440 9bit ADD/SUB SP word-aligned
28441 10bit ADD PC/SP word-aligned
28442
28443 The type of instruction being processed is encoded in the
28444 instruction field:
28445
28446 0x8000 SUB
28447 0x00F0 Rd
28448 0x000F Rs
28449 */
28450 newval = md_chars_to_number (buf, THUMB_SIZE);
28451 {
28452 int rd = (newval >> 4) & 0xf;
28453 int rs = newval & 0xf;
28454 int subtract = !!(newval & 0x8000);
28455
28456 /* Check for HI regs, only very restricted cases allowed:
28457 Adjusting SP, and using PC or SP to get an address. */
28458 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
28459 || (rs > 7 && rs != REG_SP && rs != REG_PC))
28460 as_bad_where (fixP->fx_file, fixP->fx_line,
28461 _("invalid Hi register with immediate"));
28462
28463 /* If value is negative, choose the opposite instruction. */
28464 if (value < 0)
28465 {
28466 value = -value;
28467 subtract = !subtract;
28468 if (value < 0)
28469 as_bad_where (fixP->fx_file, fixP->fx_line,
28470 _("immediate value out of range"));
28471 }
28472
28473 if (rd == REG_SP)
28474 {
28475 if (value & ~0x1fc)
28476 as_bad_where (fixP->fx_file, fixP->fx_line,
28477 _("invalid immediate for stack address calculation"));
28478 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
28479 newval |= value >> 2;
28480 }
28481 else if (rs == REG_PC || rs == REG_SP)
28482 {
28483 /* PR gas/18541. If the addition is for a defined symbol
28484 within range of an ADR instruction then accept it. */
28485 if (subtract
28486 && value == 4
28487 && fixP->fx_addsy != NULL)
28488 {
28489 subtract = 0;
28490
28491 if (! S_IS_DEFINED (fixP->fx_addsy)
28492 || S_GET_SEGMENT (fixP->fx_addsy) != seg
28493 || S_IS_WEAK (fixP->fx_addsy))
28494 {
28495 as_bad_where (fixP->fx_file, fixP->fx_line,
28496 _("address calculation needs a strongly defined nearby symbol"));
28497 }
28498 else
28499 {
28500 offsetT v = fixP->fx_where + fixP->fx_frag->fr_address;
28501
28502 /* Round up to the next 4-byte boundary. */
28503 if (v & 3)
28504 v = (v + 3) & ~ 3;
28505 else
28506 v += 4;
28507 v = S_GET_VALUE (fixP->fx_addsy) - v;
28508
28509 if (v & ~0x3fc)
28510 {
28511 as_bad_where (fixP->fx_file, fixP->fx_line,
28512 _("symbol too far away"));
28513 }
28514 else
28515 {
28516 fixP->fx_done = 1;
28517 value = v;
28518 }
28519 }
28520 }
28521
28522 if (subtract || value & ~0x3fc)
28523 as_bad_where (fixP->fx_file, fixP->fx_line,
28524 _("invalid immediate for address calculation (value = 0x%08lX)"),
28525 (unsigned long) (subtract ? - value : value));
28526 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
28527 newval |= rd << 8;
28528 newval |= value >> 2;
28529 }
28530 else if (rs == rd)
28531 {
28532 if (value & ~0xff)
28533 as_bad_where (fixP->fx_file, fixP->fx_line,
28534 _("immediate value out of range"));
28535 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
28536 newval |= (rd << 8) | value;
28537 }
28538 else
28539 {
28540 if (value & ~0x7)
28541 as_bad_where (fixP->fx_file, fixP->fx_line,
28542 _("immediate value out of range"));
28543 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
28544 newval |= rd | (rs << 3) | (value << 6);
28545 }
28546 }
28547 md_number_to_chars (buf, newval, THUMB_SIZE);
28548 break;
28549
28550 case BFD_RELOC_ARM_THUMB_IMM:
28551 newval = md_chars_to_number (buf, THUMB_SIZE);
28552 if (value < 0 || value > 255)
28553 as_bad_where (fixP->fx_file, fixP->fx_line,
28554 _("invalid immediate: %ld is out of range"),
28555 (long) value);
28556 newval |= value;
28557 md_number_to_chars (buf, newval, THUMB_SIZE);
28558 break;
28559
28560 case BFD_RELOC_ARM_THUMB_SHIFT:
28561 /* 5bit shift value (0..32). LSL cannot take 32. */
28562 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
28563 temp = newval & 0xf800;
28564 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
28565 as_bad_where (fixP->fx_file, fixP->fx_line,
28566 _("invalid shift value: %ld"), (long) value);
28567 /* Shifts of zero must be encoded as LSL. */
28568 if (value == 0)
28569 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
28570 /* Shifts of 32 are encoded as zero. */
28571 else if (value == 32)
28572 value = 0;
28573 newval |= value << 6;
28574 md_number_to_chars (buf, newval, THUMB_SIZE);
28575 break;
28576
28577 case BFD_RELOC_VTABLE_INHERIT:
28578 case BFD_RELOC_VTABLE_ENTRY:
28579 fixP->fx_done = 0;
28580 return;
28581
28582 case BFD_RELOC_ARM_MOVW:
28583 case BFD_RELOC_ARM_MOVT:
28584 case BFD_RELOC_ARM_THUMB_MOVW:
28585 case BFD_RELOC_ARM_THUMB_MOVT:
28586 if (fixP->fx_done || !seg->use_rela_p)
28587 {
28588 /* REL format relocations are limited to a 16-bit addend. */
28589 if (!fixP->fx_done)
28590 {
28591 if (value < -0x8000 || value > 0x7fff)
28592 as_bad_where (fixP->fx_file, fixP->fx_line,
28593 _("offset out of range"));
28594 }
28595 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
28596 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
28597 {
28598 value >>= 16;
28599 }
28600
28601 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
28602 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
28603 {
28604 newval = get_thumb32_insn (buf);
28605 newval &= 0xfbf08f00;
28606 newval |= (value & 0xf000) << 4;
28607 newval |= (value & 0x0800) << 15;
28608 newval |= (value & 0x0700) << 4;
28609 newval |= (value & 0x00ff);
28610 put_thumb32_insn (buf, newval);
28611 }
28612 else
28613 {
28614 newval = md_chars_to_number (buf, 4);
28615 newval &= 0xfff0f000;
28616 newval |= value & 0x0fff;
28617 newval |= (value & 0xf000) << 4;
28618 md_number_to_chars (buf, newval, 4);
28619 }
28620 }
28621 return;
28622
28623 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
28624 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
28625 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
28626 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
28627 gas_assert (!fixP->fx_done);
28628 {
28629 bfd_vma insn;
28630 bfd_boolean is_mov;
28631 bfd_vma encoded_addend = value;
28632
28633 /* Check that addend can be encoded in instruction. */
28634 if (!seg->use_rela_p && (value < 0 || value > 255))
28635 as_bad_where (fixP->fx_file, fixP->fx_line,
28636 _("the offset 0x%08lX is not representable"),
28637 (unsigned long) encoded_addend);
28638
28639 /* Extract the instruction. */
28640 insn = md_chars_to_number (buf, THUMB_SIZE);
28641 is_mov = (insn & 0xf800) == 0x2000;
28642
28643 /* Encode insn. */
28644 if (is_mov)
28645 {
28646 if (!seg->use_rela_p)
28647 insn |= encoded_addend;
28648 }
28649 else
28650 {
28651 int rd, rs;
28652
28653 /* Extract the instruction. */
28654 /* Encoding is the following
28655 0x8000 SUB
28656 0x00F0 Rd
28657 0x000F Rs
28658 */
28659 /* The following conditions must be true :
28660 - ADD
28661 - Rd == Rs
28662 - Rd <= 7
28663 */
28664 rd = (insn >> 4) & 0xf;
28665 rs = insn & 0xf;
28666 if ((insn & 0x8000) || (rd != rs) || rd > 7)
28667 as_bad_where (fixP->fx_file, fixP->fx_line,
28668 _("Unable to process relocation for thumb opcode: %lx"),
28669 (unsigned long) insn);
28670
28671 /* Encode as ADD immediate8 thumb 1 code. */
28672 insn = 0x3000 | (rd << 8);
28673
28674 /* Place the encoded addend into the first 8 bits of the
28675 instruction. */
28676 if (!seg->use_rela_p)
28677 insn |= encoded_addend;
28678 }
28679
28680 /* Update the instruction. */
28681 md_number_to_chars (buf, insn, THUMB_SIZE);
28682 }
28683 break;
28684
28685 case BFD_RELOC_ARM_ALU_PC_G0_NC:
28686 case BFD_RELOC_ARM_ALU_PC_G0:
28687 case BFD_RELOC_ARM_ALU_PC_G1_NC:
28688 case BFD_RELOC_ARM_ALU_PC_G1:
28689 case BFD_RELOC_ARM_ALU_PC_G2:
28690 case BFD_RELOC_ARM_ALU_SB_G0_NC:
28691 case BFD_RELOC_ARM_ALU_SB_G0:
28692 case BFD_RELOC_ARM_ALU_SB_G1_NC:
28693 case BFD_RELOC_ARM_ALU_SB_G1:
28694 case BFD_RELOC_ARM_ALU_SB_G2:
28695 gas_assert (!fixP->fx_done);
28696 if (!seg->use_rela_p)
28697 {
28698 bfd_vma insn;
28699 bfd_vma encoded_addend;
28700 bfd_vma addend_abs = llabs (value);
28701
28702 /* Check that the absolute value of the addend can be
28703 expressed as an 8-bit constant plus a rotation. */
28704 encoded_addend = encode_arm_immediate (addend_abs);
28705 if (encoded_addend == (unsigned int) FAIL)
28706 as_bad_where (fixP->fx_file, fixP->fx_line,
28707 _("the offset 0x%08lX is not representable"),
28708 (unsigned long) addend_abs);
28709
28710 /* Extract the instruction. */
28711 insn = md_chars_to_number (buf, INSN_SIZE);
28712
28713 /* If the addend is positive, use an ADD instruction.
28714 Otherwise use a SUB. Take care not to destroy the S bit. */
28715 insn &= 0xff1fffff;
28716 if (value < 0)
28717 insn |= 1 << 22;
28718 else
28719 insn |= 1 << 23;
28720
28721 /* Place the encoded addend into the first 12 bits of the
28722 instruction. */
28723 insn &= 0xfffff000;
28724 insn |= encoded_addend;
28725
28726 /* Update the instruction. */
28727 md_number_to_chars (buf, insn, INSN_SIZE);
28728 }
28729 break;
28730
28731 case BFD_RELOC_ARM_LDR_PC_G0:
28732 case BFD_RELOC_ARM_LDR_PC_G1:
28733 case BFD_RELOC_ARM_LDR_PC_G2:
28734 case BFD_RELOC_ARM_LDR_SB_G0:
28735 case BFD_RELOC_ARM_LDR_SB_G1:
28736 case BFD_RELOC_ARM_LDR_SB_G2:
28737 gas_assert (!fixP->fx_done);
28738 if (!seg->use_rela_p)
28739 {
28740 bfd_vma insn;
28741 bfd_vma addend_abs = llabs (value);
28742
28743 /* Check that the absolute value of the addend can be
28744 encoded in 12 bits. */
28745 if (addend_abs >= 0x1000)
28746 as_bad_where (fixP->fx_file, fixP->fx_line,
28747 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
28748 (unsigned long) addend_abs);
28749
28750 /* Extract the instruction. */
28751 insn = md_chars_to_number (buf, INSN_SIZE);
28752
28753 /* If the addend is negative, clear bit 23 of the instruction.
28754 Otherwise set it. */
28755 if (value < 0)
28756 insn &= ~(1 << 23);
28757 else
28758 insn |= 1 << 23;
28759
28760 /* Place the absolute value of the addend into the first 12 bits
28761 of the instruction. */
28762 insn &= 0xfffff000;
28763 insn |= addend_abs;
28764
28765 /* Update the instruction. */
28766 md_number_to_chars (buf, insn, INSN_SIZE);
28767 }
28768 break;
28769
28770 case BFD_RELOC_ARM_LDRS_PC_G0:
28771 case BFD_RELOC_ARM_LDRS_PC_G1:
28772 case BFD_RELOC_ARM_LDRS_PC_G2:
28773 case BFD_RELOC_ARM_LDRS_SB_G0:
28774 case BFD_RELOC_ARM_LDRS_SB_G1:
28775 case BFD_RELOC_ARM_LDRS_SB_G2:
28776 gas_assert (!fixP->fx_done);
28777 if (!seg->use_rela_p)
28778 {
28779 bfd_vma insn;
28780 bfd_vma addend_abs = llabs (value);
28781
28782 /* Check that the absolute value of the addend can be
28783 encoded in 8 bits. */
28784 if (addend_abs >= 0x100)
28785 as_bad_where (fixP->fx_file, fixP->fx_line,
28786 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
28787 (unsigned long) addend_abs);
28788
28789 /* Extract the instruction. */
28790 insn = md_chars_to_number (buf, INSN_SIZE);
28791
28792 /* If the addend is negative, clear bit 23 of the instruction.
28793 Otherwise set it. */
28794 if (value < 0)
28795 insn &= ~(1 << 23);
28796 else
28797 insn |= 1 << 23;
28798
28799 /* Place the first four bits of the absolute value of the addend
28800 into the first 4 bits of the instruction, and the remaining
28801 four into bits 8 .. 11. */
28802 insn &= 0xfffff0f0;
28803 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
28804
28805 /* Update the instruction. */
28806 md_number_to_chars (buf, insn, INSN_SIZE);
28807 }
28808 break;
28809
28810 case BFD_RELOC_ARM_LDC_PC_G0:
28811 case BFD_RELOC_ARM_LDC_PC_G1:
28812 case BFD_RELOC_ARM_LDC_PC_G2:
28813 case BFD_RELOC_ARM_LDC_SB_G0:
28814 case BFD_RELOC_ARM_LDC_SB_G1:
28815 case BFD_RELOC_ARM_LDC_SB_G2:
28816 gas_assert (!fixP->fx_done);
28817 if (!seg->use_rela_p)
28818 {
28819 bfd_vma insn;
28820 bfd_vma addend_abs = llabs (value);
28821
28822 /* Check that the absolute value of the addend is a multiple of
28823 four and, when divided by four, fits in 8 bits. */
28824 if (addend_abs & 0x3)
28825 as_bad_where (fixP->fx_file, fixP->fx_line,
28826 _("bad offset 0x%08lX (must be word-aligned)"),
28827 (unsigned long) addend_abs);
28828
28829 if ((addend_abs >> 2) > 0xff)
28830 as_bad_where (fixP->fx_file, fixP->fx_line,
28831 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
28832 (unsigned long) addend_abs);
28833
28834 /* Extract the instruction. */
28835 insn = md_chars_to_number (buf, INSN_SIZE);
28836
28837 /* If the addend is negative, clear bit 23 of the instruction.
28838 Otherwise set it. */
28839 if (value < 0)
28840 insn &= ~(1 << 23);
28841 else
28842 insn |= 1 << 23;
28843
28844 /* Place the addend (divided by four) into the first eight
28845 bits of the instruction. */
28846 insn &= 0xfffffff0;
28847 insn |= addend_abs >> 2;
28848
28849 /* Update the instruction. */
28850 md_number_to_chars (buf, insn, INSN_SIZE);
28851 }
28852 break;
28853
28854 case BFD_RELOC_THUMB_PCREL_BRANCH5:
28855 if (fixP->fx_addsy
28856 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28857 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28858 && ARM_IS_FUNC (fixP->fx_addsy)
28859 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
28860 {
28861 /* Force a relocation for a branch 5 bits wide. */
28862 fixP->fx_done = 0;
28863 }
28864 if (v8_1_branch_value_check (value, 5, FALSE) == FAIL)
28865 as_bad_where (fixP->fx_file, fixP->fx_line,
28866 BAD_BRANCH_OFF);
28867
28868 if (fixP->fx_done || !seg->use_rela_p)
28869 {
28870 addressT boff = value >> 1;
28871
28872 newval = md_chars_to_number (buf, THUMB_SIZE);
28873 newval |= (boff << 7);
28874 md_number_to_chars (buf, newval, THUMB_SIZE);
28875 }
28876 break;
28877
28878 case BFD_RELOC_THUMB_PCREL_BFCSEL:
28879 if (fixP->fx_addsy
28880 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28881 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28882 && ARM_IS_FUNC (fixP->fx_addsy)
28883 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
28884 {
28885 fixP->fx_done = 0;
28886 }
28887 if ((value & ~0x7f) && ((value & ~0x3f) != ~0x3f))
28888 as_bad_where (fixP->fx_file, fixP->fx_line,
28889 _("branch out of range"));
28890
28891 if (fixP->fx_done || !seg->use_rela_p)
28892 {
28893 newval = md_chars_to_number (buf, THUMB_SIZE);
28894
28895 addressT boff = ((newval & 0x0780) >> 7) << 1;
28896 addressT diff = value - boff;
28897
28898 if (diff == 4)
28899 {
28900 newval |= 1 << 1; /* T bit. */
28901 }
28902 else if (diff != 2)
28903 {
28904 as_bad_where (fixP->fx_file, fixP->fx_line,
28905 _("out of range label-relative fixup value"));
28906 }
28907 md_number_to_chars (buf, newval, THUMB_SIZE);
28908 }
28909 break;
28910
28911 case BFD_RELOC_ARM_THUMB_BF17:
28912 if (fixP->fx_addsy
28913 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28914 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28915 && ARM_IS_FUNC (fixP->fx_addsy)
28916 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
28917 {
28918 /* Force a relocation for a branch 17 bits wide. */
28919 fixP->fx_done = 0;
28920 }
28921
28922 if (v8_1_branch_value_check (value, 17, TRUE) == FAIL)
28923 as_bad_where (fixP->fx_file, fixP->fx_line,
28924 BAD_BRANCH_OFF);
28925
28926 if (fixP->fx_done || !seg->use_rela_p)
28927 {
28928 offsetT newval2;
28929 addressT immA, immB, immC;
28930
28931 immA = (value & 0x0001f000) >> 12;
28932 immB = (value & 0x00000ffc) >> 2;
28933 immC = (value & 0x00000002) >> 1;
28934
28935 newval = md_chars_to_number (buf, THUMB_SIZE);
28936 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28937 newval |= immA;
28938 newval2 |= (immC << 11) | (immB << 1);
28939 md_number_to_chars (buf, newval, THUMB_SIZE);
28940 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
28941 }
28942 break;
28943
28944 case BFD_RELOC_ARM_THUMB_BF19:
28945 if (fixP->fx_addsy
28946 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28947 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28948 && ARM_IS_FUNC (fixP->fx_addsy)
28949 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
28950 {
28951 /* Force a relocation for a branch 19 bits wide. */
28952 fixP->fx_done = 0;
28953 }
28954
28955 if (v8_1_branch_value_check (value, 19, TRUE) == FAIL)
28956 as_bad_where (fixP->fx_file, fixP->fx_line,
28957 BAD_BRANCH_OFF);
28958
28959 if (fixP->fx_done || !seg->use_rela_p)
28960 {
28961 offsetT newval2;
28962 addressT immA, immB, immC;
28963
28964 immA = (value & 0x0007f000) >> 12;
28965 immB = (value & 0x00000ffc) >> 2;
28966 immC = (value & 0x00000002) >> 1;
28967
28968 newval = md_chars_to_number (buf, THUMB_SIZE);
28969 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28970 newval |= immA;
28971 newval2 |= (immC << 11) | (immB << 1);
28972 md_number_to_chars (buf, newval, THUMB_SIZE);
28973 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
28974 }
28975 break;
28976
28977 case BFD_RELOC_ARM_THUMB_BF13:
28978 if (fixP->fx_addsy
28979 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28980 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28981 && ARM_IS_FUNC (fixP->fx_addsy)
28982 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
28983 {
28984 /* Force a relocation for a branch 13 bits wide. */
28985 fixP->fx_done = 0;
28986 }
28987
28988 if (v8_1_branch_value_check (value, 13, TRUE) == FAIL)
28989 as_bad_where (fixP->fx_file, fixP->fx_line,
28990 BAD_BRANCH_OFF);
28991
28992 if (fixP->fx_done || !seg->use_rela_p)
28993 {
28994 offsetT newval2;
28995 addressT immA, immB, immC;
28996
28997 immA = (value & 0x00001000) >> 12;
28998 immB = (value & 0x00000ffc) >> 2;
28999 immC = (value & 0x00000002) >> 1;
29000
29001 newval = md_chars_to_number (buf, THUMB_SIZE);
29002 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29003 newval |= immA;
29004 newval2 |= (immC << 11) | (immB << 1);
29005 md_number_to_chars (buf, newval, THUMB_SIZE);
29006 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
29007 }
29008 break;
29009
29010 case BFD_RELOC_ARM_THUMB_LOOP12:
29011 if (fixP->fx_addsy
29012 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29013 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29014 && ARM_IS_FUNC (fixP->fx_addsy)
29015 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29016 {
29017 /* Force a relocation for a branch 12 bits wide. */
29018 fixP->fx_done = 0;
29019 }
29020
29021 bfd_vma insn = get_thumb32_insn (buf);
29022 /* le lr, <label>, le <label> or letp lr, <label> */
29023 if (((insn & 0xffffffff) == 0xf00fc001)
29024 || ((insn & 0xffffffff) == 0xf02fc001)
29025 || ((insn & 0xffffffff) == 0xf01fc001))
29026 value = -value;
29027
29028 if (v8_1_branch_value_check (value, 12, FALSE) == FAIL)
29029 as_bad_where (fixP->fx_file, fixP->fx_line,
29030 BAD_BRANCH_OFF);
29031 if (fixP->fx_done || !seg->use_rela_p)
29032 {
29033 addressT imml, immh;
29034
29035 immh = (value & 0x00000ffc) >> 2;
29036 imml = (value & 0x00000002) >> 1;
29037
29038 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29039 newval |= (imml << 11) | (immh << 1);
29040 md_number_to_chars (buf + THUMB_SIZE, newval, THUMB_SIZE);
29041 }
29042 break;
29043
29044 case BFD_RELOC_ARM_V4BX:
29045 /* This will need to go in the object file. */
29046 fixP->fx_done = 0;
29047 break;
29048
29049 case BFD_RELOC_UNUSED:
29050 default:
29051 as_bad_where (fixP->fx_file, fixP->fx_line,
29052 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
29053 }
29054 }
29055
29056 /* Translate internal representation of relocation info to BFD target
29057 format. */
29058
29059 arelent *
29060 tc_gen_reloc (asection *section, fixS *fixp)
29061 {
29062 arelent * reloc;
29063 bfd_reloc_code_real_type code;
29064
29065 reloc = XNEW (arelent);
29066
29067 reloc->sym_ptr_ptr = XNEW (asymbol *);
29068 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
29069 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
29070
29071 if (fixp->fx_pcrel)
29072 {
29073 if (section->use_rela_p)
29074 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
29075 else
29076 fixp->fx_offset = reloc->address;
29077 }
29078 reloc->addend = fixp->fx_offset;
29079
29080 switch (fixp->fx_r_type)
29081 {
29082 case BFD_RELOC_8:
29083 if (fixp->fx_pcrel)
29084 {
29085 code = BFD_RELOC_8_PCREL;
29086 break;
29087 }
29088 /* Fall through. */
29089
29090 case BFD_RELOC_16:
29091 if (fixp->fx_pcrel)
29092 {
29093 code = BFD_RELOC_16_PCREL;
29094 break;
29095 }
29096 /* Fall through. */
29097
29098 case BFD_RELOC_32:
29099 if (fixp->fx_pcrel)
29100 {
29101 code = BFD_RELOC_32_PCREL;
29102 break;
29103 }
29104 /* Fall through. */
29105
29106 case BFD_RELOC_ARM_MOVW:
29107 if (fixp->fx_pcrel)
29108 {
29109 code = BFD_RELOC_ARM_MOVW_PCREL;
29110 break;
29111 }
29112 /* Fall through. */
29113
29114 case BFD_RELOC_ARM_MOVT:
29115 if (fixp->fx_pcrel)
29116 {
29117 code = BFD_RELOC_ARM_MOVT_PCREL;
29118 break;
29119 }
29120 /* Fall through. */
29121
29122 case BFD_RELOC_ARM_THUMB_MOVW:
29123 if (fixp->fx_pcrel)
29124 {
29125 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
29126 break;
29127 }
29128 /* Fall through. */
29129
29130 case BFD_RELOC_ARM_THUMB_MOVT:
29131 if (fixp->fx_pcrel)
29132 {
29133 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
29134 break;
29135 }
29136 /* Fall through. */
29137
29138 case BFD_RELOC_NONE:
29139 case BFD_RELOC_ARM_PCREL_BRANCH:
29140 case BFD_RELOC_ARM_PCREL_BLX:
29141 case BFD_RELOC_RVA:
29142 case BFD_RELOC_THUMB_PCREL_BRANCH7:
29143 case BFD_RELOC_THUMB_PCREL_BRANCH9:
29144 case BFD_RELOC_THUMB_PCREL_BRANCH12:
29145 case BFD_RELOC_THUMB_PCREL_BRANCH20:
29146 case BFD_RELOC_THUMB_PCREL_BRANCH23:
29147 case BFD_RELOC_THUMB_PCREL_BRANCH25:
29148 case BFD_RELOC_VTABLE_ENTRY:
29149 case BFD_RELOC_VTABLE_INHERIT:
29150 #ifdef TE_PE
29151 case BFD_RELOC_32_SECREL:
29152 #endif
29153 code = fixp->fx_r_type;
29154 break;
29155
29156 case BFD_RELOC_THUMB_PCREL_BLX:
29157 #ifdef OBJ_ELF
29158 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
29159 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
29160 else
29161 #endif
29162 code = BFD_RELOC_THUMB_PCREL_BLX;
29163 break;
29164
29165 case BFD_RELOC_ARM_LITERAL:
29166 case BFD_RELOC_ARM_HWLITERAL:
29167 /* If this is called then the a literal has
29168 been referenced across a section boundary. */
29169 as_bad_where (fixp->fx_file, fixp->fx_line,
29170 _("literal referenced across section boundary"));
29171 return NULL;
29172
29173 #ifdef OBJ_ELF
29174 case BFD_RELOC_ARM_TLS_CALL:
29175 case BFD_RELOC_ARM_THM_TLS_CALL:
29176 case BFD_RELOC_ARM_TLS_DESCSEQ:
29177 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
29178 case BFD_RELOC_ARM_GOT32:
29179 case BFD_RELOC_ARM_GOTOFF:
29180 case BFD_RELOC_ARM_GOT_PREL:
29181 case BFD_RELOC_ARM_PLT32:
29182 case BFD_RELOC_ARM_TARGET1:
29183 case BFD_RELOC_ARM_ROSEGREL32:
29184 case BFD_RELOC_ARM_SBREL32:
29185 case BFD_RELOC_ARM_PREL31:
29186 case BFD_RELOC_ARM_TARGET2:
29187 case BFD_RELOC_ARM_TLS_LDO32:
29188 case BFD_RELOC_ARM_PCREL_CALL:
29189 case BFD_RELOC_ARM_PCREL_JUMP:
29190 case BFD_RELOC_ARM_ALU_PC_G0_NC:
29191 case BFD_RELOC_ARM_ALU_PC_G0:
29192 case BFD_RELOC_ARM_ALU_PC_G1_NC:
29193 case BFD_RELOC_ARM_ALU_PC_G1:
29194 case BFD_RELOC_ARM_ALU_PC_G2:
29195 case BFD_RELOC_ARM_LDR_PC_G0:
29196 case BFD_RELOC_ARM_LDR_PC_G1:
29197 case BFD_RELOC_ARM_LDR_PC_G2:
29198 case BFD_RELOC_ARM_LDRS_PC_G0:
29199 case BFD_RELOC_ARM_LDRS_PC_G1:
29200 case BFD_RELOC_ARM_LDRS_PC_G2:
29201 case BFD_RELOC_ARM_LDC_PC_G0:
29202 case BFD_RELOC_ARM_LDC_PC_G1:
29203 case BFD_RELOC_ARM_LDC_PC_G2:
29204 case BFD_RELOC_ARM_ALU_SB_G0_NC:
29205 case BFD_RELOC_ARM_ALU_SB_G0:
29206 case BFD_RELOC_ARM_ALU_SB_G1_NC:
29207 case BFD_RELOC_ARM_ALU_SB_G1:
29208 case BFD_RELOC_ARM_ALU_SB_G2:
29209 case BFD_RELOC_ARM_LDR_SB_G0:
29210 case BFD_RELOC_ARM_LDR_SB_G1:
29211 case BFD_RELOC_ARM_LDR_SB_G2:
29212 case BFD_RELOC_ARM_LDRS_SB_G0:
29213 case BFD_RELOC_ARM_LDRS_SB_G1:
29214 case BFD_RELOC_ARM_LDRS_SB_G2:
29215 case BFD_RELOC_ARM_LDC_SB_G0:
29216 case BFD_RELOC_ARM_LDC_SB_G1:
29217 case BFD_RELOC_ARM_LDC_SB_G2:
29218 case BFD_RELOC_ARM_V4BX:
29219 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
29220 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
29221 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
29222 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
29223 case BFD_RELOC_ARM_GOTFUNCDESC:
29224 case BFD_RELOC_ARM_GOTOFFFUNCDESC:
29225 case BFD_RELOC_ARM_FUNCDESC:
29226 case BFD_RELOC_ARM_THUMB_BF17:
29227 case BFD_RELOC_ARM_THUMB_BF19:
29228 case BFD_RELOC_ARM_THUMB_BF13:
29229 code = fixp->fx_r_type;
29230 break;
29231
29232 case BFD_RELOC_ARM_TLS_GOTDESC:
29233 case BFD_RELOC_ARM_TLS_GD32:
29234 case BFD_RELOC_ARM_TLS_GD32_FDPIC:
29235 case BFD_RELOC_ARM_TLS_LE32:
29236 case BFD_RELOC_ARM_TLS_IE32:
29237 case BFD_RELOC_ARM_TLS_IE32_FDPIC:
29238 case BFD_RELOC_ARM_TLS_LDM32:
29239 case BFD_RELOC_ARM_TLS_LDM32_FDPIC:
29240 /* BFD will include the symbol's address in the addend.
29241 But we don't want that, so subtract it out again here. */
29242 if (!S_IS_COMMON (fixp->fx_addsy))
29243 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
29244 code = fixp->fx_r_type;
29245 break;
29246 #endif
29247
29248 case BFD_RELOC_ARM_IMMEDIATE:
29249 as_bad_where (fixp->fx_file, fixp->fx_line,
29250 _("internal relocation (type: IMMEDIATE) not fixed up"));
29251 return NULL;
29252
29253 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
29254 as_bad_where (fixp->fx_file, fixp->fx_line,
29255 _("ADRL used for a symbol not defined in the same file"));
29256 return NULL;
29257
29258 case BFD_RELOC_THUMB_PCREL_BRANCH5:
29259 case BFD_RELOC_THUMB_PCREL_BFCSEL:
29260 case BFD_RELOC_ARM_THUMB_LOOP12:
29261 as_bad_where (fixp->fx_file, fixp->fx_line,
29262 _("%s used for a symbol not defined in the same file"),
29263 bfd_get_reloc_code_name (fixp->fx_r_type));
29264 return NULL;
29265
29266 case BFD_RELOC_ARM_OFFSET_IMM:
29267 if (section->use_rela_p)
29268 {
29269 code = fixp->fx_r_type;
29270 break;
29271 }
29272
29273 if (fixp->fx_addsy != NULL
29274 && !S_IS_DEFINED (fixp->fx_addsy)
29275 && S_IS_LOCAL (fixp->fx_addsy))
29276 {
29277 as_bad_where (fixp->fx_file, fixp->fx_line,
29278 _("undefined local label `%s'"),
29279 S_GET_NAME (fixp->fx_addsy));
29280 return NULL;
29281 }
29282
29283 as_bad_where (fixp->fx_file, fixp->fx_line,
29284 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
29285 return NULL;
29286
29287 default:
29288 {
29289 const char * type;
29290
29291 switch (fixp->fx_r_type)
29292 {
29293 case BFD_RELOC_NONE: type = "NONE"; break;
29294 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
29295 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
29296 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
29297 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
29298 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
29299 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
29300 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
29301 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
29302 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
29303 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
29304 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
29305 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
29306 default: type = _("<unknown>"); break;
29307 }
29308 as_bad_where (fixp->fx_file, fixp->fx_line,
29309 _("cannot represent %s relocation in this object file format"),
29310 type);
29311 return NULL;
29312 }
29313 }
29314
29315 #ifdef OBJ_ELF
29316 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
29317 && GOT_symbol
29318 && fixp->fx_addsy == GOT_symbol)
29319 {
29320 code = BFD_RELOC_ARM_GOTPC;
29321 reloc->addend = fixp->fx_offset = reloc->address;
29322 }
29323 #endif
29324
29325 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
29326
29327 if (reloc->howto == NULL)
29328 {
29329 as_bad_where (fixp->fx_file, fixp->fx_line,
29330 _("cannot represent %s relocation in this object file format"),
29331 bfd_get_reloc_code_name (code));
29332 return NULL;
29333 }
29334
29335 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
29336 vtable entry to be used in the relocation's section offset. */
29337 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
29338 reloc->address = fixp->fx_offset;
29339
29340 return reloc;
29341 }
29342
29343 /* This fix_new is called by cons via TC_CONS_FIX_NEW. */
29344
29345 void
29346 cons_fix_new_arm (fragS * frag,
29347 int where,
29348 int size,
29349 expressionS * exp,
29350 bfd_reloc_code_real_type reloc)
29351 {
29352 int pcrel = 0;
29353
29354 /* Pick a reloc.
29355 FIXME: @@ Should look at CPU word size. */
29356 switch (size)
29357 {
29358 case 1:
29359 reloc = BFD_RELOC_8;
29360 break;
29361 case 2:
29362 reloc = BFD_RELOC_16;
29363 break;
29364 case 4:
29365 default:
29366 reloc = BFD_RELOC_32;
29367 break;
29368 case 8:
29369 reloc = BFD_RELOC_64;
29370 break;
29371 }
29372
29373 #ifdef TE_PE
29374 if (exp->X_op == O_secrel)
29375 {
29376 exp->X_op = O_symbol;
29377 reloc = BFD_RELOC_32_SECREL;
29378 }
29379 #endif
29380
29381 fix_new_exp (frag, where, size, exp, pcrel, reloc);
29382 }
29383
29384 #if defined (OBJ_COFF)
29385 void
29386 arm_validate_fix (fixS * fixP)
29387 {
29388 /* If the destination of the branch is a defined symbol which does not have
29389 the THUMB_FUNC attribute, then we must be calling a function which has
29390 the (interfacearm) attribute. We look for the Thumb entry point to that
29391 function and change the branch to refer to that function instead. */
29392 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
29393 && fixP->fx_addsy != NULL
29394 && S_IS_DEFINED (fixP->fx_addsy)
29395 && ! THUMB_IS_FUNC (fixP->fx_addsy))
29396 {
29397 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
29398 }
29399 }
29400 #endif
29401
29402
29403 int
29404 arm_force_relocation (struct fix * fixp)
29405 {
29406 #if defined (OBJ_COFF) && defined (TE_PE)
29407 if (fixp->fx_r_type == BFD_RELOC_RVA)
29408 return 1;
29409 #endif
29410
29411 /* In case we have a call or a branch to a function in ARM ISA mode from
29412 a thumb function or vice-versa force the relocation. These relocations
29413 are cleared off for some cores that might have blx and simple transformations
29414 are possible. */
29415
29416 #ifdef OBJ_ELF
29417 switch (fixp->fx_r_type)
29418 {
29419 case BFD_RELOC_ARM_PCREL_JUMP:
29420 case BFD_RELOC_ARM_PCREL_CALL:
29421 case BFD_RELOC_THUMB_PCREL_BLX:
29422 if (THUMB_IS_FUNC (fixp->fx_addsy))
29423 return 1;
29424 break;
29425
29426 case BFD_RELOC_ARM_PCREL_BLX:
29427 case BFD_RELOC_THUMB_PCREL_BRANCH25:
29428 case BFD_RELOC_THUMB_PCREL_BRANCH20:
29429 case BFD_RELOC_THUMB_PCREL_BRANCH23:
29430 if (ARM_IS_FUNC (fixp->fx_addsy))
29431 return 1;
29432 break;
29433
29434 default:
29435 break;
29436 }
29437 #endif
29438
29439 /* Resolve these relocations even if the symbol is extern or weak.
29440 Technically this is probably wrong due to symbol preemption.
29441 In practice these relocations do not have enough range to be useful
29442 at dynamic link time, and some code (e.g. in the Linux kernel)
29443 expects these references to be resolved. */
29444 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
29445 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
29446 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
29447 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
29448 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
29449 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
29450 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
29451 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
29452 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
29453 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
29454 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
29455 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
29456 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
29457 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
29458 return 0;
29459
29460 /* Always leave these relocations for the linker. */
29461 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
29462 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
29463 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
29464 return 1;
29465
29466 /* Always generate relocations against function symbols. */
29467 if (fixp->fx_r_type == BFD_RELOC_32
29468 && fixp->fx_addsy
29469 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
29470 return 1;
29471
29472 return generic_force_reloc (fixp);
29473 }
29474
29475 #if defined (OBJ_ELF) || defined (OBJ_COFF)
29476 /* Relocations against function names must be left unadjusted,
29477 so that the linker can use this information to generate interworking
29478 stubs. The MIPS version of this function
29479 also prevents relocations that are mips-16 specific, but I do not
29480 know why it does this.
29481
29482 FIXME:
29483 There is one other problem that ought to be addressed here, but
29484 which currently is not: Taking the address of a label (rather
29485 than a function) and then later jumping to that address. Such
29486 addresses also ought to have their bottom bit set (assuming that
29487 they reside in Thumb code), but at the moment they will not. */
29488
29489 bfd_boolean
29490 arm_fix_adjustable (fixS * fixP)
29491 {
29492 if (fixP->fx_addsy == NULL)
29493 return 1;
29494
29495 /* Preserve relocations against symbols with function type. */
29496 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
29497 return FALSE;
29498
29499 if (THUMB_IS_FUNC (fixP->fx_addsy)
29500 && fixP->fx_subsy == NULL)
29501 return FALSE;
29502
29503 /* We need the symbol name for the VTABLE entries. */
29504 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
29505 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
29506 return FALSE;
29507
29508 /* Don't allow symbols to be discarded on GOT related relocs. */
29509 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
29510 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
29511 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
29512 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
29513 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32_FDPIC
29514 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
29515 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
29516 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32_FDPIC
29517 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
29518 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32_FDPIC
29519 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
29520 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
29521 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
29522 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
29523 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
29524 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
29525 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
29526 return FALSE;
29527
29528 /* Similarly for group relocations. */
29529 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
29530 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
29531 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
29532 return FALSE;
29533
29534 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
29535 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
29536 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
29537 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
29538 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
29539 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
29540 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
29541 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
29542 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
29543 return FALSE;
29544
29545 /* BFD_RELOC_ARM_THUMB_ALU_ABS_Gx_NC relocations have VERY limited
29546 offsets, so keep these symbols. */
29547 if (fixP->fx_r_type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
29548 && fixP->fx_r_type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
29549 return FALSE;
29550
29551 return TRUE;
29552 }
29553 #endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
29554
29555 #ifdef OBJ_ELF
29556 const char *
29557 elf32_arm_target_format (void)
29558 {
29559 #ifdef TE_SYMBIAN
29560 return (target_big_endian
29561 ? "elf32-bigarm-symbian"
29562 : "elf32-littlearm-symbian");
29563 #elif defined (TE_VXWORKS)
29564 return (target_big_endian
29565 ? "elf32-bigarm-vxworks"
29566 : "elf32-littlearm-vxworks");
29567 #elif defined (TE_NACL)
29568 return (target_big_endian
29569 ? "elf32-bigarm-nacl"
29570 : "elf32-littlearm-nacl");
29571 #else
29572 if (arm_fdpic)
29573 {
29574 if (target_big_endian)
29575 return "elf32-bigarm-fdpic";
29576 else
29577 return "elf32-littlearm-fdpic";
29578 }
29579 else
29580 {
29581 if (target_big_endian)
29582 return "elf32-bigarm";
29583 else
29584 return "elf32-littlearm";
29585 }
29586 #endif
29587 }
29588
29589 void
29590 armelf_frob_symbol (symbolS * symp,
29591 int * puntp)
29592 {
29593 elf_frob_symbol (symp, puntp);
29594 }
29595 #endif
29596
29597 /* MD interface: Finalization. */
29598
29599 void
29600 arm_cleanup (void)
29601 {
29602 literal_pool * pool;
29603
29604 /* Ensure that all the predication blocks are properly closed. */
29605 check_pred_blocks_finished ();
29606
29607 for (pool = list_of_pools; pool; pool = pool->next)
29608 {
29609 /* Put it at the end of the relevant section. */
29610 subseg_set (pool->section, pool->sub_section);
29611 #ifdef OBJ_ELF
29612 arm_elf_change_section ();
29613 #endif
29614 s_ltorg (0);
29615 }
29616 }
29617
29618 #ifdef OBJ_ELF
29619 /* Remove any excess mapping symbols generated for alignment frags in
29620 SEC. We may have created a mapping symbol before a zero byte
29621 alignment; remove it if there's a mapping symbol after the
29622 alignment. */
29623 static void
29624 check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
29625 void *dummy ATTRIBUTE_UNUSED)
29626 {
29627 segment_info_type *seginfo = seg_info (sec);
29628 fragS *fragp;
29629
29630 if (seginfo == NULL || seginfo->frchainP == NULL)
29631 return;
29632
29633 for (fragp = seginfo->frchainP->frch_root;
29634 fragp != NULL;
29635 fragp = fragp->fr_next)
29636 {
29637 symbolS *sym = fragp->tc_frag_data.last_map;
29638 fragS *next = fragp->fr_next;
29639
29640 /* Variable-sized frags have been converted to fixed size by
29641 this point. But if this was variable-sized to start with,
29642 there will be a fixed-size frag after it. So don't handle
29643 next == NULL. */
29644 if (sym == NULL || next == NULL)
29645 continue;
29646
29647 if (S_GET_VALUE (sym) < next->fr_address)
29648 /* Not at the end of this frag. */
29649 continue;
29650 know (S_GET_VALUE (sym) == next->fr_address);
29651
29652 do
29653 {
29654 if (next->tc_frag_data.first_map != NULL)
29655 {
29656 /* Next frag starts with a mapping symbol. Discard this
29657 one. */
29658 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
29659 break;
29660 }
29661
29662 if (next->fr_next == NULL)
29663 {
29664 /* This mapping symbol is at the end of the section. Discard
29665 it. */
29666 know (next->fr_fix == 0 && next->fr_var == 0);
29667 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
29668 break;
29669 }
29670
29671 /* As long as we have empty frags without any mapping symbols,
29672 keep looking. */
29673 /* If the next frag is non-empty and does not start with a
29674 mapping symbol, then this mapping symbol is required. */
29675 if (next->fr_address != next->fr_next->fr_address)
29676 break;
29677
29678 next = next->fr_next;
29679 }
29680 while (next != NULL);
29681 }
29682 }
29683 #endif
29684
29685 /* Adjust the symbol table. This marks Thumb symbols as distinct from
29686 ARM ones. */
29687
29688 void
29689 arm_adjust_symtab (void)
29690 {
29691 #ifdef OBJ_COFF
29692 symbolS * sym;
29693
29694 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
29695 {
29696 if (ARM_IS_THUMB (sym))
29697 {
29698 if (THUMB_IS_FUNC (sym))
29699 {
29700 /* Mark the symbol as a Thumb function. */
29701 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
29702 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
29703 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
29704
29705 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
29706 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
29707 else
29708 as_bad (_("%s: unexpected function type: %d"),
29709 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
29710 }
29711 else switch (S_GET_STORAGE_CLASS (sym))
29712 {
29713 case C_EXT:
29714 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
29715 break;
29716 case C_STAT:
29717 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
29718 break;
29719 case C_LABEL:
29720 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
29721 break;
29722 default:
29723 /* Do nothing. */
29724 break;
29725 }
29726 }
29727
29728 if (ARM_IS_INTERWORK (sym))
29729 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
29730 }
29731 #endif
29732 #ifdef OBJ_ELF
29733 symbolS * sym;
29734 char bind;
29735
29736 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
29737 {
29738 if (ARM_IS_THUMB (sym))
29739 {
29740 elf_symbol_type * elf_sym;
29741
29742 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
29743 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
29744
29745 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
29746 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
29747 {
29748 /* If it's a .thumb_func, declare it as so,
29749 otherwise tag label as .code 16. */
29750 if (THUMB_IS_FUNC (sym))
29751 ARM_SET_SYM_BRANCH_TYPE (elf_sym->internal_elf_sym.st_target_internal,
29752 ST_BRANCH_TO_THUMB);
29753 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
29754 elf_sym->internal_elf_sym.st_info =
29755 ELF_ST_INFO (bind, STT_ARM_16BIT);
29756 }
29757 }
29758 }
29759
29760 /* Remove any overlapping mapping symbols generated by alignment frags. */
29761 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
29762 /* Now do generic ELF adjustments. */
29763 elf_adjust_symtab ();
29764 #endif
29765 }
29766
29767 /* MD interface: Initialization. */
29768
29769 static void
29770 set_constant_flonums (void)
29771 {
29772 int i;
29773
29774 for (i = 0; i < NUM_FLOAT_VALS; i++)
29775 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
29776 abort ();
29777 }
29778
29779 /* Auto-select Thumb mode if it's the only available instruction set for the
29780 given architecture. */
29781
29782 static void
29783 autoselect_thumb_from_cpu_variant (void)
29784 {
29785 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
29786 opcode_select (16);
29787 }
29788
29789 void
29790 md_begin (void)
29791 {
29792 unsigned mach;
29793 unsigned int i;
29794
29795 if ( (arm_ops_hsh = hash_new ()) == NULL
29796 || (arm_cond_hsh = hash_new ()) == NULL
29797 || (arm_vcond_hsh = hash_new ()) == NULL
29798 || (arm_shift_hsh = hash_new ()) == NULL
29799 || (arm_psr_hsh = hash_new ()) == NULL
29800 || (arm_v7m_psr_hsh = hash_new ()) == NULL
29801 || (arm_reg_hsh = hash_new ()) == NULL
29802 || (arm_reloc_hsh = hash_new ()) == NULL
29803 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
29804 as_fatal (_("virtual memory exhausted"));
29805
29806 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
29807 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
29808 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
29809 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
29810 for (i = 0; i < sizeof (vconds) / sizeof (struct asm_cond); i++)
29811 hash_insert (arm_vcond_hsh, vconds[i].template_name, (void *) (vconds + i));
29812 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
29813 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
29814 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
29815 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
29816 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
29817 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
29818 (void *) (v7m_psrs + i));
29819 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
29820 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
29821 for (i = 0;
29822 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
29823 i++)
29824 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
29825 (void *) (barrier_opt_names + i));
29826 #ifdef OBJ_ELF
29827 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
29828 {
29829 struct reloc_entry * entry = reloc_names + i;
29830
29831 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
29832 /* This makes encode_branch() use the EABI versions of this relocation. */
29833 entry->reloc = BFD_RELOC_UNUSED;
29834
29835 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
29836 }
29837 #endif
29838
29839 set_constant_flonums ();
29840
29841 /* Set the cpu variant based on the command-line options. We prefer
29842 -mcpu= over -march= if both are set (as for GCC); and we prefer
29843 -mfpu= over any other way of setting the floating point unit.
29844 Use of legacy options with new options are faulted. */
29845 if (legacy_cpu)
29846 {
29847 if (mcpu_cpu_opt || march_cpu_opt)
29848 as_bad (_("use of old and new-style options to set CPU type"));
29849
29850 selected_arch = *legacy_cpu;
29851 }
29852 else if (mcpu_cpu_opt)
29853 {
29854 selected_arch = *mcpu_cpu_opt;
29855 selected_ext = *mcpu_ext_opt;
29856 }
29857 else if (march_cpu_opt)
29858 {
29859 selected_arch = *march_cpu_opt;
29860 selected_ext = *march_ext_opt;
29861 }
29862 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
29863
29864 if (legacy_fpu)
29865 {
29866 if (mfpu_opt)
29867 as_bad (_("use of old and new-style options to set FPU type"));
29868
29869 selected_fpu = *legacy_fpu;
29870 }
29871 else if (mfpu_opt)
29872 selected_fpu = *mfpu_opt;
29873 else
29874 {
29875 #if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
29876 || defined (TE_NetBSD) || defined (TE_VXWORKS))
29877 /* Some environments specify a default FPU. If they don't, infer it
29878 from the processor. */
29879 if (mcpu_fpu_opt)
29880 selected_fpu = *mcpu_fpu_opt;
29881 else if (march_fpu_opt)
29882 selected_fpu = *march_fpu_opt;
29883 #else
29884 selected_fpu = fpu_default;
29885 #endif
29886 }
29887
29888 if (ARM_FEATURE_ZERO (selected_fpu))
29889 {
29890 if (!no_cpu_selected ())
29891 selected_fpu = fpu_default;
29892 else
29893 selected_fpu = fpu_arch_fpa;
29894 }
29895
29896 #ifdef CPU_DEFAULT
29897 if (ARM_FEATURE_ZERO (selected_arch))
29898 {
29899 selected_arch = cpu_default;
29900 selected_cpu = selected_arch;
29901 }
29902 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
29903 #else
29904 /* Autodection of feature mode: allow all features in cpu_variant but leave
29905 selected_cpu unset. It will be set in aeabi_set_public_attributes ()
29906 after all instruction have been processed and we can decide what CPU
29907 should be selected. */
29908 if (ARM_FEATURE_ZERO (selected_arch))
29909 ARM_MERGE_FEATURE_SETS (cpu_variant, arm_arch_any, selected_fpu);
29910 else
29911 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
29912 #endif
29913
29914 autoselect_thumb_from_cpu_variant ();
29915
29916 arm_arch_used = thumb_arch_used = arm_arch_none;
29917
29918 #if defined OBJ_COFF || defined OBJ_ELF
29919 {
29920 unsigned int flags = 0;
29921
29922 #if defined OBJ_ELF
29923 flags = meabi_flags;
29924
29925 switch (meabi_flags)
29926 {
29927 case EF_ARM_EABI_UNKNOWN:
29928 #endif
29929 /* Set the flags in the private structure. */
29930 if (uses_apcs_26) flags |= F_APCS26;
29931 if (support_interwork) flags |= F_INTERWORK;
29932 if (uses_apcs_float) flags |= F_APCS_FLOAT;
29933 if (pic_code) flags |= F_PIC;
29934 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
29935 flags |= F_SOFT_FLOAT;
29936
29937 switch (mfloat_abi_opt)
29938 {
29939 case ARM_FLOAT_ABI_SOFT:
29940 case ARM_FLOAT_ABI_SOFTFP:
29941 flags |= F_SOFT_FLOAT;
29942 break;
29943
29944 case ARM_FLOAT_ABI_HARD:
29945 if (flags & F_SOFT_FLOAT)
29946 as_bad (_("hard-float conflicts with specified fpu"));
29947 break;
29948 }
29949
29950 /* Using pure-endian doubles (even if soft-float). */
29951 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
29952 flags |= F_VFP_FLOAT;
29953
29954 #if defined OBJ_ELF
29955 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
29956 flags |= EF_ARM_MAVERICK_FLOAT;
29957 break;
29958
29959 case EF_ARM_EABI_VER4:
29960 case EF_ARM_EABI_VER5:
29961 /* No additional flags to set. */
29962 break;
29963
29964 default:
29965 abort ();
29966 }
29967 #endif
29968 bfd_set_private_flags (stdoutput, flags);
29969
29970 /* We have run out flags in the COFF header to encode the
29971 status of ATPCS support, so instead we create a dummy,
29972 empty, debug section called .arm.atpcs. */
29973 if (atpcs)
29974 {
29975 asection * sec;
29976
29977 sec = bfd_make_section (stdoutput, ".arm.atpcs");
29978
29979 if (sec != NULL)
29980 {
29981 bfd_set_section_flags
29982 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
29983 bfd_set_section_size (stdoutput, sec, 0);
29984 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
29985 }
29986 }
29987 }
29988 #endif
29989
29990 /* Record the CPU type as well. */
29991 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
29992 mach = bfd_mach_arm_iWMMXt2;
29993 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
29994 mach = bfd_mach_arm_iWMMXt;
29995 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
29996 mach = bfd_mach_arm_XScale;
29997 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
29998 mach = bfd_mach_arm_ep9312;
29999 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
30000 mach = bfd_mach_arm_5TE;
30001 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
30002 {
30003 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
30004 mach = bfd_mach_arm_5T;
30005 else
30006 mach = bfd_mach_arm_5;
30007 }
30008 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
30009 {
30010 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
30011 mach = bfd_mach_arm_4T;
30012 else
30013 mach = bfd_mach_arm_4;
30014 }
30015 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
30016 mach = bfd_mach_arm_3M;
30017 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
30018 mach = bfd_mach_arm_3;
30019 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
30020 mach = bfd_mach_arm_2a;
30021 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
30022 mach = bfd_mach_arm_2;
30023 else
30024 mach = bfd_mach_arm_unknown;
30025
30026 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
30027 }
30028
30029 /* Command line processing. */
30030
30031 /* md_parse_option
30032 Invocation line includes a switch not recognized by the base assembler.
30033 See if it's a processor-specific option.
30034
30035 This routine is somewhat complicated by the need for backwards
30036 compatibility (since older releases of gcc can't be changed).
30037 The new options try to make the interface as compatible as
30038 possible with GCC.
30039
30040 New options (supported) are:
30041
30042 -mcpu=<cpu name> Assemble for selected processor
30043 -march=<architecture name> Assemble for selected architecture
30044 -mfpu=<fpu architecture> Assemble for selected FPU.
30045 -EB/-mbig-endian Big-endian
30046 -EL/-mlittle-endian Little-endian
30047 -k Generate PIC code
30048 -mthumb Start in Thumb mode
30049 -mthumb-interwork Code supports ARM/Thumb interworking
30050
30051 -m[no-]warn-deprecated Warn about deprecated features
30052 -m[no-]warn-syms Warn when symbols match instructions
30053
30054 For now we will also provide support for:
30055
30056 -mapcs-32 32-bit Program counter
30057 -mapcs-26 26-bit Program counter
30058 -macps-float Floats passed in FP registers
30059 -mapcs-reentrant Reentrant code
30060 -matpcs
30061 (sometime these will probably be replaced with -mapcs=<list of options>
30062 and -matpcs=<list of options>)
30063
30064 The remaining options are only supported for back-wards compatibility.
30065 Cpu variants, the arm part is optional:
30066 -m[arm]1 Currently not supported.
30067 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
30068 -m[arm]3 Arm 3 processor
30069 -m[arm]6[xx], Arm 6 processors
30070 -m[arm]7[xx][t][[d]m] Arm 7 processors
30071 -m[arm]8[10] Arm 8 processors
30072 -m[arm]9[20][tdmi] Arm 9 processors
30073 -mstrongarm[110[0]] StrongARM processors
30074 -mxscale XScale processors
30075 -m[arm]v[2345[t[e]]] Arm architectures
30076 -mall All (except the ARM1)
30077 FP variants:
30078 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
30079 -mfpe-old (No float load/store multiples)
30080 -mvfpxd VFP Single precision
30081 -mvfp All VFP
30082 -mno-fpu Disable all floating point instructions
30083
30084 The following CPU names are recognized:
30085 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
30086 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
30087 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
30088 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
30089 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
30090 arm10t arm10e, arm1020t, arm1020e, arm10200e,
30091 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
30092
30093 */
30094
30095 const char * md_shortopts = "m:k";
30096
30097 #ifdef ARM_BI_ENDIAN
30098 #define OPTION_EB (OPTION_MD_BASE + 0)
30099 #define OPTION_EL (OPTION_MD_BASE + 1)
30100 #else
30101 #if TARGET_BYTES_BIG_ENDIAN
30102 #define OPTION_EB (OPTION_MD_BASE + 0)
30103 #else
30104 #define OPTION_EL (OPTION_MD_BASE + 1)
30105 #endif
30106 #endif
30107 #define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
30108 #define OPTION_FDPIC (OPTION_MD_BASE + 3)
30109
30110 struct option md_longopts[] =
30111 {
30112 #ifdef OPTION_EB
30113 {"EB", no_argument, NULL, OPTION_EB},
30114 #endif
30115 #ifdef OPTION_EL
30116 {"EL", no_argument, NULL, OPTION_EL},
30117 #endif
30118 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
30119 #ifdef OBJ_ELF
30120 {"fdpic", no_argument, NULL, OPTION_FDPIC},
30121 #endif
30122 {NULL, no_argument, NULL, 0}
30123 };
30124
30125 size_t md_longopts_size = sizeof (md_longopts);
30126
30127 struct arm_option_table
30128 {
30129 const char * option; /* Option name to match. */
30130 const char * help; /* Help information. */
30131 int * var; /* Variable to change. */
30132 int value; /* What to change it to. */
30133 const char * deprecated; /* If non-null, print this message. */
30134 };
30135
30136 struct arm_option_table arm_opts[] =
30137 {
30138 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
30139 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
30140 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
30141 &support_interwork, 1, NULL},
30142 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
30143 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
30144 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
30145 1, NULL},
30146 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
30147 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
30148 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
30149 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
30150 NULL},
30151
30152 /* These are recognized by the assembler, but have no affect on code. */
30153 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
30154 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
30155
30156 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
30157 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
30158 &warn_on_deprecated, 0, NULL},
30159 {"mwarn-syms", N_("warn about symbols that match instruction names [default]"), (int *) (& flag_warn_syms), TRUE, NULL},
30160 {"mno-warn-syms", N_("disable warnings about symobls that match instructions"), (int *) (& flag_warn_syms), FALSE, NULL},
30161 {NULL, NULL, NULL, 0, NULL}
30162 };
30163
30164 struct arm_legacy_option_table
30165 {
30166 const char * option; /* Option name to match. */
30167 const arm_feature_set ** var; /* Variable to change. */
30168 const arm_feature_set value; /* What to change it to. */
30169 const char * deprecated; /* If non-null, print this message. */
30170 };
30171
30172 const struct arm_legacy_option_table arm_legacy_opts[] =
30173 {
30174 /* DON'T add any new processors to this list -- we want the whole list
30175 to go away... Add them to the processors table instead. */
30176 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
30177 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
30178 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
30179 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
30180 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
30181 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
30182 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
30183 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
30184 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
30185 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
30186 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
30187 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
30188 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
30189 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
30190 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
30191 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
30192 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
30193 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
30194 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
30195 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
30196 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
30197 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
30198 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
30199 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
30200 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
30201 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
30202 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
30203 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
30204 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
30205 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
30206 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
30207 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
30208 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
30209 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
30210 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
30211 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
30212 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
30213 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
30214 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
30215 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
30216 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
30217 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
30218 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
30219 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
30220 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
30221 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
30222 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
30223 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
30224 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
30225 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
30226 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
30227 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
30228 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
30229 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
30230 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
30231 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
30232 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
30233 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
30234 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
30235 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
30236 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
30237 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
30238 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
30239 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
30240 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
30241 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
30242 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
30243 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
30244 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
30245 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
30246 N_("use -mcpu=strongarm110")},
30247 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
30248 N_("use -mcpu=strongarm1100")},
30249 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
30250 N_("use -mcpu=strongarm1110")},
30251 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
30252 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
30253 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
30254
30255 /* Architecture variants -- don't add any more to this list either. */
30256 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
30257 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
30258 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
30259 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
30260 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
30261 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
30262 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
30263 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
30264 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
30265 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
30266 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
30267 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
30268 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
30269 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
30270 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
30271 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
30272 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
30273 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
30274
30275 /* Floating point variants -- don't add any more to this list either. */
30276 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
30277 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
30278 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
30279 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
30280 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
30281
30282 {NULL, NULL, ARM_ARCH_NONE, NULL}
30283 };
30284
30285 struct arm_cpu_option_table
30286 {
30287 const char * name;
30288 size_t name_len;
30289 const arm_feature_set value;
30290 const arm_feature_set ext;
30291 /* For some CPUs we assume an FPU unless the user explicitly sets
30292 -mfpu=... */
30293 const arm_feature_set default_fpu;
30294 /* The canonical name of the CPU, or NULL to use NAME converted to upper
30295 case. */
30296 const char * canonical_name;
30297 };
30298
30299 /* This list should, at a minimum, contain all the cpu names
30300 recognized by GCC. */
30301 #define ARM_CPU_OPT(N, CN, V, E, DF) { N, sizeof (N) - 1, V, E, DF, CN }
30302
30303 static const struct arm_cpu_option_table arm_cpus[] =
30304 {
30305 ARM_CPU_OPT ("all", NULL, ARM_ANY,
30306 ARM_ARCH_NONE,
30307 FPU_ARCH_FPA),
30308 ARM_CPU_OPT ("arm1", NULL, ARM_ARCH_V1,
30309 ARM_ARCH_NONE,
30310 FPU_ARCH_FPA),
30311 ARM_CPU_OPT ("arm2", NULL, ARM_ARCH_V2,
30312 ARM_ARCH_NONE,
30313 FPU_ARCH_FPA),
30314 ARM_CPU_OPT ("arm250", NULL, ARM_ARCH_V2S,
30315 ARM_ARCH_NONE,
30316 FPU_ARCH_FPA),
30317 ARM_CPU_OPT ("arm3", NULL, ARM_ARCH_V2S,
30318 ARM_ARCH_NONE,
30319 FPU_ARCH_FPA),
30320 ARM_CPU_OPT ("arm6", NULL, ARM_ARCH_V3,
30321 ARM_ARCH_NONE,
30322 FPU_ARCH_FPA),
30323 ARM_CPU_OPT ("arm60", NULL, ARM_ARCH_V3,
30324 ARM_ARCH_NONE,
30325 FPU_ARCH_FPA),
30326 ARM_CPU_OPT ("arm600", NULL, ARM_ARCH_V3,
30327 ARM_ARCH_NONE,
30328 FPU_ARCH_FPA),
30329 ARM_CPU_OPT ("arm610", NULL, ARM_ARCH_V3,
30330 ARM_ARCH_NONE,
30331 FPU_ARCH_FPA),
30332 ARM_CPU_OPT ("arm620", NULL, ARM_ARCH_V3,
30333 ARM_ARCH_NONE,
30334 FPU_ARCH_FPA),
30335 ARM_CPU_OPT ("arm7", NULL, ARM_ARCH_V3,
30336 ARM_ARCH_NONE,
30337 FPU_ARCH_FPA),
30338 ARM_CPU_OPT ("arm7m", NULL, ARM_ARCH_V3M,
30339 ARM_ARCH_NONE,
30340 FPU_ARCH_FPA),
30341 ARM_CPU_OPT ("arm7d", NULL, ARM_ARCH_V3,
30342 ARM_ARCH_NONE,
30343 FPU_ARCH_FPA),
30344 ARM_CPU_OPT ("arm7dm", NULL, ARM_ARCH_V3M,
30345 ARM_ARCH_NONE,
30346 FPU_ARCH_FPA),
30347 ARM_CPU_OPT ("arm7di", NULL, ARM_ARCH_V3,
30348 ARM_ARCH_NONE,
30349 FPU_ARCH_FPA),
30350 ARM_CPU_OPT ("arm7dmi", NULL, ARM_ARCH_V3M,
30351 ARM_ARCH_NONE,
30352 FPU_ARCH_FPA),
30353 ARM_CPU_OPT ("arm70", NULL, ARM_ARCH_V3,
30354 ARM_ARCH_NONE,
30355 FPU_ARCH_FPA),
30356 ARM_CPU_OPT ("arm700", NULL, ARM_ARCH_V3,
30357 ARM_ARCH_NONE,
30358 FPU_ARCH_FPA),
30359 ARM_CPU_OPT ("arm700i", NULL, ARM_ARCH_V3,
30360 ARM_ARCH_NONE,
30361 FPU_ARCH_FPA),
30362 ARM_CPU_OPT ("arm710", NULL, ARM_ARCH_V3,
30363 ARM_ARCH_NONE,
30364 FPU_ARCH_FPA),
30365 ARM_CPU_OPT ("arm710t", NULL, ARM_ARCH_V4T,
30366 ARM_ARCH_NONE,
30367 FPU_ARCH_FPA),
30368 ARM_CPU_OPT ("arm720", NULL, ARM_ARCH_V3,
30369 ARM_ARCH_NONE,
30370 FPU_ARCH_FPA),
30371 ARM_CPU_OPT ("arm720t", NULL, ARM_ARCH_V4T,
30372 ARM_ARCH_NONE,
30373 FPU_ARCH_FPA),
30374 ARM_CPU_OPT ("arm740t", NULL, ARM_ARCH_V4T,
30375 ARM_ARCH_NONE,
30376 FPU_ARCH_FPA),
30377 ARM_CPU_OPT ("arm710c", NULL, ARM_ARCH_V3,
30378 ARM_ARCH_NONE,
30379 FPU_ARCH_FPA),
30380 ARM_CPU_OPT ("arm7100", NULL, ARM_ARCH_V3,
30381 ARM_ARCH_NONE,
30382 FPU_ARCH_FPA),
30383 ARM_CPU_OPT ("arm7500", NULL, ARM_ARCH_V3,
30384 ARM_ARCH_NONE,
30385 FPU_ARCH_FPA),
30386 ARM_CPU_OPT ("arm7500fe", NULL, ARM_ARCH_V3,
30387 ARM_ARCH_NONE,
30388 FPU_ARCH_FPA),
30389 ARM_CPU_OPT ("arm7t", NULL, ARM_ARCH_V4T,
30390 ARM_ARCH_NONE,
30391 FPU_ARCH_FPA),
30392 ARM_CPU_OPT ("arm7tdmi", NULL, ARM_ARCH_V4T,
30393 ARM_ARCH_NONE,
30394 FPU_ARCH_FPA),
30395 ARM_CPU_OPT ("arm7tdmi-s", NULL, ARM_ARCH_V4T,
30396 ARM_ARCH_NONE,
30397 FPU_ARCH_FPA),
30398 ARM_CPU_OPT ("arm8", NULL, ARM_ARCH_V4,
30399 ARM_ARCH_NONE,
30400 FPU_ARCH_FPA),
30401 ARM_CPU_OPT ("arm810", NULL, ARM_ARCH_V4,
30402 ARM_ARCH_NONE,
30403 FPU_ARCH_FPA),
30404 ARM_CPU_OPT ("strongarm", NULL, ARM_ARCH_V4,
30405 ARM_ARCH_NONE,
30406 FPU_ARCH_FPA),
30407 ARM_CPU_OPT ("strongarm1", NULL, ARM_ARCH_V4,
30408 ARM_ARCH_NONE,
30409 FPU_ARCH_FPA),
30410 ARM_CPU_OPT ("strongarm110", NULL, ARM_ARCH_V4,
30411 ARM_ARCH_NONE,
30412 FPU_ARCH_FPA),
30413 ARM_CPU_OPT ("strongarm1100", NULL, ARM_ARCH_V4,
30414 ARM_ARCH_NONE,
30415 FPU_ARCH_FPA),
30416 ARM_CPU_OPT ("strongarm1110", NULL, ARM_ARCH_V4,
30417 ARM_ARCH_NONE,
30418 FPU_ARCH_FPA),
30419 ARM_CPU_OPT ("arm9", NULL, ARM_ARCH_V4T,
30420 ARM_ARCH_NONE,
30421 FPU_ARCH_FPA),
30422 ARM_CPU_OPT ("arm920", "ARM920T", ARM_ARCH_V4T,
30423 ARM_ARCH_NONE,
30424 FPU_ARCH_FPA),
30425 ARM_CPU_OPT ("arm920t", NULL, ARM_ARCH_V4T,
30426 ARM_ARCH_NONE,
30427 FPU_ARCH_FPA),
30428 ARM_CPU_OPT ("arm922t", NULL, ARM_ARCH_V4T,
30429 ARM_ARCH_NONE,
30430 FPU_ARCH_FPA),
30431 ARM_CPU_OPT ("arm940t", NULL, ARM_ARCH_V4T,
30432 ARM_ARCH_NONE,
30433 FPU_ARCH_FPA),
30434 ARM_CPU_OPT ("arm9tdmi", NULL, ARM_ARCH_V4T,
30435 ARM_ARCH_NONE,
30436 FPU_ARCH_FPA),
30437 ARM_CPU_OPT ("fa526", NULL, ARM_ARCH_V4,
30438 ARM_ARCH_NONE,
30439 FPU_ARCH_FPA),
30440 ARM_CPU_OPT ("fa626", NULL, ARM_ARCH_V4,
30441 ARM_ARCH_NONE,
30442 FPU_ARCH_FPA),
30443
30444 /* For V5 or later processors we default to using VFP; but the user
30445 should really set the FPU type explicitly. */
30446 ARM_CPU_OPT ("arm9e-r0", NULL, ARM_ARCH_V5TExP,
30447 ARM_ARCH_NONE,
30448 FPU_ARCH_VFP_V2),
30449 ARM_CPU_OPT ("arm9e", NULL, ARM_ARCH_V5TE,
30450 ARM_ARCH_NONE,
30451 FPU_ARCH_VFP_V2),
30452 ARM_CPU_OPT ("arm926ej", "ARM926EJ-S", ARM_ARCH_V5TEJ,
30453 ARM_ARCH_NONE,
30454 FPU_ARCH_VFP_V2),
30455 ARM_CPU_OPT ("arm926ejs", "ARM926EJ-S", ARM_ARCH_V5TEJ,
30456 ARM_ARCH_NONE,
30457 FPU_ARCH_VFP_V2),
30458 ARM_CPU_OPT ("arm926ej-s", NULL, ARM_ARCH_V5TEJ,
30459 ARM_ARCH_NONE,
30460 FPU_ARCH_VFP_V2),
30461 ARM_CPU_OPT ("arm946e-r0", NULL, ARM_ARCH_V5TExP,
30462 ARM_ARCH_NONE,
30463 FPU_ARCH_VFP_V2),
30464 ARM_CPU_OPT ("arm946e", "ARM946E-S", ARM_ARCH_V5TE,
30465 ARM_ARCH_NONE,
30466 FPU_ARCH_VFP_V2),
30467 ARM_CPU_OPT ("arm946e-s", NULL, ARM_ARCH_V5TE,
30468 ARM_ARCH_NONE,
30469 FPU_ARCH_VFP_V2),
30470 ARM_CPU_OPT ("arm966e-r0", NULL, ARM_ARCH_V5TExP,
30471 ARM_ARCH_NONE,
30472 FPU_ARCH_VFP_V2),
30473 ARM_CPU_OPT ("arm966e", "ARM966E-S", ARM_ARCH_V5TE,
30474 ARM_ARCH_NONE,
30475 FPU_ARCH_VFP_V2),
30476 ARM_CPU_OPT ("arm966e-s", NULL, ARM_ARCH_V5TE,
30477 ARM_ARCH_NONE,
30478 FPU_ARCH_VFP_V2),
30479 ARM_CPU_OPT ("arm968e-s", NULL, ARM_ARCH_V5TE,
30480 ARM_ARCH_NONE,
30481 FPU_ARCH_VFP_V2),
30482 ARM_CPU_OPT ("arm10t", NULL, ARM_ARCH_V5T,
30483 ARM_ARCH_NONE,
30484 FPU_ARCH_VFP_V1),
30485 ARM_CPU_OPT ("arm10tdmi", NULL, ARM_ARCH_V5T,
30486 ARM_ARCH_NONE,
30487 FPU_ARCH_VFP_V1),
30488 ARM_CPU_OPT ("arm10e", NULL, ARM_ARCH_V5TE,
30489 ARM_ARCH_NONE,
30490 FPU_ARCH_VFP_V2),
30491 ARM_CPU_OPT ("arm1020", "ARM1020E", ARM_ARCH_V5TE,
30492 ARM_ARCH_NONE,
30493 FPU_ARCH_VFP_V2),
30494 ARM_CPU_OPT ("arm1020t", NULL, ARM_ARCH_V5T,
30495 ARM_ARCH_NONE,
30496 FPU_ARCH_VFP_V1),
30497 ARM_CPU_OPT ("arm1020e", NULL, ARM_ARCH_V5TE,
30498 ARM_ARCH_NONE,
30499 FPU_ARCH_VFP_V2),
30500 ARM_CPU_OPT ("arm1022e", NULL, ARM_ARCH_V5TE,
30501 ARM_ARCH_NONE,
30502 FPU_ARCH_VFP_V2),
30503 ARM_CPU_OPT ("arm1026ejs", "ARM1026EJ-S", ARM_ARCH_V5TEJ,
30504 ARM_ARCH_NONE,
30505 FPU_ARCH_VFP_V2),
30506 ARM_CPU_OPT ("arm1026ej-s", NULL, ARM_ARCH_V5TEJ,
30507 ARM_ARCH_NONE,
30508 FPU_ARCH_VFP_V2),
30509 ARM_CPU_OPT ("fa606te", NULL, ARM_ARCH_V5TE,
30510 ARM_ARCH_NONE,
30511 FPU_ARCH_VFP_V2),
30512 ARM_CPU_OPT ("fa616te", NULL, ARM_ARCH_V5TE,
30513 ARM_ARCH_NONE,
30514 FPU_ARCH_VFP_V2),
30515 ARM_CPU_OPT ("fa626te", NULL, ARM_ARCH_V5TE,
30516 ARM_ARCH_NONE,
30517 FPU_ARCH_VFP_V2),
30518 ARM_CPU_OPT ("fmp626", NULL, ARM_ARCH_V5TE,
30519 ARM_ARCH_NONE,
30520 FPU_ARCH_VFP_V2),
30521 ARM_CPU_OPT ("fa726te", NULL, ARM_ARCH_V5TE,
30522 ARM_ARCH_NONE,
30523 FPU_ARCH_VFP_V2),
30524 ARM_CPU_OPT ("arm1136js", "ARM1136J-S", ARM_ARCH_V6,
30525 ARM_ARCH_NONE,
30526 FPU_NONE),
30527 ARM_CPU_OPT ("arm1136j-s", NULL, ARM_ARCH_V6,
30528 ARM_ARCH_NONE,
30529 FPU_NONE),
30530 ARM_CPU_OPT ("arm1136jfs", "ARM1136JF-S", ARM_ARCH_V6,
30531 ARM_ARCH_NONE,
30532 FPU_ARCH_VFP_V2),
30533 ARM_CPU_OPT ("arm1136jf-s", NULL, ARM_ARCH_V6,
30534 ARM_ARCH_NONE,
30535 FPU_ARCH_VFP_V2),
30536 ARM_CPU_OPT ("mpcore", "MPCore", ARM_ARCH_V6K,
30537 ARM_ARCH_NONE,
30538 FPU_ARCH_VFP_V2),
30539 ARM_CPU_OPT ("mpcorenovfp", "MPCore", ARM_ARCH_V6K,
30540 ARM_ARCH_NONE,
30541 FPU_NONE),
30542 ARM_CPU_OPT ("arm1156t2-s", NULL, ARM_ARCH_V6T2,
30543 ARM_ARCH_NONE,
30544 FPU_NONE),
30545 ARM_CPU_OPT ("arm1156t2f-s", NULL, ARM_ARCH_V6T2,
30546 ARM_ARCH_NONE,
30547 FPU_ARCH_VFP_V2),
30548 ARM_CPU_OPT ("arm1176jz-s", NULL, ARM_ARCH_V6KZ,
30549 ARM_ARCH_NONE,
30550 FPU_NONE),
30551 ARM_CPU_OPT ("arm1176jzf-s", NULL, ARM_ARCH_V6KZ,
30552 ARM_ARCH_NONE,
30553 FPU_ARCH_VFP_V2),
30554 ARM_CPU_OPT ("cortex-a5", "Cortex-A5", ARM_ARCH_V7A,
30555 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
30556 FPU_NONE),
30557 ARM_CPU_OPT ("cortex-a7", "Cortex-A7", ARM_ARCH_V7VE,
30558 ARM_ARCH_NONE,
30559 FPU_ARCH_NEON_VFP_V4),
30560 ARM_CPU_OPT ("cortex-a8", "Cortex-A8", ARM_ARCH_V7A,
30561 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
30562 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
30563 ARM_CPU_OPT ("cortex-a9", "Cortex-A9", ARM_ARCH_V7A,
30564 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
30565 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
30566 ARM_CPU_OPT ("cortex-a12", "Cortex-A12", ARM_ARCH_V7VE,
30567 ARM_ARCH_NONE,
30568 FPU_ARCH_NEON_VFP_V4),
30569 ARM_CPU_OPT ("cortex-a15", "Cortex-A15", ARM_ARCH_V7VE,
30570 ARM_ARCH_NONE,
30571 FPU_ARCH_NEON_VFP_V4),
30572 ARM_CPU_OPT ("cortex-a17", "Cortex-A17", ARM_ARCH_V7VE,
30573 ARM_ARCH_NONE,
30574 FPU_ARCH_NEON_VFP_V4),
30575 ARM_CPU_OPT ("cortex-a32", "Cortex-A32", ARM_ARCH_V8A,
30576 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30577 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30578 ARM_CPU_OPT ("cortex-a35", "Cortex-A35", ARM_ARCH_V8A,
30579 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30580 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30581 ARM_CPU_OPT ("cortex-a53", "Cortex-A53", ARM_ARCH_V8A,
30582 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30583 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30584 ARM_CPU_OPT ("cortex-a55", "Cortex-A55", ARM_ARCH_V8_2A,
30585 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30586 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30587 ARM_CPU_OPT ("cortex-a57", "Cortex-A57", ARM_ARCH_V8A,
30588 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30589 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30590 ARM_CPU_OPT ("cortex-a72", "Cortex-A72", ARM_ARCH_V8A,
30591 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30592 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30593 ARM_CPU_OPT ("cortex-a73", "Cortex-A73", ARM_ARCH_V8A,
30594 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30595 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30596 ARM_CPU_OPT ("cortex-a75", "Cortex-A75", ARM_ARCH_V8_2A,
30597 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30598 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30599 ARM_CPU_OPT ("cortex-a76", "Cortex-A76", ARM_ARCH_V8_2A,
30600 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30601 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30602 ARM_CPU_OPT ("cortex-a76ae", "Cortex-A76AE", ARM_ARCH_V8_2A,
30603 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30604 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30605 ARM_CPU_OPT ("cortex-a77", "Cortex-A77", ARM_ARCH_V8_2A,
30606 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30607 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30608 ARM_CPU_OPT ("ares", "Ares", ARM_ARCH_V8_2A,
30609 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30610 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30611 ARM_CPU_OPT ("cortex-r4", "Cortex-R4", ARM_ARCH_V7R,
30612 ARM_ARCH_NONE,
30613 FPU_NONE),
30614 ARM_CPU_OPT ("cortex-r4f", "Cortex-R4F", ARM_ARCH_V7R,
30615 ARM_ARCH_NONE,
30616 FPU_ARCH_VFP_V3D16),
30617 ARM_CPU_OPT ("cortex-r5", "Cortex-R5", ARM_ARCH_V7R,
30618 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
30619 FPU_NONE),
30620 ARM_CPU_OPT ("cortex-r7", "Cortex-R7", ARM_ARCH_V7R,
30621 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
30622 FPU_ARCH_VFP_V3D16),
30623 ARM_CPU_OPT ("cortex-r8", "Cortex-R8", ARM_ARCH_V7R,
30624 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
30625 FPU_ARCH_VFP_V3D16),
30626 ARM_CPU_OPT ("cortex-r52", "Cortex-R52", ARM_ARCH_V8R,
30627 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30628 FPU_ARCH_NEON_VFP_ARMV8),
30629 ARM_CPU_OPT ("cortex-m35p", "Cortex-M35P", ARM_ARCH_V8M_MAIN,
30630 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
30631 FPU_NONE),
30632 ARM_CPU_OPT ("cortex-m33", "Cortex-M33", ARM_ARCH_V8M_MAIN,
30633 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
30634 FPU_NONE),
30635 ARM_CPU_OPT ("cortex-m23", "Cortex-M23", ARM_ARCH_V8M_BASE,
30636 ARM_ARCH_NONE,
30637 FPU_NONE),
30638 ARM_CPU_OPT ("cortex-m7", "Cortex-M7", ARM_ARCH_V7EM,
30639 ARM_ARCH_NONE,
30640 FPU_NONE),
30641 ARM_CPU_OPT ("cortex-m4", "Cortex-M4", ARM_ARCH_V7EM,
30642 ARM_ARCH_NONE,
30643 FPU_NONE),
30644 ARM_CPU_OPT ("cortex-m3", "Cortex-M3", ARM_ARCH_V7M,
30645 ARM_ARCH_NONE,
30646 FPU_NONE),
30647 ARM_CPU_OPT ("cortex-m1", "Cortex-M1", ARM_ARCH_V6SM,
30648 ARM_ARCH_NONE,
30649 FPU_NONE),
30650 ARM_CPU_OPT ("cortex-m0", "Cortex-M0", ARM_ARCH_V6SM,
30651 ARM_ARCH_NONE,
30652 FPU_NONE),
30653 ARM_CPU_OPT ("cortex-m0plus", "Cortex-M0+", ARM_ARCH_V6SM,
30654 ARM_ARCH_NONE,
30655 FPU_NONE),
30656 ARM_CPU_OPT ("exynos-m1", "Samsung Exynos M1", ARM_ARCH_V8A,
30657 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30658 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30659 ARM_CPU_OPT ("neoverse-n1", "Neoverse N1", ARM_ARCH_V8_2A,
30660 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
30661 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
30662 /* ??? XSCALE is really an architecture. */
30663 ARM_CPU_OPT ("xscale", NULL, ARM_ARCH_XSCALE,
30664 ARM_ARCH_NONE,
30665 FPU_ARCH_VFP_V2),
30666
30667 /* ??? iwmmxt is not a processor. */
30668 ARM_CPU_OPT ("iwmmxt", NULL, ARM_ARCH_IWMMXT,
30669 ARM_ARCH_NONE,
30670 FPU_ARCH_VFP_V2),
30671 ARM_CPU_OPT ("iwmmxt2", NULL, ARM_ARCH_IWMMXT2,
30672 ARM_ARCH_NONE,
30673 FPU_ARCH_VFP_V2),
30674 ARM_CPU_OPT ("i80200", NULL, ARM_ARCH_XSCALE,
30675 ARM_ARCH_NONE,
30676 FPU_ARCH_VFP_V2),
30677
30678 /* Maverick. */
30679 ARM_CPU_OPT ("ep9312", "ARM920T",
30680 ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
30681 ARM_ARCH_NONE, FPU_ARCH_MAVERICK),
30682
30683 /* Marvell processors. */
30684 ARM_CPU_OPT ("marvell-pj4", NULL, ARM_ARCH_V7A,
30685 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
30686 FPU_ARCH_VFP_V3D16),
30687 ARM_CPU_OPT ("marvell-whitney", NULL, ARM_ARCH_V7A,
30688 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
30689 FPU_ARCH_NEON_VFP_V4),
30690
30691 /* APM X-Gene family. */
30692 ARM_CPU_OPT ("xgene1", "APM X-Gene 1", ARM_ARCH_V8A,
30693 ARM_ARCH_NONE,
30694 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30695 ARM_CPU_OPT ("xgene2", "APM X-Gene 2", ARM_ARCH_V8A,
30696 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
30697 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
30698
30699 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
30700 };
30701 #undef ARM_CPU_OPT
30702
30703 struct arm_ext_table
30704 {
30705 const char * name;
30706 size_t name_len;
30707 const arm_feature_set merge;
30708 const arm_feature_set clear;
30709 };
30710
30711 struct arm_arch_option_table
30712 {
30713 const char * name;
30714 size_t name_len;
30715 const arm_feature_set value;
30716 const arm_feature_set default_fpu;
30717 const struct arm_ext_table * ext_table;
30718 };
30719
30720 /* Used to add support for +E and +noE extension. */
30721 #define ARM_EXT(E, M, C) { E, sizeof (E) - 1, M, C }
30722 /* Used to add support for a +E extension. */
30723 #define ARM_ADD(E, M) { E, sizeof(E) - 1, M, ARM_ARCH_NONE }
30724 /* Used to add support for a +noE extension. */
30725 #define ARM_REMOVE(E, C) { E, sizeof(E) -1, ARM_ARCH_NONE, C }
30726
30727 #define ALL_FP ARM_FEATURE (0, ARM_EXT2_FP16_INST | ARM_EXT2_FP16_FML, \
30728 ~0 & ~FPU_ENDIAN_PURE)
30729
30730 static const struct arm_ext_table armv5te_ext_table[] =
30731 {
30732 ARM_EXT ("fp", FPU_ARCH_VFP_V2, ALL_FP),
30733 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30734 };
30735
30736 static const struct arm_ext_table armv7_ext_table[] =
30737 {
30738 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
30739 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30740 };
30741
30742 static const struct arm_ext_table armv7ve_ext_table[] =
30743 {
30744 ARM_EXT ("fp", FPU_ARCH_VFP_V4D16, ALL_FP),
30745 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16),
30746 ARM_ADD ("vfpv3", FPU_ARCH_VFP_V3),
30747 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
30748 ARM_ADD ("vfpv3-fp16", FPU_ARCH_VFP_V3_FP16),
30749 ARM_ADD ("vfpv4-d16", FPU_ARCH_VFP_V4D16), /* Alias for +fp. */
30750 ARM_ADD ("vfpv4", FPU_ARCH_VFP_V4),
30751
30752 ARM_EXT ("simd", FPU_ARCH_NEON_VFP_V4,
30753 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_NEON_EXT_FMA)),
30754
30755 /* Aliases for +simd. */
30756 ARM_ADD ("neon-vfpv4", FPU_ARCH_NEON_VFP_V4),
30757
30758 ARM_ADD ("neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
30759 ARM_ADD ("neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
30760 ARM_ADD ("neon-fp16", FPU_ARCH_NEON_FP16),
30761
30762 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30763 };
30764
30765 static const struct arm_ext_table armv7a_ext_table[] =
30766 {
30767 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
30768 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16), /* Alias for +fp. */
30769 ARM_ADD ("vfpv3", FPU_ARCH_VFP_V3),
30770 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
30771 ARM_ADD ("vfpv3-fp16", FPU_ARCH_VFP_V3_FP16),
30772 ARM_ADD ("vfpv4-d16", FPU_ARCH_VFP_V4D16),
30773 ARM_ADD ("vfpv4", FPU_ARCH_VFP_V4),
30774
30775 ARM_EXT ("simd", FPU_ARCH_VFP_V3_PLUS_NEON_V1,
30776 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_NEON_EXT_FMA)),
30777
30778 /* Aliases for +simd. */
30779 ARM_ADD ("neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
30780 ARM_ADD ("neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
30781
30782 ARM_ADD ("neon-fp16", FPU_ARCH_NEON_FP16),
30783 ARM_ADD ("neon-vfpv4", FPU_ARCH_NEON_VFP_V4),
30784
30785 ARM_ADD ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP)),
30786 ARM_ADD ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC)),
30787 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30788 };
30789
30790 static const struct arm_ext_table armv7r_ext_table[] =
30791 {
30792 ARM_ADD ("fp.sp", FPU_ARCH_VFP_V3xD),
30793 ARM_ADD ("vfpv3xd", FPU_ARCH_VFP_V3xD), /* Alias for +fp.sp. */
30794 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
30795 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16), /* Alias for +fp. */
30796 ARM_ADD ("vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16),
30797 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
30798 ARM_EXT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
30799 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV)),
30800 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30801 };
30802
30803 static const struct arm_ext_table armv7em_ext_table[] =
30804 {
30805 ARM_EXT ("fp", FPU_ARCH_VFP_V4_SP_D16, ALL_FP),
30806 /* Alias for +fp, used to be known as fpv4-sp-d16. */
30807 ARM_ADD ("vfpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16),
30808 ARM_ADD ("fpv5", FPU_ARCH_VFP_V5_SP_D16),
30809 ARM_ADD ("fp.dp", FPU_ARCH_VFP_V5D16),
30810 ARM_ADD ("fpv5-d16", FPU_ARCH_VFP_V5D16),
30811 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30812 };
30813
30814 static const struct arm_ext_table armv8a_ext_table[] =
30815 {
30816 ARM_ADD ("crc", ARCH_CRC_ARMV8),
30817 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8),
30818 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
30819 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30820
30821 /* Armv8-a does not allow an FP implementation without SIMD, so the user
30822 should use the +simd option to turn on FP. */
30823 ARM_REMOVE ("fp", ALL_FP),
30824 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
30825 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
30826 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30827 };
30828
30829
30830 static const struct arm_ext_table armv81a_ext_table[] =
30831 {
30832 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8_1),
30833 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1,
30834 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30835
30836 /* Armv8-a does not allow an FP implementation without SIMD, so the user
30837 should use the +simd option to turn on FP. */
30838 ARM_REMOVE ("fp", ALL_FP),
30839 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
30840 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
30841 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30842 };
30843
30844 static const struct arm_ext_table armv82a_ext_table[] =
30845 {
30846 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8_1),
30847 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_2_FP16),
30848 ARM_ADD ("fp16fml", FPU_ARCH_NEON_VFP_ARMV8_2_FP16FML),
30849 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1,
30850 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30851 ARM_ADD ("dotprod", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
30852
30853 /* Armv8-a does not allow an FP implementation without SIMD, so the user
30854 should use the +simd option to turn on FP. */
30855 ARM_REMOVE ("fp", ALL_FP),
30856 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
30857 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
30858 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30859 };
30860
30861 static const struct arm_ext_table armv84a_ext_table[] =
30862 {
30863 ARM_ADD ("simd", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
30864 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_4_FP16FML),
30865 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4,
30866 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30867
30868 /* Armv8-a does not allow an FP implementation without SIMD, so the user
30869 should use the +simd option to turn on FP. */
30870 ARM_REMOVE ("fp", ALL_FP),
30871 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
30872 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
30873 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30874 };
30875
30876 static const struct arm_ext_table armv85a_ext_table[] =
30877 {
30878 ARM_ADD ("simd", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
30879 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_4_FP16FML),
30880 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4,
30881 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30882
30883 /* Armv8-a does not allow an FP implementation without SIMD, so the user
30884 should use the +simd option to turn on FP. */
30885 ARM_REMOVE ("fp", ALL_FP),
30886 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30887 };
30888
30889 static const struct arm_ext_table armv8m_main_ext_table[] =
30890 {
30891 ARM_EXT ("dsp", ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
30892 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP)),
30893 ARM_EXT ("fp", FPU_ARCH_VFP_V5_SP_D16, ALL_FP),
30894 ARM_ADD ("fp.dp", FPU_ARCH_VFP_V5D16),
30895 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30896 };
30897
30898 static const struct arm_ext_table armv8_1m_main_ext_table[] =
30899 {
30900 ARM_EXT ("dsp", ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
30901 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP)),
30902 ARM_EXT ("fp",
30903 ARM_FEATURE (0, ARM_EXT2_FP16_INST,
30904 FPU_VFP_V5_SP_D16 | FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA),
30905 ALL_FP),
30906 ARM_ADD ("fp.dp",
30907 ARM_FEATURE (0, ARM_EXT2_FP16_INST,
30908 FPU_VFP_V5D16 | FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA)),
30909 ARM_EXT ("mve", ARM_FEATURE_COPROC (FPU_MVE),
30910 ARM_FEATURE_COPROC (FPU_MVE | FPU_MVE_FP)),
30911 ARM_ADD ("mve.fp",
30912 ARM_FEATURE (0, ARM_EXT2_FP16_INST,
30913 FPU_MVE | FPU_MVE_FP | FPU_VFP_V5_SP_D16 |
30914 FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA)),
30915 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30916 };
30917
30918 static const struct arm_ext_table armv8r_ext_table[] =
30919 {
30920 ARM_ADD ("crc", ARCH_CRC_ARMV8),
30921 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8),
30922 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
30923 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
30924 ARM_REMOVE ("fp", ALL_FP),
30925 ARM_ADD ("fp.sp", FPU_ARCH_VFP_V5_SP_D16),
30926 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
30927 };
30928
30929 /* This list should, at a minimum, contain all the architecture names
30930 recognized by GCC. */
30931 #define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF, NULL }
30932 #define ARM_ARCH_OPT2(N, V, DF, ext) \
30933 { N, sizeof (N) - 1, V, DF, ext##_ext_table }
30934
30935 static const struct arm_arch_option_table arm_archs[] =
30936 {
30937 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
30938 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
30939 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
30940 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
30941 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
30942 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
30943 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
30944 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
30945 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
30946 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
30947 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
30948 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
30949 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
30950 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
30951 ARM_ARCH_OPT2 ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP, armv5te),
30952 ARM_ARCH_OPT2 ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP, armv5te),
30953 ARM_ARCH_OPT2 ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP, armv5te),
30954 ARM_ARCH_OPT2 ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP, armv5te),
30955 ARM_ARCH_OPT2 ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP, armv5te),
30956 ARM_ARCH_OPT2 ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP, armv5te),
30957 ARM_ARCH_OPT2 ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP, armv5te),
30958 /* The official spelling of this variant is ARMv6KZ, the name "armv6zk" is
30959 kept to preserve existing behaviour. */
30960 ARM_ARCH_OPT2 ("armv6kz", ARM_ARCH_V6KZ, FPU_ARCH_VFP, armv5te),
30961 ARM_ARCH_OPT2 ("armv6zk", ARM_ARCH_V6KZ, FPU_ARCH_VFP, armv5te),
30962 ARM_ARCH_OPT2 ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP, armv5te),
30963 ARM_ARCH_OPT2 ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP, armv5te),
30964 ARM_ARCH_OPT2 ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP, armv5te),
30965 /* The official spelling of this variant is ARMv6KZ, the name "armv6zkt2" is
30966 kept to preserve existing behaviour. */
30967 ARM_ARCH_OPT2 ("armv6kzt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP, armv5te),
30968 ARM_ARCH_OPT2 ("armv6zkt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP, armv5te),
30969 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
30970 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
30971 ARM_ARCH_OPT2 ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP, armv7),
30972 /* The official spelling of the ARMv7 profile variants is the dashed form.
30973 Accept the non-dashed form for compatibility with old toolchains. */
30974 ARM_ARCH_OPT2 ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP, armv7a),
30975 ARM_ARCH_OPT2 ("armv7ve", ARM_ARCH_V7VE, FPU_ARCH_VFP, armv7ve),
30976 ARM_ARCH_OPT2 ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP, armv7r),
30977 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
30978 ARM_ARCH_OPT2 ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP, armv7a),
30979 ARM_ARCH_OPT2 ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP, armv7r),
30980 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
30981 ARM_ARCH_OPT2 ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP, armv7em),
30982 ARM_ARCH_OPT ("armv8-m.base", ARM_ARCH_V8M_BASE, FPU_ARCH_VFP),
30983 ARM_ARCH_OPT2 ("armv8-m.main", ARM_ARCH_V8M_MAIN, FPU_ARCH_VFP,
30984 armv8m_main),
30985 ARM_ARCH_OPT2 ("armv8.1-m.main", ARM_ARCH_V8_1M_MAIN, FPU_ARCH_VFP,
30986 armv8_1m_main),
30987 ARM_ARCH_OPT2 ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP, armv8a),
30988 ARM_ARCH_OPT2 ("armv8.1-a", ARM_ARCH_V8_1A, FPU_ARCH_VFP, armv81a),
30989 ARM_ARCH_OPT2 ("armv8.2-a", ARM_ARCH_V8_2A, FPU_ARCH_VFP, armv82a),
30990 ARM_ARCH_OPT2 ("armv8.3-a", ARM_ARCH_V8_3A, FPU_ARCH_VFP, armv82a),
30991 ARM_ARCH_OPT2 ("armv8-r", ARM_ARCH_V8R, FPU_ARCH_VFP, armv8r),
30992 ARM_ARCH_OPT2 ("armv8.4-a", ARM_ARCH_V8_4A, FPU_ARCH_VFP, armv84a),
30993 ARM_ARCH_OPT2 ("armv8.5-a", ARM_ARCH_V8_5A, FPU_ARCH_VFP, armv85a),
30994 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
30995 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
30996 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2, FPU_ARCH_VFP),
30997 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
30998 };
30999 #undef ARM_ARCH_OPT
31000
31001 /* ISA extensions in the co-processor and main instruction set space. */
31002
31003 struct arm_option_extension_value_table
31004 {
31005 const char * name;
31006 size_t name_len;
31007 const arm_feature_set merge_value;
31008 const arm_feature_set clear_value;
31009 /* List of architectures for which an extension is available. ARM_ARCH_NONE
31010 indicates that an extension is available for all architectures while
31011 ARM_ANY marks an empty entry. */
31012 const arm_feature_set allowed_archs[2];
31013 };
31014
31015 /* The following table must be in alphabetical order with a NULL last entry. */
31016
31017 #define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, { AA, ARM_ANY } }
31018 #define ARM_EXT_OPT2(N, M, C, AA1, AA2) { N, sizeof (N) - 1, M, C, {AA1, AA2} }
31019
31020 /* DEPRECATED: Refrain from using this table to add any new extensions, instead
31021 use the context sensitive approach using arm_ext_table's. */
31022 static const struct arm_option_extension_value_table arm_extensions[] =
31023 {
31024 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
31025 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31026 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
31027 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
31028 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31029 ARM_EXT_OPT ("dotprod", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8,
31030 ARM_FEATURE_COPROC (FPU_NEON_EXT_DOTPROD),
31031 ARM_ARCH_V8_2A),
31032 ARM_EXT_OPT ("dsp", ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31033 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31034 ARM_FEATURE_CORE (ARM_EXT_V7M, ARM_EXT2_V8M)),
31035 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
31036 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31037 ARM_EXT_OPT ("fp16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31038 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31039 ARM_ARCH_V8_2A),
31040 ARM_EXT_OPT ("fp16fml", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST
31041 | ARM_EXT2_FP16_FML),
31042 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST
31043 | ARM_EXT2_FP16_FML),
31044 ARM_ARCH_V8_2A),
31045 ARM_EXT_OPT2 ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
31046 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
31047 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
31048 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
31049 /* Duplicate entry for the purpose of allowing ARMv7 to match in presence of
31050 Thumb divide instruction. Due to this having the same name as the
31051 previous entry, this will be ignored when doing command-line parsing and
31052 only considered by build attribute selection code. */
31053 ARM_EXT_OPT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
31054 ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
31055 ARM_FEATURE_CORE_LOW (ARM_EXT_V7)),
31056 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
31057 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ARCH_NONE),
31058 ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
31059 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ARCH_NONE),
31060 ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
31061 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ARCH_NONE),
31062 ARM_EXT_OPT2 ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
31063 ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
31064 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
31065 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
31066 ARM_EXT_OPT ("os", ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
31067 ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
31068 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
31069 ARM_EXT_OPT ("pan", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN),
31070 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_PAN, 0),
31071 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
31072 ARM_EXT_OPT ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES),
31073 ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES),
31074 ARM_ARCH_V8A),
31075 ARM_EXT_OPT ("ras", ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS),
31076 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_RAS, 0),
31077 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
31078 ARM_EXT_OPT ("rdma", FPU_ARCH_NEON_VFP_ARMV8_1,
31079 ARM_FEATURE_COPROC (FPU_NEON_ARMV8 | FPU_NEON_EXT_RDMA),
31080 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
31081 ARM_EXT_OPT ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB),
31082 ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB),
31083 ARM_ARCH_V8A),
31084 ARM_EXT_OPT2 ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
31085 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
31086 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K),
31087 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
31088 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
31089 ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
31090 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31091 ARM_EXT_OPT ("virt", ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
31092 | ARM_EXT_DIV),
31093 ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
31094 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
31095 ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
31096 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ARCH_NONE),
31097 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, { ARM_ARCH_NONE, ARM_ARCH_NONE } }
31098 };
31099 #undef ARM_EXT_OPT
31100
31101 /* ISA floating-point and Advanced SIMD extensions. */
31102 struct arm_option_fpu_value_table
31103 {
31104 const char * name;
31105 const arm_feature_set value;
31106 };
31107
31108 /* This list should, at a minimum, contain all the fpu names
31109 recognized by GCC. */
31110 static const struct arm_option_fpu_value_table arm_fpus[] =
31111 {
31112 {"softfpa", FPU_NONE},
31113 {"fpe", FPU_ARCH_FPE},
31114 {"fpe2", FPU_ARCH_FPE},
31115 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
31116 {"fpa", FPU_ARCH_FPA},
31117 {"fpa10", FPU_ARCH_FPA},
31118 {"fpa11", FPU_ARCH_FPA},
31119 {"arm7500fe", FPU_ARCH_FPA},
31120 {"softvfp", FPU_ARCH_VFP},
31121 {"softvfp+vfp", FPU_ARCH_VFP_V2},
31122 {"vfp", FPU_ARCH_VFP_V2},
31123 {"vfp9", FPU_ARCH_VFP_V2},
31124 {"vfp3", FPU_ARCH_VFP_V3}, /* Undocumented, use vfpv3. */
31125 {"vfp10", FPU_ARCH_VFP_V2},
31126 {"vfp10-r0", FPU_ARCH_VFP_V1},
31127 {"vfpxd", FPU_ARCH_VFP_V1xD},
31128 {"vfpv2", FPU_ARCH_VFP_V2},
31129 {"vfpv3", FPU_ARCH_VFP_V3},
31130 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
31131 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
31132 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
31133 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
31134 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
31135 {"arm1020t", FPU_ARCH_VFP_V1},
31136 {"arm1020e", FPU_ARCH_VFP_V2},
31137 {"arm1136jfs", FPU_ARCH_VFP_V2}, /* Undocumented, use arm1136jf-s. */
31138 {"arm1136jf-s", FPU_ARCH_VFP_V2},
31139 {"maverick", FPU_ARCH_MAVERICK},
31140 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
31141 {"neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
31142 {"neon-fp16", FPU_ARCH_NEON_FP16},
31143 {"vfpv4", FPU_ARCH_VFP_V4},
31144 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
31145 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
31146 {"fpv5-d16", FPU_ARCH_VFP_V5D16},
31147 {"fpv5-sp-d16", FPU_ARCH_VFP_V5_SP_D16},
31148 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
31149 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
31150 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
31151 {"crypto-neon-fp-armv8",
31152 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
31153 {"neon-fp-armv8.1", FPU_ARCH_NEON_VFP_ARMV8_1},
31154 {"crypto-neon-fp-armv8.1",
31155 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1},
31156 {NULL, ARM_ARCH_NONE}
31157 };
31158
31159 struct arm_option_value_table
31160 {
31161 const char *name;
31162 long value;
31163 };
31164
31165 static const struct arm_option_value_table arm_float_abis[] =
31166 {
31167 {"hard", ARM_FLOAT_ABI_HARD},
31168 {"softfp", ARM_FLOAT_ABI_SOFTFP},
31169 {"soft", ARM_FLOAT_ABI_SOFT},
31170 {NULL, 0}
31171 };
31172
31173 #ifdef OBJ_ELF
31174 /* We only know how to output GNU and ver 4/5 (AAELF) formats. */
31175 static const struct arm_option_value_table arm_eabis[] =
31176 {
31177 {"gnu", EF_ARM_EABI_UNKNOWN},
31178 {"4", EF_ARM_EABI_VER4},
31179 {"5", EF_ARM_EABI_VER5},
31180 {NULL, 0}
31181 };
31182 #endif
31183
31184 struct arm_long_option_table
31185 {
31186 const char * option; /* Substring to match. */
31187 const char * help; /* Help information. */
31188 int (* func) (const char * subopt); /* Function to decode sub-option. */
31189 const char * deprecated; /* If non-null, print this message. */
31190 };
31191
31192 static bfd_boolean
31193 arm_parse_extension (const char *str, const arm_feature_set *opt_set,
31194 arm_feature_set *ext_set,
31195 const struct arm_ext_table *ext_table)
31196 {
31197 /* We insist on extensions being specified in alphabetical order, and with
31198 extensions being added before being removed. We achieve this by having
31199 the global ARM_EXTENSIONS table in alphabetical order, and using the
31200 ADDING_VALUE variable to indicate whether we are adding an extension (1)
31201 or removing it (0) and only allowing it to change in the order
31202 -1 -> 1 -> 0. */
31203 const struct arm_option_extension_value_table * opt = NULL;
31204 const arm_feature_set arm_any = ARM_ANY;
31205 int adding_value = -1;
31206
31207 while (str != NULL && *str != 0)
31208 {
31209 const char *ext;
31210 size_t len;
31211
31212 if (*str != '+')
31213 {
31214 as_bad (_("invalid architectural extension"));
31215 return FALSE;
31216 }
31217
31218 str++;
31219 ext = strchr (str, '+');
31220
31221 if (ext != NULL)
31222 len = ext - str;
31223 else
31224 len = strlen (str);
31225
31226 if (len >= 2 && strncmp (str, "no", 2) == 0)
31227 {
31228 if (adding_value != 0)
31229 {
31230 adding_value = 0;
31231 opt = arm_extensions;
31232 }
31233
31234 len -= 2;
31235 str += 2;
31236 }
31237 else if (len > 0)
31238 {
31239 if (adding_value == -1)
31240 {
31241 adding_value = 1;
31242 opt = arm_extensions;
31243 }
31244 else if (adding_value != 1)
31245 {
31246 as_bad (_("must specify extensions to add before specifying "
31247 "those to remove"));
31248 return FALSE;
31249 }
31250 }
31251
31252 if (len == 0)
31253 {
31254 as_bad (_("missing architectural extension"));
31255 return FALSE;
31256 }
31257
31258 gas_assert (adding_value != -1);
31259 gas_assert (opt != NULL);
31260
31261 if (ext_table != NULL)
31262 {
31263 const struct arm_ext_table * ext_opt = ext_table;
31264 bfd_boolean found = FALSE;
31265 for (; ext_opt->name != NULL; ext_opt++)
31266 if (ext_opt->name_len == len
31267 && strncmp (ext_opt->name, str, len) == 0)
31268 {
31269 if (adding_value)
31270 {
31271 if (ARM_FEATURE_ZERO (ext_opt->merge))
31272 /* TODO: Option not supported. When we remove the
31273 legacy table this case should error out. */
31274 continue;
31275
31276 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, ext_opt->merge);
31277 }
31278 else
31279 {
31280 if (ARM_FEATURE_ZERO (ext_opt->clear))
31281 /* TODO: Option not supported. When we remove the
31282 legacy table this case should error out. */
31283 continue;
31284 ARM_CLEAR_FEATURE (*ext_set, *ext_set, ext_opt->clear);
31285 }
31286 found = TRUE;
31287 break;
31288 }
31289 if (found)
31290 {
31291 str = ext;
31292 continue;
31293 }
31294 }
31295
31296 /* Scan over the options table trying to find an exact match. */
31297 for (; opt->name != NULL; opt++)
31298 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
31299 {
31300 int i, nb_allowed_archs =
31301 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
31302 /* Check we can apply the extension to this architecture. */
31303 for (i = 0; i < nb_allowed_archs; i++)
31304 {
31305 /* Empty entry. */
31306 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
31307 continue;
31308 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *opt_set))
31309 break;
31310 }
31311 if (i == nb_allowed_archs)
31312 {
31313 as_bad (_("extension does not apply to the base architecture"));
31314 return FALSE;
31315 }
31316
31317 /* Add or remove the extension. */
31318 if (adding_value)
31319 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->merge_value);
31320 else
31321 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->clear_value);
31322
31323 /* Allowing Thumb division instructions for ARMv7 in autodetection
31324 rely on this break so that duplicate extensions (extensions
31325 with the same name as a previous extension in the list) are not
31326 considered for command-line parsing. */
31327 break;
31328 }
31329
31330 if (opt->name == NULL)
31331 {
31332 /* Did we fail to find an extension because it wasn't specified in
31333 alphabetical order, or because it does not exist? */
31334
31335 for (opt = arm_extensions; opt->name != NULL; opt++)
31336 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
31337 break;
31338
31339 if (opt->name == NULL)
31340 as_bad (_("unknown architectural extension `%s'"), str);
31341 else
31342 as_bad (_("architectural extensions must be specified in "
31343 "alphabetical order"));
31344
31345 return FALSE;
31346 }
31347 else
31348 {
31349 /* We should skip the extension we've just matched the next time
31350 round. */
31351 opt++;
31352 }
31353
31354 str = ext;
31355 };
31356
31357 return TRUE;
31358 }
31359
31360 static bfd_boolean
31361 arm_parse_fp16_opt (const char *str)
31362 {
31363 if (strcasecmp (str, "ieee") == 0)
31364 fp16_format = ARM_FP16_FORMAT_IEEE;
31365 else if (strcasecmp (str, "alternative") == 0)
31366 fp16_format = ARM_FP16_FORMAT_ALTERNATIVE;
31367 else
31368 {
31369 as_bad (_("unrecognised float16 format \"%s\""), str);
31370 return FALSE;
31371 }
31372
31373 return TRUE;
31374 }
31375
31376 static bfd_boolean
31377 arm_parse_cpu (const char *str)
31378 {
31379 const struct arm_cpu_option_table *opt;
31380 const char *ext = strchr (str, '+');
31381 size_t len;
31382
31383 if (ext != NULL)
31384 len = ext - str;
31385 else
31386 len = strlen (str);
31387
31388 if (len == 0)
31389 {
31390 as_bad (_("missing cpu name `%s'"), str);
31391 return FALSE;
31392 }
31393
31394 for (opt = arm_cpus; opt->name != NULL; opt++)
31395 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
31396 {
31397 mcpu_cpu_opt = &opt->value;
31398 if (mcpu_ext_opt == NULL)
31399 mcpu_ext_opt = XNEW (arm_feature_set);
31400 *mcpu_ext_opt = opt->ext;
31401 mcpu_fpu_opt = &opt->default_fpu;
31402 if (opt->canonical_name)
31403 {
31404 gas_assert (sizeof selected_cpu_name > strlen (opt->canonical_name));
31405 strcpy (selected_cpu_name, opt->canonical_name);
31406 }
31407 else
31408 {
31409 size_t i;
31410
31411 if (len >= sizeof selected_cpu_name)
31412 len = (sizeof selected_cpu_name) - 1;
31413
31414 for (i = 0; i < len; i++)
31415 selected_cpu_name[i] = TOUPPER (opt->name[i]);
31416 selected_cpu_name[i] = 0;
31417 }
31418
31419 if (ext != NULL)
31420 return arm_parse_extension (ext, mcpu_cpu_opt, mcpu_ext_opt, NULL);
31421
31422 return TRUE;
31423 }
31424
31425 as_bad (_("unknown cpu `%s'"), str);
31426 return FALSE;
31427 }
31428
31429 static bfd_boolean
31430 arm_parse_arch (const char *str)
31431 {
31432 const struct arm_arch_option_table *opt;
31433 const char *ext = strchr (str, '+');
31434 size_t len;
31435
31436 if (ext != NULL)
31437 len = ext - str;
31438 else
31439 len = strlen (str);
31440
31441 if (len == 0)
31442 {
31443 as_bad (_("missing architecture name `%s'"), str);
31444 return FALSE;
31445 }
31446
31447 for (opt = arm_archs; opt->name != NULL; opt++)
31448 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
31449 {
31450 march_cpu_opt = &opt->value;
31451 if (march_ext_opt == NULL)
31452 march_ext_opt = XNEW (arm_feature_set);
31453 *march_ext_opt = arm_arch_none;
31454 march_fpu_opt = &opt->default_fpu;
31455 strcpy (selected_cpu_name, opt->name);
31456
31457 if (ext != NULL)
31458 return arm_parse_extension (ext, march_cpu_opt, march_ext_opt,
31459 opt->ext_table);
31460
31461 return TRUE;
31462 }
31463
31464 as_bad (_("unknown architecture `%s'\n"), str);
31465 return FALSE;
31466 }
31467
31468 static bfd_boolean
31469 arm_parse_fpu (const char * str)
31470 {
31471 const struct arm_option_fpu_value_table * opt;
31472
31473 for (opt = arm_fpus; opt->name != NULL; opt++)
31474 if (streq (opt->name, str))
31475 {
31476 mfpu_opt = &opt->value;
31477 return TRUE;
31478 }
31479
31480 as_bad (_("unknown floating point format `%s'\n"), str);
31481 return FALSE;
31482 }
31483
31484 static bfd_boolean
31485 arm_parse_float_abi (const char * str)
31486 {
31487 const struct arm_option_value_table * opt;
31488
31489 for (opt = arm_float_abis; opt->name != NULL; opt++)
31490 if (streq (opt->name, str))
31491 {
31492 mfloat_abi_opt = opt->value;
31493 return TRUE;
31494 }
31495
31496 as_bad (_("unknown floating point abi `%s'\n"), str);
31497 return FALSE;
31498 }
31499
31500 #ifdef OBJ_ELF
31501 static bfd_boolean
31502 arm_parse_eabi (const char * str)
31503 {
31504 const struct arm_option_value_table *opt;
31505
31506 for (opt = arm_eabis; opt->name != NULL; opt++)
31507 if (streq (opt->name, str))
31508 {
31509 meabi_flags = opt->value;
31510 return TRUE;
31511 }
31512 as_bad (_("unknown EABI `%s'\n"), str);
31513 return FALSE;
31514 }
31515 #endif
31516
31517 static bfd_boolean
31518 arm_parse_it_mode (const char * str)
31519 {
31520 bfd_boolean ret = TRUE;
31521
31522 if (streq ("arm", str))
31523 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
31524 else if (streq ("thumb", str))
31525 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
31526 else if (streq ("always", str))
31527 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
31528 else if (streq ("never", str))
31529 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
31530 else
31531 {
31532 as_bad (_("unknown implicit IT mode `%s', should be "\
31533 "arm, thumb, always, or never."), str);
31534 ret = FALSE;
31535 }
31536
31537 return ret;
31538 }
31539
31540 static bfd_boolean
31541 arm_ccs_mode (const char * unused ATTRIBUTE_UNUSED)
31542 {
31543 codecomposer_syntax = TRUE;
31544 arm_comment_chars[0] = ';';
31545 arm_line_separator_chars[0] = 0;
31546 return TRUE;
31547 }
31548
31549 struct arm_long_option_table arm_long_opts[] =
31550 {
31551 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
31552 arm_parse_cpu, NULL},
31553 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
31554 arm_parse_arch, NULL},
31555 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
31556 arm_parse_fpu, NULL},
31557 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
31558 arm_parse_float_abi, NULL},
31559 #ifdef OBJ_ELF
31560 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
31561 arm_parse_eabi, NULL},
31562 #endif
31563 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
31564 arm_parse_it_mode, NULL},
31565 {"mccs", N_("\t\t\t TI CodeComposer Studio syntax compatibility mode"),
31566 arm_ccs_mode, NULL},
31567 {"mfp16-format=",
31568 N_("[ieee|alternative]\n\
31569 set the encoding for half precision floating point "
31570 "numbers to IEEE\n\
31571 or Arm alternative format."),
31572 arm_parse_fp16_opt, NULL },
31573 {NULL, NULL, 0, NULL}
31574 };
31575
31576 int
31577 md_parse_option (int c, const char * arg)
31578 {
31579 struct arm_option_table *opt;
31580 const struct arm_legacy_option_table *fopt;
31581 struct arm_long_option_table *lopt;
31582
31583 switch (c)
31584 {
31585 #ifdef OPTION_EB
31586 case OPTION_EB:
31587 target_big_endian = 1;
31588 break;
31589 #endif
31590
31591 #ifdef OPTION_EL
31592 case OPTION_EL:
31593 target_big_endian = 0;
31594 break;
31595 #endif
31596
31597 case OPTION_FIX_V4BX:
31598 fix_v4bx = TRUE;
31599 break;
31600
31601 #ifdef OBJ_ELF
31602 case OPTION_FDPIC:
31603 arm_fdpic = TRUE;
31604 break;
31605 #endif /* OBJ_ELF */
31606
31607 case 'a':
31608 /* Listing option. Just ignore these, we don't support additional
31609 ones. */
31610 return 0;
31611
31612 default:
31613 for (opt = arm_opts; opt->option != NULL; opt++)
31614 {
31615 if (c == opt->option[0]
31616 && ((arg == NULL && opt->option[1] == 0)
31617 || streq (arg, opt->option + 1)))
31618 {
31619 /* If the option is deprecated, tell the user. */
31620 if (warn_on_deprecated && opt->deprecated != NULL)
31621 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
31622 arg ? arg : "", _(opt->deprecated));
31623
31624 if (opt->var != NULL)
31625 *opt->var = opt->value;
31626
31627 return 1;
31628 }
31629 }
31630
31631 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
31632 {
31633 if (c == fopt->option[0]
31634 && ((arg == NULL && fopt->option[1] == 0)
31635 || streq (arg, fopt->option + 1)))
31636 {
31637 /* If the option is deprecated, tell the user. */
31638 if (warn_on_deprecated && fopt->deprecated != NULL)
31639 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
31640 arg ? arg : "", _(fopt->deprecated));
31641
31642 if (fopt->var != NULL)
31643 *fopt->var = &fopt->value;
31644
31645 return 1;
31646 }
31647 }
31648
31649 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
31650 {
31651 /* These options are expected to have an argument. */
31652 if (c == lopt->option[0]
31653 && arg != NULL
31654 && strncmp (arg, lopt->option + 1,
31655 strlen (lopt->option + 1)) == 0)
31656 {
31657 /* If the option is deprecated, tell the user. */
31658 if (warn_on_deprecated && lopt->deprecated != NULL)
31659 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
31660 _(lopt->deprecated));
31661
31662 /* Call the sup-option parser. */
31663 return lopt->func (arg + strlen (lopt->option) - 1);
31664 }
31665 }
31666
31667 return 0;
31668 }
31669
31670 return 1;
31671 }
31672
31673 void
31674 md_show_usage (FILE * fp)
31675 {
31676 struct arm_option_table *opt;
31677 struct arm_long_option_table *lopt;
31678
31679 fprintf (fp, _(" ARM-specific assembler options:\n"));
31680
31681 for (opt = arm_opts; opt->option != NULL; opt++)
31682 if (opt->help != NULL)
31683 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
31684
31685 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
31686 if (lopt->help != NULL)
31687 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
31688
31689 #ifdef OPTION_EB
31690 fprintf (fp, _("\
31691 -EB assemble code for a big-endian cpu\n"));
31692 #endif
31693
31694 #ifdef OPTION_EL
31695 fprintf (fp, _("\
31696 -EL assemble code for a little-endian cpu\n"));
31697 #endif
31698
31699 fprintf (fp, _("\
31700 --fix-v4bx Allow BX in ARMv4 code\n"));
31701
31702 #ifdef OBJ_ELF
31703 fprintf (fp, _("\
31704 --fdpic generate an FDPIC object file\n"));
31705 #endif /* OBJ_ELF */
31706 }
31707
31708 #ifdef OBJ_ELF
31709
31710 typedef struct
31711 {
31712 int val;
31713 arm_feature_set flags;
31714 } cpu_arch_ver_table;
31715
31716 /* Mapping from CPU features to EABI CPU arch values. Table must be sorted
31717 chronologically for architectures, with an exception for ARMv6-M and
31718 ARMv6S-M due to legacy reasons. No new architecture should have a
31719 special case. This allows for build attribute selection results to be
31720 stable when new architectures are added. */
31721 static const cpu_arch_ver_table cpu_arch_ver[] =
31722 {
31723 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V1},
31724 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V2},
31725 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V2S},
31726 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V3},
31727 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V3M},
31728 {TAG_CPU_ARCH_V4, ARM_ARCH_V4xM},
31729 {TAG_CPU_ARCH_V4, ARM_ARCH_V4},
31730 {TAG_CPU_ARCH_V4T, ARM_ARCH_V4TxM},
31731 {TAG_CPU_ARCH_V4T, ARM_ARCH_V4T},
31732 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5xM},
31733 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5},
31734 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5TxM},
31735 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5T},
31736 {TAG_CPU_ARCH_V5TE, ARM_ARCH_V5TExP},
31737 {TAG_CPU_ARCH_V5TE, ARM_ARCH_V5TE},
31738 {TAG_CPU_ARCH_V5TEJ, ARM_ARCH_V5TEJ},
31739 {TAG_CPU_ARCH_V6, ARM_ARCH_V6},
31740 {TAG_CPU_ARCH_V6KZ, ARM_ARCH_V6Z},
31741 {TAG_CPU_ARCH_V6KZ, ARM_ARCH_V6KZ},
31742 {TAG_CPU_ARCH_V6K, ARM_ARCH_V6K},
31743 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6T2},
31744 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6KT2},
31745 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6ZT2},
31746 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6KZT2},
31747
31748 /* When assembling a file with only ARMv6-M or ARMv6S-M instruction, GNU as
31749 always selected build attributes to match those of ARMv6-M
31750 (resp. ARMv6S-M). However, due to these architectures being a strict
31751 subset of ARMv7-M in terms of instructions available, ARMv7-M attributes
31752 would be selected when fully respecting chronology of architectures.
31753 It is thus necessary to make a special case of ARMv6-M and ARMv6S-M and
31754 move them before ARMv7 architectures. */
31755 {TAG_CPU_ARCH_V6_M, ARM_ARCH_V6M},
31756 {TAG_CPU_ARCH_V6S_M, ARM_ARCH_V6SM},
31757
31758 {TAG_CPU_ARCH_V7, ARM_ARCH_V7},
31759 {TAG_CPU_ARCH_V7, ARM_ARCH_V7A},
31760 {TAG_CPU_ARCH_V7, ARM_ARCH_V7R},
31761 {TAG_CPU_ARCH_V7, ARM_ARCH_V7M},
31762 {TAG_CPU_ARCH_V7, ARM_ARCH_V7VE},
31763 {TAG_CPU_ARCH_V7E_M, ARM_ARCH_V7EM},
31764 {TAG_CPU_ARCH_V8, ARM_ARCH_V8A},
31765 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_1A},
31766 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_2A},
31767 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_3A},
31768 {TAG_CPU_ARCH_V8M_BASE, ARM_ARCH_V8M_BASE},
31769 {TAG_CPU_ARCH_V8M_MAIN, ARM_ARCH_V8M_MAIN},
31770 {TAG_CPU_ARCH_V8R, ARM_ARCH_V8R},
31771 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_4A},
31772 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_5A},
31773 {TAG_CPU_ARCH_V8_1M_MAIN, ARM_ARCH_V8_1M_MAIN},
31774 {-1, ARM_ARCH_NONE}
31775 };
31776
31777 /* Set an attribute if it has not already been set by the user. */
31778
31779 static void
31780 aeabi_set_attribute_int (int tag, int value)
31781 {
31782 if (tag < 1
31783 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
31784 || !attributes_set_explicitly[tag])
31785 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
31786 }
31787
31788 static void
31789 aeabi_set_attribute_string (int tag, const char *value)
31790 {
31791 if (tag < 1
31792 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
31793 || !attributes_set_explicitly[tag])
31794 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
31795 }
31796
31797 /* Return whether features in the *NEEDED feature set are available via
31798 extensions for the architecture whose feature set is *ARCH_FSET. */
31799
31800 static bfd_boolean
31801 have_ext_for_needed_feat_p (const arm_feature_set *arch_fset,
31802 const arm_feature_set *needed)
31803 {
31804 int i, nb_allowed_archs;
31805 arm_feature_set ext_fset;
31806 const struct arm_option_extension_value_table *opt;
31807
31808 ext_fset = arm_arch_none;
31809 for (opt = arm_extensions; opt->name != NULL; opt++)
31810 {
31811 /* Extension does not provide any feature we need. */
31812 if (!ARM_CPU_HAS_FEATURE (*needed, opt->merge_value))
31813 continue;
31814
31815 nb_allowed_archs =
31816 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
31817 for (i = 0; i < nb_allowed_archs; i++)
31818 {
31819 /* Empty entry. */
31820 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_arch_any))
31821 break;
31822
31823 /* Extension is available, add it. */
31824 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *arch_fset))
31825 ARM_MERGE_FEATURE_SETS (ext_fset, ext_fset, opt->merge_value);
31826 }
31827 }
31828
31829 /* Can we enable all features in *needed? */
31830 return ARM_FSET_CPU_SUBSET (*needed, ext_fset);
31831 }
31832
31833 /* Select value for Tag_CPU_arch and Tag_CPU_arch_profile build attributes for
31834 a given architecture feature set *ARCH_EXT_FSET including extension feature
31835 set *EXT_FSET. Selection logic used depend on EXACT_MATCH:
31836 - if true, check for an exact match of the architecture modulo extensions;
31837 - otherwise, select build attribute value of the first superset
31838 architecture released so that results remains stable when new architectures
31839 are added.
31840 For -march/-mcpu=all the build attribute value of the most featureful
31841 architecture is returned. Tag_CPU_arch_profile result is returned in
31842 PROFILE. */
31843
31844 static int
31845 get_aeabi_cpu_arch_from_fset (const arm_feature_set *arch_ext_fset,
31846 const arm_feature_set *ext_fset,
31847 char *profile, int exact_match)
31848 {
31849 arm_feature_set arch_fset;
31850 const cpu_arch_ver_table *p_ver, *p_ver_ret = NULL;
31851
31852 /* Select most featureful architecture with all its extensions if building
31853 for -march=all as the feature sets used to set build attributes. */
31854 if (ARM_FEATURE_EQUAL (*arch_ext_fset, arm_arch_any))
31855 {
31856 /* Force revisiting of decision for each new architecture. */
31857 gas_assert (MAX_TAG_CPU_ARCH <= TAG_CPU_ARCH_V8_1M_MAIN);
31858 *profile = 'A';
31859 return TAG_CPU_ARCH_V8;
31860 }
31861
31862 ARM_CLEAR_FEATURE (arch_fset, *arch_ext_fset, *ext_fset);
31863
31864 for (p_ver = cpu_arch_ver; p_ver->val != -1; p_ver++)
31865 {
31866 arm_feature_set known_arch_fset;
31867
31868 ARM_CLEAR_FEATURE (known_arch_fset, p_ver->flags, fpu_any);
31869 if (exact_match)
31870 {
31871 /* Base architecture match user-specified architecture and
31872 extensions, eg. ARMv6S-M matching -march=armv6-m+os. */
31873 if (ARM_FEATURE_EQUAL (*arch_ext_fset, known_arch_fset))
31874 {
31875 p_ver_ret = p_ver;
31876 goto found;
31877 }
31878 /* Base architecture match user-specified architecture only
31879 (eg. ARMv6-M in the same case as above). Record it in case we
31880 find a match with above condition. */
31881 else if (p_ver_ret == NULL
31882 && ARM_FEATURE_EQUAL (arch_fset, known_arch_fset))
31883 p_ver_ret = p_ver;
31884 }
31885 else
31886 {
31887
31888 /* Architecture has all features wanted. */
31889 if (ARM_FSET_CPU_SUBSET (arch_fset, known_arch_fset))
31890 {
31891 arm_feature_set added_fset;
31892
31893 /* Compute features added by this architecture over the one
31894 recorded in p_ver_ret. */
31895 if (p_ver_ret != NULL)
31896 ARM_CLEAR_FEATURE (added_fset, known_arch_fset,
31897 p_ver_ret->flags);
31898 /* First architecture that match incl. with extensions, or the
31899 only difference in features over the recorded match is
31900 features that were optional and are now mandatory. */
31901 if (p_ver_ret == NULL
31902 || ARM_FSET_CPU_SUBSET (added_fset, arch_fset))
31903 {
31904 p_ver_ret = p_ver;
31905 goto found;
31906 }
31907 }
31908 else if (p_ver_ret == NULL)
31909 {
31910 arm_feature_set needed_ext_fset;
31911
31912 ARM_CLEAR_FEATURE (needed_ext_fset, arch_fset, known_arch_fset);
31913
31914 /* Architecture has all features needed when using some
31915 extensions. Record it and continue searching in case there
31916 exist an architecture providing all needed features without
31917 the need for extensions (eg. ARMv6S-M Vs ARMv6-M with
31918 OS extension). */
31919 if (have_ext_for_needed_feat_p (&known_arch_fset,
31920 &needed_ext_fset))
31921 p_ver_ret = p_ver;
31922 }
31923 }
31924 }
31925
31926 if (p_ver_ret == NULL)
31927 return -1;
31928
31929 found:
31930 /* Tag_CPU_arch_profile. */
31931 if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7a)
31932 || ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8)
31933 || (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_atomics)
31934 && !ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8m_m_only)))
31935 *profile = 'A';
31936 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7r))
31937 *profile = 'R';
31938 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_m))
31939 *profile = 'M';
31940 else
31941 *profile = '\0';
31942 return p_ver_ret->val;
31943 }
31944
31945 /* Set the public EABI object attributes. */
31946
31947 static void
31948 aeabi_set_public_attributes (void)
31949 {
31950 char profile = '\0';
31951 int arch = -1;
31952 int virt_sec = 0;
31953 int fp16_optional = 0;
31954 int skip_exact_match = 0;
31955 arm_feature_set flags, flags_arch, flags_ext;
31956
31957 /* Autodetection mode, choose the architecture based the instructions
31958 actually used. */
31959 if (no_cpu_selected ())
31960 {
31961 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
31962
31963 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
31964 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
31965
31966 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
31967 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
31968
31969 /* Code run during relaxation relies on selected_cpu being set. */
31970 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
31971 flags_ext = arm_arch_none;
31972 ARM_CLEAR_FEATURE (selected_arch, flags_arch, flags_ext);
31973 selected_ext = flags_ext;
31974 selected_cpu = flags;
31975 }
31976 /* Otherwise, choose the architecture based on the capabilities of the
31977 requested cpu. */
31978 else
31979 {
31980 ARM_MERGE_FEATURE_SETS (flags_arch, selected_arch, selected_ext);
31981 ARM_CLEAR_FEATURE (flags_arch, flags_arch, fpu_any);
31982 flags_ext = selected_ext;
31983 flags = selected_cpu;
31984 }
31985 ARM_MERGE_FEATURE_SETS (flags, flags, selected_fpu);
31986
31987 /* Allow the user to override the reported architecture. */
31988 if (!ARM_FEATURE_ZERO (selected_object_arch))
31989 {
31990 ARM_CLEAR_FEATURE (flags_arch, selected_object_arch, fpu_any);
31991 flags_ext = arm_arch_none;
31992 }
31993 else
31994 skip_exact_match = ARM_FEATURE_EQUAL (selected_cpu, arm_arch_any);
31995
31996 /* When this function is run again after relaxation has happened there is no
31997 way to determine whether an architecture or CPU was specified by the user:
31998 - selected_cpu is set above for relaxation to work;
31999 - march_cpu_opt is not set if only -mcpu or .cpu is used;
32000 - mcpu_cpu_opt is set to arm_arch_any for autodetection.
32001 Therefore, if not in -march=all case we first try an exact match and fall
32002 back to autodetection. */
32003 if (!skip_exact_match)
32004 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 1);
32005 if (arch == -1)
32006 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 0);
32007 if (arch == -1)
32008 as_bad (_("no architecture contains all the instructions used\n"));
32009
32010 /* Tag_CPU_name. */
32011 if (selected_cpu_name[0])
32012 {
32013 char *q;
32014
32015 q = selected_cpu_name;
32016 if (strncmp (q, "armv", 4) == 0)
32017 {
32018 int i;
32019
32020 q += 4;
32021 for (i = 0; q[i]; i++)
32022 q[i] = TOUPPER (q[i]);
32023 }
32024 aeabi_set_attribute_string (Tag_CPU_name, q);
32025 }
32026
32027 /* Tag_CPU_arch. */
32028 aeabi_set_attribute_int (Tag_CPU_arch, arch);
32029
32030 /* Tag_CPU_arch_profile. */
32031 if (profile != '\0')
32032 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
32033
32034 /* Tag_DSP_extension. */
32035 if (ARM_CPU_HAS_FEATURE (selected_ext, arm_ext_dsp))
32036 aeabi_set_attribute_int (Tag_DSP_extension, 1);
32037
32038 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
32039 /* Tag_ARM_ISA_use. */
32040 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
32041 || ARM_FEATURE_ZERO (flags_arch))
32042 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
32043
32044 /* Tag_THUMB_ISA_use. */
32045 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
32046 || ARM_FEATURE_ZERO (flags_arch))
32047 {
32048 int thumb_isa_use;
32049
32050 if (!ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
32051 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only))
32052 thumb_isa_use = 3;
32053 else if (ARM_CPU_HAS_FEATURE (flags, arm_arch_t2))
32054 thumb_isa_use = 2;
32055 else
32056 thumb_isa_use = 1;
32057 aeabi_set_attribute_int (Tag_THUMB_ISA_use, thumb_isa_use);
32058 }
32059
32060 /* Tag_VFP_arch. */
32061 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
32062 aeabi_set_attribute_int (Tag_VFP_arch,
32063 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
32064 ? 7 : 8);
32065 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
32066 aeabi_set_attribute_int (Tag_VFP_arch,
32067 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
32068 ? 5 : 6);
32069 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
32070 {
32071 fp16_optional = 1;
32072 aeabi_set_attribute_int (Tag_VFP_arch, 3);
32073 }
32074 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
32075 {
32076 aeabi_set_attribute_int (Tag_VFP_arch, 4);
32077 fp16_optional = 1;
32078 }
32079 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
32080 aeabi_set_attribute_int (Tag_VFP_arch, 2);
32081 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
32082 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
32083 aeabi_set_attribute_int (Tag_VFP_arch, 1);
32084
32085 /* Tag_ABI_HardFP_use. */
32086 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
32087 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
32088 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
32089
32090 /* Tag_WMMX_arch. */
32091 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
32092 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
32093 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
32094 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
32095
32096 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
32097 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v8_1))
32098 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 4);
32099 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
32100 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
32101 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
32102 {
32103 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
32104 {
32105 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
32106 }
32107 else
32108 {
32109 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
32110 fp16_optional = 1;
32111 }
32112 }
32113
32114 if (ARM_CPU_HAS_FEATURE (flags, mve_fp_ext))
32115 aeabi_set_attribute_int (Tag_MVE_arch, 2);
32116 else if (ARM_CPU_HAS_FEATURE (flags, mve_ext))
32117 aeabi_set_attribute_int (Tag_MVE_arch, 1);
32118
32119 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
32120 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
32121 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
32122
32123 /* Tag_DIV_use.
32124
32125 We set Tag_DIV_use to two when integer divide instructions have been used
32126 in ARM state, or when Thumb integer divide instructions have been used,
32127 but we have no architecture profile set, nor have we any ARM instructions.
32128
32129 For ARMv8-A and ARMv8-M we set the tag to 0 as integer divide is implied
32130 by the base architecture.
32131
32132 For new architectures we will have to check these tests. */
32133 gas_assert (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
32134 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
32135 || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m))
32136 aeabi_set_attribute_int (Tag_DIV_use, 0);
32137 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
32138 || (profile == '\0'
32139 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
32140 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
32141 aeabi_set_attribute_int (Tag_DIV_use, 2);
32142
32143 /* Tag_MP_extension_use. */
32144 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
32145 aeabi_set_attribute_int (Tag_MPextension_use, 1);
32146
32147 /* Tag Virtualization_use. */
32148 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
32149 virt_sec |= 1;
32150 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
32151 virt_sec |= 2;
32152 if (virt_sec != 0)
32153 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
32154
32155 if (fp16_format != ARM_FP16_FORMAT_DEFAULT)
32156 aeabi_set_attribute_int (Tag_ABI_FP_16bit_format, fp16_format);
32157 }
32158
32159 /* Post relaxation hook. Recompute ARM attributes now that relaxation is
32160 finished and free extension feature bits which will not be used anymore. */
32161
32162 void
32163 arm_md_post_relax (void)
32164 {
32165 aeabi_set_public_attributes ();
32166 XDELETE (mcpu_ext_opt);
32167 mcpu_ext_opt = NULL;
32168 XDELETE (march_ext_opt);
32169 march_ext_opt = NULL;
32170 }
32171
32172 /* Add the default contents for the .ARM.attributes section. */
32173
32174 void
32175 arm_md_end (void)
32176 {
32177 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
32178 return;
32179
32180 aeabi_set_public_attributes ();
32181 }
32182 #endif /* OBJ_ELF */
32183
32184 /* Parse a .cpu directive. */
32185
32186 static void
32187 s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
32188 {
32189 const struct arm_cpu_option_table *opt;
32190 char *name;
32191 char saved_char;
32192
32193 name = input_line_pointer;
32194 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
32195 input_line_pointer++;
32196 saved_char = *input_line_pointer;
32197 *input_line_pointer = 0;
32198
32199 /* Skip the first "all" entry. */
32200 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
32201 if (streq (opt->name, name))
32202 {
32203 selected_arch = opt->value;
32204 selected_ext = opt->ext;
32205 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
32206 if (opt->canonical_name)
32207 strcpy (selected_cpu_name, opt->canonical_name);
32208 else
32209 {
32210 int i;
32211 for (i = 0; opt->name[i]; i++)
32212 selected_cpu_name[i] = TOUPPER (opt->name[i]);
32213
32214 selected_cpu_name[i] = 0;
32215 }
32216 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
32217
32218 *input_line_pointer = saved_char;
32219 demand_empty_rest_of_line ();
32220 return;
32221 }
32222 as_bad (_("unknown cpu `%s'"), name);
32223 *input_line_pointer = saved_char;
32224 ignore_rest_of_line ();
32225 }
32226
32227 /* Parse a .arch directive. */
32228
32229 static void
32230 s_arm_arch (int ignored ATTRIBUTE_UNUSED)
32231 {
32232 const struct arm_arch_option_table *opt;
32233 char saved_char;
32234 char *name;
32235
32236 name = input_line_pointer;
32237 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
32238 input_line_pointer++;
32239 saved_char = *input_line_pointer;
32240 *input_line_pointer = 0;
32241
32242 /* Skip the first "all" entry. */
32243 for (opt = arm_archs + 1; opt->name != NULL; opt++)
32244 if (streq (opt->name, name))
32245 {
32246 selected_arch = opt->value;
32247 selected_ext = arm_arch_none;
32248 selected_cpu = selected_arch;
32249 strcpy (selected_cpu_name, opt->name);
32250 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
32251 *input_line_pointer = saved_char;
32252 demand_empty_rest_of_line ();
32253 return;
32254 }
32255
32256 as_bad (_("unknown architecture `%s'\n"), name);
32257 *input_line_pointer = saved_char;
32258 ignore_rest_of_line ();
32259 }
32260
32261 /* Parse a .object_arch directive. */
32262
32263 static void
32264 s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
32265 {
32266 const struct arm_arch_option_table *opt;
32267 char saved_char;
32268 char *name;
32269
32270 name = input_line_pointer;
32271 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
32272 input_line_pointer++;
32273 saved_char = *input_line_pointer;
32274 *input_line_pointer = 0;
32275
32276 /* Skip the first "all" entry. */
32277 for (opt = arm_archs + 1; opt->name != NULL; opt++)
32278 if (streq (opt->name, name))
32279 {
32280 selected_object_arch = opt->value;
32281 *input_line_pointer = saved_char;
32282 demand_empty_rest_of_line ();
32283 return;
32284 }
32285
32286 as_bad (_("unknown architecture `%s'\n"), name);
32287 *input_line_pointer = saved_char;
32288 ignore_rest_of_line ();
32289 }
32290
32291 /* Parse a .arch_extension directive. */
32292
32293 static void
32294 s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
32295 {
32296 const struct arm_option_extension_value_table *opt;
32297 char saved_char;
32298 char *name;
32299 int adding_value = 1;
32300
32301 name = input_line_pointer;
32302 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
32303 input_line_pointer++;
32304 saved_char = *input_line_pointer;
32305 *input_line_pointer = 0;
32306
32307 if (strlen (name) >= 2
32308 && strncmp (name, "no", 2) == 0)
32309 {
32310 adding_value = 0;
32311 name += 2;
32312 }
32313
32314 for (opt = arm_extensions; opt->name != NULL; opt++)
32315 if (streq (opt->name, name))
32316 {
32317 int i, nb_allowed_archs =
32318 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[i]);
32319 for (i = 0; i < nb_allowed_archs; i++)
32320 {
32321 /* Empty entry. */
32322 if (ARM_CPU_IS_ANY (opt->allowed_archs[i]))
32323 continue;
32324 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], selected_arch))
32325 break;
32326 }
32327
32328 if (i == nb_allowed_archs)
32329 {
32330 as_bad (_("architectural extension `%s' is not allowed for the "
32331 "current base architecture"), name);
32332 break;
32333 }
32334
32335 if (adding_value)
32336 ARM_MERGE_FEATURE_SETS (selected_ext, selected_ext,
32337 opt->merge_value);
32338 else
32339 ARM_CLEAR_FEATURE (selected_ext, selected_ext, opt->clear_value);
32340
32341 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
32342 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
32343 *input_line_pointer = saved_char;
32344 demand_empty_rest_of_line ();
32345 /* Allowing Thumb division instructions for ARMv7 in autodetection rely
32346 on this return so that duplicate extensions (extensions with the
32347 same name as a previous extension in the list) are not considered
32348 for command-line parsing. */
32349 return;
32350 }
32351
32352 if (opt->name == NULL)
32353 as_bad (_("unknown architecture extension `%s'\n"), name);
32354
32355 *input_line_pointer = saved_char;
32356 ignore_rest_of_line ();
32357 }
32358
32359 /* Parse a .fpu directive. */
32360
32361 static void
32362 s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
32363 {
32364 const struct arm_option_fpu_value_table *opt;
32365 char saved_char;
32366 char *name;
32367
32368 name = input_line_pointer;
32369 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
32370 input_line_pointer++;
32371 saved_char = *input_line_pointer;
32372 *input_line_pointer = 0;
32373
32374 for (opt = arm_fpus; opt->name != NULL; opt++)
32375 if (streq (opt->name, name))
32376 {
32377 selected_fpu = opt->value;
32378 #ifndef CPU_DEFAULT
32379 if (no_cpu_selected ())
32380 ARM_MERGE_FEATURE_SETS (cpu_variant, arm_arch_any, selected_fpu);
32381 else
32382 #endif
32383 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
32384 *input_line_pointer = saved_char;
32385 demand_empty_rest_of_line ();
32386 return;
32387 }
32388
32389 as_bad (_("unknown floating point format `%s'\n"), name);
32390 *input_line_pointer = saved_char;
32391 ignore_rest_of_line ();
32392 }
32393
32394 /* Copy symbol information. */
32395
32396 void
32397 arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
32398 {
32399 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
32400 }
32401
32402 #ifdef OBJ_ELF
32403 /* Given a symbolic attribute NAME, return the proper integer value.
32404 Returns -1 if the attribute is not known. */
32405
32406 int
32407 arm_convert_symbolic_attribute (const char *name)
32408 {
32409 static const struct
32410 {
32411 const char * name;
32412 const int tag;
32413 }
32414 attribute_table[] =
32415 {
32416 /* When you modify this table you should
32417 also modify the list in doc/c-arm.texi. */
32418 #define T(tag) {#tag, tag}
32419 T (Tag_CPU_raw_name),
32420 T (Tag_CPU_name),
32421 T (Tag_CPU_arch),
32422 T (Tag_CPU_arch_profile),
32423 T (Tag_ARM_ISA_use),
32424 T (Tag_THUMB_ISA_use),
32425 T (Tag_FP_arch),
32426 T (Tag_VFP_arch),
32427 T (Tag_WMMX_arch),
32428 T (Tag_Advanced_SIMD_arch),
32429 T (Tag_PCS_config),
32430 T (Tag_ABI_PCS_R9_use),
32431 T (Tag_ABI_PCS_RW_data),
32432 T (Tag_ABI_PCS_RO_data),
32433 T (Tag_ABI_PCS_GOT_use),
32434 T (Tag_ABI_PCS_wchar_t),
32435 T (Tag_ABI_FP_rounding),
32436 T (Tag_ABI_FP_denormal),
32437 T (Tag_ABI_FP_exceptions),
32438 T (Tag_ABI_FP_user_exceptions),
32439 T (Tag_ABI_FP_number_model),
32440 T (Tag_ABI_align_needed),
32441 T (Tag_ABI_align8_needed),
32442 T (Tag_ABI_align_preserved),
32443 T (Tag_ABI_align8_preserved),
32444 T (Tag_ABI_enum_size),
32445 T (Tag_ABI_HardFP_use),
32446 T (Tag_ABI_VFP_args),
32447 T (Tag_ABI_WMMX_args),
32448 T (Tag_ABI_optimization_goals),
32449 T (Tag_ABI_FP_optimization_goals),
32450 T (Tag_compatibility),
32451 T (Tag_CPU_unaligned_access),
32452 T (Tag_FP_HP_extension),
32453 T (Tag_VFP_HP_extension),
32454 T (Tag_ABI_FP_16bit_format),
32455 T (Tag_MPextension_use),
32456 T (Tag_DIV_use),
32457 T (Tag_nodefaults),
32458 T (Tag_also_compatible_with),
32459 T (Tag_conformance),
32460 T (Tag_T2EE_use),
32461 T (Tag_Virtualization_use),
32462 T (Tag_DSP_extension),
32463 T (Tag_MVE_arch),
32464 /* We deliberately do not include Tag_MPextension_use_legacy. */
32465 #undef T
32466 };
32467 unsigned int i;
32468
32469 if (name == NULL)
32470 return -1;
32471
32472 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
32473 if (streq (name, attribute_table[i].name))
32474 return attribute_table[i].tag;
32475
32476 return -1;
32477 }
32478
32479 /* Apply sym value for relocations only in the case that they are for
32480 local symbols in the same segment as the fixup and you have the
32481 respective architectural feature for blx and simple switches. */
32482
32483 int
32484 arm_apply_sym_value (struct fix * fixP, segT this_seg)
32485 {
32486 if (fixP->fx_addsy
32487 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
32488 /* PR 17444: If the local symbol is in a different section then a reloc
32489 will always be generated for it, so applying the symbol value now
32490 will result in a double offset being stored in the relocation. */
32491 && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
32492 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
32493 {
32494 switch (fixP->fx_r_type)
32495 {
32496 case BFD_RELOC_ARM_PCREL_BLX:
32497 case BFD_RELOC_THUMB_PCREL_BRANCH23:
32498 if (ARM_IS_FUNC (fixP->fx_addsy))
32499 return 1;
32500 break;
32501
32502 case BFD_RELOC_ARM_PCREL_CALL:
32503 case BFD_RELOC_THUMB_PCREL_BLX:
32504 if (THUMB_IS_FUNC (fixP->fx_addsy))
32505 return 1;
32506 break;
32507
32508 default:
32509 break;
32510 }
32511
32512 }
32513 return 0;
32514 }
32515 #endif /* OBJ_ELF */
This page took 1.070652 seconds and 5 git commands to generate.