1cc0cea25e77e4fb3bc53af70117b8f50db86c5e
[binutils-gdb.git] / gas / config / tc-arm.c
1 /* tc-arm.c -- Assemble for the ARM
2 Copyright (C) 1994-2020 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 #include "cpu-arm.h"
36
37 #ifdef OBJ_ELF
38 #include "elf/arm.h"
39 #include "dw2gencfi.h"
40 #endif
41
42 #include "dwarf2dbg.h"
43
44 #ifdef OBJ_ELF
45 /* Must be at least the size of the largest unwind opcode (currently two). */
46 #define ARM_OPCODE_CHUNK_SIZE 8
47
48 /* This structure holds the unwinding state. */
49
50 static struct
51 {
52 symbolS * proc_start;
53 symbolS * table_entry;
54 symbolS * personality_routine;
55 int personality_index;
56 /* The segment containing the function. */
57 segT saved_seg;
58 subsegT saved_subseg;
59 /* Opcodes generated from this function. */
60 unsigned char * opcodes;
61 int opcode_count;
62 int opcode_alloc;
63 /* The number of bytes pushed to the stack. */
64 offsetT frame_size;
65 /* We don't add stack adjustment opcodes immediately so that we can merge
66 multiple adjustments. We can also omit the final adjustment
67 when using a frame pointer. */
68 offsetT pending_offset;
69 /* These two fields are set by both unwind_movsp and unwind_setfp. They
70 hold the reg+offset to use when restoring sp from a frame pointer. */
71 offsetT fp_offset;
72 int fp_reg;
73 /* Nonzero if an unwind_setfp directive has been seen. */
74 unsigned fp_used:1;
75 /* Nonzero if the last opcode restores sp from fp_reg. */
76 unsigned sp_restored:1;
77 } unwind;
78
79 /* Whether --fdpic was given. */
80 static int arm_fdpic;
81
82 #endif /* OBJ_ELF */
83
84 /* Results from operand parsing worker functions. */
85
86 typedef enum
87 {
88 PARSE_OPERAND_SUCCESS,
89 PARSE_OPERAND_FAIL,
90 PARSE_OPERAND_FAIL_NO_BACKTRACK
91 } parse_operand_result;
92
93 enum arm_float_abi
94 {
95 ARM_FLOAT_ABI_HARD,
96 ARM_FLOAT_ABI_SOFTFP,
97 ARM_FLOAT_ABI_SOFT
98 };
99
100 /* Types of processor to assemble for. */
101 #ifndef CPU_DEFAULT
102 /* The code that was here used to select a default CPU depending on compiler
103 pre-defines which were only present when doing native builds, thus
104 changing gas' default behaviour depending upon the build host.
105
106 If you have a target that requires a default CPU option then the you
107 should define CPU_DEFAULT here. */
108 #endif
109
110 /* Perform range checks on positive and negative overflows by checking if the
111 VALUE given fits within the range of an BITS sized immediate. */
112 static bfd_boolean out_of_range_p (offsetT value, offsetT bits)
113 {
114 gas_assert (bits < (offsetT)(sizeof (value) * 8));
115 return (value & ~((1 << bits)-1))
116 && ((value & ~((1 << bits)-1)) != ~((1 << bits)-1));
117 }
118
119 #ifndef FPU_DEFAULT
120 # ifdef TE_LINUX
121 # define FPU_DEFAULT FPU_ARCH_FPA
122 # elif defined (TE_NetBSD)
123 # ifdef OBJ_ELF
124 # define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
125 # else
126 /* Legacy a.out format. */
127 # define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
128 # endif
129 # elif defined (TE_VXWORKS)
130 # define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
131 # else
132 /* For backwards compatibility, default to FPA. */
133 # define FPU_DEFAULT FPU_ARCH_FPA
134 # endif
135 #endif /* ifndef FPU_DEFAULT */
136
137 #define streq(a, b) (strcmp (a, b) == 0)
138
139 /* Current set of feature bits available (CPU+FPU). Different from
140 selected_cpu + selected_fpu in case of autodetection since the CPU
141 feature bits are then all set. */
142 static arm_feature_set cpu_variant;
143 /* Feature bits used in each execution state. Used to set build attribute
144 (in particular Tag_*_ISA_use) in CPU autodetection mode. */
145 static arm_feature_set arm_arch_used;
146 static arm_feature_set thumb_arch_used;
147
148 /* Flags stored in private area of BFD structure. */
149 static int uses_apcs_26 = FALSE;
150 static int atpcs = FALSE;
151 static int support_interwork = FALSE;
152 static int uses_apcs_float = FALSE;
153 static int pic_code = FALSE;
154 static int fix_v4bx = FALSE;
155 /* Warn on using deprecated features. */
156 static int warn_on_deprecated = TRUE;
157 static int warn_on_restrict_it = FALSE;
158
159 /* Understand CodeComposer Studio assembly syntax. */
160 bfd_boolean codecomposer_syntax = FALSE;
161
162 /* Variables that we set while parsing command-line options. Once all
163 options have been read we re-process these values to set the real
164 assembly flags. */
165
166 /* CPU and FPU feature bits set for legacy CPU and FPU options (eg. -marm1
167 instead of -mcpu=arm1). */
168 static const arm_feature_set *legacy_cpu = NULL;
169 static const arm_feature_set *legacy_fpu = NULL;
170
171 /* CPU, extension and FPU feature bits selected by -mcpu. */
172 static const arm_feature_set *mcpu_cpu_opt = NULL;
173 static arm_feature_set *mcpu_ext_opt = NULL;
174 static const arm_feature_set *mcpu_fpu_opt = NULL;
175
176 /* CPU, extension and FPU feature bits selected by -march. */
177 static const arm_feature_set *march_cpu_opt = NULL;
178 static arm_feature_set *march_ext_opt = NULL;
179 static const arm_feature_set *march_fpu_opt = NULL;
180
181 /* Feature bits selected by -mfpu. */
182 static const arm_feature_set *mfpu_opt = NULL;
183
184 /* Constants for known architecture features. */
185 static const arm_feature_set fpu_default = FPU_DEFAULT;
186 static const arm_feature_set fpu_arch_vfp_v1 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V1;
187 static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
188 static const arm_feature_set fpu_arch_vfp_v3 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V3;
189 static const arm_feature_set fpu_arch_neon_v1 ATTRIBUTE_UNUSED = FPU_ARCH_NEON_V1;
190 static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
191 static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
192 #ifdef OBJ_ELF
193 static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
194 #endif
195 static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
196
197 #ifdef CPU_DEFAULT
198 static const arm_feature_set cpu_default = CPU_DEFAULT;
199 #endif
200
201 static const arm_feature_set arm_ext_v1 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
202 static const arm_feature_set arm_ext_v2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V2);
203 static const arm_feature_set arm_ext_v2s = ARM_FEATURE_CORE_LOW (ARM_EXT_V2S);
204 static const arm_feature_set arm_ext_v3 = ARM_FEATURE_CORE_LOW (ARM_EXT_V3);
205 static const arm_feature_set arm_ext_v3m = ARM_FEATURE_CORE_LOW (ARM_EXT_V3M);
206 static const arm_feature_set arm_ext_v4 = ARM_FEATURE_CORE_LOW (ARM_EXT_V4);
207 static const arm_feature_set arm_ext_v4t = ARM_FEATURE_CORE_LOW (ARM_EXT_V4T);
208 static const arm_feature_set arm_ext_v5 = ARM_FEATURE_CORE_LOW (ARM_EXT_V5);
209 static const arm_feature_set arm_ext_v4t_5 =
210 ARM_FEATURE_CORE_LOW (ARM_EXT_V4T | ARM_EXT_V5);
211 static const arm_feature_set arm_ext_v5t = ARM_FEATURE_CORE_LOW (ARM_EXT_V5T);
212 static const arm_feature_set arm_ext_v5e = ARM_FEATURE_CORE_LOW (ARM_EXT_V5E);
213 static const arm_feature_set arm_ext_v5exp = ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP);
214 static const arm_feature_set arm_ext_v5j = ARM_FEATURE_CORE_LOW (ARM_EXT_V5J);
215 static const arm_feature_set arm_ext_v6 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6);
216 static const arm_feature_set arm_ext_v6k = ARM_FEATURE_CORE_LOW (ARM_EXT_V6K);
217 static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6T2);
218 /* Only for compatability of hint instructions. */
219 static const arm_feature_set arm_ext_v6k_v6t2 =
220 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K | ARM_EXT_V6T2);
221 static const arm_feature_set arm_ext_v6_notm =
222 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_NOTM);
223 static const arm_feature_set arm_ext_v6_dsp =
224 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_DSP);
225 static const arm_feature_set arm_ext_barrier =
226 ARM_FEATURE_CORE_LOW (ARM_EXT_BARRIER);
227 static const arm_feature_set arm_ext_msr =
228 ARM_FEATURE_CORE_LOW (ARM_EXT_THUMB_MSR);
229 static const arm_feature_set arm_ext_div = ARM_FEATURE_CORE_LOW (ARM_EXT_DIV);
230 static const arm_feature_set arm_ext_v7 = ARM_FEATURE_CORE_LOW (ARM_EXT_V7);
231 static const arm_feature_set arm_ext_v7a = ARM_FEATURE_CORE_LOW (ARM_EXT_V7A);
232 static const arm_feature_set arm_ext_v7r = ARM_FEATURE_CORE_LOW (ARM_EXT_V7R);
233 static const arm_feature_set arm_ext_v8r = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8R);
234 #ifdef OBJ_ELF
235 static const arm_feature_set ATTRIBUTE_UNUSED arm_ext_v7m = ARM_FEATURE_CORE_LOW (ARM_EXT_V7M);
236 #endif
237 static const arm_feature_set arm_ext_v8 = ARM_FEATURE_CORE_LOW (ARM_EXT_V8);
238 static const arm_feature_set arm_ext_m =
239 ARM_FEATURE_CORE (ARM_EXT_V6M | ARM_EXT_V7M,
240 ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
241 static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
242 static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
243 static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
244 static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
245 static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
246 static const arm_feature_set arm_ext_pan = ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN);
247 static const arm_feature_set arm_ext_v8m = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M);
248 static const arm_feature_set arm_ext_v8m_main =
249 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M_MAIN);
250 static const arm_feature_set arm_ext_v8_1m_main =
251 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN);
252 /* Instructions in ARMv8-M only found in M profile architectures. */
253 static const arm_feature_set arm_ext_v8m_m_only =
254 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
255 static const arm_feature_set arm_ext_v6t2_v8m =
256 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V6T2_V8M);
257 /* Instructions shared between ARMv8-A and ARMv8-M. */
258 static const arm_feature_set arm_ext_atomics =
259 ARM_FEATURE_CORE_HIGH (ARM_EXT2_ATOMICS);
260 #ifdef OBJ_ELF
261 /* DSP instructions Tag_DSP_extension refers to. */
262 static const arm_feature_set arm_ext_dsp =
263 ARM_FEATURE_CORE_LOW (ARM_EXT_V5E | ARM_EXT_V5ExP | ARM_EXT_V6_DSP);
264 #endif
265 static const arm_feature_set arm_ext_ras =
266 ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS);
267 /* FP16 instructions. */
268 static const arm_feature_set arm_ext_fp16 =
269 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST);
270 static const arm_feature_set arm_ext_fp16_fml =
271 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_FML);
272 static const arm_feature_set arm_ext_v8_2 =
273 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_2A);
274 static const arm_feature_set arm_ext_v8_3 =
275 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_3A);
276 static const arm_feature_set arm_ext_sb =
277 ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB);
278 static const arm_feature_set arm_ext_predres =
279 ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES);
280 static const arm_feature_set arm_ext_bf16 =
281 ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16);
282 static const arm_feature_set arm_ext_i8mm =
283 ARM_FEATURE_CORE_HIGH (ARM_EXT2_I8MM);
284 static const arm_feature_set arm_ext_crc =
285 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC);
286 static const arm_feature_set arm_ext_cde =
287 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE);
288 static const arm_feature_set arm_ext_cde0 =
289 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE0);
290 static const arm_feature_set arm_ext_cde1 =
291 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE1);
292 static const arm_feature_set arm_ext_cde2 =
293 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE2);
294 static const arm_feature_set arm_ext_cde3 =
295 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE3);
296 static const arm_feature_set arm_ext_cde4 =
297 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE4);
298 static const arm_feature_set arm_ext_cde5 =
299 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE5);
300 static const arm_feature_set arm_ext_cde6 =
301 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE6);
302 static const arm_feature_set arm_ext_cde7 =
303 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE7);
304
305 static const arm_feature_set arm_arch_any = ARM_ANY;
306 static const arm_feature_set fpu_any = FPU_ANY;
307 static const arm_feature_set arm_arch_full ATTRIBUTE_UNUSED = ARM_FEATURE (-1, -1, -1);
308 static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
309 static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
310
311 static const arm_feature_set arm_cext_iwmmxt2 =
312 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
313 static const arm_feature_set arm_cext_iwmmxt =
314 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
315 static const arm_feature_set arm_cext_xscale =
316 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
317 static const arm_feature_set arm_cext_maverick =
318 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
319 static const arm_feature_set fpu_fpa_ext_v1 =
320 ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
321 static const arm_feature_set fpu_fpa_ext_v2 =
322 ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
323 static const arm_feature_set fpu_vfp_ext_v1xd =
324 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
325 static const arm_feature_set fpu_vfp_ext_v1 =
326 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
327 static const arm_feature_set fpu_vfp_ext_v2 =
328 ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
329 static const arm_feature_set fpu_vfp_ext_v3xd =
330 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
331 static const arm_feature_set fpu_vfp_ext_v3 =
332 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
333 static const arm_feature_set fpu_vfp_ext_d32 =
334 ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
335 static const arm_feature_set fpu_neon_ext_v1 =
336 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
337 static const arm_feature_set fpu_vfp_v3_or_neon_ext =
338 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
339 static const arm_feature_set mve_ext =
340 ARM_FEATURE_CORE_HIGH (ARM_EXT2_MVE);
341 static const arm_feature_set mve_fp_ext =
342 ARM_FEATURE_CORE_HIGH (ARM_EXT2_MVE_FP);
343 /* Note: This has more than one bit set, which means using it with
344 mark_feature_used (which returns if *any* of the bits are set in the current
345 cpu variant) can give surprising results. */
346 static const arm_feature_set armv8m_fp =
347 ARM_FEATURE_COPROC (FPU_VFP_V5_SP_D16);
348 #ifdef OBJ_ELF
349 static const arm_feature_set fpu_vfp_fp16 =
350 ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
351 static const arm_feature_set fpu_neon_ext_fma =
352 ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
353 #endif
354 static const arm_feature_set fpu_vfp_ext_fma =
355 ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
356 static const arm_feature_set fpu_vfp_ext_armv8 =
357 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
358 static const arm_feature_set fpu_vfp_ext_armv8xd =
359 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
360 static const arm_feature_set fpu_neon_ext_armv8 =
361 ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
362 static const arm_feature_set fpu_crypto_ext_armv8 =
363 ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
364 static const arm_feature_set fpu_neon_ext_v8_1 =
365 ARM_FEATURE_COPROC (FPU_NEON_EXT_RDMA);
366 static const arm_feature_set fpu_neon_ext_dotprod =
367 ARM_FEATURE_COPROC (FPU_NEON_EXT_DOTPROD);
368
369 static int mfloat_abi_opt = -1;
370 /* Architecture feature bits selected by the last -mcpu/-march or .cpu/.arch
371 directive. */
372 static arm_feature_set selected_arch = ARM_ARCH_NONE;
373 /* Extension feature bits selected by the last -mcpu/-march or .arch_extension
374 directive. */
375 static arm_feature_set selected_ext = ARM_ARCH_NONE;
376 /* Feature bits selected by the last -mcpu/-march or by the combination of the
377 last .cpu/.arch directive .arch_extension directives since that
378 directive. */
379 static arm_feature_set selected_cpu = ARM_ARCH_NONE;
380 /* FPU feature bits selected by the last -mfpu or .fpu directive. */
381 static arm_feature_set selected_fpu = FPU_NONE;
382 /* Feature bits selected by the last .object_arch directive. */
383 static arm_feature_set selected_object_arch = ARM_ARCH_NONE;
384 /* Must be long enough to hold any of the names in arm_cpus. */
385 static const struct arm_ext_table * selected_ctx_ext_table = NULL;
386 static char selected_cpu_name[20];
387
388 extern FLONUM_TYPE generic_floating_point_number;
389
390 /* Return if no cpu was selected on command-line. */
391 static bfd_boolean
392 no_cpu_selected (void)
393 {
394 return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
395 }
396
397 #ifdef OBJ_ELF
398 # ifdef EABI_DEFAULT
399 static int meabi_flags = EABI_DEFAULT;
400 # else
401 static int meabi_flags = EF_ARM_EABI_UNKNOWN;
402 # endif
403
404 static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
405
406 bfd_boolean
407 arm_is_eabi (void)
408 {
409 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
410 }
411 #endif
412
413 #ifdef OBJ_ELF
414 /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
415 symbolS * GOT_symbol;
416 #endif
417
418 /* 0: assemble for ARM,
419 1: assemble for Thumb,
420 2: assemble for Thumb even though target CPU does not support thumb
421 instructions. */
422 static int thumb_mode = 0;
423 /* A value distinct from the possible values for thumb_mode that we
424 can use to record whether thumb_mode has been copied into the
425 tc_frag_data field of a frag. */
426 #define MODE_RECORDED (1 << 4)
427
428 /* Specifies the intrinsic IT insn behavior mode. */
429 enum implicit_it_mode
430 {
431 IMPLICIT_IT_MODE_NEVER = 0x00,
432 IMPLICIT_IT_MODE_ARM = 0x01,
433 IMPLICIT_IT_MODE_THUMB = 0x02,
434 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
435 };
436 static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
437
438 /* If unified_syntax is true, we are processing the new unified
439 ARM/Thumb syntax. Important differences from the old ARM mode:
440
441 - Immediate operands do not require a # prefix.
442 - Conditional affixes always appear at the end of the
443 instruction. (For backward compatibility, those instructions
444 that formerly had them in the middle, continue to accept them
445 there.)
446 - The IT instruction may appear, and if it does is validated
447 against subsequent conditional affixes. It does not generate
448 machine code.
449
450 Important differences from the old Thumb mode:
451
452 - Immediate operands do not require a # prefix.
453 - Most of the V6T2 instructions are only available in unified mode.
454 - The .N and .W suffixes are recognized and honored (it is an error
455 if they cannot be honored).
456 - All instructions set the flags if and only if they have an 's' affix.
457 - Conditional affixes may be used. They are validated against
458 preceding IT instructions. Unlike ARM mode, you cannot use a
459 conditional affix except in the scope of an IT instruction. */
460
461 static bfd_boolean unified_syntax = FALSE;
462
463 /* An immediate operand can start with #, and ld*, st*, pld operands
464 can contain [ and ]. We need to tell APP not to elide whitespace
465 before a [, which can appear as the first operand for pld.
466 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
467 const char arm_symbol_chars[] = "#[]{}";
468
469 enum neon_el_type
470 {
471 NT_invtype,
472 NT_untyped,
473 NT_integer,
474 NT_float,
475 NT_poly,
476 NT_signed,
477 NT_bfloat,
478 NT_unsigned
479 };
480
481 struct neon_type_el
482 {
483 enum neon_el_type type;
484 unsigned size;
485 };
486
487 #define NEON_MAX_TYPE_ELS 5
488
489 struct neon_type
490 {
491 struct neon_type_el el[NEON_MAX_TYPE_ELS];
492 unsigned elems;
493 };
494
495 enum pred_instruction_type
496 {
497 OUTSIDE_PRED_INSN,
498 INSIDE_VPT_INSN,
499 INSIDE_IT_INSN,
500 INSIDE_IT_LAST_INSN,
501 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
502 if inside, should be the last one. */
503 NEUTRAL_IT_INSN, /* This could be either inside or outside,
504 i.e. BKPT and NOP. */
505 IT_INSN, /* The IT insn has been parsed. */
506 VPT_INSN, /* The VPT/VPST insn has been parsed. */
507 MVE_OUTSIDE_PRED_INSN , /* Instruction to indicate a MVE instruction without
508 a predication code. */
509 MVE_UNPREDICABLE_INSN, /* MVE instruction that is non-predicable. */
510 };
511
512 /* The maximum number of operands we need. */
513 #define ARM_IT_MAX_OPERANDS 6
514 #define ARM_IT_MAX_RELOCS 3
515
516 struct arm_it
517 {
518 const char * error;
519 unsigned long instruction;
520 int size;
521 int size_req;
522 int cond;
523 /* "uncond_value" is set to the value in place of the conditional field in
524 unconditional versions of the instruction, or -1 if nothing is
525 appropriate. */
526 int uncond_value;
527 struct neon_type vectype;
528 /* This does not indicate an actual NEON instruction, only that
529 the mnemonic accepts neon-style type suffixes. */
530 int is_neon;
531 /* Set to the opcode if the instruction needs relaxation.
532 Zero if the instruction is not relaxed. */
533 unsigned long relax;
534 struct
535 {
536 bfd_reloc_code_real_type type;
537 expressionS exp;
538 int pc_rel;
539 } relocs[ARM_IT_MAX_RELOCS];
540
541 enum pred_instruction_type pred_insn_type;
542
543 struct
544 {
545 unsigned reg;
546 signed int imm;
547 struct neon_type_el vectype;
548 unsigned present : 1; /* Operand present. */
549 unsigned isreg : 1; /* Operand was a register. */
550 unsigned immisreg : 2; /* .imm field is a second register.
551 0: imm, 1: gpr, 2: MVE Q-register. */
552 unsigned isscalar : 2; /* Operand is a (SIMD) scalar:
553 0) not scalar,
554 1) Neon scalar,
555 2) MVE scalar. */
556 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
557 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
558 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
559 instructions. This allows us to disambiguate ARM <-> vector insns. */
560 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
561 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
562 unsigned isquad : 1; /* Operand is SIMD quad register. */
563 unsigned issingle : 1; /* Operand is VFP single-precision register. */
564 unsigned iszr : 1; /* Operand is ZR register. */
565 unsigned hasreloc : 1; /* Operand has relocation suffix. */
566 unsigned writeback : 1; /* Operand has trailing ! */
567 unsigned preind : 1; /* Preindexed address. */
568 unsigned postind : 1; /* Postindexed address. */
569 unsigned negative : 1; /* Index register was negated. */
570 unsigned shifted : 1; /* Shift applied to operation. */
571 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
572 } operands[ARM_IT_MAX_OPERANDS];
573 };
574
575 static struct arm_it inst;
576
577 #define NUM_FLOAT_VALS 8
578
579 const char * fp_const[] =
580 {
581 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
582 };
583
584 LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
585
586 #define FAIL (-1)
587 #define SUCCESS (0)
588
589 #define SUFF_S 1
590 #define SUFF_D 2
591 #define SUFF_E 3
592 #define SUFF_P 4
593
594 #define CP_T_X 0x00008000
595 #define CP_T_Y 0x00400000
596
597 #define CONDS_BIT 0x00100000
598 #define LOAD_BIT 0x00100000
599
600 #define DOUBLE_LOAD_FLAG 0x00000001
601
602 struct asm_cond
603 {
604 const char * template_name;
605 unsigned long value;
606 };
607
608 #define COND_ALWAYS 0xE
609
610 struct asm_psr
611 {
612 const char * template_name;
613 unsigned long field;
614 };
615
616 struct asm_barrier_opt
617 {
618 const char * template_name;
619 unsigned long value;
620 const arm_feature_set arch;
621 };
622
623 /* The bit that distinguishes CPSR and SPSR. */
624 #define SPSR_BIT (1 << 22)
625
626 /* The individual PSR flag bits. */
627 #define PSR_c (1 << 16)
628 #define PSR_x (1 << 17)
629 #define PSR_s (1 << 18)
630 #define PSR_f (1 << 19)
631
632 struct reloc_entry
633 {
634 const char * name;
635 bfd_reloc_code_real_type reloc;
636 };
637
638 enum vfp_reg_pos
639 {
640 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
641 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
642 };
643
644 enum vfp_ldstm_type
645 {
646 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
647 };
648
649 /* Bits for DEFINED field in neon_typed_alias. */
650 #define NTA_HASTYPE 1
651 #define NTA_HASINDEX 2
652
653 struct neon_typed_alias
654 {
655 unsigned char defined;
656 unsigned char index;
657 struct neon_type_el eltype;
658 };
659
660 /* ARM register categories. This includes coprocessor numbers and various
661 architecture extensions' registers. Each entry should have an error message
662 in reg_expected_msgs below. */
663 enum arm_reg_type
664 {
665 REG_TYPE_RN,
666 REG_TYPE_CP,
667 REG_TYPE_CN,
668 REG_TYPE_FN,
669 REG_TYPE_VFS,
670 REG_TYPE_VFD,
671 REG_TYPE_NQ,
672 REG_TYPE_VFSD,
673 REG_TYPE_NDQ,
674 REG_TYPE_NSD,
675 REG_TYPE_NSDQ,
676 REG_TYPE_VFC,
677 REG_TYPE_MVF,
678 REG_TYPE_MVD,
679 REG_TYPE_MVFX,
680 REG_TYPE_MVDX,
681 REG_TYPE_MVAX,
682 REG_TYPE_MQ,
683 REG_TYPE_DSPSC,
684 REG_TYPE_MMXWR,
685 REG_TYPE_MMXWC,
686 REG_TYPE_MMXWCG,
687 REG_TYPE_XSCALE,
688 REG_TYPE_RNB,
689 REG_TYPE_ZR
690 };
691
692 /* Structure for a hash table entry for a register.
693 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
694 information which states whether a vector type or index is specified (for a
695 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
696 struct reg_entry
697 {
698 const char * name;
699 unsigned int number;
700 unsigned char type;
701 unsigned char builtin;
702 struct neon_typed_alias * neon;
703 };
704
705 /* Diagnostics used when we don't get a register of the expected type. */
706 const char * const reg_expected_msgs[] =
707 {
708 [REG_TYPE_RN] = N_("ARM register expected"),
709 [REG_TYPE_CP] = N_("bad or missing co-processor number"),
710 [REG_TYPE_CN] = N_("co-processor register expected"),
711 [REG_TYPE_FN] = N_("FPA register expected"),
712 [REG_TYPE_VFS] = N_("VFP single precision register expected"),
713 [REG_TYPE_VFD] = N_("VFP/Neon double precision register expected"),
714 [REG_TYPE_NQ] = N_("Neon quad precision register expected"),
715 [REG_TYPE_VFSD] = N_("VFP single or double precision register expected"),
716 [REG_TYPE_NDQ] = N_("Neon double or quad precision register expected"),
717 [REG_TYPE_NSD] = N_("Neon single or double precision register expected"),
718 [REG_TYPE_NSDQ] = N_("VFP single, double or Neon quad precision register"
719 " expected"),
720 [REG_TYPE_VFC] = N_("VFP system register expected"),
721 [REG_TYPE_MVF] = N_("Maverick MVF register expected"),
722 [REG_TYPE_MVD] = N_("Maverick MVD register expected"),
723 [REG_TYPE_MVFX] = N_("Maverick MVFX register expected"),
724 [REG_TYPE_MVDX] = N_("Maverick MVDX register expected"),
725 [REG_TYPE_MVAX] = N_("Maverick MVAX register expected"),
726 [REG_TYPE_DSPSC] = N_("Maverick DSPSC register expected"),
727 [REG_TYPE_MMXWR] = N_("iWMMXt data register expected"),
728 [REG_TYPE_MMXWC] = N_("iWMMXt control register expected"),
729 [REG_TYPE_MMXWCG] = N_("iWMMXt scalar register expected"),
730 [REG_TYPE_XSCALE] = N_("XScale accumulator register expected"),
731 [REG_TYPE_MQ] = N_("MVE vector register expected"),
732 [REG_TYPE_RNB] = ""
733 };
734
735 /* Some well known registers that we refer to directly elsewhere. */
736 #define REG_R12 12
737 #define REG_SP 13
738 #define REG_LR 14
739 #define REG_PC 15
740
741 /* ARM instructions take 4bytes in the object file, Thumb instructions
742 take 2: */
743 #define INSN_SIZE 4
744
745 struct asm_opcode
746 {
747 /* Basic string to match. */
748 const char * template_name;
749
750 /* Parameters to instruction. */
751 unsigned int operands[8];
752
753 /* Conditional tag - see opcode_lookup. */
754 unsigned int tag : 4;
755
756 /* Basic instruction code. */
757 unsigned int avalue;
758
759 /* Thumb-format instruction code. */
760 unsigned int tvalue;
761
762 /* Which architecture variant provides this instruction. */
763 const arm_feature_set * avariant;
764 const arm_feature_set * tvariant;
765
766 /* Function to call to encode instruction in ARM format. */
767 void (* aencode) (void);
768
769 /* Function to call to encode instruction in Thumb format. */
770 void (* tencode) (void);
771
772 /* Indicates whether this instruction may be vector predicated. */
773 unsigned int mayBeVecPred : 1;
774 };
775
776 /* Defines for various bits that we will want to toggle. */
777 #define INST_IMMEDIATE 0x02000000
778 #define OFFSET_REG 0x02000000
779 #define HWOFFSET_IMM 0x00400000
780 #define SHIFT_BY_REG 0x00000010
781 #define PRE_INDEX 0x01000000
782 #define INDEX_UP 0x00800000
783 #define WRITE_BACK 0x00200000
784 #define LDM_TYPE_2_OR_3 0x00400000
785 #define CPSI_MMOD 0x00020000
786
787 #define LITERAL_MASK 0xf000f000
788 #define OPCODE_MASK 0xfe1fffff
789 #define V4_STR_BIT 0x00000020
790 #define VLDR_VMOV_SAME 0x0040f000
791
792 #define T2_SUBS_PC_LR 0xf3de8f00
793
794 #define DATA_OP_SHIFT 21
795 #define SBIT_SHIFT 20
796
797 #define T2_OPCODE_MASK 0xfe1fffff
798 #define T2_DATA_OP_SHIFT 21
799 #define T2_SBIT_SHIFT 20
800
801 #define A_COND_MASK 0xf0000000
802 #define A_PUSH_POP_OP_MASK 0x0fff0000
803
804 /* Opcodes for pushing/poping registers to/from the stack. */
805 #define A1_OPCODE_PUSH 0x092d0000
806 #define A2_OPCODE_PUSH 0x052d0004
807 #define A2_OPCODE_POP 0x049d0004
808
809 /* Codes to distinguish the arithmetic instructions. */
810 #define OPCODE_AND 0
811 #define OPCODE_EOR 1
812 #define OPCODE_SUB 2
813 #define OPCODE_RSB 3
814 #define OPCODE_ADD 4
815 #define OPCODE_ADC 5
816 #define OPCODE_SBC 6
817 #define OPCODE_RSC 7
818 #define OPCODE_TST 8
819 #define OPCODE_TEQ 9
820 #define OPCODE_CMP 10
821 #define OPCODE_CMN 11
822 #define OPCODE_ORR 12
823 #define OPCODE_MOV 13
824 #define OPCODE_BIC 14
825 #define OPCODE_MVN 15
826
827 #define T2_OPCODE_AND 0
828 #define T2_OPCODE_BIC 1
829 #define T2_OPCODE_ORR 2
830 #define T2_OPCODE_ORN 3
831 #define T2_OPCODE_EOR 4
832 #define T2_OPCODE_ADD 8
833 #define T2_OPCODE_ADC 10
834 #define T2_OPCODE_SBC 11
835 #define T2_OPCODE_SUB 13
836 #define T2_OPCODE_RSB 14
837
838 #define T_OPCODE_MUL 0x4340
839 #define T_OPCODE_TST 0x4200
840 #define T_OPCODE_CMN 0x42c0
841 #define T_OPCODE_NEG 0x4240
842 #define T_OPCODE_MVN 0x43c0
843
844 #define T_OPCODE_ADD_R3 0x1800
845 #define T_OPCODE_SUB_R3 0x1a00
846 #define T_OPCODE_ADD_HI 0x4400
847 #define T_OPCODE_ADD_ST 0xb000
848 #define T_OPCODE_SUB_ST 0xb080
849 #define T_OPCODE_ADD_SP 0xa800
850 #define T_OPCODE_ADD_PC 0xa000
851 #define T_OPCODE_ADD_I8 0x3000
852 #define T_OPCODE_SUB_I8 0x3800
853 #define T_OPCODE_ADD_I3 0x1c00
854 #define T_OPCODE_SUB_I3 0x1e00
855
856 #define T_OPCODE_ASR_R 0x4100
857 #define T_OPCODE_LSL_R 0x4080
858 #define T_OPCODE_LSR_R 0x40c0
859 #define T_OPCODE_ROR_R 0x41c0
860 #define T_OPCODE_ASR_I 0x1000
861 #define T_OPCODE_LSL_I 0x0000
862 #define T_OPCODE_LSR_I 0x0800
863
864 #define T_OPCODE_MOV_I8 0x2000
865 #define T_OPCODE_CMP_I8 0x2800
866 #define T_OPCODE_CMP_LR 0x4280
867 #define T_OPCODE_MOV_HR 0x4600
868 #define T_OPCODE_CMP_HR 0x4500
869
870 #define T_OPCODE_LDR_PC 0x4800
871 #define T_OPCODE_LDR_SP 0x9800
872 #define T_OPCODE_STR_SP 0x9000
873 #define T_OPCODE_LDR_IW 0x6800
874 #define T_OPCODE_STR_IW 0x6000
875 #define T_OPCODE_LDR_IH 0x8800
876 #define T_OPCODE_STR_IH 0x8000
877 #define T_OPCODE_LDR_IB 0x7800
878 #define T_OPCODE_STR_IB 0x7000
879 #define T_OPCODE_LDR_RW 0x5800
880 #define T_OPCODE_STR_RW 0x5000
881 #define T_OPCODE_LDR_RH 0x5a00
882 #define T_OPCODE_STR_RH 0x5200
883 #define T_OPCODE_LDR_RB 0x5c00
884 #define T_OPCODE_STR_RB 0x5400
885
886 #define T_OPCODE_PUSH 0xb400
887 #define T_OPCODE_POP 0xbc00
888
889 #define T_OPCODE_BRANCH 0xe000
890
891 #define THUMB_SIZE 2 /* Size of thumb instruction. */
892 #define THUMB_PP_PC_LR 0x0100
893 #define THUMB_LOAD_BIT 0x0800
894 #define THUMB2_LOAD_BIT 0x00100000
895
896 #define BAD_SYNTAX _("syntax error")
897 #define BAD_ARGS _("bad arguments to instruction")
898 #define BAD_SP _("r13 not allowed here")
899 #define BAD_PC _("r15 not allowed here")
900 #define BAD_ODD _("Odd register not allowed here")
901 #define BAD_EVEN _("Even register not allowed here")
902 #define BAD_COND _("instruction cannot be conditional")
903 #define BAD_OVERLAP _("registers may not be the same")
904 #define BAD_HIREG _("lo register required")
905 #define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
906 #define BAD_ADDR_MODE _("instruction does not accept this addressing mode")
907 #define BAD_BRANCH _("branch must be last instruction in IT block")
908 #define BAD_BRANCH_OFF _("branch out of range or not a multiple of 2")
909 #define BAD_NO_VPT _("instruction not allowed in VPT block")
910 #define BAD_NOT_IT _("instruction not allowed in IT block")
911 #define BAD_NOT_VPT _("instruction missing MVE vector predication code")
912 #define BAD_FPU _("selected FPU does not support instruction")
913 #define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
914 #define BAD_OUT_VPT \
915 _("vector predicated instruction should be in VPT/VPST block")
916 #define BAD_IT_COND _("incorrect condition in IT block")
917 #define BAD_VPT_COND _("incorrect condition in VPT/VPST block")
918 #define BAD_IT_IT _("IT falling in the range of a previous IT block")
919 #define MISSING_FNSTART _("missing .fnstart before unwinding directive")
920 #define BAD_PC_ADDRESSING \
921 _("cannot use register index with PC-relative addressing")
922 #define BAD_PC_WRITEBACK \
923 _("cannot use writeback with PC-relative addressing")
924 #define BAD_RANGE _("branch out of range")
925 #define BAD_FP16 _("selected processor does not support fp16 instruction")
926 #define BAD_BF16 _("selected processor does not support bf16 instruction")
927 #define BAD_CDE _("selected processor does not support cde instruction")
928 #define BAD_CDE_COPROC _("coprocessor for insn is not enabled for cde")
929 #define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
930 #define THUMB1_RELOC_ONLY _("relocation valid in thumb1 code only")
931 #define MVE_NOT_IT _("Warning: instruction is UNPREDICTABLE in an IT " \
932 "block")
933 #define MVE_NOT_VPT _("Warning: instruction is UNPREDICTABLE in a VPT " \
934 "block")
935 #define MVE_BAD_PC _("Warning: instruction is UNPREDICTABLE with PC" \
936 " operand")
937 #define MVE_BAD_SP _("Warning: instruction is UNPREDICTABLE with SP" \
938 " operand")
939 #define BAD_SIMD_TYPE _("bad type in SIMD instruction")
940 #define BAD_MVE_AUTO \
941 _("GAS auto-detection mode and -march=all is deprecated for MVE, please" \
942 " use a valid -march or -mcpu option.")
943 #define BAD_MVE_SRCDEST _("Warning: 32-bit element size and same destination "\
944 "and source operands makes instruction UNPREDICTABLE")
945 #define BAD_EL_TYPE _("bad element type for instruction")
946 #define MVE_BAD_QREG _("MVE vector register Q[0..7] expected")
947
948 static htab_t arm_ops_hsh;
949 static htab_t arm_cond_hsh;
950 static htab_t arm_vcond_hsh;
951 static htab_t arm_shift_hsh;
952 static htab_t arm_psr_hsh;
953 static htab_t arm_v7m_psr_hsh;
954 static htab_t arm_reg_hsh;
955 static htab_t arm_reloc_hsh;
956 static htab_t arm_barrier_opt_hsh;
957
958 /* Stuff needed to resolve the label ambiguity
959 As:
960 ...
961 label: <insn>
962 may differ from:
963 ...
964 label:
965 <insn> */
966
967 symbolS * last_label_seen;
968 static int label_is_thumb_function_name = FALSE;
969
970 /* Literal pool structure. Held on a per-section
971 and per-sub-section basis. */
972
973 #define MAX_LITERAL_POOL_SIZE 1024
974 typedef struct literal_pool
975 {
976 expressionS literals [MAX_LITERAL_POOL_SIZE];
977 unsigned int next_free_entry;
978 unsigned int id;
979 symbolS * symbol;
980 segT section;
981 subsegT sub_section;
982 #ifdef OBJ_ELF
983 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
984 #endif
985 struct literal_pool * next;
986 unsigned int alignment;
987 } literal_pool;
988
989 /* Pointer to a linked list of literal pools. */
990 literal_pool * list_of_pools = NULL;
991
992 typedef enum asmfunc_states
993 {
994 OUTSIDE_ASMFUNC,
995 WAITING_ASMFUNC_NAME,
996 WAITING_ENDASMFUNC
997 } asmfunc_states;
998
999 static asmfunc_states asmfunc_state = OUTSIDE_ASMFUNC;
1000
1001 #ifdef OBJ_ELF
1002 # define now_pred seg_info (now_seg)->tc_segment_info_data.current_pred
1003 #else
1004 static struct current_pred now_pred;
1005 #endif
1006
1007 static inline int
1008 now_pred_compatible (int cond)
1009 {
1010 return (cond & ~1) == (now_pred.cc & ~1);
1011 }
1012
1013 static inline int
1014 conditional_insn (void)
1015 {
1016 return inst.cond != COND_ALWAYS;
1017 }
1018
1019 static int in_pred_block (void);
1020
1021 static int handle_pred_state (void);
1022
1023 static void force_automatic_it_block_close (void);
1024
1025 static void it_fsm_post_encode (void);
1026
1027 #define set_pred_insn_type(type) \
1028 do \
1029 { \
1030 inst.pred_insn_type = type; \
1031 if (handle_pred_state () == FAIL) \
1032 return; \
1033 } \
1034 while (0)
1035
1036 #define set_pred_insn_type_nonvoid(type, failret) \
1037 do \
1038 { \
1039 inst.pred_insn_type = type; \
1040 if (handle_pred_state () == FAIL) \
1041 return failret; \
1042 } \
1043 while(0)
1044
1045 #define set_pred_insn_type_last() \
1046 do \
1047 { \
1048 if (inst.cond == COND_ALWAYS) \
1049 set_pred_insn_type (IF_INSIDE_IT_LAST_INSN); \
1050 else \
1051 set_pred_insn_type (INSIDE_IT_LAST_INSN); \
1052 } \
1053 while (0)
1054
1055 /* Toggle value[pos]. */
1056 #define TOGGLE_BIT(value, pos) (value ^ (1 << pos))
1057
1058 /* Pure syntax. */
1059
1060 /* This array holds the chars that always start a comment. If the
1061 pre-processor is disabled, these aren't very useful. */
1062 char arm_comment_chars[] = "@";
1063
1064 /* This array holds the chars that only start a comment at the beginning of
1065 a line. If the line seems to have the form '# 123 filename'
1066 .line and .file directives will appear in the pre-processed output. */
1067 /* Note that input_file.c hand checks for '#' at the beginning of the
1068 first line of the input file. This is because the compiler outputs
1069 #NO_APP at the beginning of its output. */
1070 /* Also note that comments like this one will always work. */
1071 const char line_comment_chars[] = "#";
1072
1073 char arm_line_separator_chars[] = ";";
1074
1075 /* Chars that can be used to separate mant
1076 from exp in floating point numbers. */
1077 const char EXP_CHARS[] = "eE";
1078
1079 /* Chars that mean this number is a floating point constant. */
1080 /* As in 0f12.456 */
1081 /* or 0d1.2345e12 */
1082
1083 const char FLT_CHARS[] = "rRsSfFdDxXeEpPHh";
1084
1085 /* Prefix characters that indicate the start of an immediate
1086 value. */
1087 #define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
1088
1089 /* Separator character handling. */
1090
1091 #define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
1092
1093 enum fp_16bit_format
1094 {
1095 ARM_FP16_FORMAT_IEEE = 0x1,
1096 ARM_FP16_FORMAT_ALTERNATIVE = 0x2,
1097 ARM_FP16_FORMAT_DEFAULT = 0x3
1098 };
1099
1100 static enum fp_16bit_format fp16_format = ARM_FP16_FORMAT_DEFAULT;
1101
1102
1103 static inline int
1104 skip_past_char (char ** str, char c)
1105 {
1106 /* PR gas/14987: Allow for whitespace before the expected character. */
1107 skip_whitespace (*str);
1108
1109 if (**str == c)
1110 {
1111 (*str)++;
1112 return SUCCESS;
1113 }
1114 else
1115 return FAIL;
1116 }
1117
1118 #define skip_past_comma(str) skip_past_char (str, ',')
1119
1120 /* Arithmetic expressions (possibly involving symbols). */
1121
1122 /* Return TRUE if anything in the expression is a bignum. */
1123
1124 static bfd_boolean
1125 walk_no_bignums (symbolS * sp)
1126 {
1127 if (symbol_get_value_expression (sp)->X_op == O_big)
1128 return TRUE;
1129
1130 if (symbol_get_value_expression (sp)->X_add_symbol)
1131 {
1132 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
1133 || (symbol_get_value_expression (sp)->X_op_symbol
1134 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
1135 }
1136
1137 return FALSE;
1138 }
1139
1140 static bfd_boolean in_my_get_expression = FALSE;
1141
1142 /* Third argument to my_get_expression. */
1143 #define GE_NO_PREFIX 0
1144 #define GE_IMM_PREFIX 1
1145 #define GE_OPT_PREFIX 2
1146 /* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
1147 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
1148 #define GE_OPT_PREFIX_BIG 3
1149
1150 static int
1151 my_get_expression (expressionS * ep, char ** str, int prefix_mode)
1152 {
1153 char * save_in;
1154
1155 /* In unified syntax, all prefixes are optional. */
1156 if (unified_syntax)
1157 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
1158 : GE_OPT_PREFIX;
1159
1160 switch (prefix_mode)
1161 {
1162 case GE_NO_PREFIX: break;
1163 case GE_IMM_PREFIX:
1164 if (!is_immediate_prefix (**str))
1165 {
1166 inst.error = _("immediate expression requires a # prefix");
1167 return FAIL;
1168 }
1169 (*str)++;
1170 break;
1171 case GE_OPT_PREFIX:
1172 case GE_OPT_PREFIX_BIG:
1173 if (is_immediate_prefix (**str))
1174 (*str)++;
1175 break;
1176 default:
1177 abort ();
1178 }
1179
1180 memset (ep, 0, sizeof (expressionS));
1181
1182 save_in = input_line_pointer;
1183 input_line_pointer = *str;
1184 in_my_get_expression = TRUE;
1185 expression (ep);
1186 in_my_get_expression = FALSE;
1187
1188 if (ep->X_op == O_illegal || ep->X_op == O_absent)
1189 {
1190 /* We found a bad or missing expression in md_operand(). */
1191 *str = input_line_pointer;
1192 input_line_pointer = save_in;
1193 if (inst.error == NULL)
1194 inst.error = (ep->X_op == O_absent
1195 ? _("missing expression") :_("bad expression"));
1196 return 1;
1197 }
1198
1199 /* Get rid of any bignums now, so that we don't generate an error for which
1200 we can't establish a line number later on. Big numbers are never valid
1201 in instructions, which is where this routine is always called. */
1202 if (prefix_mode != GE_OPT_PREFIX_BIG
1203 && (ep->X_op == O_big
1204 || (ep->X_add_symbol
1205 && (walk_no_bignums (ep->X_add_symbol)
1206 || (ep->X_op_symbol
1207 && walk_no_bignums (ep->X_op_symbol))))))
1208 {
1209 inst.error = _("invalid constant");
1210 *str = input_line_pointer;
1211 input_line_pointer = save_in;
1212 return 1;
1213 }
1214
1215 *str = input_line_pointer;
1216 input_line_pointer = save_in;
1217 return SUCCESS;
1218 }
1219
1220 /* Turn a string in input_line_pointer into a floating point constant
1221 of type TYPE, and store the appropriate bytes in *LITP. The number
1222 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1223 returned, or NULL on OK.
1224
1225 Note that fp constants aren't represent in the normal way on the ARM.
1226 In big endian mode, things are as expected. However, in little endian
1227 mode fp constants are big-endian word-wise, and little-endian byte-wise
1228 within the words. For example, (double) 1.1 in big endian mode is
1229 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1230 the byte sequence 99 99 f1 3f 9a 99 99 99.
1231
1232 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
1233
1234 const char *
1235 md_atof (int type, char * litP, int * sizeP)
1236 {
1237 int prec;
1238 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1239 char *t;
1240 int i;
1241
1242 switch (type)
1243 {
1244 case 'H':
1245 case 'h':
1246 prec = 1;
1247 break;
1248
1249 /* If this is a bfloat16, then parse it slightly differently, as it
1250 does not follow the IEEE specification for floating point numbers
1251 exactly. */
1252 case 'b':
1253 {
1254 FLONUM_TYPE generic_float;
1255
1256 t = atof_ieee_detail (input_line_pointer, 1, 8, words, &generic_float);
1257
1258 if (t)
1259 input_line_pointer = t;
1260 else
1261 return _("invalid floating point number");
1262
1263 switch (generic_float.sign)
1264 {
1265 /* Is +Inf. */
1266 case 'P':
1267 words[0] = 0x7f80;
1268 break;
1269
1270 /* Is -Inf. */
1271 case 'N':
1272 words[0] = 0xff80;
1273 break;
1274
1275 /* Is NaN. */
1276 /* bfloat16 has two types of NaN - quiet and signalling.
1277 Quiet NaN has bit[6] == 1 && faction != 0, whereas
1278 signalling NaN's have bit[0] == 0 && fraction != 0.
1279 Chosen this specific encoding as it is the same form
1280 as used by other IEEE 754 encodings in GAS. */
1281 case 0:
1282 words[0] = 0x7fff;
1283 break;
1284
1285 default:
1286 break;
1287 }
1288
1289 *sizeP = 2;
1290
1291 md_number_to_chars (litP, (valueT) words[0], sizeof (LITTLENUM_TYPE));
1292
1293 return NULL;
1294 }
1295 case 'f':
1296 case 'F':
1297 case 's':
1298 case 'S':
1299 prec = 2;
1300 break;
1301
1302 case 'd':
1303 case 'D':
1304 case 'r':
1305 case 'R':
1306 prec = 4;
1307 break;
1308
1309 case 'x':
1310 case 'X':
1311 prec = 5;
1312 break;
1313
1314 case 'p':
1315 case 'P':
1316 prec = 5;
1317 break;
1318
1319 default:
1320 *sizeP = 0;
1321 return _("Unrecognized or unsupported floating point constant");
1322 }
1323
1324 t = atof_ieee (input_line_pointer, type, words);
1325 if (t)
1326 input_line_pointer = t;
1327 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1328
1329 if (target_big_endian || prec == 1)
1330 for (i = 0; i < prec; i++)
1331 {
1332 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1333 litP += sizeof (LITTLENUM_TYPE);
1334 }
1335 else if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
1336 for (i = prec - 1; i >= 0; i--)
1337 {
1338 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1339 litP += sizeof (LITTLENUM_TYPE);
1340 }
1341 else
1342 /* For a 4 byte float the order of elements in `words' is 1 0.
1343 For an 8 byte float the order is 1 0 3 2. */
1344 for (i = 0; i < prec; i += 2)
1345 {
1346 md_number_to_chars (litP, (valueT) words[i + 1],
1347 sizeof (LITTLENUM_TYPE));
1348 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1349 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1350 litP += 2 * sizeof (LITTLENUM_TYPE);
1351 }
1352
1353 return NULL;
1354 }
1355
1356 /* We handle all bad expressions here, so that we can report the faulty
1357 instruction in the error message. */
1358
1359 void
1360 md_operand (expressionS * exp)
1361 {
1362 if (in_my_get_expression)
1363 exp->X_op = O_illegal;
1364 }
1365
1366 /* Immediate values. */
1367
1368 #ifdef OBJ_ELF
1369 /* Generic immediate-value read function for use in directives.
1370 Accepts anything that 'expression' can fold to a constant.
1371 *val receives the number. */
1372
1373 static int
1374 immediate_for_directive (int *val)
1375 {
1376 expressionS exp;
1377 exp.X_op = O_illegal;
1378
1379 if (is_immediate_prefix (*input_line_pointer))
1380 {
1381 input_line_pointer++;
1382 expression (&exp);
1383 }
1384
1385 if (exp.X_op != O_constant)
1386 {
1387 as_bad (_("expected #constant"));
1388 ignore_rest_of_line ();
1389 return FAIL;
1390 }
1391 *val = exp.X_add_number;
1392 return SUCCESS;
1393 }
1394 #endif
1395
1396 /* Register parsing. */
1397
1398 /* Generic register parser. CCP points to what should be the
1399 beginning of a register name. If it is indeed a valid register
1400 name, advance CCP over it and return the reg_entry structure;
1401 otherwise return NULL. Does not issue diagnostics. */
1402
1403 static struct reg_entry *
1404 arm_reg_parse_multi (char **ccp)
1405 {
1406 char *start = *ccp;
1407 char *p;
1408 struct reg_entry *reg;
1409
1410 skip_whitespace (start);
1411
1412 #ifdef REGISTER_PREFIX
1413 if (*start != REGISTER_PREFIX)
1414 return NULL;
1415 start++;
1416 #endif
1417 #ifdef OPTIONAL_REGISTER_PREFIX
1418 if (*start == OPTIONAL_REGISTER_PREFIX)
1419 start++;
1420 #endif
1421
1422 p = start;
1423 if (!ISALPHA (*p) || !is_name_beginner (*p))
1424 return NULL;
1425
1426 do
1427 p++;
1428 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1429
1430 reg = (struct reg_entry *) str_hash_find_n (arm_reg_hsh, start, p - start);
1431
1432 if (!reg)
1433 return NULL;
1434
1435 *ccp = p;
1436 return reg;
1437 }
1438
1439 static int
1440 arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
1441 enum arm_reg_type type)
1442 {
1443 /* Alternative syntaxes are accepted for a few register classes. */
1444 switch (type)
1445 {
1446 case REG_TYPE_MVF:
1447 case REG_TYPE_MVD:
1448 case REG_TYPE_MVFX:
1449 case REG_TYPE_MVDX:
1450 /* Generic coprocessor register names are allowed for these. */
1451 if (reg && reg->type == REG_TYPE_CN)
1452 return reg->number;
1453 break;
1454
1455 case REG_TYPE_CP:
1456 /* For backward compatibility, a bare number is valid here. */
1457 {
1458 unsigned long processor = strtoul (start, ccp, 10);
1459 if (*ccp != start && processor <= 15)
1460 return processor;
1461 }
1462 /* Fall through. */
1463
1464 case REG_TYPE_MMXWC:
1465 /* WC includes WCG. ??? I'm not sure this is true for all
1466 instructions that take WC registers. */
1467 if (reg && reg->type == REG_TYPE_MMXWCG)
1468 return reg->number;
1469 break;
1470
1471 default:
1472 break;
1473 }
1474
1475 return FAIL;
1476 }
1477
1478 /* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1479 return value is the register number or FAIL. */
1480
1481 static int
1482 arm_reg_parse (char **ccp, enum arm_reg_type type)
1483 {
1484 char *start = *ccp;
1485 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1486 int ret;
1487
1488 /* Do not allow a scalar (reg+index) to parse as a register. */
1489 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1490 return FAIL;
1491
1492 if (reg && reg->type == type)
1493 return reg->number;
1494
1495 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1496 return ret;
1497
1498 *ccp = start;
1499 return FAIL;
1500 }
1501
1502 /* Parse a Neon type specifier. *STR should point at the leading '.'
1503 character. Does no verification at this stage that the type fits the opcode
1504 properly. E.g.,
1505
1506 .i32.i32.s16
1507 .s32.f32
1508 .u16
1509
1510 Can all be legally parsed by this function.
1511
1512 Fills in neon_type struct pointer with parsed information, and updates STR
1513 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1514 type, FAIL if not. */
1515
1516 static int
1517 parse_neon_type (struct neon_type *type, char **str)
1518 {
1519 char *ptr = *str;
1520
1521 if (type)
1522 type->elems = 0;
1523
1524 while (type->elems < NEON_MAX_TYPE_ELS)
1525 {
1526 enum neon_el_type thistype = NT_untyped;
1527 unsigned thissize = -1u;
1528
1529 if (*ptr != '.')
1530 break;
1531
1532 ptr++;
1533
1534 /* Just a size without an explicit type. */
1535 if (ISDIGIT (*ptr))
1536 goto parsesize;
1537
1538 switch (TOLOWER (*ptr))
1539 {
1540 case 'i': thistype = NT_integer; break;
1541 case 'f': thistype = NT_float; break;
1542 case 'p': thistype = NT_poly; break;
1543 case 's': thistype = NT_signed; break;
1544 case 'u': thistype = NT_unsigned; break;
1545 case 'd':
1546 thistype = NT_float;
1547 thissize = 64;
1548 ptr++;
1549 goto done;
1550 case 'b':
1551 thistype = NT_bfloat;
1552 switch (TOLOWER (*(++ptr)))
1553 {
1554 case 'f':
1555 ptr += 1;
1556 thissize = strtoul (ptr, &ptr, 10);
1557 if (thissize != 16)
1558 {
1559 as_bad (_("bad size %d in type specifier"), thissize);
1560 return FAIL;
1561 }
1562 goto done;
1563 case '0': case '1': case '2': case '3': case '4':
1564 case '5': case '6': case '7': case '8': case '9':
1565 case ' ': case '.':
1566 as_bad (_("unexpected type character `b' -- did you mean `bf'?"));
1567 return FAIL;
1568 default:
1569 break;
1570 }
1571 break;
1572 default:
1573 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1574 return FAIL;
1575 }
1576
1577 ptr++;
1578
1579 /* .f is an abbreviation for .f32. */
1580 if (thistype == NT_float && !ISDIGIT (*ptr))
1581 thissize = 32;
1582 else
1583 {
1584 parsesize:
1585 thissize = strtoul (ptr, &ptr, 10);
1586
1587 if (thissize != 8 && thissize != 16 && thissize != 32
1588 && thissize != 64)
1589 {
1590 as_bad (_("bad size %d in type specifier"), thissize);
1591 return FAIL;
1592 }
1593 }
1594
1595 done:
1596 if (type)
1597 {
1598 type->el[type->elems].type = thistype;
1599 type->el[type->elems].size = thissize;
1600 type->elems++;
1601 }
1602 }
1603
1604 /* Empty/missing type is not a successful parse. */
1605 if (type->elems == 0)
1606 return FAIL;
1607
1608 *str = ptr;
1609
1610 return SUCCESS;
1611 }
1612
1613 /* Errors may be set multiple times during parsing or bit encoding
1614 (particularly in the Neon bits), but usually the earliest error which is set
1615 will be the most meaningful. Avoid overwriting it with later (cascading)
1616 errors by calling this function. */
1617
1618 static void
1619 first_error (const char *err)
1620 {
1621 if (!inst.error)
1622 inst.error = err;
1623 }
1624
1625 /* Parse a single type, e.g. ".s32", leading period included. */
1626 static int
1627 parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1628 {
1629 char *str = *ccp;
1630 struct neon_type optype;
1631
1632 if (*str == '.')
1633 {
1634 if (parse_neon_type (&optype, &str) == SUCCESS)
1635 {
1636 if (optype.elems == 1)
1637 *vectype = optype.el[0];
1638 else
1639 {
1640 first_error (_("only one type should be specified for operand"));
1641 return FAIL;
1642 }
1643 }
1644 else
1645 {
1646 first_error (_("vector type expected"));
1647 return FAIL;
1648 }
1649 }
1650 else
1651 return FAIL;
1652
1653 *ccp = str;
1654
1655 return SUCCESS;
1656 }
1657
1658 /* Special meanings for indices (which have a range of 0-7), which will fit into
1659 a 4-bit integer. */
1660
1661 #define NEON_ALL_LANES 15
1662 #define NEON_INTERLEAVE_LANES 14
1663
1664 /* Record a use of the given feature. */
1665 static void
1666 record_feature_use (const arm_feature_set *feature)
1667 {
1668 if (thumb_mode)
1669 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
1670 else
1671 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
1672 }
1673
1674 /* If the given feature available in the selected CPU, mark it as used.
1675 Returns TRUE iff feature is available. */
1676 static bfd_boolean
1677 mark_feature_used (const arm_feature_set *feature)
1678 {
1679
1680 /* Do not support the use of MVE only instructions when in auto-detection or
1681 -march=all. */
1682 if (((feature == &mve_ext) || (feature == &mve_fp_ext))
1683 && ARM_CPU_IS_ANY (cpu_variant))
1684 {
1685 first_error (BAD_MVE_AUTO);
1686 return FALSE;
1687 }
1688 /* Ensure the option is valid on the current architecture. */
1689 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
1690 return FALSE;
1691
1692 /* Add the appropriate architecture feature for the barrier option used.
1693 */
1694 record_feature_use (feature);
1695
1696 return TRUE;
1697 }
1698
1699 /* Parse either a register or a scalar, with an optional type. Return the
1700 register number, and optionally fill in the actual type of the register
1701 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1702 type/index information in *TYPEINFO. */
1703
1704 static int
1705 parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
1706 enum arm_reg_type *rtype,
1707 struct neon_typed_alias *typeinfo)
1708 {
1709 char *str = *ccp;
1710 struct reg_entry *reg = arm_reg_parse_multi (&str);
1711 struct neon_typed_alias atype;
1712 struct neon_type_el parsetype;
1713
1714 atype.defined = 0;
1715 atype.index = -1;
1716 atype.eltype.type = NT_invtype;
1717 atype.eltype.size = -1;
1718
1719 /* Try alternate syntax for some types of register. Note these are mutually
1720 exclusive with the Neon syntax extensions. */
1721 if (reg == NULL)
1722 {
1723 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1724 if (altreg != FAIL)
1725 *ccp = str;
1726 if (typeinfo)
1727 *typeinfo = atype;
1728 return altreg;
1729 }
1730
1731 /* Undo polymorphism when a set of register types may be accepted. */
1732 if ((type == REG_TYPE_NDQ
1733 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1734 || (type == REG_TYPE_VFSD
1735 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1736 || (type == REG_TYPE_NSDQ
1737 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1738 || reg->type == REG_TYPE_NQ))
1739 || (type == REG_TYPE_NSD
1740 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
1741 || (type == REG_TYPE_MMXWC
1742 && (reg->type == REG_TYPE_MMXWCG)))
1743 type = (enum arm_reg_type) reg->type;
1744
1745 if (type == REG_TYPE_MQ)
1746 {
1747 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
1748 return FAIL;
1749
1750 if (!reg || reg->type != REG_TYPE_NQ)
1751 return FAIL;
1752
1753 if (reg->number > 14 && !mark_feature_used (&fpu_vfp_ext_d32))
1754 {
1755 first_error (_("expected MVE register [q0..q7]"));
1756 return FAIL;
1757 }
1758 type = REG_TYPE_NQ;
1759 }
1760 else if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
1761 && (type == REG_TYPE_NQ))
1762 return FAIL;
1763
1764
1765 if (type != reg->type)
1766 return FAIL;
1767
1768 if (reg->neon)
1769 atype = *reg->neon;
1770
1771 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1772 {
1773 if ((atype.defined & NTA_HASTYPE) != 0)
1774 {
1775 first_error (_("can't redefine type for operand"));
1776 return FAIL;
1777 }
1778 atype.defined |= NTA_HASTYPE;
1779 atype.eltype = parsetype;
1780 }
1781
1782 if (skip_past_char (&str, '[') == SUCCESS)
1783 {
1784 if (type != REG_TYPE_VFD
1785 && !(type == REG_TYPE_VFS
1786 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_2))
1787 && !(type == REG_TYPE_NQ
1788 && ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)))
1789 {
1790 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
1791 first_error (_("only D and Q registers may be indexed"));
1792 else
1793 first_error (_("only D registers may be indexed"));
1794 return FAIL;
1795 }
1796
1797 if ((atype.defined & NTA_HASINDEX) != 0)
1798 {
1799 first_error (_("can't change index for operand"));
1800 return FAIL;
1801 }
1802
1803 atype.defined |= NTA_HASINDEX;
1804
1805 if (skip_past_char (&str, ']') == SUCCESS)
1806 atype.index = NEON_ALL_LANES;
1807 else
1808 {
1809 expressionS exp;
1810
1811 my_get_expression (&exp, &str, GE_NO_PREFIX);
1812
1813 if (exp.X_op != O_constant)
1814 {
1815 first_error (_("constant expression required"));
1816 return FAIL;
1817 }
1818
1819 if (skip_past_char (&str, ']') == FAIL)
1820 return FAIL;
1821
1822 atype.index = exp.X_add_number;
1823 }
1824 }
1825
1826 if (typeinfo)
1827 *typeinfo = atype;
1828
1829 if (rtype)
1830 *rtype = type;
1831
1832 *ccp = str;
1833
1834 return reg->number;
1835 }
1836
1837 /* Like arm_reg_parse, but also allow the following extra features:
1838 - If RTYPE is non-zero, return the (possibly restricted) type of the
1839 register (e.g. Neon double or quad reg when either has been requested).
1840 - If this is a Neon vector type with additional type information, fill
1841 in the struct pointed to by VECTYPE (if non-NULL).
1842 This function will fault on encountering a scalar. */
1843
1844 static int
1845 arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
1846 enum arm_reg_type *rtype, struct neon_type_el *vectype)
1847 {
1848 struct neon_typed_alias atype;
1849 char *str = *ccp;
1850 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1851
1852 if (reg == FAIL)
1853 return FAIL;
1854
1855 /* Do not allow regname(... to parse as a register. */
1856 if (*str == '(')
1857 return FAIL;
1858
1859 /* Do not allow a scalar (reg+index) to parse as a register. */
1860 if ((atype.defined & NTA_HASINDEX) != 0)
1861 {
1862 first_error (_("register operand expected, but got scalar"));
1863 return FAIL;
1864 }
1865
1866 if (vectype)
1867 *vectype = atype.eltype;
1868
1869 *ccp = str;
1870
1871 return reg;
1872 }
1873
1874 #define NEON_SCALAR_REG(X) ((X) >> 4)
1875 #define NEON_SCALAR_INDEX(X) ((X) & 15)
1876
1877 /* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1878 have enough information to be able to do a good job bounds-checking. So, we
1879 just do easy checks here, and do further checks later. */
1880
1881 static int
1882 parse_scalar (char **ccp, int elsize, struct neon_type_el *type, enum
1883 arm_reg_type reg_type)
1884 {
1885 int reg;
1886 char *str = *ccp;
1887 struct neon_typed_alias atype;
1888 unsigned reg_size;
1889
1890 reg = parse_typed_reg_or_scalar (&str, reg_type, NULL, &atype);
1891
1892 switch (reg_type)
1893 {
1894 case REG_TYPE_VFS:
1895 reg_size = 32;
1896 break;
1897 case REG_TYPE_VFD:
1898 reg_size = 64;
1899 break;
1900 case REG_TYPE_MQ:
1901 reg_size = 128;
1902 break;
1903 default:
1904 gas_assert (0);
1905 return FAIL;
1906 }
1907
1908 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
1909 return FAIL;
1910
1911 if (reg_type != REG_TYPE_MQ && atype.index == NEON_ALL_LANES)
1912 {
1913 first_error (_("scalar must have an index"));
1914 return FAIL;
1915 }
1916 else if (atype.index >= reg_size / elsize)
1917 {
1918 first_error (_("scalar index out of range"));
1919 return FAIL;
1920 }
1921
1922 if (type)
1923 *type = atype.eltype;
1924
1925 *ccp = str;
1926
1927 return reg * 16 + atype.index;
1928 }
1929
1930 /* Types of registers in a list. */
1931
1932 enum reg_list_els
1933 {
1934 REGLIST_RN,
1935 REGLIST_CLRM,
1936 REGLIST_VFP_S,
1937 REGLIST_VFP_S_VPR,
1938 REGLIST_VFP_D,
1939 REGLIST_VFP_D_VPR,
1940 REGLIST_NEON_D
1941 };
1942
1943 /* Parse an ARM register list. Returns the bitmask, or FAIL. */
1944
1945 static long
1946 parse_reg_list (char ** strp, enum reg_list_els etype)
1947 {
1948 char *str = *strp;
1949 long range = 0;
1950 int another_range;
1951
1952 gas_assert (etype == REGLIST_RN || etype == REGLIST_CLRM);
1953
1954 /* We come back here if we get ranges concatenated by '+' or '|'. */
1955 do
1956 {
1957 skip_whitespace (str);
1958
1959 another_range = 0;
1960
1961 if (*str == '{')
1962 {
1963 int in_range = 0;
1964 int cur_reg = -1;
1965
1966 str++;
1967 do
1968 {
1969 int reg;
1970 const char apsr_str[] = "apsr";
1971 int apsr_str_len = strlen (apsr_str);
1972
1973 reg = arm_reg_parse (&str, REG_TYPE_RN);
1974 if (etype == REGLIST_CLRM)
1975 {
1976 if (reg == REG_SP || reg == REG_PC)
1977 reg = FAIL;
1978 else if (reg == FAIL
1979 && !strncasecmp (str, apsr_str, apsr_str_len)
1980 && !ISALPHA (*(str + apsr_str_len)))
1981 {
1982 reg = 15;
1983 str += apsr_str_len;
1984 }
1985
1986 if (reg == FAIL)
1987 {
1988 first_error (_("r0-r12, lr or APSR expected"));
1989 return FAIL;
1990 }
1991 }
1992 else /* etype == REGLIST_RN. */
1993 {
1994 if (reg == FAIL)
1995 {
1996 first_error (_(reg_expected_msgs[REGLIST_RN]));
1997 return FAIL;
1998 }
1999 }
2000
2001 if (in_range)
2002 {
2003 int i;
2004
2005 if (reg <= cur_reg)
2006 {
2007 first_error (_("bad range in register list"));
2008 return FAIL;
2009 }
2010
2011 for (i = cur_reg + 1; i < reg; i++)
2012 {
2013 if (range & (1 << i))
2014 as_tsktsk
2015 (_("Warning: duplicated register (r%d) in register list"),
2016 i);
2017 else
2018 range |= 1 << i;
2019 }
2020 in_range = 0;
2021 }
2022
2023 if (range & (1 << reg))
2024 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
2025 reg);
2026 else if (reg <= cur_reg)
2027 as_tsktsk (_("Warning: register range not in ascending order"));
2028
2029 range |= 1 << reg;
2030 cur_reg = reg;
2031 }
2032 while (skip_past_comma (&str) != FAIL
2033 || (in_range = 1, *str++ == '-'));
2034 str--;
2035
2036 if (skip_past_char (&str, '}') == FAIL)
2037 {
2038 first_error (_("missing `}'"));
2039 return FAIL;
2040 }
2041 }
2042 else if (etype == REGLIST_RN)
2043 {
2044 expressionS exp;
2045
2046 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
2047 return FAIL;
2048
2049 if (exp.X_op == O_constant)
2050 {
2051 if (exp.X_add_number
2052 != (exp.X_add_number & 0x0000ffff))
2053 {
2054 inst.error = _("invalid register mask");
2055 return FAIL;
2056 }
2057
2058 if ((range & exp.X_add_number) != 0)
2059 {
2060 int regno = range & exp.X_add_number;
2061
2062 regno &= -regno;
2063 regno = (1 << regno) - 1;
2064 as_tsktsk
2065 (_("Warning: duplicated register (r%d) in register list"),
2066 regno);
2067 }
2068
2069 range |= exp.X_add_number;
2070 }
2071 else
2072 {
2073 if (inst.relocs[0].type != 0)
2074 {
2075 inst.error = _("expression too complex");
2076 return FAIL;
2077 }
2078
2079 memcpy (&inst.relocs[0].exp, &exp, sizeof (expressionS));
2080 inst.relocs[0].type = BFD_RELOC_ARM_MULTI;
2081 inst.relocs[0].pc_rel = 0;
2082 }
2083 }
2084
2085 if (*str == '|' || *str == '+')
2086 {
2087 str++;
2088 another_range = 1;
2089 }
2090 }
2091 while (another_range);
2092
2093 *strp = str;
2094 return range;
2095 }
2096
2097 /* Parse a VFP register list. If the string is invalid return FAIL.
2098 Otherwise return the number of registers, and set PBASE to the first
2099 register. Parses registers of type ETYPE.
2100 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
2101 - Q registers can be used to specify pairs of D registers
2102 - { } can be omitted from around a singleton register list
2103 FIXME: This is not implemented, as it would require backtracking in
2104 some cases, e.g.:
2105 vtbl.8 d3,d4,d5
2106 This could be done (the meaning isn't really ambiguous), but doesn't
2107 fit in well with the current parsing framework.
2108 - 32 D registers may be used (also true for VFPv3).
2109 FIXME: Types are ignored in these register lists, which is probably a
2110 bug. */
2111
2112 static int
2113 parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype,
2114 bfd_boolean *partial_match)
2115 {
2116 char *str = *ccp;
2117 int base_reg;
2118 int new_base;
2119 enum arm_reg_type regtype = (enum arm_reg_type) 0;
2120 int max_regs = 0;
2121 int count = 0;
2122 int warned = 0;
2123 unsigned long mask = 0;
2124 int i;
2125 bfd_boolean vpr_seen = FALSE;
2126 bfd_boolean expect_vpr =
2127 (etype == REGLIST_VFP_S_VPR) || (etype == REGLIST_VFP_D_VPR);
2128
2129 if (skip_past_char (&str, '{') == FAIL)
2130 {
2131 inst.error = _("expecting {");
2132 return FAIL;
2133 }
2134
2135 switch (etype)
2136 {
2137 case REGLIST_VFP_S:
2138 case REGLIST_VFP_S_VPR:
2139 regtype = REG_TYPE_VFS;
2140 max_regs = 32;
2141 break;
2142
2143 case REGLIST_VFP_D:
2144 case REGLIST_VFP_D_VPR:
2145 regtype = REG_TYPE_VFD;
2146 break;
2147
2148 case REGLIST_NEON_D:
2149 regtype = REG_TYPE_NDQ;
2150 break;
2151
2152 default:
2153 gas_assert (0);
2154 }
2155
2156 if (etype != REGLIST_VFP_S && etype != REGLIST_VFP_S_VPR)
2157 {
2158 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
2159 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
2160 {
2161 max_regs = 32;
2162 if (thumb_mode)
2163 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
2164 fpu_vfp_ext_d32);
2165 else
2166 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
2167 fpu_vfp_ext_d32);
2168 }
2169 else
2170 max_regs = 16;
2171 }
2172
2173 base_reg = max_regs;
2174 *partial_match = FALSE;
2175
2176 do
2177 {
2178 int setmask = 1, addregs = 1;
2179 const char vpr_str[] = "vpr";
2180 int vpr_str_len = strlen (vpr_str);
2181
2182 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
2183
2184 if (expect_vpr)
2185 {
2186 if (new_base == FAIL
2187 && !strncasecmp (str, vpr_str, vpr_str_len)
2188 && !ISALPHA (*(str + vpr_str_len))
2189 && !vpr_seen)
2190 {
2191 vpr_seen = TRUE;
2192 str += vpr_str_len;
2193 if (count == 0)
2194 base_reg = 0; /* Canonicalize VPR only on d0 with 0 regs. */
2195 }
2196 else if (vpr_seen)
2197 {
2198 first_error (_("VPR expected last"));
2199 return FAIL;
2200 }
2201 else if (new_base == FAIL)
2202 {
2203 if (regtype == REG_TYPE_VFS)
2204 first_error (_("VFP single precision register or VPR "
2205 "expected"));
2206 else /* regtype == REG_TYPE_VFD. */
2207 first_error (_("VFP/Neon double precision register or VPR "
2208 "expected"));
2209 return FAIL;
2210 }
2211 }
2212 else if (new_base == FAIL)
2213 {
2214 first_error (_(reg_expected_msgs[regtype]));
2215 return FAIL;
2216 }
2217
2218 *partial_match = TRUE;
2219 if (vpr_seen)
2220 continue;
2221
2222 if (new_base >= max_regs)
2223 {
2224 first_error (_("register out of range in list"));
2225 return FAIL;
2226 }
2227
2228 /* Note: a value of 2 * n is returned for the register Q<n>. */
2229 if (regtype == REG_TYPE_NQ)
2230 {
2231 setmask = 3;
2232 addregs = 2;
2233 }
2234
2235 if (new_base < base_reg)
2236 base_reg = new_base;
2237
2238 if (mask & (setmask << new_base))
2239 {
2240 first_error (_("invalid register list"));
2241 return FAIL;
2242 }
2243
2244 if ((mask >> new_base) != 0 && ! warned && !vpr_seen)
2245 {
2246 as_tsktsk (_("register list not in ascending order"));
2247 warned = 1;
2248 }
2249
2250 mask |= setmask << new_base;
2251 count += addregs;
2252
2253 if (*str == '-') /* We have the start of a range expression */
2254 {
2255 int high_range;
2256
2257 str++;
2258
2259 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
2260 == FAIL)
2261 {
2262 inst.error = gettext (reg_expected_msgs[regtype]);
2263 return FAIL;
2264 }
2265
2266 if (high_range >= max_regs)
2267 {
2268 first_error (_("register out of range in list"));
2269 return FAIL;
2270 }
2271
2272 if (regtype == REG_TYPE_NQ)
2273 high_range = high_range + 1;
2274
2275 if (high_range <= new_base)
2276 {
2277 inst.error = _("register range not in ascending order");
2278 return FAIL;
2279 }
2280
2281 for (new_base += addregs; new_base <= high_range; new_base += addregs)
2282 {
2283 if (mask & (setmask << new_base))
2284 {
2285 inst.error = _("invalid register list");
2286 return FAIL;
2287 }
2288
2289 mask |= setmask << new_base;
2290 count += addregs;
2291 }
2292 }
2293 }
2294 while (skip_past_comma (&str) != FAIL);
2295
2296 str++;
2297
2298 /* Sanity check -- should have raised a parse error above. */
2299 if ((!vpr_seen && count == 0) || count > max_regs)
2300 abort ();
2301
2302 *pbase = base_reg;
2303
2304 if (expect_vpr && !vpr_seen)
2305 {
2306 first_error (_("VPR expected last"));
2307 return FAIL;
2308 }
2309
2310 /* Final test -- the registers must be consecutive. */
2311 mask >>= base_reg;
2312 for (i = 0; i < count; i++)
2313 {
2314 if ((mask & (1u << i)) == 0)
2315 {
2316 inst.error = _("non-contiguous register range");
2317 return FAIL;
2318 }
2319 }
2320
2321 *ccp = str;
2322
2323 return count;
2324 }
2325
2326 /* True if two alias types are the same. */
2327
2328 static bfd_boolean
2329 neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
2330 {
2331 if (!a && !b)
2332 return TRUE;
2333
2334 if (!a || !b)
2335 return FALSE;
2336
2337 if (a->defined != b->defined)
2338 return FALSE;
2339
2340 if ((a->defined & NTA_HASTYPE) != 0
2341 && (a->eltype.type != b->eltype.type
2342 || a->eltype.size != b->eltype.size))
2343 return FALSE;
2344
2345 if ((a->defined & NTA_HASINDEX) != 0
2346 && (a->index != b->index))
2347 return FALSE;
2348
2349 return TRUE;
2350 }
2351
2352 /* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
2353 The base register is put in *PBASE.
2354 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
2355 the return value.
2356 The register stride (minus one) is put in bit 4 of the return value.
2357 Bits [6:5] encode the list length (minus one).
2358 The type of the list elements is put in *ELTYPE, if non-NULL. */
2359
2360 #define NEON_LANE(X) ((X) & 0xf)
2361 #define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
2362 #define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
2363
2364 static int
2365 parse_neon_el_struct_list (char **str, unsigned *pbase,
2366 int mve,
2367 struct neon_type_el *eltype)
2368 {
2369 char *ptr = *str;
2370 int base_reg = -1;
2371 int reg_incr = -1;
2372 int count = 0;
2373 int lane = -1;
2374 int leading_brace = 0;
2375 enum arm_reg_type rtype = REG_TYPE_NDQ;
2376 const char *const incr_error = mve ? _("register stride must be 1") :
2377 _("register stride must be 1 or 2");
2378 const char *const type_error = _("mismatched element/structure types in list");
2379 struct neon_typed_alias firsttype;
2380 firsttype.defined = 0;
2381 firsttype.eltype.type = NT_invtype;
2382 firsttype.eltype.size = -1;
2383 firsttype.index = -1;
2384
2385 if (skip_past_char (&ptr, '{') == SUCCESS)
2386 leading_brace = 1;
2387
2388 do
2389 {
2390 struct neon_typed_alias atype;
2391 if (mve)
2392 rtype = REG_TYPE_MQ;
2393 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
2394
2395 if (getreg == FAIL)
2396 {
2397 first_error (_(reg_expected_msgs[rtype]));
2398 return FAIL;
2399 }
2400
2401 if (base_reg == -1)
2402 {
2403 base_reg = getreg;
2404 if (rtype == REG_TYPE_NQ)
2405 {
2406 reg_incr = 1;
2407 }
2408 firsttype = atype;
2409 }
2410 else if (reg_incr == -1)
2411 {
2412 reg_incr = getreg - base_reg;
2413 if (reg_incr < 1 || reg_incr > 2)
2414 {
2415 first_error (_(incr_error));
2416 return FAIL;
2417 }
2418 }
2419 else if (getreg != base_reg + reg_incr * count)
2420 {
2421 first_error (_(incr_error));
2422 return FAIL;
2423 }
2424
2425 if (! neon_alias_types_same (&atype, &firsttype))
2426 {
2427 first_error (_(type_error));
2428 return FAIL;
2429 }
2430
2431 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
2432 modes. */
2433 if (ptr[0] == '-')
2434 {
2435 struct neon_typed_alias htype;
2436 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
2437 if (lane == -1)
2438 lane = NEON_INTERLEAVE_LANES;
2439 else if (lane != NEON_INTERLEAVE_LANES)
2440 {
2441 first_error (_(type_error));
2442 return FAIL;
2443 }
2444 if (reg_incr == -1)
2445 reg_incr = 1;
2446 else if (reg_incr != 1)
2447 {
2448 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2449 return FAIL;
2450 }
2451 ptr++;
2452 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2453 if (hireg == FAIL)
2454 {
2455 first_error (_(reg_expected_msgs[rtype]));
2456 return FAIL;
2457 }
2458 if (! neon_alias_types_same (&htype, &firsttype))
2459 {
2460 first_error (_(type_error));
2461 return FAIL;
2462 }
2463 count += hireg + dregs - getreg;
2464 continue;
2465 }
2466
2467 /* If we're using Q registers, we can't use [] or [n] syntax. */
2468 if (rtype == REG_TYPE_NQ)
2469 {
2470 count += 2;
2471 continue;
2472 }
2473
2474 if ((atype.defined & NTA_HASINDEX) != 0)
2475 {
2476 if (lane == -1)
2477 lane = atype.index;
2478 else if (lane != atype.index)
2479 {
2480 first_error (_(type_error));
2481 return FAIL;
2482 }
2483 }
2484 else if (lane == -1)
2485 lane = NEON_INTERLEAVE_LANES;
2486 else if (lane != NEON_INTERLEAVE_LANES)
2487 {
2488 first_error (_(type_error));
2489 return FAIL;
2490 }
2491 count++;
2492 }
2493 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
2494
2495 /* No lane set by [x]. We must be interleaving structures. */
2496 if (lane == -1)
2497 lane = NEON_INTERLEAVE_LANES;
2498
2499 /* Sanity check. */
2500 if (lane == -1 || base_reg == -1 || count < 1 || (!mve && count > 4)
2501 || (count > 1 && reg_incr == -1))
2502 {
2503 first_error (_("error parsing element/structure list"));
2504 return FAIL;
2505 }
2506
2507 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2508 {
2509 first_error (_("expected }"));
2510 return FAIL;
2511 }
2512
2513 if (reg_incr == -1)
2514 reg_incr = 1;
2515
2516 if (eltype)
2517 *eltype = firsttype.eltype;
2518
2519 *pbase = base_reg;
2520 *str = ptr;
2521
2522 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2523 }
2524
2525 /* Parse an explicit relocation suffix on an expression. This is
2526 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2527 arm_reloc_hsh contains no entries, so this function can only
2528 succeed if there is no () after the word. Returns -1 on error,
2529 BFD_RELOC_UNUSED if there wasn't any suffix. */
2530
2531 static int
2532 parse_reloc (char **str)
2533 {
2534 struct reloc_entry *r;
2535 char *p, *q;
2536
2537 if (**str != '(')
2538 return BFD_RELOC_UNUSED;
2539
2540 p = *str + 1;
2541 q = p;
2542
2543 while (*q && *q != ')' && *q != ',')
2544 q++;
2545 if (*q != ')')
2546 return -1;
2547
2548 if ((r = (struct reloc_entry *)
2549 str_hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
2550 return -1;
2551
2552 *str = q + 1;
2553 return r->reloc;
2554 }
2555
2556 /* Directives: register aliases. */
2557
2558 static struct reg_entry *
2559 insert_reg_alias (char *str, unsigned number, int type)
2560 {
2561 struct reg_entry *new_reg;
2562 const char *name;
2563
2564 if ((new_reg = (struct reg_entry *) str_hash_find (arm_reg_hsh, str)) != 0)
2565 {
2566 if (new_reg->builtin)
2567 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
2568
2569 /* Only warn about a redefinition if it's not defined as the
2570 same register. */
2571 else if (new_reg->number != number || new_reg->type != type)
2572 as_warn (_("ignoring redefinition of register alias '%s'"), str);
2573
2574 return NULL;
2575 }
2576
2577 name = xstrdup (str);
2578 new_reg = XNEW (struct reg_entry);
2579
2580 new_reg->name = name;
2581 new_reg->number = number;
2582 new_reg->type = type;
2583 new_reg->builtin = FALSE;
2584 new_reg->neon = NULL;
2585
2586 str_hash_insert (arm_reg_hsh, name, new_reg, 0);
2587
2588 return new_reg;
2589 }
2590
2591 static void
2592 insert_neon_reg_alias (char *str, int number, int type,
2593 struct neon_typed_alias *atype)
2594 {
2595 struct reg_entry *reg = insert_reg_alias (str, number, type);
2596
2597 if (!reg)
2598 {
2599 first_error (_("attempt to redefine typed alias"));
2600 return;
2601 }
2602
2603 if (atype)
2604 {
2605 reg->neon = XNEW (struct neon_typed_alias);
2606 *reg->neon = *atype;
2607 }
2608 }
2609
2610 /* Look for the .req directive. This is of the form:
2611
2612 new_register_name .req existing_register_name
2613
2614 If we find one, or if it looks sufficiently like one that we want to
2615 handle any error here, return TRUE. Otherwise return FALSE. */
2616
2617 static bfd_boolean
2618 create_register_alias (char * newname, char *p)
2619 {
2620 struct reg_entry *old;
2621 char *oldname, *nbuf;
2622 size_t nlen;
2623
2624 /* The input scrubber ensures that whitespace after the mnemonic is
2625 collapsed to single spaces. */
2626 oldname = p;
2627 if (strncmp (oldname, " .req ", 6) != 0)
2628 return FALSE;
2629
2630 oldname += 6;
2631 if (*oldname == '\0')
2632 return FALSE;
2633
2634 old = (struct reg_entry *) str_hash_find (arm_reg_hsh, oldname);
2635 if (!old)
2636 {
2637 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
2638 return TRUE;
2639 }
2640
2641 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2642 the desired alias name, and p points to its end. If not, then
2643 the desired alias name is in the global original_case_string. */
2644 #ifdef TC_CASE_SENSITIVE
2645 nlen = p - newname;
2646 #else
2647 newname = original_case_string;
2648 nlen = strlen (newname);
2649 #endif
2650
2651 nbuf = xmemdup0 (newname, nlen);
2652
2653 /* Create aliases under the new name as stated; an all-lowercase
2654 version of the new name; and an all-uppercase version of the new
2655 name. */
2656 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2657 {
2658 for (p = nbuf; *p; p++)
2659 *p = TOUPPER (*p);
2660
2661 if (strncmp (nbuf, newname, nlen))
2662 {
2663 /* If this attempt to create an additional alias fails, do not bother
2664 trying to create the all-lower case alias. We will fail and issue
2665 a second, duplicate error message. This situation arises when the
2666 programmer does something like:
2667 foo .req r0
2668 Foo .req r1
2669 The second .req creates the "Foo" alias but then fails to create
2670 the artificial FOO alias because it has already been created by the
2671 first .req. */
2672 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
2673 {
2674 free (nbuf);
2675 return TRUE;
2676 }
2677 }
2678
2679 for (p = nbuf; *p; p++)
2680 *p = TOLOWER (*p);
2681
2682 if (strncmp (nbuf, newname, nlen))
2683 insert_reg_alias (nbuf, old->number, old->type);
2684 }
2685
2686 free (nbuf);
2687 return TRUE;
2688 }
2689
2690 /* Create a Neon typed/indexed register alias using directives, e.g.:
2691 X .dn d5.s32[1]
2692 Y .qn 6.s16
2693 Z .dn d7
2694 T .dn Z[0]
2695 These typed registers can be used instead of the types specified after the
2696 Neon mnemonic, so long as all operands given have types. Types can also be
2697 specified directly, e.g.:
2698 vadd d0.s32, d1.s32, d2.s32 */
2699
2700 static bfd_boolean
2701 create_neon_reg_alias (char *newname, char *p)
2702 {
2703 enum arm_reg_type basetype;
2704 struct reg_entry *basereg;
2705 struct reg_entry mybasereg;
2706 struct neon_type ntype;
2707 struct neon_typed_alias typeinfo;
2708 char *namebuf, *nameend ATTRIBUTE_UNUSED;
2709 int namelen;
2710
2711 typeinfo.defined = 0;
2712 typeinfo.eltype.type = NT_invtype;
2713 typeinfo.eltype.size = -1;
2714 typeinfo.index = -1;
2715
2716 nameend = p;
2717
2718 if (strncmp (p, " .dn ", 5) == 0)
2719 basetype = REG_TYPE_VFD;
2720 else if (strncmp (p, " .qn ", 5) == 0)
2721 basetype = REG_TYPE_NQ;
2722 else
2723 return FALSE;
2724
2725 p += 5;
2726
2727 if (*p == '\0')
2728 return FALSE;
2729
2730 basereg = arm_reg_parse_multi (&p);
2731
2732 if (basereg && basereg->type != basetype)
2733 {
2734 as_bad (_("bad type for register"));
2735 return FALSE;
2736 }
2737
2738 if (basereg == NULL)
2739 {
2740 expressionS exp;
2741 /* Try parsing as an integer. */
2742 my_get_expression (&exp, &p, GE_NO_PREFIX);
2743 if (exp.X_op != O_constant)
2744 {
2745 as_bad (_("expression must be constant"));
2746 return FALSE;
2747 }
2748 basereg = &mybasereg;
2749 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
2750 : exp.X_add_number;
2751 basereg->neon = 0;
2752 }
2753
2754 if (basereg->neon)
2755 typeinfo = *basereg->neon;
2756
2757 if (parse_neon_type (&ntype, &p) == SUCCESS)
2758 {
2759 /* We got a type. */
2760 if (typeinfo.defined & NTA_HASTYPE)
2761 {
2762 as_bad (_("can't redefine the type of a register alias"));
2763 return FALSE;
2764 }
2765
2766 typeinfo.defined |= NTA_HASTYPE;
2767 if (ntype.elems != 1)
2768 {
2769 as_bad (_("you must specify a single type only"));
2770 return FALSE;
2771 }
2772 typeinfo.eltype = ntype.el[0];
2773 }
2774
2775 if (skip_past_char (&p, '[') == SUCCESS)
2776 {
2777 expressionS exp;
2778 /* We got a scalar index. */
2779
2780 if (typeinfo.defined & NTA_HASINDEX)
2781 {
2782 as_bad (_("can't redefine the index of a scalar alias"));
2783 return FALSE;
2784 }
2785
2786 my_get_expression (&exp, &p, GE_NO_PREFIX);
2787
2788 if (exp.X_op != O_constant)
2789 {
2790 as_bad (_("scalar index must be constant"));
2791 return FALSE;
2792 }
2793
2794 typeinfo.defined |= NTA_HASINDEX;
2795 typeinfo.index = exp.X_add_number;
2796
2797 if (skip_past_char (&p, ']') == FAIL)
2798 {
2799 as_bad (_("expecting ]"));
2800 return FALSE;
2801 }
2802 }
2803
2804 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2805 the desired alias name, and p points to its end. If not, then
2806 the desired alias name is in the global original_case_string. */
2807 #ifdef TC_CASE_SENSITIVE
2808 namelen = nameend - newname;
2809 #else
2810 newname = original_case_string;
2811 namelen = strlen (newname);
2812 #endif
2813
2814 namebuf = xmemdup0 (newname, namelen);
2815
2816 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2817 typeinfo.defined != 0 ? &typeinfo : NULL);
2818
2819 /* Insert name in all uppercase. */
2820 for (p = namebuf; *p; p++)
2821 *p = TOUPPER (*p);
2822
2823 if (strncmp (namebuf, newname, namelen))
2824 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2825 typeinfo.defined != 0 ? &typeinfo : NULL);
2826
2827 /* Insert name in all lowercase. */
2828 for (p = namebuf; *p; p++)
2829 *p = TOLOWER (*p);
2830
2831 if (strncmp (namebuf, newname, namelen))
2832 insert_neon_reg_alias (namebuf, basereg->number, basetype,
2833 typeinfo.defined != 0 ? &typeinfo : NULL);
2834
2835 free (namebuf);
2836 return TRUE;
2837 }
2838
2839 /* Should never be called, as .req goes between the alias and the
2840 register name, not at the beginning of the line. */
2841
2842 static void
2843 s_req (int a ATTRIBUTE_UNUSED)
2844 {
2845 as_bad (_("invalid syntax for .req directive"));
2846 }
2847
2848 static void
2849 s_dn (int a ATTRIBUTE_UNUSED)
2850 {
2851 as_bad (_("invalid syntax for .dn directive"));
2852 }
2853
2854 static void
2855 s_qn (int a ATTRIBUTE_UNUSED)
2856 {
2857 as_bad (_("invalid syntax for .qn directive"));
2858 }
2859
2860 /* The .unreq directive deletes an alias which was previously defined
2861 by .req. For example:
2862
2863 my_alias .req r11
2864 .unreq my_alias */
2865
2866 static void
2867 s_unreq (int a ATTRIBUTE_UNUSED)
2868 {
2869 char * name;
2870 char saved_char;
2871
2872 name = input_line_pointer;
2873
2874 while (*input_line_pointer != 0
2875 && *input_line_pointer != ' '
2876 && *input_line_pointer != '\n')
2877 ++input_line_pointer;
2878
2879 saved_char = *input_line_pointer;
2880 *input_line_pointer = 0;
2881
2882 if (!*name)
2883 as_bad (_("invalid syntax for .unreq directive"));
2884 else
2885 {
2886 struct reg_entry *reg
2887 = (struct reg_entry *) str_hash_find (arm_reg_hsh, name);
2888
2889 if (!reg)
2890 as_bad (_("unknown register alias '%s'"), name);
2891 else if (reg->builtin)
2892 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
2893 name);
2894 else
2895 {
2896 char * p;
2897 char * nbuf;
2898
2899 str_hash_delete (arm_reg_hsh, name);
2900 free ((char *) reg->name);
2901 free (reg->neon);
2902 free (reg);
2903
2904 /* Also locate the all upper case and all lower case versions.
2905 Do not complain if we cannot find one or the other as it
2906 was probably deleted above. */
2907
2908 nbuf = strdup (name);
2909 for (p = nbuf; *p; p++)
2910 *p = TOUPPER (*p);
2911 reg = (struct reg_entry *) str_hash_find (arm_reg_hsh, nbuf);
2912 if (reg)
2913 {
2914 str_hash_delete (arm_reg_hsh, nbuf);
2915 free ((char *) reg->name);
2916 free (reg->neon);
2917 free (reg);
2918 }
2919
2920 for (p = nbuf; *p; p++)
2921 *p = TOLOWER (*p);
2922 reg = (struct reg_entry *) str_hash_find (arm_reg_hsh, nbuf);
2923 if (reg)
2924 {
2925 str_hash_delete (arm_reg_hsh, nbuf);
2926 free ((char *) reg->name);
2927 free (reg->neon);
2928 free (reg);
2929 }
2930
2931 free (nbuf);
2932 }
2933 }
2934
2935 *input_line_pointer = saved_char;
2936 demand_empty_rest_of_line ();
2937 }
2938
2939 /* Directives: Instruction set selection. */
2940
2941 #ifdef OBJ_ELF
2942 /* This code is to handle mapping symbols as defined in the ARM ELF spec.
2943 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2944 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2945 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2946
2947 /* Create a new mapping symbol for the transition to STATE. */
2948
2949 static void
2950 make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
2951 {
2952 symbolS * symbolP;
2953 const char * symname;
2954 int type;
2955
2956 switch (state)
2957 {
2958 case MAP_DATA:
2959 symname = "$d";
2960 type = BSF_NO_FLAGS;
2961 break;
2962 case MAP_ARM:
2963 symname = "$a";
2964 type = BSF_NO_FLAGS;
2965 break;
2966 case MAP_THUMB:
2967 symname = "$t";
2968 type = BSF_NO_FLAGS;
2969 break;
2970 default:
2971 abort ();
2972 }
2973
2974 symbolP = symbol_new (symname, now_seg, frag, value);
2975 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2976
2977 switch (state)
2978 {
2979 case MAP_ARM:
2980 THUMB_SET_FUNC (symbolP, 0);
2981 ARM_SET_THUMB (symbolP, 0);
2982 ARM_SET_INTERWORK (symbolP, support_interwork);
2983 break;
2984
2985 case MAP_THUMB:
2986 THUMB_SET_FUNC (symbolP, 1);
2987 ARM_SET_THUMB (symbolP, 1);
2988 ARM_SET_INTERWORK (symbolP, support_interwork);
2989 break;
2990
2991 case MAP_DATA:
2992 default:
2993 break;
2994 }
2995
2996 /* Save the mapping symbols for future reference. Also check that
2997 we do not place two mapping symbols at the same offset within a
2998 frag. We'll handle overlap between frags in
2999 check_mapping_symbols.
3000
3001 If .fill or other data filling directive generates zero sized data,
3002 the mapping symbol for the following code will have the same value
3003 as the one generated for the data filling directive. In this case,
3004 we replace the old symbol with the new one at the same address. */
3005 if (value == 0)
3006 {
3007 if (frag->tc_frag_data.first_map != NULL)
3008 {
3009 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
3010 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
3011 }
3012 frag->tc_frag_data.first_map = symbolP;
3013 }
3014 if (frag->tc_frag_data.last_map != NULL)
3015 {
3016 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
3017 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
3018 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
3019 }
3020 frag->tc_frag_data.last_map = symbolP;
3021 }
3022
3023 /* We must sometimes convert a region marked as code to data during
3024 code alignment, if an odd number of bytes have to be padded. The
3025 code mapping symbol is pushed to an aligned address. */
3026
3027 static void
3028 insert_data_mapping_symbol (enum mstate state,
3029 valueT value, fragS *frag, offsetT bytes)
3030 {
3031 /* If there was already a mapping symbol, remove it. */
3032 if (frag->tc_frag_data.last_map != NULL
3033 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
3034 {
3035 symbolS *symp = frag->tc_frag_data.last_map;
3036
3037 if (value == 0)
3038 {
3039 know (frag->tc_frag_data.first_map == symp);
3040 frag->tc_frag_data.first_map = NULL;
3041 }
3042 frag->tc_frag_data.last_map = NULL;
3043 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
3044 }
3045
3046 make_mapping_symbol (MAP_DATA, value, frag);
3047 make_mapping_symbol (state, value + bytes, frag);
3048 }
3049
3050 static void mapping_state_2 (enum mstate state, int max_chars);
3051
3052 /* Set the mapping state to STATE. Only call this when about to
3053 emit some STATE bytes to the file. */
3054
3055 #define TRANSITION(from, to) (mapstate == (from) && state == (to))
3056 void
3057 mapping_state (enum mstate state)
3058 {
3059 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
3060
3061 if (mapstate == state)
3062 /* The mapping symbol has already been emitted.
3063 There is nothing else to do. */
3064 return;
3065
3066 if (state == MAP_ARM || state == MAP_THUMB)
3067 /* PR gas/12931
3068 All ARM instructions require 4-byte alignment.
3069 (Almost) all Thumb instructions require 2-byte alignment.
3070
3071 When emitting instructions into any section, mark the section
3072 appropriately.
3073
3074 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
3075 but themselves require 2-byte alignment; this applies to some
3076 PC- relative forms. However, these cases will involve implicit
3077 literal pool generation or an explicit .align >=2, both of
3078 which will cause the section to me marked with sufficient
3079 alignment. Thus, we don't handle those cases here. */
3080 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
3081
3082 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
3083 /* This case will be evaluated later. */
3084 return;
3085
3086 mapping_state_2 (state, 0);
3087 }
3088
3089 /* Same as mapping_state, but MAX_CHARS bytes have already been
3090 allocated. Put the mapping symbol that far back. */
3091
3092 static void
3093 mapping_state_2 (enum mstate state, int max_chars)
3094 {
3095 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
3096
3097 if (!SEG_NORMAL (now_seg))
3098 return;
3099
3100 if (mapstate == state)
3101 /* The mapping symbol has already been emitted.
3102 There is nothing else to do. */
3103 return;
3104
3105 if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
3106 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
3107 {
3108 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
3109 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
3110
3111 if (add_symbol)
3112 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
3113 }
3114
3115 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
3116 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
3117 }
3118 #undef TRANSITION
3119 #else
3120 #define mapping_state(x) ((void)0)
3121 #define mapping_state_2(x, y) ((void)0)
3122 #endif
3123
3124 /* Find the real, Thumb encoded start of a Thumb function. */
3125
3126 #ifdef OBJ_COFF
3127 static symbolS *
3128 find_real_start (symbolS * symbolP)
3129 {
3130 char * real_start;
3131 const char * name = S_GET_NAME (symbolP);
3132 symbolS * new_target;
3133
3134 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
3135 #define STUB_NAME ".real_start_of"
3136
3137 if (name == NULL)
3138 abort ();
3139
3140 /* The compiler may generate BL instructions to local labels because
3141 it needs to perform a branch to a far away location. These labels
3142 do not have a corresponding ".real_start_of" label. We check
3143 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
3144 the ".real_start_of" convention for nonlocal branches. */
3145 if (S_IS_LOCAL (symbolP) || name[0] == '.')
3146 return symbolP;
3147
3148 real_start = concat (STUB_NAME, name, NULL);
3149 new_target = symbol_find (real_start);
3150 free (real_start);
3151
3152 if (new_target == NULL)
3153 {
3154 as_warn (_("Failed to find real start of function: %s\n"), name);
3155 new_target = symbolP;
3156 }
3157
3158 return new_target;
3159 }
3160 #endif
3161
3162 static void
3163 opcode_select (int width)
3164 {
3165 switch (width)
3166 {
3167 case 16:
3168 if (! thumb_mode)
3169 {
3170 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
3171 as_bad (_("selected processor does not support THUMB opcodes"));
3172
3173 thumb_mode = 1;
3174 /* No need to force the alignment, since we will have been
3175 coming from ARM mode, which is word-aligned. */
3176 record_alignment (now_seg, 1);
3177 }
3178 break;
3179
3180 case 32:
3181 if (thumb_mode)
3182 {
3183 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
3184 as_bad (_("selected processor does not support ARM opcodes"));
3185
3186 thumb_mode = 0;
3187
3188 if (!need_pass_2)
3189 frag_align (2, 0, 0);
3190
3191 record_alignment (now_seg, 1);
3192 }
3193 break;
3194
3195 default:
3196 as_bad (_("invalid instruction size selected (%d)"), width);
3197 }
3198 }
3199
3200 static void
3201 s_arm (int ignore ATTRIBUTE_UNUSED)
3202 {
3203 opcode_select (32);
3204 demand_empty_rest_of_line ();
3205 }
3206
3207 static void
3208 s_thumb (int ignore ATTRIBUTE_UNUSED)
3209 {
3210 opcode_select (16);
3211 demand_empty_rest_of_line ();
3212 }
3213
3214 static void
3215 s_code (int unused ATTRIBUTE_UNUSED)
3216 {
3217 int temp;
3218
3219 temp = get_absolute_expression ();
3220 switch (temp)
3221 {
3222 case 16:
3223 case 32:
3224 opcode_select (temp);
3225 break;
3226
3227 default:
3228 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
3229 }
3230 }
3231
3232 static void
3233 s_force_thumb (int ignore ATTRIBUTE_UNUSED)
3234 {
3235 /* If we are not already in thumb mode go into it, EVEN if
3236 the target processor does not support thumb instructions.
3237 This is used by gcc/config/arm/lib1funcs.asm for example
3238 to compile interworking support functions even if the
3239 target processor should not support interworking. */
3240 if (! thumb_mode)
3241 {
3242 thumb_mode = 2;
3243 record_alignment (now_seg, 1);
3244 }
3245
3246 demand_empty_rest_of_line ();
3247 }
3248
3249 static void
3250 s_thumb_func (int ignore ATTRIBUTE_UNUSED)
3251 {
3252 s_thumb (0);
3253
3254 /* The following label is the name/address of the start of a Thumb function.
3255 We need to know this for the interworking support. */
3256 label_is_thumb_function_name = TRUE;
3257 }
3258
3259 /* Perform a .set directive, but also mark the alias as
3260 being a thumb function. */
3261
3262 static void
3263 s_thumb_set (int equiv)
3264 {
3265 /* XXX the following is a duplicate of the code for s_set() in read.c
3266 We cannot just call that code as we need to get at the symbol that
3267 is created. */
3268 char * name;
3269 char delim;
3270 char * end_name;
3271 symbolS * symbolP;
3272
3273 /* Especial apologies for the random logic:
3274 This just grew, and could be parsed much more simply!
3275 Dean - in haste. */
3276 delim = get_symbol_name (& name);
3277 end_name = input_line_pointer;
3278 (void) restore_line_pointer (delim);
3279
3280 if (*input_line_pointer != ',')
3281 {
3282 *end_name = 0;
3283 as_bad (_("expected comma after name \"%s\""), name);
3284 *end_name = delim;
3285 ignore_rest_of_line ();
3286 return;
3287 }
3288
3289 input_line_pointer++;
3290 *end_name = 0;
3291
3292 if (name[0] == '.' && name[1] == '\0')
3293 {
3294 /* XXX - this should not happen to .thumb_set. */
3295 abort ();
3296 }
3297
3298 if ((symbolP = symbol_find (name)) == NULL
3299 && (symbolP = md_undefined_symbol (name)) == NULL)
3300 {
3301 #ifndef NO_LISTING
3302 /* When doing symbol listings, play games with dummy fragments living
3303 outside the normal fragment chain to record the file and line info
3304 for this symbol. */
3305 if (listing & LISTING_SYMBOLS)
3306 {
3307 extern struct list_info_struct * listing_tail;
3308 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
3309
3310 memset (dummy_frag, 0, sizeof (fragS));
3311 dummy_frag->fr_type = rs_fill;
3312 dummy_frag->line = listing_tail;
3313 symbolP = symbol_new (name, undefined_section, dummy_frag, 0);
3314 dummy_frag->fr_symbol = symbolP;
3315 }
3316 else
3317 #endif
3318 symbolP = symbol_new (name, undefined_section, &zero_address_frag, 0);
3319
3320 #ifdef OBJ_COFF
3321 /* "set" symbols are local unless otherwise specified. */
3322 SF_SET_LOCAL (symbolP);
3323 #endif /* OBJ_COFF */
3324 } /* Make a new symbol. */
3325
3326 symbol_table_insert (symbolP);
3327
3328 * end_name = delim;
3329
3330 if (equiv
3331 && S_IS_DEFINED (symbolP)
3332 && S_GET_SEGMENT (symbolP) != reg_section)
3333 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
3334
3335 pseudo_set (symbolP);
3336
3337 demand_empty_rest_of_line ();
3338
3339 /* XXX Now we come to the Thumb specific bit of code. */
3340
3341 THUMB_SET_FUNC (symbolP, 1);
3342 ARM_SET_THUMB (symbolP, 1);
3343 #if defined OBJ_ELF || defined OBJ_COFF
3344 ARM_SET_INTERWORK (symbolP, support_interwork);
3345 #endif
3346 }
3347
3348 /* Directives: Mode selection. */
3349
3350 /* .syntax [unified|divided] - choose the new unified syntax
3351 (same for Arm and Thumb encoding, modulo slight differences in what
3352 can be represented) or the old divergent syntax for each mode. */
3353 static void
3354 s_syntax (int unused ATTRIBUTE_UNUSED)
3355 {
3356 char *name, delim;
3357
3358 delim = get_symbol_name (& name);
3359
3360 if (!strcasecmp (name, "unified"))
3361 unified_syntax = TRUE;
3362 else if (!strcasecmp (name, "divided"))
3363 unified_syntax = FALSE;
3364 else
3365 {
3366 as_bad (_("unrecognized syntax mode \"%s\""), name);
3367 return;
3368 }
3369 (void) restore_line_pointer (delim);
3370 demand_empty_rest_of_line ();
3371 }
3372
3373 /* Directives: sectioning and alignment. */
3374
3375 static void
3376 s_bss (int ignore ATTRIBUTE_UNUSED)
3377 {
3378 /* We don't support putting frags in the BSS segment, we fake it by
3379 marking in_bss, then looking at s_skip for clues. */
3380 subseg_set (bss_section, 0);
3381 demand_empty_rest_of_line ();
3382
3383 #ifdef md_elf_section_change_hook
3384 md_elf_section_change_hook ();
3385 #endif
3386 }
3387
3388 static void
3389 s_even (int ignore ATTRIBUTE_UNUSED)
3390 {
3391 /* Never make frag if expect extra pass. */
3392 if (!need_pass_2)
3393 frag_align (1, 0, 0);
3394
3395 record_alignment (now_seg, 1);
3396
3397 demand_empty_rest_of_line ();
3398 }
3399
3400 /* Directives: CodeComposer Studio. */
3401
3402 /* .ref (for CodeComposer Studio syntax only). */
3403 static void
3404 s_ccs_ref (int unused ATTRIBUTE_UNUSED)
3405 {
3406 if (codecomposer_syntax)
3407 ignore_rest_of_line ();
3408 else
3409 as_bad (_(".ref pseudo-op only available with -mccs flag."));
3410 }
3411
3412 /* If name is not NULL, then it is used for marking the beginning of a
3413 function, whereas if it is NULL then it means the function end. */
3414 static void
3415 asmfunc_debug (const char * name)
3416 {
3417 static const char * last_name = NULL;
3418
3419 if (name != NULL)
3420 {
3421 gas_assert (last_name == NULL);
3422 last_name = name;
3423
3424 if (debug_type == DEBUG_STABS)
3425 stabs_generate_asm_func (name, name);
3426 }
3427 else
3428 {
3429 gas_assert (last_name != NULL);
3430
3431 if (debug_type == DEBUG_STABS)
3432 stabs_generate_asm_endfunc (last_name, last_name);
3433
3434 last_name = NULL;
3435 }
3436 }
3437
3438 static void
3439 s_ccs_asmfunc (int unused ATTRIBUTE_UNUSED)
3440 {
3441 if (codecomposer_syntax)
3442 {
3443 switch (asmfunc_state)
3444 {
3445 case OUTSIDE_ASMFUNC:
3446 asmfunc_state = WAITING_ASMFUNC_NAME;
3447 break;
3448
3449 case WAITING_ASMFUNC_NAME:
3450 as_bad (_(".asmfunc repeated."));
3451 break;
3452
3453 case WAITING_ENDASMFUNC:
3454 as_bad (_(".asmfunc without function."));
3455 break;
3456 }
3457 demand_empty_rest_of_line ();
3458 }
3459 else
3460 as_bad (_(".asmfunc pseudo-op only available with -mccs flag."));
3461 }
3462
3463 static void
3464 s_ccs_endasmfunc (int unused ATTRIBUTE_UNUSED)
3465 {
3466 if (codecomposer_syntax)
3467 {
3468 switch (asmfunc_state)
3469 {
3470 case OUTSIDE_ASMFUNC:
3471 as_bad (_(".endasmfunc without a .asmfunc."));
3472 break;
3473
3474 case WAITING_ASMFUNC_NAME:
3475 as_bad (_(".endasmfunc without function."));
3476 break;
3477
3478 case WAITING_ENDASMFUNC:
3479 asmfunc_state = OUTSIDE_ASMFUNC;
3480 asmfunc_debug (NULL);
3481 break;
3482 }
3483 demand_empty_rest_of_line ();
3484 }
3485 else
3486 as_bad (_(".endasmfunc pseudo-op only available with -mccs flag."));
3487 }
3488
3489 static void
3490 s_ccs_def (int name)
3491 {
3492 if (codecomposer_syntax)
3493 s_globl (name);
3494 else
3495 as_bad (_(".def pseudo-op only available with -mccs flag."));
3496 }
3497
3498 /* Directives: Literal pools. */
3499
3500 static literal_pool *
3501 find_literal_pool (void)
3502 {
3503 literal_pool * pool;
3504
3505 for (pool = list_of_pools; pool != NULL; pool = pool->next)
3506 {
3507 if (pool->section == now_seg
3508 && pool->sub_section == now_subseg)
3509 break;
3510 }
3511
3512 return pool;
3513 }
3514
3515 static literal_pool *
3516 find_or_make_literal_pool (void)
3517 {
3518 /* Next literal pool ID number. */
3519 static unsigned int latest_pool_num = 1;
3520 literal_pool * pool;
3521
3522 pool = find_literal_pool ();
3523
3524 if (pool == NULL)
3525 {
3526 /* Create a new pool. */
3527 pool = XNEW (literal_pool);
3528 if (! pool)
3529 return NULL;
3530
3531 pool->next_free_entry = 0;
3532 pool->section = now_seg;
3533 pool->sub_section = now_subseg;
3534 pool->next = list_of_pools;
3535 pool->symbol = NULL;
3536 pool->alignment = 2;
3537
3538 /* Add it to the list. */
3539 list_of_pools = pool;
3540 }
3541
3542 /* New pools, and emptied pools, will have a NULL symbol. */
3543 if (pool->symbol == NULL)
3544 {
3545 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3546 &zero_address_frag, 0);
3547 pool->id = latest_pool_num ++;
3548 }
3549
3550 /* Done. */
3551 return pool;
3552 }
3553
3554 /* Add the literal in the global 'inst'
3555 structure to the relevant literal pool. */
3556
3557 static int
3558 add_to_lit_pool (unsigned int nbytes)
3559 {
3560 #define PADDING_SLOT 0x1
3561 #define LIT_ENTRY_SIZE_MASK 0xFF
3562 literal_pool * pool;
3563 unsigned int entry, pool_size = 0;
3564 bfd_boolean padding_slot_p = FALSE;
3565 unsigned imm1 = 0;
3566 unsigned imm2 = 0;
3567
3568 if (nbytes == 8)
3569 {
3570 imm1 = inst.operands[1].imm;
3571 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3572 : inst.relocs[0].exp.X_unsigned ? 0
3573 : ((bfd_int64_t) inst.operands[1].imm) >> 32);
3574 if (target_big_endian)
3575 {
3576 imm1 = imm2;
3577 imm2 = inst.operands[1].imm;
3578 }
3579 }
3580
3581 pool = find_or_make_literal_pool ();
3582
3583 /* Check if this literal value is already in the pool. */
3584 for (entry = 0; entry < pool->next_free_entry; entry ++)
3585 {
3586 if (nbytes == 4)
3587 {
3588 if ((pool->literals[entry].X_op == inst.relocs[0].exp.X_op)
3589 && (inst.relocs[0].exp.X_op == O_constant)
3590 && (pool->literals[entry].X_add_number
3591 == inst.relocs[0].exp.X_add_number)
3592 && (pool->literals[entry].X_md == nbytes)
3593 && (pool->literals[entry].X_unsigned
3594 == inst.relocs[0].exp.X_unsigned))
3595 break;
3596
3597 if ((pool->literals[entry].X_op == inst.relocs[0].exp.X_op)
3598 && (inst.relocs[0].exp.X_op == O_symbol)
3599 && (pool->literals[entry].X_add_number
3600 == inst.relocs[0].exp.X_add_number)
3601 && (pool->literals[entry].X_add_symbol
3602 == inst.relocs[0].exp.X_add_symbol)
3603 && (pool->literals[entry].X_op_symbol
3604 == inst.relocs[0].exp.X_op_symbol)
3605 && (pool->literals[entry].X_md == nbytes))
3606 break;
3607 }
3608 else if ((nbytes == 8)
3609 && !(pool_size & 0x7)
3610 && ((entry + 1) != pool->next_free_entry)
3611 && (pool->literals[entry].X_op == O_constant)
3612 && (pool->literals[entry].X_add_number == (offsetT) imm1)
3613 && (pool->literals[entry].X_unsigned
3614 == inst.relocs[0].exp.X_unsigned)
3615 && (pool->literals[entry + 1].X_op == O_constant)
3616 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
3617 && (pool->literals[entry + 1].X_unsigned
3618 == inst.relocs[0].exp.X_unsigned))
3619 break;
3620
3621 padding_slot_p = ((pool->literals[entry].X_md >> 8) == PADDING_SLOT);
3622 if (padding_slot_p && (nbytes == 4))
3623 break;
3624
3625 pool_size += 4;
3626 }
3627
3628 /* Do we need to create a new entry? */
3629 if (entry == pool->next_free_entry)
3630 {
3631 if (entry >= MAX_LITERAL_POOL_SIZE)
3632 {
3633 inst.error = _("literal pool overflow");
3634 return FAIL;
3635 }
3636
3637 if (nbytes == 8)
3638 {
3639 /* For 8-byte entries, we align to an 8-byte boundary,
3640 and split it into two 4-byte entries, because on 32-bit
3641 host, 8-byte constants are treated as big num, thus
3642 saved in "generic_bignum" which will be overwritten
3643 by later assignments.
3644
3645 We also need to make sure there is enough space for
3646 the split.
3647
3648 We also check to make sure the literal operand is a
3649 constant number. */
3650 if (!(inst.relocs[0].exp.X_op == O_constant
3651 || inst.relocs[0].exp.X_op == O_big))
3652 {
3653 inst.error = _("invalid type for literal pool");
3654 return FAIL;
3655 }
3656 else if (pool_size & 0x7)
3657 {
3658 if ((entry + 2) >= MAX_LITERAL_POOL_SIZE)
3659 {
3660 inst.error = _("literal pool overflow");
3661 return FAIL;
3662 }
3663
3664 pool->literals[entry] = inst.relocs[0].exp;
3665 pool->literals[entry].X_op = O_constant;
3666 pool->literals[entry].X_add_number = 0;
3667 pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
3668 pool->next_free_entry += 1;
3669 pool_size += 4;
3670 }
3671 else if ((entry + 1) >= MAX_LITERAL_POOL_SIZE)
3672 {
3673 inst.error = _("literal pool overflow");
3674 return FAIL;
3675 }
3676
3677 pool->literals[entry] = inst.relocs[0].exp;
3678 pool->literals[entry].X_op = O_constant;
3679 pool->literals[entry].X_add_number = imm1;
3680 pool->literals[entry].X_unsigned = inst.relocs[0].exp.X_unsigned;
3681 pool->literals[entry++].X_md = 4;
3682 pool->literals[entry] = inst.relocs[0].exp;
3683 pool->literals[entry].X_op = O_constant;
3684 pool->literals[entry].X_add_number = imm2;
3685 pool->literals[entry].X_unsigned = inst.relocs[0].exp.X_unsigned;
3686 pool->literals[entry].X_md = 4;
3687 pool->alignment = 3;
3688 pool->next_free_entry += 1;
3689 }
3690 else
3691 {
3692 pool->literals[entry] = inst.relocs[0].exp;
3693 pool->literals[entry].X_md = 4;
3694 }
3695
3696 #ifdef OBJ_ELF
3697 /* PR ld/12974: Record the location of the first source line to reference
3698 this entry in the literal pool. If it turns out during linking that the
3699 symbol does not exist we will be able to give an accurate line number for
3700 the (first use of the) missing reference. */
3701 if (debug_type == DEBUG_DWARF2)
3702 dwarf2_where (pool->locs + entry);
3703 #endif
3704 pool->next_free_entry += 1;
3705 }
3706 else if (padding_slot_p)
3707 {
3708 pool->literals[entry] = inst.relocs[0].exp;
3709 pool->literals[entry].X_md = nbytes;
3710 }
3711
3712 inst.relocs[0].exp.X_op = O_symbol;
3713 inst.relocs[0].exp.X_add_number = pool_size;
3714 inst.relocs[0].exp.X_add_symbol = pool->symbol;
3715
3716 return SUCCESS;
3717 }
3718
3719 bfd_boolean
3720 tc_start_label_without_colon (void)
3721 {
3722 bfd_boolean ret = TRUE;
3723
3724 if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
3725 {
3726 const char *label = input_line_pointer;
3727
3728 while (!is_end_of_line[(int) label[-1]])
3729 --label;
3730
3731 if (*label == '.')
3732 {
3733 as_bad (_("Invalid label '%s'"), label);
3734 ret = FALSE;
3735 }
3736
3737 asmfunc_debug (label);
3738
3739 asmfunc_state = WAITING_ENDASMFUNC;
3740 }
3741
3742 return ret;
3743 }
3744
3745 /* Can't use symbol_new here, so have to create a symbol and then at
3746 a later date assign it a value. That's what these functions do. */
3747
3748 static void
3749 symbol_locate (symbolS * symbolP,
3750 const char * name, /* It is copied, the caller can modify. */
3751 segT segment, /* Segment identifier (SEG_<something>). */
3752 valueT valu, /* Symbol value. */
3753 fragS * frag) /* Associated fragment. */
3754 {
3755 size_t name_length;
3756 char * preserved_copy_of_name;
3757
3758 name_length = strlen (name) + 1; /* +1 for \0. */
3759 obstack_grow (&notes, name, name_length);
3760 preserved_copy_of_name = (char *) obstack_finish (&notes);
3761
3762 #ifdef tc_canonicalize_symbol_name
3763 preserved_copy_of_name =
3764 tc_canonicalize_symbol_name (preserved_copy_of_name);
3765 #endif
3766
3767 S_SET_NAME (symbolP, preserved_copy_of_name);
3768
3769 S_SET_SEGMENT (symbolP, segment);
3770 S_SET_VALUE (symbolP, valu);
3771 symbol_clear_list_pointers (symbolP);
3772
3773 symbol_set_frag (symbolP, frag);
3774
3775 /* Link to end of symbol chain. */
3776 {
3777 extern int symbol_table_frozen;
3778
3779 if (symbol_table_frozen)
3780 abort ();
3781 }
3782
3783 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
3784
3785 obj_symbol_new_hook (symbolP);
3786
3787 #ifdef tc_symbol_new_hook
3788 tc_symbol_new_hook (symbolP);
3789 #endif
3790
3791 #ifdef DEBUG_SYMS
3792 verify_symbol_chain (symbol_rootP, symbol_lastP);
3793 #endif /* DEBUG_SYMS */
3794 }
3795
3796 static void
3797 s_ltorg (int ignored ATTRIBUTE_UNUSED)
3798 {
3799 unsigned int entry;
3800 literal_pool * pool;
3801 char sym_name[20];
3802
3803 pool = find_literal_pool ();
3804 if (pool == NULL
3805 || pool->symbol == NULL
3806 || pool->next_free_entry == 0)
3807 return;
3808
3809 /* Align pool as you have word accesses.
3810 Only make a frag if we have to. */
3811 if (!need_pass_2)
3812 frag_align (pool->alignment, 0, 0);
3813
3814 record_alignment (now_seg, 2);
3815
3816 #ifdef OBJ_ELF
3817 seg_info (now_seg)->tc_segment_info_data.mapstate = MAP_DATA;
3818 make_mapping_symbol (MAP_DATA, (valueT) frag_now_fix (), frag_now);
3819 #endif
3820 sprintf (sym_name, "$$lit_\002%x", pool->id);
3821
3822 symbol_locate (pool->symbol, sym_name, now_seg,
3823 (valueT) frag_now_fix (), frag_now);
3824 symbol_table_insert (pool->symbol);
3825
3826 ARM_SET_THUMB (pool->symbol, thumb_mode);
3827
3828 #if defined OBJ_COFF || defined OBJ_ELF
3829 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3830 #endif
3831
3832 for (entry = 0; entry < pool->next_free_entry; entry ++)
3833 {
3834 #ifdef OBJ_ELF
3835 if (debug_type == DEBUG_DWARF2)
3836 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3837 #endif
3838 /* First output the expression in the instruction to the pool. */
3839 emit_expr (&(pool->literals[entry]),
3840 pool->literals[entry].X_md & LIT_ENTRY_SIZE_MASK);
3841 }
3842
3843 /* Mark the pool as empty. */
3844 pool->next_free_entry = 0;
3845 pool->symbol = NULL;
3846 }
3847
3848 #ifdef OBJ_ELF
3849 /* Forward declarations for functions below, in the MD interface
3850 section. */
3851 static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3852 static valueT create_unwind_entry (int);
3853 static void start_unwind_section (const segT, int);
3854 static void add_unwind_opcode (valueT, int);
3855 static void flush_pending_unwind (void);
3856
3857 /* Directives: Data. */
3858
3859 static void
3860 s_arm_elf_cons (int nbytes)
3861 {
3862 expressionS exp;
3863
3864 #ifdef md_flush_pending_output
3865 md_flush_pending_output ();
3866 #endif
3867
3868 if (is_it_end_of_statement ())
3869 {
3870 demand_empty_rest_of_line ();
3871 return;
3872 }
3873
3874 #ifdef md_cons_align
3875 md_cons_align (nbytes);
3876 #endif
3877
3878 mapping_state (MAP_DATA);
3879 do
3880 {
3881 int reloc;
3882 char *base = input_line_pointer;
3883
3884 expression (& exp);
3885
3886 if (exp.X_op != O_symbol)
3887 emit_expr (&exp, (unsigned int) nbytes);
3888 else
3889 {
3890 char *before_reloc = input_line_pointer;
3891 reloc = parse_reloc (&input_line_pointer);
3892 if (reloc == -1)
3893 {
3894 as_bad (_("unrecognized relocation suffix"));
3895 ignore_rest_of_line ();
3896 return;
3897 }
3898 else if (reloc == BFD_RELOC_UNUSED)
3899 emit_expr (&exp, (unsigned int) nbytes);
3900 else
3901 {
3902 reloc_howto_type *howto = (reloc_howto_type *)
3903 bfd_reloc_type_lookup (stdoutput,
3904 (bfd_reloc_code_real_type) reloc);
3905 int size = bfd_get_reloc_size (howto);
3906
3907 if (reloc == BFD_RELOC_ARM_PLT32)
3908 {
3909 as_bad (_("(plt) is only valid on branch targets"));
3910 reloc = BFD_RELOC_UNUSED;
3911 size = 0;
3912 }
3913
3914 if (size > nbytes)
3915 as_bad (ngettext ("%s relocations do not fit in %d byte",
3916 "%s relocations do not fit in %d bytes",
3917 nbytes),
3918 howto->name, nbytes);
3919 else
3920 {
3921 /* We've parsed an expression stopping at O_symbol.
3922 But there may be more expression left now that we
3923 have parsed the relocation marker. Parse it again.
3924 XXX Surely there is a cleaner way to do this. */
3925 char *p = input_line_pointer;
3926 int offset;
3927 char *save_buf = XNEWVEC (char, input_line_pointer - base);
3928
3929 memcpy (save_buf, base, input_line_pointer - base);
3930 memmove (base + (input_line_pointer - before_reloc),
3931 base, before_reloc - base);
3932
3933 input_line_pointer = base + (input_line_pointer-before_reloc);
3934 expression (&exp);
3935 memcpy (base, save_buf, p - base);
3936
3937 offset = nbytes - size;
3938 p = frag_more (nbytes);
3939 memset (p, 0, nbytes);
3940 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
3941 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
3942 free (save_buf);
3943 }
3944 }
3945 }
3946 }
3947 while (*input_line_pointer++ == ',');
3948
3949 /* Put terminator back into stream. */
3950 input_line_pointer --;
3951 demand_empty_rest_of_line ();
3952 }
3953
3954 /* Emit an expression containing a 32-bit thumb instruction.
3955 Implementation based on put_thumb32_insn. */
3956
3957 static void
3958 emit_thumb32_expr (expressionS * exp)
3959 {
3960 expressionS exp_high = *exp;
3961
3962 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3963 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3964 exp->X_add_number &= 0xffff;
3965 emit_expr (exp, (unsigned int) THUMB_SIZE);
3966 }
3967
3968 /* Guess the instruction size based on the opcode. */
3969
3970 static int
3971 thumb_insn_size (int opcode)
3972 {
3973 if ((unsigned int) opcode < 0xe800u)
3974 return 2;
3975 else if ((unsigned int) opcode >= 0xe8000000u)
3976 return 4;
3977 else
3978 return 0;
3979 }
3980
3981 static bfd_boolean
3982 emit_insn (expressionS *exp, int nbytes)
3983 {
3984 int size = 0;
3985
3986 if (exp->X_op == O_constant)
3987 {
3988 size = nbytes;
3989
3990 if (size == 0)
3991 size = thumb_insn_size (exp->X_add_number);
3992
3993 if (size != 0)
3994 {
3995 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3996 {
3997 as_bad (_(".inst.n operand too big. "\
3998 "Use .inst.w instead"));
3999 size = 0;
4000 }
4001 else
4002 {
4003 if (now_pred.state == AUTOMATIC_PRED_BLOCK)
4004 set_pred_insn_type_nonvoid (OUTSIDE_PRED_INSN, 0);
4005 else
4006 set_pred_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
4007
4008 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
4009 emit_thumb32_expr (exp);
4010 else
4011 emit_expr (exp, (unsigned int) size);
4012
4013 it_fsm_post_encode ();
4014 }
4015 }
4016 else
4017 as_bad (_("cannot determine Thumb instruction size. " \
4018 "Use .inst.n/.inst.w instead"));
4019 }
4020 else
4021 as_bad (_("constant expression required"));
4022
4023 return (size != 0);
4024 }
4025
4026 /* Like s_arm_elf_cons but do not use md_cons_align and
4027 set the mapping state to MAP_ARM/MAP_THUMB. */
4028
4029 static void
4030 s_arm_elf_inst (int nbytes)
4031 {
4032 if (is_it_end_of_statement ())
4033 {
4034 demand_empty_rest_of_line ();
4035 return;
4036 }
4037
4038 /* Calling mapping_state () here will not change ARM/THUMB,
4039 but will ensure not to be in DATA state. */
4040
4041 if (thumb_mode)
4042 mapping_state (MAP_THUMB);
4043 else
4044 {
4045 if (nbytes != 0)
4046 {
4047 as_bad (_("width suffixes are invalid in ARM mode"));
4048 ignore_rest_of_line ();
4049 return;
4050 }
4051
4052 nbytes = 4;
4053
4054 mapping_state (MAP_ARM);
4055 }
4056
4057 do
4058 {
4059 expressionS exp;
4060
4061 expression (& exp);
4062
4063 if (! emit_insn (& exp, nbytes))
4064 {
4065 ignore_rest_of_line ();
4066 return;
4067 }
4068 }
4069 while (*input_line_pointer++ == ',');
4070
4071 /* Put terminator back into stream. */
4072 input_line_pointer --;
4073 demand_empty_rest_of_line ();
4074 }
4075
4076 /* Parse a .rel31 directive. */
4077
4078 static void
4079 s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
4080 {
4081 expressionS exp;
4082 char *p;
4083 valueT highbit;
4084
4085 highbit = 0;
4086 if (*input_line_pointer == '1')
4087 highbit = 0x80000000;
4088 else if (*input_line_pointer != '0')
4089 as_bad (_("expected 0 or 1"));
4090
4091 input_line_pointer++;
4092 if (*input_line_pointer != ',')
4093 as_bad (_("missing comma"));
4094 input_line_pointer++;
4095
4096 #ifdef md_flush_pending_output
4097 md_flush_pending_output ();
4098 #endif
4099
4100 #ifdef md_cons_align
4101 md_cons_align (4);
4102 #endif
4103
4104 mapping_state (MAP_DATA);
4105
4106 expression (&exp);
4107
4108 p = frag_more (4);
4109 md_number_to_chars (p, highbit, 4);
4110 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
4111 BFD_RELOC_ARM_PREL31);
4112
4113 demand_empty_rest_of_line ();
4114 }
4115
4116 /* Directives: AEABI stack-unwind tables. */
4117
4118 /* Parse an unwind_fnstart directive. Simply records the current location. */
4119
4120 static void
4121 s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
4122 {
4123 demand_empty_rest_of_line ();
4124 if (unwind.proc_start)
4125 {
4126 as_bad (_("duplicate .fnstart directive"));
4127 return;
4128 }
4129
4130 /* Mark the start of the function. */
4131 unwind.proc_start = expr_build_dot ();
4132
4133 /* Reset the rest of the unwind info. */
4134 unwind.opcode_count = 0;
4135 unwind.table_entry = NULL;
4136 unwind.personality_routine = NULL;
4137 unwind.personality_index = -1;
4138 unwind.frame_size = 0;
4139 unwind.fp_offset = 0;
4140 unwind.fp_reg = REG_SP;
4141 unwind.fp_used = 0;
4142 unwind.sp_restored = 0;
4143 }
4144
4145
4146 /* Parse a handlerdata directive. Creates the exception handling table entry
4147 for the function. */
4148
4149 static void
4150 s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
4151 {
4152 demand_empty_rest_of_line ();
4153 if (!unwind.proc_start)
4154 as_bad (MISSING_FNSTART);
4155
4156 if (unwind.table_entry)
4157 as_bad (_("duplicate .handlerdata directive"));
4158
4159 create_unwind_entry (1);
4160 }
4161
4162 /* Parse an unwind_fnend directive. Generates the index table entry. */
4163
4164 static void
4165 s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
4166 {
4167 long where;
4168 char *ptr;
4169 valueT val;
4170 unsigned int marked_pr_dependency;
4171
4172 demand_empty_rest_of_line ();
4173
4174 if (!unwind.proc_start)
4175 {
4176 as_bad (_(".fnend directive without .fnstart"));
4177 return;
4178 }
4179
4180 /* Add eh table entry. */
4181 if (unwind.table_entry == NULL)
4182 val = create_unwind_entry (0);
4183 else
4184 val = 0;
4185
4186 /* Add index table entry. This is two words. */
4187 start_unwind_section (unwind.saved_seg, 1);
4188 frag_align (2, 0, 0);
4189 record_alignment (now_seg, 2);
4190
4191 ptr = frag_more (8);
4192 memset (ptr, 0, 8);
4193 where = frag_now_fix () - 8;
4194
4195 /* Self relative offset of the function start. */
4196 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
4197 BFD_RELOC_ARM_PREL31);
4198
4199 /* Indicate dependency on EHABI-defined personality routines to the
4200 linker, if it hasn't been done already. */
4201 marked_pr_dependency
4202 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
4203 if (unwind.personality_index >= 0 && unwind.personality_index < 3
4204 && !(marked_pr_dependency & (1 << unwind.personality_index)))
4205 {
4206 static const char *const name[] =
4207 {
4208 "__aeabi_unwind_cpp_pr0",
4209 "__aeabi_unwind_cpp_pr1",
4210 "__aeabi_unwind_cpp_pr2"
4211 };
4212 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
4213 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
4214 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
4215 |= 1 << unwind.personality_index;
4216 }
4217
4218 if (val)
4219 /* Inline exception table entry. */
4220 md_number_to_chars (ptr + 4, val, 4);
4221 else
4222 /* Self relative offset of the table entry. */
4223 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
4224 BFD_RELOC_ARM_PREL31);
4225
4226 /* Restore the original section. */
4227 subseg_set (unwind.saved_seg, unwind.saved_subseg);
4228
4229 unwind.proc_start = NULL;
4230 }
4231
4232
4233 /* Parse an unwind_cantunwind directive. */
4234
4235 static void
4236 s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
4237 {
4238 demand_empty_rest_of_line ();
4239 if (!unwind.proc_start)
4240 as_bad (MISSING_FNSTART);
4241
4242 if (unwind.personality_routine || unwind.personality_index != -1)
4243 as_bad (_("personality routine specified for cantunwind frame"));
4244
4245 unwind.personality_index = -2;
4246 }
4247
4248
4249 /* Parse a personalityindex directive. */
4250
4251 static void
4252 s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
4253 {
4254 expressionS exp;
4255
4256 if (!unwind.proc_start)
4257 as_bad (MISSING_FNSTART);
4258
4259 if (unwind.personality_routine || unwind.personality_index != -1)
4260 as_bad (_("duplicate .personalityindex directive"));
4261
4262 expression (&exp);
4263
4264 if (exp.X_op != O_constant
4265 || exp.X_add_number < 0 || exp.X_add_number > 15)
4266 {
4267 as_bad (_("bad personality routine number"));
4268 ignore_rest_of_line ();
4269 return;
4270 }
4271
4272 unwind.personality_index = exp.X_add_number;
4273
4274 demand_empty_rest_of_line ();
4275 }
4276
4277
4278 /* Parse a personality directive. */
4279
4280 static void
4281 s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
4282 {
4283 char *name, *p, c;
4284
4285 if (!unwind.proc_start)
4286 as_bad (MISSING_FNSTART);
4287
4288 if (unwind.personality_routine || unwind.personality_index != -1)
4289 as_bad (_("duplicate .personality directive"));
4290
4291 c = get_symbol_name (& name);
4292 p = input_line_pointer;
4293 if (c == '"')
4294 ++ input_line_pointer;
4295 unwind.personality_routine = symbol_find_or_make (name);
4296 *p = c;
4297 demand_empty_rest_of_line ();
4298 }
4299
4300
4301 /* Parse a directive saving core registers. */
4302
4303 static void
4304 s_arm_unwind_save_core (void)
4305 {
4306 valueT op;
4307 long range;
4308 int n;
4309
4310 range = parse_reg_list (&input_line_pointer, REGLIST_RN);
4311 if (range == FAIL)
4312 {
4313 as_bad (_("expected register list"));
4314 ignore_rest_of_line ();
4315 return;
4316 }
4317
4318 demand_empty_rest_of_line ();
4319
4320 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
4321 into .unwind_save {..., sp...}. We aren't bothered about the value of
4322 ip because it is clobbered by calls. */
4323 if (unwind.sp_restored && unwind.fp_reg == 12
4324 && (range & 0x3000) == 0x1000)
4325 {
4326 unwind.opcode_count--;
4327 unwind.sp_restored = 0;
4328 range = (range | 0x2000) & ~0x1000;
4329 unwind.pending_offset = 0;
4330 }
4331
4332 /* Pop r4-r15. */
4333 if (range & 0xfff0)
4334 {
4335 /* See if we can use the short opcodes. These pop a block of up to 8
4336 registers starting with r4, plus maybe r14. */
4337 for (n = 0; n < 8; n++)
4338 {
4339 /* Break at the first non-saved register. */
4340 if ((range & (1 << (n + 4))) == 0)
4341 break;
4342 }
4343 /* See if there are any other bits set. */
4344 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
4345 {
4346 /* Use the long form. */
4347 op = 0x8000 | ((range >> 4) & 0xfff);
4348 add_unwind_opcode (op, 2);
4349 }
4350 else
4351 {
4352 /* Use the short form. */
4353 if (range & 0x4000)
4354 op = 0xa8; /* Pop r14. */
4355 else
4356 op = 0xa0; /* Do not pop r14. */
4357 op |= (n - 1);
4358 add_unwind_opcode (op, 1);
4359 }
4360 }
4361
4362 /* Pop r0-r3. */
4363 if (range & 0xf)
4364 {
4365 op = 0xb100 | (range & 0xf);
4366 add_unwind_opcode (op, 2);
4367 }
4368
4369 /* Record the number of bytes pushed. */
4370 for (n = 0; n < 16; n++)
4371 {
4372 if (range & (1 << n))
4373 unwind.frame_size += 4;
4374 }
4375 }
4376
4377
4378 /* Parse a directive saving FPA registers. */
4379
4380 static void
4381 s_arm_unwind_save_fpa (int reg)
4382 {
4383 expressionS exp;
4384 int num_regs;
4385 valueT op;
4386
4387 /* Get Number of registers to transfer. */
4388 if (skip_past_comma (&input_line_pointer) != FAIL)
4389 expression (&exp);
4390 else
4391 exp.X_op = O_illegal;
4392
4393 if (exp.X_op != O_constant)
4394 {
4395 as_bad (_("expected , <constant>"));
4396 ignore_rest_of_line ();
4397 return;
4398 }
4399
4400 num_regs = exp.X_add_number;
4401
4402 if (num_regs < 1 || num_regs > 4)
4403 {
4404 as_bad (_("number of registers must be in the range [1:4]"));
4405 ignore_rest_of_line ();
4406 return;
4407 }
4408
4409 demand_empty_rest_of_line ();
4410
4411 if (reg == 4)
4412 {
4413 /* Short form. */
4414 op = 0xb4 | (num_regs - 1);
4415 add_unwind_opcode (op, 1);
4416 }
4417 else
4418 {
4419 /* Long form. */
4420 op = 0xc800 | (reg << 4) | (num_regs - 1);
4421 add_unwind_opcode (op, 2);
4422 }
4423 unwind.frame_size += num_regs * 12;
4424 }
4425
4426
4427 /* Parse a directive saving VFP registers for ARMv6 and above. */
4428
4429 static void
4430 s_arm_unwind_save_vfp_armv6 (void)
4431 {
4432 int count;
4433 unsigned int start;
4434 valueT op;
4435 int num_vfpv3_regs = 0;
4436 int num_regs_below_16;
4437 bfd_boolean partial_match;
4438
4439 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D,
4440 &partial_match);
4441 if (count == FAIL)
4442 {
4443 as_bad (_("expected register list"));
4444 ignore_rest_of_line ();
4445 return;
4446 }
4447
4448 demand_empty_rest_of_line ();
4449
4450 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
4451 than FSTMX/FLDMX-style ones). */
4452
4453 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
4454 if (start >= 16)
4455 num_vfpv3_regs = count;
4456 else if (start + count > 16)
4457 num_vfpv3_regs = start + count - 16;
4458
4459 if (num_vfpv3_regs > 0)
4460 {
4461 int start_offset = start > 16 ? start - 16 : 0;
4462 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
4463 add_unwind_opcode (op, 2);
4464 }
4465
4466 /* Generate opcode for registers numbered in the range 0 .. 15. */
4467 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
4468 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
4469 if (num_regs_below_16 > 0)
4470 {
4471 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
4472 add_unwind_opcode (op, 2);
4473 }
4474
4475 unwind.frame_size += count * 8;
4476 }
4477
4478
4479 /* Parse a directive saving VFP registers for pre-ARMv6. */
4480
4481 static void
4482 s_arm_unwind_save_vfp (void)
4483 {
4484 int count;
4485 unsigned int reg;
4486 valueT op;
4487 bfd_boolean partial_match;
4488
4489 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D,
4490 &partial_match);
4491 if (count == FAIL)
4492 {
4493 as_bad (_("expected register list"));
4494 ignore_rest_of_line ();
4495 return;
4496 }
4497
4498 demand_empty_rest_of_line ();
4499
4500 if (reg == 8)
4501 {
4502 /* Short form. */
4503 op = 0xb8 | (count - 1);
4504 add_unwind_opcode (op, 1);
4505 }
4506 else
4507 {
4508 /* Long form. */
4509 op = 0xb300 | (reg << 4) | (count - 1);
4510 add_unwind_opcode (op, 2);
4511 }
4512 unwind.frame_size += count * 8 + 4;
4513 }
4514
4515
4516 /* Parse a directive saving iWMMXt data registers. */
4517
4518 static void
4519 s_arm_unwind_save_mmxwr (void)
4520 {
4521 int reg;
4522 int hi_reg;
4523 int i;
4524 unsigned mask = 0;
4525 valueT op;
4526
4527 if (*input_line_pointer == '{')
4528 input_line_pointer++;
4529
4530 do
4531 {
4532 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
4533
4534 if (reg == FAIL)
4535 {
4536 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
4537 goto error;
4538 }
4539
4540 if (mask >> reg)
4541 as_tsktsk (_("register list not in ascending order"));
4542 mask |= 1 << reg;
4543
4544 if (*input_line_pointer == '-')
4545 {
4546 input_line_pointer++;
4547 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
4548 if (hi_reg == FAIL)
4549 {
4550 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
4551 goto error;
4552 }
4553 else if (reg >= hi_reg)
4554 {
4555 as_bad (_("bad register range"));
4556 goto error;
4557 }
4558 for (; reg < hi_reg; reg++)
4559 mask |= 1 << reg;
4560 }
4561 }
4562 while (skip_past_comma (&input_line_pointer) != FAIL);
4563
4564 skip_past_char (&input_line_pointer, '}');
4565
4566 demand_empty_rest_of_line ();
4567
4568 /* Generate any deferred opcodes because we're going to be looking at
4569 the list. */
4570 flush_pending_unwind ();
4571
4572 for (i = 0; i < 16; i++)
4573 {
4574 if (mask & (1 << i))
4575 unwind.frame_size += 8;
4576 }
4577
4578 /* Attempt to combine with a previous opcode. We do this because gcc
4579 likes to output separate unwind directives for a single block of
4580 registers. */
4581 if (unwind.opcode_count > 0)
4582 {
4583 i = unwind.opcodes[unwind.opcode_count - 1];
4584 if ((i & 0xf8) == 0xc0)
4585 {
4586 i &= 7;
4587 /* Only merge if the blocks are contiguous. */
4588 if (i < 6)
4589 {
4590 if ((mask & 0xfe00) == (1 << 9))
4591 {
4592 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
4593 unwind.opcode_count--;
4594 }
4595 }
4596 else if (i == 6 && unwind.opcode_count >= 2)
4597 {
4598 i = unwind.opcodes[unwind.opcode_count - 2];
4599 reg = i >> 4;
4600 i &= 0xf;
4601
4602 op = 0xffff << (reg - 1);
4603 if (reg > 0
4604 && ((mask & op) == (1u << (reg - 1))))
4605 {
4606 op = (1 << (reg + i + 1)) - 1;
4607 op &= ~((1 << reg) - 1);
4608 mask |= op;
4609 unwind.opcode_count -= 2;
4610 }
4611 }
4612 }
4613 }
4614
4615 hi_reg = 15;
4616 /* We want to generate opcodes in the order the registers have been
4617 saved, ie. descending order. */
4618 for (reg = 15; reg >= -1; reg--)
4619 {
4620 /* Save registers in blocks. */
4621 if (reg < 0
4622 || !(mask & (1 << reg)))
4623 {
4624 /* We found an unsaved reg. Generate opcodes to save the
4625 preceding block. */
4626 if (reg != hi_reg)
4627 {
4628 if (reg == 9)
4629 {
4630 /* Short form. */
4631 op = 0xc0 | (hi_reg - 10);
4632 add_unwind_opcode (op, 1);
4633 }
4634 else
4635 {
4636 /* Long form. */
4637 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4638 add_unwind_opcode (op, 2);
4639 }
4640 }
4641 hi_reg = reg - 1;
4642 }
4643 }
4644
4645 return;
4646 error:
4647 ignore_rest_of_line ();
4648 }
4649
4650 static void
4651 s_arm_unwind_save_mmxwcg (void)
4652 {
4653 int reg;
4654 int hi_reg;
4655 unsigned mask = 0;
4656 valueT op;
4657
4658 if (*input_line_pointer == '{')
4659 input_line_pointer++;
4660
4661 skip_whitespace (input_line_pointer);
4662
4663 do
4664 {
4665 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
4666
4667 if (reg == FAIL)
4668 {
4669 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
4670 goto error;
4671 }
4672
4673 reg -= 8;
4674 if (mask >> reg)
4675 as_tsktsk (_("register list not in ascending order"));
4676 mask |= 1 << reg;
4677
4678 if (*input_line_pointer == '-')
4679 {
4680 input_line_pointer++;
4681 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
4682 if (hi_reg == FAIL)
4683 {
4684 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
4685 goto error;
4686 }
4687 else if (reg >= hi_reg)
4688 {
4689 as_bad (_("bad register range"));
4690 goto error;
4691 }
4692 for (; reg < hi_reg; reg++)
4693 mask |= 1 << reg;
4694 }
4695 }
4696 while (skip_past_comma (&input_line_pointer) != FAIL);
4697
4698 skip_past_char (&input_line_pointer, '}');
4699
4700 demand_empty_rest_of_line ();
4701
4702 /* Generate any deferred opcodes because we're going to be looking at
4703 the list. */
4704 flush_pending_unwind ();
4705
4706 for (reg = 0; reg < 16; reg++)
4707 {
4708 if (mask & (1 << reg))
4709 unwind.frame_size += 4;
4710 }
4711 op = 0xc700 | mask;
4712 add_unwind_opcode (op, 2);
4713 return;
4714 error:
4715 ignore_rest_of_line ();
4716 }
4717
4718
4719 /* Parse an unwind_save directive.
4720 If the argument is non-zero, this is a .vsave directive. */
4721
4722 static void
4723 s_arm_unwind_save (int arch_v6)
4724 {
4725 char *peek;
4726 struct reg_entry *reg;
4727 bfd_boolean had_brace = FALSE;
4728
4729 if (!unwind.proc_start)
4730 as_bad (MISSING_FNSTART);
4731
4732 /* Figure out what sort of save we have. */
4733 peek = input_line_pointer;
4734
4735 if (*peek == '{')
4736 {
4737 had_brace = TRUE;
4738 peek++;
4739 }
4740
4741 reg = arm_reg_parse_multi (&peek);
4742
4743 if (!reg)
4744 {
4745 as_bad (_("register expected"));
4746 ignore_rest_of_line ();
4747 return;
4748 }
4749
4750 switch (reg->type)
4751 {
4752 case REG_TYPE_FN:
4753 if (had_brace)
4754 {
4755 as_bad (_("FPA .unwind_save does not take a register list"));
4756 ignore_rest_of_line ();
4757 return;
4758 }
4759 input_line_pointer = peek;
4760 s_arm_unwind_save_fpa (reg->number);
4761 return;
4762
4763 case REG_TYPE_RN:
4764 s_arm_unwind_save_core ();
4765 return;
4766
4767 case REG_TYPE_VFD:
4768 if (arch_v6)
4769 s_arm_unwind_save_vfp_armv6 ();
4770 else
4771 s_arm_unwind_save_vfp ();
4772 return;
4773
4774 case REG_TYPE_MMXWR:
4775 s_arm_unwind_save_mmxwr ();
4776 return;
4777
4778 case REG_TYPE_MMXWCG:
4779 s_arm_unwind_save_mmxwcg ();
4780 return;
4781
4782 default:
4783 as_bad (_(".unwind_save does not support this kind of register"));
4784 ignore_rest_of_line ();
4785 }
4786 }
4787
4788
4789 /* Parse an unwind_movsp directive. */
4790
4791 static void
4792 s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4793 {
4794 int reg;
4795 valueT op;
4796 int offset;
4797
4798 if (!unwind.proc_start)
4799 as_bad (MISSING_FNSTART);
4800
4801 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4802 if (reg == FAIL)
4803 {
4804 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
4805 ignore_rest_of_line ();
4806 return;
4807 }
4808
4809 /* Optional constant. */
4810 if (skip_past_comma (&input_line_pointer) != FAIL)
4811 {
4812 if (immediate_for_directive (&offset) == FAIL)
4813 return;
4814 }
4815 else
4816 offset = 0;
4817
4818 demand_empty_rest_of_line ();
4819
4820 if (reg == REG_SP || reg == REG_PC)
4821 {
4822 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
4823 return;
4824 }
4825
4826 if (unwind.fp_reg != REG_SP)
4827 as_bad (_("unexpected .unwind_movsp directive"));
4828
4829 /* Generate opcode to restore the value. */
4830 op = 0x90 | reg;
4831 add_unwind_opcode (op, 1);
4832
4833 /* Record the information for later. */
4834 unwind.fp_reg = reg;
4835 unwind.fp_offset = unwind.frame_size - offset;
4836 unwind.sp_restored = 1;
4837 }
4838
4839 /* Parse an unwind_pad directive. */
4840
4841 static void
4842 s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
4843 {
4844 int offset;
4845
4846 if (!unwind.proc_start)
4847 as_bad (MISSING_FNSTART);
4848
4849 if (immediate_for_directive (&offset) == FAIL)
4850 return;
4851
4852 if (offset & 3)
4853 {
4854 as_bad (_("stack increment must be multiple of 4"));
4855 ignore_rest_of_line ();
4856 return;
4857 }
4858
4859 /* Don't generate any opcodes, just record the details for later. */
4860 unwind.frame_size += offset;
4861 unwind.pending_offset += offset;
4862
4863 demand_empty_rest_of_line ();
4864 }
4865
4866 /* Parse an unwind_setfp directive. */
4867
4868 static void
4869 s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
4870 {
4871 int sp_reg;
4872 int fp_reg;
4873 int offset;
4874
4875 if (!unwind.proc_start)
4876 as_bad (MISSING_FNSTART);
4877
4878 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4879 if (skip_past_comma (&input_line_pointer) == FAIL)
4880 sp_reg = FAIL;
4881 else
4882 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
4883
4884 if (fp_reg == FAIL || sp_reg == FAIL)
4885 {
4886 as_bad (_("expected <reg>, <reg>"));
4887 ignore_rest_of_line ();
4888 return;
4889 }
4890
4891 /* Optional constant. */
4892 if (skip_past_comma (&input_line_pointer) != FAIL)
4893 {
4894 if (immediate_for_directive (&offset) == FAIL)
4895 return;
4896 }
4897 else
4898 offset = 0;
4899
4900 demand_empty_rest_of_line ();
4901
4902 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
4903 {
4904 as_bad (_("register must be either sp or set by a previous"
4905 "unwind_movsp directive"));
4906 return;
4907 }
4908
4909 /* Don't generate any opcodes, just record the information for later. */
4910 unwind.fp_reg = fp_reg;
4911 unwind.fp_used = 1;
4912 if (sp_reg == REG_SP)
4913 unwind.fp_offset = unwind.frame_size - offset;
4914 else
4915 unwind.fp_offset -= offset;
4916 }
4917
4918 /* Parse an unwind_raw directive. */
4919
4920 static void
4921 s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
4922 {
4923 expressionS exp;
4924 /* This is an arbitrary limit. */
4925 unsigned char op[16];
4926 int count;
4927
4928 if (!unwind.proc_start)
4929 as_bad (MISSING_FNSTART);
4930
4931 expression (&exp);
4932 if (exp.X_op == O_constant
4933 && skip_past_comma (&input_line_pointer) != FAIL)
4934 {
4935 unwind.frame_size += exp.X_add_number;
4936 expression (&exp);
4937 }
4938 else
4939 exp.X_op = O_illegal;
4940
4941 if (exp.X_op != O_constant)
4942 {
4943 as_bad (_("expected <offset>, <opcode>"));
4944 ignore_rest_of_line ();
4945 return;
4946 }
4947
4948 count = 0;
4949
4950 /* Parse the opcode. */
4951 for (;;)
4952 {
4953 if (count >= 16)
4954 {
4955 as_bad (_("unwind opcode too long"));
4956 ignore_rest_of_line ();
4957 }
4958 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
4959 {
4960 as_bad (_("invalid unwind opcode"));
4961 ignore_rest_of_line ();
4962 return;
4963 }
4964 op[count++] = exp.X_add_number;
4965
4966 /* Parse the next byte. */
4967 if (skip_past_comma (&input_line_pointer) == FAIL)
4968 break;
4969
4970 expression (&exp);
4971 }
4972
4973 /* Add the opcode bytes in reverse order. */
4974 while (count--)
4975 add_unwind_opcode (op[count], 1);
4976
4977 demand_empty_rest_of_line ();
4978 }
4979
4980
4981 /* Parse a .eabi_attribute directive. */
4982
4983 static void
4984 s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4985 {
4986 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
4987
4988 if (tag >= 0 && tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4989 attributes_set_explicitly[tag] = 1;
4990 }
4991
4992 /* Emit a tls fix for the symbol. */
4993
4994 static void
4995 s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4996 {
4997 char *p;
4998 expressionS exp;
4999 #ifdef md_flush_pending_output
5000 md_flush_pending_output ();
5001 #endif
5002
5003 #ifdef md_cons_align
5004 md_cons_align (4);
5005 #endif
5006
5007 /* Since we're just labelling the code, there's no need to define a
5008 mapping symbol. */
5009 expression (&exp);
5010 p = obstack_next_free (&frchain_now->frch_obstack);
5011 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
5012 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
5013 : BFD_RELOC_ARM_TLS_DESCSEQ);
5014 }
5015 #endif /* OBJ_ELF */
5016
5017 static void s_arm_arch (int);
5018 static void s_arm_object_arch (int);
5019 static void s_arm_cpu (int);
5020 static void s_arm_fpu (int);
5021 static void s_arm_arch_extension (int);
5022
5023 #ifdef TE_PE
5024
5025 static void
5026 pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
5027 {
5028 expressionS exp;
5029
5030 do
5031 {
5032 expression (&exp);
5033 if (exp.X_op == O_symbol)
5034 exp.X_op = O_secrel;
5035
5036 emit_expr (&exp, 4);
5037 }
5038 while (*input_line_pointer++ == ',');
5039
5040 input_line_pointer--;
5041 demand_empty_rest_of_line ();
5042 }
5043 #endif /* TE_PE */
5044
5045 int
5046 arm_is_largest_exponent_ok (int precision)
5047 {
5048 /* precision == 1 ensures that this will only return
5049 true for 16 bit floats. */
5050 return (precision == 1) && (fp16_format == ARM_FP16_FORMAT_ALTERNATIVE);
5051 }
5052
5053 static void
5054 set_fp16_format (int dummy ATTRIBUTE_UNUSED)
5055 {
5056 char saved_char;
5057 char* name;
5058 enum fp_16bit_format new_format;
5059
5060 new_format = ARM_FP16_FORMAT_DEFAULT;
5061
5062 name = input_line_pointer;
5063 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
5064 input_line_pointer++;
5065
5066 saved_char = *input_line_pointer;
5067 *input_line_pointer = 0;
5068
5069 if (strcasecmp (name, "ieee") == 0)
5070 new_format = ARM_FP16_FORMAT_IEEE;
5071 else if (strcasecmp (name, "alternative") == 0)
5072 new_format = ARM_FP16_FORMAT_ALTERNATIVE;
5073 else
5074 {
5075 as_bad (_("unrecognised float16 format \"%s\""), name);
5076 goto cleanup;
5077 }
5078
5079 /* Only set fp16_format if it is still the default (aka not already
5080 been set yet). */
5081 if (fp16_format == ARM_FP16_FORMAT_DEFAULT)
5082 fp16_format = new_format;
5083 else
5084 {
5085 if (new_format != fp16_format)
5086 as_warn (_("float16 format cannot be set more than once, ignoring."));
5087 }
5088
5089 cleanup:
5090 *input_line_pointer = saved_char;
5091 ignore_rest_of_line ();
5092 }
5093
5094 /* This table describes all the machine specific pseudo-ops the assembler
5095 has to support. The fields are:
5096 pseudo-op name without dot
5097 function to call to execute this pseudo-op
5098 Integer arg to pass to the function. */
5099
5100 const pseudo_typeS md_pseudo_table[] =
5101 {
5102 /* Never called because '.req' does not start a line. */
5103 { "req", s_req, 0 },
5104 /* Following two are likewise never called. */
5105 { "dn", s_dn, 0 },
5106 { "qn", s_qn, 0 },
5107 { "unreq", s_unreq, 0 },
5108 { "bss", s_bss, 0 },
5109 { "align", s_align_ptwo, 2 },
5110 { "arm", s_arm, 0 },
5111 { "thumb", s_thumb, 0 },
5112 { "code", s_code, 0 },
5113 { "force_thumb", s_force_thumb, 0 },
5114 { "thumb_func", s_thumb_func, 0 },
5115 { "thumb_set", s_thumb_set, 0 },
5116 { "even", s_even, 0 },
5117 { "ltorg", s_ltorg, 0 },
5118 { "pool", s_ltorg, 0 },
5119 { "syntax", s_syntax, 0 },
5120 { "cpu", s_arm_cpu, 0 },
5121 { "arch", s_arm_arch, 0 },
5122 { "object_arch", s_arm_object_arch, 0 },
5123 { "fpu", s_arm_fpu, 0 },
5124 { "arch_extension", s_arm_arch_extension, 0 },
5125 #ifdef OBJ_ELF
5126 { "word", s_arm_elf_cons, 4 },
5127 { "long", s_arm_elf_cons, 4 },
5128 { "inst.n", s_arm_elf_inst, 2 },
5129 { "inst.w", s_arm_elf_inst, 4 },
5130 { "inst", s_arm_elf_inst, 0 },
5131 { "rel31", s_arm_rel31, 0 },
5132 { "fnstart", s_arm_unwind_fnstart, 0 },
5133 { "fnend", s_arm_unwind_fnend, 0 },
5134 { "cantunwind", s_arm_unwind_cantunwind, 0 },
5135 { "personality", s_arm_unwind_personality, 0 },
5136 { "personalityindex", s_arm_unwind_personalityindex, 0 },
5137 { "handlerdata", s_arm_unwind_handlerdata, 0 },
5138 { "save", s_arm_unwind_save, 0 },
5139 { "vsave", s_arm_unwind_save, 1 },
5140 { "movsp", s_arm_unwind_movsp, 0 },
5141 { "pad", s_arm_unwind_pad, 0 },
5142 { "setfp", s_arm_unwind_setfp, 0 },
5143 { "unwind_raw", s_arm_unwind_raw, 0 },
5144 { "eabi_attribute", s_arm_eabi_attribute, 0 },
5145 { "tlsdescseq", s_arm_tls_descseq, 0 },
5146 #else
5147 { "word", cons, 4},
5148
5149 /* These are used for dwarf. */
5150 {"2byte", cons, 2},
5151 {"4byte", cons, 4},
5152 {"8byte", cons, 8},
5153 /* These are used for dwarf2. */
5154 { "file", dwarf2_directive_file, 0 },
5155 { "loc", dwarf2_directive_loc, 0 },
5156 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
5157 #endif
5158 { "extend", float_cons, 'x' },
5159 { "ldouble", float_cons, 'x' },
5160 { "packed", float_cons, 'p' },
5161 { "bfloat16", float_cons, 'b' },
5162 #ifdef TE_PE
5163 {"secrel32", pe_directive_secrel, 0},
5164 #endif
5165
5166 /* These are for compatibility with CodeComposer Studio. */
5167 {"ref", s_ccs_ref, 0},
5168 {"def", s_ccs_def, 0},
5169 {"asmfunc", s_ccs_asmfunc, 0},
5170 {"endasmfunc", s_ccs_endasmfunc, 0},
5171
5172 {"float16", float_cons, 'h' },
5173 {"float16_format", set_fp16_format, 0 },
5174
5175 { 0, 0, 0 }
5176 };
5177
5178 /* Parser functions used exclusively in instruction operands. */
5179
5180 /* Generic immediate-value read function for use in insn parsing.
5181 STR points to the beginning of the immediate (the leading #);
5182 VAL receives the value; if the value is outside [MIN, MAX]
5183 issue an error. PREFIX_OPT is true if the immediate prefix is
5184 optional. */
5185
5186 static int
5187 parse_immediate (char **str, int *val, int min, int max,
5188 bfd_boolean prefix_opt)
5189 {
5190 expressionS exp;
5191
5192 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
5193 if (exp.X_op != O_constant)
5194 {
5195 inst.error = _("constant expression required");
5196 return FAIL;
5197 }
5198
5199 if (exp.X_add_number < min || exp.X_add_number > max)
5200 {
5201 inst.error = _("immediate value out of range");
5202 return FAIL;
5203 }
5204
5205 *val = exp.X_add_number;
5206 return SUCCESS;
5207 }
5208
5209 /* Less-generic immediate-value read function with the possibility of loading a
5210 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5211 instructions. Puts the result directly in inst.operands[i]. */
5212
5213 static int
5214 parse_big_immediate (char **str, int i, expressionS *in_exp,
5215 bfd_boolean allow_symbol_p)
5216 {
5217 expressionS exp;
5218 expressionS *exp_p = in_exp ? in_exp : &exp;
5219 char *ptr = *str;
5220
5221 my_get_expression (exp_p, &ptr, GE_OPT_PREFIX_BIG);
5222
5223 if (exp_p->X_op == O_constant)
5224 {
5225 inst.operands[i].imm = exp_p->X_add_number & 0xffffffff;
5226 /* If we're on a 64-bit host, then a 64-bit number can be returned using
5227 O_constant. We have to be careful not to break compilation for
5228 32-bit X_add_number, though. */
5229 if ((exp_p->X_add_number & ~(offsetT)(0xffffffffU)) != 0)
5230 {
5231 /* X >> 32 is illegal if sizeof (exp_p->X_add_number) == 4. */
5232 inst.operands[i].reg = (((exp_p->X_add_number >> 16) >> 16)
5233 & 0xffffffff);
5234 inst.operands[i].regisimm = 1;
5235 }
5236 }
5237 else if (exp_p->X_op == O_big
5238 && LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 32)
5239 {
5240 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
5241
5242 /* Bignums have their least significant bits in
5243 generic_bignum[0]. Make sure we put 32 bits in imm and
5244 32 bits in reg, in a (hopefully) portable way. */
5245 gas_assert (parts != 0);
5246
5247 /* Make sure that the number is not too big.
5248 PR 11972: Bignums can now be sign-extended to the
5249 size of a .octa so check that the out of range bits
5250 are all zero or all one. */
5251 if (LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 64)
5252 {
5253 LITTLENUM_TYPE m = -1;
5254
5255 if (generic_bignum[parts * 2] != 0
5256 && generic_bignum[parts * 2] != m)
5257 return FAIL;
5258
5259 for (j = parts * 2 + 1; j < (unsigned) exp_p->X_add_number; j++)
5260 if (generic_bignum[j] != generic_bignum[j-1])
5261 return FAIL;
5262 }
5263
5264 inst.operands[i].imm = 0;
5265 for (j = 0; j < parts; j++, idx++)
5266 inst.operands[i].imm |= generic_bignum[idx]
5267 << (LITTLENUM_NUMBER_OF_BITS * j);
5268 inst.operands[i].reg = 0;
5269 for (j = 0; j < parts; j++, idx++)
5270 inst.operands[i].reg |= generic_bignum[idx]
5271 << (LITTLENUM_NUMBER_OF_BITS * j);
5272 inst.operands[i].regisimm = 1;
5273 }
5274 else if (!(exp_p->X_op == O_symbol && allow_symbol_p))
5275 return FAIL;
5276
5277 *str = ptr;
5278
5279 return SUCCESS;
5280 }
5281
5282 /* Returns the pseudo-register number of an FPA immediate constant,
5283 or FAIL if there isn't a valid constant here. */
5284
5285 static int
5286 parse_fpa_immediate (char ** str)
5287 {
5288 LITTLENUM_TYPE words[MAX_LITTLENUMS];
5289 char * save_in;
5290 expressionS exp;
5291 int i;
5292 int j;
5293
5294 /* First try and match exact strings, this is to guarantee
5295 that some formats will work even for cross assembly. */
5296
5297 for (i = 0; fp_const[i]; i++)
5298 {
5299 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
5300 {
5301 char *start = *str;
5302
5303 *str += strlen (fp_const[i]);
5304 if (is_end_of_line[(unsigned char) **str])
5305 return i + 8;
5306 *str = start;
5307 }
5308 }
5309
5310 /* Just because we didn't get a match doesn't mean that the constant
5311 isn't valid, just that it is in a format that we don't
5312 automatically recognize. Try parsing it with the standard
5313 expression routines. */
5314
5315 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
5316
5317 /* Look for a raw floating point number. */
5318 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
5319 && is_end_of_line[(unsigned char) *save_in])
5320 {
5321 for (i = 0; i < NUM_FLOAT_VALS; i++)
5322 {
5323 for (j = 0; j < MAX_LITTLENUMS; j++)
5324 {
5325 if (words[j] != fp_values[i][j])
5326 break;
5327 }
5328
5329 if (j == MAX_LITTLENUMS)
5330 {
5331 *str = save_in;
5332 return i + 8;
5333 }
5334 }
5335 }
5336
5337 /* Try and parse a more complex expression, this will probably fail
5338 unless the code uses a floating point prefix (eg "0f"). */
5339 save_in = input_line_pointer;
5340 input_line_pointer = *str;
5341 if (expression (&exp) == absolute_section
5342 && exp.X_op == O_big
5343 && exp.X_add_number < 0)
5344 {
5345 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
5346 Ditto for 15. */
5347 #define X_PRECISION 5
5348 #define E_PRECISION 15L
5349 if (gen_to_words (words, X_PRECISION, E_PRECISION) == 0)
5350 {
5351 for (i = 0; i < NUM_FLOAT_VALS; i++)
5352 {
5353 for (j = 0; j < MAX_LITTLENUMS; j++)
5354 {
5355 if (words[j] != fp_values[i][j])
5356 break;
5357 }
5358
5359 if (j == MAX_LITTLENUMS)
5360 {
5361 *str = input_line_pointer;
5362 input_line_pointer = save_in;
5363 return i + 8;
5364 }
5365 }
5366 }
5367 }
5368
5369 *str = input_line_pointer;
5370 input_line_pointer = save_in;
5371 inst.error = _("invalid FPA immediate expression");
5372 return FAIL;
5373 }
5374
5375 /* Returns 1 if a number has "quarter-precision" float format
5376 0baBbbbbbc defgh000 00000000 00000000. */
5377
5378 static int
5379 is_quarter_float (unsigned imm)
5380 {
5381 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
5382 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
5383 }
5384
5385
5386 /* Detect the presence of a floating point or integer zero constant,
5387 i.e. #0.0 or #0. */
5388
5389 static bfd_boolean
5390 parse_ifimm_zero (char **in)
5391 {
5392 int error_code;
5393
5394 if (!is_immediate_prefix (**in))
5395 {
5396 /* In unified syntax, all prefixes are optional. */
5397 if (!unified_syntax)
5398 return FALSE;
5399 }
5400 else
5401 ++*in;
5402
5403 /* Accept #0x0 as a synonym for #0. */
5404 if (strncmp (*in, "0x", 2) == 0)
5405 {
5406 int val;
5407 if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
5408 return FALSE;
5409 return TRUE;
5410 }
5411
5412 error_code = atof_generic (in, ".", EXP_CHARS,
5413 &generic_floating_point_number);
5414
5415 if (!error_code
5416 && generic_floating_point_number.sign == '+'
5417 && (generic_floating_point_number.low
5418 > generic_floating_point_number.leader))
5419 return TRUE;
5420
5421 return FALSE;
5422 }
5423
5424 /* Parse an 8-bit "quarter-precision" floating point number of the form:
5425 0baBbbbbbc defgh000 00000000 00000000.
5426 The zero and minus-zero cases need special handling, since they can't be
5427 encoded in the "quarter-precision" float format, but can nonetheless be
5428 loaded as integer constants. */
5429
5430 static unsigned
5431 parse_qfloat_immediate (char **ccp, int *immed)
5432 {
5433 char *str = *ccp;
5434 char *fpnum;
5435 LITTLENUM_TYPE words[MAX_LITTLENUMS];
5436 int found_fpchar = 0;
5437
5438 skip_past_char (&str, '#');
5439
5440 /* We must not accidentally parse an integer as a floating-point number. Make
5441 sure that the value we parse is not an integer by checking for special
5442 characters '.' or 'e'.
5443 FIXME: This is a horrible hack, but doing better is tricky because type
5444 information isn't in a very usable state at parse time. */
5445 fpnum = str;
5446 skip_whitespace (fpnum);
5447
5448 if (strncmp (fpnum, "0x", 2) == 0)
5449 return FAIL;
5450 else
5451 {
5452 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
5453 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
5454 {
5455 found_fpchar = 1;
5456 break;
5457 }
5458
5459 if (!found_fpchar)
5460 return FAIL;
5461 }
5462
5463 if ((str = atof_ieee (str, 's', words)) != NULL)
5464 {
5465 unsigned fpword = 0;
5466 int i;
5467
5468 /* Our FP word must be 32 bits (single-precision FP). */
5469 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
5470 {
5471 fpword <<= LITTLENUM_NUMBER_OF_BITS;
5472 fpword |= words[i];
5473 }
5474
5475 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
5476 *immed = fpword;
5477 else
5478 return FAIL;
5479
5480 *ccp = str;
5481
5482 return SUCCESS;
5483 }
5484
5485 return FAIL;
5486 }
5487
5488 /* Shift operands. */
5489 enum shift_kind
5490 {
5491 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX, SHIFT_UXTW
5492 };
5493
5494 struct asm_shift_name
5495 {
5496 const char *name;
5497 enum shift_kind kind;
5498 };
5499
5500 /* Third argument to parse_shift. */
5501 enum parse_shift_mode
5502 {
5503 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
5504 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
5505 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
5506 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
5507 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
5508 SHIFT_UXTW_IMMEDIATE /* Shift must be UXTW immediate. */
5509 };
5510
5511 /* Parse a <shift> specifier on an ARM data processing instruction.
5512 This has three forms:
5513
5514 (LSL|LSR|ASL|ASR|ROR) Rs
5515 (LSL|LSR|ASL|ASR|ROR) #imm
5516 RRX
5517
5518 Note that ASL is assimilated to LSL in the instruction encoding, and
5519 RRX to ROR #0 (which cannot be written as such). */
5520
5521 static int
5522 parse_shift (char **str, int i, enum parse_shift_mode mode)
5523 {
5524 const struct asm_shift_name *shift_name;
5525 enum shift_kind shift;
5526 char *s = *str;
5527 char *p = s;
5528 int reg;
5529
5530 for (p = *str; ISALPHA (*p); p++)
5531 ;
5532
5533 if (p == *str)
5534 {
5535 inst.error = _("shift expression expected");
5536 return FAIL;
5537 }
5538
5539 shift_name
5540 = (const struct asm_shift_name *) str_hash_find_n (arm_shift_hsh, *str,
5541 p - *str);
5542
5543 if (shift_name == NULL)
5544 {
5545 inst.error = _("shift expression expected");
5546 return FAIL;
5547 }
5548
5549 shift = shift_name->kind;
5550
5551 switch (mode)
5552 {
5553 case NO_SHIFT_RESTRICT:
5554 case SHIFT_IMMEDIATE:
5555 if (shift == SHIFT_UXTW)
5556 {
5557 inst.error = _("'UXTW' not allowed here");
5558 return FAIL;
5559 }
5560 break;
5561
5562 case SHIFT_LSL_OR_ASR_IMMEDIATE:
5563 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
5564 {
5565 inst.error = _("'LSL' or 'ASR' required");
5566 return FAIL;
5567 }
5568 break;
5569
5570 case SHIFT_LSL_IMMEDIATE:
5571 if (shift != SHIFT_LSL)
5572 {
5573 inst.error = _("'LSL' required");
5574 return FAIL;
5575 }
5576 break;
5577
5578 case SHIFT_ASR_IMMEDIATE:
5579 if (shift != SHIFT_ASR)
5580 {
5581 inst.error = _("'ASR' required");
5582 return FAIL;
5583 }
5584 break;
5585 case SHIFT_UXTW_IMMEDIATE:
5586 if (shift != SHIFT_UXTW)
5587 {
5588 inst.error = _("'UXTW' required");
5589 return FAIL;
5590 }
5591 break;
5592
5593 default: abort ();
5594 }
5595
5596 if (shift != SHIFT_RRX)
5597 {
5598 /* Whitespace can appear here if the next thing is a bare digit. */
5599 skip_whitespace (p);
5600
5601 if (mode == NO_SHIFT_RESTRICT
5602 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
5603 {
5604 inst.operands[i].imm = reg;
5605 inst.operands[i].immisreg = 1;
5606 }
5607 else if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
5608 return FAIL;
5609 }
5610 inst.operands[i].shift_kind = shift;
5611 inst.operands[i].shifted = 1;
5612 *str = p;
5613 return SUCCESS;
5614 }
5615
5616 /* Parse a <shifter_operand> for an ARM data processing instruction:
5617
5618 #<immediate>
5619 #<immediate>, <rotate>
5620 <Rm>
5621 <Rm>, <shift>
5622
5623 where <shift> is defined by parse_shift above, and <rotate> is a
5624 multiple of 2 between 0 and 30. Validation of immediate operands
5625 is deferred to md_apply_fix. */
5626
5627 static int
5628 parse_shifter_operand (char **str, int i)
5629 {
5630 int value;
5631 expressionS exp;
5632
5633 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
5634 {
5635 inst.operands[i].reg = value;
5636 inst.operands[i].isreg = 1;
5637
5638 /* parse_shift will override this if appropriate */
5639 inst.relocs[0].exp.X_op = O_constant;
5640 inst.relocs[0].exp.X_add_number = 0;
5641
5642 if (skip_past_comma (str) == FAIL)
5643 return SUCCESS;
5644
5645 /* Shift operation on register. */
5646 return parse_shift (str, i, NO_SHIFT_RESTRICT);
5647 }
5648
5649 if (my_get_expression (&inst.relocs[0].exp, str, GE_IMM_PREFIX))
5650 return FAIL;
5651
5652 if (skip_past_comma (str) == SUCCESS)
5653 {
5654 /* #x, y -- ie explicit rotation by Y. */
5655 if (my_get_expression (&exp, str, GE_NO_PREFIX))
5656 return FAIL;
5657
5658 if (exp.X_op != O_constant || inst.relocs[0].exp.X_op != O_constant)
5659 {
5660 inst.error = _("constant expression expected");
5661 return FAIL;
5662 }
5663
5664 value = exp.X_add_number;
5665 if (value < 0 || value > 30 || value % 2 != 0)
5666 {
5667 inst.error = _("invalid rotation");
5668 return FAIL;
5669 }
5670 if (inst.relocs[0].exp.X_add_number < 0
5671 || inst.relocs[0].exp.X_add_number > 255)
5672 {
5673 inst.error = _("invalid constant");
5674 return FAIL;
5675 }
5676
5677 /* Encode as specified. */
5678 inst.operands[i].imm = inst.relocs[0].exp.X_add_number | value << 7;
5679 return SUCCESS;
5680 }
5681
5682 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
5683 inst.relocs[0].pc_rel = 0;
5684 return SUCCESS;
5685 }
5686
5687 /* Group relocation information. Each entry in the table contains the
5688 textual name of the relocation as may appear in assembler source
5689 and must end with a colon.
5690 Along with this textual name are the relocation codes to be used if
5691 the corresponding instruction is an ALU instruction (ADD or SUB only),
5692 an LDR, an LDRS, or an LDC. */
5693
5694 struct group_reloc_table_entry
5695 {
5696 const char *name;
5697 int alu_code;
5698 int ldr_code;
5699 int ldrs_code;
5700 int ldc_code;
5701 };
5702
5703 typedef enum
5704 {
5705 /* Varieties of non-ALU group relocation. */
5706
5707 GROUP_LDR,
5708 GROUP_LDRS,
5709 GROUP_LDC,
5710 GROUP_MVE
5711 } group_reloc_type;
5712
5713 static struct group_reloc_table_entry group_reloc_table[] =
5714 { /* Program counter relative: */
5715 { "pc_g0_nc",
5716 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
5717 0, /* LDR */
5718 0, /* LDRS */
5719 0 }, /* LDC */
5720 { "pc_g0",
5721 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
5722 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
5723 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
5724 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
5725 { "pc_g1_nc",
5726 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
5727 0, /* LDR */
5728 0, /* LDRS */
5729 0 }, /* LDC */
5730 { "pc_g1",
5731 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
5732 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
5733 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
5734 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
5735 { "pc_g2",
5736 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
5737 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
5738 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
5739 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
5740 /* Section base relative */
5741 { "sb_g0_nc",
5742 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
5743 0, /* LDR */
5744 0, /* LDRS */
5745 0 }, /* LDC */
5746 { "sb_g0",
5747 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
5748 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
5749 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
5750 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
5751 { "sb_g1_nc",
5752 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
5753 0, /* LDR */
5754 0, /* LDRS */
5755 0 }, /* LDC */
5756 { "sb_g1",
5757 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5758 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5759 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5760 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5761 { "sb_g2",
5762 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5763 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5764 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
5765 BFD_RELOC_ARM_LDC_SB_G2 }, /* LDC */
5766 /* Absolute thumb alu relocations. */
5767 { "lower0_7",
5768 BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC,/* ALU. */
5769 0, /* LDR. */
5770 0, /* LDRS. */
5771 0 }, /* LDC. */
5772 { "lower8_15",
5773 BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC,/* ALU. */
5774 0, /* LDR. */
5775 0, /* LDRS. */
5776 0 }, /* LDC. */
5777 { "upper0_7",
5778 BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC,/* ALU. */
5779 0, /* LDR. */
5780 0, /* LDRS. */
5781 0 }, /* LDC. */
5782 { "upper8_15",
5783 BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC,/* ALU. */
5784 0, /* LDR. */
5785 0, /* LDRS. */
5786 0 } }; /* LDC. */
5787
5788 /* Given the address of a pointer pointing to the textual name of a group
5789 relocation as may appear in assembler source, attempt to find its details
5790 in group_reloc_table. The pointer will be updated to the character after
5791 the trailing colon. On failure, FAIL will be returned; SUCCESS
5792 otherwise. On success, *entry will be updated to point at the relevant
5793 group_reloc_table entry. */
5794
5795 static int
5796 find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5797 {
5798 unsigned int i;
5799 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5800 {
5801 int length = strlen (group_reloc_table[i].name);
5802
5803 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5804 && (*str)[length] == ':')
5805 {
5806 *out = &group_reloc_table[i];
5807 *str += (length + 1);
5808 return SUCCESS;
5809 }
5810 }
5811
5812 return FAIL;
5813 }
5814
5815 /* Parse a <shifter_operand> for an ARM data processing instruction
5816 (as for parse_shifter_operand) where group relocations are allowed:
5817
5818 #<immediate>
5819 #<immediate>, <rotate>
5820 #:<group_reloc>:<expression>
5821 <Rm>
5822 <Rm>, <shift>
5823
5824 where <group_reloc> is one of the strings defined in group_reloc_table.
5825 The hashes are optional.
5826
5827 Everything else is as for parse_shifter_operand. */
5828
5829 static parse_operand_result
5830 parse_shifter_operand_group_reloc (char **str, int i)
5831 {
5832 /* Determine if we have the sequence of characters #: or just :
5833 coming next. If we do, then we check for a group relocation.
5834 If we don't, punt the whole lot to parse_shifter_operand. */
5835
5836 if (((*str)[0] == '#' && (*str)[1] == ':')
5837 || (*str)[0] == ':')
5838 {
5839 struct group_reloc_table_entry *entry;
5840
5841 if ((*str)[0] == '#')
5842 (*str) += 2;
5843 else
5844 (*str)++;
5845
5846 /* Try to parse a group relocation. Anything else is an error. */
5847 if (find_group_reloc_table_entry (str, &entry) == FAIL)
5848 {
5849 inst.error = _("unknown group relocation");
5850 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5851 }
5852
5853 /* We now have the group relocation table entry corresponding to
5854 the name in the assembler source. Next, we parse the expression. */
5855 if (my_get_expression (&inst.relocs[0].exp, str, GE_NO_PREFIX))
5856 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5857
5858 /* Record the relocation type (always the ALU variant here). */
5859 inst.relocs[0].type = (bfd_reloc_code_real_type) entry->alu_code;
5860 gas_assert (inst.relocs[0].type != 0);
5861
5862 return PARSE_OPERAND_SUCCESS;
5863 }
5864 else
5865 return parse_shifter_operand (str, i) == SUCCESS
5866 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
5867
5868 /* Never reached. */
5869 }
5870
5871 /* Parse a Neon alignment expression. Information is written to
5872 inst.operands[i]. We assume the initial ':' has been skipped.
5873
5874 align .imm = align << 8, .immisalign=1, .preind=0 */
5875 static parse_operand_result
5876 parse_neon_alignment (char **str, int i)
5877 {
5878 char *p = *str;
5879 expressionS exp;
5880
5881 my_get_expression (&exp, &p, GE_NO_PREFIX);
5882
5883 if (exp.X_op != O_constant)
5884 {
5885 inst.error = _("alignment must be constant");
5886 return PARSE_OPERAND_FAIL;
5887 }
5888
5889 inst.operands[i].imm = exp.X_add_number << 8;
5890 inst.operands[i].immisalign = 1;
5891 /* Alignments are not pre-indexes. */
5892 inst.operands[i].preind = 0;
5893
5894 *str = p;
5895 return PARSE_OPERAND_SUCCESS;
5896 }
5897
5898 /* Parse all forms of an ARM address expression. Information is written
5899 to inst.operands[i] and/or inst.relocs[0].
5900
5901 Preindexed addressing (.preind=1):
5902
5903 [Rn, #offset] .reg=Rn .relocs[0].exp=offset
5904 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5905 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5906 .shift_kind=shift .relocs[0].exp=shift_imm
5907
5908 These three may have a trailing ! which causes .writeback to be set also.
5909
5910 Postindexed addressing (.postind=1, .writeback=1):
5911
5912 [Rn], #offset .reg=Rn .relocs[0].exp=offset
5913 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5914 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5915 .shift_kind=shift .relocs[0].exp=shift_imm
5916
5917 Unindexed addressing (.preind=0, .postind=0):
5918
5919 [Rn], {option} .reg=Rn .imm=option .immisreg=0
5920
5921 Other:
5922
5923 [Rn]{!} shorthand for [Rn,#0]{!}
5924 =immediate .isreg=0 .relocs[0].exp=immediate
5925 label .reg=PC .relocs[0].pc_rel=1 .relocs[0].exp=label
5926
5927 It is the caller's responsibility to check for addressing modes not
5928 supported by the instruction, and to set inst.relocs[0].type. */
5929
5930 static parse_operand_result
5931 parse_address_main (char **str, int i, int group_relocations,
5932 group_reloc_type group_type)
5933 {
5934 char *p = *str;
5935 int reg;
5936
5937 if (skip_past_char (&p, '[') == FAIL)
5938 {
5939 if (skip_past_char (&p, '=') == FAIL)
5940 {
5941 /* Bare address - translate to PC-relative offset. */
5942 inst.relocs[0].pc_rel = 1;
5943 inst.operands[i].reg = REG_PC;
5944 inst.operands[i].isreg = 1;
5945 inst.operands[i].preind = 1;
5946
5947 if (my_get_expression (&inst.relocs[0].exp, &p, GE_OPT_PREFIX_BIG))
5948 return PARSE_OPERAND_FAIL;
5949 }
5950 else if (parse_big_immediate (&p, i, &inst.relocs[0].exp,
5951 /*allow_symbol_p=*/TRUE))
5952 return PARSE_OPERAND_FAIL;
5953
5954 *str = p;
5955 return PARSE_OPERAND_SUCCESS;
5956 }
5957
5958 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5959 skip_whitespace (p);
5960
5961 if (group_type == GROUP_MVE)
5962 {
5963 enum arm_reg_type rtype = REG_TYPE_MQ;
5964 struct neon_type_el et;
5965 if ((reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
5966 {
5967 inst.operands[i].isquad = 1;
5968 }
5969 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
5970 {
5971 inst.error = BAD_ADDR_MODE;
5972 return PARSE_OPERAND_FAIL;
5973 }
5974 }
5975 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
5976 {
5977 if (group_type == GROUP_MVE)
5978 inst.error = BAD_ADDR_MODE;
5979 else
5980 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
5981 return PARSE_OPERAND_FAIL;
5982 }
5983 inst.operands[i].reg = reg;
5984 inst.operands[i].isreg = 1;
5985
5986 if (skip_past_comma (&p) == SUCCESS)
5987 {
5988 inst.operands[i].preind = 1;
5989
5990 if (*p == '+') p++;
5991 else if (*p == '-') p++, inst.operands[i].negative = 1;
5992
5993 enum arm_reg_type rtype = REG_TYPE_MQ;
5994 struct neon_type_el et;
5995 if (group_type == GROUP_MVE
5996 && (reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
5997 {
5998 inst.operands[i].immisreg = 2;
5999 inst.operands[i].imm = reg;
6000
6001 if (skip_past_comma (&p) == SUCCESS)
6002 {
6003 if (parse_shift (&p, i, SHIFT_UXTW_IMMEDIATE) == SUCCESS)
6004 {
6005 inst.operands[i].imm |= inst.relocs[0].exp.X_add_number << 5;
6006 inst.relocs[0].exp.X_add_number = 0;
6007 }
6008 else
6009 return PARSE_OPERAND_FAIL;
6010 }
6011 }
6012 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
6013 {
6014 inst.operands[i].imm = reg;
6015 inst.operands[i].immisreg = 1;
6016
6017 if (skip_past_comma (&p) == SUCCESS)
6018 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
6019 return PARSE_OPERAND_FAIL;
6020 }
6021 else if (skip_past_char (&p, ':') == SUCCESS)
6022 {
6023 /* FIXME: '@' should be used here, but it's filtered out by generic
6024 code before we get to see it here. This may be subject to
6025 change. */
6026 parse_operand_result result = parse_neon_alignment (&p, i);
6027
6028 if (result != PARSE_OPERAND_SUCCESS)
6029 return result;
6030 }
6031 else
6032 {
6033 if (inst.operands[i].negative)
6034 {
6035 inst.operands[i].negative = 0;
6036 p--;
6037 }
6038
6039 if (group_relocations
6040 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
6041 {
6042 struct group_reloc_table_entry *entry;
6043
6044 /* Skip over the #: or : sequence. */
6045 if (*p == '#')
6046 p += 2;
6047 else
6048 p++;
6049
6050 /* Try to parse a group relocation. Anything else is an
6051 error. */
6052 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
6053 {
6054 inst.error = _("unknown group relocation");
6055 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
6056 }
6057
6058 /* We now have the group relocation table entry corresponding to
6059 the name in the assembler source. Next, we parse the
6060 expression. */
6061 if (my_get_expression (&inst.relocs[0].exp, &p, GE_NO_PREFIX))
6062 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
6063
6064 /* Record the relocation type. */
6065 switch (group_type)
6066 {
6067 case GROUP_LDR:
6068 inst.relocs[0].type
6069 = (bfd_reloc_code_real_type) entry->ldr_code;
6070 break;
6071
6072 case GROUP_LDRS:
6073 inst.relocs[0].type
6074 = (bfd_reloc_code_real_type) entry->ldrs_code;
6075 break;
6076
6077 case GROUP_LDC:
6078 inst.relocs[0].type
6079 = (bfd_reloc_code_real_type) entry->ldc_code;
6080 break;
6081
6082 default:
6083 gas_assert (0);
6084 }
6085
6086 if (inst.relocs[0].type == 0)
6087 {
6088 inst.error = _("this group relocation is not allowed on this instruction");
6089 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
6090 }
6091 }
6092 else
6093 {
6094 char *q = p;
6095
6096 if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
6097 return PARSE_OPERAND_FAIL;
6098 /* If the offset is 0, find out if it's a +0 or -0. */
6099 if (inst.relocs[0].exp.X_op == O_constant
6100 && inst.relocs[0].exp.X_add_number == 0)
6101 {
6102 skip_whitespace (q);
6103 if (*q == '#')
6104 {
6105 q++;
6106 skip_whitespace (q);
6107 }
6108 if (*q == '-')
6109 inst.operands[i].negative = 1;
6110 }
6111 }
6112 }
6113 }
6114 else if (skip_past_char (&p, ':') == SUCCESS)
6115 {
6116 /* FIXME: '@' should be used here, but it's filtered out by generic code
6117 before we get to see it here. This may be subject to change. */
6118 parse_operand_result result = parse_neon_alignment (&p, i);
6119
6120 if (result != PARSE_OPERAND_SUCCESS)
6121 return result;
6122 }
6123
6124 if (skip_past_char (&p, ']') == FAIL)
6125 {
6126 inst.error = _("']' expected");
6127 return PARSE_OPERAND_FAIL;
6128 }
6129
6130 if (skip_past_char (&p, '!') == SUCCESS)
6131 inst.operands[i].writeback = 1;
6132
6133 else if (skip_past_comma (&p) == SUCCESS)
6134 {
6135 if (skip_past_char (&p, '{') == SUCCESS)
6136 {
6137 /* [Rn], {expr} - unindexed, with option */
6138 if (parse_immediate (&p, &inst.operands[i].imm,
6139 0, 255, TRUE) == FAIL)
6140 return PARSE_OPERAND_FAIL;
6141
6142 if (skip_past_char (&p, '}') == FAIL)
6143 {
6144 inst.error = _("'}' expected at end of 'option' field");
6145 return PARSE_OPERAND_FAIL;
6146 }
6147 if (inst.operands[i].preind)
6148 {
6149 inst.error = _("cannot combine index with option");
6150 return PARSE_OPERAND_FAIL;
6151 }
6152 *str = p;
6153 return PARSE_OPERAND_SUCCESS;
6154 }
6155 else
6156 {
6157 inst.operands[i].postind = 1;
6158 inst.operands[i].writeback = 1;
6159
6160 if (inst.operands[i].preind)
6161 {
6162 inst.error = _("cannot combine pre- and post-indexing");
6163 return PARSE_OPERAND_FAIL;
6164 }
6165
6166 if (*p == '+') p++;
6167 else if (*p == '-') p++, inst.operands[i].negative = 1;
6168
6169 enum arm_reg_type rtype = REG_TYPE_MQ;
6170 struct neon_type_el et;
6171 if (group_type == GROUP_MVE
6172 && (reg = arm_typed_reg_parse (&p, rtype, &rtype, &et)) != FAIL)
6173 {
6174 inst.operands[i].immisreg = 2;
6175 inst.operands[i].imm = reg;
6176 }
6177 else if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
6178 {
6179 /* We might be using the immediate for alignment already. If we
6180 are, OR the register number into the low-order bits. */
6181 if (inst.operands[i].immisalign)
6182 inst.operands[i].imm |= reg;
6183 else
6184 inst.operands[i].imm = reg;
6185 inst.operands[i].immisreg = 1;
6186
6187 if (skip_past_comma (&p) == SUCCESS)
6188 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
6189 return PARSE_OPERAND_FAIL;
6190 }
6191 else
6192 {
6193 char *q = p;
6194
6195 if (inst.operands[i].negative)
6196 {
6197 inst.operands[i].negative = 0;
6198 p--;
6199 }
6200 if (my_get_expression (&inst.relocs[0].exp, &p, GE_IMM_PREFIX))
6201 return PARSE_OPERAND_FAIL;
6202 /* If the offset is 0, find out if it's a +0 or -0. */
6203 if (inst.relocs[0].exp.X_op == O_constant
6204 && inst.relocs[0].exp.X_add_number == 0)
6205 {
6206 skip_whitespace (q);
6207 if (*q == '#')
6208 {
6209 q++;
6210 skip_whitespace (q);
6211 }
6212 if (*q == '-')
6213 inst.operands[i].negative = 1;
6214 }
6215 }
6216 }
6217 }
6218
6219 /* If at this point neither .preind nor .postind is set, we have a
6220 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
6221 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
6222 {
6223 inst.operands[i].preind = 1;
6224 inst.relocs[0].exp.X_op = O_constant;
6225 inst.relocs[0].exp.X_add_number = 0;
6226 }
6227 *str = p;
6228 return PARSE_OPERAND_SUCCESS;
6229 }
6230
6231 static int
6232 parse_address (char **str, int i)
6233 {
6234 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
6235 ? SUCCESS : FAIL;
6236 }
6237
6238 static parse_operand_result
6239 parse_address_group_reloc (char **str, int i, group_reloc_type type)
6240 {
6241 return parse_address_main (str, i, 1, type);
6242 }
6243
6244 /* Parse an operand for a MOVW or MOVT instruction. */
6245 static int
6246 parse_half (char **str)
6247 {
6248 char * p;
6249
6250 p = *str;
6251 skip_past_char (&p, '#');
6252 if (strncasecmp (p, ":lower16:", 9) == 0)
6253 inst.relocs[0].type = BFD_RELOC_ARM_MOVW;
6254 else if (strncasecmp (p, ":upper16:", 9) == 0)
6255 inst.relocs[0].type = BFD_RELOC_ARM_MOVT;
6256
6257 if (inst.relocs[0].type != BFD_RELOC_UNUSED)
6258 {
6259 p += 9;
6260 skip_whitespace (p);
6261 }
6262
6263 if (my_get_expression (&inst.relocs[0].exp, &p, GE_NO_PREFIX))
6264 return FAIL;
6265
6266 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
6267 {
6268 if (inst.relocs[0].exp.X_op != O_constant)
6269 {
6270 inst.error = _("constant expression expected");
6271 return FAIL;
6272 }
6273 if (inst.relocs[0].exp.X_add_number < 0
6274 || inst.relocs[0].exp.X_add_number > 0xffff)
6275 {
6276 inst.error = _("immediate value out of range");
6277 return FAIL;
6278 }
6279 }
6280 *str = p;
6281 return SUCCESS;
6282 }
6283
6284 /* Miscellaneous. */
6285
6286 /* Parse a PSR flag operand. The value returned is FAIL on syntax error,
6287 or a bitmask suitable to be or-ed into the ARM msr instruction. */
6288 static int
6289 parse_psr (char **str, bfd_boolean lhs)
6290 {
6291 char *p;
6292 unsigned long psr_field;
6293 const struct asm_psr *psr;
6294 char *start;
6295 bfd_boolean is_apsr = FALSE;
6296 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
6297
6298 /* PR gas/12698: If the user has specified -march=all then m_profile will
6299 be TRUE, but we want to ignore it in this case as we are building for any
6300 CPU type, including non-m variants. */
6301 if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
6302 m_profile = FALSE;
6303
6304 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
6305 feature for ease of use and backwards compatibility. */
6306 p = *str;
6307 if (strncasecmp (p, "SPSR", 4) == 0)
6308 {
6309 if (m_profile)
6310 goto unsupported_psr;
6311
6312 psr_field = SPSR_BIT;
6313 }
6314 else if (strncasecmp (p, "CPSR", 4) == 0)
6315 {
6316 if (m_profile)
6317 goto unsupported_psr;
6318
6319 psr_field = 0;
6320 }
6321 else if (strncasecmp (p, "APSR", 4) == 0)
6322 {
6323 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
6324 and ARMv7-R architecture CPUs. */
6325 is_apsr = TRUE;
6326 psr_field = 0;
6327 }
6328 else if (m_profile)
6329 {
6330 start = p;
6331 do
6332 p++;
6333 while (ISALNUM (*p) || *p == '_');
6334
6335 if (strncasecmp (start, "iapsr", 5) == 0
6336 || strncasecmp (start, "eapsr", 5) == 0
6337 || strncasecmp (start, "xpsr", 4) == 0
6338 || strncasecmp (start, "psr", 3) == 0)
6339 p = start + strcspn (start, "rR") + 1;
6340
6341 psr = (const struct asm_psr *) str_hash_find_n (arm_v7m_psr_hsh, start,
6342 p - start);
6343
6344 if (!psr)
6345 return FAIL;
6346
6347 /* If APSR is being written, a bitfield may be specified. Note that
6348 APSR itself is handled above. */
6349 if (psr->field <= 3)
6350 {
6351 psr_field = psr->field;
6352 is_apsr = TRUE;
6353 goto check_suffix;
6354 }
6355
6356 *str = p;
6357 /* M-profile MSR instructions have the mask field set to "10", except
6358 *PSR variants which modify APSR, which may use a different mask (and
6359 have been handled already). Do that by setting the PSR_f field
6360 here. */
6361 return psr->field | (lhs ? PSR_f : 0);
6362 }
6363 else
6364 goto unsupported_psr;
6365
6366 p += 4;
6367 check_suffix:
6368 if (*p == '_')
6369 {
6370 /* A suffix follows. */
6371 p++;
6372 start = p;
6373
6374 do
6375 p++;
6376 while (ISALNUM (*p) || *p == '_');
6377
6378 if (is_apsr)
6379 {
6380 /* APSR uses a notation for bits, rather than fields. */
6381 unsigned int nzcvq_bits = 0;
6382 unsigned int g_bit = 0;
6383 char *bit;
6384
6385 for (bit = start; bit != p; bit++)
6386 {
6387 switch (TOLOWER (*bit))
6388 {
6389 case 'n':
6390 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
6391 break;
6392
6393 case 'z':
6394 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
6395 break;
6396
6397 case 'c':
6398 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
6399 break;
6400
6401 case 'v':
6402 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
6403 break;
6404
6405 case 'q':
6406 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
6407 break;
6408
6409 case 'g':
6410 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
6411 break;
6412
6413 default:
6414 inst.error = _("unexpected bit specified after APSR");
6415 return FAIL;
6416 }
6417 }
6418
6419 if (nzcvq_bits == 0x1f)
6420 psr_field |= PSR_f;
6421
6422 if (g_bit == 0x1)
6423 {
6424 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
6425 {
6426 inst.error = _("selected processor does not "
6427 "support DSP extension");
6428 return FAIL;
6429 }
6430
6431 psr_field |= PSR_s;
6432 }
6433
6434 if ((nzcvq_bits & 0x20) != 0
6435 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
6436 || (g_bit & 0x2) != 0)
6437 {
6438 inst.error = _("bad bitmask specified after APSR");
6439 return FAIL;
6440 }
6441 }
6442 else
6443 {
6444 psr = (const struct asm_psr *) str_hash_find_n (arm_psr_hsh, start,
6445 p - start);
6446 if (!psr)
6447 goto error;
6448
6449 psr_field |= psr->field;
6450 }
6451 }
6452 else
6453 {
6454 if (ISALNUM (*p))
6455 goto error; /* Garbage after "[CS]PSR". */
6456
6457 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
6458 is deprecated, but allow it anyway. */
6459 if (is_apsr && lhs)
6460 {
6461 psr_field |= PSR_f;
6462 as_tsktsk (_("writing to APSR without specifying a bitmask is "
6463 "deprecated"));
6464 }
6465 else if (!m_profile)
6466 /* These bits are never right for M-profile devices: don't set them
6467 (only code paths which read/write APSR reach here). */
6468 psr_field |= (PSR_c | PSR_f);
6469 }
6470 *str = p;
6471 return psr_field;
6472
6473 unsupported_psr:
6474 inst.error = _("selected processor does not support requested special "
6475 "purpose register");
6476 return FAIL;
6477
6478 error:
6479 inst.error = _("flag for {c}psr instruction expected");
6480 return FAIL;
6481 }
6482
6483 static int
6484 parse_sys_vldr_vstr (char **str)
6485 {
6486 unsigned i;
6487 int val = FAIL;
6488 struct {
6489 const char *name;
6490 int regl;
6491 int regh;
6492 } sysregs[] = {
6493 {"FPSCR", 0x1, 0x0},
6494 {"FPSCR_nzcvqc", 0x2, 0x0},
6495 {"VPR", 0x4, 0x1},
6496 {"P0", 0x5, 0x1},
6497 {"FPCXTNS", 0x6, 0x1},
6498 {"FPCXTS", 0x7, 0x1}
6499 };
6500 char *op_end = strchr (*str, ',');
6501 size_t op_strlen = op_end - *str;
6502
6503 for (i = 0; i < sizeof (sysregs) / sizeof (sysregs[0]); i++)
6504 {
6505 if (!strncmp (*str, sysregs[i].name, op_strlen))
6506 {
6507 val = sysregs[i].regl | (sysregs[i].regh << 3);
6508 *str = op_end;
6509 break;
6510 }
6511 }
6512
6513 return val;
6514 }
6515
6516 /* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
6517 value suitable for splatting into the AIF field of the instruction. */
6518
6519 static int
6520 parse_cps_flags (char **str)
6521 {
6522 int val = 0;
6523 int saw_a_flag = 0;
6524 char *s = *str;
6525
6526 for (;;)
6527 switch (*s++)
6528 {
6529 case '\0': case ',':
6530 goto done;
6531
6532 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
6533 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
6534 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
6535
6536 default:
6537 inst.error = _("unrecognized CPS flag");
6538 return FAIL;
6539 }
6540
6541 done:
6542 if (saw_a_flag == 0)
6543 {
6544 inst.error = _("missing CPS flags");
6545 return FAIL;
6546 }
6547
6548 *str = s - 1;
6549 return val;
6550 }
6551
6552 /* Parse an endian specifier ("BE" or "LE", case insensitive);
6553 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
6554
6555 static int
6556 parse_endian_specifier (char **str)
6557 {
6558 int little_endian;
6559 char *s = *str;
6560
6561 if (strncasecmp (s, "BE", 2))
6562 little_endian = 0;
6563 else if (strncasecmp (s, "LE", 2))
6564 little_endian = 1;
6565 else
6566 {
6567 inst.error = _("valid endian specifiers are be or le");
6568 return FAIL;
6569 }
6570
6571 if (ISALNUM (s[2]) || s[2] == '_')
6572 {
6573 inst.error = _("valid endian specifiers are be or le");
6574 return FAIL;
6575 }
6576
6577 *str = s + 2;
6578 return little_endian;
6579 }
6580
6581 /* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
6582 value suitable for poking into the rotate field of an sxt or sxta
6583 instruction, or FAIL on error. */
6584
6585 static int
6586 parse_ror (char **str)
6587 {
6588 int rot;
6589 char *s = *str;
6590
6591 if (strncasecmp (s, "ROR", 3) == 0)
6592 s += 3;
6593 else
6594 {
6595 inst.error = _("missing rotation field after comma");
6596 return FAIL;
6597 }
6598
6599 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
6600 return FAIL;
6601
6602 switch (rot)
6603 {
6604 case 0: *str = s; return 0x0;
6605 case 8: *str = s; return 0x1;
6606 case 16: *str = s; return 0x2;
6607 case 24: *str = s; return 0x3;
6608
6609 default:
6610 inst.error = _("rotation can only be 0, 8, 16, or 24");
6611 return FAIL;
6612 }
6613 }
6614
6615 /* Parse a conditional code (from conds[] below). The value returned is in the
6616 range 0 .. 14, or FAIL. */
6617 static int
6618 parse_cond (char **str)
6619 {
6620 char *q;
6621 const struct asm_cond *c;
6622 int n;
6623 /* Condition codes are always 2 characters, so matching up to
6624 3 characters is sufficient. */
6625 char cond[3];
6626
6627 q = *str;
6628 n = 0;
6629 while (ISALPHA (*q) && n < 3)
6630 {
6631 cond[n] = TOLOWER (*q);
6632 q++;
6633 n++;
6634 }
6635
6636 c = (const struct asm_cond *) str_hash_find_n (arm_cond_hsh, cond, n);
6637 if (!c)
6638 {
6639 inst.error = _("condition required");
6640 return FAIL;
6641 }
6642
6643 *str = q;
6644 return c->value;
6645 }
6646
6647 /* Parse an option for a barrier instruction. Returns the encoding for the
6648 option, or FAIL. */
6649 static int
6650 parse_barrier (char **str)
6651 {
6652 char *p, *q;
6653 const struct asm_barrier_opt *o;
6654
6655 p = q = *str;
6656 while (ISALPHA (*q))
6657 q++;
6658
6659 o = (const struct asm_barrier_opt *) str_hash_find_n (arm_barrier_opt_hsh, p,
6660 q - p);
6661 if (!o)
6662 return FAIL;
6663
6664 if (!mark_feature_used (&o->arch))
6665 return FAIL;
6666
6667 *str = q;
6668 return o->value;
6669 }
6670
6671 /* Parse the operands of a table branch instruction. Similar to a memory
6672 operand. */
6673 static int
6674 parse_tb (char **str)
6675 {
6676 char * p = *str;
6677 int reg;
6678
6679 if (skip_past_char (&p, '[') == FAIL)
6680 {
6681 inst.error = _("'[' expected");
6682 return FAIL;
6683 }
6684
6685 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
6686 {
6687 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6688 return FAIL;
6689 }
6690 inst.operands[0].reg = reg;
6691
6692 if (skip_past_comma (&p) == FAIL)
6693 {
6694 inst.error = _("',' expected");
6695 return FAIL;
6696 }
6697
6698 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
6699 {
6700 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6701 return FAIL;
6702 }
6703 inst.operands[0].imm = reg;
6704
6705 if (skip_past_comma (&p) == SUCCESS)
6706 {
6707 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
6708 return FAIL;
6709 if (inst.relocs[0].exp.X_add_number != 1)
6710 {
6711 inst.error = _("invalid shift");
6712 return FAIL;
6713 }
6714 inst.operands[0].shifted = 1;
6715 }
6716
6717 if (skip_past_char (&p, ']') == FAIL)
6718 {
6719 inst.error = _("']' expected");
6720 return FAIL;
6721 }
6722 *str = p;
6723 return SUCCESS;
6724 }
6725
6726 /* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
6727 information on the types the operands can take and how they are encoded.
6728 Up to four operands may be read; this function handles setting the
6729 ".present" field for each read operand itself.
6730 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
6731 else returns FAIL. */
6732
6733 static int
6734 parse_neon_mov (char **str, int *which_operand)
6735 {
6736 int i = *which_operand, val;
6737 enum arm_reg_type rtype;
6738 char *ptr = *str;
6739 struct neon_type_el optype;
6740
6741 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6742 {
6743 /* Cases 17 or 19. */
6744 inst.operands[i].reg = val;
6745 inst.operands[i].isvec = 1;
6746 inst.operands[i].isscalar = 2;
6747 inst.operands[i].vectype = optype;
6748 inst.operands[i++].present = 1;
6749
6750 if (skip_past_comma (&ptr) == FAIL)
6751 goto wanted_comma;
6752
6753 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6754 {
6755 /* Case 17: VMOV<c>.<dt> <Qd[idx]>, <Rt> */
6756 inst.operands[i].reg = val;
6757 inst.operands[i].isreg = 1;
6758 inst.operands[i].present = 1;
6759 }
6760 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6761 {
6762 /* Case 19: VMOV<c> <Qd[idx]>, <Qd[idx2]>, <Rt>, <Rt2> */
6763 inst.operands[i].reg = val;
6764 inst.operands[i].isvec = 1;
6765 inst.operands[i].isscalar = 2;
6766 inst.operands[i].vectype = optype;
6767 inst.operands[i++].present = 1;
6768
6769 if (skip_past_comma (&ptr) == FAIL)
6770 goto wanted_comma;
6771
6772 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6773 goto wanted_arm;
6774
6775 inst.operands[i].reg = val;
6776 inst.operands[i].isreg = 1;
6777 inst.operands[i++].present = 1;
6778
6779 if (skip_past_comma (&ptr) == FAIL)
6780 goto wanted_comma;
6781
6782 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6783 goto wanted_arm;
6784
6785 inst.operands[i].reg = val;
6786 inst.operands[i].isreg = 1;
6787 inst.operands[i].present = 1;
6788 }
6789 else
6790 {
6791 first_error (_("expected ARM or MVE vector register"));
6792 return FAIL;
6793 }
6794 }
6795 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_VFD)) != FAIL)
6796 {
6797 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
6798 inst.operands[i].reg = val;
6799 inst.operands[i].isscalar = 1;
6800 inst.operands[i].vectype = optype;
6801 inst.operands[i++].present = 1;
6802
6803 if (skip_past_comma (&ptr) == FAIL)
6804 goto wanted_comma;
6805
6806 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6807 goto wanted_arm;
6808
6809 inst.operands[i].reg = val;
6810 inst.operands[i].isreg = 1;
6811 inst.operands[i].present = 1;
6812 }
6813 else if (((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
6814 != FAIL)
6815 || ((val = arm_typed_reg_parse (&ptr, REG_TYPE_MQ, &rtype, &optype))
6816 != FAIL))
6817 {
6818 /* Cases 0, 1, 2, 3, 5 (D only). */
6819 if (skip_past_comma (&ptr) == FAIL)
6820 goto wanted_comma;
6821
6822 inst.operands[i].reg = val;
6823 inst.operands[i].isreg = 1;
6824 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6825 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6826 inst.operands[i].isvec = 1;
6827 inst.operands[i].vectype = optype;
6828 inst.operands[i++].present = 1;
6829
6830 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6831 {
6832 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
6833 Case 13: VMOV <Sd>, <Rm> */
6834 inst.operands[i].reg = val;
6835 inst.operands[i].isreg = 1;
6836 inst.operands[i].present = 1;
6837
6838 if (rtype == REG_TYPE_NQ)
6839 {
6840 first_error (_("can't use Neon quad register here"));
6841 return FAIL;
6842 }
6843 else if (rtype != REG_TYPE_VFS)
6844 {
6845 i++;
6846 if (skip_past_comma (&ptr) == FAIL)
6847 goto wanted_comma;
6848 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6849 goto wanted_arm;
6850 inst.operands[i].reg = val;
6851 inst.operands[i].isreg = 1;
6852 inst.operands[i].present = 1;
6853 }
6854 }
6855 else if (((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
6856 &optype)) != FAIL)
6857 || ((val = arm_typed_reg_parse (&ptr, REG_TYPE_MQ, &rtype,
6858 &optype)) != FAIL))
6859 {
6860 /* Case 0: VMOV<c><q> <Qd>, <Qm>
6861 Case 1: VMOV<c><q> <Dd>, <Dm>
6862 Case 8: VMOV.F32 <Sd>, <Sm>
6863 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
6864
6865 inst.operands[i].reg = val;
6866 inst.operands[i].isreg = 1;
6867 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6868 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6869 inst.operands[i].isvec = 1;
6870 inst.operands[i].vectype = optype;
6871 inst.operands[i].present = 1;
6872
6873 if (skip_past_comma (&ptr) == SUCCESS)
6874 {
6875 /* Case 15. */
6876 i++;
6877
6878 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6879 goto wanted_arm;
6880
6881 inst.operands[i].reg = val;
6882 inst.operands[i].isreg = 1;
6883 inst.operands[i++].present = 1;
6884
6885 if (skip_past_comma (&ptr) == FAIL)
6886 goto wanted_comma;
6887
6888 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6889 goto wanted_arm;
6890
6891 inst.operands[i].reg = val;
6892 inst.operands[i].isreg = 1;
6893 inst.operands[i].present = 1;
6894 }
6895 }
6896 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
6897 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
6898 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
6899 Case 10: VMOV.F32 <Sd>, #<imm>
6900 Case 11: VMOV.F64 <Dd>, #<imm> */
6901 inst.operands[i].immisfloat = 1;
6902 else if (parse_big_immediate (&ptr, i, NULL, /*allow_symbol_p=*/FALSE)
6903 == SUCCESS)
6904 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6905 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6906 ;
6907 else
6908 {
6909 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6910 return FAIL;
6911 }
6912 }
6913 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6914 {
6915 /* Cases 6, 7, 16, 18. */
6916 inst.operands[i].reg = val;
6917 inst.operands[i].isreg = 1;
6918 inst.operands[i++].present = 1;
6919
6920 if (skip_past_comma (&ptr) == FAIL)
6921 goto wanted_comma;
6922
6923 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ)) != FAIL)
6924 {
6925 /* Case 18: VMOV<c>.<dt> <Rt>, <Qn[idx]> */
6926 inst.operands[i].reg = val;
6927 inst.operands[i].isscalar = 2;
6928 inst.operands[i].present = 1;
6929 inst.operands[i].vectype = optype;
6930 }
6931 else if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_VFD)) != FAIL)
6932 {
6933 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6934 inst.operands[i].reg = val;
6935 inst.operands[i].isscalar = 1;
6936 inst.operands[i].present = 1;
6937 inst.operands[i].vectype = optype;
6938 }
6939 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
6940 {
6941 inst.operands[i].reg = val;
6942 inst.operands[i].isreg = 1;
6943 inst.operands[i++].present = 1;
6944
6945 if (skip_past_comma (&ptr) == FAIL)
6946 goto wanted_comma;
6947
6948 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6949 != FAIL)
6950 {
6951 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6952
6953 inst.operands[i].reg = val;
6954 inst.operands[i].isreg = 1;
6955 inst.operands[i].isvec = 1;
6956 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6957 inst.operands[i].vectype = optype;
6958 inst.operands[i].present = 1;
6959
6960 if (rtype == REG_TYPE_VFS)
6961 {
6962 /* Case 14. */
6963 i++;
6964 if (skip_past_comma (&ptr) == FAIL)
6965 goto wanted_comma;
6966 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6967 &optype)) == FAIL)
6968 {
6969 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6970 return FAIL;
6971 }
6972 inst.operands[i].reg = val;
6973 inst.operands[i].isreg = 1;
6974 inst.operands[i].isvec = 1;
6975 inst.operands[i].issingle = 1;
6976 inst.operands[i].vectype = optype;
6977 inst.operands[i].present = 1;
6978 }
6979 }
6980 else
6981 {
6982 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ))
6983 != FAIL)
6984 {
6985 /* Case 16: VMOV<c> <Rt>, <Rt2>, <Qd[idx]>, <Qd[idx2]> */
6986 inst.operands[i].reg = val;
6987 inst.operands[i].isvec = 1;
6988 inst.operands[i].isscalar = 2;
6989 inst.operands[i].vectype = optype;
6990 inst.operands[i++].present = 1;
6991
6992 if (skip_past_comma (&ptr) == FAIL)
6993 goto wanted_comma;
6994
6995 if ((val = parse_scalar (&ptr, 8, &optype, REG_TYPE_MQ))
6996 == FAIL)
6997 {
6998 first_error (_(reg_expected_msgs[REG_TYPE_MQ]));
6999 return FAIL;
7000 }
7001 inst.operands[i].reg = val;
7002 inst.operands[i].isvec = 1;
7003 inst.operands[i].isscalar = 2;
7004 inst.operands[i].vectype = optype;
7005 inst.operands[i].present = 1;
7006 }
7007 else
7008 {
7009 first_error (_("VFP single, double or MVE vector register"
7010 " expected"));
7011 return FAIL;
7012 }
7013 }
7014 }
7015 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
7016 != FAIL)
7017 {
7018 /* Case 13. */
7019 inst.operands[i].reg = val;
7020 inst.operands[i].isreg = 1;
7021 inst.operands[i].isvec = 1;
7022 inst.operands[i].issingle = 1;
7023 inst.operands[i].vectype = optype;
7024 inst.operands[i].present = 1;
7025 }
7026 }
7027 else
7028 {
7029 first_error (_("parse error"));
7030 return FAIL;
7031 }
7032
7033 /* Successfully parsed the operands. Update args. */
7034 *which_operand = i;
7035 *str = ptr;
7036 return SUCCESS;
7037
7038 wanted_comma:
7039 first_error (_("expected comma"));
7040 return FAIL;
7041
7042 wanted_arm:
7043 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
7044 return FAIL;
7045 }
7046
7047 /* Use this macro when the operand constraints are different
7048 for ARM and THUMB (e.g. ldrd). */
7049 #define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
7050 ((arm_operand) | ((thumb_operand) << 16))
7051
7052 /* Matcher codes for parse_operands. */
7053 enum operand_parse_code
7054 {
7055 OP_stop, /* end of line */
7056
7057 OP_RR, /* ARM register */
7058 OP_RRnpc, /* ARM register, not r15 */
7059 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
7060 OP_RRnpcb, /* ARM register, not r15, in square brackets */
7061 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
7062 optional trailing ! */
7063 OP_RRw, /* ARM register, not r15, optional trailing ! */
7064 OP_RCP, /* Coprocessor number */
7065 OP_RCN, /* Coprocessor register */
7066 OP_RF, /* FPA register */
7067 OP_RVS, /* VFP single precision register */
7068 OP_RVD, /* VFP double precision register (0..15) */
7069 OP_RND, /* Neon double precision register (0..31) */
7070 OP_RNDMQ, /* Neon double precision (0..31) or MVE vector register. */
7071 OP_RNDMQR, /* Neon double precision (0..31), MVE vector or ARM register.
7072 */
7073 OP_RNSDMQR, /* Neon single or double precision, MVE vector or ARM register.
7074 */
7075 OP_RNQ, /* Neon quad precision register */
7076 OP_RNQMQ, /* Neon quad or MVE vector register. */
7077 OP_RVSD, /* VFP single or double precision register */
7078 OP_RVSD_COND, /* VFP single, double precision register or condition code. */
7079 OP_RVSDMQ, /* VFP single, double precision or MVE vector register. */
7080 OP_RNSD, /* Neon single or double precision register */
7081 OP_RNDQ, /* Neon double or quad precision register */
7082 OP_RNDQMQ, /* Neon double, quad or MVE vector register. */
7083 OP_RNDQMQR, /* Neon double, quad, MVE vector or ARM register. */
7084 OP_RNSDQ, /* Neon single, double or quad precision register */
7085 OP_RNSC, /* Neon scalar D[X] */
7086 OP_RVC, /* VFP control register */
7087 OP_RMF, /* Maverick F register */
7088 OP_RMD, /* Maverick D register */
7089 OP_RMFX, /* Maverick FX register */
7090 OP_RMDX, /* Maverick DX register */
7091 OP_RMAX, /* Maverick AX register */
7092 OP_RMDS, /* Maverick DSPSC register */
7093 OP_RIWR, /* iWMMXt wR register */
7094 OP_RIWC, /* iWMMXt wC register */
7095 OP_RIWG, /* iWMMXt wCG register */
7096 OP_RXA, /* XScale accumulator register */
7097
7098 OP_RNSDMQ, /* Neon single, double or MVE vector register */
7099 OP_RNSDQMQ, /* Neon single, double or quad register or MVE vector register
7100 */
7101 OP_RNSDQMQR, /* Neon single, double or quad register, MVE vector register or
7102 GPR (no SP/SP) */
7103 OP_RMQ, /* MVE vector register. */
7104 OP_RMQRZ, /* MVE vector or ARM register including ZR. */
7105 OP_RMQRR, /* MVE vector or ARM register. */
7106
7107 /* New operands for Armv8.1-M Mainline. */
7108 OP_LR, /* ARM LR register */
7109 OP_RRe, /* ARM register, only even numbered. */
7110 OP_RRo, /* ARM register, only odd numbered, not r13 or r15. */
7111 OP_RRnpcsp_I32, /* ARM register (no BadReg) or literal 1 .. 32 */
7112 OP_RR_ZR, /* ARM register or ZR but no PC */
7113
7114 OP_REGLST, /* ARM register list */
7115 OP_CLRMLST, /* CLRM register list */
7116 OP_VRSLST, /* VFP single-precision register list */
7117 OP_VRDLST, /* VFP double-precision register list */
7118 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
7119 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
7120 OP_NSTRLST, /* Neon element/structure list */
7121 OP_VRSDVLST, /* VFP single or double-precision register list and VPR */
7122 OP_MSTRLST2, /* MVE vector list with two elements. */
7123 OP_MSTRLST4, /* MVE vector list with four elements. */
7124
7125 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
7126 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
7127 OP_RSVD_FI0, /* VFP S or D reg, or floating point immediate zero. */
7128 OP_RSVDMQ_FI0, /* VFP S, D, MVE vector register or floating point immediate
7129 zero. */
7130 OP_RR_RNSC, /* ARM reg or Neon scalar. */
7131 OP_RNSD_RNSC, /* Neon S or D reg, or Neon scalar. */
7132 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
7133 OP_RNSDQ_RNSC_MQ, /* Vector S, D or Q reg, Neon scalar or MVE vector register.
7134 */
7135 OP_RNSDQ_RNSC_MQ_RR, /* Vector S, D or Q reg, or MVE vector reg , or Neon
7136 scalar, or ARM register. */
7137 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
7138 OP_RNDQ_RNSC_RR, /* Neon D or Q reg, Neon scalar, or ARM register. */
7139 OP_RNDQMQ_RNSC_RR, /* Neon D or Q reg, Neon scalar, MVE vector or ARM
7140 register. */
7141 OP_RNDQMQ_RNSC, /* Neon D, Q or MVE vector reg, or Neon scalar. */
7142 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
7143 OP_VMOV, /* Neon VMOV operands. */
7144 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
7145 /* Neon D, Q or MVE vector register, or big immediate for logic and VMVN. */
7146 OP_RNDQMQ_Ibig,
7147 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
7148 OP_RNDQMQ_I63b_RR, /* Neon D or Q reg, immediate for shift, MVE vector or
7149 ARM register. */
7150 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
7151 OP_VLDR, /* VLDR operand. */
7152
7153 OP_I0, /* immediate zero */
7154 OP_I7, /* immediate value 0 .. 7 */
7155 OP_I15, /* 0 .. 15 */
7156 OP_I16, /* 1 .. 16 */
7157 OP_I16z, /* 0 .. 16 */
7158 OP_I31, /* 0 .. 31 */
7159 OP_I31w, /* 0 .. 31, optional trailing ! */
7160 OP_I32, /* 1 .. 32 */
7161 OP_I32z, /* 0 .. 32 */
7162 OP_I48_I64, /* 48 or 64 */
7163 OP_I63, /* 0 .. 63 */
7164 OP_I63s, /* -64 .. 63 */
7165 OP_I64, /* 1 .. 64 */
7166 OP_I64z, /* 0 .. 64 */
7167 OP_I127, /* 0 .. 127 */
7168 OP_I255, /* 0 .. 255 */
7169 OP_I511, /* 0 .. 511 */
7170 OP_I4095, /* 0 .. 4095 */
7171 OP_I8191, /* 0 .. 8191 */
7172 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
7173 OP_I7b, /* 0 .. 7 */
7174 OP_I15b, /* 0 .. 15 */
7175 OP_I31b, /* 0 .. 31 */
7176
7177 OP_SH, /* shifter operand */
7178 OP_SHG, /* shifter operand with possible group relocation */
7179 OP_ADDR, /* Memory address expression (any mode) */
7180 OP_ADDRMVE, /* Memory address expression for MVE's VSTR/VLDR. */
7181 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
7182 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
7183 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
7184 OP_EXP, /* arbitrary expression */
7185 OP_EXPi, /* same, with optional immediate prefix */
7186 OP_EXPr, /* same, with optional relocation suffix */
7187 OP_EXPs, /* same, with optional non-first operand relocation suffix */
7188 OP_HALF, /* 0 .. 65535 or low/high reloc. */
7189 OP_IROT1, /* VCADD rotate immediate: 90, 270. */
7190 OP_IROT2, /* VCMLA rotate immediate: 0, 90, 180, 270. */
7191
7192 OP_CPSF, /* CPS flags */
7193 OP_ENDI, /* Endianness specifier */
7194 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
7195 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
7196 OP_COND, /* conditional code */
7197 OP_TB, /* Table branch. */
7198
7199 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
7200
7201 OP_RRnpc_I0, /* ARM register or literal 0 */
7202 OP_RR_EXr, /* ARM register or expression with opt. reloc stuff. */
7203 OP_RR_EXi, /* ARM register or expression with imm prefix */
7204 OP_RF_IF, /* FPA register or immediate */
7205 OP_RIWR_RIWC, /* iWMMXt R or C reg */
7206 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
7207
7208 /* Optional operands. */
7209 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
7210 OP_oI31b, /* 0 .. 31 */
7211 OP_oI32b, /* 1 .. 32 */
7212 OP_oI32z, /* 0 .. 32 */
7213 OP_oIffffb, /* 0 .. 65535 */
7214 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
7215
7216 OP_oRR, /* ARM register */
7217 OP_oLR, /* ARM LR register */
7218 OP_oRRnpc, /* ARM register, not the PC */
7219 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
7220 OP_oRRw, /* ARM register, not r15, optional trailing ! */
7221 OP_oRND, /* Optional Neon double precision register */
7222 OP_oRNQ, /* Optional Neon quad precision register */
7223 OP_oRNDQMQ, /* Optional Neon double, quad or MVE vector register. */
7224 OP_oRNDQ, /* Optional Neon double or quad precision register */
7225 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
7226 OP_oRNSDQMQ, /* Optional single, double or quad register or MVE vector
7227 register. */
7228 OP_oRNSDMQ, /* Optional single, double register or MVE vector
7229 register. */
7230 OP_oSHll, /* LSL immediate */
7231 OP_oSHar, /* ASR immediate */
7232 OP_oSHllar, /* LSL or ASR immediate */
7233 OP_oROR, /* ROR 0/8/16/24 */
7234 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
7235
7236 OP_oRMQRZ, /* optional MVE vector or ARM register including ZR. */
7237
7238 /* Some pre-defined mixed (ARM/THUMB) operands. */
7239 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
7240 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
7241 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
7242
7243 OP_FIRST_OPTIONAL = OP_oI7b
7244 };
7245
7246 /* Generic instruction operand parser. This does no encoding and no
7247 semantic validation; it merely squirrels values away in the inst
7248 structure. Returns SUCCESS or FAIL depending on whether the
7249 specified grammar matched. */
7250 static int
7251 parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
7252 {
7253 unsigned const int *upat = pattern;
7254 char *backtrack_pos = 0;
7255 const char *backtrack_error = 0;
7256 int i, val = 0, backtrack_index = 0;
7257 enum arm_reg_type rtype;
7258 parse_operand_result result;
7259 unsigned int op_parse_code;
7260 bfd_boolean partial_match;
7261
7262 #define po_char_or_fail(chr) \
7263 do \
7264 { \
7265 if (skip_past_char (&str, chr) == FAIL) \
7266 goto bad_args; \
7267 } \
7268 while (0)
7269
7270 #define po_reg_or_fail(regtype) \
7271 do \
7272 { \
7273 val = arm_typed_reg_parse (& str, regtype, & rtype, \
7274 & inst.operands[i].vectype); \
7275 if (val == FAIL) \
7276 { \
7277 first_error (_(reg_expected_msgs[regtype])); \
7278 goto failure; \
7279 } \
7280 inst.operands[i].reg = val; \
7281 inst.operands[i].isreg = 1; \
7282 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
7283 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
7284 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
7285 || rtype == REG_TYPE_VFD \
7286 || rtype == REG_TYPE_NQ); \
7287 inst.operands[i].iszr = (rtype == REG_TYPE_ZR); \
7288 } \
7289 while (0)
7290
7291 #define po_reg_or_goto(regtype, label) \
7292 do \
7293 { \
7294 val = arm_typed_reg_parse (& str, regtype, & rtype, \
7295 & inst.operands[i].vectype); \
7296 if (val == FAIL) \
7297 goto label; \
7298 \
7299 inst.operands[i].reg = val; \
7300 inst.operands[i].isreg = 1; \
7301 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
7302 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
7303 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
7304 || rtype == REG_TYPE_VFD \
7305 || rtype == REG_TYPE_NQ); \
7306 inst.operands[i].iszr = (rtype == REG_TYPE_ZR); \
7307 } \
7308 while (0)
7309
7310 #define po_imm_or_fail(min, max, popt) \
7311 do \
7312 { \
7313 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
7314 goto failure; \
7315 inst.operands[i].imm = val; \
7316 } \
7317 while (0)
7318
7319 #define po_imm1_or_imm2_or_fail(imm1, imm2, popt) \
7320 do \
7321 { \
7322 expressionS exp; \
7323 my_get_expression (&exp, &str, popt); \
7324 if (exp.X_op != O_constant) \
7325 { \
7326 inst.error = _("constant expression required"); \
7327 goto failure; \
7328 } \
7329 if (exp.X_add_number != imm1 && exp.X_add_number != imm2) \
7330 { \
7331 inst.error = _("immediate value 48 or 64 expected"); \
7332 goto failure; \
7333 } \
7334 inst.operands[i].imm = exp.X_add_number; \
7335 } \
7336 while (0)
7337
7338 #define po_scalar_or_goto(elsz, label, reg_type) \
7339 do \
7340 { \
7341 val = parse_scalar (& str, elsz, & inst.operands[i].vectype, \
7342 reg_type); \
7343 if (val == FAIL) \
7344 goto label; \
7345 inst.operands[i].reg = val; \
7346 inst.operands[i].isscalar = 1; \
7347 } \
7348 while (0)
7349
7350 #define po_misc_or_fail(expr) \
7351 do \
7352 { \
7353 if (expr) \
7354 goto failure; \
7355 } \
7356 while (0)
7357
7358 #define po_misc_or_fail_no_backtrack(expr) \
7359 do \
7360 { \
7361 result = expr; \
7362 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
7363 backtrack_pos = 0; \
7364 if (result != PARSE_OPERAND_SUCCESS) \
7365 goto failure; \
7366 } \
7367 while (0)
7368
7369 #define po_barrier_or_imm(str) \
7370 do \
7371 { \
7372 val = parse_barrier (&str); \
7373 if (val == FAIL && ! ISALPHA (*str)) \
7374 goto immediate; \
7375 if (val == FAIL \
7376 /* ISB can only take SY as an option. */ \
7377 || ((inst.instruction & 0xf0) == 0x60 \
7378 && val != 0xf)) \
7379 { \
7380 inst.error = _("invalid barrier type"); \
7381 backtrack_pos = 0; \
7382 goto failure; \
7383 } \
7384 } \
7385 while (0)
7386
7387 skip_whitespace (str);
7388
7389 for (i = 0; upat[i] != OP_stop; i++)
7390 {
7391 op_parse_code = upat[i];
7392 if (op_parse_code >= 1<<16)
7393 op_parse_code = thumb ? (op_parse_code >> 16)
7394 : (op_parse_code & ((1<<16)-1));
7395
7396 if (op_parse_code >= OP_FIRST_OPTIONAL)
7397 {
7398 /* Remember where we are in case we need to backtrack. */
7399 backtrack_pos = str;
7400 backtrack_error = inst.error;
7401 backtrack_index = i;
7402 }
7403
7404 if (i > 0 && (i > 1 || inst.operands[0].present))
7405 po_char_or_fail (',');
7406
7407 switch (op_parse_code)
7408 {
7409 /* Registers */
7410 case OP_oRRnpc:
7411 case OP_oRRnpcsp:
7412 case OP_RRnpc:
7413 case OP_RRnpcsp:
7414 case OP_oRR:
7415 case OP_RRe:
7416 case OP_RRo:
7417 case OP_LR:
7418 case OP_oLR:
7419 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
7420 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
7421 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
7422 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
7423 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
7424 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
7425 case OP_oRND:
7426 case OP_RNSDMQR:
7427 po_reg_or_goto (REG_TYPE_VFS, try_rndmqr);
7428 break;
7429 try_rndmqr:
7430 case OP_RNDMQR:
7431 po_reg_or_goto (REG_TYPE_RN, try_rndmq);
7432 break;
7433 try_rndmq:
7434 case OP_RNDMQ:
7435 po_reg_or_goto (REG_TYPE_MQ, try_rnd);
7436 break;
7437 try_rnd:
7438 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
7439 case OP_RVC:
7440 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
7441 break;
7442 /* Also accept generic coprocessor regs for unknown registers. */
7443 coproc_reg:
7444 po_reg_or_goto (REG_TYPE_CN, vpr_po);
7445 break;
7446 /* Also accept P0 or p0 for VPR.P0. Since P0 is already an
7447 existing register with a value of 0, this seems like the
7448 best way to parse P0. */
7449 vpr_po:
7450 if (strncasecmp (str, "P0", 2) == 0)
7451 {
7452 str += 2;
7453 inst.operands[i].isreg = 1;
7454 inst.operands[i].reg = 13;
7455 }
7456 else
7457 goto failure;
7458 break;
7459 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
7460 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
7461 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
7462 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
7463 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
7464 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
7465 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
7466 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
7467 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
7468 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
7469 case OP_oRNQ:
7470 case OP_RNQMQ:
7471 po_reg_or_goto (REG_TYPE_MQ, try_nq);
7472 break;
7473 try_nq:
7474 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
7475 case OP_RNSD: po_reg_or_fail (REG_TYPE_NSD); break;
7476 case OP_RNDQMQR:
7477 po_reg_or_goto (REG_TYPE_RN, try_rndqmq);
7478 break;
7479 try_rndqmq:
7480 case OP_oRNDQMQ:
7481 case OP_RNDQMQ:
7482 po_reg_or_goto (REG_TYPE_MQ, try_rndq);
7483 break;
7484 try_rndq:
7485 case OP_oRNDQ:
7486 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
7487 case OP_RVSDMQ:
7488 po_reg_or_goto (REG_TYPE_MQ, try_rvsd);
7489 break;
7490 try_rvsd:
7491 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
7492 case OP_RVSD_COND:
7493 po_reg_or_goto (REG_TYPE_VFSD, try_cond);
7494 break;
7495 case OP_oRNSDMQ:
7496 case OP_RNSDMQ:
7497 po_reg_or_goto (REG_TYPE_NSD, try_mq2);
7498 break;
7499 try_mq2:
7500 po_reg_or_fail (REG_TYPE_MQ);
7501 break;
7502 case OP_oRNSDQ:
7503 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
7504 case OP_RNSDQMQR:
7505 po_reg_or_goto (REG_TYPE_RN, try_mq);
7506 break;
7507 try_mq:
7508 case OP_oRNSDQMQ:
7509 case OP_RNSDQMQ:
7510 po_reg_or_goto (REG_TYPE_MQ, try_nsdq2);
7511 break;
7512 try_nsdq2:
7513 po_reg_or_fail (REG_TYPE_NSDQ);
7514 inst.error = 0;
7515 break;
7516 case OP_RMQRR:
7517 po_reg_or_goto (REG_TYPE_RN, try_rmq);
7518 break;
7519 try_rmq:
7520 case OP_RMQ:
7521 po_reg_or_fail (REG_TYPE_MQ);
7522 break;
7523 /* Neon scalar. Using an element size of 8 means that some invalid
7524 scalars are accepted here, so deal with those in later code. */
7525 case OP_RNSC: po_scalar_or_goto (8, failure, REG_TYPE_VFD); break;
7526
7527 case OP_RNDQ_I0:
7528 {
7529 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
7530 break;
7531 try_imm0:
7532 po_imm_or_fail (0, 0, TRUE);
7533 }
7534 break;
7535
7536 case OP_RVSD_I0:
7537 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
7538 break;
7539
7540 case OP_RSVDMQ_FI0:
7541 po_reg_or_goto (REG_TYPE_MQ, try_rsvd_fi0);
7542 break;
7543 try_rsvd_fi0:
7544 case OP_RSVD_FI0:
7545 {
7546 po_reg_or_goto (REG_TYPE_VFSD, try_ifimm0);
7547 break;
7548 try_ifimm0:
7549 if (parse_ifimm_zero (&str))
7550 inst.operands[i].imm = 0;
7551 else
7552 {
7553 inst.error
7554 = _("only floating point zero is allowed as immediate value");
7555 goto failure;
7556 }
7557 }
7558 break;
7559
7560 case OP_RR_RNSC:
7561 {
7562 po_scalar_or_goto (8, try_rr, REG_TYPE_VFD);
7563 break;
7564 try_rr:
7565 po_reg_or_fail (REG_TYPE_RN);
7566 }
7567 break;
7568
7569 case OP_RNSDQ_RNSC_MQ_RR:
7570 po_reg_or_goto (REG_TYPE_RN, try_rnsdq_rnsc_mq);
7571 break;
7572 try_rnsdq_rnsc_mq:
7573 case OP_RNSDQ_RNSC_MQ:
7574 po_reg_or_goto (REG_TYPE_MQ, try_rnsdq_rnsc);
7575 break;
7576 try_rnsdq_rnsc:
7577 case OP_RNSDQ_RNSC:
7578 {
7579 po_scalar_or_goto (8, try_nsdq, REG_TYPE_VFD);
7580 inst.error = 0;
7581 break;
7582 try_nsdq:
7583 po_reg_or_fail (REG_TYPE_NSDQ);
7584 inst.error = 0;
7585 }
7586 break;
7587
7588 case OP_RNSD_RNSC:
7589 {
7590 po_scalar_or_goto (8, try_s_scalar, REG_TYPE_VFD);
7591 break;
7592 try_s_scalar:
7593 po_scalar_or_goto (4, try_nsd, REG_TYPE_VFS);
7594 break;
7595 try_nsd:
7596 po_reg_or_fail (REG_TYPE_NSD);
7597 }
7598 break;
7599
7600 case OP_RNDQMQ_RNSC_RR:
7601 po_reg_or_goto (REG_TYPE_MQ, try_rndq_rnsc_rr);
7602 break;
7603 try_rndq_rnsc_rr:
7604 case OP_RNDQ_RNSC_RR:
7605 po_reg_or_goto (REG_TYPE_RN, try_rndq_rnsc);
7606 break;
7607 case OP_RNDQMQ_RNSC:
7608 po_reg_or_goto (REG_TYPE_MQ, try_rndq_rnsc);
7609 break;
7610 try_rndq_rnsc:
7611 case OP_RNDQ_RNSC:
7612 {
7613 po_scalar_or_goto (8, try_ndq, REG_TYPE_VFD);
7614 break;
7615 try_ndq:
7616 po_reg_or_fail (REG_TYPE_NDQ);
7617 }
7618 break;
7619
7620 case OP_RND_RNSC:
7621 {
7622 po_scalar_or_goto (8, try_vfd, REG_TYPE_VFD);
7623 break;
7624 try_vfd:
7625 po_reg_or_fail (REG_TYPE_VFD);
7626 }
7627 break;
7628
7629 case OP_VMOV:
7630 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
7631 not careful then bad things might happen. */
7632 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
7633 break;
7634
7635 case OP_RNDQMQ_Ibig:
7636 po_reg_or_goto (REG_TYPE_MQ, try_rndq_ibig);
7637 break;
7638 try_rndq_ibig:
7639 case OP_RNDQ_Ibig:
7640 {
7641 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
7642 break;
7643 try_immbig:
7644 /* There's a possibility of getting a 64-bit immediate here, so
7645 we need special handling. */
7646 if (parse_big_immediate (&str, i, NULL, /*allow_symbol_p=*/FALSE)
7647 == FAIL)
7648 {
7649 inst.error = _("immediate value is out of range");
7650 goto failure;
7651 }
7652 }
7653 break;
7654
7655 case OP_RNDQMQ_I63b_RR:
7656 po_reg_or_goto (REG_TYPE_MQ, try_rndq_i63b_rr);
7657 break;
7658 try_rndq_i63b_rr:
7659 po_reg_or_goto (REG_TYPE_RN, try_rndq_i63b);
7660 break;
7661 try_rndq_i63b:
7662 case OP_RNDQ_I63b:
7663 {
7664 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
7665 break;
7666 try_shimm:
7667 po_imm_or_fail (0, 63, TRUE);
7668 }
7669 break;
7670
7671 case OP_RRnpcb:
7672 po_char_or_fail ('[');
7673 po_reg_or_fail (REG_TYPE_RN);
7674 po_char_or_fail (']');
7675 break;
7676
7677 case OP_RRnpctw:
7678 case OP_RRw:
7679 case OP_oRRw:
7680 po_reg_or_fail (REG_TYPE_RN);
7681 if (skip_past_char (&str, '!') == SUCCESS)
7682 inst.operands[i].writeback = 1;
7683 break;
7684
7685 /* Immediates */
7686 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
7687 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
7688 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
7689 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
7690 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
7691 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
7692 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
7693 case OP_I48_I64: po_imm1_or_imm2_or_fail (48, 64, FALSE); break;
7694 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
7695 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
7696 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
7697 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
7698 case OP_I127: po_imm_or_fail ( 0, 127, FALSE); break;
7699 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
7700 case OP_I511: po_imm_or_fail ( 0, 511, FALSE); break;
7701 case OP_I4095: po_imm_or_fail ( 0, 4095, FALSE); break;
7702 case OP_I8191: po_imm_or_fail ( 0, 8191, FALSE); break;
7703 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
7704 case OP_oI7b:
7705 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
7706 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
7707 case OP_oI31b:
7708 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
7709 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
7710 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
7711 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
7712
7713 /* Immediate variants */
7714 case OP_oI255c:
7715 po_char_or_fail ('{');
7716 po_imm_or_fail (0, 255, TRUE);
7717 po_char_or_fail ('}');
7718 break;
7719
7720 case OP_I31w:
7721 /* The expression parser chokes on a trailing !, so we have
7722 to find it first and zap it. */
7723 {
7724 char *s = str;
7725 while (*s && *s != ',')
7726 s++;
7727 if (s[-1] == '!')
7728 {
7729 s[-1] = '\0';
7730 inst.operands[i].writeback = 1;
7731 }
7732 po_imm_or_fail (0, 31, TRUE);
7733 if (str == s - 1)
7734 str = s;
7735 }
7736 break;
7737
7738 /* Expressions */
7739 case OP_EXPi: EXPi:
7740 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7741 GE_OPT_PREFIX));
7742 break;
7743
7744 case OP_EXP:
7745 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7746 GE_NO_PREFIX));
7747 break;
7748
7749 case OP_EXPr: EXPr:
7750 po_misc_or_fail (my_get_expression (&inst.relocs[0].exp, &str,
7751 GE_NO_PREFIX));
7752 if (inst.relocs[0].exp.X_op == O_symbol)
7753 {
7754 val = parse_reloc (&str);
7755 if (val == -1)
7756 {
7757 inst.error = _("unrecognized relocation suffix");
7758 goto failure;
7759 }
7760 else if (val != BFD_RELOC_UNUSED)
7761 {
7762 inst.operands[i].imm = val;
7763 inst.operands[i].hasreloc = 1;
7764 }
7765 }
7766 break;
7767
7768 case OP_EXPs:
7769 po_misc_or_fail (my_get_expression (&inst.relocs[i].exp, &str,
7770 GE_NO_PREFIX));
7771 if (inst.relocs[i].exp.X_op == O_symbol)
7772 {
7773 inst.operands[i].hasreloc = 1;
7774 }
7775 else if (inst.relocs[i].exp.X_op == O_constant)
7776 {
7777 inst.operands[i].imm = inst.relocs[i].exp.X_add_number;
7778 inst.operands[i].hasreloc = 0;
7779 }
7780 break;
7781
7782 /* Operand for MOVW or MOVT. */
7783 case OP_HALF:
7784 po_misc_or_fail (parse_half (&str));
7785 break;
7786
7787 /* Register or expression. */
7788 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
7789 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
7790
7791 /* Register or immediate. */
7792 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
7793 I0: po_imm_or_fail (0, 0, FALSE); break;
7794
7795 case OP_RRnpcsp_I32: po_reg_or_goto (REG_TYPE_RN, I32); break;
7796 I32: po_imm_or_fail (1, 32, FALSE); break;
7797
7798 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
7799 IF:
7800 if (!is_immediate_prefix (*str))
7801 goto bad_args;
7802 str++;
7803 val = parse_fpa_immediate (&str);
7804 if (val == FAIL)
7805 goto failure;
7806 /* FPA immediates are encoded as registers 8-15.
7807 parse_fpa_immediate has already applied the offset. */
7808 inst.operands[i].reg = val;
7809 inst.operands[i].isreg = 1;
7810 break;
7811
7812 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
7813 I32z: po_imm_or_fail (0, 32, FALSE); break;
7814
7815 /* Two kinds of register. */
7816 case OP_RIWR_RIWC:
7817 {
7818 struct reg_entry *rege = arm_reg_parse_multi (&str);
7819 if (!rege
7820 || (rege->type != REG_TYPE_MMXWR
7821 && rege->type != REG_TYPE_MMXWC
7822 && rege->type != REG_TYPE_MMXWCG))
7823 {
7824 inst.error = _("iWMMXt data or control register expected");
7825 goto failure;
7826 }
7827 inst.operands[i].reg = rege->number;
7828 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
7829 }
7830 break;
7831
7832 case OP_RIWC_RIWG:
7833 {
7834 struct reg_entry *rege = arm_reg_parse_multi (&str);
7835 if (!rege
7836 || (rege->type != REG_TYPE_MMXWC
7837 && rege->type != REG_TYPE_MMXWCG))
7838 {
7839 inst.error = _("iWMMXt control register expected");
7840 goto failure;
7841 }
7842 inst.operands[i].reg = rege->number;
7843 inst.operands[i].isreg = 1;
7844 }
7845 break;
7846
7847 /* Misc */
7848 case OP_CPSF: val = parse_cps_flags (&str); break;
7849 case OP_ENDI: val = parse_endian_specifier (&str); break;
7850 case OP_oROR: val = parse_ror (&str); break;
7851 try_cond:
7852 case OP_COND: val = parse_cond (&str); break;
7853 case OP_oBARRIER_I15:
7854 po_barrier_or_imm (str); break;
7855 immediate:
7856 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
7857 goto failure;
7858 break;
7859
7860 case OP_wPSR:
7861 case OP_rPSR:
7862 po_reg_or_goto (REG_TYPE_RNB, try_psr);
7863 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
7864 {
7865 inst.error = _("Banked registers are not available with this "
7866 "architecture.");
7867 goto failure;
7868 }
7869 break;
7870 try_psr:
7871 val = parse_psr (&str, op_parse_code == OP_wPSR);
7872 break;
7873
7874 case OP_VLDR:
7875 po_reg_or_goto (REG_TYPE_VFSD, try_sysreg);
7876 break;
7877 try_sysreg:
7878 val = parse_sys_vldr_vstr (&str);
7879 break;
7880
7881 case OP_APSR_RR:
7882 po_reg_or_goto (REG_TYPE_RN, try_apsr);
7883 break;
7884 try_apsr:
7885 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
7886 instruction). */
7887 if (strncasecmp (str, "APSR_", 5) == 0)
7888 {
7889 unsigned found = 0;
7890 str += 5;
7891 while (found < 15)
7892 switch (*str++)
7893 {
7894 case 'c': found = (found & 1) ? 16 : found | 1; break;
7895 case 'n': found = (found & 2) ? 16 : found | 2; break;
7896 case 'z': found = (found & 4) ? 16 : found | 4; break;
7897 case 'v': found = (found & 8) ? 16 : found | 8; break;
7898 default: found = 16;
7899 }
7900 if (found != 15)
7901 goto failure;
7902 inst.operands[i].isvec = 1;
7903 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
7904 inst.operands[i].reg = REG_PC;
7905 }
7906 else
7907 goto failure;
7908 break;
7909
7910 case OP_TB:
7911 po_misc_or_fail (parse_tb (&str));
7912 break;
7913
7914 /* Register lists. */
7915 case OP_REGLST:
7916 val = parse_reg_list (&str, REGLIST_RN);
7917 if (*str == '^')
7918 {
7919 inst.operands[i].writeback = 1;
7920 str++;
7921 }
7922 break;
7923
7924 case OP_CLRMLST:
7925 val = parse_reg_list (&str, REGLIST_CLRM);
7926 break;
7927
7928 case OP_VRSLST:
7929 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S,
7930 &partial_match);
7931 break;
7932
7933 case OP_VRDLST:
7934 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D,
7935 &partial_match);
7936 break;
7937
7938 case OP_VRSDLST:
7939 /* Allow Q registers too. */
7940 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7941 REGLIST_NEON_D, &partial_match);
7942 if (val == FAIL)
7943 {
7944 inst.error = NULL;
7945 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7946 REGLIST_VFP_S, &partial_match);
7947 inst.operands[i].issingle = 1;
7948 }
7949 break;
7950
7951 case OP_VRSDVLST:
7952 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7953 REGLIST_VFP_D_VPR, &partial_match);
7954 if (val == FAIL && !partial_match)
7955 {
7956 inst.error = NULL;
7957 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7958 REGLIST_VFP_S_VPR, &partial_match);
7959 inst.operands[i].issingle = 1;
7960 }
7961 break;
7962
7963 case OP_NRDLST:
7964 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7965 REGLIST_NEON_D, &partial_match);
7966 break;
7967
7968 case OP_MSTRLST4:
7969 case OP_MSTRLST2:
7970 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7971 1, &inst.operands[i].vectype);
7972 if (val != (((op_parse_code == OP_MSTRLST2) ? 3 : 7) << 5 | 0xe))
7973 goto failure;
7974 break;
7975 case OP_NSTRLST:
7976 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7977 0, &inst.operands[i].vectype);
7978 break;
7979
7980 /* Addressing modes */
7981 case OP_ADDRMVE:
7982 po_misc_or_fail (parse_address_group_reloc (&str, i, GROUP_MVE));
7983 break;
7984
7985 case OP_ADDR:
7986 po_misc_or_fail (parse_address (&str, i));
7987 break;
7988
7989 case OP_ADDRGLDR:
7990 po_misc_or_fail_no_backtrack (
7991 parse_address_group_reloc (&str, i, GROUP_LDR));
7992 break;
7993
7994 case OP_ADDRGLDRS:
7995 po_misc_or_fail_no_backtrack (
7996 parse_address_group_reloc (&str, i, GROUP_LDRS));
7997 break;
7998
7999 case OP_ADDRGLDC:
8000 po_misc_or_fail_no_backtrack (
8001 parse_address_group_reloc (&str, i, GROUP_LDC));
8002 break;
8003
8004 case OP_SH:
8005 po_misc_or_fail (parse_shifter_operand (&str, i));
8006 break;
8007
8008 case OP_SHG:
8009 po_misc_or_fail_no_backtrack (
8010 parse_shifter_operand_group_reloc (&str, i));
8011 break;
8012
8013 case OP_oSHll:
8014 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
8015 break;
8016
8017 case OP_oSHar:
8018 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
8019 break;
8020
8021 case OP_oSHllar:
8022 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
8023 break;
8024
8025 case OP_RMQRZ:
8026 case OP_oRMQRZ:
8027 po_reg_or_goto (REG_TYPE_MQ, try_rr_zr);
8028 break;
8029
8030 case OP_RR_ZR:
8031 try_rr_zr:
8032 po_reg_or_goto (REG_TYPE_RN, ZR);
8033 break;
8034 ZR:
8035 po_reg_or_fail (REG_TYPE_ZR);
8036 break;
8037
8038 default:
8039 as_fatal (_("unhandled operand code %d"), op_parse_code);
8040 }
8041
8042 /* Various value-based sanity checks and shared operations. We
8043 do not signal immediate failures for the register constraints;
8044 this allows a syntax error to take precedence. */
8045 switch (op_parse_code)
8046 {
8047 case OP_oRRnpc:
8048 case OP_RRnpc:
8049 case OP_RRnpcb:
8050 case OP_RRw:
8051 case OP_oRRw:
8052 case OP_RRnpc_I0:
8053 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
8054 inst.error = BAD_PC;
8055 break;
8056
8057 case OP_oRRnpcsp:
8058 case OP_RRnpcsp:
8059 case OP_RRnpcsp_I32:
8060 if (inst.operands[i].isreg)
8061 {
8062 if (inst.operands[i].reg == REG_PC)
8063 inst.error = BAD_PC;
8064 else if (inst.operands[i].reg == REG_SP
8065 /* The restriction on Rd/Rt/Rt2 on Thumb mode has been
8066 relaxed since ARMv8-A. */
8067 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
8068 {
8069 gas_assert (thumb);
8070 inst.error = BAD_SP;
8071 }
8072 }
8073 break;
8074
8075 case OP_RRnpctw:
8076 if (inst.operands[i].isreg
8077 && inst.operands[i].reg == REG_PC
8078 && (inst.operands[i].writeback || thumb))
8079 inst.error = BAD_PC;
8080 break;
8081
8082 case OP_RVSD_COND:
8083 case OP_VLDR:
8084 if (inst.operands[i].isreg)
8085 break;
8086 /* fall through. */
8087
8088 case OP_CPSF:
8089 case OP_ENDI:
8090 case OP_oROR:
8091 case OP_wPSR:
8092 case OP_rPSR:
8093 case OP_COND:
8094 case OP_oBARRIER_I15:
8095 case OP_REGLST:
8096 case OP_CLRMLST:
8097 case OP_VRSLST:
8098 case OP_VRDLST:
8099 case OP_VRSDLST:
8100 case OP_VRSDVLST:
8101 case OP_NRDLST:
8102 case OP_NSTRLST:
8103 case OP_MSTRLST2:
8104 case OP_MSTRLST4:
8105 if (val == FAIL)
8106 goto failure;
8107 inst.operands[i].imm = val;
8108 break;
8109
8110 case OP_LR:
8111 case OP_oLR:
8112 if (inst.operands[i].reg != REG_LR)
8113 inst.error = _("operand must be LR register");
8114 break;
8115
8116 case OP_RMQRZ:
8117 case OP_oRMQRZ:
8118 case OP_RR_ZR:
8119 if (!inst.operands[i].iszr && inst.operands[i].reg == REG_PC)
8120 inst.error = BAD_PC;
8121 break;
8122
8123 case OP_RRe:
8124 if (inst.operands[i].isreg
8125 && (inst.operands[i].reg & 0x00000001) != 0)
8126 inst.error = BAD_ODD;
8127 break;
8128
8129 case OP_RRo:
8130 if (inst.operands[i].isreg)
8131 {
8132 if ((inst.operands[i].reg & 0x00000001) != 1)
8133 inst.error = BAD_EVEN;
8134 else if (inst.operands[i].reg == REG_SP)
8135 as_tsktsk (MVE_BAD_SP);
8136 else if (inst.operands[i].reg == REG_PC)
8137 inst.error = BAD_PC;
8138 }
8139 break;
8140
8141 default:
8142 break;
8143 }
8144
8145 /* If we get here, this operand was successfully parsed. */
8146 inst.operands[i].present = 1;
8147 continue;
8148
8149 bad_args:
8150 inst.error = BAD_ARGS;
8151
8152 failure:
8153 if (!backtrack_pos)
8154 {
8155 /* The parse routine should already have set inst.error, but set a
8156 default here just in case. */
8157 if (!inst.error)
8158 inst.error = BAD_SYNTAX;
8159 return FAIL;
8160 }
8161
8162 /* Do not backtrack over a trailing optional argument that
8163 absorbed some text. We will only fail again, with the
8164 'garbage following instruction' error message, which is
8165 probably less helpful than the current one. */
8166 if (backtrack_index == i && backtrack_pos != str
8167 && upat[i+1] == OP_stop)
8168 {
8169 if (!inst.error)
8170 inst.error = BAD_SYNTAX;
8171 return FAIL;
8172 }
8173
8174 /* Try again, skipping the optional argument at backtrack_pos. */
8175 str = backtrack_pos;
8176 inst.error = backtrack_error;
8177 inst.operands[backtrack_index].present = 0;
8178 i = backtrack_index;
8179 backtrack_pos = 0;
8180 }
8181
8182 /* Check that we have parsed all the arguments. */
8183 if (*str != '\0' && !inst.error)
8184 inst.error = _("garbage following instruction");
8185
8186 return inst.error ? FAIL : SUCCESS;
8187 }
8188
8189 #undef po_char_or_fail
8190 #undef po_reg_or_fail
8191 #undef po_reg_or_goto
8192 #undef po_imm_or_fail
8193 #undef po_scalar_or_fail
8194 #undef po_barrier_or_imm
8195
8196 /* Shorthand macro for instruction encoding functions issuing errors. */
8197 #define constraint(expr, err) \
8198 do \
8199 { \
8200 if (expr) \
8201 { \
8202 inst.error = err; \
8203 return; \
8204 } \
8205 } \
8206 while (0)
8207
8208 /* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
8209 instructions are unpredictable if these registers are used. This
8210 is the BadReg predicate in ARM's Thumb-2 documentation.
8211
8212 Before ARMv8-A, REG_PC and REG_SP were not allowed in quite a few
8213 places, while the restriction on REG_SP was relaxed since ARMv8-A. */
8214 #define reject_bad_reg(reg) \
8215 do \
8216 if (reg == REG_PC) \
8217 { \
8218 inst.error = BAD_PC; \
8219 return; \
8220 } \
8221 else if (reg == REG_SP \
8222 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8)) \
8223 { \
8224 inst.error = BAD_SP; \
8225 return; \
8226 } \
8227 while (0)
8228
8229 /* If REG is R13 (the stack pointer), warn that its use is
8230 deprecated. */
8231 #define warn_deprecated_sp(reg) \
8232 do \
8233 if (warn_on_deprecated && reg == REG_SP) \
8234 as_tsktsk (_("use of r13 is deprecated")); \
8235 while (0)
8236
8237 /* Functions for operand encoding. ARM, then Thumb. */
8238
8239 #define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
8240
8241 /* If the current inst is scalar ARMv8.2 fp16 instruction, do special encoding.
8242
8243 The only binary encoding difference is the Coprocessor number. Coprocessor
8244 9 is used for half-precision calculations or conversions. The format of the
8245 instruction is the same as the equivalent Coprocessor 10 instruction that
8246 exists for Single-Precision operation. */
8247
8248 static void
8249 do_scalar_fp16_v82_encode (void)
8250 {
8251 if (inst.cond < COND_ALWAYS)
8252 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
8253 " the behaviour is UNPREDICTABLE"));
8254 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
8255 _(BAD_FP16));
8256
8257 inst.instruction = (inst.instruction & 0xfffff0ff) | 0x900;
8258 mark_feature_used (&arm_ext_fp16);
8259 }
8260
8261 /* If VAL can be encoded in the immediate field of an ARM instruction,
8262 return the encoded form. Otherwise, return FAIL. */
8263
8264 static unsigned int
8265 encode_arm_immediate (unsigned int val)
8266 {
8267 unsigned int a, i;
8268
8269 if (val <= 0xff)
8270 return val;
8271
8272 for (i = 2; i < 32; i += 2)
8273 if ((a = rotate_left (val, i)) <= 0xff)
8274 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
8275
8276 return FAIL;
8277 }
8278
8279 /* If VAL can be encoded in the immediate field of a Thumb32 instruction,
8280 return the encoded form. Otherwise, return FAIL. */
8281 static unsigned int
8282 encode_thumb32_immediate (unsigned int val)
8283 {
8284 unsigned int a, i;
8285
8286 if (val <= 0xff)
8287 return val;
8288
8289 for (i = 1; i <= 24; i++)
8290 {
8291 a = val >> i;
8292 if ((val & ~(0xff << i)) == 0)
8293 return ((val >> i) & 0x7f) | ((32 - i) << 7);
8294 }
8295
8296 a = val & 0xff;
8297 if (val == ((a << 16) | a))
8298 return 0x100 | a;
8299 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
8300 return 0x300 | a;
8301
8302 a = val & 0xff00;
8303 if (val == ((a << 16) | a))
8304 return 0x200 | (a >> 8);
8305
8306 return FAIL;
8307 }
8308 /* Encode a VFP SP or DP register number into inst.instruction. */
8309
8310 static void
8311 encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
8312 {
8313 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
8314 && reg > 15)
8315 {
8316 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
8317 {
8318 if (thumb_mode)
8319 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
8320 fpu_vfp_ext_d32);
8321 else
8322 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
8323 fpu_vfp_ext_d32);
8324 }
8325 else
8326 {
8327 first_error (_("D register out of range for selected VFP version"));
8328 return;
8329 }
8330 }
8331
8332 switch (pos)
8333 {
8334 case VFP_REG_Sd:
8335 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
8336 break;
8337
8338 case VFP_REG_Sn:
8339 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
8340 break;
8341
8342 case VFP_REG_Sm:
8343 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
8344 break;
8345
8346 case VFP_REG_Dd:
8347 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
8348 break;
8349
8350 case VFP_REG_Dn:
8351 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
8352 break;
8353
8354 case VFP_REG_Dm:
8355 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
8356 break;
8357
8358 default:
8359 abort ();
8360 }
8361 }
8362
8363 /* Encode a <shift> in an ARM-format instruction. The immediate,
8364 if any, is handled by md_apply_fix. */
8365 static void
8366 encode_arm_shift (int i)
8367 {
8368 /* register-shifted register. */
8369 if (inst.operands[i].immisreg)
8370 {
8371 int op_index;
8372 for (op_index = 0; op_index <= i; ++op_index)
8373 {
8374 /* Check the operand only when it's presented. In pre-UAL syntax,
8375 if the destination register is the same as the first operand, two
8376 register form of the instruction can be used. */
8377 if (inst.operands[op_index].present && inst.operands[op_index].isreg
8378 && inst.operands[op_index].reg == REG_PC)
8379 as_warn (UNPRED_REG ("r15"));
8380 }
8381
8382 if (inst.operands[i].imm == REG_PC)
8383 as_warn (UNPRED_REG ("r15"));
8384 }
8385
8386 if (inst.operands[i].shift_kind == SHIFT_RRX)
8387 inst.instruction |= SHIFT_ROR << 5;
8388 else
8389 {
8390 inst.instruction |= inst.operands[i].shift_kind << 5;
8391 if (inst.operands[i].immisreg)
8392 {
8393 inst.instruction |= SHIFT_BY_REG;
8394 inst.instruction |= inst.operands[i].imm << 8;
8395 }
8396 else
8397 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
8398 }
8399 }
8400
8401 static void
8402 encode_arm_shifter_operand (int i)
8403 {
8404 if (inst.operands[i].isreg)
8405 {
8406 inst.instruction |= inst.operands[i].reg;
8407 encode_arm_shift (i);
8408 }
8409 else
8410 {
8411 inst.instruction |= INST_IMMEDIATE;
8412 if (inst.relocs[0].type != BFD_RELOC_ARM_IMMEDIATE)
8413 inst.instruction |= inst.operands[i].imm;
8414 }
8415 }
8416
8417 /* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
8418 static void
8419 encode_arm_addr_mode_common (int i, bfd_boolean is_t)
8420 {
8421 /* PR 14260:
8422 Generate an error if the operand is not a register. */
8423 constraint (!inst.operands[i].isreg,
8424 _("Instruction does not support =N addresses"));
8425
8426 inst.instruction |= inst.operands[i].reg << 16;
8427
8428 if (inst.operands[i].preind)
8429 {
8430 if (is_t)
8431 {
8432 inst.error = _("instruction does not accept preindexed addressing");
8433 return;
8434 }
8435 inst.instruction |= PRE_INDEX;
8436 if (inst.operands[i].writeback)
8437 inst.instruction |= WRITE_BACK;
8438
8439 }
8440 else if (inst.operands[i].postind)
8441 {
8442 gas_assert (inst.operands[i].writeback);
8443 if (is_t)
8444 inst.instruction |= WRITE_BACK;
8445 }
8446 else /* unindexed - only for coprocessor */
8447 {
8448 inst.error = _("instruction does not accept unindexed addressing");
8449 return;
8450 }
8451
8452 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
8453 && (((inst.instruction & 0x000f0000) >> 16)
8454 == ((inst.instruction & 0x0000f000) >> 12)))
8455 as_warn ((inst.instruction & LOAD_BIT)
8456 ? _("destination register same as write-back base")
8457 : _("source register same as write-back base"));
8458 }
8459
8460 /* inst.operands[i] was set up by parse_address. Encode it into an
8461 ARM-format mode 2 load or store instruction. If is_t is true,
8462 reject forms that cannot be used with a T instruction (i.e. not
8463 post-indexed). */
8464 static void
8465 encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
8466 {
8467 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
8468
8469 encode_arm_addr_mode_common (i, is_t);
8470
8471 if (inst.operands[i].immisreg)
8472 {
8473 constraint ((inst.operands[i].imm == REG_PC
8474 || (is_pc && inst.operands[i].writeback)),
8475 BAD_PC_ADDRESSING);
8476 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
8477 inst.instruction |= inst.operands[i].imm;
8478 if (!inst.operands[i].negative)
8479 inst.instruction |= INDEX_UP;
8480 if (inst.operands[i].shifted)
8481 {
8482 if (inst.operands[i].shift_kind == SHIFT_RRX)
8483 inst.instruction |= SHIFT_ROR << 5;
8484 else
8485 {
8486 inst.instruction |= inst.operands[i].shift_kind << 5;
8487 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
8488 }
8489 }
8490 }
8491 else /* immediate offset in inst.relocs[0] */
8492 {
8493 if (is_pc && !inst.relocs[0].pc_rel)
8494 {
8495 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
8496
8497 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
8498 cannot use PC in addressing.
8499 PC cannot be used in writeback addressing, either. */
8500 constraint ((is_t || inst.operands[i].writeback),
8501 BAD_PC_ADDRESSING);
8502
8503 /* Use of PC in str is deprecated for ARMv7. */
8504 if (warn_on_deprecated
8505 && !is_load
8506 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
8507 as_tsktsk (_("use of PC in this instruction is deprecated"));
8508 }
8509
8510 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
8511 {
8512 /* Prefer + for zero encoded value. */
8513 if (!inst.operands[i].negative)
8514 inst.instruction |= INDEX_UP;
8515 inst.relocs[0].type = BFD_RELOC_ARM_OFFSET_IMM;
8516 }
8517 }
8518 }
8519
8520 /* inst.operands[i] was set up by parse_address. Encode it into an
8521 ARM-format mode 3 load or store instruction. Reject forms that
8522 cannot be used with such instructions. If is_t is true, reject
8523 forms that cannot be used with a T instruction (i.e. not
8524 post-indexed). */
8525 static void
8526 encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
8527 {
8528 if (inst.operands[i].immisreg && inst.operands[i].shifted)
8529 {
8530 inst.error = _("instruction does not accept scaled register index");
8531 return;
8532 }
8533
8534 encode_arm_addr_mode_common (i, is_t);
8535
8536 if (inst.operands[i].immisreg)
8537 {
8538 constraint ((inst.operands[i].imm == REG_PC
8539 || (is_t && inst.operands[i].reg == REG_PC)),
8540 BAD_PC_ADDRESSING);
8541 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
8542 BAD_PC_WRITEBACK);
8543 inst.instruction |= inst.operands[i].imm;
8544 if (!inst.operands[i].negative)
8545 inst.instruction |= INDEX_UP;
8546 }
8547 else /* immediate offset in inst.relocs[0] */
8548 {
8549 constraint ((inst.operands[i].reg == REG_PC && !inst.relocs[0].pc_rel
8550 && inst.operands[i].writeback),
8551 BAD_PC_WRITEBACK);
8552 inst.instruction |= HWOFFSET_IMM;
8553 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
8554 {
8555 /* Prefer + for zero encoded value. */
8556 if (!inst.operands[i].negative)
8557 inst.instruction |= INDEX_UP;
8558
8559 inst.relocs[0].type = BFD_RELOC_ARM_OFFSET_IMM8;
8560 }
8561 }
8562 }
8563
8564 /* Write immediate bits [7:0] to the following locations:
8565
8566 |28/24|23 19|18 16|15 4|3 0|
8567 | 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|
8568
8569 This function is used by VMOV/VMVN/VORR/VBIC. */
8570
8571 static void
8572 neon_write_immbits (unsigned immbits)
8573 {
8574 inst.instruction |= immbits & 0xf;
8575 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
8576 inst.instruction |= ((immbits >> 7) & 0x1) << (thumb_mode ? 28 : 24);
8577 }
8578
8579 /* Invert low-order SIZE bits of XHI:XLO. */
8580
8581 static void
8582 neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
8583 {
8584 unsigned immlo = xlo ? *xlo : 0;
8585 unsigned immhi = xhi ? *xhi : 0;
8586
8587 switch (size)
8588 {
8589 case 8:
8590 immlo = (~immlo) & 0xff;
8591 break;
8592
8593 case 16:
8594 immlo = (~immlo) & 0xffff;
8595 break;
8596
8597 case 64:
8598 immhi = (~immhi) & 0xffffffff;
8599 /* fall through. */
8600
8601 case 32:
8602 immlo = (~immlo) & 0xffffffff;
8603 break;
8604
8605 default:
8606 abort ();
8607 }
8608
8609 if (xlo)
8610 *xlo = immlo;
8611
8612 if (xhi)
8613 *xhi = immhi;
8614 }
8615
8616 /* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
8617 A, B, C, D. */
8618
8619 static int
8620 neon_bits_same_in_bytes (unsigned imm)
8621 {
8622 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
8623 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
8624 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
8625 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
8626 }
8627
8628 /* For immediate of above form, return 0bABCD. */
8629
8630 static unsigned
8631 neon_squash_bits (unsigned imm)
8632 {
8633 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
8634 | ((imm & 0x01000000) >> 21);
8635 }
8636
8637 /* Compress quarter-float representation to 0b...000 abcdefgh. */
8638
8639 static unsigned
8640 neon_qfloat_bits (unsigned imm)
8641 {
8642 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
8643 }
8644
8645 /* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
8646 the instruction. *OP is passed as the initial value of the op field, and
8647 may be set to a different value depending on the constant (i.e.
8648 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
8649 MVN). If the immediate looks like a repeated pattern then also
8650 try smaller element sizes. */
8651
8652 static int
8653 neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
8654 unsigned *immbits, int *op, int size,
8655 enum neon_el_type type)
8656 {
8657 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
8658 float. */
8659 if (type == NT_float && !float_p)
8660 return FAIL;
8661
8662 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
8663 {
8664 if (size != 32 || *op == 1)
8665 return FAIL;
8666 *immbits = neon_qfloat_bits (immlo);
8667 return 0xf;
8668 }
8669
8670 if (size == 64)
8671 {
8672 if (neon_bits_same_in_bytes (immhi)
8673 && neon_bits_same_in_bytes (immlo))
8674 {
8675 if (*op == 1)
8676 return FAIL;
8677 *immbits = (neon_squash_bits (immhi) << 4)
8678 | neon_squash_bits (immlo);
8679 *op = 1;
8680 return 0xe;
8681 }
8682
8683 if (immhi != immlo)
8684 return FAIL;
8685 }
8686
8687 if (size >= 32)
8688 {
8689 if (immlo == (immlo & 0x000000ff))
8690 {
8691 *immbits = immlo;
8692 return 0x0;
8693 }
8694 else if (immlo == (immlo & 0x0000ff00))
8695 {
8696 *immbits = immlo >> 8;
8697 return 0x2;
8698 }
8699 else if (immlo == (immlo & 0x00ff0000))
8700 {
8701 *immbits = immlo >> 16;
8702 return 0x4;
8703 }
8704 else if (immlo == (immlo & 0xff000000))
8705 {
8706 *immbits = immlo >> 24;
8707 return 0x6;
8708 }
8709 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
8710 {
8711 *immbits = (immlo >> 8) & 0xff;
8712 return 0xc;
8713 }
8714 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
8715 {
8716 *immbits = (immlo >> 16) & 0xff;
8717 return 0xd;
8718 }
8719
8720 if ((immlo & 0xffff) != (immlo >> 16))
8721 return FAIL;
8722 immlo &= 0xffff;
8723 }
8724
8725 if (size >= 16)
8726 {
8727 if (immlo == (immlo & 0x000000ff))
8728 {
8729 *immbits = immlo;
8730 return 0x8;
8731 }
8732 else if (immlo == (immlo & 0x0000ff00))
8733 {
8734 *immbits = immlo >> 8;
8735 return 0xa;
8736 }
8737
8738 if ((immlo & 0xff) != (immlo >> 8))
8739 return FAIL;
8740 immlo &= 0xff;
8741 }
8742
8743 if (immlo == (immlo & 0x000000ff))
8744 {
8745 /* Don't allow MVN with 8-bit immediate. */
8746 if (*op == 1)
8747 return FAIL;
8748 *immbits = immlo;
8749 return 0xe;
8750 }
8751
8752 return FAIL;
8753 }
8754
8755 #if defined BFD_HOST_64_BIT
8756 /* Returns TRUE if double precision value V may be cast
8757 to single precision without loss of accuracy. */
8758
8759 static bfd_boolean
8760 is_double_a_single (bfd_int64_t v)
8761 {
8762 int exp = (int)((v >> 52) & 0x7FF);
8763 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
8764
8765 return (exp == 0 || exp == 0x7FF
8766 || (exp >= 1023 - 126 && exp <= 1023 + 127))
8767 && (mantissa & 0x1FFFFFFFl) == 0;
8768 }
8769
8770 /* Returns a double precision value casted to single precision
8771 (ignoring the least significant bits in exponent and mantissa). */
8772
8773 static int
8774 double_to_single (bfd_int64_t v)
8775 {
8776 int sign = (int) ((v >> 63) & 1l);
8777 int exp = (int) ((v >> 52) & 0x7FF);
8778 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
8779
8780 if (exp == 0x7FF)
8781 exp = 0xFF;
8782 else
8783 {
8784 exp = exp - 1023 + 127;
8785 if (exp >= 0xFF)
8786 {
8787 /* Infinity. */
8788 exp = 0x7F;
8789 mantissa = 0;
8790 }
8791 else if (exp < 0)
8792 {
8793 /* No denormalized numbers. */
8794 exp = 0;
8795 mantissa = 0;
8796 }
8797 }
8798 mantissa >>= 29;
8799 return (sign << 31) | (exp << 23) | mantissa;
8800 }
8801 #endif /* BFD_HOST_64_BIT */
8802
8803 enum lit_type
8804 {
8805 CONST_THUMB,
8806 CONST_ARM,
8807 CONST_VEC
8808 };
8809
8810 static void do_vfp_nsyn_opcode (const char *);
8811
8812 /* inst.relocs[0].exp describes an "=expr" load pseudo-operation.
8813 Determine whether it can be performed with a move instruction; if
8814 it can, convert inst.instruction to that move instruction and
8815 return TRUE; if it can't, convert inst.instruction to a literal-pool
8816 load and return FALSE. If this is not a valid thing to do in the
8817 current context, set inst.error and return TRUE.
8818
8819 inst.operands[i] describes the destination register. */
8820
8821 static bfd_boolean
8822 move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
8823 {
8824 unsigned long tbit;
8825 bfd_boolean thumb_p = (t == CONST_THUMB);
8826 bfd_boolean arm_p = (t == CONST_ARM);
8827
8828 if (thumb_p)
8829 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
8830 else
8831 tbit = LOAD_BIT;
8832
8833 if ((inst.instruction & tbit) == 0)
8834 {
8835 inst.error = _("invalid pseudo operation");
8836 return TRUE;
8837 }
8838
8839 if (inst.relocs[0].exp.X_op != O_constant
8840 && inst.relocs[0].exp.X_op != O_symbol
8841 && inst.relocs[0].exp.X_op != O_big)
8842 {
8843 inst.error = _("constant expression expected");
8844 return TRUE;
8845 }
8846
8847 if (inst.relocs[0].exp.X_op == O_constant
8848 || inst.relocs[0].exp.X_op == O_big)
8849 {
8850 #if defined BFD_HOST_64_BIT
8851 bfd_int64_t v;
8852 #else
8853 offsetT v;
8854 #endif
8855 if (inst.relocs[0].exp.X_op == O_big)
8856 {
8857 LITTLENUM_TYPE w[X_PRECISION];
8858 LITTLENUM_TYPE * l;
8859
8860 if (inst.relocs[0].exp.X_add_number == -1)
8861 {
8862 gen_to_words (w, X_PRECISION, E_PRECISION);
8863 l = w;
8864 /* FIXME: Should we check words w[2..5] ? */
8865 }
8866 else
8867 l = generic_bignum;
8868
8869 #if defined BFD_HOST_64_BIT
8870 v =
8871 ((((((((bfd_int64_t) l[3] & LITTLENUM_MASK)
8872 << LITTLENUM_NUMBER_OF_BITS)
8873 | ((bfd_int64_t) l[2] & LITTLENUM_MASK))
8874 << LITTLENUM_NUMBER_OF_BITS)
8875 | ((bfd_int64_t) l[1] & LITTLENUM_MASK))
8876 << LITTLENUM_NUMBER_OF_BITS)
8877 | ((bfd_int64_t) l[0] & LITTLENUM_MASK));
8878 #else
8879 v = ((l[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
8880 | (l[0] & LITTLENUM_MASK);
8881 #endif
8882 }
8883 else
8884 v = inst.relocs[0].exp.X_add_number;
8885
8886 if (!inst.operands[i].issingle)
8887 {
8888 if (thumb_p)
8889 {
8890 /* LDR should not use lead in a flag-setting instruction being
8891 chosen so we do not check whether movs can be used. */
8892
8893 if ((ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
8894 || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
8895 && inst.operands[i].reg != 13
8896 && inst.operands[i].reg != 15)
8897 {
8898 /* Check if on thumb2 it can be done with a mov.w, mvn or
8899 movw instruction. */
8900 unsigned int newimm;
8901 bfd_boolean isNegated = FALSE;
8902
8903 newimm = encode_thumb32_immediate (v);
8904 if (newimm == (unsigned int) FAIL)
8905 {
8906 newimm = encode_thumb32_immediate (~v);
8907 isNegated = TRUE;
8908 }
8909
8910 /* The number can be loaded with a mov.w or mvn
8911 instruction. */
8912 if (newimm != (unsigned int) FAIL
8913 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
8914 {
8915 inst.instruction = (0xf04f0000 /* MOV.W. */
8916 | (inst.operands[i].reg << 8));
8917 /* Change to MOVN. */
8918 inst.instruction |= (isNegated ? 0x200000 : 0);
8919 inst.instruction |= (newimm & 0x800) << 15;
8920 inst.instruction |= (newimm & 0x700) << 4;
8921 inst.instruction |= (newimm & 0x0ff);
8922 return TRUE;
8923 }
8924 /* The number can be loaded with a movw instruction. */
8925 else if ((v & ~0xFFFF) == 0
8926 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
8927 {
8928 int imm = v & 0xFFFF;
8929
8930 inst.instruction = 0xf2400000; /* MOVW. */
8931 inst.instruction |= (inst.operands[i].reg << 8);
8932 inst.instruction |= (imm & 0xf000) << 4;
8933 inst.instruction |= (imm & 0x0800) << 15;
8934 inst.instruction |= (imm & 0x0700) << 4;
8935 inst.instruction |= (imm & 0x00ff);
8936 /* In case this replacement is being done on Armv8-M
8937 Baseline we need to make sure to disable the
8938 instruction size check, as otherwise GAS will reject
8939 the use of this T32 instruction. */
8940 inst.size_req = 0;
8941 return TRUE;
8942 }
8943 }
8944 }
8945 else if (arm_p)
8946 {
8947 int value = encode_arm_immediate (v);
8948
8949 if (value != FAIL)
8950 {
8951 /* This can be done with a mov instruction. */
8952 inst.instruction &= LITERAL_MASK;
8953 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
8954 inst.instruction |= value & 0xfff;
8955 return TRUE;
8956 }
8957
8958 value = encode_arm_immediate (~ v);
8959 if (value != FAIL)
8960 {
8961 /* This can be done with a mvn instruction. */
8962 inst.instruction &= LITERAL_MASK;
8963 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
8964 inst.instruction |= value & 0xfff;
8965 return TRUE;
8966 }
8967 }
8968 else if (t == CONST_VEC && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
8969 {
8970 int op = 0;
8971 unsigned immbits = 0;
8972 unsigned immlo = inst.operands[1].imm;
8973 unsigned immhi = inst.operands[1].regisimm
8974 ? inst.operands[1].reg
8975 : inst.relocs[0].exp.X_unsigned
8976 ? 0
8977 : ((bfd_int64_t)((int) immlo)) >> 32;
8978 int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8979 &op, 64, NT_invtype);
8980
8981 if (cmode == FAIL)
8982 {
8983 neon_invert_size (&immlo, &immhi, 64);
8984 op = !op;
8985 cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8986 &op, 64, NT_invtype);
8987 }
8988
8989 if (cmode != FAIL)
8990 {
8991 inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
8992 | (1 << 23)
8993 | (cmode << 8)
8994 | (op << 5)
8995 | (1 << 4);
8996
8997 /* Fill other bits in vmov encoding for both thumb and arm. */
8998 if (thumb_mode)
8999 inst.instruction |= (0x7U << 29) | (0xF << 24);
9000 else
9001 inst.instruction |= (0xFU << 28) | (0x1 << 25);
9002 neon_write_immbits (immbits);
9003 return TRUE;
9004 }
9005 }
9006 }
9007
9008 if (t == CONST_VEC)
9009 {
9010 /* Check if vldr Rx, =constant could be optimized to vmov Rx, #constant. */
9011 if (inst.operands[i].issingle
9012 && is_quarter_float (inst.operands[1].imm)
9013 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3xd))
9014 {
9015 inst.operands[1].imm =
9016 neon_qfloat_bits (v);
9017 do_vfp_nsyn_opcode ("fconsts");
9018 return TRUE;
9019 }
9020
9021 /* If our host does not support a 64-bit type then we cannot perform
9022 the following optimization. This mean that there will be a
9023 discrepancy between the output produced by an assembler built for
9024 a 32-bit-only host and the output produced from a 64-bit host, but
9025 this cannot be helped. */
9026 #if defined BFD_HOST_64_BIT
9027 else if (!inst.operands[1].issingle
9028 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
9029 {
9030 if (is_double_a_single (v)
9031 && is_quarter_float (double_to_single (v)))
9032 {
9033 inst.operands[1].imm =
9034 neon_qfloat_bits (double_to_single (v));
9035 do_vfp_nsyn_opcode ("fconstd");
9036 return TRUE;
9037 }
9038 }
9039 #endif
9040 }
9041 }
9042
9043 if (add_to_lit_pool ((!inst.operands[i].isvec
9044 || inst.operands[i].issingle) ? 4 : 8) == FAIL)
9045 return TRUE;
9046
9047 inst.operands[1].reg = REG_PC;
9048 inst.operands[1].isreg = 1;
9049 inst.operands[1].preind = 1;
9050 inst.relocs[0].pc_rel = 1;
9051 inst.relocs[0].type = (thumb_p
9052 ? BFD_RELOC_ARM_THUMB_OFFSET
9053 : (mode_3
9054 ? BFD_RELOC_ARM_HWLITERAL
9055 : BFD_RELOC_ARM_LITERAL));
9056 return FALSE;
9057 }
9058
9059 /* inst.operands[i] was set up by parse_address. Encode it into an
9060 ARM-format instruction. Reject all forms which cannot be encoded
9061 into a coprocessor load/store instruction. If wb_ok is false,
9062 reject use of writeback; if unind_ok is false, reject use of
9063 unindexed addressing. If reloc_override is not 0, use it instead
9064 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
9065 (in which case it is preserved). */
9066
9067 static int
9068 encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
9069 {
9070 if (!inst.operands[i].isreg)
9071 {
9072 /* PR 18256 */
9073 if (! inst.operands[0].isvec)
9074 {
9075 inst.error = _("invalid co-processor operand");
9076 return FAIL;
9077 }
9078 if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
9079 return SUCCESS;
9080 }
9081
9082 inst.instruction |= inst.operands[i].reg << 16;
9083
9084 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
9085
9086 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
9087 {
9088 gas_assert (!inst.operands[i].writeback);
9089 if (!unind_ok)
9090 {
9091 inst.error = _("instruction does not support unindexed addressing");
9092 return FAIL;
9093 }
9094 inst.instruction |= inst.operands[i].imm;
9095 inst.instruction |= INDEX_UP;
9096 return SUCCESS;
9097 }
9098
9099 if (inst.operands[i].preind)
9100 inst.instruction |= PRE_INDEX;
9101
9102 if (inst.operands[i].writeback)
9103 {
9104 if (inst.operands[i].reg == REG_PC)
9105 {
9106 inst.error = _("pc may not be used with write-back");
9107 return FAIL;
9108 }
9109 if (!wb_ok)
9110 {
9111 inst.error = _("instruction does not support writeback");
9112 return FAIL;
9113 }
9114 inst.instruction |= WRITE_BACK;
9115 }
9116
9117 if (reloc_override)
9118 inst.relocs[0].type = (bfd_reloc_code_real_type) reloc_override;
9119 else if ((inst.relocs[0].type < BFD_RELOC_ARM_ALU_PC_G0_NC
9120 || inst.relocs[0].type > BFD_RELOC_ARM_LDC_SB_G2)
9121 && inst.relocs[0].type != BFD_RELOC_ARM_LDR_PC_G0)
9122 {
9123 if (thumb_mode)
9124 inst.relocs[0].type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
9125 else
9126 inst.relocs[0].type = BFD_RELOC_ARM_CP_OFF_IMM;
9127 }
9128
9129 /* Prefer + for zero encoded value. */
9130 if (!inst.operands[i].negative)
9131 inst.instruction |= INDEX_UP;
9132
9133 return SUCCESS;
9134 }
9135
9136 /* Functions for instruction encoding, sorted by sub-architecture.
9137 First some generics; their names are taken from the conventional
9138 bit positions for register arguments in ARM format instructions. */
9139
9140 static void
9141 do_noargs (void)
9142 {
9143 }
9144
9145 static void
9146 do_rd (void)
9147 {
9148 inst.instruction |= inst.operands[0].reg << 12;
9149 }
9150
9151 static void
9152 do_rn (void)
9153 {
9154 inst.instruction |= inst.operands[0].reg << 16;
9155 }
9156
9157 static void
9158 do_rd_rm (void)
9159 {
9160 inst.instruction |= inst.operands[0].reg << 12;
9161 inst.instruction |= inst.operands[1].reg;
9162 }
9163
9164 static void
9165 do_rm_rn (void)
9166 {
9167 inst.instruction |= inst.operands[0].reg;
9168 inst.instruction |= inst.operands[1].reg << 16;
9169 }
9170
9171 static void
9172 do_rd_rn (void)
9173 {
9174 inst.instruction |= inst.operands[0].reg << 12;
9175 inst.instruction |= inst.operands[1].reg << 16;
9176 }
9177
9178 static void
9179 do_rn_rd (void)
9180 {
9181 inst.instruction |= inst.operands[0].reg << 16;
9182 inst.instruction |= inst.operands[1].reg << 12;
9183 }
9184
9185 static void
9186 do_tt (void)
9187 {
9188 inst.instruction |= inst.operands[0].reg << 8;
9189 inst.instruction |= inst.operands[1].reg << 16;
9190 }
9191
9192 static bfd_boolean
9193 check_obsolete (const arm_feature_set *feature, const char *msg)
9194 {
9195 if (ARM_CPU_IS_ANY (cpu_variant))
9196 {
9197 as_tsktsk ("%s", msg);
9198 return TRUE;
9199 }
9200 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
9201 {
9202 as_bad ("%s", msg);
9203 return TRUE;
9204 }
9205
9206 return FALSE;
9207 }
9208
9209 static void
9210 do_rd_rm_rn (void)
9211 {
9212 unsigned Rn = inst.operands[2].reg;
9213 /* Enforce restrictions on SWP instruction. */
9214 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
9215 {
9216 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
9217 _("Rn must not overlap other operands"));
9218
9219 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
9220 */
9221 if (!check_obsolete (&arm_ext_v8,
9222 _("swp{b} use is obsoleted for ARMv8 and later"))
9223 && warn_on_deprecated
9224 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
9225 as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
9226 }
9227
9228 inst.instruction |= inst.operands[0].reg << 12;
9229 inst.instruction |= inst.operands[1].reg;
9230 inst.instruction |= Rn << 16;
9231 }
9232
9233 static void
9234 do_rd_rn_rm (void)
9235 {
9236 inst.instruction |= inst.operands[0].reg << 12;
9237 inst.instruction |= inst.operands[1].reg << 16;
9238 inst.instruction |= inst.operands[2].reg;
9239 }
9240
9241 static void
9242 do_rm_rd_rn (void)
9243 {
9244 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
9245 constraint (((inst.relocs[0].exp.X_op != O_constant
9246 && inst.relocs[0].exp.X_op != O_illegal)
9247 || inst.relocs[0].exp.X_add_number != 0),
9248 BAD_ADDR_MODE);
9249 inst.instruction |= inst.operands[0].reg;
9250 inst.instruction |= inst.operands[1].reg << 12;
9251 inst.instruction |= inst.operands[2].reg << 16;
9252 }
9253
9254 static void
9255 do_imm0 (void)
9256 {
9257 inst.instruction |= inst.operands[0].imm;
9258 }
9259
9260 static void
9261 do_rd_cpaddr (void)
9262 {
9263 inst.instruction |= inst.operands[0].reg << 12;
9264 encode_arm_cp_address (1, TRUE, TRUE, 0);
9265 }
9266
9267 /* ARM instructions, in alphabetical order by function name (except
9268 that wrapper functions appear immediately after the function they
9269 wrap). */
9270
9271 /* This is a pseudo-op of the form "adr rd, label" to be converted
9272 into a relative address of the form "add rd, pc, #label-.-8". */
9273
9274 static void
9275 do_adr (void)
9276 {
9277 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
9278
9279 /* Frag hacking will turn this into a sub instruction if the offset turns
9280 out to be negative. */
9281 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
9282 inst.relocs[0].pc_rel = 1;
9283 inst.relocs[0].exp.X_add_number -= 8;
9284
9285 if (support_interwork
9286 && inst.relocs[0].exp.X_op == O_symbol
9287 && inst.relocs[0].exp.X_add_symbol != NULL
9288 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
9289 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
9290 inst.relocs[0].exp.X_add_number |= 1;
9291 }
9292
9293 /* This is a pseudo-op of the form "adrl rd, label" to be converted
9294 into a relative address of the form:
9295 add rd, pc, #low(label-.-8)"
9296 add rd, rd, #high(label-.-8)" */
9297
9298 static void
9299 do_adrl (void)
9300 {
9301 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
9302
9303 /* Frag hacking will turn this into a sub instruction if the offset turns
9304 out to be negative. */
9305 inst.relocs[0].type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
9306 inst.relocs[0].pc_rel = 1;
9307 inst.size = INSN_SIZE * 2;
9308 inst.relocs[0].exp.X_add_number -= 8;
9309
9310 if (support_interwork
9311 && inst.relocs[0].exp.X_op == O_symbol
9312 && inst.relocs[0].exp.X_add_symbol != NULL
9313 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
9314 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
9315 inst.relocs[0].exp.X_add_number |= 1;
9316 }
9317
9318 static void
9319 do_arit (void)
9320 {
9321 constraint (inst.relocs[0].type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9322 && inst.relocs[0].type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9323 THUMB1_RELOC_ONLY);
9324 if (!inst.operands[1].present)
9325 inst.operands[1].reg = inst.operands[0].reg;
9326 inst.instruction |= inst.operands[0].reg << 12;
9327 inst.instruction |= inst.operands[1].reg << 16;
9328 encode_arm_shifter_operand (2);
9329 }
9330
9331 static void
9332 do_barrier (void)
9333 {
9334 if (inst.operands[0].present)
9335 inst.instruction |= inst.operands[0].imm;
9336 else
9337 inst.instruction |= 0xf;
9338 }
9339
9340 static void
9341 do_bfc (void)
9342 {
9343 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
9344 constraint (msb > 32, _("bit-field extends past end of register"));
9345 /* The instruction encoding stores the LSB and MSB,
9346 not the LSB and width. */
9347 inst.instruction |= inst.operands[0].reg << 12;
9348 inst.instruction |= inst.operands[1].imm << 7;
9349 inst.instruction |= (msb - 1) << 16;
9350 }
9351
9352 static void
9353 do_bfi (void)
9354 {
9355 unsigned int msb;
9356
9357 /* #0 in second position is alternative syntax for bfc, which is
9358 the same instruction but with REG_PC in the Rm field. */
9359 if (!inst.operands[1].isreg)
9360 inst.operands[1].reg = REG_PC;
9361
9362 msb = inst.operands[2].imm + inst.operands[3].imm;
9363 constraint (msb > 32, _("bit-field extends past end of register"));
9364 /* The instruction encoding stores the LSB and MSB,
9365 not the LSB and width. */
9366 inst.instruction |= inst.operands[0].reg << 12;
9367 inst.instruction |= inst.operands[1].reg;
9368 inst.instruction |= inst.operands[2].imm << 7;
9369 inst.instruction |= (msb - 1) << 16;
9370 }
9371
9372 static void
9373 do_bfx (void)
9374 {
9375 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
9376 _("bit-field extends past end of register"));
9377 inst.instruction |= inst.operands[0].reg << 12;
9378 inst.instruction |= inst.operands[1].reg;
9379 inst.instruction |= inst.operands[2].imm << 7;
9380 inst.instruction |= (inst.operands[3].imm - 1) << 16;
9381 }
9382
9383 /* ARM V5 breakpoint instruction (argument parse)
9384 BKPT <16 bit unsigned immediate>
9385 Instruction is not conditional.
9386 The bit pattern given in insns[] has the COND_ALWAYS condition,
9387 and it is an error if the caller tried to override that. */
9388
9389 static void
9390 do_bkpt (void)
9391 {
9392 /* Top 12 of 16 bits to bits 19:8. */
9393 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
9394
9395 /* Bottom 4 of 16 bits to bits 3:0. */
9396 inst.instruction |= inst.operands[0].imm & 0xf;
9397 }
9398
9399 static void
9400 encode_branch (int default_reloc)
9401 {
9402 if (inst.operands[0].hasreloc)
9403 {
9404 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
9405 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
9406 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
9407 inst.relocs[0].type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
9408 ? BFD_RELOC_ARM_PLT32
9409 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
9410 }
9411 else
9412 inst.relocs[0].type = (bfd_reloc_code_real_type) default_reloc;
9413 inst.relocs[0].pc_rel = 1;
9414 }
9415
9416 static void
9417 do_branch (void)
9418 {
9419 #ifdef OBJ_ELF
9420 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
9421 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
9422 else
9423 #endif
9424 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
9425 }
9426
9427 static void
9428 do_bl (void)
9429 {
9430 #ifdef OBJ_ELF
9431 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
9432 {
9433 if (inst.cond == COND_ALWAYS)
9434 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
9435 else
9436 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
9437 }
9438 else
9439 #endif
9440 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
9441 }
9442
9443 /* ARM V5 branch-link-exchange instruction (argument parse)
9444 BLX <target_addr> ie BLX(1)
9445 BLX{<condition>} <Rm> ie BLX(2)
9446 Unfortunately, there are two different opcodes for this mnemonic.
9447 So, the insns[].value is not used, and the code here zaps values
9448 into inst.instruction.
9449 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
9450
9451 static void
9452 do_blx (void)
9453 {
9454 if (inst.operands[0].isreg)
9455 {
9456 /* Arg is a register; the opcode provided by insns[] is correct.
9457 It is not illegal to do "blx pc", just useless. */
9458 if (inst.operands[0].reg == REG_PC)
9459 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
9460
9461 inst.instruction |= inst.operands[0].reg;
9462 }
9463 else
9464 {
9465 /* Arg is an address; this instruction cannot be executed
9466 conditionally, and the opcode must be adjusted.
9467 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
9468 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
9469 constraint (inst.cond != COND_ALWAYS, BAD_COND);
9470 inst.instruction = 0xfa000000;
9471 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
9472 }
9473 }
9474
9475 static void
9476 do_bx (void)
9477 {
9478 bfd_boolean want_reloc;
9479
9480 if (inst.operands[0].reg == REG_PC)
9481 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
9482
9483 inst.instruction |= inst.operands[0].reg;
9484 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
9485 it is for ARMv4t or earlier. */
9486 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
9487 if (!ARM_FEATURE_ZERO (selected_object_arch)
9488 && !ARM_CPU_HAS_FEATURE (selected_object_arch, arm_ext_v5))
9489 want_reloc = TRUE;
9490
9491 #ifdef OBJ_ELF
9492 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
9493 #endif
9494 want_reloc = FALSE;
9495
9496 if (want_reloc)
9497 inst.relocs[0].type = BFD_RELOC_ARM_V4BX;
9498 }
9499
9500
9501 /* ARM v5TEJ. Jump to Jazelle code. */
9502
9503 static void
9504 do_bxj (void)
9505 {
9506 if (inst.operands[0].reg == REG_PC)
9507 as_tsktsk (_("use of r15 in bxj is not really useful"));
9508
9509 inst.instruction |= inst.operands[0].reg;
9510 }
9511
9512 /* Co-processor data operation:
9513 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
9514 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
9515 static void
9516 do_cdp (void)
9517 {
9518 inst.instruction |= inst.operands[0].reg << 8;
9519 inst.instruction |= inst.operands[1].imm << 20;
9520 inst.instruction |= inst.operands[2].reg << 12;
9521 inst.instruction |= inst.operands[3].reg << 16;
9522 inst.instruction |= inst.operands[4].reg;
9523 inst.instruction |= inst.operands[5].imm << 5;
9524 }
9525
9526 static void
9527 do_cmp (void)
9528 {
9529 inst.instruction |= inst.operands[0].reg << 16;
9530 encode_arm_shifter_operand (1);
9531 }
9532
9533 /* Transfer between coprocessor and ARM registers.
9534 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
9535 MRC2
9536 MCR{cond}
9537 MCR2
9538
9539 No special properties. */
9540
9541 struct deprecated_coproc_regs_s
9542 {
9543 unsigned cp;
9544 int opc1;
9545 unsigned crn;
9546 unsigned crm;
9547 int opc2;
9548 arm_feature_set deprecated;
9549 arm_feature_set obsoleted;
9550 const char *dep_msg;
9551 const char *obs_msg;
9552 };
9553
9554 #define DEPR_ACCESS_V8 \
9555 N_("This coprocessor register access is deprecated in ARMv8")
9556
9557 /* Table of all deprecated coprocessor registers. */
9558 static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
9559 {
9560 {15, 0, 7, 10, 5, /* CP15DMB. */
9561 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9562 DEPR_ACCESS_V8, NULL},
9563 {15, 0, 7, 10, 4, /* CP15DSB. */
9564 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9565 DEPR_ACCESS_V8, NULL},
9566 {15, 0, 7, 5, 4, /* CP15ISB. */
9567 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9568 DEPR_ACCESS_V8, NULL},
9569 {14, 6, 1, 0, 0, /* TEEHBR. */
9570 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9571 DEPR_ACCESS_V8, NULL},
9572 {14, 6, 0, 0, 0, /* TEECR. */
9573 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
9574 DEPR_ACCESS_V8, NULL},
9575 };
9576
9577 #undef DEPR_ACCESS_V8
9578
9579 static const size_t deprecated_coproc_reg_count =
9580 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
9581
9582 static void
9583 do_co_reg (void)
9584 {
9585 unsigned Rd;
9586 size_t i;
9587
9588 Rd = inst.operands[2].reg;
9589 if (thumb_mode)
9590 {
9591 if (inst.instruction == 0xee000010
9592 || inst.instruction == 0xfe000010)
9593 /* MCR, MCR2 */
9594 reject_bad_reg (Rd);
9595 else if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
9596 /* MRC, MRC2 */
9597 constraint (Rd == REG_SP, BAD_SP);
9598 }
9599 else
9600 {
9601 /* MCR */
9602 if (inst.instruction == 0xe000010)
9603 constraint (Rd == REG_PC, BAD_PC);
9604 }
9605
9606 for (i = 0; i < deprecated_coproc_reg_count; ++i)
9607 {
9608 const struct deprecated_coproc_regs_s *r =
9609 deprecated_coproc_regs + i;
9610
9611 if (inst.operands[0].reg == r->cp
9612 && inst.operands[1].imm == r->opc1
9613 && inst.operands[3].reg == r->crn
9614 && inst.operands[4].reg == r->crm
9615 && inst.operands[5].imm == r->opc2)
9616 {
9617 if (! ARM_CPU_IS_ANY (cpu_variant)
9618 && warn_on_deprecated
9619 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
9620 as_tsktsk ("%s", r->dep_msg);
9621 }
9622 }
9623
9624 inst.instruction |= inst.operands[0].reg << 8;
9625 inst.instruction |= inst.operands[1].imm << 21;
9626 inst.instruction |= Rd << 12;
9627 inst.instruction |= inst.operands[3].reg << 16;
9628 inst.instruction |= inst.operands[4].reg;
9629 inst.instruction |= inst.operands[5].imm << 5;
9630 }
9631
9632 /* Transfer between coprocessor register and pair of ARM registers.
9633 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
9634 MCRR2
9635 MRRC{cond}
9636 MRRC2
9637
9638 Two XScale instructions are special cases of these:
9639
9640 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
9641 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
9642
9643 Result unpredictable if Rd or Rn is R15. */
9644
9645 static void
9646 do_co_reg2c (void)
9647 {
9648 unsigned Rd, Rn;
9649
9650 Rd = inst.operands[2].reg;
9651 Rn = inst.operands[3].reg;
9652
9653 if (thumb_mode)
9654 {
9655 reject_bad_reg (Rd);
9656 reject_bad_reg (Rn);
9657 }
9658 else
9659 {
9660 constraint (Rd == REG_PC, BAD_PC);
9661 constraint (Rn == REG_PC, BAD_PC);
9662 }
9663
9664 /* Only check the MRRC{2} variants. */
9665 if ((inst.instruction & 0x0FF00000) == 0x0C500000)
9666 {
9667 /* If Rd == Rn, error that the operation is
9668 unpredictable (example MRRC p3,#1,r1,r1,c4). */
9669 constraint (Rd == Rn, BAD_OVERLAP);
9670 }
9671
9672 inst.instruction |= inst.operands[0].reg << 8;
9673 inst.instruction |= inst.operands[1].imm << 4;
9674 inst.instruction |= Rd << 12;
9675 inst.instruction |= Rn << 16;
9676 inst.instruction |= inst.operands[4].reg;
9677 }
9678
9679 static void
9680 do_cpsi (void)
9681 {
9682 inst.instruction |= inst.operands[0].imm << 6;
9683 if (inst.operands[1].present)
9684 {
9685 inst.instruction |= CPSI_MMOD;
9686 inst.instruction |= inst.operands[1].imm;
9687 }
9688 }
9689
9690 static void
9691 do_dbg (void)
9692 {
9693 inst.instruction |= inst.operands[0].imm;
9694 }
9695
9696 static void
9697 do_div (void)
9698 {
9699 unsigned Rd, Rn, Rm;
9700
9701 Rd = inst.operands[0].reg;
9702 Rn = (inst.operands[1].present
9703 ? inst.operands[1].reg : Rd);
9704 Rm = inst.operands[2].reg;
9705
9706 constraint ((Rd == REG_PC), BAD_PC);
9707 constraint ((Rn == REG_PC), BAD_PC);
9708 constraint ((Rm == REG_PC), BAD_PC);
9709
9710 inst.instruction |= Rd << 16;
9711 inst.instruction |= Rn << 0;
9712 inst.instruction |= Rm << 8;
9713 }
9714
9715 static void
9716 do_it (void)
9717 {
9718 /* There is no IT instruction in ARM mode. We
9719 process it to do the validation as if in
9720 thumb mode, just in case the code gets
9721 assembled for thumb using the unified syntax. */
9722
9723 inst.size = 0;
9724 if (unified_syntax)
9725 {
9726 set_pred_insn_type (IT_INSN);
9727 now_pred.mask = (inst.instruction & 0xf) | 0x10;
9728 now_pred.cc = inst.operands[0].imm;
9729 }
9730 }
9731
9732 /* If there is only one register in the register list,
9733 then return its register number. Otherwise return -1. */
9734 static int
9735 only_one_reg_in_list (int range)
9736 {
9737 int i = ffs (range) - 1;
9738 return (i > 15 || range != (1 << i)) ? -1 : i;
9739 }
9740
9741 static void
9742 encode_ldmstm(int from_push_pop_mnem)
9743 {
9744 int base_reg = inst.operands[0].reg;
9745 int range = inst.operands[1].imm;
9746 int one_reg;
9747
9748 inst.instruction |= base_reg << 16;
9749 inst.instruction |= range;
9750
9751 if (inst.operands[1].writeback)
9752 inst.instruction |= LDM_TYPE_2_OR_3;
9753
9754 if (inst.operands[0].writeback)
9755 {
9756 inst.instruction |= WRITE_BACK;
9757 /* Check for unpredictable uses of writeback. */
9758 if (inst.instruction & LOAD_BIT)
9759 {
9760 /* Not allowed in LDM type 2. */
9761 if ((inst.instruction & LDM_TYPE_2_OR_3)
9762 && ((range & (1 << REG_PC)) == 0))
9763 as_warn (_("writeback of base register is UNPREDICTABLE"));
9764 /* Only allowed if base reg not in list for other types. */
9765 else if (range & (1 << base_reg))
9766 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
9767 }
9768 else /* STM. */
9769 {
9770 /* Not allowed for type 2. */
9771 if (inst.instruction & LDM_TYPE_2_OR_3)
9772 as_warn (_("writeback of base register is UNPREDICTABLE"));
9773 /* Only allowed if base reg not in list, or first in list. */
9774 else if ((range & (1 << base_reg))
9775 && (range & ((1 << base_reg) - 1)))
9776 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
9777 }
9778 }
9779
9780 /* If PUSH/POP has only one register, then use the A2 encoding. */
9781 one_reg = only_one_reg_in_list (range);
9782 if (from_push_pop_mnem && one_reg >= 0)
9783 {
9784 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
9785
9786 if (is_push && one_reg == 13 /* SP */)
9787 /* PR 22483: The A2 encoding cannot be used when
9788 pushing the stack pointer as this is UNPREDICTABLE. */
9789 return;
9790
9791 inst.instruction &= A_COND_MASK;
9792 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
9793 inst.instruction |= one_reg << 12;
9794 }
9795 }
9796
9797 static void
9798 do_ldmstm (void)
9799 {
9800 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
9801 }
9802
9803 /* ARMv5TE load-consecutive (argument parse)
9804 Mode is like LDRH.
9805
9806 LDRccD R, mode
9807 STRccD R, mode. */
9808
9809 static void
9810 do_ldrd (void)
9811 {
9812 constraint (inst.operands[0].reg % 2 != 0,
9813 _("first transfer register must be even"));
9814 constraint (inst.operands[1].present
9815 && inst.operands[1].reg != inst.operands[0].reg + 1,
9816 _("can only transfer two consecutive registers"));
9817 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
9818 constraint (!inst.operands[2].isreg, _("'[' expected"));
9819
9820 if (!inst.operands[1].present)
9821 inst.operands[1].reg = inst.operands[0].reg + 1;
9822
9823 /* encode_arm_addr_mode_3 will diagnose overlap between the base
9824 register and the first register written; we have to diagnose
9825 overlap between the base and the second register written here. */
9826
9827 if (inst.operands[2].reg == inst.operands[1].reg
9828 && (inst.operands[2].writeback || inst.operands[2].postind))
9829 as_warn (_("base register written back, and overlaps "
9830 "second transfer register"));
9831
9832 if (!(inst.instruction & V4_STR_BIT))
9833 {
9834 /* For an index-register load, the index register must not overlap the
9835 destination (even if not write-back). */
9836 if (inst.operands[2].immisreg
9837 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
9838 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
9839 as_warn (_("index register overlaps transfer register"));
9840 }
9841 inst.instruction |= inst.operands[0].reg << 12;
9842 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
9843 }
9844
9845 static void
9846 do_ldrex (void)
9847 {
9848 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
9849 || inst.operands[1].postind || inst.operands[1].writeback
9850 || inst.operands[1].immisreg || inst.operands[1].shifted
9851 || inst.operands[1].negative
9852 /* This can arise if the programmer has written
9853 strex rN, rM, foo
9854 or if they have mistakenly used a register name as the last
9855 operand, eg:
9856 strex rN, rM, rX
9857 It is very difficult to distinguish between these two cases
9858 because "rX" might actually be a label. ie the register
9859 name has been occluded by a symbol of the same name. So we
9860 just generate a general 'bad addressing mode' type error
9861 message and leave it up to the programmer to discover the
9862 true cause and fix their mistake. */
9863 || (inst.operands[1].reg == REG_PC),
9864 BAD_ADDR_MODE);
9865
9866 constraint (inst.relocs[0].exp.X_op != O_constant
9867 || inst.relocs[0].exp.X_add_number != 0,
9868 _("offset must be zero in ARM encoding"));
9869
9870 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
9871
9872 inst.instruction |= inst.operands[0].reg << 12;
9873 inst.instruction |= inst.operands[1].reg << 16;
9874 inst.relocs[0].type = BFD_RELOC_UNUSED;
9875 }
9876
9877 static void
9878 do_ldrexd (void)
9879 {
9880 constraint (inst.operands[0].reg % 2 != 0,
9881 _("even register required"));
9882 constraint (inst.operands[1].present
9883 && inst.operands[1].reg != inst.operands[0].reg + 1,
9884 _("can only load two consecutive registers"));
9885 /* If op 1 were present and equal to PC, this function wouldn't
9886 have been called in the first place. */
9887 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
9888
9889 inst.instruction |= inst.operands[0].reg << 12;
9890 inst.instruction |= inst.operands[2].reg << 16;
9891 }
9892
9893 /* In both ARM and thumb state 'ldr pc, #imm' with an immediate
9894 which is not a multiple of four is UNPREDICTABLE. */
9895 static void
9896 check_ldr_r15_aligned (void)
9897 {
9898 constraint (!(inst.operands[1].immisreg)
9899 && (inst.operands[0].reg == REG_PC
9900 && inst.operands[1].reg == REG_PC
9901 && (inst.relocs[0].exp.X_add_number & 0x3)),
9902 _("ldr to register 15 must be 4-byte aligned"));
9903 }
9904
9905 static void
9906 do_ldst (void)
9907 {
9908 inst.instruction |= inst.operands[0].reg << 12;
9909 if (!inst.operands[1].isreg)
9910 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/FALSE))
9911 return;
9912 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
9913 check_ldr_r15_aligned ();
9914 }
9915
9916 static void
9917 do_ldstt (void)
9918 {
9919 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
9920 reject [Rn,...]. */
9921 if (inst.operands[1].preind)
9922 {
9923 constraint (inst.relocs[0].exp.X_op != O_constant
9924 || inst.relocs[0].exp.X_add_number != 0,
9925 _("this instruction requires a post-indexed address"));
9926
9927 inst.operands[1].preind = 0;
9928 inst.operands[1].postind = 1;
9929 inst.operands[1].writeback = 1;
9930 }
9931 inst.instruction |= inst.operands[0].reg << 12;
9932 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
9933 }
9934
9935 /* Halfword and signed-byte load/store operations. */
9936
9937 static void
9938 do_ldstv4 (void)
9939 {
9940 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
9941 inst.instruction |= inst.operands[0].reg << 12;
9942 if (!inst.operands[1].isreg)
9943 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/TRUE))
9944 return;
9945 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
9946 }
9947
9948 static void
9949 do_ldsttv4 (void)
9950 {
9951 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
9952 reject [Rn,...]. */
9953 if (inst.operands[1].preind)
9954 {
9955 constraint (inst.relocs[0].exp.X_op != O_constant
9956 || inst.relocs[0].exp.X_add_number != 0,
9957 _("this instruction requires a post-indexed address"));
9958
9959 inst.operands[1].preind = 0;
9960 inst.operands[1].postind = 1;
9961 inst.operands[1].writeback = 1;
9962 }
9963 inst.instruction |= inst.operands[0].reg << 12;
9964 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
9965 }
9966
9967 /* Co-processor register load/store.
9968 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
9969 static void
9970 do_lstc (void)
9971 {
9972 inst.instruction |= inst.operands[0].reg << 8;
9973 inst.instruction |= inst.operands[1].reg << 12;
9974 encode_arm_cp_address (2, TRUE, TRUE, 0);
9975 }
9976
9977 static void
9978 do_mlas (void)
9979 {
9980 /* This restriction does not apply to mls (nor to mla in v6 or later). */
9981 if (inst.operands[0].reg == inst.operands[1].reg
9982 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
9983 && !(inst.instruction & 0x00400000))
9984 as_tsktsk (_("Rd and Rm should be different in mla"));
9985
9986 inst.instruction |= inst.operands[0].reg << 16;
9987 inst.instruction |= inst.operands[1].reg;
9988 inst.instruction |= inst.operands[2].reg << 8;
9989 inst.instruction |= inst.operands[3].reg << 12;
9990 }
9991
9992 static void
9993 do_mov (void)
9994 {
9995 constraint (inst.relocs[0].type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9996 && inst.relocs[0].type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9997 THUMB1_RELOC_ONLY);
9998 inst.instruction |= inst.operands[0].reg << 12;
9999 encode_arm_shifter_operand (1);
10000 }
10001
10002 /* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
10003 static void
10004 do_mov16 (void)
10005 {
10006 bfd_vma imm;
10007 bfd_boolean top;
10008
10009 top = (inst.instruction & 0x00400000) != 0;
10010 constraint (top && inst.relocs[0].type == BFD_RELOC_ARM_MOVW,
10011 _(":lower16: not allowed in this instruction"));
10012 constraint (!top && inst.relocs[0].type == BFD_RELOC_ARM_MOVT,
10013 _(":upper16: not allowed in this instruction"));
10014 inst.instruction |= inst.operands[0].reg << 12;
10015 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
10016 {
10017 imm = inst.relocs[0].exp.X_add_number;
10018 /* The value is in two pieces: 0:11, 16:19. */
10019 inst.instruction |= (imm & 0x00000fff);
10020 inst.instruction |= (imm & 0x0000f000) << 4;
10021 }
10022 }
10023
10024 static int
10025 do_vfp_nsyn_mrs (void)
10026 {
10027 if (inst.operands[0].isvec)
10028 {
10029 if (inst.operands[1].reg != 1)
10030 first_error (_("operand 1 must be FPSCR"));
10031 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
10032 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
10033 do_vfp_nsyn_opcode ("fmstat");
10034 }
10035 else if (inst.operands[1].isvec)
10036 do_vfp_nsyn_opcode ("fmrx");
10037 else
10038 return FAIL;
10039
10040 return SUCCESS;
10041 }
10042
10043 static int
10044 do_vfp_nsyn_msr (void)
10045 {
10046 if (inst.operands[0].isvec)
10047 do_vfp_nsyn_opcode ("fmxr");
10048 else
10049 return FAIL;
10050
10051 return SUCCESS;
10052 }
10053
10054 static void
10055 do_vmrs (void)
10056 {
10057 unsigned Rt = inst.operands[0].reg;
10058
10059 if (thumb_mode && Rt == REG_SP)
10060 {
10061 inst.error = BAD_SP;
10062 return;
10063 }
10064
10065 switch (inst.operands[1].reg)
10066 {
10067 /* MVFR2 is only valid for Armv8-A. */
10068 case 5:
10069 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
10070 _(BAD_FPU));
10071 break;
10072
10073 /* Check for new Armv8.1-M Mainline changes to <spec_reg>. */
10074 case 1: /* fpscr. */
10075 constraint (!(ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10076 || ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10077 _(BAD_FPU));
10078 break;
10079
10080 case 14: /* fpcxt_ns. */
10081 case 15: /* fpcxt_s. */
10082 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main),
10083 _("selected processor does not support instruction"));
10084 break;
10085
10086 case 2: /* fpscr_nzcvqc. */
10087 case 12: /* vpr. */
10088 case 13: /* p0. */
10089 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main)
10090 || (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10091 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10092 _("selected processor does not support instruction"));
10093 if (inst.operands[0].reg != 2
10094 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
10095 as_warn (_("accessing MVE system register without MVE is UNPREDICTABLE"));
10096 break;
10097
10098 default:
10099 break;
10100 }
10101
10102 /* APSR_ sets isvec. All other refs to PC are illegal. */
10103 if (!inst.operands[0].isvec && Rt == REG_PC)
10104 {
10105 inst.error = BAD_PC;
10106 return;
10107 }
10108
10109 /* If we get through parsing the register name, we just insert the number
10110 generated into the instruction without further validation. */
10111 inst.instruction |= (inst.operands[1].reg << 16);
10112 inst.instruction |= (Rt << 12);
10113 }
10114
10115 static void
10116 do_vmsr (void)
10117 {
10118 unsigned Rt = inst.operands[1].reg;
10119
10120 if (thumb_mode)
10121 reject_bad_reg (Rt);
10122 else if (Rt == REG_PC)
10123 {
10124 inst.error = BAD_PC;
10125 return;
10126 }
10127
10128 switch (inst.operands[0].reg)
10129 {
10130 /* MVFR2 is only valid for Armv8-A. */
10131 case 5:
10132 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
10133 _(BAD_FPU));
10134 break;
10135
10136 /* Check for new Armv8.1-M Mainline changes to <spec_reg>. */
10137 case 1: /* fpcr. */
10138 constraint (!(ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10139 || ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10140 _(BAD_FPU));
10141 break;
10142
10143 case 14: /* fpcxt_ns. */
10144 case 15: /* fpcxt_s. */
10145 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main),
10146 _("selected processor does not support instruction"));
10147 break;
10148
10149 case 2: /* fpscr_nzcvqc. */
10150 case 12: /* vpr. */
10151 case 13: /* p0. */
10152 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8_1m_main)
10153 || (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
10154 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)),
10155 _("selected processor does not support instruction"));
10156 if (inst.operands[0].reg != 2
10157 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
10158 as_warn (_("accessing MVE system register without MVE is UNPREDICTABLE"));
10159 break;
10160
10161 default:
10162 break;
10163 }
10164
10165 /* If we get through parsing the register name, we just insert the number
10166 generated into the instruction without further validation. */
10167 inst.instruction |= (inst.operands[0].reg << 16);
10168 inst.instruction |= (Rt << 12);
10169 }
10170
10171 static void
10172 do_mrs (void)
10173 {
10174 unsigned br;
10175
10176 if (do_vfp_nsyn_mrs () == SUCCESS)
10177 return;
10178
10179 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
10180 inst.instruction |= inst.operands[0].reg << 12;
10181
10182 if (inst.operands[1].isreg)
10183 {
10184 br = inst.operands[1].reg;
10185 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf0000))
10186 as_bad (_("bad register for mrs"));
10187 }
10188 else
10189 {
10190 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
10191 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
10192 != (PSR_c|PSR_f),
10193 _("'APSR', 'CPSR' or 'SPSR' expected"));
10194 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
10195 }
10196
10197 inst.instruction |= br;
10198 }
10199
10200 /* Two possible forms:
10201 "{C|S}PSR_<field>, Rm",
10202 "{C|S}PSR_f, #expression". */
10203
10204 static void
10205 do_msr (void)
10206 {
10207 if (do_vfp_nsyn_msr () == SUCCESS)
10208 return;
10209
10210 inst.instruction |= inst.operands[0].imm;
10211 if (inst.operands[1].isreg)
10212 inst.instruction |= inst.operands[1].reg;
10213 else
10214 {
10215 inst.instruction |= INST_IMMEDIATE;
10216 inst.relocs[0].type = BFD_RELOC_ARM_IMMEDIATE;
10217 inst.relocs[0].pc_rel = 0;
10218 }
10219 }
10220
10221 static void
10222 do_mul (void)
10223 {
10224 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
10225
10226 if (!inst.operands[2].present)
10227 inst.operands[2].reg = inst.operands[0].reg;
10228 inst.instruction |= inst.operands[0].reg << 16;
10229 inst.instruction |= inst.operands[1].reg;
10230 inst.instruction |= inst.operands[2].reg << 8;
10231
10232 if (inst.operands[0].reg == inst.operands[1].reg
10233 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
10234 as_tsktsk (_("Rd and Rm should be different in mul"));
10235 }
10236
10237 /* Long Multiply Parser
10238 UMULL RdLo, RdHi, Rm, Rs
10239 SMULL RdLo, RdHi, Rm, Rs
10240 UMLAL RdLo, RdHi, Rm, Rs
10241 SMLAL RdLo, RdHi, Rm, Rs. */
10242
10243 static void
10244 do_mull (void)
10245 {
10246 inst.instruction |= inst.operands[0].reg << 12;
10247 inst.instruction |= inst.operands[1].reg << 16;
10248 inst.instruction |= inst.operands[2].reg;
10249 inst.instruction |= inst.operands[3].reg << 8;
10250
10251 /* rdhi and rdlo must be different. */
10252 if (inst.operands[0].reg == inst.operands[1].reg)
10253 as_tsktsk (_("rdhi and rdlo must be different"));
10254
10255 /* rdhi, rdlo and rm must all be different before armv6. */
10256 if ((inst.operands[0].reg == inst.operands[2].reg
10257 || inst.operands[1].reg == inst.operands[2].reg)
10258 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
10259 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
10260 }
10261
10262 static void
10263 do_nop (void)
10264 {
10265 if (inst.operands[0].present
10266 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
10267 {
10268 /* Architectural NOP hints are CPSR sets with no bits selected. */
10269 inst.instruction &= 0xf0000000;
10270 inst.instruction |= 0x0320f000;
10271 if (inst.operands[0].present)
10272 inst.instruction |= inst.operands[0].imm;
10273 }
10274 }
10275
10276 /* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
10277 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
10278 Condition defaults to COND_ALWAYS.
10279 Error if Rd, Rn or Rm are R15. */
10280
10281 static void
10282 do_pkhbt (void)
10283 {
10284 inst.instruction |= inst.operands[0].reg << 12;
10285 inst.instruction |= inst.operands[1].reg << 16;
10286 inst.instruction |= inst.operands[2].reg;
10287 if (inst.operands[3].present)
10288 encode_arm_shift (3);
10289 }
10290
10291 /* ARM V6 PKHTB (Argument Parse). */
10292
10293 static void
10294 do_pkhtb (void)
10295 {
10296 if (!inst.operands[3].present)
10297 {
10298 /* If the shift specifier is omitted, turn the instruction
10299 into pkhbt rd, rm, rn. */
10300 inst.instruction &= 0xfff00010;
10301 inst.instruction |= inst.operands[0].reg << 12;
10302 inst.instruction |= inst.operands[1].reg;
10303 inst.instruction |= inst.operands[2].reg << 16;
10304 }
10305 else
10306 {
10307 inst.instruction |= inst.operands[0].reg << 12;
10308 inst.instruction |= inst.operands[1].reg << 16;
10309 inst.instruction |= inst.operands[2].reg;
10310 encode_arm_shift (3);
10311 }
10312 }
10313
10314 /* ARMv5TE: Preload-Cache
10315 MP Extensions: Preload for write
10316
10317 PLD(W) <addr_mode>
10318
10319 Syntactically, like LDR with B=1, W=0, L=1. */
10320
10321 static void
10322 do_pld (void)
10323 {
10324 constraint (!inst.operands[0].isreg,
10325 _("'[' expected after PLD mnemonic"));
10326 constraint (inst.operands[0].postind,
10327 _("post-indexed expression used in preload instruction"));
10328 constraint (inst.operands[0].writeback,
10329 _("writeback used in preload instruction"));
10330 constraint (!inst.operands[0].preind,
10331 _("unindexed addressing used in preload instruction"));
10332 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
10333 }
10334
10335 /* ARMv7: PLI <addr_mode> */
10336 static void
10337 do_pli (void)
10338 {
10339 constraint (!inst.operands[0].isreg,
10340 _("'[' expected after PLI mnemonic"));
10341 constraint (inst.operands[0].postind,
10342 _("post-indexed expression used in preload instruction"));
10343 constraint (inst.operands[0].writeback,
10344 _("writeback used in preload instruction"));
10345 constraint (!inst.operands[0].preind,
10346 _("unindexed addressing used in preload instruction"));
10347 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
10348 inst.instruction &= ~PRE_INDEX;
10349 }
10350
10351 static void
10352 do_push_pop (void)
10353 {
10354 constraint (inst.operands[0].writeback,
10355 _("push/pop do not support {reglist}^"));
10356 inst.operands[1] = inst.operands[0];
10357 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
10358 inst.operands[0].isreg = 1;
10359 inst.operands[0].writeback = 1;
10360 inst.operands[0].reg = REG_SP;
10361 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
10362 }
10363
10364 /* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
10365 word at the specified address and the following word
10366 respectively.
10367 Unconditionally executed.
10368 Error if Rn is R15. */
10369
10370 static void
10371 do_rfe (void)
10372 {
10373 inst.instruction |= inst.operands[0].reg << 16;
10374 if (inst.operands[0].writeback)
10375 inst.instruction |= WRITE_BACK;
10376 }
10377
10378 /* ARM V6 ssat (argument parse). */
10379
10380 static void
10381 do_ssat (void)
10382 {
10383 inst.instruction |= inst.operands[0].reg << 12;
10384 inst.instruction |= (inst.operands[1].imm - 1) << 16;
10385 inst.instruction |= inst.operands[2].reg;
10386
10387 if (inst.operands[3].present)
10388 encode_arm_shift (3);
10389 }
10390
10391 /* ARM V6 usat (argument parse). */
10392
10393 static void
10394 do_usat (void)
10395 {
10396 inst.instruction |= inst.operands[0].reg << 12;
10397 inst.instruction |= inst.operands[1].imm << 16;
10398 inst.instruction |= inst.operands[2].reg;
10399
10400 if (inst.operands[3].present)
10401 encode_arm_shift (3);
10402 }
10403
10404 /* ARM V6 ssat16 (argument parse). */
10405
10406 static void
10407 do_ssat16 (void)
10408 {
10409 inst.instruction |= inst.operands[0].reg << 12;
10410 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
10411 inst.instruction |= inst.operands[2].reg;
10412 }
10413
10414 static void
10415 do_usat16 (void)
10416 {
10417 inst.instruction |= inst.operands[0].reg << 12;
10418 inst.instruction |= inst.operands[1].imm << 16;
10419 inst.instruction |= inst.operands[2].reg;
10420 }
10421
10422 /* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
10423 preserving the other bits.
10424
10425 setend <endian_specifier>, where <endian_specifier> is either
10426 BE or LE. */
10427
10428 static void
10429 do_setend (void)
10430 {
10431 if (warn_on_deprecated
10432 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
10433 as_tsktsk (_("setend use is deprecated for ARMv8"));
10434
10435 if (inst.operands[0].imm)
10436 inst.instruction |= 0x200;
10437 }
10438
10439 static void
10440 do_shift (void)
10441 {
10442 unsigned int Rm = (inst.operands[1].present
10443 ? inst.operands[1].reg
10444 : inst.operands[0].reg);
10445
10446 inst.instruction |= inst.operands[0].reg << 12;
10447 inst.instruction |= Rm;
10448 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
10449 {
10450 inst.instruction |= inst.operands[2].reg << 8;
10451 inst.instruction |= SHIFT_BY_REG;
10452 /* PR 12854: Error on extraneous shifts. */
10453 constraint (inst.operands[2].shifted,
10454 _("extraneous shift as part of operand to shift insn"));
10455 }
10456 else
10457 inst.relocs[0].type = BFD_RELOC_ARM_SHIFT_IMM;
10458 }
10459
10460 static void
10461 do_smc (void)
10462 {
10463 unsigned int value = inst.relocs[0].exp.X_add_number;
10464 constraint (value > 0xf, _("immediate too large (bigger than 0xF)"));
10465
10466 inst.relocs[0].type = BFD_RELOC_ARM_SMC;
10467 inst.relocs[0].pc_rel = 0;
10468 }
10469
10470 static void
10471 do_hvc (void)
10472 {
10473 inst.relocs[0].type = BFD_RELOC_ARM_HVC;
10474 inst.relocs[0].pc_rel = 0;
10475 }
10476
10477 static void
10478 do_swi (void)
10479 {
10480 inst.relocs[0].type = BFD_RELOC_ARM_SWI;
10481 inst.relocs[0].pc_rel = 0;
10482 }
10483
10484 static void
10485 do_setpan (void)
10486 {
10487 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
10488 _("selected processor does not support SETPAN instruction"));
10489
10490 inst.instruction |= ((inst.operands[0].imm & 1) << 9);
10491 }
10492
10493 static void
10494 do_t_setpan (void)
10495 {
10496 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
10497 _("selected processor does not support SETPAN instruction"));
10498
10499 inst.instruction |= (inst.operands[0].imm << 3);
10500 }
10501
10502 /* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
10503 SMLAxy{cond} Rd,Rm,Rs,Rn
10504 SMLAWy{cond} Rd,Rm,Rs,Rn
10505 Error if any register is R15. */
10506
10507 static void
10508 do_smla (void)
10509 {
10510 inst.instruction |= inst.operands[0].reg << 16;
10511 inst.instruction |= inst.operands[1].reg;
10512 inst.instruction |= inst.operands[2].reg << 8;
10513 inst.instruction |= inst.operands[3].reg << 12;
10514 }
10515
10516 /* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
10517 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
10518 Error if any register is R15.
10519 Warning if Rdlo == Rdhi. */
10520
10521 static void
10522 do_smlal (void)
10523 {
10524 inst.instruction |= inst.operands[0].reg << 12;
10525 inst.instruction |= inst.operands[1].reg << 16;
10526 inst.instruction |= inst.operands[2].reg;
10527 inst.instruction |= inst.operands[3].reg << 8;
10528
10529 if (inst.operands[0].reg == inst.operands[1].reg)
10530 as_tsktsk (_("rdhi and rdlo must be different"));
10531 }
10532
10533 /* ARM V5E (El Segundo) signed-multiply (argument parse)
10534 SMULxy{cond} Rd,Rm,Rs
10535 Error if any register is R15. */
10536
10537 static void
10538 do_smul (void)
10539 {
10540 inst.instruction |= inst.operands[0].reg << 16;
10541 inst.instruction |= inst.operands[1].reg;
10542 inst.instruction |= inst.operands[2].reg << 8;
10543 }
10544
10545 /* ARM V6 srs (argument parse). The variable fields in the encoding are
10546 the same for both ARM and Thumb-2. */
10547
10548 static void
10549 do_srs (void)
10550 {
10551 int reg;
10552
10553 if (inst.operands[0].present)
10554 {
10555 reg = inst.operands[0].reg;
10556 constraint (reg != REG_SP, _("SRS base register must be r13"));
10557 }
10558 else
10559 reg = REG_SP;
10560
10561 inst.instruction |= reg << 16;
10562 inst.instruction |= inst.operands[1].imm;
10563 if (inst.operands[0].writeback || inst.operands[1].writeback)
10564 inst.instruction |= WRITE_BACK;
10565 }
10566
10567 /* ARM V6 strex (argument parse). */
10568
10569 static void
10570 do_strex (void)
10571 {
10572 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
10573 || inst.operands[2].postind || inst.operands[2].writeback
10574 || inst.operands[2].immisreg || inst.operands[2].shifted
10575 || inst.operands[2].negative
10576 /* See comment in do_ldrex(). */
10577 || (inst.operands[2].reg == REG_PC),
10578 BAD_ADDR_MODE);
10579
10580 constraint (inst.operands[0].reg == inst.operands[1].reg
10581 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10582
10583 constraint (inst.relocs[0].exp.X_op != O_constant
10584 || inst.relocs[0].exp.X_add_number != 0,
10585 _("offset must be zero in ARM encoding"));
10586
10587 inst.instruction |= inst.operands[0].reg << 12;
10588 inst.instruction |= inst.operands[1].reg;
10589 inst.instruction |= inst.operands[2].reg << 16;
10590 inst.relocs[0].type = BFD_RELOC_UNUSED;
10591 }
10592
10593 static void
10594 do_t_strexbh (void)
10595 {
10596 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
10597 || inst.operands[2].postind || inst.operands[2].writeback
10598 || inst.operands[2].immisreg || inst.operands[2].shifted
10599 || inst.operands[2].negative,
10600 BAD_ADDR_MODE);
10601
10602 constraint (inst.operands[0].reg == inst.operands[1].reg
10603 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10604
10605 do_rm_rd_rn ();
10606 }
10607
10608 static void
10609 do_strexd (void)
10610 {
10611 constraint (inst.operands[1].reg % 2 != 0,
10612 _("even register required"));
10613 constraint (inst.operands[2].present
10614 && inst.operands[2].reg != inst.operands[1].reg + 1,
10615 _("can only store two consecutive registers"));
10616 /* If op 2 were present and equal to PC, this function wouldn't
10617 have been called in the first place. */
10618 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
10619
10620 constraint (inst.operands[0].reg == inst.operands[1].reg
10621 || inst.operands[0].reg == inst.operands[1].reg + 1
10622 || inst.operands[0].reg == inst.operands[3].reg,
10623 BAD_OVERLAP);
10624
10625 inst.instruction |= inst.operands[0].reg << 12;
10626 inst.instruction |= inst.operands[1].reg;
10627 inst.instruction |= inst.operands[3].reg << 16;
10628 }
10629
10630 /* ARM V8 STRL. */
10631 static void
10632 do_stlex (void)
10633 {
10634 constraint (inst.operands[0].reg == inst.operands[1].reg
10635 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10636
10637 do_rd_rm_rn ();
10638 }
10639
10640 static void
10641 do_t_stlex (void)
10642 {
10643 constraint (inst.operands[0].reg == inst.operands[1].reg
10644 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
10645
10646 do_rm_rd_rn ();
10647 }
10648
10649 /* ARM V6 SXTAH extracts a 16-bit value from a register, sign
10650 extends it to 32-bits, and adds the result to a value in another
10651 register. You can specify a rotation by 0, 8, 16, or 24 bits
10652 before extracting the 16-bit value.
10653 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
10654 Condition defaults to COND_ALWAYS.
10655 Error if any register uses R15. */
10656
10657 static void
10658 do_sxtah (void)
10659 {
10660 inst.instruction |= inst.operands[0].reg << 12;
10661 inst.instruction |= inst.operands[1].reg << 16;
10662 inst.instruction |= inst.operands[2].reg;
10663 inst.instruction |= inst.operands[3].imm << 10;
10664 }
10665
10666 /* ARM V6 SXTH.
10667
10668 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
10669 Condition defaults to COND_ALWAYS.
10670 Error if any register uses R15. */
10671
10672 static void
10673 do_sxth (void)
10674 {
10675 inst.instruction |= inst.operands[0].reg << 12;
10676 inst.instruction |= inst.operands[1].reg;
10677 inst.instruction |= inst.operands[2].imm << 10;
10678 }
10679 \f
10680 /* VFP instructions. In a logical order: SP variant first, monad
10681 before dyad, arithmetic then move then load/store. */
10682
10683 static void
10684 do_vfp_sp_monadic (void)
10685 {
10686 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10687 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10688 _(BAD_FPU));
10689
10690 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10691 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
10692 }
10693
10694 static void
10695 do_vfp_sp_dyadic (void)
10696 {
10697 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10698 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
10699 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
10700 }
10701
10702 static void
10703 do_vfp_sp_compare_z (void)
10704 {
10705 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10706 }
10707
10708 static void
10709 do_vfp_dp_sp_cvt (void)
10710 {
10711 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10712 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
10713 }
10714
10715 static void
10716 do_vfp_sp_dp_cvt (void)
10717 {
10718 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10719 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
10720 }
10721
10722 static void
10723 do_vfp_reg_from_sp (void)
10724 {
10725 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10726 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10727 _(BAD_FPU));
10728
10729 inst.instruction |= inst.operands[0].reg << 12;
10730 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
10731 }
10732
10733 static void
10734 do_vfp_reg2_from_sp2 (void)
10735 {
10736 constraint (inst.operands[2].imm != 2,
10737 _("only two consecutive VFP SP registers allowed here"));
10738 inst.instruction |= inst.operands[0].reg << 12;
10739 inst.instruction |= inst.operands[1].reg << 16;
10740 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
10741 }
10742
10743 static void
10744 do_vfp_sp_from_reg (void)
10745 {
10746 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
10747 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10748 _(BAD_FPU));
10749
10750 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
10751 inst.instruction |= inst.operands[1].reg << 12;
10752 }
10753
10754 static void
10755 do_vfp_sp2_from_reg2 (void)
10756 {
10757 constraint (inst.operands[0].imm != 2,
10758 _("only two consecutive VFP SP registers allowed here"));
10759 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
10760 inst.instruction |= inst.operands[1].reg << 12;
10761 inst.instruction |= inst.operands[2].reg << 16;
10762 }
10763
10764 static void
10765 do_vfp_sp_ldst (void)
10766 {
10767 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10768 encode_arm_cp_address (1, FALSE, TRUE, 0);
10769 }
10770
10771 static void
10772 do_vfp_dp_ldst (void)
10773 {
10774 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10775 encode_arm_cp_address (1, FALSE, TRUE, 0);
10776 }
10777
10778
10779 static void
10780 vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
10781 {
10782 if (inst.operands[0].writeback)
10783 inst.instruction |= WRITE_BACK;
10784 else
10785 constraint (ldstm_type != VFP_LDSTMIA,
10786 _("this addressing mode requires base-register writeback"));
10787 inst.instruction |= inst.operands[0].reg << 16;
10788 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
10789 inst.instruction |= inst.operands[1].imm;
10790 }
10791
10792 static void
10793 vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
10794 {
10795 int count;
10796
10797 if (inst.operands[0].writeback)
10798 inst.instruction |= WRITE_BACK;
10799 else
10800 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
10801 _("this addressing mode requires base-register writeback"));
10802
10803 inst.instruction |= inst.operands[0].reg << 16;
10804 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10805
10806 count = inst.operands[1].imm << 1;
10807 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
10808 count += 1;
10809
10810 inst.instruction |= count;
10811 }
10812
10813 static void
10814 do_vfp_sp_ldstmia (void)
10815 {
10816 vfp_sp_ldstm (VFP_LDSTMIA);
10817 }
10818
10819 static void
10820 do_vfp_sp_ldstmdb (void)
10821 {
10822 vfp_sp_ldstm (VFP_LDSTMDB);
10823 }
10824
10825 static void
10826 do_vfp_dp_ldstmia (void)
10827 {
10828 vfp_dp_ldstm (VFP_LDSTMIA);
10829 }
10830
10831 static void
10832 do_vfp_dp_ldstmdb (void)
10833 {
10834 vfp_dp_ldstm (VFP_LDSTMDB);
10835 }
10836
10837 static void
10838 do_vfp_xp_ldstmia (void)
10839 {
10840 vfp_dp_ldstm (VFP_LDSTMIAX);
10841 }
10842
10843 static void
10844 do_vfp_xp_ldstmdb (void)
10845 {
10846 vfp_dp_ldstm (VFP_LDSTMDBX);
10847 }
10848
10849 static void
10850 do_vfp_dp_rd_rm (void)
10851 {
10852 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
10853 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10854 _(BAD_FPU));
10855
10856 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10857 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
10858 }
10859
10860 static void
10861 do_vfp_dp_rn_rd (void)
10862 {
10863 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
10864 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10865 }
10866
10867 static void
10868 do_vfp_dp_rd_rn (void)
10869 {
10870 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10871 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
10872 }
10873
10874 static void
10875 do_vfp_dp_rd_rn_rm (void)
10876 {
10877 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
10878 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10879 _(BAD_FPU));
10880
10881 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10882 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
10883 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
10884 }
10885
10886 static void
10887 do_vfp_dp_rd (void)
10888 {
10889 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10890 }
10891
10892 static void
10893 do_vfp_dp_rm_rd_rn (void)
10894 {
10895 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
10896 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
10897 _(BAD_FPU));
10898
10899 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
10900 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
10901 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
10902 }
10903
10904 /* VFPv3 instructions. */
10905 static void
10906 do_vfp_sp_const (void)
10907 {
10908 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10909 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
10910 inst.instruction |= (inst.operands[1].imm & 0x0f);
10911 }
10912
10913 static void
10914 do_vfp_dp_const (void)
10915 {
10916 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10917 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
10918 inst.instruction |= (inst.operands[1].imm & 0x0f);
10919 }
10920
10921 static void
10922 vfp_conv (int srcsize)
10923 {
10924 int immbits = srcsize - inst.operands[1].imm;
10925
10926 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
10927 {
10928 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
10929 i.e. immbits must be in range 0 - 16. */
10930 inst.error = _("immediate value out of range, expected range [0, 16]");
10931 return;
10932 }
10933 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
10934 {
10935 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
10936 i.e. immbits must be in range 0 - 31. */
10937 inst.error = _("immediate value out of range, expected range [1, 32]");
10938 return;
10939 }
10940
10941 inst.instruction |= (immbits & 1) << 5;
10942 inst.instruction |= (immbits >> 1);
10943 }
10944
10945 static void
10946 do_vfp_sp_conv_16 (void)
10947 {
10948 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10949 vfp_conv (16);
10950 }
10951
10952 static void
10953 do_vfp_dp_conv_16 (void)
10954 {
10955 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10956 vfp_conv (16);
10957 }
10958
10959 static void
10960 do_vfp_sp_conv_32 (void)
10961 {
10962 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
10963 vfp_conv (32);
10964 }
10965
10966 static void
10967 do_vfp_dp_conv_32 (void)
10968 {
10969 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
10970 vfp_conv (32);
10971 }
10972 \f
10973 /* FPA instructions. Also in a logical order. */
10974
10975 static void
10976 do_fpa_cmp (void)
10977 {
10978 inst.instruction |= inst.operands[0].reg << 16;
10979 inst.instruction |= inst.operands[1].reg;
10980 }
10981
10982 static void
10983 do_fpa_ldmstm (void)
10984 {
10985 inst.instruction |= inst.operands[0].reg << 12;
10986 switch (inst.operands[1].imm)
10987 {
10988 case 1: inst.instruction |= CP_T_X; break;
10989 case 2: inst.instruction |= CP_T_Y; break;
10990 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
10991 case 4: break;
10992 default: abort ();
10993 }
10994
10995 if (inst.instruction & (PRE_INDEX | INDEX_UP))
10996 {
10997 /* The instruction specified "ea" or "fd", so we can only accept
10998 [Rn]{!}. The instruction does not really support stacking or
10999 unstacking, so we have to emulate these by setting appropriate
11000 bits and offsets. */
11001 constraint (inst.relocs[0].exp.X_op != O_constant
11002 || inst.relocs[0].exp.X_add_number != 0,
11003 _("this instruction does not support indexing"));
11004
11005 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
11006 inst.relocs[0].exp.X_add_number = 12 * inst.operands[1].imm;
11007
11008 if (!(inst.instruction & INDEX_UP))
11009 inst.relocs[0].exp.X_add_number = -inst.relocs[0].exp.X_add_number;
11010
11011 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
11012 {
11013 inst.operands[2].preind = 0;
11014 inst.operands[2].postind = 1;
11015 }
11016 }
11017
11018 encode_arm_cp_address (2, TRUE, TRUE, 0);
11019 }
11020 \f
11021 /* iWMMXt instructions: strictly in alphabetical order. */
11022
11023 static void
11024 do_iwmmxt_tandorc (void)
11025 {
11026 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
11027 }
11028
11029 static void
11030 do_iwmmxt_textrc (void)
11031 {
11032 inst.instruction |= inst.operands[0].reg << 12;
11033 inst.instruction |= inst.operands[1].imm;
11034 }
11035
11036 static void
11037 do_iwmmxt_textrm (void)
11038 {
11039 inst.instruction |= inst.operands[0].reg << 12;
11040 inst.instruction |= inst.operands[1].reg << 16;
11041 inst.instruction |= inst.operands[2].imm;
11042 }
11043
11044 static void
11045 do_iwmmxt_tinsr (void)
11046 {
11047 inst.instruction |= inst.operands[0].reg << 16;
11048 inst.instruction |= inst.operands[1].reg << 12;
11049 inst.instruction |= inst.operands[2].imm;
11050 }
11051
11052 static void
11053 do_iwmmxt_tmia (void)
11054 {
11055 inst.instruction |= inst.operands[0].reg << 5;
11056 inst.instruction |= inst.operands[1].reg;
11057 inst.instruction |= inst.operands[2].reg << 12;
11058 }
11059
11060 static void
11061 do_iwmmxt_waligni (void)
11062 {
11063 inst.instruction |= inst.operands[0].reg << 12;
11064 inst.instruction |= inst.operands[1].reg << 16;
11065 inst.instruction |= inst.operands[2].reg;
11066 inst.instruction |= inst.operands[3].imm << 20;
11067 }
11068
11069 static void
11070 do_iwmmxt_wmerge (void)
11071 {
11072 inst.instruction |= inst.operands[0].reg << 12;
11073 inst.instruction |= inst.operands[1].reg << 16;
11074 inst.instruction |= inst.operands[2].reg;
11075 inst.instruction |= inst.operands[3].imm << 21;
11076 }
11077
11078 static void
11079 do_iwmmxt_wmov (void)
11080 {
11081 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
11082 inst.instruction |= inst.operands[0].reg << 12;
11083 inst.instruction |= inst.operands[1].reg << 16;
11084 inst.instruction |= inst.operands[1].reg;
11085 }
11086
11087 static void
11088 do_iwmmxt_wldstbh (void)
11089 {
11090 int reloc;
11091 inst.instruction |= inst.operands[0].reg << 12;
11092 if (thumb_mode)
11093 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
11094 else
11095 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
11096 encode_arm_cp_address (1, TRUE, FALSE, reloc);
11097 }
11098
11099 static void
11100 do_iwmmxt_wldstw (void)
11101 {
11102 /* RIWR_RIWC clears .isreg for a control register. */
11103 if (!inst.operands[0].isreg)
11104 {
11105 constraint (inst.cond != COND_ALWAYS, BAD_COND);
11106 inst.instruction |= 0xf0000000;
11107 }
11108
11109 inst.instruction |= inst.operands[0].reg << 12;
11110 encode_arm_cp_address (1, TRUE, TRUE, 0);
11111 }
11112
11113 static void
11114 do_iwmmxt_wldstd (void)
11115 {
11116 inst.instruction |= inst.operands[0].reg << 12;
11117 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
11118 && inst.operands[1].immisreg)
11119 {
11120 inst.instruction &= ~0x1a000ff;
11121 inst.instruction |= (0xfU << 28);
11122 if (inst.operands[1].preind)
11123 inst.instruction |= PRE_INDEX;
11124 if (!inst.operands[1].negative)
11125 inst.instruction |= INDEX_UP;
11126 if (inst.operands[1].writeback)
11127 inst.instruction |= WRITE_BACK;
11128 inst.instruction |= inst.operands[1].reg << 16;
11129 inst.instruction |= inst.relocs[0].exp.X_add_number << 4;
11130 inst.instruction |= inst.operands[1].imm;
11131 }
11132 else
11133 encode_arm_cp_address (1, TRUE, FALSE, 0);
11134 }
11135
11136 static void
11137 do_iwmmxt_wshufh (void)
11138 {
11139 inst.instruction |= inst.operands[0].reg << 12;
11140 inst.instruction |= inst.operands[1].reg << 16;
11141 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
11142 inst.instruction |= (inst.operands[2].imm & 0x0f);
11143 }
11144
11145 static void
11146 do_iwmmxt_wzero (void)
11147 {
11148 /* WZERO reg is an alias for WANDN reg, reg, reg. */
11149 inst.instruction |= inst.operands[0].reg;
11150 inst.instruction |= inst.operands[0].reg << 12;
11151 inst.instruction |= inst.operands[0].reg << 16;
11152 }
11153
11154 static void
11155 do_iwmmxt_wrwrwr_or_imm5 (void)
11156 {
11157 if (inst.operands[2].isreg)
11158 do_rd_rn_rm ();
11159 else {
11160 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
11161 _("immediate operand requires iWMMXt2"));
11162 do_rd_rn ();
11163 if (inst.operands[2].imm == 0)
11164 {
11165 switch ((inst.instruction >> 20) & 0xf)
11166 {
11167 case 4:
11168 case 5:
11169 case 6:
11170 case 7:
11171 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
11172 inst.operands[2].imm = 16;
11173 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
11174 break;
11175 case 8:
11176 case 9:
11177 case 10:
11178 case 11:
11179 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
11180 inst.operands[2].imm = 32;
11181 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
11182 break;
11183 case 12:
11184 case 13:
11185 case 14:
11186 case 15:
11187 {
11188 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
11189 unsigned long wrn;
11190 wrn = (inst.instruction >> 16) & 0xf;
11191 inst.instruction &= 0xff0fff0f;
11192 inst.instruction |= wrn;
11193 /* Bail out here; the instruction is now assembled. */
11194 return;
11195 }
11196 }
11197 }
11198 /* Map 32 -> 0, etc. */
11199 inst.operands[2].imm &= 0x1f;
11200 inst.instruction |= (0xfU << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
11201 }
11202 }
11203 \f
11204 /* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
11205 operations first, then control, shift, and load/store. */
11206
11207 /* Insns like "foo X,Y,Z". */
11208
11209 static void
11210 do_mav_triple (void)
11211 {
11212 inst.instruction |= inst.operands[0].reg << 16;
11213 inst.instruction |= inst.operands[1].reg;
11214 inst.instruction |= inst.operands[2].reg << 12;
11215 }
11216
11217 /* Insns like "foo W,X,Y,Z".
11218 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
11219
11220 static void
11221 do_mav_quad (void)
11222 {
11223 inst.instruction |= inst.operands[0].reg << 5;
11224 inst.instruction |= inst.operands[1].reg << 12;
11225 inst.instruction |= inst.operands[2].reg << 16;
11226 inst.instruction |= inst.operands[3].reg;
11227 }
11228
11229 /* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
11230 static void
11231 do_mav_dspsc (void)
11232 {
11233 inst.instruction |= inst.operands[1].reg << 12;
11234 }
11235
11236 /* Maverick shift immediate instructions.
11237 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
11238 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
11239
11240 static void
11241 do_mav_shift (void)
11242 {
11243 int imm = inst.operands[2].imm;
11244
11245 inst.instruction |= inst.operands[0].reg << 12;
11246 inst.instruction |= inst.operands[1].reg << 16;
11247
11248 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
11249 Bits 5-7 of the insn should have bits 4-6 of the immediate.
11250 Bit 4 should be 0. */
11251 imm = (imm & 0xf) | ((imm & 0x70) << 1);
11252
11253 inst.instruction |= imm;
11254 }
11255 \f
11256 /* XScale instructions. Also sorted arithmetic before move. */
11257
11258 /* Xscale multiply-accumulate (argument parse)
11259 MIAcc acc0,Rm,Rs
11260 MIAPHcc acc0,Rm,Rs
11261 MIAxycc acc0,Rm,Rs. */
11262
11263 static void
11264 do_xsc_mia (void)
11265 {
11266 inst.instruction |= inst.operands[1].reg;
11267 inst.instruction |= inst.operands[2].reg << 12;
11268 }
11269
11270 /* Xscale move-accumulator-register (argument parse)
11271
11272 MARcc acc0,RdLo,RdHi. */
11273
11274 static void
11275 do_xsc_mar (void)
11276 {
11277 inst.instruction |= inst.operands[1].reg << 12;
11278 inst.instruction |= inst.operands[2].reg << 16;
11279 }
11280
11281 /* Xscale move-register-accumulator (argument parse)
11282
11283 MRAcc RdLo,RdHi,acc0. */
11284
11285 static void
11286 do_xsc_mra (void)
11287 {
11288 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
11289 inst.instruction |= inst.operands[0].reg << 12;
11290 inst.instruction |= inst.operands[1].reg << 16;
11291 }
11292 \f
11293 /* Encoding functions relevant only to Thumb. */
11294
11295 /* inst.operands[i] is a shifted-register operand; encode
11296 it into inst.instruction in the format used by Thumb32. */
11297
11298 static void
11299 encode_thumb32_shifted_operand (int i)
11300 {
11301 unsigned int value = inst.relocs[0].exp.X_add_number;
11302 unsigned int shift = inst.operands[i].shift_kind;
11303
11304 constraint (inst.operands[i].immisreg,
11305 _("shift by register not allowed in thumb mode"));
11306 inst.instruction |= inst.operands[i].reg;
11307 if (shift == SHIFT_RRX)
11308 inst.instruction |= SHIFT_ROR << 4;
11309 else
11310 {
11311 constraint (inst.relocs[0].exp.X_op != O_constant,
11312 _("expression too complex"));
11313
11314 constraint (value > 32
11315 || (value == 32 && (shift == SHIFT_LSL
11316 || shift == SHIFT_ROR)),
11317 _("shift expression is too large"));
11318
11319 if (value == 0)
11320 shift = SHIFT_LSL;
11321 else if (value == 32)
11322 value = 0;
11323
11324 inst.instruction |= shift << 4;
11325 inst.instruction |= (value & 0x1c) << 10;
11326 inst.instruction |= (value & 0x03) << 6;
11327 }
11328 }
11329
11330
11331 /* inst.operands[i] was set up by parse_address. Encode it into a
11332 Thumb32 format load or store instruction. Reject forms that cannot
11333 be used with such instructions. If is_t is true, reject forms that
11334 cannot be used with a T instruction; if is_d is true, reject forms
11335 that cannot be used with a D instruction. If it is a store insn,
11336 reject PC in Rn. */
11337
11338 static void
11339 encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
11340 {
11341 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
11342
11343 constraint (!inst.operands[i].isreg,
11344 _("Instruction does not support =N addresses"));
11345
11346 inst.instruction |= inst.operands[i].reg << 16;
11347 if (inst.operands[i].immisreg)
11348 {
11349 constraint (is_pc, BAD_PC_ADDRESSING);
11350 constraint (is_t || is_d, _("cannot use register index with this instruction"));
11351 constraint (inst.operands[i].negative,
11352 _("Thumb does not support negative register indexing"));
11353 constraint (inst.operands[i].postind,
11354 _("Thumb does not support register post-indexing"));
11355 constraint (inst.operands[i].writeback,
11356 _("Thumb does not support register indexing with writeback"));
11357 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
11358 _("Thumb supports only LSL in shifted register indexing"));
11359
11360 inst.instruction |= inst.operands[i].imm;
11361 if (inst.operands[i].shifted)
11362 {
11363 constraint (inst.relocs[0].exp.X_op != O_constant,
11364 _("expression too complex"));
11365 constraint (inst.relocs[0].exp.X_add_number < 0
11366 || inst.relocs[0].exp.X_add_number > 3,
11367 _("shift out of range"));
11368 inst.instruction |= inst.relocs[0].exp.X_add_number << 4;
11369 }
11370 inst.relocs[0].type = BFD_RELOC_UNUSED;
11371 }
11372 else if (inst.operands[i].preind)
11373 {
11374 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
11375 constraint (is_t && inst.operands[i].writeback,
11376 _("cannot use writeback with this instruction"));
11377 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
11378 BAD_PC_ADDRESSING);
11379
11380 if (is_d)
11381 {
11382 inst.instruction |= 0x01000000;
11383 if (inst.operands[i].writeback)
11384 inst.instruction |= 0x00200000;
11385 }
11386 else
11387 {
11388 inst.instruction |= 0x00000c00;
11389 if (inst.operands[i].writeback)
11390 inst.instruction |= 0x00000100;
11391 }
11392 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_IMM;
11393 }
11394 else if (inst.operands[i].postind)
11395 {
11396 gas_assert (inst.operands[i].writeback);
11397 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
11398 constraint (is_t, _("cannot use post-indexing with this instruction"));
11399
11400 if (is_d)
11401 inst.instruction |= 0x00200000;
11402 else
11403 inst.instruction |= 0x00000900;
11404 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_IMM;
11405 }
11406 else /* unindexed - only for coprocessor */
11407 inst.error = _("instruction does not accept unindexed addressing");
11408 }
11409
11410 /* Table of Thumb instructions which exist in 16- and/or 32-bit
11411 encodings (the latter only in post-V6T2 cores). The index is the
11412 value used in the insns table below. When there is more than one
11413 possible 16-bit encoding for the instruction, this table always
11414 holds variant (1).
11415 Also contains several pseudo-instructions used during relaxation. */
11416 #define T16_32_TAB \
11417 X(_adc, 4140, eb400000), \
11418 X(_adcs, 4140, eb500000), \
11419 X(_add, 1c00, eb000000), \
11420 X(_adds, 1c00, eb100000), \
11421 X(_addi, 0000, f1000000), \
11422 X(_addis, 0000, f1100000), \
11423 X(_add_pc,000f, f20f0000), \
11424 X(_add_sp,000d, f10d0000), \
11425 X(_adr, 000f, f20f0000), \
11426 X(_and, 4000, ea000000), \
11427 X(_ands, 4000, ea100000), \
11428 X(_asr, 1000, fa40f000), \
11429 X(_asrs, 1000, fa50f000), \
11430 X(_b, e000, f000b000), \
11431 X(_bcond, d000, f0008000), \
11432 X(_bf, 0000, f040e001), \
11433 X(_bfcsel,0000, f000e001), \
11434 X(_bfx, 0000, f060e001), \
11435 X(_bfl, 0000, f000c001), \
11436 X(_bflx, 0000, f070e001), \
11437 X(_bic, 4380, ea200000), \
11438 X(_bics, 4380, ea300000), \
11439 X(_cinc, 0000, ea509000), \
11440 X(_cinv, 0000, ea50a000), \
11441 X(_cmn, 42c0, eb100f00), \
11442 X(_cmp, 2800, ebb00f00), \
11443 X(_cneg, 0000, ea50b000), \
11444 X(_cpsie, b660, f3af8400), \
11445 X(_cpsid, b670, f3af8600), \
11446 X(_cpy, 4600, ea4f0000), \
11447 X(_csel, 0000, ea508000), \
11448 X(_cset, 0000, ea5f900f), \
11449 X(_csetm, 0000, ea5fa00f), \
11450 X(_csinc, 0000, ea509000), \
11451 X(_csinv, 0000, ea50a000), \
11452 X(_csneg, 0000, ea50b000), \
11453 X(_dec_sp,80dd, f1ad0d00), \
11454 X(_dls, 0000, f040e001), \
11455 X(_dlstp, 0000, f000e001), \
11456 X(_eor, 4040, ea800000), \
11457 X(_eors, 4040, ea900000), \
11458 X(_inc_sp,00dd, f10d0d00), \
11459 X(_lctp, 0000, f00fe001), \
11460 X(_ldmia, c800, e8900000), \
11461 X(_ldr, 6800, f8500000), \
11462 X(_ldrb, 7800, f8100000), \
11463 X(_ldrh, 8800, f8300000), \
11464 X(_ldrsb, 5600, f9100000), \
11465 X(_ldrsh, 5e00, f9300000), \
11466 X(_ldr_pc,4800, f85f0000), \
11467 X(_ldr_pc2,4800, f85f0000), \
11468 X(_ldr_sp,9800, f85d0000), \
11469 X(_le, 0000, f00fc001), \
11470 X(_letp, 0000, f01fc001), \
11471 X(_lsl, 0000, fa00f000), \
11472 X(_lsls, 0000, fa10f000), \
11473 X(_lsr, 0800, fa20f000), \
11474 X(_lsrs, 0800, fa30f000), \
11475 X(_mov, 2000, ea4f0000), \
11476 X(_movs, 2000, ea5f0000), \
11477 X(_mul, 4340, fb00f000), \
11478 X(_muls, 4340, ffffffff), /* no 32b muls */ \
11479 X(_mvn, 43c0, ea6f0000), \
11480 X(_mvns, 43c0, ea7f0000), \
11481 X(_neg, 4240, f1c00000), /* rsb #0 */ \
11482 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
11483 X(_orr, 4300, ea400000), \
11484 X(_orrs, 4300, ea500000), \
11485 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
11486 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
11487 X(_rev, ba00, fa90f080), \
11488 X(_rev16, ba40, fa90f090), \
11489 X(_revsh, bac0, fa90f0b0), \
11490 X(_ror, 41c0, fa60f000), \
11491 X(_rors, 41c0, fa70f000), \
11492 X(_sbc, 4180, eb600000), \
11493 X(_sbcs, 4180, eb700000), \
11494 X(_stmia, c000, e8800000), \
11495 X(_str, 6000, f8400000), \
11496 X(_strb, 7000, f8000000), \
11497 X(_strh, 8000, f8200000), \
11498 X(_str_sp,9000, f84d0000), \
11499 X(_sub, 1e00, eba00000), \
11500 X(_subs, 1e00, ebb00000), \
11501 X(_subi, 8000, f1a00000), \
11502 X(_subis, 8000, f1b00000), \
11503 X(_sxtb, b240, fa4ff080), \
11504 X(_sxth, b200, fa0ff080), \
11505 X(_tst, 4200, ea100f00), \
11506 X(_uxtb, b2c0, fa5ff080), \
11507 X(_uxth, b280, fa1ff080), \
11508 X(_nop, bf00, f3af8000), \
11509 X(_yield, bf10, f3af8001), \
11510 X(_wfe, bf20, f3af8002), \
11511 X(_wfi, bf30, f3af8003), \
11512 X(_wls, 0000, f040c001), \
11513 X(_wlstp, 0000, f000c001), \
11514 X(_sev, bf40, f3af8004), \
11515 X(_sevl, bf50, f3af8005), \
11516 X(_udf, de00, f7f0a000)
11517
11518 /* To catch errors in encoding functions, the codes are all offset by
11519 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
11520 as 16-bit instructions. */
11521 #define X(a,b,c) T_MNEM##a
11522 enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
11523 #undef X
11524
11525 #define X(a,b,c) 0x##b
11526 static const unsigned short thumb_op16[] = { T16_32_TAB };
11527 #define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
11528 #undef X
11529
11530 #define X(a,b,c) 0x##c
11531 static const unsigned int thumb_op32[] = { T16_32_TAB };
11532 #define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
11533 #define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
11534 #undef X
11535 #undef T16_32_TAB
11536
11537 /* Thumb instruction encoders, in alphabetical order. */
11538
11539 /* ADDW or SUBW. */
11540
11541 static void
11542 do_t_add_sub_w (void)
11543 {
11544 int Rd, Rn;
11545
11546 Rd = inst.operands[0].reg;
11547 Rn = inst.operands[1].reg;
11548
11549 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
11550 is the SP-{plus,minus}-immediate form of the instruction. */
11551 if (Rn == REG_SP)
11552 constraint (Rd == REG_PC, BAD_PC);
11553 else
11554 reject_bad_reg (Rd);
11555
11556 inst.instruction |= (Rn << 16) | (Rd << 8);
11557 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMM12;
11558 }
11559
11560 /* Parse an add or subtract instruction. We get here with inst.instruction
11561 equaling any of THUMB_OPCODE_add, adds, sub, or subs. */
11562
11563 static void
11564 do_t_add_sub (void)
11565 {
11566 int Rd, Rs, Rn;
11567
11568 Rd = inst.operands[0].reg;
11569 Rs = (inst.operands[1].present
11570 ? inst.operands[1].reg /* Rd, Rs, foo */
11571 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11572
11573 if (Rd == REG_PC)
11574 set_pred_insn_type_last ();
11575
11576 if (unified_syntax)
11577 {
11578 bfd_boolean flags;
11579 bfd_boolean narrow;
11580 int opcode;
11581
11582 flags = (inst.instruction == T_MNEM_adds
11583 || inst.instruction == T_MNEM_subs);
11584 if (flags)
11585 narrow = !in_pred_block ();
11586 else
11587 narrow = in_pred_block ();
11588 if (!inst.operands[2].isreg)
11589 {
11590 int add;
11591
11592 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11593 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
11594
11595 add = (inst.instruction == T_MNEM_add
11596 || inst.instruction == T_MNEM_adds);
11597 opcode = 0;
11598 if (inst.size_req != 4)
11599 {
11600 /* Attempt to use a narrow opcode, with relaxation if
11601 appropriate. */
11602 if (Rd == REG_SP && Rs == REG_SP && !flags)
11603 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
11604 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
11605 opcode = T_MNEM_add_sp;
11606 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
11607 opcode = T_MNEM_add_pc;
11608 else if (Rd <= 7 && Rs <= 7 && narrow)
11609 {
11610 if (flags)
11611 opcode = add ? T_MNEM_addis : T_MNEM_subis;
11612 else
11613 opcode = add ? T_MNEM_addi : T_MNEM_subi;
11614 }
11615 if (opcode)
11616 {
11617 inst.instruction = THUMB_OP16(opcode);
11618 inst.instruction |= (Rd << 4) | Rs;
11619 if (inst.relocs[0].type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11620 || (inst.relocs[0].type
11621 > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC))
11622 {
11623 if (inst.size_req == 2)
11624 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11625 else
11626 inst.relax = opcode;
11627 }
11628 }
11629 else
11630 constraint (inst.size_req == 2, BAD_HIREG);
11631 }
11632 if (inst.size_req == 4
11633 || (inst.size_req != 2 && !opcode))
11634 {
11635 constraint ((inst.relocs[0].type
11636 >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC)
11637 && (inst.relocs[0].type
11638 <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC) ,
11639 THUMB1_RELOC_ONLY);
11640 if (Rd == REG_PC)
11641 {
11642 constraint (add, BAD_PC);
11643 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
11644 _("only SUBS PC, LR, #const allowed"));
11645 constraint (inst.relocs[0].exp.X_op != O_constant,
11646 _("expression too complex"));
11647 constraint (inst.relocs[0].exp.X_add_number < 0
11648 || inst.relocs[0].exp.X_add_number > 0xff,
11649 _("immediate value out of range"));
11650 inst.instruction = T2_SUBS_PC_LR
11651 | inst.relocs[0].exp.X_add_number;
11652 inst.relocs[0].type = BFD_RELOC_UNUSED;
11653 return;
11654 }
11655 else if (Rs == REG_PC)
11656 {
11657 /* Always use addw/subw. */
11658 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
11659 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMM12;
11660 }
11661 else
11662 {
11663 inst.instruction = THUMB_OP32 (inst.instruction);
11664 inst.instruction = (inst.instruction & 0xe1ffffff)
11665 | 0x10000000;
11666 if (flags)
11667 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11668 else
11669 inst.relocs[0].type = BFD_RELOC_ARM_T32_ADD_IMM;
11670 }
11671 inst.instruction |= Rd << 8;
11672 inst.instruction |= Rs << 16;
11673 }
11674 }
11675 else
11676 {
11677 unsigned int value = inst.relocs[0].exp.X_add_number;
11678 unsigned int shift = inst.operands[2].shift_kind;
11679
11680 Rn = inst.operands[2].reg;
11681 /* See if we can do this with a 16-bit instruction. */
11682 if (!inst.operands[2].shifted && inst.size_req != 4)
11683 {
11684 if (Rd > 7 || Rs > 7 || Rn > 7)
11685 narrow = FALSE;
11686
11687 if (narrow)
11688 {
11689 inst.instruction = ((inst.instruction == T_MNEM_adds
11690 || inst.instruction == T_MNEM_add)
11691 ? T_OPCODE_ADD_R3
11692 : T_OPCODE_SUB_R3);
11693 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
11694 return;
11695 }
11696
11697 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
11698 {
11699 /* Thumb-1 cores (except v6-M) require at least one high
11700 register in a narrow non flag setting add. */
11701 if (Rd > 7 || Rn > 7
11702 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
11703 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
11704 {
11705 if (Rd == Rn)
11706 {
11707 Rn = Rs;
11708 Rs = Rd;
11709 }
11710 inst.instruction = T_OPCODE_ADD_HI;
11711 inst.instruction |= (Rd & 8) << 4;
11712 inst.instruction |= (Rd & 7);
11713 inst.instruction |= Rn << 3;
11714 return;
11715 }
11716 }
11717 }
11718
11719 constraint (Rd == REG_PC, BAD_PC);
11720 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11721 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
11722 constraint (Rs == REG_PC, BAD_PC);
11723 reject_bad_reg (Rn);
11724
11725 /* If we get here, it can't be done in 16 bits. */
11726 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
11727 _("shift must be constant"));
11728 inst.instruction = THUMB_OP32 (inst.instruction);
11729 inst.instruction |= Rd << 8;
11730 inst.instruction |= Rs << 16;
11731 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
11732 _("shift value over 3 not allowed in thumb mode"));
11733 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
11734 _("only LSL shift allowed in thumb mode"));
11735 encode_thumb32_shifted_operand (2);
11736 }
11737 }
11738 else
11739 {
11740 constraint (inst.instruction == T_MNEM_adds
11741 || inst.instruction == T_MNEM_subs,
11742 BAD_THUMB32);
11743
11744 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
11745 {
11746 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
11747 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
11748 BAD_HIREG);
11749
11750 inst.instruction = (inst.instruction == T_MNEM_add
11751 ? 0x0000 : 0x8000);
11752 inst.instruction |= (Rd << 4) | Rs;
11753 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11754 return;
11755 }
11756
11757 Rn = inst.operands[2].reg;
11758 constraint (inst.operands[2].shifted, _("unshifted register required"));
11759
11760 /* We now have Rd, Rs, and Rn set to registers. */
11761 if (Rd > 7 || Rs > 7 || Rn > 7)
11762 {
11763 /* Can't do this for SUB. */
11764 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
11765 inst.instruction = T_OPCODE_ADD_HI;
11766 inst.instruction |= (Rd & 8) << 4;
11767 inst.instruction |= (Rd & 7);
11768 if (Rs == Rd)
11769 inst.instruction |= Rn << 3;
11770 else if (Rn == Rd)
11771 inst.instruction |= Rs << 3;
11772 else
11773 constraint (1, _("dest must overlap one source register"));
11774 }
11775 else
11776 {
11777 inst.instruction = (inst.instruction == T_MNEM_add
11778 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
11779 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
11780 }
11781 }
11782 }
11783
11784 static void
11785 do_t_adr (void)
11786 {
11787 unsigned Rd;
11788
11789 Rd = inst.operands[0].reg;
11790 reject_bad_reg (Rd);
11791
11792 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
11793 {
11794 /* Defer to section relaxation. */
11795 inst.relax = inst.instruction;
11796 inst.instruction = THUMB_OP16 (inst.instruction);
11797 inst.instruction |= Rd << 4;
11798 }
11799 else if (unified_syntax && inst.size_req != 2)
11800 {
11801 /* Generate a 32-bit opcode. */
11802 inst.instruction = THUMB_OP32 (inst.instruction);
11803 inst.instruction |= Rd << 8;
11804 inst.relocs[0].type = BFD_RELOC_ARM_T32_ADD_PC12;
11805 inst.relocs[0].pc_rel = 1;
11806 }
11807 else
11808 {
11809 /* Generate a 16-bit opcode. */
11810 inst.instruction = THUMB_OP16 (inst.instruction);
11811 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_ADD;
11812 inst.relocs[0].exp.X_add_number -= 4; /* PC relative adjust. */
11813 inst.relocs[0].pc_rel = 1;
11814 inst.instruction |= Rd << 4;
11815 }
11816
11817 if (inst.relocs[0].exp.X_op == O_symbol
11818 && inst.relocs[0].exp.X_add_symbol != NULL
11819 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
11820 && THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
11821 inst.relocs[0].exp.X_add_number += 1;
11822 }
11823
11824 /* Arithmetic instructions for which there is just one 16-bit
11825 instruction encoding, and it allows only two low registers.
11826 For maximal compatibility with ARM syntax, we allow three register
11827 operands even when Thumb-32 instructions are not available, as long
11828 as the first two are identical. For instance, both "sbc r0,r1" and
11829 "sbc r0,r0,r1" are allowed. */
11830 static void
11831 do_t_arit3 (void)
11832 {
11833 int Rd, Rs, Rn;
11834
11835 Rd = inst.operands[0].reg;
11836 Rs = (inst.operands[1].present
11837 ? inst.operands[1].reg /* Rd, Rs, foo */
11838 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11839 Rn = inst.operands[2].reg;
11840
11841 reject_bad_reg (Rd);
11842 reject_bad_reg (Rs);
11843 if (inst.operands[2].isreg)
11844 reject_bad_reg (Rn);
11845
11846 if (unified_syntax)
11847 {
11848 if (!inst.operands[2].isreg)
11849 {
11850 /* For an immediate, we always generate a 32-bit opcode;
11851 section relaxation will shrink it later if possible. */
11852 inst.instruction = THUMB_OP32 (inst.instruction);
11853 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11854 inst.instruction |= Rd << 8;
11855 inst.instruction |= Rs << 16;
11856 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11857 }
11858 else
11859 {
11860 bfd_boolean narrow;
11861
11862 /* See if we can do this with a 16-bit instruction. */
11863 if (THUMB_SETS_FLAGS (inst.instruction))
11864 narrow = !in_pred_block ();
11865 else
11866 narrow = in_pred_block ();
11867
11868 if (Rd > 7 || Rn > 7 || Rs > 7)
11869 narrow = FALSE;
11870 if (inst.operands[2].shifted)
11871 narrow = FALSE;
11872 if (inst.size_req == 4)
11873 narrow = FALSE;
11874
11875 if (narrow
11876 && Rd == Rs)
11877 {
11878 inst.instruction = THUMB_OP16 (inst.instruction);
11879 inst.instruction |= Rd;
11880 inst.instruction |= Rn << 3;
11881 return;
11882 }
11883
11884 /* If we get here, it can't be done in 16 bits. */
11885 constraint (inst.operands[2].shifted
11886 && inst.operands[2].immisreg,
11887 _("shift must be constant"));
11888 inst.instruction = THUMB_OP32 (inst.instruction);
11889 inst.instruction |= Rd << 8;
11890 inst.instruction |= Rs << 16;
11891 encode_thumb32_shifted_operand (2);
11892 }
11893 }
11894 else
11895 {
11896 /* On its face this is a lie - the instruction does set the
11897 flags. However, the only supported mnemonic in this mode
11898 says it doesn't. */
11899 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11900
11901 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
11902 _("unshifted register required"));
11903 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
11904 constraint (Rd != Rs,
11905 _("dest and source1 must be the same register"));
11906
11907 inst.instruction = THUMB_OP16 (inst.instruction);
11908 inst.instruction |= Rd;
11909 inst.instruction |= Rn << 3;
11910 }
11911 }
11912
11913 /* Similarly, but for instructions where the arithmetic operation is
11914 commutative, so we can allow either of them to be different from
11915 the destination operand in a 16-bit instruction. For instance, all
11916 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
11917 accepted. */
11918 static void
11919 do_t_arit3c (void)
11920 {
11921 int Rd, Rs, Rn;
11922
11923 Rd = inst.operands[0].reg;
11924 Rs = (inst.operands[1].present
11925 ? inst.operands[1].reg /* Rd, Rs, foo */
11926 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
11927 Rn = inst.operands[2].reg;
11928
11929 reject_bad_reg (Rd);
11930 reject_bad_reg (Rs);
11931 if (inst.operands[2].isreg)
11932 reject_bad_reg (Rn);
11933
11934 if (unified_syntax)
11935 {
11936 if (!inst.operands[2].isreg)
11937 {
11938 /* For an immediate, we always generate a 32-bit opcode;
11939 section relaxation will shrink it later if possible. */
11940 inst.instruction = THUMB_OP32 (inst.instruction);
11941 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
11942 inst.instruction |= Rd << 8;
11943 inst.instruction |= Rs << 16;
11944 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
11945 }
11946 else
11947 {
11948 bfd_boolean narrow;
11949
11950 /* See if we can do this with a 16-bit instruction. */
11951 if (THUMB_SETS_FLAGS (inst.instruction))
11952 narrow = !in_pred_block ();
11953 else
11954 narrow = in_pred_block ();
11955
11956 if (Rd > 7 || Rn > 7 || Rs > 7)
11957 narrow = FALSE;
11958 if (inst.operands[2].shifted)
11959 narrow = FALSE;
11960 if (inst.size_req == 4)
11961 narrow = FALSE;
11962
11963 if (narrow)
11964 {
11965 if (Rd == Rs)
11966 {
11967 inst.instruction = THUMB_OP16 (inst.instruction);
11968 inst.instruction |= Rd;
11969 inst.instruction |= Rn << 3;
11970 return;
11971 }
11972 if (Rd == Rn)
11973 {
11974 inst.instruction = THUMB_OP16 (inst.instruction);
11975 inst.instruction |= Rd;
11976 inst.instruction |= Rs << 3;
11977 return;
11978 }
11979 }
11980
11981 /* If we get here, it can't be done in 16 bits. */
11982 constraint (inst.operands[2].shifted
11983 && inst.operands[2].immisreg,
11984 _("shift must be constant"));
11985 inst.instruction = THUMB_OP32 (inst.instruction);
11986 inst.instruction |= Rd << 8;
11987 inst.instruction |= Rs << 16;
11988 encode_thumb32_shifted_operand (2);
11989 }
11990 }
11991 else
11992 {
11993 /* On its face this is a lie - the instruction does set the
11994 flags. However, the only supported mnemonic in this mode
11995 says it doesn't. */
11996 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
11997
11998 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
11999 _("unshifted register required"));
12000 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
12001
12002 inst.instruction = THUMB_OP16 (inst.instruction);
12003 inst.instruction |= Rd;
12004
12005 if (Rd == Rs)
12006 inst.instruction |= Rn << 3;
12007 else if (Rd == Rn)
12008 inst.instruction |= Rs << 3;
12009 else
12010 constraint (1, _("dest must overlap one source register"));
12011 }
12012 }
12013
12014 static void
12015 do_t_bfc (void)
12016 {
12017 unsigned Rd;
12018 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
12019 constraint (msb > 32, _("bit-field extends past end of register"));
12020 /* The instruction encoding stores the LSB and MSB,
12021 not the LSB and width. */
12022 Rd = inst.operands[0].reg;
12023 reject_bad_reg (Rd);
12024 inst.instruction |= Rd << 8;
12025 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
12026 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
12027 inst.instruction |= msb - 1;
12028 }
12029
12030 static void
12031 do_t_bfi (void)
12032 {
12033 int Rd, Rn;
12034 unsigned int msb;
12035
12036 Rd = inst.operands[0].reg;
12037 reject_bad_reg (Rd);
12038
12039 /* #0 in second position is alternative syntax for bfc, which is
12040 the same instruction but with REG_PC in the Rm field. */
12041 if (!inst.operands[1].isreg)
12042 Rn = REG_PC;
12043 else
12044 {
12045 Rn = inst.operands[1].reg;
12046 reject_bad_reg (Rn);
12047 }
12048
12049 msb = inst.operands[2].imm + inst.operands[3].imm;
12050 constraint (msb > 32, _("bit-field extends past end of register"));
12051 /* The instruction encoding stores the LSB and MSB,
12052 not the LSB and width. */
12053 inst.instruction |= Rd << 8;
12054 inst.instruction |= Rn << 16;
12055 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
12056 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
12057 inst.instruction |= msb - 1;
12058 }
12059
12060 static void
12061 do_t_bfx (void)
12062 {
12063 unsigned Rd, Rn;
12064
12065 Rd = inst.operands[0].reg;
12066 Rn = inst.operands[1].reg;
12067
12068 reject_bad_reg (Rd);
12069 reject_bad_reg (Rn);
12070
12071 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
12072 _("bit-field extends past end of register"));
12073 inst.instruction |= Rd << 8;
12074 inst.instruction |= Rn << 16;
12075 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
12076 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
12077 inst.instruction |= inst.operands[3].imm - 1;
12078 }
12079
12080 /* ARM V5 Thumb BLX (argument parse)
12081 BLX <target_addr> which is BLX(1)
12082 BLX <Rm> which is BLX(2)
12083 Unfortunately, there are two different opcodes for this mnemonic.
12084 So, the insns[].value is not used, and the code here zaps values
12085 into inst.instruction.
12086
12087 ??? How to take advantage of the additional two bits of displacement
12088 available in Thumb32 mode? Need new relocation? */
12089
12090 static void
12091 do_t_blx (void)
12092 {
12093 set_pred_insn_type_last ();
12094
12095 if (inst.operands[0].isreg)
12096 {
12097 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
12098 /* We have a register, so this is BLX(2). */
12099 inst.instruction |= inst.operands[0].reg << 3;
12100 }
12101 else
12102 {
12103 /* No register. This must be BLX(1). */
12104 inst.instruction = 0xf000e800;
12105 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
12106 }
12107 }
12108
12109 static void
12110 do_t_branch (void)
12111 {
12112 int opcode;
12113 int cond;
12114 bfd_reloc_code_real_type reloc;
12115
12116 cond = inst.cond;
12117 set_pred_insn_type (IF_INSIDE_IT_LAST_INSN);
12118
12119 if (in_pred_block ())
12120 {
12121 /* Conditional branches inside IT blocks are encoded as unconditional
12122 branches. */
12123 cond = COND_ALWAYS;
12124 }
12125 else
12126 cond = inst.cond;
12127
12128 if (cond != COND_ALWAYS)
12129 opcode = T_MNEM_bcond;
12130 else
12131 opcode = inst.instruction;
12132
12133 if (unified_syntax
12134 && (inst.size_req == 4
12135 || (inst.size_req != 2
12136 && (inst.operands[0].hasreloc
12137 || inst.relocs[0].exp.X_op == O_constant))))
12138 {
12139 inst.instruction = THUMB_OP32(opcode);
12140 if (cond == COND_ALWAYS)
12141 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
12142 else
12143 {
12144 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2),
12145 _("selected architecture does not support "
12146 "wide conditional branch instruction"));
12147
12148 gas_assert (cond != 0xF);
12149 inst.instruction |= cond << 22;
12150 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
12151 }
12152 }
12153 else
12154 {
12155 inst.instruction = THUMB_OP16(opcode);
12156 if (cond == COND_ALWAYS)
12157 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
12158 else
12159 {
12160 inst.instruction |= cond << 8;
12161 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
12162 }
12163 /* Allow section relaxation. */
12164 if (unified_syntax && inst.size_req != 2)
12165 inst.relax = opcode;
12166 }
12167 inst.relocs[0].type = reloc;
12168 inst.relocs[0].pc_rel = 1;
12169 }
12170
12171 /* Actually do the work for Thumb state bkpt and hlt. The only difference
12172 between the two is the maximum immediate allowed - which is passed in
12173 RANGE. */
12174 static void
12175 do_t_bkpt_hlt1 (int range)
12176 {
12177 constraint (inst.cond != COND_ALWAYS,
12178 _("instruction is always unconditional"));
12179 if (inst.operands[0].present)
12180 {
12181 constraint (inst.operands[0].imm > range,
12182 _("immediate value out of range"));
12183 inst.instruction |= inst.operands[0].imm;
12184 }
12185
12186 set_pred_insn_type (NEUTRAL_IT_INSN);
12187 }
12188
12189 static void
12190 do_t_hlt (void)
12191 {
12192 do_t_bkpt_hlt1 (63);
12193 }
12194
12195 static void
12196 do_t_bkpt (void)
12197 {
12198 do_t_bkpt_hlt1 (255);
12199 }
12200
12201 static void
12202 do_t_branch23 (void)
12203 {
12204 set_pred_insn_type_last ();
12205 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
12206
12207 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
12208 this file. We used to simply ignore the PLT reloc type here --
12209 the branch encoding is now needed to deal with TLSCALL relocs.
12210 So if we see a PLT reloc now, put it back to how it used to be to
12211 keep the preexisting behaviour. */
12212 if (inst.relocs[0].type == BFD_RELOC_ARM_PLT32)
12213 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH23;
12214
12215 #if defined(OBJ_COFF)
12216 /* If the destination of the branch is a defined symbol which does not have
12217 the THUMB_FUNC attribute, then we must be calling a function which has
12218 the (interfacearm) attribute. We look for the Thumb entry point to that
12219 function and change the branch to refer to that function instead. */
12220 if ( inst.relocs[0].exp.X_op == O_symbol
12221 && inst.relocs[0].exp.X_add_symbol != NULL
12222 && S_IS_DEFINED (inst.relocs[0].exp.X_add_symbol)
12223 && ! THUMB_IS_FUNC (inst.relocs[0].exp.X_add_symbol))
12224 inst.relocs[0].exp.X_add_symbol
12225 = find_real_start (inst.relocs[0].exp.X_add_symbol);
12226 #endif
12227 }
12228
12229 static void
12230 do_t_bx (void)
12231 {
12232 set_pred_insn_type_last ();
12233 inst.instruction |= inst.operands[0].reg << 3;
12234 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
12235 should cause the alignment to be checked once it is known. This is
12236 because BX PC only works if the instruction is word aligned. */
12237 }
12238
12239 static void
12240 do_t_bxj (void)
12241 {
12242 int Rm;
12243
12244 set_pred_insn_type_last ();
12245 Rm = inst.operands[0].reg;
12246 reject_bad_reg (Rm);
12247 inst.instruction |= Rm << 16;
12248 }
12249
12250 static void
12251 do_t_clz (void)
12252 {
12253 unsigned Rd;
12254 unsigned Rm;
12255
12256 Rd = inst.operands[0].reg;
12257 Rm = inst.operands[1].reg;
12258
12259 reject_bad_reg (Rd);
12260 reject_bad_reg (Rm);
12261
12262 inst.instruction |= Rd << 8;
12263 inst.instruction |= Rm << 16;
12264 inst.instruction |= Rm;
12265 }
12266
12267 /* For the Armv8.1-M conditional instructions. */
12268 static void
12269 do_t_cond (void)
12270 {
12271 unsigned Rd, Rn, Rm;
12272 signed int cond;
12273
12274 constraint (inst.cond != COND_ALWAYS, BAD_COND);
12275
12276 Rd = inst.operands[0].reg;
12277 switch (inst.instruction)
12278 {
12279 case T_MNEM_csinc:
12280 case T_MNEM_csinv:
12281 case T_MNEM_csneg:
12282 case T_MNEM_csel:
12283 Rn = inst.operands[1].reg;
12284 Rm = inst.operands[2].reg;
12285 cond = inst.operands[3].imm;
12286 constraint (Rn == REG_SP, BAD_SP);
12287 constraint (Rm == REG_SP, BAD_SP);
12288 break;
12289
12290 case T_MNEM_cinc:
12291 case T_MNEM_cinv:
12292 case T_MNEM_cneg:
12293 Rn = inst.operands[1].reg;
12294 cond = inst.operands[2].imm;
12295 /* Invert the last bit to invert the cond. */
12296 cond = TOGGLE_BIT (cond, 0);
12297 constraint (Rn == REG_SP, BAD_SP);
12298 Rm = Rn;
12299 break;
12300
12301 case T_MNEM_csetm:
12302 case T_MNEM_cset:
12303 cond = inst.operands[1].imm;
12304 /* Invert the last bit to invert the cond. */
12305 cond = TOGGLE_BIT (cond, 0);
12306 Rn = REG_PC;
12307 Rm = REG_PC;
12308 break;
12309
12310 default: abort ();
12311 }
12312
12313 set_pred_insn_type (OUTSIDE_PRED_INSN);
12314 inst.instruction = THUMB_OP32 (inst.instruction);
12315 inst.instruction |= Rd << 8;
12316 inst.instruction |= Rn << 16;
12317 inst.instruction |= Rm;
12318 inst.instruction |= cond << 4;
12319 }
12320
12321 static void
12322 do_t_csdb (void)
12323 {
12324 set_pred_insn_type (OUTSIDE_PRED_INSN);
12325 }
12326
12327 static void
12328 do_t_cps (void)
12329 {
12330 set_pred_insn_type (OUTSIDE_PRED_INSN);
12331 inst.instruction |= inst.operands[0].imm;
12332 }
12333
12334 static void
12335 do_t_cpsi (void)
12336 {
12337 set_pred_insn_type (OUTSIDE_PRED_INSN);
12338 if (unified_syntax
12339 && (inst.operands[1].present || inst.size_req == 4)
12340 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
12341 {
12342 unsigned int imod = (inst.instruction & 0x0030) >> 4;
12343 inst.instruction = 0xf3af8000;
12344 inst.instruction |= imod << 9;
12345 inst.instruction |= inst.operands[0].imm << 5;
12346 if (inst.operands[1].present)
12347 inst.instruction |= 0x100 | inst.operands[1].imm;
12348 }
12349 else
12350 {
12351 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
12352 && (inst.operands[0].imm & 4),
12353 _("selected processor does not support 'A' form "
12354 "of this instruction"));
12355 constraint (inst.operands[1].present || inst.size_req == 4,
12356 _("Thumb does not support the 2-argument "
12357 "form of this instruction"));
12358 inst.instruction |= inst.operands[0].imm;
12359 }
12360 }
12361
12362 /* THUMB CPY instruction (argument parse). */
12363
12364 static void
12365 do_t_cpy (void)
12366 {
12367 if (inst.size_req == 4)
12368 {
12369 inst.instruction = THUMB_OP32 (T_MNEM_mov);
12370 inst.instruction |= inst.operands[0].reg << 8;
12371 inst.instruction |= inst.operands[1].reg;
12372 }
12373 else
12374 {
12375 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
12376 inst.instruction |= (inst.operands[0].reg & 0x7);
12377 inst.instruction |= inst.operands[1].reg << 3;
12378 }
12379 }
12380
12381 static void
12382 do_t_cbz (void)
12383 {
12384 set_pred_insn_type (OUTSIDE_PRED_INSN);
12385 constraint (inst.operands[0].reg > 7, BAD_HIREG);
12386 inst.instruction |= inst.operands[0].reg;
12387 inst.relocs[0].pc_rel = 1;
12388 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH7;
12389 }
12390
12391 static void
12392 do_t_dbg (void)
12393 {
12394 inst.instruction |= inst.operands[0].imm;
12395 }
12396
12397 static void
12398 do_t_div (void)
12399 {
12400 unsigned Rd, Rn, Rm;
12401
12402 Rd = inst.operands[0].reg;
12403 Rn = (inst.operands[1].present
12404 ? inst.operands[1].reg : Rd);
12405 Rm = inst.operands[2].reg;
12406
12407 reject_bad_reg (Rd);
12408 reject_bad_reg (Rn);
12409 reject_bad_reg (Rm);
12410
12411 inst.instruction |= Rd << 8;
12412 inst.instruction |= Rn << 16;
12413 inst.instruction |= Rm;
12414 }
12415
12416 static void
12417 do_t_hint (void)
12418 {
12419 if (unified_syntax && inst.size_req == 4)
12420 inst.instruction = THUMB_OP32 (inst.instruction);
12421 else
12422 inst.instruction = THUMB_OP16 (inst.instruction);
12423 }
12424
12425 static void
12426 do_t_it (void)
12427 {
12428 unsigned int cond = inst.operands[0].imm;
12429
12430 set_pred_insn_type (IT_INSN);
12431 now_pred.mask = (inst.instruction & 0xf) | 0x10;
12432 now_pred.cc = cond;
12433 now_pred.warn_deprecated = FALSE;
12434 now_pred.type = SCALAR_PRED;
12435
12436 /* If the condition is a negative condition, invert the mask. */
12437 if ((cond & 0x1) == 0x0)
12438 {
12439 unsigned int mask = inst.instruction & 0x000f;
12440
12441 if ((mask & 0x7) == 0)
12442 {
12443 /* No conversion needed. */
12444 now_pred.block_length = 1;
12445 }
12446 else if ((mask & 0x3) == 0)
12447 {
12448 mask ^= 0x8;
12449 now_pred.block_length = 2;
12450 }
12451 else if ((mask & 0x1) == 0)
12452 {
12453 mask ^= 0xC;
12454 now_pred.block_length = 3;
12455 }
12456 else
12457 {
12458 mask ^= 0xE;
12459 now_pred.block_length = 4;
12460 }
12461
12462 inst.instruction &= 0xfff0;
12463 inst.instruction |= mask;
12464 }
12465
12466 inst.instruction |= cond << 4;
12467 }
12468
12469 /* Helper function used for both push/pop and ldm/stm. */
12470 static void
12471 encode_thumb2_multi (bfd_boolean do_io, int base, unsigned mask,
12472 bfd_boolean writeback)
12473 {
12474 bfd_boolean load, store;
12475
12476 gas_assert (base != -1 || !do_io);
12477 load = do_io && ((inst.instruction & (1 << 20)) != 0);
12478 store = do_io && !load;
12479
12480 if (mask & (1 << 13))
12481 inst.error = _("SP not allowed in register list");
12482
12483 if (do_io && (mask & (1 << base)) != 0
12484 && writeback)
12485 inst.error = _("having the base register in the register list when "
12486 "using write back is UNPREDICTABLE");
12487
12488 if (load)
12489 {
12490 if (mask & (1 << 15))
12491 {
12492 if (mask & (1 << 14))
12493 inst.error = _("LR and PC should not both be in register list");
12494 else
12495 set_pred_insn_type_last ();
12496 }
12497 }
12498 else if (store)
12499 {
12500 if (mask & (1 << 15))
12501 inst.error = _("PC not allowed in register list");
12502 }
12503
12504 if (do_io && ((mask & (mask - 1)) == 0))
12505 {
12506 /* Single register transfers implemented as str/ldr. */
12507 if (writeback)
12508 {
12509 if (inst.instruction & (1 << 23))
12510 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
12511 else
12512 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
12513 }
12514 else
12515 {
12516 if (inst.instruction & (1 << 23))
12517 inst.instruction = 0x00800000; /* ia -> [base] */
12518 else
12519 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
12520 }
12521
12522 inst.instruction |= 0xf8400000;
12523 if (load)
12524 inst.instruction |= 0x00100000;
12525
12526 mask = ffs (mask) - 1;
12527 mask <<= 12;
12528 }
12529 else if (writeback)
12530 inst.instruction |= WRITE_BACK;
12531
12532 inst.instruction |= mask;
12533 if (do_io)
12534 inst.instruction |= base << 16;
12535 }
12536
12537 static void
12538 do_t_ldmstm (void)
12539 {
12540 /* This really doesn't seem worth it. */
12541 constraint (inst.relocs[0].type != BFD_RELOC_UNUSED,
12542 _("expression too complex"));
12543 constraint (inst.operands[1].writeback,
12544 _("Thumb load/store multiple does not support {reglist}^"));
12545
12546 if (unified_syntax)
12547 {
12548 bfd_boolean narrow;
12549 unsigned mask;
12550
12551 narrow = FALSE;
12552 /* See if we can use a 16-bit instruction. */
12553 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
12554 && inst.size_req != 4
12555 && !(inst.operands[1].imm & ~0xff))
12556 {
12557 mask = 1 << inst.operands[0].reg;
12558
12559 if (inst.operands[0].reg <= 7)
12560 {
12561 if (inst.instruction == T_MNEM_stmia
12562 ? inst.operands[0].writeback
12563 : (inst.operands[0].writeback
12564 == !(inst.operands[1].imm & mask)))
12565 {
12566 if (inst.instruction == T_MNEM_stmia
12567 && (inst.operands[1].imm & mask)
12568 && (inst.operands[1].imm & (mask - 1)))
12569 as_warn (_("value stored for r%d is UNKNOWN"),
12570 inst.operands[0].reg);
12571
12572 inst.instruction = THUMB_OP16 (inst.instruction);
12573 inst.instruction |= inst.operands[0].reg << 8;
12574 inst.instruction |= inst.operands[1].imm;
12575 narrow = TRUE;
12576 }
12577 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
12578 {
12579 /* This means 1 register in reg list one of 3 situations:
12580 1. Instruction is stmia, but without writeback.
12581 2. lmdia without writeback, but with Rn not in
12582 reglist.
12583 3. ldmia with writeback, but with Rn in reglist.
12584 Case 3 is UNPREDICTABLE behaviour, so we handle
12585 case 1 and 2 which can be converted into a 16-bit
12586 str or ldr. The SP cases are handled below. */
12587 unsigned long opcode;
12588 /* First, record an error for Case 3. */
12589 if (inst.operands[1].imm & mask
12590 && inst.operands[0].writeback)
12591 inst.error =
12592 _("having the base register in the register list when "
12593 "using write back is UNPREDICTABLE");
12594
12595 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
12596 : T_MNEM_ldr);
12597 inst.instruction = THUMB_OP16 (opcode);
12598 inst.instruction |= inst.operands[0].reg << 3;
12599 inst.instruction |= (ffs (inst.operands[1].imm)-1);
12600 narrow = TRUE;
12601 }
12602 }
12603 else if (inst.operands[0] .reg == REG_SP)
12604 {
12605 if (inst.operands[0].writeback)
12606 {
12607 inst.instruction =
12608 THUMB_OP16 (inst.instruction == T_MNEM_stmia
12609 ? T_MNEM_push : T_MNEM_pop);
12610 inst.instruction |= inst.operands[1].imm;
12611 narrow = TRUE;
12612 }
12613 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
12614 {
12615 inst.instruction =
12616 THUMB_OP16 (inst.instruction == T_MNEM_stmia
12617 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
12618 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
12619 narrow = TRUE;
12620 }
12621 }
12622 }
12623
12624 if (!narrow)
12625 {
12626 if (inst.instruction < 0xffff)
12627 inst.instruction = THUMB_OP32 (inst.instruction);
12628
12629 encode_thumb2_multi (TRUE /* do_io */, inst.operands[0].reg,
12630 inst.operands[1].imm,
12631 inst.operands[0].writeback);
12632 }
12633 }
12634 else
12635 {
12636 constraint (inst.operands[0].reg > 7
12637 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
12638 constraint (inst.instruction != T_MNEM_ldmia
12639 && inst.instruction != T_MNEM_stmia,
12640 _("Thumb-2 instruction only valid in unified syntax"));
12641 if (inst.instruction == T_MNEM_stmia)
12642 {
12643 if (!inst.operands[0].writeback)
12644 as_warn (_("this instruction will write back the base register"));
12645 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
12646 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
12647 as_warn (_("value stored for r%d is UNKNOWN"),
12648 inst.operands[0].reg);
12649 }
12650 else
12651 {
12652 if (!inst.operands[0].writeback
12653 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
12654 as_warn (_("this instruction will write back the base register"));
12655 else if (inst.operands[0].writeback
12656 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
12657 as_warn (_("this instruction will not write back the base register"));
12658 }
12659
12660 inst.instruction = THUMB_OP16 (inst.instruction);
12661 inst.instruction |= inst.operands[0].reg << 8;
12662 inst.instruction |= inst.operands[1].imm;
12663 }
12664 }
12665
12666 static void
12667 do_t_ldrex (void)
12668 {
12669 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
12670 || inst.operands[1].postind || inst.operands[1].writeback
12671 || inst.operands[1].immisreg || inst.operands[1].shifted
12672 || inst.operands[1].negative,
12673 BAD_ADDR_MODE);
12674
12675 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
12676
12677 inst.instruction |= inst.operands[0].reg << 12;
12678 inst.instruction |= inst.operands[1].reg << 16;
12679 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_U8;
12680 }
12681
12682 static void
12683 do_t_ldrexd (void)
12684 {
12685 if (!inst.operands[1].present)
12686 {
12687 constraint (inst.operands[0].reg == REG_LR,
12688 _("r14 not allowed as first register "
12689 "when second register is omitted"));
12690 inst.operands[1].reg = inst.operands[0].reg + 1;
12691 }
12692 constraint (inst.operands[0].reg == inst.operands[1].reg,
12693 BAD_OVERLAP);
12694
12695 inst.instruction |= inst.operands[0].reg << 12;
12696 inst.instruction |= inst.operands[1].reg << 8;
12697 inst.instruction |= inst.operands[2].reg << 16;
12698 }
12699
12700 static void
12701 do_t_ldst (void)
12702 {
12703 unsigned long opcode;
12704 int Rn;
12705
12706 if (inst.operands[0].isreg
12707 && !inst.operands[0].preind
12708 && inst.operands[0].reg == REG_PC)
12709 set_pred_insn_type_last ();
12710
12711 opcode = inst.instruction;
12712 if (unified_syntax)
12713 {
12714 if (!inst.operands[1].isreg)
12715 {
12716 if (opcode <= 0xffff)
12717 inst.instruction = THUMB_OP32 (opcode);
12718 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
12719 return;
12720 }
12721 if (inst.operands[1].isreg
12722 && !inst.operands[1].writeback
12723 && !inst.operands[1].shifted && !inst.operands[1].postind
12724 && !inst.operands[1].negative && inst.operands[0].reg <= 7
12725 && opcode <= 0xffff
12726 && inst.size_req != 4)
12727 {
12728 /* Insn may have a 16-bit form. */
12729 Rn = inst.operands[1].reg;
12730 if (inst.operands[1].immisreg)
12731 {
12732 inst.instruction = THUMB_OP16 (opcode);
12733 /* [Rn, Rik] */
12734 if (Rn <= 7 && inst.operands[1].imm <= 7)
12735 goto op16;
12736 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
12737 reject_bad_reg (inst.operands[1].imm);
12738 }
12739 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
12740 && opcode != T_MNEM_ldrsb)
12741 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
12742 || (Rn == REG_SP && opcode == T_MNEM_str))
12743 {
12744 /* [Rn, #const] */
12745 if (Rn > 7)
12746 {
12747 if (Rn == REG_PC)
12748 {
12749 if (inst.relocs[0].pc_rel)
12750 opcode = T_MNEM_ldr_pc2;
12751 else
12752 opcode = T_MNEM_ldr_pc;
12753 }
12754 else
12755 {
12756 if (opcode == T_MNEM_ldr)
12757 opcode = T_MNEM_ldr_sp;
12758 else
12759 opcode = T_MNEM_str_sp;
12760 }
12761 inst.instruction = inst.operands[0].reg << 8;
12762 }
12763 else
12764 {
12765 inst.instruction = inst.operands[0].reg;
12766 inst.instruction |= inst.operands[1].reg << 3;
12767 }
12768 inst.instruction |= THUMB_OP16 (opcode);
12769 if (inst.size_req == 2)
12770 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12771 else
12772 inst.relax = opcode;
12773 return;
12774 }
12775 }
12776 /* Definitely a 32-bit variant. */
12777
12778 /* Warning for Erratum 752419. */
12779 if (opcode == T_MNEM_ldr
12780 && inst.operands[0].reg == REG_SP
12781 && inst.operands[1].writeback == 1
12782 && !inst.operands[1].immisreg)
12783 {
12784 if (no_cpu_selected ()
12785 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
12786 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
12787 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
12788 as_warn (_("This instruction may be unpredictable "
12789 "if executed on M-profile cores "
12790 "with interrupts enabled."));
12791 }
12792
12793 /* Do some validations regarding addressing modes. */
12794 if (inst.operands[1].immisreg)
12795 reject_bad_reg (inst.operands[1].imm);
12796
12797 constraint (inst.operands[1].writeback == 1
12798 && inst.operands[0].reg == inst.operands[1].reg,
12799 BAD_OVERLAP);
12800
12801 inst.instruction = THUMB_OP32 (opcode);
12802 inst.instruction |= inst.operands[0].reg << 12;
12803 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
12804 check_ldr_r15_aligned ();
12805 return;
12806 }
12807
12808 constraint (inst.operands[0].reg > 7, BAD_HIREG);
12809
12810 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
12811 {
12812 /* Only [Rn,Rm] is acceptable. */
12813 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
12814 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
12815 || inst.operands[1].postind || inst.operands[1].shifted
12816 || inst.operands[1].negative,
12817 _("Thumb does not support this addressing mode"));
12818 inst.instruction = THUMB_OP16 (inst.instruction);
12819 goto op16;
12820 }
12821
12822 inst.instruction = THUMB_OP16 (inst.instruction);
12823 if (!inst.operands[1].isreg)
12824 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
12825 return;
12826
12827 constraint (!inst.operands[1].preind
12828 || inst.operands[1].shifted
12829 || inst.operands[1].writeback,
12830 _("Thumb does not support this addressing mode"));
12831 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
12832 {
12833 constraint (inst.instruction & 0x0600,
12834 _("byte or halfword not valid for base register"));
12835 constraint (inst.operands[1].reg == REG_PC
12836 && !(inst.instruction & THUMB_LOAD_BIT),
12837 _("r15 based store not allowed"));
12838 constraint (inst.operands[1].immisreg,
12839 _("invalid base register for register offset"));
12840
12841 if (inst.operands[1].reg == REG_PC)
12842 inst.instruction = T_OPCODE_LDR_PC;
12843 else if (inst.instruction & THUMB_LOAD_BIT)
12844 inst.instruction = T_OPCODE_LDR_SP;
12845 else
12846 inst.instruction = T_OPCODE_STR_SP;
12847
12848 inst.instruction |= inst.operands[0].reg << 8;
12849 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12850 return;
12851 }
12852
12853 constraint (inst.operands[1].reg > 7, BAD_HIREG);
12854 if (!inst.operands[1].immisreg)
12855 {
12856 /* Immediate offset. */
12857 inst.instruction |= inst.operands[0].reg;
12858 inst.instruction |= inst.operands[1].reg << 3;
12859 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_OFFSET;
12860 return;
12861 }
12862
12863 /* Register offset. */
12864 constraint (inst.operands[1].imm > 7, BAD_HIREG);
12865 constraint (inst.operands[1].negative,
12866 _("Thumb does not support this addressing mode"));
12867
12868 op16:
12869 switch (inst.instruction)
12870 {
12871 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
12872 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
12873 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
12874 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
12875 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
12876 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
12877 case 0x5600 /* ldrsb */:
12878 case 0x5e00 /* ldrsh */: break;
12879 default: abort ();
12880 }
12881
12882 inst.instruction |= inst.operands[0].reg;
12883 inst.instruction |= inst.operands[1].reg << 3;
12884 inst.instruction |= inst.operands[1].imm << 6;
12885 }
12886
12887 static void
12888 do_t_ldstd (void)
12889 {
12890 if (!inst.operands[1].present)
12891 {
12892 inst.operands[1].reg = inst.operands[0].reg + 1;
12893 constraint (inst.operands[0].reg == REG_LR,
12894 _("r14 not allowed here"));
12895 constraint (inst.operands[0].reg == REG_R12,
12896 _("r12 not allowed here"));
12897 }
12898
12899 if (inst.operands[2].writeback
12900 && (inst.operands[0].reg == inst.operands[2].reg
12901 || inst.operands[1].reg == inst.operands[2].reg))
12902 as_warn (_("base register written back, and overlaps "
12903 "one of transfer registers"));
12904
12905 inst.instruction |= inst.operands[0].reg << 12;
12906 inst.instruction |= inst.operands[1].reg << 8;
12907 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
12908 }
12909
12910 static void
12911 do_t_ldstt (void)
12912 {
12913 inst.instruction |= inst.operands[0].reg << 12;
12914 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
12915 }
12916
12917 static void
12918 do_t_mla (void)
12919 {
12920 unsigned Rd, Rn, Rm, Ra;
12921
12922 Rd = inst.operands[0].reg;
12923 Rn = inst.operands[1].reg;
12924 Rm = inst.operands[2].reg;
12925 Ra = inst.operands[3].reg;
12926
12927 reject_bad_reg (Rd);
12928 reject_bad_reg (Rn);
12929 reject_bad_reg (Rm);
12930 reject_bad_reg (Ra);
12931
12932 inst.instruction |= Rd << 8;
12933 inst.instruction |= Rn << 16;
12934 inst.instruction |= Rm;
12935 inst.instruction |= Ra << 12;
12936 }
12937
12938 static void
12939 do_t_mlal (void)
12940 {
12941 unsigned RdLo, RdHi, Rn, Rm;
12942
12943 RdLo = inst.operands[0].reg;
12944 RdHi = inst.operands[1].reg;
12945 Rn = inst.operands[2].reg;
12946 Rm = inst.operands[3].reg;
12947
12948 reject_bad_reg (RdLo);
12949 reject_bad_reg (RdHi);
12950 reject_bad_reg (Rn);
12951 reject_bad_reg (Rm);
12952
12953 inst.instruction |= RdLo << 12;
12954 inst.instruction |= RdHi << 8;
12955 inst.instruction |= Rn << 16;
12956 inst.instruction |= Rm;
12957 }
12958
12959 static void
12960 do_t_mov_cmp (void)
12961 {
12962 unsigned Rn, Rm;
12963
12964 Rn = inst.operands[0].reg;
12965 Rm = inst.operands[1].reg;
12966
12967 if (Rn == REG_PC)
12968 set_pred_insn_type_last ();
12969
12970 if (unified_syntax)
12971 {
12972 int r0off = (inst.instruction == T_MNEM_mov
12973 || inst.instruction == T_MNEM_movs) ? 8 : 16;
12974 unsigned long opcode;
12975 bfd_boolean narrow;
12976 bfd_boolean low_regs;
12977
12978 low_regs = (Rn <= 7 && Rm <= 7);
12979 opcode = inst.instruction;
12980 if (in_pred_block ())
12981 narrow = opcode != T_MNEM_movs;
12982 else
12983 narrow = opcode != T_MNEM_movs || low_regs;
12984 if (inst.size_req == 4
12985 || inst.operands[1].shifted)
12986 narrow = FALSE;
12987
12988 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
12989 if (opcode == T_MNEM_movs && inst.operands[1].isreg
12990 && !inst.operands[1].shifted
12991 && Rn == REG_PC
12992 && Rm == REG_LR)
12993 {
12994 inst.instruction = T2_SUBS_PC_LR;
12995 return;
12996 }
12997
12998 if (opcode == T_MNEM_cmp)
12999 {
13000 constraint (Rn == REG_PC, BAD_PC);
13001 if (narrow)
13002 {
13003 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
13004 but valid. */
13005 warn_deprecated_sp (Rm);
13006 /* R15 was documented as a valid choice for Rm in ARMv6,
13007 but as UNPREDICTABLE in ARMv7. ARM's proprietary
13008 tools reject R15, so we do too. */
13009 constraint (Rm == REG_PC, BAD_PC);
13010 }
13011 else
13012 reject_bad_reg (Rm);
13013 }
13014 else if (opcode == T_MNEM_mov
13015 || opcode == T_MNEM_movs)
13016 {
13017 if (inst.operands[1].isreg)
13018 {
13019 if (opcode == T_MNEM_movs)
13020 {
13021 reject_bad_reg (Rn);
13022 reject_bad_reg (Rm);
13023 }
13024 else if (narrow)
13025 {
13026 /* This is mov.n. */
13027 if ((Rn == REG_SP || Rn == REG_PC)
13028 && (Rm == REG_SP || Rm == REG_PC))
13029 {
13030 as_tsktsk (_("Use of r%u as a source register is "
13031 "deprecated when r%u is the destination "
13032 "register."), Rm, Rn);
13033 }
13034 }
13035 else
13036 {
13037 /* This is mov.w. */
13038 constraint (Rn == REG_PC, BAD_PC);
13039 constraint (Rm == REG_PC, BAD_PC);
13040 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
13041 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
13042 }
13043 }
13044 else
13045 reject_bad_reg (Rn);
13046 }
13047
13048 if (!inst.operands[1].isreg)
13049 {
13050 /* Immediate operand. */
13051 if (!in_pred_block () && opcode == T_MNEM_mov)
13052 narrow = 0;
13053 if (low_regs && narrow)
13054 {
13055 inst.instruction = THUMB_OP16 (opcode);
13056 inst.instruction |= Rn << 8;
13057 if (inst.relocs[0].type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
13058 || inst.relocs[0].type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
13059 {
13060 if (inst.size_req == 2)
13061 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_IMM;
13062 else
13063 inst.relax = opcode;
13064 }
13065 }
13066 else
13067 {
13068 constraint ((inst.relocs[0].type
13069 >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC)
13070 && (inst.relocs[0].type
13071 <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC) ,
13072 THUMB1_RELOC_ONLY);
13073
13074 inst.instruction = THUMB_OP32 (inst.instruction);
13075 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13076 inst.instruction |= Rn << r0off;
13077 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13078 }
13079 }
13080 else if (inst.operands[1].shifted && inst.operands[1].immisreg
13081 && (inst.instruction == T_MNEM_mov
13082 || inst.instruction == T_MNEM_movs))
13083 {
13084 /* Register shifts are encoded as separate shift instructions. */
13085 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
13086
13087 if (in_pred_block ())
13088 narrow = !flags;
13089 else
13090 narrow = flags;
13091
13092 if (inst.size_req == 4)
13093 narrow = FALSE;
13094
13095 if (!low_regs || inst.operands[1].imm > 7)
13096 narrow = FALSE;
13097
13098 if (Rn != Rm)
13099 narrow = FALSE;
13100
13101 switch (inst.operands[1].shift_kind)
13102 {
13103 case SHIFT_LSL:
13104 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
13105 break;
13106 case SHIFT_ASR:
13107 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
13108 break;
13109 case SHIFT_LSR:
13110 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
13111 break;
13112 case SHIFT_ROR:
13113 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
13114 break;
13115 default:
13116 abort ();
13117 }
13118
13119 inst.instruction = opcode;
13120 if (narrow)
13121 {
13122 inst.instruction |= Rn;
13123 inst.instruction |= inst.operands[1].imm << 3;
13124 }
13125 else
13126 {
13127 if (flags)
13128 inst.instruction |= CONDS_BIT;
13129
13130 inst.instruction |= Rn << 8;
13131 inst.instruction |= Rm << 16;
13132 inst.instruction |= inst.operands[1].imm;
13133 }
13134 }
13135 else if (!narrow)
13136 {
13137 /* Some mov with immediate shift have narrow variants.
13138 Register shifts are handled above. */
13139 if (low_regs && inst.operands[1].shifted
13140 && (inst.instruction == T_MNEM_mov
13141 || inst.instruction == T_MNEM_movs))
13142 {
13143 if (in_pred_block ())
13144 narrow = (inst.instruction == T_MNEM_mov);
13145 else
13146 narrow = (inst.instruction == T_MNEM_movs);
13147 }
13148
13149 if (narrow)
13150 {
13151 switch (inst.operands[1].shift_kind)
13152 {
13153 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
13154 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
13155 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
13156 default: narrow = FALSE; break;
13157 }
13158 }
13159
13160 if (narrow)
13161 {
13162 inst.instruction |= Rn;
13163 inst.instruction |= Rm << 3;
13164 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
13165 }
13166 else
13167 {
13168 inst.instruction = THUMB_OP32 (inst.instruction);
13169 inst.instruction |= Rn << r0off;
13170 encode_thumb32_shifted_operand (1);
13171 }
13172 }
13173 else
13174 switch (inst.instruction)
13175 {
13176 case T_MNEM_mov:
13177 /* In v4t or v5t a move of two lowregs produces unpredictable
13178 results. Don't allow this. */
13179 if (low_regs)
13180 {
13181 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
13182 "MOV Rd, Rs with two low registers is not "
13183 "permitted on this architecture");
13184 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
13185 arm_ext_v6);
13186 }
13187
13188 inst.instruction = T_OPCODE_MOV_HR;
13189 inst.instruction |= (Rn & 0x8) << 4;
13190 inst.instruction |= (Rn & 0x7);
13191 inst.instruction |= Rm << 3;
13192 break;
13193
13194 case T_MNEM_movs:
13195 /* We know we have low registers at this point.
13196 Generate LSLS Rd, Rs, #0. */
13197 inst.instruction = T_OPCODE_LSL_I;
13198 inst.instruction |= Rn;
13199 inst.instruction |= Rm << 3;
13200 break;
13201
13202 case T_MNEM_cmp:
13203 if (low_regs)
13204 {
13205 inst.instruction = T_OPCODE_CMP_LR;
13206 inst.instruction |= Rn;
13207 inst.instruction |= Rm << 3;
13208 }
13209 else
13210 {
13211 inst.instruction = T_OPCODE_CMP_HR;
13212 inst.instruction |= (Rn & 0x8) << 4;
13213 inst.instruction |= (Rn & 0x7);
13214 inst.instruction |= Rm << 3;
13215 }
13216 break;
13217 }
13218 return;
13219 }
13220
13221 inst.instruction = THUMB_OP16 (inst.instruction);
13222
13223 /* PR 10443: Do not silently ignore shifted operands. */
13224 constraint (inst.operands[1].shifted,
13225 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
13226
13227 if (inst.operands[1].isreg)
13228 {
13229 if (Rn < 8 && Rm < 8)
13230 {
13231 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
13232 since a MOV instruction produces unpredictable results. */
13233 if (inst.instruction == T_OPCODE_MOV_I8)
13234 inst.instruction = T_OPCODE_ADD_I3;
13235 else
13236 inst.instruction = T_OPCODE_CMP_LR;
13237
13238 inst.instruction |= Rn;
13239 inst.instruction |= Rm << 3;
13240 }
13241 else
13242 {
13243 if (inst.instruction == T_OPCODE_MOV_I8)
13244 inst.instruction = T_OPCODE_MOV_HR;
13245 else
13246 inst.instruction = T_OPCODE_CMP_HR;
13247 do_t_cpy ();
13248 }
13249 }
13250 else
13251 {
13252 constraint (Rn > 7,
13253 _("only lo regs allowed with immediate"));
13254 inst.instruction |= Rn << 8;
13255 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_IMM;
13256 }
13257 }
13258
13259 static void
13260 do_t_mov16 (void)
13261 {
13262 unsigned Rd;
13263 bfd_vma imm;
13264 bfd_boolean top;
13265
13266 top = (inst.instruction & 0x00800000) != 0;
13267 if (inst.relocs[0].type == BFD_RELOC_ARM_MOVW)
13268 {
13269 constraint (top, _(":lower16: not allowed in this instruction"));
13270 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_MOVW;
13271 }
13272 else if (inst.relocs[0].type == BFD_RELOC_ARM_MOVT)
13273 {
13274 constraint (!top, _(":upper16: not allowed in this instruction"));
13275 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_MOVT;
13276 }
13277
13278 Rd = inst.operands[0].reg;
13279 reject_bad_reg (Rd);
13280
13281 inst.instruction |= Rd << 8;
13282 if (inst.relocs[0].type == BFD_RELOC_UNUSED)
13283 {
13284 imm = inst.relocs[0].exp.X_add_number;
13285 inst.instruction |= (imm & 0xf000) << 4;
13286 inst.instruction |= (imm & 0x0800) << 15;
13287 inst.instruction |= (imm & 0x0700) << 4;
13288 inst.instruction |= (imm & 0x00ff);
13289 }
13290 }
13291
13292 static void
13293 do_t_mvn_tst (void)
13294 {
13295 unsigned Rn, Rm;
13296
13297 Rn = inst.operands[0].reg;
13298 Rm = inst.operands[1].reg;
13299
13300 if (inst.instruction == T_MNEM_cmp
13301 || inst.instruction == T_MNEM_cmn)
13302 constraint (Rn == REG_PC, BAD_PC);
13303 else
13304 reject_bad_reg (Rn);
13305 reject_bad_reg (Rm);
13306
13307 if (unified_syntax)
13308 {
13309 int r0off = (inst.instruction == T_MNEM_mvn
13310 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
13311 bfd_boolean narrow;
13312
13313 if (inst.size_req == 4
13314 || inst.instruction > 0xffff
13315 || inst.operands[1].shifted
13316 || Rn > 7 || Rm > 7)
13317 narrow = FALSE;
13318 else if (inst.instruction == T_MNEM_cmn
13319 || inst.instruction == T_MNEM_tst)
13320 narrow = TRUE;
13321 else if (THUMB_SETS_FLAGS (inst.instruction))
13322 narrow = !in_pred_block ();
13323 else
13324 narrow = in_pred_block ();
13325
13326 if (!inst.operands[1].isreg)
13327 {
13328 /* For an immediate, we always generate a 32-bit opcode;
13329 section relaxation will shrink it later if possible. */
13330 if (inst.instruction < 0xffff)
13331 inst.instruction = THUMB_OP32 (inst.instruction);
13332 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13333 inst.instruction |= Rn << r0off;
13334 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13335 }
13336 else
13337 {
13338 /* See if we can do this with a 16-bit instruction. */
13339 if (narrow)
13340 {
13341 inst.instruction = THUMB_OP16 (inst.instruction);
13342 inst.instruction |= Rn;
13343 inst.instruction |= Rm << 3;
13344 }
13345 else
13346 {
13347 constraint (inst.operands[1].shifted
13348 && inst.operands[1].immisreg,
13349 _("shift must be constant"));
13350 if (inst.instruction < 0xffff)
13351 inst.instruction = THUMB_OP32 (inst.instruction);
13352 inst.instruction |= Rn << r0off;
13353 encode_thumb32_shifted_operand (1);
13354 }
13355 }
13356 }
13357 else
13358 {
13359 constraint (inst.instruction > 0xffff
13360 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
13361 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
13362 _("unshifted register required"));
13363 constraint (Rn > 7 || Rm > 7,
13364 BAD_HIREG);
13365
13366 inst.instruction = THUMB_OP16 (inst.instruction);
13367 inst.instruction |= Rn;
13368 inst.instruction |= Rm << 3;
13369 }
13370 }
13371
13372 static void
13373 do_t_mrs (void)
13374 {
13375 unsigned Rd;
13376
13377 if (do_vfp_nsyn_mrs () == SUCCESS)
13378 return;
13379
13380 Rd = inst.operands[0].reg;
13381 reject_bad_reg (Rd);
13382 inst.instruction |= Rd << 8;
13383
13384 if (inst.operands[1].isreg)
13385 {
13386 unsigned br = inst.operands[1].reg;
13387 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
13388 as_bad (_("bad register for mrs"));
13389
13390 inst.instruction |= br & (0xf << 16);
13391 inst.instruction |= (br & 0x300) >> 4;
13392 inst.instruction |= (br & SPSR_BIT) >> 2;
13393 }
13394 else
13395 {
13396 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
13397
13398 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
13399 {
13400 /* PR gas/12698: The constraint is only applied for m_profile.
13401 If the user has specified -march=all, we want to ignore it as
13402 we are building for any CPU type, including non-m variants. */
13403 bfd_boolean m_profile =
13404 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
13405 constraint ((flags != 0) && m_profile, _("selected processor does "
13406 "not support requested special purpose register"));
13407 }
13408 else
13409 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
13410 devices). */
13411 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
13412 _("'APSR', 'CPSR' or 'SPSR' expected"));
13413
13414 inst.instruction |= (flags & SPSR_BIT) >> 2;
13415 inst.instruction |= inst.operands[1].imm & 0xff;
13416 inst.instruction |= 0xf0000;
13417 }
13418 }
13419
13420 static void
13421 do_t_msr (void)
13422 {
13423 int flags;
13424 unsigned Rn;
13425
13426 if (do_vfp_nsyn_msr () == SUCCESS)
13427 return;
13428
13429 constraint (!inst.operands[1].isreg,
13430 _("Thumb encoding does not support an immediate here"));
13431
13432 if (inst.operands[0].isreg)
13433 flags = (int)(inst.operands[0].reg);
13434 else
13435 flags = inst.operands[0].imm;
13436
13437 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
13438 {
13439 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
13440
13441 /* PR gas/12698: The constraint is only applied for m_profile.
13442 If the user has specified -march=all, we want to ignore it as
13443 we are building for any CPU type, including non-m variants. */
13444 bfd_boolean m_profile =
13445 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
13446 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
13447 && (bits & ~(PSR_s | PSR_f)) != 0)
13448 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
13449 && bits != PSR_f)) && m_profile,
13450 _("selected processor does not support requested special "
13451 "purpose register"));
13452 }
13453 else
13454 constraint ((flags & 0xff) != 0, _("selected processor does not support "
13455 "requested special purpose register"));
13456
13457 Rn = inst.operands[1].reg;
13458 reject_bad_reg (Rn);
13459
13460 inst.instruction |= (flags & SPSR_BIT) >> 2;
13461 inst.instruction |= (flags & 0xf0000) >> 8;
13462 inst.instruction |= (flags & 0x300) >> 4;
13463 inst.instruction |= (flags & 0xff);
13464 inst.instruction |= Rn << 16;
13465 }
13466
13467 static void
13468 do_t_mul (void)
13469 {
13470 bfd_boolean narrow;
13471 unsigned Rd, Rn, Rm;
13472
13473 if (!inst.operands[2].present)
13474 inst.operands[2].reg = inst.operands[0].reg;
13475
13476 Rd = inst.operands[0].reg;
13477 Rn = inst.operands[1].reg;
13478 Rm = inst.operands[2].reg;
13479
13480 if (unified_syntax)
13481 {
13482 if (inst.size_req == 4
13483 || (Rd != Rn
13484 && Rd != Rm)
13485 || Rn > 7
13486 || Rm > 7)
13487 narrow = FALSE;
13488 else if (inst.instruction == T_MNEM_muls)
13489 narrow = !in_pred_block ();
13490 else
13491 narrow = in_pred_block ();
13492 }
13493 else
13494 {
13495 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
13496 constraint (Rn > 7 || Rm > 7,
13497 BAD_HIREG);
13498 narrow = TRUE;
13499 }
13500
13501 if (narrow)
13502 {
13503 /* 16-bit MULS/Conditional MUL. */
13504 inst.instruction = THUMB_OP16 (inst.instruction);
13505 inst.instruction |= Rd;
13506
13507 if (Rd == Rn)
13508 inst.instruction |= Rm << 3;
13509 else if (Rd == Rm)
13510 inst.instruction |= Rn << 3;
13511 else
13512 constraint (1, _("dest must overlap one source register"));
13513 }
13514 else
13515 {
13516 constraint (inst.instruction != T_MNEM_mul,
13517 _("Thumb-2 MUL must not set flags"));
13518 /* 32-bit MUL. */
13519 inst.instruction = THUMB_OP32 (inst.instruction);
13520 inst.instruction |= Rd << 8;
13521 inst.instruction |= Rn << 16;
13522 inst.instruction |= Rm << 0;
13523
13524 reject_bad_reg (Rd);
13525 reject_bad_reg (Rn);
13526 reject_bad_reg (Rm);
13527 }
13528 }
13529
13530 static void
13531 do_t_mull (void)
13532 {
13533 unsigned RdLo, RdHi, Rn, Rm;
13534
13535 RdLo = inst.operands[0].reg;
13536 RdHi = inst.operands[1].reg;
13537 Rn = inst.operands[2].reg;
13538 Rm = inst.operands[3].reg;
13539
13540 reject_bad_reg (RdLo);
13541 reject_bad_reg (RdHi);
13542 reject_bad_reg (Rn);
13543 reject_bad_reg (Rm);
13544
13545 inst.instruction |= RdLo << 12;
13546 inst.instruction |= RdHi << 8;
13547 inst.instruction |= Rn << 16;
13548 inst.instruction |= Rm;
13549
13550 if (RdLo == RdHi)
13551 as_tsktsk (_("rdhi and rdlo must be different"));
13552 }
13553
13554 static void
13555 do_t_nop (void)
13556 {
13557 set_pred_insn_type (NEUTRAL_IT_INSN);
13558
13559 if (unified_syntax)
13560 {
13561 if (inst.size_req == 4 || inst.operands[0].imm > 15)
13562 {
13563 inst.instruction = THUMB_OP32 (inst.instruction);
13564 inst.instruction |= inst.operands[0].imm;
13565 }
13566 else
13567 {
13568 /* PR9722: Check for Thumb2 availability before
13569 generating a thumb2 nop instruction. */
13570 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
13571 {
13572 inst.instruction = THUMB_OP16 (inst.instruction);
13573 inst.instruction |= inst.operands[0].imm << 4;
13574 }
13575 else
13576 inst.instruction = 0x46c0;
13577 }
13578 }
13579 else
13580 {
13581 constraint (inst.operands[0].present,
13582 _("Thumb does not support NOP with hints"));
13583 inst.instruction = 0x46c0;
13584 }
13585 }
13586
13587 static void
13588 do_t_neg (void)
13589 {
13590 if (unified_syntax)
13591 {
13592 bfd_boolean narrow;
13593
13594 if (THUMB_SETS_FLAGS (inst.instruction))
13595 narrow = !in_pred_block ();
13596 else
13597 narrow = in_pred_block ();
13598 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
13599 narrow = FALSE;
13600 if (inst.size_req == 4)
13601 narrow = FALSE;
13602
13603 if (!narrow)
13604 {
13605 inst.instruction = THUMB_OP32 (inst.instruction);
13606 inst.instruction |= inst.operands[0].reg << 8;
13607 inst.instruction |= inst.operands[1].reg << 16;
13608 }
13609 else
13610 {
13611 inst.instruction = THUMB_OP16 (inst.instruction);
13612 inst.instruction |= inst.operands[0].reg;
13613 inst.instruction |= inst.operands[1].reg << 3;
13614 }
13615 }
13616 else
13617 {
13618 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
13619 BAD_HIREG);
13620 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
13621
13622 inst.instruction = THUMB_OP16 (inst.instruction);
13623 inst.instruction |= inst.operands[0].reg;
13624 inst.instruction |= inst.operands[1].reg << 3;
13625 }
13626 }
13627
13628 static void
13629 do_t_orn (void)
13630 {
13631 unsigned Rd, Rn;
13632
13633 Rd = inst.operands[0].reg;
13634 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
13635
13636 reject_bad_reg (Rd);
13637 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
13638 reject_bad_reg (Rn);
13639
13640 inst.instruction |= Rd << 8;
13641 inst.instruction |= Rn << 16;
13642
13643 if (!inst.operands[2].isreg)
13644 {
13645 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13646 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13647 }
13648 else
13649 {
13650 unsigned Rm;
13651
13652 Rm = inst.operands[2].reg;
13653 reject_bad_reg (Rm);
13654
13655 constraint (inst.operands[2].shifted
13656 && inst.operands[2].immisreg,
13657 _("shift must be constant"));
13658 encode_thumb32_shifted_operand (2);
13659 }
13660 }
13661
13662 static void
13663 do_t_pkhbt (void)
13664 {
13665 unsigned Rd, Rn, Rm;
13666
13667 Rd = inst.operands[0].reg;
13668 Rn = inst.operands[1].reg;
13669 Rm = inst.operands[2].reg;
13670
13671 reject_bad_reg (Rd);
13672 reject_bad_reg (Rn);
13673 reject_bad_reg (Rm);
13674
13675 inst.instruction |= Rd << 8;
13676 inst.instruction |= Rn << 16;
13677 inst.instruction |= Rm;
13678 if (inst.operands[3].present)
13679 {
13680 unsigned int val = inst.relocs[0].exp.X_add_number;
13681 constraint (inst.relocs[0].exp.X_op != O_constant,
13682 _("expression too complex"));
13683 inst.instruction |= (val & 0x1c) << 10;
13684 inst.instruction |= (val & 0x03) << 6;
13685 }
13686 }
13687
13688 static void
13689 do_t_pkhtb (void)
13690 {
13691 if (!inst.operands[3].present)
13692 {
13693 unsigned Rtmp;
13694
13695 inst.instruction &= ~0x00000020;
13696
13697 /* PR 10168. Swap the Rm and Rn registers. */
13698 Rtmp = inst.operands[1].reg;
13699 inst.operands[1].reg = inst.operands[2].reg;
13700 inst.operands[2].reg = Rtmp;
13701 }
13702 do_t_pkhbt ();
13703 }
13704
13705 static void
13706 do_t_pld (void)
13707 {
13708 if (inst.operands[0].immisreg)
13709 reject_bad_reg (inst.operands[0].imm);
13710
13711 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
13712 }
13713
13714 static void
13715 do_t_push_pop (void)
13716 {
13717 unsigned mask;
13718
13719 constraint (inst.operands[0].writeback,
13720 _("push/pop do not support {reglist}^"));
13721 constraint (inst.relocs[0].type != BFD_RELOC_UNUSED,
13722 _("expression too complex"));
13723
13724 mask = inst.operands[0].imm;
13725 if (inst.size_req != 4 && (mask & ~0xff) == 0)
13726 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
13727 else if (inst.size_req != 4
13728 && (mask & ~0xff) == (1U << (inst.instruction == T_MNEM_push
13729 ? REG_LR : REG_PC)))
13730 {
13731 inst.instruction = THUMB_OP16 (inst.instruction);
13732 inst.instruction |= THUMB_PP_PC_LR;
13733 inst.instruction |= mask & 0xff;
13734 }
13735 else if (unified_syntax)
13736 {
13737 inst.instruction = THUMB_OP32 (inst.instruction);
13738 encode_thumb2_multi (TRUE /* do_io */, 13, mask, TRUE);
13739 }
13740 else
13741 {
13742 inst.error = _("invalid register list to push/pop instruction");
13743 return;
13744 }
13745 }
13746
13747 static void
13748 do_t_clrm (void)
13749 {
13750 if (unified_syntax)
13751 encode_thumb2_multi (FALSE /* do_io */, -1, inst.operands[0].imm, FALSE);
13752 else
13753 {
13754 inst.error = _("invalid register list to push/pop instruction");
13755 return;
13756 }
13757 }
13758
13759 static void
13760 do_t_vscclrm (void)
13761 {
13762 if (inst.operands[0].issingle)
13763 {
13764 inst.instruction |= (inst.operands[0].reg & 0x1) << 22;
13765 inst.instruction |= (inst.operands[0].reg & 0x1e) << 11;
13766 inst.instruction |= inst.operands[0].imm;
13767 }
13768 else
13769 {
13770 inst.instruction |= (inst.operands[0].reg & 0x10) << 18;
13771 inst.instruction |= (inst.operands[0].reg & 0xf) << 12;
13772 inst.instruction |= 1 << 8;
13773 inst.instruction |= inst.operands[0].imm << 1;
13774 }
13775 }
13776
13777 static void
13778 do_t_rbit (void)
13779 {
13780 unsigned Rd, Rm;
13781
13782 Rd = inst.operands[0].reg;
13783 Rm = inst.operands[1].reg;
13784
13785 reject_bad_reg (Rd);
13786 reject_bad_reg (Rm);
13787
13788 inst.instruction |= Rd << 8;
13789 inst.instruction |= Rm << 16;
13790 inst.instruction |= Rm;
13791 }
13792
13793 static void
13794 do_t_rev (void)
13795 {
13796 unsigned Rd, Rm;
13797
13798 Rd = inst.operands[0].reg;
13799 Rm = inst.operands[1].reg;
13800
13801 reject_bad_reg (Rd);
13802 reject_bad_reg (Rm);
13803
13804 if (Rd <= 7 && Rm <= 7
13805 && inst.size_req != 4)
13806 {
13807 inst.instruction = THUMB_OP16 (inst.instruction);
13808 inst.instruction |= Rd;
13809 inst.instruction |= Rm << 3;
13810 }
13811 else if (unified_syntax)
13812 {
13813 inst.instruction = THUMB_OP32 (inst.instruction);
13814 inst.instruction |= Rd << 8;
13815 inst.instruction |= Rm << 16;
13816 inst.instruction |= Rm;
13817 }
13818 else
13819 inst.error = BAD_HIREG;
13820 }
13821
13822 static void
13823 do_t_rrx (void)
13824 {
13825 unsigned Rd, Rm;
13826
13827 Rd = inst.operands[0].reg;
13828 Rm = inst.operands[1].reg;
13829
13830 reject_bad_reg (Rd);
13831 reject_bad_reg (Rm);
13832
13833 inst.instruction |= Rd << 8;
13834 inst.instruction |= Rm;
13835 }
13836
13837 static void
13838 do_t_rsb (void)
13839 {
13840 unsigned Rd, Rs;
13841
13842 Rd = inst.operands[0].reg;
13843 Rs = (inst.operands[1].present
13844 ? inst.operands[1].reg /* Rd, Rs, foo */
13845 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
13846
13847 reject_bad_reg (Rd);
13848 reject_bad_reg (Rs);
13849 if (inst.operands[2].isreg)
13850 reject_bad_reg (inst.operands[2].reg);
13851
13852 inst.instruction |= Rd << 8;
13853 inst.instruction |= Rs << 16;
13854 if (!inst.operands[2].isreg)
13855 {
13856 bfd_boolean narrow;
13857
13858 if ((inst.instruction & 0x00100000) != 0)
13859 narrow = !in_pred_block ();
13860 else
13861 narrow = in_pred_block ();
13862
13863 if (Rd > 7 || Rs > 7)
13864 narrow = FALSE;
13865
13866 if (inst.size_req == 4 || !unified_syntax)
13867 narrow = FALSE;
13868
13869 if (inst.relocs[0].exp.X_op != O_constant
13870 || inst.relocs[0].exp.X_add_number != 0)
13871 narrow = FALSE;
13872
13873 /* Turn rsb #0 into 16-bit neg. We should probably do this via
13874 relaxation, but it doesn't seem worth the hassle. */
13875 if (narrow)
13876 {
13877 inst.relocs[0].type = BFD_RELOC_UNUSED;
13878 inst.instruction = THUMB_OP16 (T_MNEM_negs);
13879 inst.instruction |= Rs << 3;
13880 inst.instruction |= Rd;
13881 }
13882 else
13883 {
13884 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
13885 inst.relocs[0].type = BFD_RELOC_ARM_T32_IMMEDIATE;
13886 }
13887 }
13888 else
13889 encode_thumb32_shifted_operand (2);
13890 }
13891
13892 static void
13893 do_t_setend (void)
13894 {
13895 if (warn_on_deprecated
13896 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
13897 as_tsktsk (_("setend use is deprecated for ARMv8"));
13898
13899 set_pred_insn_type (OUTSIDE_PRED_INSN);
13900 if (inst.operands[0].imm)
13901 inst.instruction |= 0x8;
13902 }
13903
13904 static void
13905 do_t_shift (void)
13906 {
13907 if (!inst.operands[1].present)
13908 inst.operands[1].reg = inst.operands[0].reg;
13909
13910 if (unified_syntax)
13911 {
13912 bfd_boolean narrow;
13913 int shift_kind;
13914
13915 switch (inst.instruction)
13916 {
13917 case T_MNEM_asr:
13918 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
13919 case T_MNEM_lsl:
13920 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
13921 case T_MNEM_lsr:
13922 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
13923 case T_MNEM_ror:
13924 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
13925 default: abort ();
13926 }
13927
13928 if (THUMB_SETS_FLAGS (inst.instruction))
13929 narrow = !in_pred_block ();
13930 else
13931 narrow = in_pred_block ();
13932 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
13933 narrow = FALSE;
13934 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
13935 narrow = FALSE;
13936 if (inst.operands[2].isreg
13937 && (inst.operands[1].reg != inst.operands[0].reg
13938 || inst.operands[2].reg > 7))
13939 narrow = FALSE;
13940 if (inst.size_req == 4)
13941 narrow = FALSE;
13942
13943 reject_bad_reg (inst.operands[0].reg);
13944 reject_bad_reg (inst.operands[1].reg);
13945
13946 if (!narrow)
13947 {
13948 if (inst.operands[2].isreg)
13949 {
13950 reject_bad_reg (inst.operands[2].reg);
13951 inst.instruction = THUMB_OP32 (inst.instruction);
13952 inst.instruction |= inst.operands[0].reg << 8;
13953 inst.instruction |= inst.operands[1].reg << 16;
13954 inst.instruction |= inst.operands[2].reg;
13955
13956 /* PR 12854: Error on extraneous shifts. */
13957 constraint (inst.operands[2].shifted,
13958 _("extraneous shift as part of operand to shift insn"));
13959 }
13960 else
13961 {
13962 inst.operands[1].shifted = 1;
13963 inst.operands[1].shift_kind = shift_kind;
13964 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
13965 ? T_MNEM_movs : T_MNEM_mov);
13966 inst.instruction |= inst.operands[0].reg << 8;
13967 encode_thumb32_shifted_operand (1);
13968 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
13969 inst.relocs[0].type = BFD_RELOC_UNUSED;
13970 }
13971 }
13972 else
13973 {
13974 if (inst.operands[2].isreg)
13975 {
13976 switch (shift_kind)
13977 {
13978 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
13979 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
13980 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
13981 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
13982 default: abort ();
13983 }
13984
13985 inst.instruction |= inst.operands[0].reg;
13986 inst.instruction |= inst.operands[2].reg << 3;
13987
13988 /* PR 12854: Error on extraneous shifts. */
13989 constraint (inst.operands[2].shifted,
13990 _("extraneous shift as part of operand to shift insn"));
13991 }
13992 else
13993 {
13994 switch (shift_kind)
13995 {
13996 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
13997 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
13998 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
13999 default: abort ();
14000 }
14001 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
14002 inst.instruction |= inst.operands[0].reg;
14003 inst.instruction |= inst.operands[1].reg << 3;
14004 }
14005 }
14006 }
14007 else
14008 {
14009 constraint (inst.operands[0].reg > 7
14010 || inst.operands[1].reg > 7, BAD_HIREG);
14011 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
14012
14013 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
14014 {
14015 constraint (inst.operands[2].reg > 7, BAD_HIREG);
14016 constraint (inst.operands[0].reg != inst.operands[1].reg,
14017 _("source1 and dest must be same register"));
14018
14019 switch (inst.instruction)
14020 {
14021 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
14022 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
14023 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
14024 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
14025 default: abort ();
14026 }
14027
14028 inst.instruction |= inst.operands[0].reg;
14029 inst.instruction |= inst.operands[2].reg << 3;
14030
14031 /* PR 12854: Error on extraneous shifts. */
14032 constraint (inst.operands[2].shifted,
14033 _("extraneous shift as part of operand to shift insn"));
14034 }
14035 else
14036 {
14037 switch (inst.instruction)
14038 {
14039 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
14040 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
14041 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
14042 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
14043 default: abort ();
14044 }
14045 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_SHIFT;
14046 inst.instruction |= inst.operands[0].reg;
14047 inst.instruction |= inst.operands[1].reg << 3;
14048 }
14049 }
14050 }
14051
14052 static void
14053 do_t_simd (void)
14054 {
14055 unsigned Rd, Rn, Rm;
14056
14057 Rd = inst.operands[0].reg;
14058 Rn = inst.operands[1].reg;
14059 Rm = inst.operands[2].reg;
14060
14061 reject_bad_reg (Rd);
14062 reject_bad_reg (Rn);
14063 reject_bad_reg (Rm);
14064
14065 inst.instruction |= Rd << 8;
14066 inst.instruction |= Rn << 16;
14067 inst.instruction |= Rm;
14068 }
14069
14070 static void
14071 do_t_simd2 (void)
14072 {
14073 unsigned Rd, Rn, Rm;
14074
14075 Rd = inst.operands[0].reg;
14076 Rm = inst.operands[1].reg;
14077 Rn = inst.operands[2].reg;
14078
14079 reject_bad_reg (Rd);
14080 reject_bad_reg (Rn);
14081 reject_bad_reg (Rm);
14082
14083 inst.instruction |= Rd << 8;
14084 inst.instruction |= Rn << 16;
14085 inst.instruction |= Rm;
14086 }
14087
14088 static void
14089 do_t_smc (void)
14090 {
14091 unsigned int value = inst.relocs[0].exp.X_add_number;
14092 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
14093 _("SMC is not permitted on this architecture"));
14094 constraint (inst.relocs[0].exp.X_op != O_constant,
14095 _("expression too complex"));
14096 constraint (value > 0xf, _("immediate too large (bigger than 0xF)"));
14097
14098 inst.relocs[0].type = BFD_RELOC_UNUSED;
14099 inst.instruction |= (value & 0x000f) << 16;
14100
14101 /* PR gas/15623: SMC instructions must be last in an IT block. */
14102 set_pred_insn_type_last ();
14103 }
14104
14105 static void
14106 do_t_hvc (void)
14107 {
14108 unsigned int value = inst.relocs[0].exp.X_add_number;
14109
14110 inst.relocs[0].type = BFD_RELOC_UNUSED;
14111 inst.instruction |= (value & 0x0fff);
14112 inst.instruction |= (value & 0xf000) << 4;
14113 }
14114
14115 static void
14116 do_t_ssat_usat (int bias)
14117 {
14118 unsigned Rd, Rn;
14119
14120 Rd = inst.operands[0].reg;
14121 Rn = inst.operands[2].reg;
14122
14123 reject_bad_reg (Rd);
14124 reject_bad_reg (Rn);
14125
14126 inst.instruction |= Rd << 8;
14127 inst.instruction |= inst.operands[1].imm - bias;
14128 inst.instruction |= Rn << 16;
14129
14130 if (inst.operands[3].present)
14131 {
14132 offsetT shift_amount = inst.relocs[0].exp.X_add_number;
14133
14134 inst.relocs[0].type = BFD_RELOC_UNUSED;
14135
14136 constraint (inst.relocs[0].exp.X_op != O_constant,
14137 _("expression too complex"));
14138
14139 if (shift_amount != 0)
14140 {
14141 constraint (shift_amount > 31,
14142 _("shift expression is too large"));
14143
14144 if (inst.operands[3].shift_kind == SHIFT_ASR)
14145 inst.instruction |= 0x00200000; /* sh bit. */
14146
14147 inst.instruction |= (shift_amount & 0x1c) << 10;
14148 inst.instruction |= (shift_amount & 0x03) << 6;
14149 }
14150 }
14151 }
14152
14153 static void
14154 do_t_ssat (void)
14155 {
14156 do_t_ssat_usat (1);
14157 }
14158
14159 static void
14160 do_t_ssat16 (void)
14161 {
14162 unsigned Rd, Rn;
14163
14164 Rd = inst.operands[0].reg;
14165 Rn = inst.operands[2].reg;
14166
14167 reject_bad_reg (Rd);
14168 reject_bad_reg (Rn);
14169
14170 inst.instruction |= Rd << 8;
14171 inst.instruction |= inst.operands[1].imm - 1;
14172 inst.instruction |= Rn << 16;
14173 }
14174
14175 static void
14176 do_t_strex (void)
14177 {
14178 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
14179 || inst.operands[2].postind || inst.operands[2].writeback
14180 || inst.operands[2].immisreg || inst.operands[2].shifted
14181 || inst.operands[2].negative,
14182 BAD_ADDR_MODE);
14183
14184 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
14185
14186 inst.instruction |= inst.operands[0].reg << 8;
14187 inst.instruction |= inst.operands[1].reg << 12;
14188 inst.instruction |= inst.operands[2].reg << 16;
14189 inst.relocs[0].type = BFD_RELOC_ARM_T32_OFFSET_U8;
14190 }
14191
14192 static void
14193 do_t_strexd (void)
14194 {
14195 if (!inst.operands[2].present)
14196 inst.operands[2].reg = inst.operands[1].reg + 1;
14197
14198 constraint (inst.operands[0].reg == inst.operands[1].reg
14199 || inst.operands[0].reg == inst.operands[2].reg
14200 || inst.operands[0].reg == inst.operands[3].reg,
14201 BAD_OVERLAP);
14202
14203 inst.instruction |= inst.operands[0].reg;
14204 inst.instruction |= inst.operands[1].reg << 12;
14205 inst.instruction |= inst.operands[2].reg << 8;
14206 inst.instruction |= inst.operands[3].reg << 16;
14207 }
14208
14209 static void
14210 do_t_sxtah (void)
14211 {
14212 unsigned Rd, Rn, Rm;
14213
14214 Rd = inst.operands[0].reg;
14215 Rn = inst.operands[1].reg;
14216 Rm = inst.operands[2].reg;
14217
14218 reject_bad_reg (Rd);
14219 reject_bad_reg (Rn);
14220 reject_bad_reg (Rm);
14221
14222 inst.instruction |= Rd << 8;
14223 inst.instruction |= Rn << 16;
14224 inst.instruction |= Rm;
14225 inst.instruction |= inst.operands[3].imm << 4;
14226 }
14227
14228 static void
14229 do_t_sxth (void)
14230 {
14231 unsigned Rd, Rm;
14232
14233 Rd = inst.operands[0].reg;
14234 Rm = inst.operands[1].reg;
14235
14236 reject_bad_reg (Rd);
14237 reject_bad_reg (Rm);
14238
14239 if (inst.instruction <= 0xffff
14240 && inst.size_req != 4
14241 && Rd <= 7 && Rm <= 7
14242 && (!inst.operands[2].present || inst.operands[2].imm == 0))
14243 {
14244 inst.instruction = THUMB_OP16 (inst.instruction);
14245 inst.instruction |= Rd;
14246 inst.instruction |= Rm << 3;
14247 }
14248 else if (unified_syntax)
14249 {
14250 if (inst.instruction <= 0xffff)
14251 inst.instruction = THUMB_OP32 (inst.instruction);
14252 inst.instruction |= Rd << 8;
14253 inst.instruction |= Rm;
14254 inst.instruction |= inst.operands[2].imm << 4;
14255 }
14256 else
14257 {
14258 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
14259 _("Thumb encoding does not support rotation"));
14260 constraint (1, BAD_HIREG);
14261 }
14262 }
14263
14264 static void
14265 do_t_swi (void)
14266 {
14267 inst.relocs[0].type = BFD_RELOC_ARM_SWI;
14268 }
14269
14270 static void
14271 do_t_tb (void)
14272 {
14273 unsigned Rn, Rm;
14274 int half;
14275
14276 half = (inst.instruction & 0x10) != 0;
14277 set_pred_insn_type_last ();
14278 constraint (inst.operands[0].immisreg,
14279 _("instruction requires register index"));
14280
14281 Rn = inst.operands[0].reg;
14282 Rm = inst.operands[0].imm;
14283
14284 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
14285 constraint (Rn == REG_SP, BAD_SP);
14286 reject_bad_reg (Rm);
14287
14288 constraint (!half && inst.operands[0].shifted,
14289 _("instruction does not allow shifted index"));
14290 inst.instruction |= (Rn << 16) | Rm;
14291 }
14292
14293 static void
14294 do_t_udf (void)
14295 {
14296 if (!inst.operands[0].present)
14297 inst.operands[0].imm = 0;
14298
14299 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
14300 {
14301 constraint (inst.size_req == 2,
14302 _("immediate value out of range"));
14303 inst.instruction = THUMB_OP32 (inst.instruction);
14304 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
14305 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
14306 }
14307 else
14308 {
14309 inst.instruction = THUMB_OP16 (inst.instruction);
14310 inst.instruction |= inst.operands[0].imm;
14311 }
14312
14313 set_pred_insn_type (NEUTRAL_IT_INSN);
14314 }
14315
14316
14317 static void
14318 do_t_usat (void)
14319 {
14320 do_t_ssat_usat (0);
14321 }
14322
14323 static void
14324 do_t_usat16 (void)
14325 {
14326 unsigned Rd, Rn;
14327
14328 Rd = inst.operands[0].reg;
14329 Rn = inst.operands[2].reg;
14330
14331 reject_bad_reg (Rd);
14332 reject_bad_reg (Rn);
14333
14334 inst.instruction |= Rd << 8;
14335 inst.instruction |= inst.operands[1].imm;
14336 inst.instruction |= Rn << 16;
14337 }
14338
14339 /* Checking the range of the branch offset (VAL) with NBITS bits
14340 and IS_SIGNED signedness. Also checks the LSB to be 0. */
14341 static int
14342 v8_1_branch_value_check (int val, int nbits, int is_signed)
14343 {
14344 gas_assert (nbits > 0 && nbits <= 32);
14345 if (is_signed)
14346 {
14347 int cmp = (1 << (nbits - 1));
14348 if ((val < -cmp) || (val >= cmp) || (val & 0x01))
14349 return FAIL;
14350 }
14351 else
14352 {
14353 if ((val <= 0) || (val >= (1 << nbits)) || (val & 0x1))
14354 return FAIL;
14355 }
14356 return SUCCESS;
14357 }
14358
14359 /* For branches in Armv8.1-M Mainline. */
14360 static void
14361 do_t_branch_future (void)
14362 {
14363 unsigned long insn = inst.instruction;
14364
14365 inst.instruction = THUMB_OP32 (inst.instruction);
14366 if (inst.operands[0].hasreloc == 0)
14367 {
14368 if (v8_1_branch_value_check (inst.operands[0].imm, 5, FALSE) == FAIL)
14369 as_bad (BAD_BRANCH_OFF);
14370
14371 inst.instruction |= ((inst.operands[0].imm & 0x1f) >> 1) << 23;
14372 }
14373 else
14374 {
14375 inst.relocs[0].type = BFD_RELOC_THUMB_PCREL_BRANCH5;
14376 inst.relocs[0].pc_rel = 1;
14377 }
14378
14379 switch (insn)
14380 {
14381 case T_MNEM_bf:
14382 if (inst.operands[1].hasreloc == 0)
14383 {
14384 int val = inst.operands[1].imm;
14385 if (v8_1_branch_value_check (inst.operands[1].imm, 17, TRUE) == FAIL)
14386 as_bad (BAD_BRANCH_OFF);
14387
14388 int immA = (val & 0x0001f000) >> 12;
14389 int immB = (val & 0x00000ffc) >> 2;
14390 int immC = (val & 0x00000002) >> 1;
14391 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14392 }
14393 else
14394 {
14395 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF17;
14396 inst.relocs[1].pc_rel = 1;
14397 }
14398 break;
14399
14400 case T_MNEM_bfl:
14401 if (inst.operands[1].hasreloc == 0)
14402 {
14403 int val = inst.operands[1].imm;
14404 if (v8_1_branch_value_check (inst.operands[1].imm, 19, TRUE) == FAIL)
14405 as_bad (BAD_BRANCH_OFF);
14406
14407 int immA = (val & 0x0007f000) >> 12;
14408 int immB = (val & 0x00000ffc) >> 2;
14409 int immC = (val & 0x00000002) >> 1;
14410 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14411 }
14412 else
14413 {
14414 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF19;
14415 inst.relocs[1].pc_rel = 1;
14416 }
14417 break;
14418
14419 case T_MNEM_bfcsel:
14420 /* Operand 1. */
14421 if (inst.operands[1].hasreloc == 0)
14422 {
14423 int val = inst.operands[1].imm;
14424 int immA = (val & 0x00001000) >> 12;
14425 int immB = (val & 0x00000ffc) >> 2;
14426 int immC = (val & 0x00000002) >> 1;
14427 inst.instruction |= (immA << 16) | (immB << 1) | (immC << 11);
14428 }
14429 else
14430 {
14431 inst.relocs[1].type = BFD_RELOC_ARM_THUMB_BF13;
14432 inst.relocs[1].pc_rel = 1;
14433 }
14434
14435 /* Operand 2. */
14436 if (inst.operands[2].hasreloc == 0)
14437 {
14438 constraint ((inst.operands[0].hasreloc != 0), BAD_ARGS);
14439 int val2 = inst.operands[2].imm;
14440 int val0 = inst.operands[0].imm & 0x1f;
14441 int diff = val2 - val0;
14442 if (diff == 4)
14443 inst.instruction |= 1 << 17; /* T bit. */
14444 else if (diff != 2)
14445 as_bad (_("out of range label-relative fixup value"));
14446 }
14447 else
14448 {
14449 constraint ((inst.operands[0].hasreloc == 0), BAD_ARGS);
14450 inst.relocs[2].type = BFD_RELOC_THUMB_PCREL_BFCSEL;
14451 inst.relocs[2].pc_rel = 1;
14452 }
14453
14454 /* Operand 3. */
14455 constraint (inst.cond != COND_ALWAYS, BAD_COND);
14456 inst.instruction |= (inst.operands[3].imm & 0xf) << 18;
14457 break;
14458
14459 case T_MNEM_bfx:
14460 case T_MNEM_bflx:
14461 inst.instruction |= inst.operands[1].reg << 16;
14462 break;
14463
14464 default: abort ();
14465 }
14466 }
14467
14468 /* Helper function for do_t_loloop to handle relocations. */
14469 static void
14470 v8_1_loop_reloc (int is_le)
14471 {
14472 if (inst.relocs[0].exp.X_op == O_constant)
14473 {
14474 int value = inst.relocs[0].exp.X_add_number;
14475 value = (is_le) ? -value : value;
14476
14477 if (v8_1_branch_value_check (value, 12, FALSE) == FAIL)
14478 as_bad (BAD_BRANCH_OFF);
14479
14480 int imml, immh;
14481
14482 immh = (value & 0x00000ffc) >> 2;
14483 imml = (value & 0x00000002) >> 1;
14484
14485 inst.instruction |= (imml << 11) | (immh << 1);
14486 }
14487 else
14488 {
14489 inst.relocs[0].type = BFD_RELOC_ARM_THUMB_LOOP12;
14490 inst.relocs[0].pc_rel = 1;
14491 }
14492 }
14493
14494 /* For shifts with four operands in MVE. */
14495 static void
14496 do_mve_scalar_shift1 (void)
14497 {
14498 unsigned int value = inst.operands[2].imm;
14499
14500 inst.instruction |= inst.operands[0].reg << 16;
14501 inst.instruction |= inst.operands[1].reg << 8;
14502
14503 /* Setting the bit for saturation. */
14504 inst.instruction |= ((value == 64) ? 0: 1) << 7;
14505
14506 /* Assuming Rm is already checked not to be 11x1. */
14507 constraint (inst.operands[3].reg == inst.operands[0].reg, BAD_OVERLAP);
14508 constraint (inst.operands[3].reg == inst.operands[1].reg, BAD_OVERLAP);
14509 inst.instruction |= inst.operands[3].reg << 12;
14510 }
14511
14512 /* For shifts in MVE. */
14513 static void
14514 do_mve_scalar_shift (void)
14515 {
14516 if (!inst.operands[2].present)
14517 {
14518 inst.operands[2] = inst.operands[1];
14519 inst.operands[1].reg = 0xf;
14520 }
14521
14522 inst.instruction |= inst.operands[0].reg << 16;
14523 inst.instruction |= inst.operands[1].reg << 8;
14524
14525 if (inst.operands[2].isreg)
14526 {
14527 /* Assuming Rm is already checked not to be 11x1. */
14528 constraint (inst.operands[2].reg == inst.operands[0].reg, BAD_OVERLAP);
14529 constraint (inst.operands[2].reg == inst.operands[1].reg, BAD_OVERLAP);
14530 inst.instruction |= inst.operands[2].reg << 12;
14531 }
14532 else
14533 {
14534 /* Assuming imm is already checked as [1,32]. */
14535 unsigned int value = inst.operands[2].imm;
14536 inst.instruction |= (value & 0x1c) << 10;
14537 inst.instruction |= (value & 0x03) << 6;
14538 /* Change last 4 bits from 0xd to 0xf. */
14539 inst.instruction |= 0x2;
14540 }
14541 }
14542
14543 /* MVE instruction encoder helpers. */
14544 #define M_MNEM_vabav 0xee800f01
14545 #define M_MNEM_vmladav 0xeef00e00
14546 #define M_MNEM_vmladava 0xeef00e20
14547 #define M_MNEM_vmladavx 0xeef01e00
14548 #define M_MNEM_vmladavax 0xeef01e20
14549 #define M_MNEM_vmlsdav 0xeef00e01
14550 #define M_MNEM_vmlsdava 0xeef00e21
14551 #define M_MNEM_vmlsdavx 0xeef01e01
14552 #define M_MNEM_vmlsdavax 0xeef01e21
14553 #define M_MNEM_vmullt 0xee011e00
14554 #define M_MNEM_vmullb 0xee010e00
14555 #define M_MNEM_vctp 0xf000e801
14556 #define M_MNEM_vst20 0xfc801e00
14557 #define M_MNEM_vst21 0xfc801e20
14558 #define M_MNEM_vst40 0xfc801e01
14559 #define M_MNEM_vst41 0xfc801e21
14560 #define M_MNEM_vst42 0xfc801e41
14561 #define M_MNEM_vst43 0xfc801e61
14562 #define M_MNEM_vld20 0xfc901e00
14563 #define M_MNEM_vld21 0xfc901e20
14564 #define M_MNEM_vld40 0xfc901e01
14565 #define M_MNEM_vld41 0xfc901e21
14566 #define M_MNEM_vld42 0xfc901e41
14567 #define M_MNEM_vld43 0xfc901e61
14568 #define M_MNEM_vstrb 0xec000e00
14569 #define M_MNEM_vstrh 0xec000e10
14570 #define M_MNEM_vstrw 0xec000e40
14571 #define M_MNEM_vstrd 0xec000e50
14572 #define M_MNEM_vldrb 0xec100e00
14573 #define M_MNEM_vldrh 0xec100e10
14574 #define M_MNEM_vldrw 0xec100e40
14575 #define M_MNEM_vldrd 0xec100e50
14576 #define M_MNEM_vmovlt 0xeea01f40
14577 #define M_MNEM_vmovlb 0xeea00f40
14578 #define M_MNEM_vmovnt 0xfe311e81
14579 #define M_MNEM_vmovnb 0xfe310e81
14580 #define M_MNEM_vadc 0xee300f00
14581 #define M_MNEM_vadci 0xee301f00
14582 #define M_MNEM_vbrsr 0xfe011e60
14583 #define M_MNEM_vaddlv 0xee890f00
14584 #define M_MNEM_vaddlva 0xee890f20
14585 #define M_MNEM_vaddv 0xeef10f00
14586 #define M_MNEM_vaddva 0xeef10f20
14587 #define M_MNEM_vddup 0xee011f6e
14588 #define M_MNEM_vdwdup 0xee011f60
14589 #define M_MNEM_vidup 0xee010f6e
14590 #define M_MNEM_viwdup 0xee010f60
14591 #define M_MNEM_vmaxv 0xeee20f00
14592 #define M_MNEM_vmaxav 0xeee00f00
14593 #define M_MNEM_vminv 0xeee20f80
14594 #define M_MNEM_vminav 0xeee00f80
14595 #define M_MNEM_vmlaldav 0xee800e00
14596 #define M_MNEM_vmlaldava 0xee800e20
14597 #define M_MNEM_vmlaldavx 0xee801e00
14598 #define M_MNEM_vmlaldavax 0xee801e20
14599 #define M_MNEM_vmlsldav 0xee800e01
14600 #define M_MNEM_vmlsldava 0xee800e21
14601 #define M_MNEM_vmlsldavx 0xee801e01
14602 #define M_MNEM_vmlsldavax 0xee801e21
14603 #define M_MNEM_vrmlaldavhx 0xee801f00
14604 #define M_MNEM_vrmlaldavhax 0xee801f20
14605 #define M_MNEM_vrmlsldavh 0xfe800e01
14606 #define M_MNEM_vrmlsldavha 0xfe800e21
14607 #define M_MNEM_vrmlsldavhx 0xfe801e01
14608 #define M_MNEM_vrmlsldavhax 0xfe801e21
14609 #define M_MNEM_vqmovnt 0xee331e01
14610 #define M_MNEM_vqmovnb 0xee330e01
14611 #define M_MNEM_vqmovunt 0xee311e81
14612 #define M_MNEM_vqmovunb 0xee310e81
14613 #define M_MNEM_vshrnt 0xee801fc1
14614 #define M_MNEM_vshrnb 0xee800fc1
14615 #define M_MNEM_vrshrnt 0xfe801fc1
14616 #define M_MNEM_vqshrnt 0xee801f40
14617 #define M_MNEM_vqshrnb 0xee800f40
14618 #define M_MNEM_vqshrunt 0xee801fc0
14619 #define M_MNEM_vqshrunb 0xee800fc0
14620 #define M_MNEM_vrshrnb 0xfe800fc1
14621 #define M_MNEM_vqrshrnt 0xee801f41
14622 #define M_MNEM_vqrshrnb 0xee800f41
14623 #define M_MNEM_vqrshrunt 0xfe801fc0
14624 #define M_MNEM_vqrshrunb 0xfe800fc0
14625
14626 /* Bfloat16 instruction encoder helpers. */
14627 #define B_MNEM_vfmat 0xfc300850
14628 #define B_MNEM_vfmab 0xfc300810
14629
14630 /* Neon instruction encoder helpers. */
14631
14632 /* Encodings for the different types for various Neon opcodes. */
14633
14634 /* An "invalid" code for the following tables. */
14635 #define N_INV -1u
14636
14637 struct neon_tab_entry
14638 {
14639 unsigned integer;
14640 unsigned float_or_poly;
14641 unsigned scalar_or_imm;
14642 };
14643
14644 /* Map overloaded Neon opcodes to their respective encodings. */
14645 #define NEON_ENC_TAB \
14646 X(vabd, 0x0000700, 0x1200d00, N_INV), \
14647 X(vabdl, 0x0800700, N_INV, N_INV), \
14648 X(vmax, 0x0000600, 0x0000f00, N_INV), \
14649 X(vmin, 0x0000610, 0x0200f00, N_INV), \
14650 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
14651 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
14652 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
14653 X(vadd, 0x0000800, 0x0000d00, N_INV), \
14654 X(vaddl, 0x0800000, N_INV, N_INV), \
14655 X(vsub, 0x1000800, 0x0200d00, N_INV), \
14656 X(vsubl, 0x0800200, N_INV, N_INV), \
14657 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
14658 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
14659 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
14660 /* Register variants of the following two instructions are encoded as
14661 vcge / vcgt with the operands reversed. */ \
14662 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
14663 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
14664 X(vfma, N_INV, 0x0000c10, N_INV), \
14665 X(vfms, N_INV, 0x0200c10, N_INV), \
14666 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
14667 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
14668 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
14669 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
14670 X(vmlal, 0x0800800, N_INV, 0x0800240), \
14671 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
14672 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
14673 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
14674 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
14675 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
14676 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
14677 X(vqrdmlah, 0x3000b10, N_INV, 0x0800e40), \
14678 X(vqrdmlsh, 0x3000c10, N_INV, 0x0800f40), \
14679 X(vshl, 0x0000400, N_INV, 0x0800510), \
14680 X(vqshl, 0x0000410, N_INV, 0x0800710), \
14681 X(vand, 0x0000110, N_INV, 0x0800030), \
14682 X(vbic, 0x0100110, N_INV, 0x0800030), \
14683 X(veor, 0x1000110, N_INV, N_INV), \
14684 X(vorn, 0x0300110, N_INV, 0x0800010), \
14685 X(vorr, 0x0200110, N_INV, 0x0800010), \
14686 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
14687 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
14688 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
14689 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
14690 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
14691 X(vst1, 0x0000000, 0x0800000, N_INV), \
14692 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
14693 X(vst2, 0x0000100, 0x0800100, N_INV), \
14694 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
14695 X(vst3, 0x0000200, 0x0800200, N_INV), \
14696 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
14697 X(vst4, 0x0000300, 0x0800300, N_INV), \
14698 X(vmovn, 0x1b20200, N_INV, N_INV), \
14699 X(vtrn, 0x1b20080, N_INV, N_INV), \
14700 X(vqmovn, 0x1b20200, N_INV, N_INV), \
14701 X(vqmovun, 0x1b20240, N_INV, N_INV), \
14702 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
14703 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
14704 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
14705 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
14706 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
14707 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
14708 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
14709 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
14710 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
14711 X(vseleq, 0xe000a00, N_INV, N_INV), \
14712 X(vselvs, 0xe100a00, N_INV, N_INV), \
14713 X(vselge, 0xe200a00, N_INV, N_INV), \
14714 X(vselgt, 0xe300a00, N_INV, N_INV), \
14715 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
14716 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
14717 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
14718 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
14719 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
14720 X(aes, 0x3b00300, N_INV, N_INV), \
14721 X(sha3op, 0x2000c00, N_INV, N_INV), \
14722 X(sha1h, 0x3b902c0, N_INV, N_INV), \
14723 X(sha2op, 0x3ba0380, N_INV, N_INV)
14724
14725 enum neon_opc
14726 {
14727 #define X(OPC,I,F,S) N_MNEM_##OPC
14728 NEON_ENC_TAB
14729 #undef X
14730 };
14731
14732 static const struct neon_tab_entry neon_enc_tab[] =
14733 {
14734 #define X(OPC,I,F,S) { (I), (F), (S) }
14735 NEON_ENC_TAB
14736 #undef X
14737 };
14738
14739 /* Do not use these macros; instead, use NEON_ENCODE defined below. */
14740 #define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14741 #define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14742 #define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14743 #define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14744 #define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14745 #define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14746 #define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
14747 #define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
14748 #define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
14749 #define NEON_ENC_SINGLE_(X) \
14750 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
14751 #define NEON_ENC_DOUBLE_(X) \
14752 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
14753 #define NEON_ENC_FPV8_(X) \
14754 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
14755
14756 #define NEON_ENCODE(type, inst) \
14757 do \
14758 { \
14759 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
14760 inst.is_neon = 1; \
14761 } \
14762 while (0)
14763
14764 #define check_neon_suffixes \
14765 do \
14766 { \
14767 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
14768 { \
14769 as_bad (_("invalid neon suffix for non neon instruction")); \
14770 return; \
14771 } \
14772 } \
14773 while (0)
14774
14775 /* Define shapes for instruction operands. The following mnemonic characters
14776 are used in this table:
14777
14778 F - VFP S<n> register
14779 D - Neon D<n> register
14780 Q - Neon Q<n> register
14781 I - Immediate
14782 S - Scalar
14783 R - ARM register
14784 L - D<n> register list
14785
14786 This table is used to generate various data:
14787 - enumerations of the form NS_DDR to be used as arguments to
14788 neon_select_shape.
14789 - a table classifying shapes into single, double, quad, mixed.
14790 - a table used to drive neon_select_shape. */
14791
14792 #define NEON_SHAPE_DEF \
14793 X(4, (R, R, Q, Q), QUAD), \
14794 X(4, (Q, R, R, I), QUAD), \
14795 X(4, (R, R, S, S), QUAD), \
14796 X(4, (S, S, R, R), QUAD), \
14797 X(3, (Q, R, I), QUAD), \
14798 X(3, (I, Q, Q), QUAD), \
14799 X(3, (I, Q, R), QUAD), \
14800 X(3, (R, Q, Q), QUAD), \
14801 X(3, (D, D, D), DOUBLE), \
14802 X(3, (Q, Q, Q), QUAD), \
14803 X(3, (D, D, I), DOUBLE), \
14804 X(3, (Q, Q, I), QUAD), \
14805 X(3, (D, D, S), DOUBLE), \
14806 X(3, (Q, Q, S), QUAD), \
14807 X(3, (Q, Q, R), QUAD), \
14808 X(3, (R, R, Q), QUAD), \
14809 X(2, (R, Q), QUAD), \
14810 X(2, (D, D), DOUBLE), \
14811 X(2, (Q, Q), QUAD), \
14812 X(2, (D, S), DOUBLE), \
14813 X(2, (Q, S), QUAD), \
14814 X(2, (D, R), DOUBLE), \
14815 X(2, (Q, R), QUAD), \
14816 X(2, (D, I), DOUBLE), \
14817 X(2, (Q, I), QUAD), \
14818 X(3, (P, F, I), SINGLE), \
14819 X(3, (P, D, I), DOUBLE), \
14820 X(3, (P, Q, I), QUAD), \
14821 X(4, (P, F, F, I), SINGLE), \
14822 X(4, (P, D, D, I), DOUBLE), \
14823 X(4, (P, Q, Q, I), QUAD), \
14824 X(5, (P, F, F, F, I), SINGLE), \
14825 X(5, (P, D, D, D, I), DOUBLE), \
14826 X(5, (P, Q, Q, Q, I), QUAD), \
14827 X(3, (D, L, D), DOUBLE), \
14828 X(2, (D, Q), MIXED), \
14829 X(2, (Q, D), MIXED), \
14830 X(3, (D, Q, I), MIXED), \
14831 X(3, (Q, D, I), MIXED), \
14832 X(3, (Q, D, D), MIXED), \
14833 X(3, (D, Q, Q), MIXED), \
14834 X(3, (Q, Q, D), MIXED), \
14835 X(3, (Q, D, S), MIXED), \
14836 X(3, (D, Q, S), MIXED), \
14837 X(4, (D, D, D, I), DOUBLE), \
14838 X(4, (Q, Q, Q, I), QUAD), \
14839 X(4, (D, D, S, I), DOUBLE), \
14840 X(4, (Q, Q, S, I), QUAD), \
14841 X(2, (F, F), SINGLE), \
14842 X(3, (F, F, F), SINGLE), \
14843 X(2, (F, I), SINGLE), \
14844 X(2, (F, D), MIXED), \
14845 X(2, (D, F), MIXED), \
14846 X(3, (F, F, I), MIXED), \
14847 X(4, (R, R, F, F), SINGLE), \
14848 X(4, (F, F, R, R), SINGLE), \
14849 X(3, (D, R, R), DOUBLE), \
14850 X(3, (R, R, D), DOUBLE), \
14851 X(2, (S, R), SINGLE), \
14852 X(2, (R, S), SINGLE), \
14853 X(2, (F, R), SINGLE), \
14854 X(2, (R, F), SINGLE), \
14855 /* Used for MVE tail predicated loop instructions. */\
14856 X(2, (R, R), QUAD), \
14857 /* Half float shape supported so far. */\
14858 X (2, (H, D), MIXED), \
14859 X (2, (D, H), MIXED), \
14860 X (2, (H, F), MIXED), \
14861 X (2, (F, H), MIXED), \
14862 X (2, (H, H), HALF), \
14863 X (2, (H, R), HALF), \
14864 X (2, (R, H), HALF), \
14865 X (2, (H, I), HALF), \
14866 X (3, (H, H, H), HALF), \
14867 X (3, (H, F, I), MIXED), \
14868 X (3, (F, H, I), MIXED), \
14869 X (3, (D, H, H), MIXED), \
14870 X (3, (D, H, S), MIXED)
14871
14872 #define S2(A,B) NS_##A##B
14873 #define S3(A,B,C) NS_##A##B##C
14874 #define S4(A,B,C,D) NS_##A##B##C##D
14875 #define S5(A,B,C,D,E) NS_##A##B##C##D##E
14876
14877 #define X(N, L, C) S##N L
14878
14879 enum neon_shape
14880 {
14881 NEON_SHAPE_DEF,
14882 NS_NULL
14883 };
14884
14885 #undef X
14886 #undef S2
14887 #undef S3
14888 #undef S4
14889 #undef S5
14890
14891 enum neon_shape_class
14892 {
14893 SC_HALF,
14894 SC_SINGLE,
14895 SC_DOUBLE,
14896 SC_QUAD,
14897 SC_MIXED
14898 };
14899
14900 #define X(N, L, C) SC_##C
14901
14902 static enum neon_shape_class neon_shape_class[] =
14903 {
14904 NEON_SHAPE_DEF
14905 };
14906
14907 #undef X
14908
14909 enum neon_shape_el
14910 {
14911 SE_H,
14912 SE_F,
14913 SE_D,
14914 SE_Q,
14915 SE_I,
14916 SE_S,
14917 SE_R,
14918 SE_L,
14919 SE_P
14920 };
14921
14922 /* Register widths of above. */
14923 static unsigned neon_shape_el_size[] =
14924 {
14925 16,
14926 32,
14927 64,
14928 128,
14929 0,
14930 32,
14931 32,
14932 0,
14933 0
14934 };
14935
14936 struct neon_shape_info
14937 {
14938 unsigned els;
14939 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
14940 };
14941
14942 #define S2(A,B) { SE_##A, SE_##B }
14943 #define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
14944 #define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
14945 #define S5(A,B,C,D,E) { SE_##A, SE_##B, SE_##C, SE_##D, SE_##E }
14946
14947 #define X(N, L, C) { N, S##N L }
14948
14949 static struct neon_shape_info neon_shape_tab[] =
14950 {
14951 NEON_SHAPE_DEF
14952 };
14953
14954 #undef X
14955 #undef S2
14956 #undef S3
14957 #undef S4
14958 #undef S5
14959
14960 /* Bit masks used in type checking given instructions.
14961 'N_EQK' means the type must be the same as (or based on in some way) the key
14962 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
14963 set, various other bits can be set as well in order to modify the meaning of
14964 the type constraint. */
14965
14966 enum neon_type_mask
14967 {
14968 N_S8 = 0x0000001,
14969 N_S16 = 0x0000002,
14970 N_S32 = 0x0000004,
14971 N_S64 = 0x0000008,
14972 N_U8 = 0x0000010,
14973 N_U16 = 0x0000020,
14974 N_U32 = 0x0000040,
14975 N_U64 = 0x0000080,
14976 N_I8 = 0x0000100,
14977 N_I16 = 0x0000200,
14978 N_I32 = 0x0000400,
14979 N_I64 = 0x0000800,
14980 N_8 = 0x0001000,
14981 N_16 = 0x0002000,
14982 N_32 = 0x0004000,
14983 N_64 = 0x0008000,
14984 N_P8 = 0x0010000,
14985 N_P16 = 0x0020000,
14986 N_F16 = 0x0040000,
14987 N_F32 = 0x0080000,
14988 N_F64 = 0x0100000,
14989 N_P64 = 0x0200000,
14990 N_BF16 = 0x0400000,
14991 N_KEY = 0x1000000, /* Key element (main type specifier). */
14992 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
14993 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
14994 N_UNT = 0x8000000, /* Must be explicitly untyped. */
14995 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
14996 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
14997 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
14998 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
14999 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
15000 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
15001 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
15002 N_UTYP = 0,
15003 N_MAX_NONSPECIAL = N_P64
15004 };
15005
15006 #define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
15007
15008 #define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
15009 #define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
15010 #define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
15011 #define N_S_32 (N_S8 | N_S16 | N_S32)
15012 #define N_F_16_32 (N_F16 | N_F32)
15013 #define N_SUF_32 (N_SU_32 | N_F_16_32)
15014 #define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
15015 #define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F16 | N_F32)
15016 #define N_F_ALL (N_F16 | N_F32 | N_F64)
15017 #define N_I_MVE (N_I8 | N_I16 | N_I32)
15018 #define N_F_MVE (N_F16 | N_F32)
15019 #define N_SU_MVE (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
15020
15021 /* Pass this as the first type argument to neon_check_type to ignore types
15022 altogether. */
15023 #define N_IGNORE_TYPE (N_KEY | N_EQK)
15024
15025 /* Select a "shape" for the current instruction (describing register types or
15026 sizes) from a list of alternatives. Return NS_NULL if the current instruction
15027 doesn't fit. For non-polymorphic shapes, checking is usually done as a
15028 function of operand parsing, so this function doesn't need to be called.
15029 Shapes should be listed in order of decreasing length. */
15030
15031 static enum neon_shape
15032 neon_select_shape (enum neon_shape shape, ...)
15033 {
15034 va_list ap;
15035 enum neon_shape first_shape = shape;
15036
15037 /* Fix missing optional operands. FIXME: we don't know at this point how
15038 many arguments we should have, so this makes the assumption that we have
15039 > 1. This is true of all current Neon opcodes, I think, but may not be
15040 true in the future. */
15041 if (!inst.operands[1].present)
15042 inst.operands[1] = inst.operands[0];
15043
15044 va_start (ap, shape);
15045
15046 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
15047 {
15048 unsigned j;
15049 int matches = 1;
15050
15051 for (j = 0; j < neon_shape_tab[shape].els; j++)
15052 {
15053 if (!inst.operands[j].present)
15054 {
15055 matches = 0;
15056 break;
15057 }
15058
15059 switch (neon_shape_tab[shape].el[j])
15060 {
15061 /* If a .f16, .16, .u16, .s16 type specifier is given over
15062 a VFP single precision register operand, it's essentially
15063 means only half of the register is used.
15064
15065 If the type specifier is given after the mnemonics, the
15066 information is stored in inst.vectype. If the type specifier
15067 is given after register operand, the information is stored
15068 in inst.operands[].vectype.
15069
15070 When there is only one type specifier, and all the register
15071 operands are the same type of hardware register, the type
15072 specifier applies to all register operands.
15073
15074 If no type specifier is given, the shape is inferred from
15075 operand information.
15076
15077 for example:
15078 vadd.f16 s0, s1, s2: NS_HHH
15079 vabs.f16 s0, s1: NS_HH
15080 vmov.f16 s0, r1: NS_HR
15081 vmov.f16 r0, s1: NS_RH
15082 vcvt.f16 r0, s1: NS_RH
15083 vcvt.f16.s32 s2, s2, #29: NS_HFI
15084 vcvt.f16.s32 s2, s2: NS_HF
15085 */
15086 case SE_H:
15087 if (!(inst.operands[j].isreg
15088 && inst.operands[j].isvec
15089 && inst.operands[j].issingle
15090 && !inst.operands[j].isquad
15091 && ((inst.vectype.elems == 1
15092 && inst.vectype.el[0].size == 16)
15093 || (inst.vectype.elems > 1
15094 && inst.vectype.el[j].size == 16)
15095 || (inst.vectype.elems == 0
15096 && inst.operands[j].vectype.type != NT_invtype
15097 && inst.operands[j].vectype.size == 16))))
15098 matches = 0;
15099 break;
15100
15101 case SE_F:
15102 if (!(inst.operands[j].isreg
15103 && inst.operands[j].isvec
15104 && inst.operands[j].issingle
15105 && !inst.operands[j].isquad
15106 && ((inst.vectype.elems == 1 && inst.vectype.el[0].size == 32)
15107 || (inst.vectype.elems > 1 && inst.vectype.el[j].size == 32)
15108 || (inst.vectype.elems == 0
15109 && (inst.operands[j].vectype.size == 32
15110 || inst.operands[j].vectype.type == NT_invtype)))))
15111 matches = 0;
15112 break;
15113
15114 case SE_D:
15115 if (!(inst.operands[j].isreg
15116 && inst.operands[j].isvec
15117 && !inst.operands[j].isquad
15118 && !inst.operands[j].issingle))
15119 matches = 0;
15120 break;
15121
15122 case SE_R:
15123 if (!(inst.operands[j].isreg
15124 && !inst.operands[j].isvec))
15125 matches = 0;
15126 break;
15127
15128 case SE_Q:
15129 if (!(inst.operands[j].isreg
15130 && inst.operands[j].isvec
15131 && inst.operands[j].isquad
15132 && !inst.operands[j].issingle))
15133 matches = 0;
15134 break;
15135
15136 case SE_I:
15137 if (!(!inst.operands[j].isreg
15138 && !inst.operands[j].isscalar))
15139 matches = 0;
15140 break;
15141
15142 case SE_S:
15143 if (!(!inst.operands[j].isreg
15144 && inst.operands[j].isscalar))
15145 matches = 0;
15146 break;
15147
15148 case SE_P:
15149 case SE_L:
15150 break;
15151 }
15152 if (!matches)
15153 break;
15154 }
15155 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
15156 /* We've matched all the entries in the shape table, and we don't
15157 have any left over operands which have not been matched. */
15158 break;
15159 }
15160
15161 va_end (ap);
15162
15163 if (shape == NS_NULL && first_shape != NS_NULL)
15164 first_error (_("invalid instruction shape"));
15165
15166 return shape;
15167 }
15168
15169 /* True if SHAPE is predominantly a quadword operation (most of the time, this
15170 means the Q bit should be set). */
15171
15172 static int
15173 neon_quad (enum neon_shape shape)
15174 {
15175 return neon_shape_class[shape] == SC_QUAD;
15176 }
15177
15178 static void
15179 neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
15180 unsigned *g_size)
15181 {
15182 /* Allow modification to be made to types which are constrained to be
15183 based on the key element, based on bits set alongside N_EQK. */
15184 if ((typebits & N_EQK) != 0)
15185 {
15186 if ((typebits & N_HLF) != 0)
15187 *g_size /= 2;
15188 else if ((typebits & N_DBL) != 0)
15189 *g_size *= 2;
15190 if ((typebits & N_SGN) != 0)
15191 *g_type = NT_signed;
15192 else if ((typebits & N_UNS) != 0)
15193 *g_type = NT_unsigned;
15194 else if ((typebits & N_INT) != 0)
15195 *g_type = NT_integer;
15196 else if ((typebits & N_FLT) != 0)
15197 *g_type = NT_float;
15198 else if ((typebits & N_SIZ) != 0)
15199 *g_type = NT_untyped;
15200 }
15201 }
15202
15203 /* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
15204 operand type, i.e. the single type specified in a Neon instruction when it
15205 is the only one given. */
15206
15207 static struct neon_type_el
15208 neon_type_promote (struct neon_type_el *key, unsigned thisarg)
15209 {
15210 struct neon_type_el dest = *key;
15211
15212 gas_assert ((thisarg & N_EQK) != 0);
15213
15214 neon_modify_type_size (thisarg, &dest.type, &dest.size);
15215
15216 return dest;
15217 }
15218
15219 /* Convert Neon type and size into compact bitmask representation. */
15220
15221 static enum neon_type_mask
15222 type_chk_of_el_type (enum neon_el_type type, unsigned size)
15223 {
15224 switch (type)
15225 {
15226 case NT_untyped:
15227 switch (size)
15228 {
15229 case 8: return N_8;
15230 case 16: return N_16;
15231 case 32: return N_32;
15232 case 64: return N_64;
15233 default: ;
15234 }
15235 break;
15236
15237 case NT_integer:
15238 switch (size)
15239 {
15240 case 8: return N_I8;
15241 case 16: return N_I16;
15242 case 32: return N_I32;
15243 case 64: return N_I64;
15244 default: ;
15245 }
15246 break;
15247
15248 case NT_float:
15249 switch (size)
15250 {
15251 case 16: return N_F16;
15252 case 32: return N_F32;
15253 case 64: return N_F64;
15254 default: ;
15255 }
15256 break;
15257
15258 case NT_poly:
15259 switch (size)
15260 {
15261 case 8: return N_P8;
15262 case 16: return N_P16;
15263 case 64: return N_P64;
15264 default: ;
15265 }
15266 break;
15267
15268 case NT_signed:
15269 switch (size)
15270 {
15271 case 8: return N_S8;
15272 case 16: return N_S16;
15273 case 32: return N_S32;
15274 case 64: return N_S64;
15275 default: ;
15276 }
15277 break;
15278
15279 case NT_unsigned:
15280 switch (size)
15281 {
15282 case 8: return N_U8;
15283 case 16: return N_U16;
15284 case 32: return N_U32;
15285 case 64: return N_U64;
15286 default: ;
15287 }
15288 break;
15289
15290 case NT_bfloat:
15291 if (size == 16) return N_BF16;
15292 break;
15293
15294 default: ;
15295 }
15296
15297 return N_UTYP;
15298 }
15299
15300 /* Convert compact Neon bitmask type representation to a type and size. Only
15301 handles the case where a single bit is set in the mask. */
15302
15303 static int
15304 el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
15305 enum neon_type_mask mask)
15306 {
15307 if ((mask & N_EQK) != 0)
15308 return FAIL;
15309
15310 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
15311 *size = 8;
15312 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16 | N_BF16))
15313 != 0)
15314 *size = 16;
15315 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
15316 *size = 32;
15317 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
15318 *size = 64;
15319 else
15320 return FAIL;
15321
15322 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
15323 *type = NT_signed;
15324 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
15325 *type = NT_unsigned;
15326 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
15327 *type = NT_integer;
15328 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
15329 *type = NT_untyped;
15330 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
15331 *type = NT_poly;
15332 else if ((mask & (N_F_ALL)) != 0)
15333 *type = NT_float;
15334 else if ((mask & (N_BF16)) != 0)
15335 *type = NT_bfloat;
15336 else
15337 return FAIL;
15338
15339 return SUCCESS;
15340 }
15341
15342 /* Modify a bitmask of allowed types. This is only needed for type
15343 relaxation. */
15344
15345 static unsigned
15346 modify_types_allowed (unsigned allowed, unsigned mods)
15347 {
15348 unsigned size;
15349 enum neon_el_type type;
15350 unsigned destmask;
15351 int i;
15352
15353 destmask = 0;
15354
15355 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
15356 {
15357 if (el_type_of_type_chk (&type, &size,
15358 (enum neon_type_mask) (allowed & i)) == SUCCESS)
15359 {
15360 neon_modify_type_size (mods, &type, &size);
15361 destmask |= type_chk_of_el_type (type, size);
15362 }
15363 }
15364
15365 return destmask;
15366 }
15367
15368 /* Check type and return type classification.
15369 The manual states (paraphrase): If one datatype is given, it indicates the
15370 type given in:
15371 - the second operand, if there is one
15372 - the operand, if there is no second operand
15373 - the result, if there are no operands.
15374 This isn't quite good enough though, so we use a concept of a "key" datatype
15375 which is set on a per-instruction basis, which is the one which matters when
15376 only one data type is written.
15377 Note: this function has side-effects (e.g. filling in missing operands). All
15378 Neon instructions should call it before performing bit encoding. */
15379
15380 static struct neon_type_el
15381 neon_check_type (unsigned els, enum neon_shape ns, ...)
15382 {
15383 va_list ap;
15384 unsigned i, pass, key_el = 0;
15385 unsigned types[NEON_MAX_TYPE_ELS];
15386 enum neon_el_type k_type = NT_invtype;
15387 unsigned k_size = -1u;
15388 struct neon_type_el badtype = {NT_invtype, -1};
15389 unsigned key_allowed = 0;
15390
15391 /* Optional registers in Neon instructions are always (not) in operand 1.
15392 Fill in the missing operand here, if it was omitted. */
15393 if (els > 1 && !inst.operands[1].present)
15394 inst.operands[1] = inst.operands[0];
15395
15396 /* Suck up all the varargs. */
15397 va_start (ap, ns);
15398 for (i = 0; i < els; i++)
15399 {
15400 unsigned thisarg = va_arg (ap, unsigned);
15401 if (thisarg == N_IGNORE_TYPE)
15402 {
15403 va_end (ap);
15404 return badtype;
15405 }
15406 types[i] = thisarg;
15407 if ((thisarg & N_KEY) != 0)
15408 key_el = i;
15409 }
15410 va_end (ap);
15411
15412 if (inst.vectype.elems > 0)
15413 for (i = 0; i < els; i++)
15414 if (inst.operands[i].vectype.type != NT_invtype)
15415 {
15416 first_error (_("types specified in both the mnemonic and operands"));
15417 return badtype;
15418 }
15419
15420 /* Duplicate inst.vectype elements here as necessary.
15421 FIXME: No idea if this is exactly the same as the ARM assembler,
15422 particularly when an insn takes one register and one non-register
15423 operand. */
15424 if (inst.vectype.elems == 1 && els > 1)
15425 {
15426 unsigned j;
15427 inst.vectype.elems = els;
15428 inst.vectype.el[key_el] = inst.vectype.el[0];
15429 for (j = 0; j < els; j++)
15430 if (j != key_el)
15431 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
15432 types[j]);
15433 }
15434 else if (inst.vectype.elems == 0 && els > 0)
15435 {
15436 unsigned j;
15437 /* No types were given after the mnemonic, so look for types specified
15438 after each operand. We allow some flexibility here; as long as the
15439 "key" operand has a type, we can infer the others. */
15440 for (j = 0; j < els; j++)
15441 if (inst.operands[j].vectype.type != NT_invtype)
15442 inst.vectype.el[j] = inst.operands[j].vectype;
15443
15444 if (inst.operands[key_el].vectype.type != NT_invtype)
15445 {
15446 for (j = 0; j < els; j++)
15447 if (inst.operands[j].vectype.type == NT_invtype)
15448 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
15449 types[j]);
15450 }
15451 else
15452 {
15453 first_error (_("operand types can't be inferred"));
15454 return badtype;
15455 }
15456 }
15457 else if (inst.vectype.elems != els)
15458 {
15459 first_error (_("type specifier has the wrong number of parts"));
15460 return badtype;
15461 }
15462
15463 for (pass = 0; pass < 2; pass++)
15464 {
15465 for (i = 0; i < els; i++)
15466 {
15467 unsigned thisarg = types[i];
15468 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
15469 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
15470 enum neon_el_type g_type = inst.vectype.el[i].type;
15471 unsigned g_size = inst.vectype.el[i].size;
15472
15473 /* Decay more-specific signed & unsigned types to sign-insensitive
15474 integer types if sign-specific variants are unavailable. */
15475 if ((g_type == NT_signed || g_type == NT_unsigned)
15476 && (types_allowed & N_SU_ALL) == 0)
15477 g_type = NT_integer;
15478
15479 /* If only untyped args are allowed, decay any more specific types to
15480 them. Some instructions only care about signs for some element
15481 sizes, so handle that properly. */
15482 if (((types_allowed & N_UNT) == 0)
15483 && ((g_size == 8 && (types_allowed & N_8) != 0)
15484 || (g_size == 16 && (types_allowed & N_16) != 0)
15485 || (g_size == 32 && (types_allowed & N_32) != 0)
15486 || (g_size == 64 && (types_allowed & N_64) != 0)))
15487 g_type = NT_untyped;
15488
15489 if (pass == 0)
15490 {
15491 if ((thisarg & N_KEY) != 0)
15492 {
15493 k_type = g_type;
15494 k_size = g_size;
15495 key_allowed = thisarg & ~N_KEY;
15496
15497 /* Check architecture constraint on FP16 extension. */
15498 if (k_size == 16
15499 && k_type == NT_float
15500 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
15501 {
15502 inst.error = _(BAD_FP16);
15503 return badtype;
15504 }
15505 }
15506 }
15507 else
15508 {
15509 if ((thisarg & N_VFP) != 0)
15510 {
15511 enum neon_shape_el regshape;
15512 unsigned regwidth, match;
15513
15514 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
15515 if (ns == NS_NULL)
15516 {
15517 first_error (_("invalid instruction shape"));
15518 return badtype;
15519 }
15520 regshape = neon_shape_tab[ns].el[i];
15521 regwidth = neon_shape_el_size[regshape];
15522
15523 /* In VFP mode, operands must match register widths. If we
15524 have a key operand, use its width, else use the width of
15525 the current operand. */
15526 if (k_size != -1u)
15527 match = k_size;
15528 else
15529 match = g_size;
15530
15531 /* FP16 will use a single precision register. */
15532 if (regwidth == 32 && match == 16)
15533 {
15534 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
15535 match = regwidth;
15536 else
15537 {
15538 inst.error = _(BAD_FP16);
15539 return badtype;
15540 }
15541 }
15542
15543 if (regwidth != match)
15544 {
15545 first_error (_("operand size must match register width"));
15546 return badtype;
15547 }
15548 }
15549
15550 if ((thisarg & N_EQK) == 0)
15551 {
15552 unsigned given_type = type_chk_of_el_type (g_type, g_size);
15553
15554 if ((given_type & types_allowed) == 0)
15555 {
15556 first_error (BAD_SIMD_TYPE);
15557 return badtype;
15558 }
15559 }
15560 else
15561 {
15562 enum neon_el_type mod_k_type = k_type;
15563 unsigned mod_k_size = k_size;
15564 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
15565 if (g_type != mod_k_type || g_size != mod_k_size)
15566 {
15567 first_error (_("inconsistent types in Neon instruction"));
15568 return badtype;
15569 }
15570 }
15571 }
15572 }
15573 }
15574
15575 return inst.vectype.el[key_el];
15576 }
15577
15578 /* Neon-style VFP instruction forwarding. */
15579
15580 /* Thumb VFP instructions have 0xE in the condition field. */
15581
15582 static void
15583 do_vfp_cond_or_thumb (void)
15584 {
15585 inst.is_neon = 1;
15586
15587 if (thumb_mode)
15588 inst.instruction |= 0xe0000000;
15589 else
15590 inst.instruction |= inst.cond << 28;
15591 }
15592
15593 /* Look up and encode a simple mnemonic, for use as a helper function for the
15594 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
15595 etc. It is assumed that operand parsing has already been done, and that the
15596 operands are in the form expected by the given opcode (this isn't necessarily
15597 the same as the form in which they were parsed, hence some massaging must
15598 take place before this function is called).
15599 Checks current arch version against that in the looked-up opcode. */
15600
15601 static void
15602 do_vfp_nsyn_opcode (const char *opname)
15603 {
15604 const struct asm_opcode *opcode;
15605
15606 opcode = (const struct asm_opcode *) str_hash_find (arm_ops_hsh, opname);
15607
15608 if (!opcode)
15609 abort ();
15610
15611 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
15612 thumb_mode ? *opcode->tvariant : *opcode->avariant),
15613 _(BAD_FPU));
15614
15615 inst.is_neon = 1;
15616
15617 if (thumb_mode)
15618 {
15619 inst.instruction = opcode->tvalue;
15620 opcode->tencode ();
15621 }
15622 else
15623 {
15624 inst.instruction = (inst.cond << 28) | opcode->avalue;
15625 opcode->aencode ();
15626 }
15627 }
15628
15629 static void
15630 do_vfp_nsyn_add_sub (enum neon_shape rs)
15631 {
15632 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
15633
15634 if (rs == NS_FFF || rs == NS_HHH)
15635 {
15636 if (is_add)
15637 do_vfp_nsyn_opcode ("fadds");
15638 else
15639 do_vfp_nsyn_opcode ("fsubs");
15640
15641 /* ARMv8.2 fp16 instruction. */
15642 if (rs == NS_HHH)
15643 do_scalar_fp16_v82_encode ();
15644 }
15645 else
15646 {
15647 if (is_add)
15648 do_vfp_nsyn_opcode ("faddd");
15649 else
15650 do_vfp_nsyn_opcode ("fsubd");
15651 }
15652 }
15653
15654 /* Check operand types to see if this is a VFP instruction, and if so call
15655 PFN (). */
15656
15657 static int
15658 try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
15659 {
15660 enum neon_shape rs;
15661 struct neon_type_el et;
15662
15663 switch (args)
15664 {
15665 case 2:
15666 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
15667 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
15668 break;
15669
15670 case 3:
15671 rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15672 et = neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15673 N_F_ALL | N_KEY | N_VFP);
15674 break;
15675
15676 default:
15677 abort ();
15678 }
15679
15680 if (et.type != NT_invtype)
15681 {
15682 pfn (rs);
15683 return SUCCESS;
15684 }
15685
15686 inst.error = NULL;
15687 return FAIL;
15688 }
15689
15690 static void
15691 do_vfp_nsyn_mla_mls (enum neon_shape rs)
15692 {
15693 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
15694
15695 if (rs == NS_FFF || rs == NS_HHH)
15696 {
15697 if (is_mla)
15698 do_vfp_nsyn_opcode ("fmacs");
15699 else
15700 do_vfp_nsyn_opcode ("fnmacs");
15701
15702 /* ARMv8.2 fp16 instruction. */
15703 if (rs == NS_HHH)
15704 do_scalar_fp16_v82_encode ();
15705 }
15706 else
15707 {
15708 if (is_mla)
15709 do_vfp_nsyn_opcode ("fmacd");
15710 else
15711 do_vfp_nsyn_opcode ("fnmacd");
15712 }
15713 }
15714
15715 static void
15716 do_vfp_nsyn_fma_fms (enum neon_shape rs)
15717 {
15718 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
15719
15720 if (rs == NS_FFF || rs == NS_HHH)
15721 {
15722 if (is_fma)
15723 do_vfp_nsyn_opcode ("ffmas");
15724 else
15725 do_vfp_nsyn_opcode ("ffnmas");
15726
15727 /* ARMv8.2 fp16 instruction. */
15728 if (rs == NS_HHH)
15729 do_scalar_fp16_v82_encode ();
15730 }
15731 else
15732 {
15733 if (is_fma)
15734 do_vfp_nsyn_opcode ("ffmad");
15735 else
15736 do_vfp_nsyn_opcode ("ffnmad");
15737 }
15738 }
15739
15740 static void
15741 do_vfp_nsyn_mul (enum neon_shape rs)
15742 {
15743 if (rs == NS_FFF || rs == NS_HHH)
15744 {
15745 do_vfp_nsyn_opcode ("fmuls");
15746
15747 /* ARMv8.2 fp16 instruction. */
15748 if (rs == NS_HHH)
15749 do_scalar_fp16_v82_encode ();
15750 }
15751 else
15752 do_vfp_nsyn_opcode ("fmuld");
15753 }
15754
15755 static void
15756 do_vfp_nsyn_abs_neg (enum neon_shape rs)
15757 {
15758 int is_neg = (inst.instruction & 0x80) != 0;
15759 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_VFP | N_KEY);
15760
15761 if (rs == NS_FF || rs == NS_HH)
15762 {
15763 if (is_neg)
15764 do_vfp_nsyn_opcode ("fnegs");
15765 else
15766 do_vfp_nsyn_opcode ("fabss");
15767
15768 /* ARMv8.2 fp16 instruction. */
15769 if (rs == NS_HH)
15770 do_scalar_fp16_v82_encode ();
15771 }
15772 else
15773 {
15774 if (is_neg)
15775 do_vfp_nsyn_opcode ("fnegd");
15776 else
15777 do_vfp_nsyn_opcode ("fabsd");
15778 }
15779 }
15780
15781 /* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
15782 insns belong to Neon, and are handled elsewhere. */
15783
15784 static void
15785 do_vfp_nsyn_ldm_stm (int is_dbmode)
15786 {
15787 int is_ldm = (inst.instruction & (1 << 20)) != 0;
15788 if (is_ldm)
15789 {
15790 if (is_dbmode)
15791 do_vfp_nsyn_opcode ("fldmdbs");
15792 else
15793 do_vfp_nsyn_opcode ("fldmias");
15794 }
15795 else
15796 {
15797 if (is_dbmode)
15798 do_vfp_nsyn_opcode ("fstmdbs");
15799 else
15800 do_vfp_nsyn_opcode ("fstmias");
15801 }
15802 }
15803
15804 static void
15805 do_vfp_nsyn_sqrt (void)
15806 {
15807 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
15808 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
15809
15810 if (rs == NS_FF || rs == NS_HH)
15811 {
15812 do_vfp_nsyn_opcode ("fsqrts");
15813
15814 /* ARMv8.2 fp16 instruction. */
15815 if (rs == NS_HH)
15816 do_scalar_fp16_v82_encode ();
15817 }
15818 else
15819 do_vfp_nsyn_opcode ("fsqrtd");
15820 }
15821
15822 static void
15823 do_vfp_nsyn_div (void)
15824 {
15825 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15826 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15827 N_F_ALL | N_KEY | N_VFP);
15828
15829 if (rs == NS_FFF || rs == NS_HHH)
15830 {
15831 do_vfp_nsyn_opcode ("fdivs");
15832
15833 /* ARMv8.2 fp16 instruction. */
15834 if (rs == NS_HHH)
15835 do_scalar_fp16_v82_encode ();
15836 }
15837 else
15838 do_vfp_nsyn_opcode ("fdivd");
15839 }
15840
15841 static void
15842 do_vfp_nsyn_nmul (void)
15843 {
15844 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
15845 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
15846 N_F_ALL | N_KEY | N_VFP);
15847
15848 if (rs == NS_FFF || rs == NS_HHH)
15849 {
15850 NEON_ENCODE (SINGLE, inst);
15851 do_vfp_sp_dyadic ();
15852
15853 /* ARMv8.2 fp16 instruction. */
15854 if (rs == NS_HHH)
15855 do_scalar_fp16_v82_encode ();
15856 }
15857 else
15858 {
15859 NEON_ENCODE (DOUBLE, inst);
15860 do_vfp_dp_rd_rn_rm ();
15861 }
15862 do_vfp_cond_or_thumb ();
15863
15864 }
15865
15866 /* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
15867 (0, 1, 2, 3). */
15868
15869 static unsigned
15870 neon_logbits (unsigned x)
15871 {
15872 return ffs (x) - 4;
15873 }
15874
15875 #define LOW4(R) ((R) & 0xf)
15876 #define HI1(R) (((R) >> 4) & 1)
15877 #define LOW1(R) ((R) & 0x1)
15878 #define HI4(R) (((R) >> 1) & 0xf)
15879
15880 static unsigned
15881 mve_get_vcmp_vpt_cond (struct neon_type_el et)
15882 {
15883 switch (et.type)
15884 {
15885 default:
15886 first_error (BAD_EL_TYPE);
15887 return 0;
15888 case NT_float:
15889 switch (inst.operands[0].imm)
15890 {
15891 default:
15892 first_error (_("invalid condition"));
15893 return 0;
15894 case 0x0:
15895 /* eq. */
15896 return 0;
15897 case 0x1:
15898 /* ne. */
15899 return 1;
15900 case 0xa:
15901 /* ge/ */
15902 return 4;
15903 case 0xb:
15904 /* lt. */
15905 return 5;
15906 case 0xc:
15907 /* gt. */
15908 return 6;
15909 case 0xd:
15910 /* le. */
15911 return 7;
15912 }
15913 case NT_integer:
15914 /* only accept eq and ne. */
15915 if (inst.operands[0].imm > 1)
15916 {
15917 first_error (_("invalid condition"));
15918 return 0;
15919 }
15920 return inst.operands[0].imm;
15921 case NT_unsigned:
15922 if (inst.operands[0].imm == 0x2)
15923 return 2;
15924 else if (inst.operands[0].imm == 0x8)
15925 return 3;
15926 else
15927 {
15928 first_error (_("invalid condition"));
15929 return 0;
15930 }
15931 case NT_signed:
15932 switch (inst.operands[0].imm)
15933 {
15934 default:
15935 first_error (_("invalid condition"));
15936 return 0;
15937 case 0xa:
15938 /* ge. */
15939 return 4;
15940 case 0xb:
15941 /* lt. */
15942 return 5;
15943 case 0xc:
15944 /* gt. */
15945 return 6;
15946 case 0xd:
15947 /* le. */
15948 return 7;
15949 }
15950 }
15951 /* Should be unreachable. */
15952 abort ();
15953 }
15954
15955 /* For VCTP (create vector tail predicate) in MVE. */
15956 static void
15957 do_mve_vctp (void)
15958 {
15959 int dt = 0;
15960 unsigned size = 0x0;
15961
15962 if (inst.cond > COND_ALWAYS)
15963 inst.pred_insn_type = INSIDE_VPT_INSN;
15964 else
15965 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
15966
15967 /* This is a typical MVE instruction which has no type but have size 8, 16,
15968 32 and 64. For instructions with no type, inst.vectype.el[j].type is set
15969 to NT_untyped and size is updated in inst.vectype.el[j].size. */
15970 if ((inst.operands[0].present) && (inst.vectype.el[0].type == NT_untyped))
15971 dt = inst.vectype.el[0].size;
15972
15973 /* Setting this does not indicate an actual NEON instruction, but only
15974 indicates that the mnemonic accepts neon-style type suffixes. */
15975 inst.is_neon = 1;
15976
15977 switch (dt)
15978 {
15979 case 8:
15980 break;
15981 case 16:
15982 size = 0x1; break;
15983 case 32:
15984 size = 0x2; break;
15985 case 64:
15986 size = 0x3; break;
15987 default:
15988 first_error (_("Type is not allowed for this instruction"));
15989 }
15990 inst.instruction |= size << 20;
15991 inst.instruction |= inst.operands[0].reg << 16;
15992 }
15993
15994 static void
15995 do_mve_vpt (void)
15996 {
15997 /* We are dealing with a vector predicated block. */
15998 if (inst.operands[0].present)
15999 {
16000 enum neon_shape rs = neon_select_shape (NS_IQQ, NS_IQR, NS_NULL);
16001 struct neon_type_el et
16002 = neon_check_type (3, rs, N_EQK, N_KEY | N_F_MVE | N_I_MVE | N_SU_32,
16003 N_EQK);
16004
16005 unsigned fcond = mve_get_vcmp_vpt_cond (et);
16006
16007 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
16008
16009 if (et.type == NT_invtype)
16010 return;
16011
16012 if (et.type == NT_float)
16013 {
16014 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
16015 BAD_FPU);
16016 constraint (et.size != 16 && et.size != 32, BAD_EL_TYPE);
16017 inst.instruction |= (et.size == 16) << 28;
16018 inst.instruction |= 0x3 << 20;
16019 }
16020 else
16021 {
16022 constraint (et.size != 8 && et.size != 16 && et.size != 32,
16023 BAD_EL_TYPE);
16024 inst.instruction |= 1 << 28;
16025 inst.instruction |= neon_logbits (et.size) << 20;
16026 }
16027
16028 if (inst.operands[2].isquad)
16029 {
16030 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16031 inst.instruction |= LOW4 (inst.operands[2].reg);
16032 inst.instruction |= (fcond & 0x2) >> 1;
16033 }
16034 else
16035 {
16036 if (inst.operands[2].reg == REG_SP)
16037 as_tsktsk (MVE_BAD_SP);
16038 inst.instruction |= 1 << 6;
16039 inst.instruction |= (fcond & 0x2) << 4;
16040 inst.instruction |= inst.operands[2].reg;
16041 }
16042 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16043 inst.instruction |= (fcond & 0x4) << 10;
16044 inst.instruction |= (fcond & 0x1) << 7;
16045
16046 }
16047 set_pred_insn_type (VPT_INSN);
16048 now_pred.cc = 0;
16049 now_pred.mask = ((inst.instruction & 0x00400000) >> 19)
16050 | ((inst.instruction & 0xe000) >> 13);
16051 now_pred.warn_deprecated = FALSE;
16052 now_pred.type = VECTOR_PRED;
16053 inst.is_neon = 1;
16054 }
16055
16056 static void
16057 do_mve_vcmp (void)
16058 {
16059 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
16060 if (!inst.operands[1].isreg || !inst.operands[1].isquad)
16061 first_error (_(reg_expected_msgs[REG_TYPE_MQ]));
16062 if (!inst.operands[2].present)
16063 first_error (_("MVE vector or ARM register expected"));
16064 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
16065
16066 /* Deal with 'else' conditional MVE's vcmp, it will be parsed as vcmpe. */
16067 if ((inst.instruction & 0xffffffff) == N_MNEM_vcmpe
16068 && inst.operands[1].isquad)
16069 {
16070 inst.instruction = N_MNEM_vcmp;
16071 inst.cond = 0x10;
16072 }
16073
16074 if (inst.cond > COND_ALWAYS)
16075 inst.pred_insn_type = INSIDE_VPT_INSN;
16076 else
16077 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16078
16079 enum neon_shape rs = neon_select_shape (NS_IQQ, NS_IQR, NS_NULL);
16080 struct neon_type_el et
16081 = neon_check_type (3, rs, N_EQK, N_KEY | N_F_MVE | N_I_MVE | N_SU_32,
16082 N_EQK);
16083
16084 constraint (rs == NS_IQR && inst.operands[2].reg == REG_PC
16085 && !inst.operands[2].iszr, BAD_PC);
16086
16087 unsigned fcond = mve_get_vcmp_vpt_cond (et);
16088
16089 inst.instruction = 0xee010f00;
16090 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16091 inst.instruction |= (fcond & 0x4) << 10;
16092 inst.instruction |= (fcond & 0x1) << 7;
16093 if (et.type == NT_float)
16094 {
16095 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
16096 BAD_FPU);
16097 inst.instruction |= (et.size == 16) << 28;
16098 inst.instruction |= 0x3 << 20;
16099 }
16100 else
16101 {
16102 inst.instruction |= 1 << 28;
16103 inst.instruction |= neon_logbits (et.size) << 20;
16104 }
16105 if (inst.operands[2].isquad)
16106 {
16107 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16108 inst.instruction |= (fcond & 0x2) >> 1;
16109 inst.instruction |= LOW4 (inst.operands[2].reg);
16110 }
16111 else
16112 {
16113 if (inst.operands[2].reg == REG_SP)
16114 as_tsktsk (MVE_BAD_SP);
16115 inst.instruction |= 1 << 6;
16116 inst.instruction |= (fcond & 0x2) << 4;
16117 inst.instruction |= inst.operands[2].reg;
16118 }
16119
16120 inst.is_neon = 1;
16121 return;
16122 }
16123
16124 static void
16125 do_mve_vmaxa_vmina (void)
16126 {
16127 if (inst.cond > COND_ALWAYS)
16128 inst.pred_insn_type = INSIDE_VPT_INSN;
16129 else
16130 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16131
16132 enum neon_shape rs = neon_select_shape (NS_QQ, NS_NULL);
16133 struct neon_type_el et
16134 = neon_check_type (2, rs, N_EQK, N_KEY | N_S8 | N_S16 | N_S32);
16135
16136 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16137 inst.instruction |= neon_logbits (et.size) << 18;
16138 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16139 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16140 inst.instruction |= LOW4 (inst.operands[1].reg);
16141 inst.is_neon = 1;
16142 }
16143
16144 static void
16145 do_mve_vfmas (void)
16146 {
16147 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
16148 struct neon_type_el et
16149 = neon_check_type (3, rs, N_F_MVE | N_KEY, N_EQK, N_EQK);
16150
16151 if (inst.cond > COND_ALWAYS)
16152 inst.pred_insn_type = INSIDE_VPT_INSN;
16153 else
16154 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16155
16156 if (inst.operands[2].reg == REG_SP)
16157 as_tsktsk (MVE_BAD_SP);
16158 else if (inst.operands[2].reg == REG_PC)
16159 as_tsktsk (MVE_BAD_PC);
16160
16161 inst.instruction |= (et.size == 16) << 28;
16162 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16163 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16164 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16165 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16166 inst.instruction |= inst.operands[2].reg;
16167 inst.is_neon = 1;
16168 }
16169
16170 static void
16171 do_mve_viddup (void)
16172 {
16173 if (inst.cond > COND_ALWAYS)
16174 inst.pred_insn_type = INSIDE_VPT_INSN;
16175 else
16176 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16177
16178 unsigned imm = inst.relocs[0].exp.X_add_number;
16179 constraint (imm != 1 && imm != 2 && imm != 4 && imm != 8,
16180 _("immediate must be either 1, 2, 4 or 8"));
16181
16182 enum neon_shape rs;
16183 struct neon_type_el et;
16184 unsigned Rm;
16185 if (inst.instruction == M_MNEM_vddup || inst.instruction == M_MNEM_vidup)
16186 {
16187 rs = neon_select_shape (NS_QRI, NS_NULL);
16188 et = neon_check_type (2, rs, N_KEY | N_U8 | N_U16 | N_U32, N_EQK);
16189 Rm = 7;
16190 }
16191 else
16192 {
16193 constraint ((inst.operands[2].reg % 2) != 1, BAD_EVEN);
16194 if (inst.operands[2].reg == REG_SP)
16195 as_tsktsk (MVE_BAD_SP);
16196 else if (inst.operands[2].reg == REG_PC)
16197 first_error (BAD_PC);
16198
16199 rs = neon_select_shape (NS_QRRI, NS_NULL);
16200 et = neon_check_type (3, rs, N_KEY | N_U8 | N_U16 | N_U32, N_EQK, N_EQK);
16201 Rm = inst.operands[2].reg >> 1;
16202 }
16203 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16204 inst.instruction |= neon_logbits (et.size) << 20;
16205 inst.instruction |= inst.operands[1].reg << 16;
16206 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16207 inst.instruction |= (imm > 2) << 7;
16208 inst.instruction |= Rm << 1;
16209 inst.instruction |= (imm == 2 || imm == 8);
16210 inst.is_neon = 1;
16211 }
16212
16213 static void
16214 do_mve_vmlas (void)
16215 {
16216 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
16217 struct neon_type_el et
16218 = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
16219
16220 if (inst.operands[2].reg == REG_PC)
16221 as_tsktsk (MVE_BAD_PC);
16222 else if (inst.operands[2].reg == REG_SP)
16223 as_tsktsk (MVE_BAD_SP);
16224
16225 if (inst.cond > COND_ALWAYS)
16226 inst.pred_insn_type = INSIDE_VPT_INSN;
16227 else
16228 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16229
16230 inst.instruction |= (et.type == NT_unsigned) << 28;
16231 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16232 inst.instruction |= neon_logbits (et.size) << 20;
16233 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16234 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16235 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16236 inst.instruction |= inst.operands[2].reg;
16237 inst.is_neon = 1;
16238 }
16239
16240 static void
16241 do_mve_vshll (void)
16242 {
16243 struct neon_type_el et
16244 = neon_check_type (2, NS_QQI, N_EQK, N_S8 | N_U8 | N_S16 | N_U16 | N_KEY);
16245
16246 if (inst.cond > COND_ALWAYS)
16247 inst.pred_insn_type = INSIDE_VPT_INSN;
16248 else
16249 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16250
16251 int imm = inst.operands[2].imm;
16252 constraint (imm < 1 || (unsigned)imm > et.size,
16253 _("immediate value out of range"));
16254
16255 if ((unsigned)imm == et.size)
16256 {
16257 inst.instruction |= neon_logbits (et.size) << 18;
16258 inst.instruction |= 0x110001;
16259 }
16260 else
16261 {
16262 inst.instruction |= (et.size + imm) << 16;
16263 inst.instruction |= 0x800140;
16264 }
16265
16266 inst.instruction |= (et.type == NT_unsigned) << 28;
16267 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16268 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16269 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16270 inst.instruction |= LOW4 (inst.operands[1].reg);
16271 inst.is_neon = 1;
16272 }
16273
16274 static void
16275 do_mve_vshlc (void)
16276 {
16277 if (inst.cond > COND_ALWAYS)
16278 inst.pred_insn_type = INSIDE_VPT_INSN;
16279 else
16280 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16281
16282 if (inst.operands[1].reg == REG_PC)
16283 as_tsktsk (MVE_BAD_PC);
16284 else if (inst.operands[1].reg == REG_SP)
16285 as_tsktsk (MVE_BAD_SP);
16286
16287 int imm = inst.operands[2].imm;
16288 constraint (imm < 1 || imm > 32, _("immediate value out of range"));
16289
16290 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16291 inst.instruction |= (imm & 0x1f) << 16;
16292 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16293 inst.instruction |= inst.operands[1].reg;
16294 inst.is_neon = 1;
16295 }
16296
16297 static void
16298 do_mve_vshrn (void)
16299 {
16300 unsigned types;
16301 switch (inst.instruction)
16302 {
16303 case M_MNEM_vshrnt:
16304 case M_MNEM_vshrnb:
16305 case M_MNEM_vrshrnt:
16306 case M_MNEM_vrshrnb:
16307 types = N_I16 | N_I32;
16308 break;
16309 case M_MNEM_vqshrnt:
16310 case M_MNEM_vqshrnb:
16311 case M_MNEM_vqrshrnt:
16312 case M_MNEM_vqrshrnb:
16313 types = N_U16 | N_U32 | N_S16 | N_S32;
16314 break;
16315 case M_MNEM_vqshrunt:
16316 case M_MNEM_vqshrunb:
16317 case M_MNEM_vqrshrunt:
16318 case M_MNEM_vqrshrunb:
16319 types = N_S16 | N_S32;
16320 break;
16321 default:
16322 abort ();
16323 }
16324
16325 struct neon_type_el et = neon_check_type (2, NS_QQI, N_EQK, types | N_KEY);
16326
16327 if (inst.cond > COND_ALWAYS)
16328 inst.pred_insn_type = INSIDE_VPT_INSN;
16329 else
16330 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16331
16332 unsigned Qd = inst.operands[0].reg;
16333 unsigned Qm = inst.operands[1].reg;
16334 unsigned imm = inst.operands[2].imm;
16335 constraint (imm < 1 || ((unsigned) imm) > (et.size / 2),
16336 et.size == 16
16337 ? _("immediate operand expected in the range [1,8]")
16338 : _("immediate operand expected in the range [1,16]"));
16339
16340 inst.instruction |= (et.type == NT_unsigned) << 28;
16341 inst.instruction |= HI1 (Qd) << 22;
16342 inst.instruction |= (et.size - imm) << 16;
16343 inst.instruction |= LOW4 (Qd) << 12;
16344 inst.instruction |= HI1 (Qm) << 5;
16345 inst.instruction |= LOW4 (Qm);
16346 inst.is_neon = 1;
16347 }
16348
16349 static void
16350 do_mve_vqmovn (void)
16351 {
16352 struct neon_type_el et;
16353 if (inst.instruction == M_MNEM_vqmovnt
16354 || inst.instruction == M_MNEM_vqmovnb)
16355 et = neon_check_type (2, NS_QQ, N_EQK,
16356 N_U16 | N_U32 | N_S16 | N_S32 | N_KEY);
16357 else
16358 et = neon_check_type (2, NS_QQ, N_EQK, N_S16 | N_S32 | N_KEY);
16359
16360 if (inst.cond > COND_ALWAYS)
16361 inst.pred_insn_type = INSIDE_VPT_INSN;
16362 else
16363 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16364
16365 inst.instruction |= (et.type == NT_unsigned) << 28;
16366 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16367 inst.instruction |= (et.size == 32) << 18;
16368 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16369 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16370 inst.instruction |= LOW4 (inst.operands[1].reg);
16371 inst.is_neon = 1;
16372 }
16373
16374 static void
16375 do_mve_vpsel (void)
16376 {
16377 neon_select_shape (NS_QQQ, NS_NULL);
16378
16379 if (inst.cond > COND_ALWAYS)
16380 inst.pred_insn_type = INSIDE_VPT_INSN;
16381 else
16382 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16383
16384 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16385 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16386 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16387 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16388 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16389 inst.instruction |= LOW4 (inst.operands[2].reg);
16390 inst.is_neon = 1;
16391 }
16392
16393 static void
16394 do_mve_vpnot (void)
16395 {
16396 if (inst.cond > COND_ALWAYS)
16397 inst.pred_insn_type = INSIDE_VPT_INSN;
16398 else
16399 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16400 }
16401
16402 static void
16403 do_mve_vmaxnma_vminnma (void)
16404 {
16405 enum neon_shape rs = neon_select_shape (NS_QQ, NS_NULL);
16406 struct neon_type_el et
16407 = neon_check_type (2, rs, N_EQK, N_F_MVE | N_KEY);
16408
16409 if (inst.cond > COND_ALWAYS)
16410 inst.pred_insn_type = INSIDE_VPT_INSN;
16411 else
16412 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16413
16414 inst.instruction |= (et.size == 16) << 28;
16415 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16416 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16417 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16418 inst.instruction |= LOW4 (inst.operands[1].reg);
16419 inst.is_neon = 1;
16420 }
16421
16422 static void
16423 do_mve_vcmul (void)
16424 {
16425 enum neon_shape rs = neon_select_shape (NS_QQQI, NS_NULL);
16426 struct neon_type_el et
16427 = neon_check_type (3, rs, N_EQK, N_EQK, N_F_MVE | N_KEY);
16428
16429 if (inst.cond > COND_ALWAYS)
16430 inst.pred_insn_type = INSIDE_VPT_INSN;
16431 else
16432 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16433
16434 unsigned rot = inst.relocs[0].exp.X_add_number;
16435 constraint (rot != 0 && rot != 90 && rot != 180 && rot != 270,
16436 _("immediate out of range"));
16437
16438 if (et.size == 32 && (inst.operands[0].reg == inst.operands[1].reg
16439 || inst.operands[0].reg == inst.operands[2].reg))
16440 as_tsktsk (BAD_MVE_SRCDEST);
16441
16442 inst.instruction |= (et.size == 32) << 28;
16443 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16444 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16445 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16446 inst.instruction |= (rot > 90) << 12;
16447 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16448 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16449 inst.instruction |= LOW4 (inst.operands[2].reg);
16450 inst.instruction |= (rot == 90 || rot == 270);
16451 inst.is_neon = 1;
16452 }
16453
16454 /* To handle the Low Overhead Loop instructions
16455 in Armv8.1-M Mainline and MVE. */
16456 static void
16457 do_t_loloop (void)
16458 {
16459 unsigned long insn = inst.instruction;
16460
16461 inst.instruction = THUMB_OP32 (inst.instruction);
16462
16463 if (insn == T_MNEM_lctp)
16464 return;
16465
16466 set_pred_insn_type (MVE_OUTSIDE_PRED_INSN);
16467
16468 if (insn == T_MNEM_wlstp || insn == T_MNEM_dlstp)
16469 {
16470 struct neon_type_el et
16471 = neon_check_type (2, NS_RR, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
16472 inst.instruction |= neon_logbits (et.size) << 20;
16473 inst.is_neon = 1;
16474 }
16475
16476 switch (insn)
16477 {
16478 case T_MNEM_letp:
16479 constraint (!inst.operands[0].present,
16480 _("expected LR"));
16481 /* fall through. */
16482 case T_MNEM_le:
16483 /* le <label>. */
16484 if (!inst.operands[0].present)
16485 inst.instruction |= 1 << 21;
16486
16487 v8_1_loop_reloc (TRUE);
16488 break;
16489
16490 case T_MNEM_wls:
16491 case T_MNEM_wlstp:
16492 v8_1_loop_reloc (FALSE);
16493 /* fall through. */
16494 case T_MNEM_dlstp:
16495 case T_MNEM_dls:
16496 constraint (inst.operands[1].isreg != 1, BAD_ARGS);
16497
16498 if (insn == T_MNEM_wlstp || insn == T_MNEM_dlstp)
16499 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
16500 else if (inst.operands[1].reg == REG_PC)
16501 as_tsktsk (MVE_BAD_PC);
16502 if (inst.operands[1].reg == REG_SP)
16503 as_tsktsk (MVE_BAD_SP);
16504
16505 inst.instruction |= (inst.operands[1].reg << 16);
16506 break;
16507
16508 default:
16509 abort ();
16510 }
16511 }
16512
16513
16514 static void
16515 do_vfp_nsyn_cmp (void)
16516 {
16517 enum neon_shape rs;
16518 if (!inst.operands[0].isreg)
16519 {
16520 do_mve_vcmp ();
16521 return;
16522 }
16523 else
16524 {
16525 constraint (inst.operands[2].present, BAD_SYNTAX);
16526 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd),
16527 BAD_FPU);
16528 }
16529
16530 if (inst.operands[1].isreg)
16531 {
16532 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
16533 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
16534
16535 if (rs == NS_FF || rs == NS_HH)
16536 {
16537 NEON_ENCODE (SINGLE, inst);
16538 do_vfp_sp_monadic ();
16539 }
16540 else
16541 {
16542 NEON_ENCODE (DOUBLE, inst);
16543 do_vfp_dp_rd_rm ();
16544 }
16545 }
16546 else
16547 {
16548 rs = neon_select_shape (NS_HI, NS_FI, NS_DI, NS_NULL);
16549 neon_check_type (2, rs, N_F_ALL | N_KEY | N_VFP, N_EQK);
16550
16551 switch (inst.instruction & 0x0fffffff)
16552 {
16553 case N_MNEM_vcmp:
16554 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
16555 break;
16556 case N_MNEM_vcmpe:
16557 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
16558 break;
16559 default:
16560 abort ();
16561 }
16562
16563 if (rs == NS_FI || rs == NS_HI)
16564 {
16565 NEON_ENCODE (SINGLE, inst);
16566 do_vfp_sp_compare_z ();
16567 }
16568 else
16569 {
16570 NEON_ENCODE (DOUBLE, inst);
16571 do_vfp_dp_rd ();
16572 }
16573 }
16574 do_vfp_cond_or_thumb ();
16575
16576 /* ARMv8.2 fp16 instruction. */
16577 if (rs == NS_HI || rs == NS_HH)
16578 do_scalar_fp16_v82_encode ();
16579 }
16580
16581 static void
16582 nsyn_insert_sp (void)
16583 {
16584 inst.operands[1] = inst.operands[0];
16585 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
16586 inst.operands[0].reg = REG_SP;
16587 inst.operands[0].isreg = 1;
16588 inst.operands[0].writeback = 1;
16589 inst.operands[0].present = 1;
16590 }
16591
16592 /* Fix up Neon data-processing instructions, ORing in the correct bits for
16593 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
16594
16595 static void
16596 neon_dp_fixup (struct arm_it* insn)
16597 {
16598 unsigned int i = insn->instruction;
16599 insn->is_neon = 1;
16600
16601 if (thumb_mode)
16602 {
16603 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
16604 if (i & (1 << 24))
16605 i |= 1 << 28;
16606
16607 i &= ~(1 << 24);
16608
16609 i |= 0xef000000;
16610 }
16611 else
16612 i |= 0xf2000000;
16613
16614 insn->instruction = i;
16615 }
16616
16617 static void
16618 mve_encode_qqr (int size, int U, int fp)
16619 {
16620 if (inst.operands[2].reg == REG_SP)
16621 as_tsktsk (MVE_BAD_SP);
16622 else if (inst.operands[2].reg == REG_PC)
16623 as_tsktsk (MVE_BAD_PC);
16624
16625 if (fp)
16626 {
16627 /* vadd. */
16628 if (((unsigned)inst.instruction) == 0xd00)
16629 inst.instruction = 0xee300f40;
16630 /* vsub. */
16631 else if (((unsigned)inst.instruction) == 0x200d00)
16632 inst.instruction = 0xee301f40;
16633 /* vmul. */
16634 else if (((unsigned)inst.instruction) == 0x1000d10)
16635 inst.instruction = 0xee310e60;
16636
16637 /* Setting size which is 1 for F16 and 0 for F32. */
16638 inst.instruction |= (size == 16) << 28;
16639 }
16640 else
16641 {
16642 /* vadd. */
16643 if (((unsigned)inst.instruction) == 0x800)
16644 inst.instruction = 0xee010f40;
16645 /* vsub. */
16646 else if (((unsigned)inst.instruction) == 0x1000800)
16647 inst.instruction = 0xee011f40;
16648 /* vhadd. */
16649 else if (((unsigned)inst.instruction) == 0)
16650 inst.instruction = 0xee000f40;
16651 /* vhsub. */
16652 else if (((unsigned)inst.instruction) == 0x200)
16653 inst.instruction = 0xee001f40;
16654 /* vmla. */
16655 else if (((unsigned)inst.instruction) == 0x900)
16656 inst.instruction = 0xee010e40;
16657 /* vmul. */
16658 else if (((unsigned)inst.instruction) == 0x910)
16659 inst.instruction = 0xee011e60;
16660 /* vqadd. */
16661 else if (((unsigned)inst.instruction) == 0x10)
16662 inst.instruction = 0xee000f60;
16663 /* vqsub. */
16664 else if (((unsigned)inst.instruction) == 0x210)
16665 inst.instruction = 0xee001f60;
16666 /* vqrdmlah. */
16667 else if (((unsigned)inst.instruction) == 0x3000b10)
16668 inst.instruction = 0xee000e40;
16669 /* vqdmulh. */
16670 else if (((unsigned)inst.instruction) == 0x0000b00)
16671 inst.instruction = 0xee010e60;
16672 /* vqrdmulh. */
16673 else if (((unsigned)inst.instruction) == 0x1000b00)
16674 inst.instruction = 0xfe010e60;
16675
16676 /* Set U-bit. */
16677 inst.instruction |= U << 28;
16678
16679 /* Setting bits for size. */
16680 inst.instruction |= neon_logbits (size) << 20;
16681 }
16682 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16683 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16684 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16685 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16686 inst.instruction |= inst.operands[2].reg;
16687 inst.is_neon = 1;
16688 }
16689
16690 static void
16691 mve_encode_rqq (unsigned bit28, unsigned size)
16692 {
16693 inst.instruction |= bit28 << 28;
16694 inst.instruction |= neon_logbits (size) << 20;
16695 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16696 inst.instruction |= inst.operands[0].reg << 12;
16697 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16698 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16699 inst.instruction |= LOW4 (inst.operands[2].reg);
16700 inst.is_neon = 1;
16701 }
16702
16703 static void
16704 mve_encode_qqq (int ubit, int size)
16705 {
16706
16707 inst.instruction |= (ubit != 0) << 28;
16708 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16709 inst.instruction |= neon_logbits (size) << 20;
16710 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16711 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16712 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16713 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16714 inst.instruction |= LOW4 (inst.operands[2].reg);
16715
16716 inst.is_neon = 1;
16717 }
16718
16719 static void
16720 mve_encode_rq (unsigned bit28, unsigned size)
16721 {
16722 inst.instruction |= bit28 << 28;
16723 inst.instruction |= neon_logbits (size) << 18;
16724 inst.instruction |= inst.operands[0].reg << 12;
16725 inst.instruction |= LOW4 (inst.operands[1].reg);
16726 inst.is_neon = 1;
16727 }
16728
16729 static void
16730 mve_encode_rrqq (unsigned U, unsigned size)
16731 {
16732 constraint (inst.operands[3].reg > 14, MVE_BAD_QREG);
16733
16734 inst.instruction |= U << 28;
16735 inst.instruction |= (inst.operands[1].reg >> 1) << 20;
16736 inst.instruction |= LOW4 (inst.operands[2].reg) << 16;
16737 inst.instruction |= (size == 32) << 16;
16738 inst.instruction |= inst.operands[0].reg << 12;
16739 inst.instruction |= HI1 (inst.operands[2].reg) << 7;
16740 inst.instruction |= inst.operands[3].reg;
16741 inst.is_neon = 1;
16742 }
16743
16744 /* Helper function for neon_three_same handling the operands. */
16745 static void
16746 neon_three_args (int isquad)
16747 {
16748 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16749 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16750 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16751 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16752 inst.instruction |= LOW4 (inst.operands[2].reg);
16753 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16754 inst.instruction |= (isquad != 0) << 6;
16755 inst.is_neon = 1;
16756 }
16757
16758 /* Encode insns with bit pattern:
16759
16760 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
16761 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
16762
16763 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
16764 different meaning for some instruction. */
16765
16766 static void
16767 neon_three_same (int isquad, int ubit, int size)
16768 {
16769 neon_three_args (isquad);
16770 inst.instruction |= (ubit != 0) << 24;
16771 if (size != -1)
16772 inst.instruction |= neon_logbits (size) << 20;
16773
16774 neon_dp_fixup (&inst);
16775 }
16776
16777 /* Encode instructions of the form:
16778
16779 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
16780 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
16781
16782 Don't write size if SIZE == -1. */
16783
16784 static void
16785 neon_two_same (int qbit, int ubit, int size)
16786 {
16787 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16788 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16789 inst.instruction |= LOW4 (inst.operands[1].reg);
16790 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16791 inst.instruction |= (qbit != 0) << 6;
16792 inst.instruction |= (ubit != 0) << 24;
16793
16794 if (size != -1)
16795 inst.instruction |= neon_logbits (size) << 18;
16796
16797 neon_dp_fixup (&inst);
16798 }
16799
16800 enum vfp_or_neon_is_neon_bits
16801 {
16802 NEON_CHECK_CC = 1,
16803 NEON_CHECK_ARCH = 2,
16804 NEON_CHECK_ARCH8 = 4
16805 };
16806
16807 /* Call this function if an instruction which may have belonged to the VFP or
16808 Neon instruction sets, but turned out to be a Neon instruction (due to the
16809 operand types involved, etc.). We have to check and/or fix-up a couple of
16810 things:
16811
16812 - Make sure the user hasn't attempted to make a Neon instruction
16813 conditional.
16814 - Alter the value in the condition code field if necessary.
16815 - Make sure that the arch supports Neon instructions.
16816
16817 Which of these operations take place depends on bits from enum
16818 vfp_or_neon_is_neon_bits.
16819
16820 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
16821 current instruction's condition is COND_ALWAYS, the condition field is
16822 changed to inst.uncond_value. This is necessary because instructions shared
16823 between VFP and Neon may be conditional for the VFP variants only, and the
16824 unconditional Neon version must have, e.g., 0xF in the condition field. */
16825
16826 static int
16827 vfp_or_neon_is_neon (unsigned check)
16828 {
16829 /* Conditions are always legal in Thumb mode (IT blocks). */
16830 if (!thumb_mode && (check & NEON_CHECK_CC))
16831 {
16832 if (inst.cond != COND_ALWAYS)
16833 {
16834 first_error (_(BAD_COND));
16835 return FAIL;
16836 }
16837 if (inst.uncond_value != -1)
16838 inst.instruction |= inst.uncond_value << 28;
16839 }
16840
16841
16842 if (((check & NEON_CHECK_ARCH) && !mark_feature_used (&fpu_neon_ext_v1))
16843 || ((check & NEON_CHECK_ARCH8)
16844 && !mark_feature_used (&fpu_neon_ext_armv8)))
16845 {
16846 first_error (_(BAD_FPU));
16847 return FAIL;
16848 }
16849
16850 return SUCCESS;
16851 }
16852
16853
16854 /* Return TRUE if the SIMD instruction is available for the current
16855 cpu_variant. FP is set to TRUE if this is a SIMD floating-point
16856 instruction. CHECK contains th. CHECK contains the set of bits to pass to
16857 vfp_or_neon_is_neon for the NEON specific checks. */
16858
16859 static bfd_boolean
16860 check_simd_pred_availability (int fp, unsigned check)
16861 {
16862 if (inst.cond > COND_ALWAYS)
16863 {
16864 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16865 {
16866 inst.error = BAD_FPU;
16867 return FALSE;
16868 }
16869 inst.pred_insn_type = INSIDE_VPT_INSN;
16870 }
16871 else if (inst.cond < COND_ALWAYS)
16872 {
16873 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16874 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16875 else if (vfp_or_neon_is_neon (check) == FAIL)
16876 return FALSE;
16877 }
16878 else
16879 {
16880 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fp ? mve_fp_ext : mve_ext)
16881 && vfp_or_neon_is_neon (check) == FAIL)
16882 return FALSE;
16883
16884 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16885 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
16886 }
16887 return TRUE;
16888 }
16889
16890 /* Neon instruction encoders, in approximate order of appearance. */
16891
16892 static void
16893 do_neon_dyadic_i_su (void)
16894 {
16895 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16896 return;
16897
16898 enum neon_shape rs;
16899 struct neon_type_el et;
16900 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16901 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
16902 else
16903 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16904
16905 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_32 | N_KEY);
16906
16907
16908 if (rs != NS_QQR)
16909 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16910 else
16911 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
16912 }
16913
16914 static void
16915 do_neon_dyadic_i64_su (void)
16916 {
16917 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
16918 return;
16919 enum neon_shape rs;
16920 struct neon_type_el et;
16921 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16922 {
16923 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
16924 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
16925 }
16926 else
16927 {
16928 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16929 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_ALL | N_KEY);
16930 }
16931 if (rs == NS_QQR)
16932 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
16933 else
16934 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
16935 }
16936
16937 static void
16938 neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
16939 unsigned immbits)
16940 {
16941 unsigned size = et.size >> 3;
16942 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16943 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16944 inst.instruction |= LOW4 (inst.operands[1].reg);
16945 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16946 inst.instruction |= (isquad != 0) << 6;
16947 inst.instruction |= immbits << 16;
16948 inst.instruction |= (size >> 3) << 7;
16949 inst.instruction |= (size & 0x7) << 19;
16950 if (write_ubit)
16951 inst.instruction |= (uval != 0) << 24;
16952
16953 neon_dp_fixup (&inst);
16954 }
16955
16956 static void
16957 do_neon_shl (void)
16958 {
16959 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
16960 return;
16961
16962 if (!inst.operands[2].isreg)
16963 {
16964 enum neon_shape rs;
16965 struct neon_type_el et;
16966 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16967 {
16968 rs = neon_select_shape (NS_QQI, NS_NULL);
16969 et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_MVE);
16970 }
16971 else
16972 {
16973 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
16974 et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
16975 }
16976 int imm = inst.operands[2].imm;
16977
16978 constraint (imm < 0 || (unsigned)imm >= et.size,
16979 _("immediate out of range for shift"));
16980 NEON_ENCODE (IMMED, inst);
16981 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
16982 }
16983 else
16984 {
16985 enum neon_shape rs;
16986 struct neon_type_el et;
16987 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
16988 {
16989 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
16990 et = neon_check_type (3, rs, N_EQK, N_SU_MVE | N_KEY, N_EQK | N_EQK);
16991 }
16992 else
16993 {
16994 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
16995 et = neon_check_type (3, rs, N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
16996 }
16997
16998
16999 if (rs == NS_QQR)
17000 {
17001 constraint (inst.operands[0].reg != inst.operands[1].reg,
17002 _("invalid instruction shape"));
17003 if (inst.operands[2].reg == REG_SP)
17004 as_tsktsk (MVE_BAD_SP);
17005 else if (inst.operands[2].reg == REG_PC)
17006 as_tsktsk (MVE_BAD_PC);
17007
17008 inst.instruction = 0xee311e60;
17009 inst.instruction |= (et.type == NT_unsigned) << 28;
17010 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17011 inst.instruction |= neon_logbits (et.size) << 18;
17012 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17013 inst.instruction |= inst.operands[2].reg;
17014 inst.is_neon = 1;
17015 }
17016 else
17017 {
17018 unsigned int tmp;
17019
17020 /* VSHL/VQSHL 3-register variants have syntax such as:
17021 vshl.xx Dd, Dm, Dn
17022 whereas other 3-register operations encoded by neon_three_same have
17023 syntax like:
17024 vadd.xx Dd, Dn, Dm
17025 (i.e. with Dn & Dm reversed). Swap operands[1].reg and
17026 operands[2].reg here. */
17027 tmp = inst.operands[2].reg;
17028 inst.operands[2].reg = inst.operands[1].reg;
17029 inst.operands[1].reg = tmp;
17030 NEON_ENCODE (INTEGER, inst);
17031 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
17032 }
17033 }
17034 }
17035
17036 static void
17037 do_neon_qshl (void)
17038 {
17039 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
17040 return;
17041
17042 if (!inst.operands[2].isreg)
17043 {
17044 enum neon_shape rs;
17045 struct neon_type_el et;
17046 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17047 {
17048 rs = neon_select_shape (NS_QQI, NS_NULL);
17049 et = neon_check_type (2, rs, N_EQK, N_KEY | N_SU_MVE);
17050 }
17051 else
17052 {
17053 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
17054 et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
17055 }
17056 int imm = inst.operands[2].imm;
17057
17058 constraint (imm < 0 || (unsigned)imm >= et.size,
17059 _("immediate out of range for shift"));
17060 NEON_ENCODE (IMMED, inst);
17061 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
17062 }
17063 else
17064 {
17065 enum neon_shape rs;
17066 struct neon_type_el et;
17067
17068 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17069 {
17070 rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
17071 et = neon_check_type (3, rs, N_EQK, N_SU_MVE | N_KEY, N_EQK | N_EQK);
17072 }
17073 else
17074 {
17075 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17076 et = neon_check_type (3, rs, N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
17077 }
17078
17079 if (rs == NS_QQR)
17080 {
17081 constraint (inst.operands[0].reg != inst.operands[1].reg,
17082 _("invalid instruction shape"));
17083 if (inst.operands[2].reg == REG_SP)
17084 as_tsktsk (MVE_BAD_SP);
17085 else if (inst.operands[2].reg == REG_PC)
17086 as_tsktsk (MVE_BAD_PC);
17087
17088 inst.instruction = 0xee311ee0;
17089 inst.instruction |= (et.type == NT_unsigned) << 28;
17090 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17091 inst.instruction |= neon_logbits (et.size) << 18;
17092 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17093 inst.instruction |= inst.operands[2].reg;
17094 inst.is_neon = 1;
17095 }
17096 else
17097 {
17098 unsigned int tmp;
17099
17100 /* See note in do_neon_shl. */
17101 tmp = inst.operands[2].reg;
17102 inst.operands[2].reg = inst.operands[1].reg;
17103 inst.operands[1].reg = tmp;
17104 NEON_ENCODE (INTEGER, inst);
17105 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
17106 }
17107 }
17108 }
17109
17110 static void
17111 do_neon_rshl (void)
17112 {
17113 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
17114 return;
17115
17116 enum neon_shape rs;
17117 struct neon_type_el et;
17118 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17119 {
17120 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
17121 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
17122 }
17123 else
17124 {
17125 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17126 et = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_ALL | N_KEY);
17127 }
17128
17129 unsigned int tmp;
17130
17131 if (rs == NS_QQR)
17132 {
17133 if (inst.operands[2].reg == REG_PC)
17134 as_tsktsk (MVE_BAD_PC);
17135 else if (inst.operands[2].reg == REG_SP)
17136 as_tsktsk (MVE_BAD_SP);
17137
17138 constraint (inst.operands[0].reg != inst.operands[1].reg,
17139 _("invalid instruction shape"));
17140
17141 if (inst.instruction == 0x0000510)
17142 /* We are dealing with vqrshl. */
17143 inst.instruction = 0xee331ee0;
17144 else
17145 /* We are dealing with vrshl. */
17146 inst.instruction = 0xee331e60;
17147
17148 inst.instruction |= (et.type == NT_unsigned) << 28;
17149 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17150 inst.instruction |= neon_logbits (et.size) << 18;
17151 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17152 inst.instruction |= inst.operands[2].reg;
17153 inst.is_neon = 1;
17154 }
17155 else
17156 {
17157 tmp = inst.operands[2].reg;
17158 inst.operands[2].reg = inst.operands[1].reg;
17159 inst.operands[1].reg = tmp;
17160 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
17161 }
17162 }
17163
17164 static int
17165 neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
17166 {
17167 /* Handle .I8 pseudo-instructions. */
17168 if (size == 8)
17169 {
17170 /* Unfortunately, this will make everything apart from zero out-of-range.
17171 FIXME is this the intended semantics? There doesn't seem much point in
17172 accepting .I8 if so. */
17173 immediate |= immediate << 8;
17174 size = 16;
17175 }
17176
17177 if (size >= 32)
17178 {
17179 if (immediate == (immediate & 0x000000ff))
17180 {
17181 *immbits = immediate;
17182 return 0x1;
17183 }
17184 else if (immediate == (immediate & 0x0000ff00))
17185 {
17186 *immbits = immediate >> 8;
17187 return 0x3;
17188 }
17189 else if (immediate == (immediate & 0x00ff0000))
17190 {
17191 *immbits = immediate >> 16;
17192 return 0x5;
17193 }
17194 else if (immediate == (immediate & 0xff000000))
17195 {
17196 *immbits = immediate >> 24;
17197 return 0x7;
17198 }
17199 if ((immediate & 0xffff) != (immediate >> 16))
17200 goto bad_immediate;
17201 immediate &= 0xffff;
17202 }
17203
17204 if (immediate == (immediate & 0x000000ff))
17205 {
17206 *immbits = immediate;
17207 return 0x9;
17208 }
17209 else if (immediate == (immediate & 0x0000ff00))
17210 {
17211 *immbits = immediate >> 8;
17212 return 0xb;
17213 }
17214
17215 bad_immediate:
17216 first_error (_("immediate value out of range"));
17217 return FAIL;
17218 }
17219
17220 static void
17221 do_neon_logic (void)
17222 {
17223 if (inst.operands[2].present && inst.operands[2].isreg)
17224 {
17225 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17226 if (rs == NS_QQQ
17227 && !check_simd_pred_availability (FALSE,
17228 NEON_CHECK_ARCH | NEON_CHECK_CC))
17229 return;
17230 else if (rs != NS_QQQ
17231 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
17232 first_error (BAD_FPU);
17233
17234 neon_check_type (3, rs, N_IGNORE_TYPE);
17235 /* U bit and size field were set as part of the bitmask. */
17236 NEON_ENCODE (INTEGER, inst);
17237 neon_three_same (neon_quad (rs), 0, -1);
17238 }
17239 else
17240 {
17241 const int three_ops_form = (inst.operands[2].present
17242 && !inst.operands[2].isreg);
17243 const int immoperand = (three_ops_form ? 2 : 1);
17244 enum neon_shape rs = (three_ops_form
17245 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
17246 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
17247 /* Because neon_select_shape makes the second operand a copy of the first
17248 if the second operand is not present. */
17249 if (rs == NS_QQI
17250 && !check_simd_pred_availability (FALSE,
17251 NEON_CHECK_ARCH | NEON_CHECK_CC))
17252 return;
17253 else if (rs != NS_QQI
17254 && !ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
17255 first_error (BAD_FPU);
17256
17257 struct neon_type_el et;
17258 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17259 et = neon_check_type (2, rs, N_I32 | N_I16 | N_KEY, N_EQK);
17260 else
17261 et = neon_check_type (2, rs, N_I8 | N_I16 | N_I32 | N_I64 | N_F32
17262 | N_KEY, N_EQK);
17263
17264 if (et.type == NT_invtype)
17265 return;
17266 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
17267 unsigned immbits;
17268 int cmode;
17269
17270
17271 if (three_ops_form)
17272 constraint (inst.operands[0].reg != inst.operands[1].reg,
17273 _("first and second operands shall be the same register"));
17274
17275 NEON_ENCODE (IMMED, inst);
17276
17277 immbits = inst.operands[immoperand].imm;
17278 if (et.size == 64)
17279 {
17280 /* .i64 is a pseudo-op, so the immediate must be a repeating
17281 pattern. */
17282 if (immbits != (inst.operands[immoperand].regisimm ?
17283 inst.operands[immoperand].reg : 0))
17284 {
17285 /* Set immbits to an invalid constant. */
17286 immbits = 0xdeadbeef;
17287 }
17288 }
17289
17290 switch (opcode)
17291 {
17292 case N_MNEM_vbic:
17293 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17294 break;
17295
17296 case N_MNEM_vorr:
17297 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17298 break;
17299
17300 case N_MNEM_vand:
17301 /* Pseudo-instruction for VBIC. */
17302 neon_invert_size (&immbits, 0, et.size);
17303 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17304 break;
17305
17306 case N_MNEM_vorn:
17307 /* Pseudo-instruction for VORR. */
17308 neon_invert_size (&immbits, 0, et.size);
17309 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
17310 break;
17311
17312 default:
17313 abort ();
17314 }
17315
17316 if (cmode == FAIL)
17317 return;
17318
17319 inst.instruction |= neon_quad (rs) << 6;
17320 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17321 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17322 inst.instruction |= cmode << 8;
17323 neon_write_immbits (immbits);
17324
17325 neon_dp_fixup (&inst);
17326 }
17327 }
17328
17329 static void
17330 do_neon_bitfield (void)
17331 {
17332 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
17333 neon_check_type (3, rs, N_IGNORE_TYPE);
17334 neon_three_same (neon_quad (rs), 0, -1);
17335 }
17336
17337 static void
17338 neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
17339 unsigned destbits)
17340 {
17341 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17342 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
17343 types | N_KEY);
17344 if (et.type == NT_float)
17345 {
17346 NEON_ENCODE (FLOAT, inst);
17347 if (rs == NS_QQR)
17348 mve_encode_qqr (et.size, 0, 1);
17349 else
17350 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
17351 }
17352 else
17353 {
17354 NEON_ENCODE (INTEGER, inst);
17355 if (rs == NS_QQR)
17356 mve_encode_qqr (et.size, et.type == ubit_meaning, 0);
17357 else
17358 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
17359 }
17360 }
17361
17362
17363 static void
17364 do_neon_dyadic_if_su_d (void)
17365 {
17366 /* This version only allow D registers, but that constraint is enforced during
17367 operand parsing so we don't need to do anything extra here. */
17368 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
17369 }
17370
17371 static void
17372 do_neon_dyadic_if_i_d (void)
17373 {
17374 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17375 affected if we specify unsigned args. */
17376 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17377 }
17378
17379 static void
17380 do_mve_vstr_vldr_QI (int size, int elsize, int load)
17381 {
17382 constraint (size < 32, BAD_ADDR_MODE);
17383 constraint (size != elsize, BAD_EL_TYPE);
17384 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
17385 constraint (!inst.operands[1].preind, BAD_ADDR_MODE);
17386 constraint (load && inst.operands[0].reg == inst.operands[1].reg,
17387 _("destination register and offset register may not be the"
17388 " same"));
17389
17390 int imm = inst.relocs[0].exp.X_add_number;
17391 int add = 1;
17392 if (imm < 0)
17393 {
17394 add = 0;
17395 imm = -imm;
17396 }
17397 constraint ((imm % (size / 8) != 0)
17398 || imm > (0x7f << neon_logbits (size)),
17399 (size == 32) ? _("immediate must be a multiple of 4 in the"
17400 " range of +/-[0,508]")
17401 : _("immediate must be a multiple of 8 in the"
17402 " range of +/-[0,1016]"));
17403 inst.instruction |= 0x11 << 24;
17404 inst.instruction |= add << 23;
17405 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17406 inst.instruction |= inst.operands[1].writeback << 21;
17407 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17408 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17409 inst.instruction |= 1 << 12;
17410 inst.instruction |= (size == 64) << 8;
17411 inst.instruction &= 0xffffff00;
17412 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
17413 inst.instruction |= imm >> neon_logbits (size);
17414 }
17415
17416 static void
17417 do_mve_vstr_vldr_RQ (int size, int elsize, int load)
17418 {
17419 unsigned os = inst.operands[1].imm >> 5;
17420 unsigned type = inst.vectype.el[0].type;
17421 constraint (os != 0 && size == 8,
17422 _("can not shift offsets when accessing less than half-word"));
17423 constraint (os && os != neon_logbits (size),
17424 _("shift immediate must be 1, 2 or 3 for half-word, word"
17425 " or double-word accesses respectively"));
17426 if (inst.operands[1].reg == REG_PC)
17427 as_tsktsk (MVE_BAD_PC);
17428
17429 switch (size)
17430 {
17431 case 8:
17432 constraint (elsize >= 64, BAD_EL_TYPE);
17433 break;
17434 case 16:
17435 constraint (elsize < 16 || elsize >= 64, BAD_EL_TYPE);
17436 break;
17437 case 32:
17438 case 64:
17439 constraint (elsize != size, BAD_EL_TYPE);
17440 break;
17441 default:
17442 break;
17443 }
17444 constraint (inst.operands[1].writeback || !inst.operands[1].preind,
17445 BAD_ADDR_MODE);
17446 if (load)
17447 {
17448 constraint (inst.operands[0].reg == (inst.operands[1].imm & 0x1f),
17449 _("destination register and offset register may not be"
17450 " the same"));
17451 constraint (size == elsize && type == NT_signed, BAD_EL_TYPE);
17452 constraint (size != elsize && type != NT_unsigned && type != NT_signed,
17453 BAD_EL_TYPE);
17454 inst.instruction |= ((size == elsize) || (type == NT_unsigned)) << 28;
17455 }
17456 else
17457 {
17458 constraint (type != NT_untyped, BAD_EL_TYPE);
17459 }
17460
17461 inst.instruction |= 1 << 23;
17462 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17463 inst.instruction |= inst.operands[1].reg << 16;
17464 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17465 inst.instruction |= neon_logbits (elsize) << 7;
17466 inst.instruction |= HI1 (inst.operands[1].imm) << 5;
17467 inst.instruction |= LOW4 (inst.operands[1].imm);
17468 inst.instruction |= !!os;
17469 }
17470
17471 static void
17472 do_mve_vstr_vldr_RI (int size, int elsize, int load)
17473 {
17474 enum neon_el_type type = inst.vectype.el[0].type;
17475
17476 constraint (size >= 64, BAD_ADDR_MODE);
17477 switch (size)
17478 {
17479 case 16:
17480 constraint (elsize < 16 || elsize >= 64, BAD_EL_TYPE);
17481 break;
17482 case 32:
17483 constraint (elsize != size, BAD_EL_TYPE);
17484 break;
17485 default:
17486 break;
17487 }
17488 if (load)
17489 {
17490 constraint (elsize != size && type != NT_unsigned
17491 && type != NT_signed, BAD_EL_TYPE);
17492 }
17493 else
17494 {
17495 constraint (elsize != size && type != NT_untyped, BAD_EL_TYPE);
17496 }
17497
17498 int imm = inst.relocs[0].exp.X_add_number;
17499 int add = 1;
17500 if (imm < 0)
17501 {
17502 add = 0;
17503 imm = -imm;
17504 }
17505
17506 if ((imm % (size / 8) != 0) || imm > (0x7f << neon_logbits (size)))
17507 {
17508 switch (size)
17509 {
17510 case 8:
17511 constraint (1, _("immediate must be in the range of +/-[0,127]"));
17512 break;
17513 case 16:
17514 constraint (1, _("immediate must be a multiple of 2 in the"
17515 " range of +/-[0,254]"));
17516 break;
17517 case 32:
17518 constraint (1, _("immediate must be a multiple of 4 in the"
17519 " range of +/-[0,508]"));
17520 break;
17521 }
17522 }
17523
17524 if (size != elsize)
17525 {
17526 constraint (inst.operands[1].reg > 7, BAD_HIREG);
17527 constraint (inst.operands[0].reg > 14,
17528 _("MVE vector register in the range [Q0..Q7] expected"));
17529 inst.instruction |= (load && type == NT_unsigned) << 28;
17530 inst.instruction |= (size == 16) << 19;
17531 inst.instruction |= neon_logbits (elsize) << 7;
17532 }
17533 else
17534 {
17535 if (inst.operands[1].reg == REG_PC)
17536 as_tsktsk (MVE_BAD_PC);
17537 else if (inst.operands[1].reg == REG_SP && inst.operands[1].writeback)
17538 as_tsktsk (MVE_BAD_SP);
17539 inst.instruction |= 1 << 12;
17540 inst.instruction |= neon_logbits (size) << 7;
17541 }
17542 inst.instruction |= inst.operands[1].preind << 24;
17543 inst.instruction |= add << 23;
17544 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17545 inst.instruction |= inst.operands[1].writeback << 21;
17546 inst.instruction |= inst.operands[1].reg << 16;
17547 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17548 inst.instruction &= 0xffffff80;
17549 inst.instruction |= imm >> neon_logbits (size);
17550
17551 }
17552
17553 static void
17554 do_mve_vstr_vldr (void)
17555 {
17556 unsigned size;
17557 int load = 0;
17558
17559 if (inst.cond > COND_ALWAYS)
17560 inst.pred_insn_type = INSIDE_VPT_INSN;
17561 else
17562 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17563
17564 switch (inst.instruction)
17565 {
17566 default:
17567 gas_assert (0);
17568 break;
17569 case M_MNEM_vldrb:
17570 load = 1;
17571 /* fall through. */
17572 case M_MNEM_vstrb:
17573 size = 8;
17574 break;
17575 case M_MNEM_vldrh:
17576 load = 1;
17577 /* fall through. */
17578 case M_MNEM_vstrh:
17579 size = 16;
17580 break;
17581 case M_MNEM_vldrw:
17582 load = 1;
17583 /* fall through. */
17584 case M_MNEM_vstrw:
17585 size = 32;
17586 break;
17587 case M_MNEM_vldrd:
17588 load = 1;
17589 /* fall through. */
17590 case M_MNEM_vstrd:
17591 size = 64;
17592 break;
17593 }
17594 unsigned elsize = inst.vectype.el[0].size;
17595
17596 if (inst.operands[1].isquad)
17597 {
17598 /* We are dealing with [Q, imm]{!} cases. */
17599 do_mve_vstr_vldr_QI (size, elsize, load);
17600 }
17601 else
17602 {
17603 if (inst.operands[1].immisreg == 2)
17604 {
17605 /* We are dealing with [R, Q, {UXTW #os}] cases. */
17606 do_mve_vstr_vldr_RQ (size, elsize, load);
17607 }
17608 else if (!inst.operands[1].immisreg)
17609 {
17610 /* We are dealing with [R, Imm]{!}/[R], Imm cases. */
17611 do_mve_vstr_vldr_RI (size, elsize, load);
17612 }
17613 else
17614 constraint (1, BAD_ADDR_MODE);
17615 }
17616
17617 inst.is_neon = 1;
17618 }
17619
17620 static void
17621 do_mve_vst_vld (void)
17622 {
17623 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
17624 return;
17625
17626 constraint (!inst.operands[1].preind || inst.relocs[0].exp.X_add_symbol != 0
17627 || inst.relocs[0].exp.X_add_number != 0
17628 || inst.operands[1].immisreg != 0,
17629 BAD_ADDR_MODE);
17630 constraint (inst.vectype.el[0].size > 32, BAD_EL_TYPE);
17631 if (inst.operands[1].reg == REG_PC)
17632 as_tsktsk (MVE_BAD_PC);
17633 else if (inst.operands[1].reg == REG_SP && inst.operands[1].writeback)
17634 as_tsktsk (MVE_BAD_SP);
17635
17636
17637 /* These instructions are one of the "exceptions" mentioned in
17638 handle_pred_state. They are MVE instructions that are not VPT compatible
17639 and do not accept a VPT code, thus appending such a code is a syntax
17640 error. */
17641 if (inst.cond > COND_ALWAYS)
17642 first_error (BAD_SYNTAX);
17643 /* If we append a scalar condition code we can set this to
17644 MVE_OUTSIDE_PRED_INSN as it will also lead to a syntax error. */
17645 else if (inst.cond < COND_ALWAYS)
17646 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17647 else
17648 inst.pred_insn_type = MVE_UNPREDICABLE_INSN;
17649
17650 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17651 inst.instruction |= inst.operands[1].writeback << 21;
17652 inst.instruction |= inst.operands[1].reg << 16;
17653 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17654 inst.instruction |= neon_logbits (inst.vectype.el[0].size) << 7;
17655 inst.is_neon = 1;
17656 }
17657
17658 static void
17659 do_mve_vaddlv (void)
17660 {
17661 enum neon_shape rs = neon_select_shape (NS_RRQ, NS_NULL);
17662 struct neon_type_el et
17663 = neon_check_type (3, rs, N_EQK, N_EQK, N_S32 | N_U32 | N_KEY);
17664
17665 if (et.type == NT_invtype)
17666 first_error (BAD_EL_TYPE);
17667
17668 if (inst.cond > COND_ALWAYS)
17669 inst.pred_insn_type = INSIDE_VPT_INSN;
17670 else
17671 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
17672
17673 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
17674
17675 inst.instruction |= (et.type == NT_unsigned) << 28;
17676 inst.instruction |= inst.operands[1].reg << 19;
17677 inst.instruction |= inst.operands[0].reg << 12;
17678 inst.instruction |= inst.operands[2].reg;
17679 inst.is_neon = 1;
17680 }
17681
17682 static void
17683 do_neon_dyadic_if_su (void)
17684 {
17685 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17686 struct neon_type_el et = neon_check_type (3, rs, N_EQK , N_EQK,
17687 N_SUF_32 | N_KEY);
17688
17689 constraint ((inst.instruction == ((unsigned) N_MNEM_vmax)
17690 || inst.instruction == ((unsigned) N_MNEM_vmin))
17691 && et.type == NT_float
17692 && !ARM_CPU_HAS_FEATURE (cpu_variant,fpu_neon_ext_v1), BAD_FPU);
17693
17694 if (!check_simd_pred_availability (et.type == NT_float,
17695 NEON_CHECK_ARCH | NEON_CHECK_CC))
17696 return;
17697
17698 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
17699 }
17700
17701 static void
17702 do_neon_addsub_if_i (void)
17703 {
17704 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
17705 && try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
17706 return;
17707
17708 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_QQR, NS_NULL);
17709 struct neon_type_el et = neon_check_type (3, rs, N_EQK,
17710 N_EQK, N_IF_32 | N_I64 | N_KEY);
17711
17712 constraint (rs == NS_QQR && et.size == 64, BAD_FPU);
17713 /* If we are parsing Q registers and the element types match MVE, which NEON
17714 also supports, then we must check whether this is an instruction that can
17715 be used by both MVE/NEON. This distinction can be made based on whether
17716 they are predicated or not. */
17717 if ((rs == NS_QQQ || rs == NS_QQR) && et.size != 64)
17718 {
17719 if (!check_simd_pred_availability (et.type == NT_float,
17720 NEON_CHECK_ARCH | NEON_CHECK_CC))
17721 return;
17722 }
17723 else
17724 {
17725 /* If they are either in a D register or are using an unsupported. */
17726 if (rs != NS_QQR
17727 && vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
17728 return;
17729 }
17730
17731 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17732 affected if we specify unsigned args. */
17733 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
17734 }
17735
17736 /* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
17737 result to be:
17738 V<op> A,B (A is operand 0, B is operand 2)
17739 to mean:
17740 V<op> A,B,A
17741 not:
17742 V<op> A,B,B
17743 so handle that case specially. */
17744
17745 static void
17746 neon_exchange_operands (void)
17747 {
17748 if (inst.operands[1].present)
17749 {
17750 void *scratch = xmalloc (sizeof (inst.operands[0]));
17751
17752 /* Swap operands[1] and operands[2]. */
17753 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
17754 inst.operands[1] = inst.operands[2];
17755 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
17756 free (scratch);
17757 }
17758 else
17759 {
17760 inst.operands[1] = inst.operands[2];
17761 inst.operands[2] = inst.operands[0];
17762 }
17763 }
17764
17765 static void
17766 neon_compare (unsigned regtypes, unsigned immtypes, int invert)
17767 {
17768 if (inst.operands[2].isreg)
17769 {
17770 if (invert)
17771 neon_exchange_operands ();
17772 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
17773 }
17774 else
17775 {
17776 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
17777 struct neon_type_el et = neon_check_type (2, rs,
17778 N_EQK | N_SIZ, immtypes | N_KEY);
17779
17780 NEON_ENCODE (IMMED, inst);
17781 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17782 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17783 inst.instruction |= LOW4 (inst.operands[1].reg);
17784 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17785 inst.instruction |= neon_quad (rs) << 6;
17786 inst.instruction |= (et.type == NT_float) << 10;
17787 inst.instruction |= neon_logbits (et.size) << 18;
17788
17789 neon_dp_fixup (&inst);
17790 }
17791 }
17792
17793 static void
17794 do_neon_cmp (void)
17795 {
17796 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, FALSE);
17797 }
17798
17799 static void
17800 do_neon_cmp_inv (void)
17801 {
17802 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, TRUE);
17803 }
17804
17805 static void
17806 do_neon_ceq (void)
17807 {
17808 neon_compare (N_IF_32, N_IF_32, FALSE);
17809 }
17810
17811 /* For multiply instructions, we have the possibility of 16-bit or 32-bit
17812 scalars, which are encoded in 5 bits, M : Rm.
17813 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
17814 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
17815 index in M.
17816
17817 Dot Product instructions are similar to multiply instructions except elsize
17818 should always be 32.
17819
17820 This function translates SCALAR, which is GAS's internal encoding of indexed
17821 scalar register, to raw encoding. There is also register and index range
17822 check based on ELSIZE. */
17823
17824 static unsigned
17825 neon_scalar_for_mul (unsigned scalar, unsigned elsize)
17826 {
17827 unsigned regno = NEON_SCALAR_REG (scalar);
17828 unsigned elno = NEON_SCALAR_INDEX (scalar);
17829
17830 switch (elsize)
17831 {
17832 case 16:
17833 if (regno > 7 || elno > 3)
17834 goto bad_scalar;
17835 return regno | (elno << 3);
17836
17837 case 32:
17838 if (regno > 15 || elno > 1)
17839 goto bad_scalar;
17840 return regno | (elno << 4);
17841
17842 default:
17843 bad_scalar:
17844 first_error (_("scalar out of range for multiply instruction"));
17845 }
17846
17847 return 0;
17848 }
17849
17850 /* Encode multiply / multiply-accumulate scalar instructions. */
17851
17852 static void
17853 neon_mul_mac (struct neon_type_el et, int ubit)
17854 {
17855 unsigned scalar;
17856
17857 /* Give a more helpful error message if we have an invalid type. */
17858 if (et.type == NT_invtype)
17859 return;
17860
17861 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
17862 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17863 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17864 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17865 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
17866 inst.instruction |= LOW4 (scalar);
17867 inst.instruction |= HI1 (scalar) << 5;
17868 inst.instruction |= (et.type == NT_float) << 8;
17869 inst.instruction |= neon_logbits (et.size) << 20;
17870 inst.instruction |= (ubit != 0) << 24;
17871
17872 neon_dp_fixup (&inst);
17873 }
17874
17875 static void
17876 do_neon_mac_maybe_scalar (void)
17877 {
17878 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
17879 return;
17880
17881 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
17882 return;
17883
17884 if (inst.operands[2].isscalar)
17885 {
17886 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17887 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
17888 struct neon_type_el et = neon_check_type (3, rs,
17889 N_EQK, N_EQK, N_I16 | N_I32 | N_F_16_32 | N_KEY);
17890 NEON_ENCODE (SCALAR, inst);
17891 neon_mul_mac (et, neon_quad (rs));
17892 }
17893 else if (!inst.operands[2].isvec)
17894 {
17895 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17896
17897 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
17898 neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
17899
17900 neon_dyadic_misc (NT_unsigned, N_SU_MVE, 0);
17901 }
17902 else
17903 {
17904 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17905 /* The "untyped" case can't happen. Do this to stop the "U" bit being
17906 affected if we specify unsigned args. */
17907 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17908 }
17909 }
17910
17911 static void
17912 do_bfloat_vfma (void)
17913 {
17914 constraint (!mark_feature_used (&fpu_neon_ext_armv8), _(BAD_FPU));
17915 constraint (!mark_feature_used (&arm_ext_bf16), _(BAD_BF16));
17916 enum neon_shape rs;
17917 int t_bit = 0;
17918
17919 if (inst.instruction != B_MNEM_vfmab)
17920 {
17921 t_bit = 1;
17922 inst.instruction = B_MNEM_vfmat;
17923 }
17924
17925 if (inst.operands[2].isscalar)
17926 {
17927 rs = neon_select_shape (NS_QQS, NS_NULL);
17928 neon_check_type (3, rs, N_EQK, N_EQK, N_BF16 | N_KEY);
17929
17930 inst.instruction |= (1 << 25);
17931 int index = inst.operands[2].reg & 0xf;
17932 constraint (!(index < 4), _("index must be in the range 0 to 3"));
17933 inst.operands[2].reg >>= 4;
17934 constraint (!(inst.operands[2].reg < 8),
17935 _("indexed register must be less than 8"));
17936 neon_three_args (t_bit);
17937 inst.instruction |= ((index & 1) << 3);
17938 inst.instruction |= ((index & 2) << 4);
17939 }
17940 else
17941 {
17942 rs = neon_select_shape (NS_QQQ, NS_NULL);
17943 neon_check_type (3, rs, N_EQK, N_EQK, N_BF16 | N_KEY);
17944 neon_three_args (t_bit);
17945 }
17946
17947 }
17948
17949 static void
17950 do_neon_fmac (void)
17951 {
17952 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_fma)
17953 && try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
17954 return;
17955
17956 if (!check_simd_pred_availability (TRUE, NEON_CHECK_CC | NEON_CHECK_ARCH))
17957 return;
17958
17959 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
17960 {
17961 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
17962 struct neon_type_el et = neon_check_type (3, rs, N_F_MVE | N_KEY, N_EQK,
17963 N_EQK);
17964
17965 if (rs == NS_QQR)
17966 {
17967
17968 if (inst.operands[2].reg == REG_SP)
17969 as_tsktsk (MVE_BAD_SP);
17970 else if (inst.operands[2].reg == REG_PC)
17971 as_tsktsk (MVE_BAD_PC);
17972
17973 inst.instruction = 0xee310e40;
17974 inst.instruction |= (et.size == 16) << 28;
17975 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17976 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17977 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17978 inst.instruction |= HI1 (inst.operands[1].reg) << 6;
17979 inst.instruction |= inst.operands[2].reg;
17980 inst.is_neon = 1;
17981 return;
17982 }
17983 }
17984 else
17985 {
17986 constraint (!inst.operands[2].isvec, BAD_FPU);
17987 }
17988
17989 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
17990 }
17991
17992 static void
17993 do_mve_vfma (void)
17994 {
17995 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_bf16) &&
17996 inst.cond == COND_ALWAYS)
17997 {
17998 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
17999 inst.instruction = N_MNEM_vfma;
18000 inst.pred_insn_type = INSIDE_VPT_INSN;
18001 inst.cond = 0xf;
18002 return do_neon_fmac();
18003 }
18004 else
18005 {
18006 do_bfloat_vfma();
18007 }
18008 }
18009
18010 static void
18011 do_neon_tst (void)
18012 {
18013 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18014 struct neon_type_el et = neon_check_type (3, rs,
18015 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18016 neon_three_same (neon_quad (rs), 0, et.size);
18017 }
18018
18019 /* VMUL with 3 registers allows the P8 type. The scalar version supports the
18020 same types as the MAC equivalents. The polynomial type for this instruction
18021 is encoded the same as the integer type. */
18022
18023 static void
18024 do_neon_mul (void)
18025 {
18026 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
18027 return;
18028
18029 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
18030 return;
18031
18032 if (inst.operands[2].isscalar)
18033 {
18034 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
18035 do_neon_mac_maybe_scalar ();
18036 }
18037 else
18038 {
18039 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18040 {
18041 enum neon_shape rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
18042 struct neon_type_el et
18043 = neon_check_type (3, rs, N_EQK, N_EQK, N_I_MVE | N_F_MVE | N_KEY);
18044 if (et.type == NT_float)
18045 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext),
18046 BAD_FPU);
18047
18048 neon_dyadic_misc (NT_float, N_I_MVE | N_F_MVE, 0);
18049 }
18050 else
18051 {
18052 constraint (!inst.operands[2].isvec, BAD_FPU);
18053 neon_dyadic_misc (NT_poly,
18054 N_I8 | N_I16 | N_I32 | N_F16 | N_F32 | N_P8, 0);
18055 }
18056 }
18057 }
18058
18059 static void
18060 do_neon_qdmulh (void)
18061 {
18062 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18063 return;
18064
18065 if (inst.operands[2].isscalar)
18066 {
18067 constraint (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
18068 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
18069 struct neon_type_el et = neon_check_type (3, rs,
18070 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18071 NEON_ENCODE (SCALAR, inst);
18072 neon_mul_mac (et, neon_quad (rs));
18073 }
18074 else
18075 {
18076 enum neon_shape rs;
18077 struct neon_type_el et;
18078 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18079 {
18080 rs = neon_select_shape (NS_QQR, NS_QQQ, NS_NULL);
18081 et = neon_check_type (3, rs,
18082 N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18083 }
18084 else
18085 {
18086 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18087 et = neon_check_type (3, rs,
18088 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18089 }
18090
18091 NEON_ENCODE (INTEGER, inst);
18092 if (rs == NS_QQR)
18093 mve_encode_qqr (et.size, 0, 0);
18094 else
18095 /* The U bit (rounding) comes from bit mask. */
18096 neon_three_same (neon_quad (rs), 0, et.size);
18097 }
18098 }
18099
18100 static void
18101 do_mve_vaddv (void)
18102 {
18103 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
18104 struct neon_type_el et
18105 = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
18106
18107 if (et.type == NT_invtype)
18108 first_error (BAD_EL_TYPE);
18109
18110 if (inst.cond > COND_ALWAYS)
18111 inst.pred_insn_type = INSIDE_VPT_INSN;
18112 else
18113 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18114
18115 constraint (inst.operands[1].reg > 14, MVE_BAD_QREG);
18116
18117 mve_encode_rq (et.type == NT_unsigned, et.size);
18118 }
18119
18120 static void
18121 do_mve_vhcadd (void)
18122 {
18123 enum neon_shape rs = neon_select_shape (NS_QQQI, NS_NULL);
18124 struct neon_type_el et
18125 = neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18126
18127 if (inst.cond > COND_ALWAYS)
18128 inst.pred_insn_type = INSIDE_VPT_INSN;
18129 else
18130 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18131
18132 unsigned rot = inst.relocs[0].exp.X_add_number;
18133 constraint (rot != 90 && rot != 270, _("immediate out of range"));
18134
18135 if (et.size == 32 && inst.operands[0].reg == inst.operands[2].reg)
18136 as_tsktsk (_("Warning: 32-bit element size and same first and third "
18137 "operand makes instruction UNPREDICTABLE"));
18138
18139 mve_encode_qqq (0, et.size);
18140 inst.instruction |= (rot == 270) << 12;
18141 inst.is_neon = 1;
18142 }
18143
18144 static void
18145 do_mve_vqdmull (void)
18146 {
18147 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_QQR, NS_NULL);
18148 struct neon_type_el et
18149 = neon_check_type (3, rs, N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18150
18151 if (et.size == 32
18152 && (inst.operands[0].reg == inst.operands[1].reg
18153 || (rs == NS_QQQ && inst.operands[0].reg == inst.operands[2].reg)))
18154 as_tsktsk (BAD_MVE_SRCDEST);
18155
18156 if (inst.cond > COND_ALWAYS)
18157 inst.pred_insn_type = INSIDE_VPT_INSN;
18158 else
18159 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18160
18161 if (rs == NS_QQQ)
18162 {
18163 mve_encode_qqq (et.size == 32, 64);
18164 inst.instruction |= 1;
18165 }
18166 else
18167 {
18168 mve_encode_qqr (64, et.size == 32, 0);
18169 inst.instruction |= 0x3 << 5;
18170 }
18171 }
18172
18173 static void
18174 do_mve_vadc (void)
18175 {
18176 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
18177 struct neon_type_el et
18178 = neon_check_type (3, rs, N_KEY | N_I32, N_EQK, N_EQK);
18179
18180 if (et.type == NT_invtype)
18181 first_error (BAD_EL_TYPE);
18182
18183 if (inst.cond > COND_ALWAYS)
18184 inst.pred_insn_type = INSIDE_VPT_INSN;
18185 else
18186 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18187
18188 mve_encode_qqq (0, 64);
18189 }
18190
18191 static void
18192 do_mve_vbrsr (void)
18193 {
18194 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
18195 struct neon_type_el et
18196 = neon_check_type (3, rs, N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18197
18198 if (inst.cond > COND_ALWAYS)
18199 inst.pred_insn_type = INSIDE_VPT_INSN;
18200 else
18201 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18202
18203 mve_encode_qqr (et.size, 0, 0);
18204 }
18205
18206 static void
18207 do_mve_vsbc (void)
18208 {
18209 neon_check_type (3, NS_QQQ, N_EQK, N_EQK, N_I32 | N_KEY);
18210
18211 if (inst.cond > COND_ALWAYS)
18212 inst.pred_insn_type = INSIDE_VPT_INSN;
18213 else
18214 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18215
18216 mve_encode_qqq (1, 64);
18217 }
18218
18219 static void
18220 do_mve_vmulh (void)
18221 {
18222 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
18223 struct neon_type_el et
18224 = neon_check_type (3, rs, N_EQK, N_EQK, N_SU_MVE | N_KEY);
18225
18226 if (inst.cond > COND_ALWAYS)
18227 inst.pred_insn_type = INSIDE_VPT_INSN;
18228 else
18229 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18230
18231 mve_encode_qqq (et.type == NT_unsigned, et.size);
18232 }
18233
18234 static void
18235 do_mve_vqdmlah (void)
18236 {
18237 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
18238 struct neon_type_el et
18239 = neon_check_type (3, rs, N_EQK, N_EQK, N_S_32 | N_KEY);
18240
18241 if (inst.cond > COND_ALWAYS)
18242 inst.pred_insn_type = INSIDE_VPT_INSN;
18243 else
18244 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18245
18246 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
18247 }
18248
18249 static void
18250 do_mve_vqdmladh (void)
18251 {
18252 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
18253 struct neon_type_el et
18254 = neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18255
18256 if (inst.cond > COND_ALWAYS)
18257 inst.pred_insn_type = INSIDE_VPT_INSN;
18258 else
18259 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18260
18261 mve_encode_qqq (0, et.size);
18262 }
18263
18264
18265 static void
18266 do_mve_vmull (void)
18267 {
18268
18269 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_DDS,
18270 NS_QQS, NS_QQQ, NS_QQR, NS_NULL);
18271 if (inst.cond == COND_ALWAYS
18272 && ((unsigned)inst.instruction) == M_MNEM_vmullt)
18273 {
18274
18275 if (rs == NS_QQQ)
18276 {
18277 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18278 goto neon_vmul;
18279 }
18280 else
18281 goto neon_vmul;
18282 }
18283
18284 constraint (rs != NS_QQQ, BAD_FPU);
18285 struct neon_type_el et = neon_check_type (3, rs, N_EQK , N_EQK,
18286 N_SU_32 | N_P8 | N_P16 | N_KEY);
18287
18288 /* We are dealing with MVE's vmullt. */
18289 if (et.size == 32
18290 && (inst.operands[0].reg == inst.operands[1].reg
18291 || inst.operands[0].reg == inst.operands[2].reg))
18292 as_tsktsk (BAD_MVE_SRCDEST);
18293
18294 if (inst.cond > COND_ALWAYS)
18295 inst.pred_insn_type = INSIDE_VPT_INSN;
18296 else
18297 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18298
18299 if (et.type == NT_poly)
18300 mve_encode_qqq (neon_logbits (et.size), 64);
18301 else
18302 mve_encode_qqq (et.type == NT_unsigned, et.size);
18303
18304 return;
18305
18306 neon_vmul:
18307 inst.instruction = N_MNEM_vmul;
18308 inst.cond = 0xb;
18309 if (thumb_mode)
18310 inst.pred_insn_type = INSIDE_IT_INSN;
18311 do_neon_mul ();
18312 }
18313
18314 static void
18315 do_mve_vabav (void)
18316 {
18317 enum neon_shape rs = neon_select_shape (NS_RQQ, NS_NULL);
18318
18319 if (rs == NS_NULL)
18320 return;
18321
18322 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18323 return;
18324
18325 struct neon_type_el et = neon_check_type (2, NS_NULL, N_EQK, N_KEY | N_S8
18326 | N_S16 | N_S32 | N_U8 | N_U16
18327 | N_U32);
18328
18329 if (inst.cond > COND_ALWAYS)
18330 inst.pred_insn_type = INSIDE_VPT_INSN;
18331 else
18332 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18333
18334 mve_encode_rqq (et.type == NT_unsigned, et.size);
18335 }
18336
18337 static void
18338 do_mve_vmladav (void)
18339 {
18340 enum neon_shape rs = neon_select_shape (NS_RQQ, NS_NULL);
18341 struct neon_type_el et = neon_check_type (3, rs,
18342 N_EQK, N_EQK, N_SU_MVE | N_KEY);
18343
18344 if (et.type == NT_unsigned
18345 && (inst.instruction == M_MNEM_vmladavx
18346 || inst.instruction == M_MNEM_vmladavax
18347 || inst.instruction == M_MNEM_vmlsdav
18348 || inst.instruction == M_MNEM_vmlsdava
18349 || inst.instruction == M_MNEM_vmlsdavx
18350 || inst.instruction == M_MNEM_vmlsdavax))
18351 first_error (BAD_SIMD_TYPE);
18352
18353 constraint (inst.operands[2].reg > 14,
18354 _("MVE vector register in the range [Q0..Q7] expected"));
18355
18356 if (inst.cond > COND_ALWAYS)
18357 inst.pred_insn_type = INSIDE_VPT_INSN;
18358 else
18359 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18360
18361 if (inst.instruction == M_MNEM_vmlsdav
18362 || inst.instruction == M_MNEM_vmlsdava
18363 || inst.instruction == M_MNEM_vmlsdavx
18364 || inst.instruction == M_MNEM_vmlsdavax)
18365 inst.instruction |= (et.size == 8) << 28;
18366 else
18367 inst.instruction |= (et.size == 8) << 8;
18368
18369 mve_encode_rqq (et.type == NT_unsigned, 64);
18370 inst.instruction |= (et.size == 32) << 16;
18371 }
18372
18373 static void
18374 do_mve_vmlaldav (void)
18375 {
18376 enum neon_shape rs = neon_select_shape (NS_RRQQ, NS_NULL);
18377 struct neon_type_el et
18378 = neon_check_type (4, rs, N_EQK, N_EQK, N_EQK,
18379 N_S16 | N_S32 | N_U16 | N_U32 | N_KEY);
18380
18381 if (et.type == NT_unsigned
18382 && (inst.instruction == M_MNEM_vmlsldav
18383 || inst.instruction == M_MNEM_vmlsldava
18384 || inst.instruction == M_MNEM_vmlsldavx
18385 || inst.instruction == M_MNEM_vmlsldavax))
18386 first_error (BAD_SIMD_TYPE);
18387
18388 if (inst.cond > COND_ALWAYS)
18389 inst.pred_insn_type = INSIDE_VPT_INSN;
18390 else
18391 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18392
18393 mve_encode_rrqq (et.type == NT_unsigned, et.size);
18394 }
18395
18396 static void
18397 do_mve_vrmlaldavh (void)
18398 {
18399 struct neon_type_el et;
18400 if (inst.instruction == M_MNEM_vrmlsldavh
18401 || inst.instruction == M_MNEM_vrmlsldavha
18402 || inst.instruction == M_MNEM_vrmlsldavhx
18403 || inst.instruction == M_MNEM_vrmlsldavhax)
18404 {
18405 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK, N_S32 | N_KEY);
18406 if (inst.operands[1].reg == REG_SP)
18407 as_tsktsk (MVE_BAD_SP);
18408 }
18409 else
18410 {
18411 if (inst.instruction == M_MNEM_vrmlaldavhx
18412 || inst.instruction == M_MNEM_vrmlaldavhax)
18413 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK, N_S32 | N_KEY);
18414 else
18415 et = neon_check_type (4, NS_RRQQ, N_EQK, N_EQK, N_EQK,
18416 N_U32 | N_S32 | N_KEY);
18417 /* vrmlaldavh's encoding with SP as the second, odd, GPR operand may alias
18418 with vmax/min instructions, making the use of SP in assembly really
18419 nonsensical, so instead of issuing a warning like we do for other uses
18420 of SP for the odd register operand we error out. */
18421 constraint (inst.operands[1].reg == REG_SP, BAD_SP);
18422 }
18423
18424 /* Make sure we still check the second operand is an odd one and that PC is
18425 disallowed. This because we are parsing for any GPR operand, to be able
18426 to distinguish between giving a warning or an error for SP as described
18427 above. */
18428 constraint ((inst.operands[1].reg % 2) != 1, BAD_EVEN);
18429 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
18430
18431 if (inst.cond > COND_ALWAYS)
18432 inst.pred_insn_type = INSIDE_VPT_INSN;
18433 else
18434 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18435
18436 mve_encode_rrqq (et.type == NT_unsigned, 0);
18437 }
18438
18439
18440 static void
18441 do_mve_vmaxnmv (void)
18442 {
18443 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
18444 struct neon_type_el et
18445 = neon_check_type (2, rs, N_EQK, N_F_MVE | N_KEY);
18446
18447 if (inst.cond > COND_ALWAYS)
18448 inst.pred_insn_type = INSIDE_VPT_INSN;
18449 else
18450 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18451
18452 if (inst.operands[0].reg == REG_SP)
18453 as_tsktsk (MVE_BAD_SP);
18454 else if (inst.operands[0].reg == REG_PC)
18455 as_tsktsk (MVE_BAD_PC);
18456
18457 mve_encode_rq (et.size == 16, 64);
18458 }
18459
18460 static void
18461 do_mve_vmaxv (void)
18462 {
18463 enum neon_shape rs = neon_select_shape (NS_RQ, NS_NULL);
18464 struct neon_type_el et;
18465
18466 if (inst.instruction == M_MNEM_vmaxv || inst.instruction == M_MNEM_vminv)
18467 et = neon_check_type (2, rs, N_EQK, N_SU_MVE | N_KEY);
18468 else
18469 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18470
18471 if (inst.cond > COND_ALWAYS)
18472 inst.pred_insn_type = INSIDE_VPT_INSN;
18473 else
18474 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
18475
18476 if (inst.operands[0].reg == REG_SP)
18477 as_tsktsk (MVE_BAD_SP);
18478 else if (inst.operands[0].reg == REG_PC)
18479 as_tsktsk (MVE_BAD_PC);
18480
18481 mve_encode_rq (et.type == NT_unsigned, et.size);
18482 }
18483
18484
18485 static void
18486 do_neon_qrdmlah (void)
18487 {
18488 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18489 return;
18490 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18491 {
18492 /* Check we're on the correct architecture. */
18493 if (!mark_feature_used (&fpu_neon_ext_armv8))
18494 inst.error
18495 = _("instruction form not available on this architecture.");
18496 else if (!mark_feature_used (&fpu_neon_ext_v8_1))
18497 {
18498 as_warn (_("this instruction implies use of ARMv8.1 AdvSIMD."));
18499 record_feature_use (&fpu_neon_ext_v8_1);
18500 }
18501 if (inst.operands[2].isscalar)
18502 {
18503 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
18504 struct neon_type_el et = neon_check_type (3, rs,
18505 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18506 NEON_ENCODE (SCALAR, inst);
18507 neon_mul_mac (et, neon_quad (rs));
18508 }
18509 else
18510 {
18511 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18512 struct neon_type_el et = neon_check_type (3, rs,
18513 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
18514 NEON_ENCODE (INTEGER, inst);
18515 /* The U bit (rounding) comes from bit mask. */
18516 neon_three_same (neon_quad (rs), 0, et.size);
18517 }
18518 }
18519 else
18520 {
18521 enum neon_shape rs = neon_select_shape (NS_QQR, NS_NULL);
18522 struct neon_type_el et
18523 = neon_check_type (3, rs, N_EQK, N_EQK, N_S_32 | N_KEY);
18524
18525 NEON_ENCODE (INTEGER, inst);
18526 mve_encode_qqr (et.size, et.type == NT_unsigned, 0);
18527 }
18528 }
18529
18530 static void
18531 do_neon_fcmp_absolute (void)
18532 {
18533 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18534 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
18535 N_F_16_32 | N_KEY);
18536 /* Size field comes from bit mask. */
18537 neon_three_same (neon_quad (rs), 1, et.size == 16 ? (int) et.size : -1);
18538 }
18539
18540 static void
18541 do_neon_fcmp_absolute_inv (void)
18542 {
18543 neon_exchange_operands ();
18544 do_neon_fcmp_absolute ();
18545 }
18546
18547 static void
18548 do_neon_step (void)
18549 {
18550 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
18551 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
18552 N_F_16_32 | N_KEY);
18553 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
18554 }
18555
18556 static void
18557 do_neon_abs_neg (void)
18558 {
18559 enum neon_shape rs;
18560 struct neon_type_el et;
18561
18562 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
18563 return;
18564
18565 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
18566 et = neon_check_type (2, rs, N_EQK, N_S_32 | N_F_16_32 | N_KEY);
18567
18568 if (!check_simd_pred_availability (et.type == NT_float,
18569 NEON_CHECK_ARCH | NEON_CHECK_CC))
18570 return;
18571
18572 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
18573 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
18574 inst.instruction |= LOW4 (inst.operands[1].reg);
18575 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
18576 inst.instruction |= neon_quad (rs) << 6;
18577 inst.instruction |= (et.type == NT_float) << 10;
18578 inst.instruction |= neon_logbits (et.size) << 18;
18579
18580 neon_dp_fixup (&inst);
18581 }
18582
18583 static void
18584 do_neon_sli (void)
18585 {
18586 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18587 return;
18588
18589 enum neon_shape rs;
18590 struct neon_type_el et;
18591 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18592 {
18593 rs = neon_select_shape (NS_QQI, NS_NULL);
18594 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18595 }
18596 else
18597 {
18598 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18599 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
18600 }
18601
18602
18603 int imm = inst.operands[2].imm;
18604 constraint (imm < 0 || (unsigned)imm >= et.size,
18605 _("immediate out of range for insert"));
18606 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
18607 }
18608
18609 static void
18610 do_neon_sri (void)
18611 {
18612 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18613 return;
18614
18615 enum neon_shape rs;
18616 struct neon_type_el et;
18617 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18618 {
18619 rs = neon_select_shape (NS_QQI, NS_NULL);
18620 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_KEY);
18621 }
18622 else
18623 {
18624 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18625 et = neon_check_type (2, rs, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
18626 }
18627
18628 int imm = inst.operands[2].imm;
18629 constraint (imm < 1 || (unsigned)imm > et.size,
18630 _("immediate out of range for insert"));
18631 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
18632 }
18633
18634 static void
18635 do_neon_qshlu_imm (void)
18636 {
18637 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
18638 return;
18639
18640 enum neon_shape rs;
18641 struct neon_type_el et;
18642 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
18643 {
18644 rs = neon_select_shape (NS_QQI, NS_NULL);
18645 et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
18646 }
18647 else
18648 {
18649 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
18650 et = neon_check_type (2, rs, N_EQK | N_UNS,
18651 N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
18652 }
18653
18654 int imm = inst.operands[2].imm;
18655 constraint (imm < 0 || (unsigned)imm >= et.size,
18656 _("immediate out of range for shift"));
18657 /* Only encodes the 'U present' variant of the instruction.
18658 In this case, signed types have OP (bit 8) set to 0.
18659 Unsigned types have OP set to 1. */
18660 inst.instruction |= (et.type == NT_unsigned) << 8;
18661 /* The rest of the bits are the same as other immediate shifts. */
18662 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
18663 }
18664
18665 static void
18666 do_neon_qmovn (void)
18667 {
18668 struct neon_type_el et = neon_check_type (2, NS_DQ,
18669 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
18670 /* Saturating move where operands can be signed or unsigned, and the
18671 destination has the same signedness. */
18672 NEON_ENCODE (INTEGER, inst);
18673 if (et.type == NT_unsigned)
18674 inst.instruction |= 0xc0;
18675 else
18676 inst.instruction |= 0x80;
18677 neon_two_same (0, 1, et.size / 2);
18678 }
18679
18680 static void
18681 do_neon_qmovun (void)
18682 {
18683 struct neon_type_el et = neon_check_type (2, NS_DQ,
18684 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
18685 /* Saturating move with unsigned results. Operands must be signed. */
18686 NEON_ENCODE (INTEGER, inst);
18687 neon_two_same (0, 1, et.size / 2);
18688 }
18689
18690 static void
18691 do_neon_rshift_sat_narrow (void)
18692 {
18693 /* FIXME: Types for narrowing. If operands are signed, results can be signed
18694 or unsigned. If operands are unsigned, results must also be unsigned. */
18695 struct neon_type_el et = neon_check_type (2, NS_DQI,
18696 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
18697 int imm = inst.operands[2].imm;
18698 /* This gets the bounds check, size encoding and immediate bits calculation
18699 right. */
18700 et.size /= 2;
18701
18702 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
18703 VQMOVN.I<size> <Dd>, <Qm>. */
18704 if (imm == 0)
18705 {
18706 inst.operands[2].present = 0;
18707 inst.instruction = N_MNEM_vqmovn;
18708 do_neon_qmovn ();
18709 return;
18710 }
18711
18712 constraint (imm < 1 || (unsigned)imm > et.size,
18713 _("immediate out of range"));
18714 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
18715 }
18716
18717 static void
18718 do_neon_rshift_sat_narrow_u (void)
18719 {
18720 /* FIXME: Types for narrowing. If operands are signed, results can be signed
18721 or unsigned. If operands are unsigned, results must also be unsigned. */
18722 struct neon_type_el et = neon_check_type (2, NS_DQI,
18723 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
18724 int imm = inst.operands[2].imm;
18725 /* This gets the bounds check, size encoding and immediate bits calculation
18726 right. */
18727 et.size /= 2;
18728
18729 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
18730 VQMOVUN.I<size> <Dd>, <Qm>. */
18731 if (imm == 0)
18732 {
18733 inst.operands[2].present = 0;
18734 inst.instruction = N_MNEM_vqmovun;
18735 do_neon_qmovun ();
18736 return;
18737 }
18738
18739 constraint (imm < 1 || (unsigned)imm > et.size,
18740 _("immediate out of range"));
18741 /* FIXME: The manual is kind of unclear about what value U should have in
18742 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
18743 must be 1. */
18744 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
18745 }
18746
18747 static void
18748 do_neon_movn (void)
18749 {
18750 struct neon_type_el et = neon_check_type (2, NS_DQ,
18751 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
18752 NEON_ENCODE (INTEGER, inst);
18753 neon_two_same (0, 1, et.size / 2);
18754 }
18755
18756 static void
18757 do_neon_rshift_narrow (void)
18758 {
18759 struct neon_type_el et = neon_check_type (2, NS_DQI,
18760 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
18761 int imm = inst.operands[2].imm;
18762 /* This gets the bounds check, size encoding and immediate bits calculation
18763 right. */
18764 et.size /= 2;
18765
18766 /* If immediate is zero then we are a pseudo-instruction for
18767 VMOVN.I<size> <Dd>, <Qm> */
18768 if (imm == 0)
18769 {
18770 inst.operands[2].present = 0;
18771 inst.instruction = N_MNEM_vmovn;
18772 do_neon_movn ();
18773 return;
18774 }
18775
18776 constraint (imm < 1 || (unsigned)imm > et.size,
18777 _("immediate out of range for narrowing operation"));
18778 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
18779 }
18780
18781 static void
18782 do_neon_shll (void)
18783 {
18784 /* FIXME: Type checking when lengthening. */
18785 struct neon_type_el et = neon_check_type (2, NS_QDI,
18786 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
18787 unsigned imm = inst.operands[2].imm;
18788
18789 if (imm == et.size)
18790 {
18791 /* Maximum shift variant. */
18792 NEON_ENCODE (INTEGER, inst);
18793 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
18794 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
18795 inst.instruction |= LOW4 (inst.operands[1].reg);
18796 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
18797 inst.instruction |= neon_logbits (et.size) << 18;
18798
18799 neon_dp_fixup (&inst);
18800 }
18801 else
18802 {
18803 /* A more-specific type check for non-max versions. */
18804 et = neon_check_type (2, NS_QDI,
18805 N_EQK | N_DBL, N_SU_32 | N_KEY);
18806 NEON_ENCODE (IMMED, inst);
18807 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
18808 }
18809 }
18810
18811 /* Check the various types for the VCVT instruction, and return which version
18812 the current instruction is. */
18813
18814 #define CVT_FLAVOUR_VAR \
18815 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
18816 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
18817 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
18818 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
18819 /* Half-precision conversions. */ \
18820 CVT_VAR (s16_f16, N_S16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
18821 CVT_VAR (u16_f16, N_U16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
18822 CVT_VAR (f16_s16, N_F16 | N_KEY, N_S16, whole_reg, NULL, NULL, NULL) \
18823 CVT_VAR (f16_u16, N_F16 | N_KEY, N_U16, whole_reg, NULL, NULL, NULL) \
18824 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
18825 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
18826 /* New VCVT instructions introduced by ARMv8.2 fp16 extension. \
18827 Compared with single/double precision variants, only the co-processor \
18828 field is different, so the encoding flow is reused here. */ \
18829 CVT_VAR (f16_s32, N_F16 | N_KEY, N_S32, N_VFP, "fsltos", "fsitos", NULL) \
18830 CVT_VAR (f16_u32, N_F16 | N_KEY, N_U32, N_VFP, "fultos", "fuitos", NULL) \
18831 CVT_VAR (u32_f16, N_U32, N_F16 | N_KEY, N_VFP, "ftouls", "ftouis", "ftouizs")\
18832 CVT_VAR (s32_f16, N_S32, N_F16 | N_KEY, N_VFP, "ftosls", "ftosis", "ftosizs")\
18833 CVT_VAR (bf16_f32, N_BF16, N_F32, whole_reg, NULL, NULL, NULL) \
18834 /* VFP instructions. */ \
18835 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
18836 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
18837 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
18838 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
18839 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
18840 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
18841 /* VFP instructions with bitshift. */ \
18842 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
18843 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
18844 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
18845 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
18846 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
18847 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
18848 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
18849 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
18850
18851 #define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
18852 neon_cvt_flavour_##C,
18853
18854 /* The different types of conversions we can do. */
18855 enum neon_cvt_flavour
18856 {
18857 CVT_FLAVOUR_VAR
18858 neon_cvt_flavour_invalid,
18859 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
18860 };
18861
18862 #undef CVT_VAR
18863
18864 static enum neon_cvt_flavour
18865 get_neon_cvt_flavour (enum neon_shape rs)
18866 {
18867 #define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
18868 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
18869 if (et.type != NT_invtype) \
18870 { \
18871 inst.error = NULL; \
18872 return (neon_cvt_flavour_##C); \
18873 }
18874
18875 struct neon_type_el et;
18876 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
18877 || rs == NS_FF) ? N_VFP : 0;
18878 /* The instruction versions which take an immediate take one register
18879 argument, which is extended to the width of the full register. Thus the
18880 "source" and "destination" registers must have the same width. Hack that
18881 here by making the size equal to the key (wider, in this case) operand. */
18882 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
18883
18884 CVT_FLAVOUR_VAR;
18885
18886 return neon_cvt_flavour_invalid;
18887 #undef CVT_VAR
18888 }
18889
18890 enum neon_cvt_mode
18891 {
18892 neon_cvt_mode_a,
18893 neon_cvt_mode_n,
18894 neon_cvt_mode_p,
18895 neon_cvt_mode_m,
18896 neon_cvt_mode_z,
18897 neon_cvt_mode_x,
18898 neon_cvt_mode_r
18899 };
18900
18901 /* Neon-syntax VFP conversions. */
18902
18903 static void
18904 do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
18905 {
18906 const char *opname = 0;
18907
18908 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI
18909 || rs == NS_FHI || rs == NS_HFI)
18910 {
18911 /* Conversions with immediate bitshift. */
18912 const char *enc[] =
18913 {
18914 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
18915 CVT_FLAVOUR_VAR
18916 NULL
18917 #undef CVT_VAR
18918 };
18919
18920 if (flavour < (int) ARRAY_SIZE (enc))
18921 {
18922 opname = enc[flavour];
18923 constraint (inst.operands[0].reg != inst.operands[1].reg,
18924 _("operands 0 and 1 must be the same register"));
18925 inst.operands[1] = inst.operands[2];
18926 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
18927 }
18928 }
18929 else
18930 {
18931 /* Conversions without bitshift. */
18932 const char *enc[] =
18933 {
18934 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
18935 CVT_FLAVOUR_VAR
18936 NULL
18937 #undef CVT_VAR
18938 };
18939
18940 if (flavour < (int) ARRAY_SIZE (enc))
18941 opname = enc[flavour];
18942 }
18943
18944 if (opname)
18945 do_vfp_nsyn_opcode (opname);
18946
18947 /* ARMv8.2 fp16 VCVT instruction. */
18948 if (flavour == neon_cvt_flavour_s32_f16
18949 || flavour == neon_cvt_flavour_u32_f16
18950 || flavour == neon_cvt_flavour_f16_u32
18951 || flavour == neon_cvt_flavour_f16_s32)
18952 do_scalar_fp16_v82_encode ();
18953 }
18954
18955 static void
18956 do_vfp_nsyn_cvtz (void)
18957 {
18958 enum neon_shape rs = neon_select_shape (NS_FH, NS_FF, NS_FD, NS_NULL);
18959 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
18960 const char *enc[] =
18961 {
18962 #define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
18963 CVT_FLAVOUR_VAR
18964 NULL
18965 #undef CVT_VAR
18966 };
18967
18968 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
18969 do_vfp_nsyn_opcode (enc[flavour]);
18970 }
18971
18972 static void
18973 do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
18974 enum neon_cvt_mode mode)
18975 {
18976 int sz, op;
18977 int rm;
18978
18979 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
18980 D register operands. */
18981 if (flavour == neon_cvt_flavour_s32_f64
18982 || flavour == neon_cvt_flavour_u32_f64)
18983 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
18984 _(BAD_FPU));
18985
18986 if (flavour == neon_cvt_flavour_s32_f16
18987 || flavour == neon_cvt_flavour_u32_f16)
18988 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
18989 _(BAD_FP16));
18990
18991 set_pred_insn_type (OUTSIDE_PRED_INSN);
18992
18993 switch (flavour)
18994 {
18995 case neon_cvt_flavour_s32_f64:
18996 sz = 1;
18997 op = 1;
18998 break;
18999 case neon_cvt_flavour_s32_f32:
19000 sz = 0;
19001 op = 1;
19002 break;
19003 case neon_cvt_flavour_s32_f16:
19004 sz = 0;
19005 op = 1;
19006 break;
19007 case neon_cvt_flavour_u32_f64:
19008 sz = 1;
19009 op = 0;
19010 break;
19011 case neon_cvt_flavour_u32_f32:
19012 sz = 0;
19013 op = 0;
19014 break;
19015 case neon_cvt_flavour_u32_f16:
19016 sz = 0;
19017 op = 0;
19018 break;
19019 default:
19020 first_error (_("invalid instruction shape"));
19021 return;
19022 }
19023
19024 switch (mode)
19025 {
19026 case neon_cvt_mode_a: rm = 0; break;
19027 case neon_cvt_mode_n: rm = 1; break;
19028 case neon_cvt_mode_p: rm = 2; break;
19029 case neon_cvt_mode_m: rm = 3; break;
19030 default: first_error (_("invalid rounding mode")); return;
19031 }
19032
19033 NEON_ENCODE (FPV8, inst);
19034 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
19035 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
19036 inst.instruction |= sz << 8;
19037
19038 /* ARMv8.2 fp16 VCVT instruction. */
19039 if (flavour == neon_cvt_flavour_s32_f16
19040 ||flavour == neon_cvt_flavour_u32_f16)
19041 do_scalar_fp16_v82_encode ();
19042 inst.instruction |= op << 7;
19043 inst.instruction |= rm << 16;
19044 inst.instruction |= 0xf0000000;
19045 inst.is_neon = TRUE;
19046 }
19047
19048 static void
19049 do_neon_cvt_1 (enum neon_cvt_mode mode)
19050 {
19051 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
19052 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ,
19053 NS_FH, NS_HF, NS_FHI, NS_HFI,
19054 NS_NULL);
19055 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
19056
19057 if (flavour == neon_cvt_flavour_invalid)
19058 return;
19059
19060 /* PR11109: Handle round-to-zero for VCVT conversions. */
19061 if (mode == neon_cvt_mode_z
19062 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
19063 && (flavour == neon_cvt_flavour_s16_f16
19064 || flavour == neon_cvt_flavour_u16_f16
19065 || flavour == neon_cvt_flavour_s32_f32
19066 || flavour == neon_cvt_flavour_u32_f32
19067 || flavour == neon_cvt_flavour_s32_f64
19068 || flavour == neon_cvt_flavour_u32_f64)
19069 && (rs == NS_FD || rs == NS_FF))
19070 {
19071 do_vfp_nsyn_cvtz ();
19072 return;
19073 }
19074
19075 /* ARMv8.2 fp16 VCVT conversions. */
19076 if (mode == neon_cvt_mode_z
19077 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16)
19078 && (flavour == neon_cvt_flavour_s32_f16
19079 || flavour == neon_cvt_flavour_u32_f16)
19080 && (rs == NS_FH))
19081 {
19082 do_vfp_nsyn_cvtz ();
19083 do_scalar_fp16_v82_encode ();
19084 return;
19085 }
19086
19087 if ((rs == NS_FD || rs == NS_QQI) && mode == neon_cvt_mode_n
19088 && ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19089 {
19090 /* We are dealing with vcvt with the 'ne' condition. */
19091 inst.cond = 0x1;
19092 inst.instruction = N_MNEM_vcvt;
19093 do_neon_cvt_1 (neon_cvt_mode_z);
19094 return;
19095 }
19096
19097 /* VFP rather than Neon conversions. */
19098 if (flavour >= neon_cvt_flavour_first_fp)
19099 {
19100 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
19101 do_vfp_nsyn_cvt (rs, flavour);
19102 else
19103 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
19104
19105 return;
19106 }
19107
19108 switch (rs)
19109 {
19110 case NS_QQI:
19111 if (mode == neon_cvt_mode_z
19112 && (flavour == neon_cvt_flavour_f16_s16
19113 || flavour == neon_cvt_flavour_f16_u16
19114 || flavour == neon_cvt_flavour_s16_f16
19115 || flavour == neon_cvt_flavour_u16_f16
19116 || flavour == neon_cvt_flavour_f32_u32
19117 || flavour == neon_cvt_flavour_f32_s32
19118 || flavour == neon_cvt_flavour_s32_f32
19119 || flavour == neon_cvt_flavour_u32_f32))
19120 {
19121 if (!check_simd_pred_availability (TRUE,
19122 NEON_CHECK_CC | NEON_CHECK_ARCH))
19123 return;
19124 }
19125 /* fall through. */
19126 case NS_DDI:
19127 {
19128 unsigned immbits;
19129 unsigned enctab[] = {0x0000100, 0x1000100, 0x0, 0x1000000,
19130 0x0000100, 0x1000100, 0x0, 0x1000000};
19131
19132 if ((rs != NS_QQI || !ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
19133 && vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
19134 return;
19135
19136 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
19137 {
19138 constraint (inst.operands[2].present && inst.operands[2].imm == 0,
19139 _("immediate value out of range"));
19140 switch (flavour)
19141 {
19142 case neon_cvt_flavour_f16_s16:
19143 case neon_cvt_flavour_f16_u16:
19144 case neon_cvt_flavour_s16_f16:
19145 case neon_cvt_flavour_u16_f16:
19146 constraint (inst.operands[2].imm > 16,
19147 _("immediate value out of range"));
19148 break;
19149 case neon_cvt_flavour_f32_u32:
19150 case neon_cvt_flavour_f32_s32:
19151 case neon_cvt_flavour_s32_f32:
19152 case neon_cvt_flavour_u32_f32:
19153 constraint (inst.operands[2].imm > 32,
19154 _("immediate value out of range"));
19155 break;
19156 default:
19157 inst.error = BAD_FPU;
19158 return;
19159 }
19160 }
19161
19162 /* Fixed-point conversion with #0 immediate is encoded as an
19163 integer conversion. */
19164 if (inst.operands[2].present && inst.operands[2].imm == 0)
19165 goto int_encode;
19166 NEON_ENCODE (IMMED, inst);
19167 if (flavour != neon_cvt_flavour_invalid)
19168 inst.instruction |= enctab[flavour];
19169 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19170 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19171 inst.instruction |= LOW4 (inst.operands[1].reg);
19172 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19173 inst.instruction |= neon_quad (rs) << 6;
19174 inst.instruction |= 1 << 21;
19175 if (flavour < neon_cvt_flavour_s16_f16)
19176 {
19177 inst.instruction |= 1 << 21;
19178 immbits = 32 - inst.operands[2].imm;
19179 inst.instruction |= immbits << 16;
19180 }
19181 else
19182 {
19183 inst.instruction |= 3 << 20;
19184 immbits = 16 - inst.operands[2].imm;
19185 inst.instruction |= immbits << 16;
19186 inst.instruction &= ~(1 << 9);
19187 }
19188
19189 neon_dp_fixup (&inst);
19190 }
19191 break;
19192
19193 case NS_QQ:
19194 if ((mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
19195 || mode == neon_cvt_mode_m || mode == neon_cvt_mode_p)
19196 && (flavour == neon_cvt_flavour_s16_f16
19197 || flavour == neon_cvt_flavour_u16_f16
19198 || flavour == neon_cvt_flavour_s32_f32
19199 || flavour == neon_cvt_flavour_u32_f32))
19200 {
19201 if (!check_simd_pred_availability (TRUE,
19202 NEON_CHECK_CC | NEON_CHECK_ARCH8))
19203 return;
19204 }
19205 else if (mode == neon_cvt_mode_z
19206 && (flavour == neon_cvt_flavour_f16_s16
19207 || flavour == neon_cvt_flavour_f16_u16
19208 || flavour == neon_cvt_flavour_s16_f16
19209 || flavour == neon_cvt_flavour_u16_f16
19210 || flavour == neon_cvt_flavour_f32_u32
19211 || flavour == neon_cvt_flavour_f32_s32
19212 || flavour == neon_cvt_flavour_s32_f32
19213 || flavour == neon_cvt_flavour_u32_f32))
19214 {
19215 if (!check_simd_pred_availability (TRUE,
19216 NEON_CHECK_CC | NEON_CHECK_ARCH))
19217 return;
19218 }
19219 /* fall through. */
19220 case NS_DD:
19221 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
19222 {
19223
19224 NEON_ENCODE (FLOAT, inst);
19225 if (!check_simd_pred_availability (TRUE,
19226 NEON_CHECK_CC | NEON_CHECK_ARCH8))
19227 return;
19228
19229 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19230 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19231 inst.instruction |= LOW4 (inst.operands[1].reg);
19232 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19233 inst.instruction |= neon_quad (rs) << 6;
19234 inst.instruction |= (flavour == neon_cvt_flavour_u16_f16
19235 || flavour == neon_cvt_flavour_u32_f32) << 7;
19236 inst.instruction |= mode << 8;
19237 if (flavour == neon_cvt_flavour_u16_f16
19238 || flavour == neon_cvt_flavour_s16_f16)
19239 /* Mask off the original size bits and reencode them. */
19240 inst.instruction = ((inst.instruction & 0xfff3ffff) | (1 << 18));
19241
19242 if (thumb_mode)
19243 inst.instruction |= 0xfc000000;
19244 else
19245 inst.instruction |= 0xf0000000;
19246 }
19247 else
19248 {
19249 int_encode:
19250 {
19251 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080,
19252 0x100, 0x180, 0x0, 0x080};
19253
19254 NEON_ENCODE (INTEGER, inst);
19255
19256 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
19257 {
19258 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
19259 return;
19260 }
19261
19262 if (flavour != neon_cvt_flavour_invalid)
19263 inst.instruction |= enctab[flavour];
19264
19265 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19266 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19267 inst.instruction |= LOW4 (inst.operands[1].reg);
19268 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19269 inst.instruction |= neon_quad (rs) << 6;
19270 if (flavour >= neon_cvt_flavour_s16_f16
19271 && flavour <= neon_cvt_flavour_f16_u16)
19272 /* Half precision. */
19273 inst.instruction |= 1 << 18;
19274 else
19275 inst.instruction |= 2 << 18;
19276
19277 neon_dp_fixup (&inst);
19278 }
19279 }
19280 break;
19281
19282 /* Half-precision conversions for Advanced SIMD -- neon. */
19283 case NS_QD:
19284 case NS_DQ:
19285 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
19286 return;
19287
19288 if ((rs == NS_DQ)
19289 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
19290 {
19291 as_bad (_("operand size must match register width"));
19292 break;
19293 }
19294
19295 if ((rs == NS_QD)
19296 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
19297 {
19298 as_bad (_("operand size must match register width"));
19299 break;
19300 }
19301
19302 if (rs == NS_DQ)
19303 {
19304 if (flavour == neon_cvt_flavour_bf16_f32)
19305 {
19306 if (vfp_or_neon_is_neon (NEON_CHECK_ARCH8) == FAIL)
19307 return;
19308 constraint (!mark_feature_used (&arm_ext_bf16), _(BAD_BF16));
19309 /* VCVT.bf16.f32. */
19310 inst.instruction = 0x11b60640;
19311 }
19312 else
19313 /* VCVT.f16.f32. */
19314 inst.instruction = 0x3b60600;
19315 }
19316 else
19317 /* VCVT.f32.f16. */
19318 inst.instruction = 0x3b60700;
19319
19320 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19321 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19322 inst.instruction |= LOW4 (inst.operands[1].reg);
19323 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19324 neon_dp_fixup (&inst);
19325 break;
19326
19327 default:
19328 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
19329 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
19330 do_vfp_nsyn_cvt (rs, flavour);
19331 else
19332 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
19333 }
19334 }
19335
19336 static void
19337 do_neon_cvtr (void)
19338 {
19339 do_neon_cvt_1 (neon_cvt_mode_x);
19340 }
19341
19342 static void
19343 do_neon_cvt (void)
19344 {
19345 do_neon_cvt_1 (neon_cvt_mode_z);
19346 }
19347
19348 static void
19349 do_neon_cvta (void)
19350 {
19351 do_neon_cvt_1 (neon_cvt_mode_a);
19352 }
19353
19354 static void
19355 do_neon_cvtn (void)
19356 {
19357 do_neon_cvt_1 (neon_cvt_mode_n);
19358 }
19359
19360 static void
19361 do_neon_cvtp (void)
19362 {
19363 do_neon_cvt_1 (neon_cvt_mode_p);
19364 }
19365
19366 static void
19367 do_neon_cvtm (void)
19368 {
19369 do_neon_cvt_1 (neon_cvt_mode_m);
19370 }
19371
19372 static void
19373 do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
19374 {
19375 if (is_double)
19376 mark_feature_used (&fpu_vfp_ext_armv8);
19377
19378 encode_arm_vfp_reg (inst.operands[0].reg,
19379 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
19380 encode_arm_vfp_reg (inst.operands[1].reg,
19381 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
19382 inst.instruction |= to ? 0x10000 : 0;
19383 inst.instruction |= t ? 0x80 : 0;
19384 inst.instruction |= is_double ? 0x100 : 0;
19385 do_vfp_cond_or_thumb ();
19386 }
19387
19388 static void
19389 do_neon_cvttb_1 (bfd_boolean t)
19390 {
19391 enum neon_shape rs = neon_select_shape (NS_HF, NS_HD, NS_FH, NS_FF, NS_FD,
19392 NS_DF, NS_DH, NS_QQ, NS_QQI, NS_NULL);
19393
19394 if (rs == NS_NULL)
19395 return;
19396 else if (rs == NS_QQ || rs == NS_QQI)
19397 {
19398 int single_to_half = 0;
19399 if (!check_simd_pred_availability (TRUE, NEON_CHECK_ARCH))
19400 return;
19401
19402 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
19403
19404 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
19405 && (flavour == neon_cvt_flavour_u16_f16
19406 || flavour == neon_cvt_flavour_s16_f16
19407 || flavour == neon_cvt_flavour_f16_s16
19408 || flavour == neon_cvt_flavour_f16_u16
19409 || flavour == neon_cvt_flavour_u32_f32
19410 || flavour == neon_cvt_flavour_s32_f32
19411 || flavour == neon_cvt_flavour_f32_s32
19412 || flavour == neon_cvt_flavour_f32_u32))
19413 {
19414 inst.cond = 0xf;
19415 inst.instruction = N_MNEM_vcvt;
19416 set_pred_insn_type (INSIDE_VPT_INSN);
19417 do_neon_cvt_1 (neon_cvt_mode_z);
19418 return;
19419 }
19420 else if (rs == NS_QQ && flavour == neon_cvt_flavour_f32_f16)
19421 single_to_half = 1;
19422 else if (rs == NS_QQ && flavour != neon_cvt_flavour_f16_f32)
19423 {
19424 first_error (BAD_FPU);
19425 return;
19426 }
19427
19428 inst.instruction = 0xee3f0e01;
19429 inst.instruction |= single_to_half << 28;
19430 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19431 inst.instruction |= LOW4 (inst.operands[0].reg) << 13;
19432 inst.instruction |= t << 12;
19433 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19434 inst.instruction |= LOW4 (inst.operands[1].reg) << 1;
19435 inst.is_neon = 1;
19436 }
19437 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
19438 {
19439 inst.error = NULL;
19440 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
19441 }
19442 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
19443 {
19444 inst.error = NULL;
19445 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
19446 }
19447 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
19448 {
19449 /* The VCVTB and VCVTT instructions with D-register operands
19450 don't work for SP only targets. */
19451 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
19452 _(BAD_FPU));
19453
19454 inst.error = NULL;
19455 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
19456 }
19457 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
19458 {
19459 /* The VCVTB and VCVTT instructions with D-register operands
19460 don't work for SP only targets. */
19461 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
19462 _(BAD_FPU));
19463
19464 inst.error = NULL;
19465 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
19466 }
19467 else if (neon_check_type (2, rs, N_BF16 | N_VFP, N_F32).type != NT_invtype)
19468 {
19469 constraint (!mark_feature_used (&arm_ext_bf16), _(BAD_BF16));
19470 inst.error = NULL;
19471 inst.instruction |= (1 << 8);
19472 inst.instruction &= ~(1 << 9);
19473 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
19474 }
19475 else
19476 return;
19477 }
19478
19479 static void
19480 do_neon_cvtb (void)
19481 {
19482 do_neon_cvttb_1 (FALSE);
19483 }
19484
19485
19486 static void
19487 do_neon_cvtt (void)
19488 {
19489 do_neon_cvttb_1 (TRUE);
19490 }
19491
19492 static void
19493 neon_move_immediate (void)
19494 {
19495 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
19496 struct neon_type_el et = neon_check_type (2, rs,
19497 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
19498 unsigned immlo, immhi = 0, immbits;
19499 int op, cmode, float_p;
19500
19501 constraint (et.type == NT_invtype,
19502 _("operand size must be specified for immediate VMOV"));
19503
19504 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
19505 op = (inst.instruction & (1 << 5)) != 0;
19506
19507 immlo = inst.operands[1].imm;
19508 if (inst.operands[1].regisimm)
19509 immhi = inst.operands[1].reg;
19510
19511 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
19512 _("immediate has bits set outside the operand size"));
19513
19514 float_p = inst.operands[1].immisfloat;
19515
19516 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
19517 et.size, et.type)) == FAIL)
19518 {
19519 /* Invert relevant bits only. */
19520 neon_invert_size (&immlo, &immhi, et.size);
19521 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
19522 with one or the other; those cases are caught by
19523 neon_cmode_for_move_imm. */
19524 op = !op;
19525 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
19526 &op, et.size, et.type)) == FAIL)
19527 {
19528 first_error (_("immediate out of range"));
19529 return;
19530 }
19531 }
19532
19533 inst.instruction &= ~(1 << 5);
19534 inst.instruction |= op << 5;
19535
19536 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19537 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19538 inst.instruction |= neon_quad (rs) << 6;
19539 inst.instruction |= cmode << 8;
19540
19541 neon_write_immbits (immbits);
19542 }
19543
19544 static void
19545 do_neon_mvn (void)
19546 {
19547 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
19548 return;
19549
19550 if (inst.operands[1].isreg)
19551 {
19552 enum neon_shape rs;
19553 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19554 rs = neon_select_shape (NS_QQ, NS_NULL);
19555 else
19556 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
19557
19558 NEON_ENCODE (INTEGER, inst);
19559 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19560 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19561 inst.instruction |= LOW4 (inst.operands[1].reg);
19562 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
19563 inst.instruction |= neon_quad (rs) << 6;
19564 }
19565 else
19566 {
19567 NEON_ENCODE (IMMED, inst);
19568 neon_move_immediate ();
19569 }
19570
19571 neon_dp_fixup (&inst);
19572
19573 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19574 {
19575 constraint (!inst.operands[1].isreg && !inst.operands[0].isquad, BAD_FPU);
19576 }
19577 }
19578
19579 /* Encode instructions of form:
19580
19581 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
19582 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
19583
19584 static void
19585 neon_mixed_length (struct neon_type_el et, unsigned size)
19586 {
19587 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19588 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19589 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
19590 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
19591 inst.instruction |= LOW4 (inst.operands[2].reg);
19592 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
19593 inst.instruction |= (et.type == NT_unsigned) << 24;
19594 inst.instruction |= neon_logbits (size) << 20;
19595
19596 neon_dp_fixup (&inst);
19597 }
19598
19599 static void
19600 do_neon_dyadic_long (void)
19601 {
19602 enum neon_shape rs = neon_select_shape (NS_QDD, NS_HHH, NS_FFF, NS_DDD, NS_NULL);
19603 if (rs == NS_QDD)
19604 {
19605 if (vfp_or_neon_is_neon (NEON_CHECK_ARCH | NEON_CHECK_CC) == FAIL)
19606 return;
19607
19608 NEON_ENCODE (INTEGER, inst);
19609 /* FIXME: Type checking for lengthening op. */
19610 struct neon_type_el et = neon_check_type (3, NS_QDD,
19611 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
19612 neon_mixed_length (et, et.size);
19613 }
19614 else if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
19615 && (inst.cond == 0xf || inst.cond == 0x10))
19616 {
19617 /* If parsing for MVE, vaddl/vsubl/vabdl{e,t} can only be vadd/vsub/vabd
19618 in an IT block with le/lt conditions. */
19619
19620 if (inst.cond == 0xf)
19621 inst.cond = 0xb;
19622 else if (inst.cond == 0x10)
19623 inst.cond = 0xd;
19624
19625 inst.pred_insn_type = INSIDE_IT_INSN;
19626
19627 if (inst.instruction == N_MNEM_vaddl)
19628 {
19629 inst.instruction = N_MNEM_vadd;
19630 do_neon_addsub_if_i ();
19631 }
19632 else if (inst.instruction == N_MNEM_vsubl)
19633 {
19634 inst.instruction = N_MNEM_vsub;
19635 do_neon_addsub_if_i ();
19636 }
19637 else if (inst.instruction == N_MNEM_vabdl)
19638 {
19639 inst.instruction = N_MNEM_vabd;
19640 do_neon_dyadic_if_su ();
19641 }
19642 }
19643 else
19644 first_error (BAD_FPU);
19645 }
19646
19647 static void
19648 do_neon_abal (void)
19649 {
19650 struct neon_type_el et = neon_check_type (3, NS_QDD,
19651 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
19652 neon_mixed_length (et, et.size);
19653 }
19654
19655 static void
19656 neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
19657 {
19658 if (inst.operands[2].isscalar)
19659 {
19660 struct neon_type_el et = neon_check_type (3, NS_QDS,
19661 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
19662 NEON_ENCODE (SCALAR, inst);
19663 neon_mul_mac (et, et.type == NT_unsigned);
19664 }
19665 else
19666 {
19667 struct neon_type_el et = neon_check_type (3, NS_QDD,
19668 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
19669 NEON_ENCODE (INTEGER, inst);
19670 neon_mixed_length (et, et.size);
19671 }
19672 }
19673
19674 static void
19675 do_neon_mac_maybe_scalar_long (void)
19676 {
19677 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
19678 }
19679
19680 /* Like neon_scalar_for_mul, this function generate Rm encoding from GAS's
19681 internal SCALAR. QUAD_P is 1 if it's for Q format, otherwise it's 0. */
19682
19683 static unsigned
19684 neon_scalar_for_fmac_fp16_long (unsigned scalar, unsigned quad_p)
19685 {
19686 unsigned regno = NEON_SCALAR_REG (scalar);
19687 unsigned elno = NEON_SCALAR_INDEX (scalar);
19688
19689 if (quad_p)
19690 {
19691 if (regno > 7 || elno > 3)
19692 goto bad_scalar;
19693
19694 return ((regno & 0x7)
19695 | ((elno & 0x1) << 3)
19696 | (((elno >> 1) & 0x1) << 5));
19697 }
19698 else
19699 {
19700 if (regno > 15 || elno > 1)
19701 goto bad_scalar;
19702
19703 return (((regno & 0x1) << 5)
19704 | ((regno >> 1) & 0x7)
19705 | ((elno & 0x1) << 3));
19706 }
19707
19708 bad_scalar:
19709 first_error (_("scalar out of range for multiply instruction"));
19710 return 0;
19711 }
19712
19713 static void
19714 do_neon_fmac_maybe_scalar_long (int subtype)
19715 {
19716 enum neon_shape rs;
19717 int high8;
19718 /* NOTE: vfmal/vfmsl use slightly different NEON three-same encoding. 'size"
19719 field (bits[21:20]) has different meaning. For scalar index variant, it's
19720 used to differentiate add and subtract, otherwise it's with fixed value
19721 0x2. */
19722 int size = -1;
19723
19724 /* vfmal/vfmsl are in three-same D/Q register format or the third operand can
19725 be a scalar index register. */
19726 if (inst.operands[2].isscalar)
19727 {
19728 high8 = 0xfe000000;
19729 if (subtype)
19730 size = 16;
19731 rs = neon_select_shape (NS_DHS, NS_QDS, NS_NULL);
19732 }
19733 else
19734 {
19735 high8 = 0xfc000000;
19736 size = 32;
19737 if (subtype)
19738 inst.instruction |= (0x1 << 23);
19739 rs = neon_select_shape (NS_DHH, NS_QDD, NS_NULL);
19740 }
19741
19742
19743 if (inst.cond != COND_ALWAYS)
19744 as_warn (_("vfmal/vfmsl with FP16 type cannot be conditional, the "
19745 "behaviour is UNPREDICTABLE"));
19746
19747 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16_fml),
19748 _(BAD_FP16));
19749
19750 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
19751 _(BAD_FPU));
19752
19753 /* "opcode" from template has included "ubit", so simply pass 0 here. Also,
19754 the "S" bit in size field has been reused to differentiate vfmal and vfmsl,
19755 so we simply pass -1 as size. */
19756 unsigned quad_p = (rs == NS_QDD || rs == NS_QDS);
19757 neon_three_same (quad_p, 0, size);
19758
19759 /* Undo neon_dp_fixup. Redo the high eight bits. */
19760 inst.instruction &= 0x00ffffff;
19761 inst.instruction |= high8;
19762
19763 /* Unlike usually NEON three-same, encoding for Vn and Vm will depend on
19764 whether the instruction is in Q form and whether Vm is a scalar indexed
19765 operand. */
19766 if (inst.operands[2].isscalar)
19767 {
19768 unsigned rm
19769 = neon_scalar_for_fmac_fp16_long (inst.operands[2].reg, quad_p);
19770 inst.instruction &= 0xffffffd0;
19771 inst.instruction |= rm;
19772
19773 if (!quad_p)
19774 {
19775 /* Redo Rn as well. */
19776 inst.instruction &= 0xfff0ff7f;
19777 inst.instruction |= HI4 (inst.operands[1].reg) << 16;
19778 inst.instruction |= LOW1 (inst.operands[1].reg) << 7;
19779 }
19780 }
19781 else if (!quad_p)
19782 {
19783 /* Redo Rn and Rm. */
19784 inst.instruction &= 0xfff0ff50;
19785 inst.instruction |= HI4 (inst.operands[1].reg) << 16;
19786 inst.instruction |= LOW1 (inst.operands[1].reg) << 7;
19787 inst.instruction |= HI4 (inst.operands[2].reg);
19788 inst.instruction |= LOW1 (inst.operands[2].reg) << 5;
19789 }
19790 }
19791
19792 static void
19793 do_neon_vfmal (void)
19794 {
19795 return do_neon_fmac_maybe_scalar_long (0);
19796 }
19797
19798 static void
19799 do_neon_vfmsl (void)
19800 {
19801 return do_neon_fmac_maybe_scalar_long (1);
19802 }
19803
19804 static void
19805 do_neon_dyadic_wide (void)
19806 {
19807 struct neon_type_el et = neon_check_type (3, NS_QQD,
19808 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
19809 neon_mixed_length (et, et.size);
19810 }
19811
19812 static void
19813 do_neon_dyadic_narrow (void)
19814 {
19815 struct neon_type_el et = neon_check_type (3, NS_QDD,
19816 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
19817 /* Operand sign is unimportant, and the U bit is part of the opcode,
19818 so force the operand type to integer. */
19819 et.type = NT_integer;
19820 neon_mixed_length (et, et.size / 2);
19821 }
19822
19823 static void
19824 do_neon_mul_sat_scalar_long (void)
19825 {
19826 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
19827 }
19828
19829 static void
19830 do_neon_vmull (void)
19831 {
19832 if (inst.operands[2].isscalar)
19833 do_neon_mac_maybe_scalar_long ();
19834 else
19835 {
19836 struct neon_type_el et = neon_check_type (3, NS_QDD,
19837 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
19838
19839 if (et.type == NT_poly)
19840 NEON_ENCODE (POLY, inst);
19841 else
19842 NEON_ENCODE (INTEGER, inst);
19843
19844 /* For polynomial encoding the U bit must be zero, and the size must
19845 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
19846 obviously, as 0b10). */
19847 if (et.size == 64)
19848 {
19849 /* Check we're on the correct architecture. */
19850 if (!mark_feature_used (&fpu_crypto_ext_armv8))
19851 inst.error =
19852 _("Instruction form not available on this architecture.");
19853
19854 et.size = 32;
19855 }
19856
19857 neon_mixed_length (et, et.size);
19858 }
19859 }
19860
19861 static void
19862 do_neon_ext (void)
19863 {
19864 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
19865 struct neon_type_el et = neon_check_type (3, rs,
19866 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
19867 unsigned imm = (inst.operands[3].imm * et.size) / 8;
19868
19869 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
19870 _("shift out of range"));
19871 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19872 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19873 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
19874 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
19875 inst.instruction |= LOW4 (inst.operands[2].reg);
19876 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
19877 inst.instruction |= neon_quad (rs) << 6;
19878 inst.instruction |= imm << 8;
19879
19880 neon_dp_fixup (&inst);
19881 }
19882
19883 static void
19884 do_neon_rev (void)
19885 {
19886 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
19887 return;
19888
19889 enum neon_shape rs;
19890 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19891 rs = neon_select_shape (NS_QQ, NS_NULL);
19892 else
19893 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
19894
19895 struct neon_type_el et = neon_check_type (2, rs,
19896 N_EQK, N_8 | N_16 | N_32 | N_KEY);
19897
19898 unsigned op = (inst.instruction >> 7) & 3;
19899 /* N (width of reversed regions) is encoded as part of the bitmask. We
19900 extract it here to check the elements to be reversed are smaller.
19901 Otherwise we'd get a reserved instruction. */
19902 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
19903
19904 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext) && elsize == 64
19905 && inst.operands[0].reg == inst.operands[1].reg)
19906 as_tsktsk (_("Warning: 64-bit element size and same destination and source"
19907 " operands makes instruction UNPREDICTABLE"));
19908
19909 gas_assert (elsize != 0);
19910 constraint (et.size >= elsize,
19911 _("elements must be smaller than reversal region"));
19912 neon_two_same (neon_quad (rs), 1, et.size);
19913 }
19914
19915 static void
19916 do_neon_dup (void)
19917 {
19918 if (inst.operands[1].isscalar)
19919 {
19920 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1),
19921 BAD_FPU);
19922 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
19923 struct neon_type_el et = neon_check_type (2, rs,
19924 N_EQK, N_8 | N_16 | N_32 | N_KEY);
19925 unsigned sizebits = et.size >> 3;
19926 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
19927 int logsize = neon_logbits (et.size);
19928 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
19929
19930 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
19931 return;
19932
19933 NEON_ENCODE (SCALAR, inst);
19934 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
19935 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
19936 inst.instruction |= LOW4 (dm);
19937 inst.instruction |= HI1 (dm) << 5;
19938 inst.instruction |= neon_quad (rs) << 6;
19939 inst.instruction |= x << 17;
19940 inst.instruction |= sizebits << 16;
19941
19942 neon_dp_fixup (&inst);
19943 }
19944 else
19945 {
19946 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
19947 struct neon_type_el et = neon_check_type (2, rs,
19948 N_8 | N_16 | N_32 | N_KEY, N_EQK);
19949 if (rs == NS_QR)
19950 {
19951 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH))
19952 return;
19953 }
19954 else
19955 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1),
19956 BAD_FPU);
19957
19958 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19959 {
19960 if (inst.operands[1].reg == REG_SP)
19961 as_tsktsk (MVE_BAD_SP);
19962 else if (inst.operands[1].reg == REG_PC)
19963 as_tsktsk (MVE_BAD_PC);
19964 }
19965
19966 /* Duplicate ARM register to lanes of vector. */
19967 NEON_ENCODE (ARMREG, inst);
19968 switch (et.size)
19969 {
19970 case 8: inst.instruction |= 0x400000; break;
19971 case 16: inst.instruction |= 0x000020; break;
19972 case 32: inst.instruction |= 0x000000; break;
19973 default: break;
19974 }
19975 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
19976 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
19977 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
19978 inst.instruction |= neon_quad (rs) << 21;
19979 /* The encoding for this instruction is identical for the ARM and Thumb
19980 variants, except for the condition field. */
19981 do_vfp_cond_or_thumb ();
19982 }
19983 }
19984
19985 static void
19986 do_mve_mov (int toQ)
19987 {
19988 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
19989 return;
19990 if (inst.cond > COND_ALWAYS)
19991 inst.pred_insn_type = MVE_UNPREDICABLE_INSN;
19992
19993 unsigned Rt = 0, Rt2 = 1, Q0 = 2, Q1 = 3;
19994 if (toQ)
19995 {
19996 Q0 = 0;
19997 Q1 = 1;
19998 Rt = 2;
19999 Rt2 = 3;
20000 }
20001
20002 constraint (inst.operands[Q0].reg != inst.operands[Q1].reg + 2,
20003 _("Index one must be [2,3] and index two must be two less than"
20004 " index one."));
20005 constraint (inst.operands[Rt].reg == inst.operands[Rt2].reg,
20006 _("General purpose registers may not be the same"));
20007 constraint (inst.operands[Rt].reg == REG_SP
20008 || inst.operands[Rt2].reg == REG_SP,
20009 BAD_SP);
20010 constraint (inst.operands[Rt].reg == REG_PC
20011 || inst.operands[Rt2].reg == REG_PC,
20012 BAD_PC);
20013
20014 inst.instruction = 0xec000f00;
20015 inst.instruction |= HI1 (inst.operands[Q1].reg / 32) << 23;
20016 inst.instruction |= !!toQ << 20;
20017 inst.instruction |= inst.operands[Rt2].reg << 16;
20018 inst.instruction |= LOW4 (inst.operands[Q1].reg / 32) << 13;
20019 inst.instruction |= (inst.operands[Q1].reg % 4) << 4;
20020 inst.instruction |= inst.operands[Rt].reg;
20021 }
20022
20023 static void
20024 do_mve_movn (void)
20025 {
20026 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20027 return;
20028
20029 if (inst.cond > COND_ALWAYS)
20030 inst.pred_insn_type = INSIDE_VPT_INSN;
20031 else
20032 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
20033
20034 struct neon_type_el et = neon_check_type (2, NS_QQ, N_EQK, N_I16 | N_I32
20035 | N_KEY);
20036
20037 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20038 inst.instruction |= (neon_logbits (et.size) - 1) << 18;
20039 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20040 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
20041 inst.instruction |= LOW4 (inst.operands[1].reg);
20042 inst.is_neon = 1;
20043
20044 }
20045
20046 /* VMOV has particularly many variations. It can be one of:
20047 0. VMOV<c><q> <Qd>, <Qm>
20048 1. VMOV<c><q> <Dd>, <Dm>
20049 (Register operations, which are VORR with Rm = Rn.)
20050 2. VMOV<c><q>.<dt> <Qd>, #<imm>
20051 3. VMOV<c><q>.<dt> <Dd>, #<imm>
20052 (Immediate loads.)
20053 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
20054 (ARM register to scalar.)
20055 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
20056 (Two ARM registers to vector.)
20057 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
20058 (Scalar to ARM register.)
20059 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
20060 (Vector to two ARM registers.)
20061 8. VMOV.F32 <Sd>, <Sm>
20062 9. VMOV.F64 <Dd>, <Dm>
20063 (VFP register moves.)
20064 10. VMOV.F32 <Sd>, #imm
20065 11. VMOV.F64 <Dd>, #imm
20066 (VFP float immediate load.)
20067 12. VMOV <Rd>, <Sm>
20068 (VFP single to ARM reg.)
20069 13. VMOV <Sd>, <Rm>
20070 (ARM reg to VFP single.)
20071 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
20072 (Two ARM regs to two VFP singles.)
20073 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
20074 (Two VFP singles to two ARM regs.)
20075 16. VMOV<c> <Rt>, <Rt2>, <Qd[idx]>, <Qd[idx2]>
20076 17. VMOV<c> <Qd[idx]>, <Qd[idx2]>, <Rt>, <Rt2>
20077 18. VMOV<c>.<dt> <Rt>, <Qn[idx]>
20078 19. VMOV<c>.<dt> <Qd[idx]>, <Rt>
20079
20080 These cases can be disambiguated using neon_select_shape, except cases 1/9
20081 and 3/11 which depend on the operand type too.
20082
20083 All the encoded bits are hardcoded by this function.
20084
20085 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
20086 Cases 5, 7 may be used with VFPv2 and above.
20087
20088 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
20089 can specify a type where it doesn't make sense to, and is ignored). */
20090
20091 static void
20092 do_neon_mov (void)
20093 {
20094 enum neon_shape rs = neon_select_shape (NS_RRSS, NS_SSRR, NS_RRFF, NS_FFRR,
20095 NS_DRR, NS_RRD, NS_QQ, NS_DD, NS_QI,
20096 NS_DI, NS_SR, NS_RS, NS_FF, NS_FI,
20097 NS_RF, NS_FR, NS_HR, NS_RH, NS_HI,
20098 NS_NULL);
20099 struct neon_type_el et;
20100 const char *ldconst = 0;
20101
20102 switch (rs)
20103 {
20104 case NS_DD: /* case 1/9. */
20105 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
20106 /* It is not an error here if no type is given. */
20107 inst.error = NULL;
20108
20109 /* In MVE we interpret the following instructions as same, so ignoring
20110 the following type (float) and size (64) checks.
20111 a: VMOV<c><q> <Dd>, <Dm>
20112 b: VMOV<c><q>.F64 <Dd>, <Dm>. */
20113 if ((et.type == NT_float && et.size == 64)
20114 || (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)))
20115 {
20116 do_vfp_nsyn_opcode ("fcpyd");
20117 break;
20118 }
20119 /* fall through. */
20120
20121 case NS_QQ: /* case 0/1. */
20122 {
20123 if (!check_simd_pred_availability (FALSE,
20124 NEON_CHECK_CC | NEON_CHECK_ARCH))
20125 return;
20126 /* The architecture manual I have doesn't explicitly state which
20127 value the U bit should have for register->register moves, but
20128 the equivalent VORR instruction has U = 0, so do that. */
20129 inst.instruction = 0x0200110;
20130 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20131 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20132 inst.instruction |= LOW4 (inst.operands[1].reg);
20133 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
20134 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
20135 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
20136 inst.instruction |= neon_quad (rs) << 6;
20137
20138 neon_dp_fixup (&inst);
20139 }
20140 break;
20141
20142 case NS_DI: /* case 3/11. */
20143 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
20144 inst.error = NULL;
20145 if (et.type == NT_float && et.size == 64)
20146 {
20147 /* case 11 (fconstd). */
20148 ldconst = "fconstd";
20149 goto encode_fconstd;
20150 }
20151 /* fall through. */
20152
20153 case NS_QI: /* case 2/3. */
20154 if (!check_simd_pred_availability (FALSE,
20155 NEON_CHECK_CC | NEON_CHECK_ARCH))
20156 return;
20157 inst.instruction = 0x0800010;
20158 neon_move_immediate ();
20159 neon_dp_fixup (&inst);
20160 break;
20161
20162 case NS_SR: /* case 4. */
20163 {
20164 unsigned bcdebits = 0;
20165 int logsize;
20166 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
20167 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
20168
20169 /* .<size> is optional here, defaulting to .32. */
20170 if (inst.vectype.elems == 0
20171 && inst.operands[0].vectype.type == NT_invtype
20172 && inst.operands[1].vectype.type == NT_invtype)
20173 {
20174 inst.vectype.el[0].type = NT_untyped;
20175 inst.vectype.el[0].size = 32;
20176 inst.vectype.elems = 1;
20177 }
20178
20179 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
20180 logsize = neon_logbits (et.size);
20181
20182 if (et.size != 32)
20183 {
20184 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
20185 && vfp_or_neon_is_neon (NEON_CHECK_ARCH) == FAIL)
20186 return;
20187 }
20188 else
20189 {
20190 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
20191 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20192 _(BAD_FPU));
20193 }
20194
20195 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20196 {
20197 if (inst.operands[1].reg == REG_SP)
20198 as_tsktsk (MVE_BAD_SP);
20199 else if (inst.operands[1].reg == REG_PC)
20200 as_tsktsk (MVE_BAD_PC);
20201 }
20202 unsigned size = inst.operands[0].isscalar == 1 ? 64 : 128;
20203
20204 constraint (et.type == NT_invtype, _("bad type for scalar"));
20205 constraint (x >= size / et.size, _("scalar index out of range"));
20206
20207
20208 switch (et.size)
20209 {
20210 case 8: bcdebits = 0x8; break;
20211 case 16: bcdebits = 0x1; break;
20212 case 32: bcdebits = 0x0; break;
20213 default: ;
20214 }
20215
20216 bcdebits |= (x & ((1 << (3-logsize)) - 1)) << logsize;
20217
20218 inst.instruction = 0xe000b10;
20219 do_vfp_cond_or_thumb ();
20220 inst.instruction |= LOW4 (dn) << 16;
20221 inst.instruction |= HI1 (dn) << 7;
20222 inst.instruction |= inst.operands[1].reg << 12;
20223 inst.instruction |= (bcdebits & 3) << 5;
20224 inst.instruction |= ((bcdebits >> 2) & 3) << 21;
20225 inst.instruction |= (x >> (3-logsize)) << 16;
20226 }
20227 break;
20228
20229 case NS_DRR: /* case 5 (fmdrr). */
20230 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20231 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20232 _(BAD_FPU));
20233
20234 inst.instruction = 0xc400b10;
20235 do_vfp_cond_or_thumb ();
20236 inst.instruction |= LOW4 (inst.operands[0].reg);
20237 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
20238 inst.instruction |= inst.operands[1].reg << 12;
20239 inst.instruction |= inst.operands[2].reg << 16;
20240 break;
20241
20242 case NS_RS: /* case 6. */
20243 {
20244 unsigned logsize;
20245 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
20246 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
20247 unsigned abcdebits = 0;
20248
20249 /* .<dt> is optional here, defaulting to .32. */
20250 if (inst.vectype.elems == 0
20251 && inst.operands[0].vectype.type == NT_invtype
20252 && inst.operands[1].vectype.type == NT_invtype)
20253 {
20254 inst.vectype.el[0].type = NT_untyped;
20255 inst.vectype.el[0].size = 32;
20256 inst.vectype.elems = 1;
20257 }
20258
20259 et = neon_check_type (2, NS_NULL,
20260 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
20261 logsize = neon_logbits (et.size);
20262
20263 if (et.size != 32)
20264 {
20265 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
20266 && vfp_or_neon_is_neon (NEON_CHECK_CC
20267 | NEON_CHECK_ARCH) == FAIL)
20268 return;
20269 }
20270 else
20271 {
20272 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1)
20273 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20274 _(BAD_FPU));
20275 }
20276
20277 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20278 {
20279 if (inst.operands[0].reg == REG_SP)
20280 as_tsktsk (MVE_BAD_SP);
20281 else if (inst.operands[0].reg == REG_PC)
20282 as_tsktsk (MVE_BAD_PC);
20283 }
20284
20285 unsigned size = inst.operands[1].isscalar == 1 ? 64 : 128;
20286
20287 constraint (et.type == NT_invtype, _("bad type for scalar"));
20288 constraint (x >= size / et.size, _("scalar index out of range"));
20289
20290 switch (et.size)
20291 {
20292 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
20293 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
20294 case 32: abcdebits = 0x00; break;
20295 default: ;
20296 }
20297
20298 abcdebits |= (x & ((1 << (3-logsize)) - 1)) << logsize;
20299 inst.instruction = 0xe100b10;
20300 do_vfp_cond_or_thumb ();
20301 inst.instruction |= LOW4 (dn) << 16;
20302 inst.instruction |= HI1 (dn) << 7;
20303 inst.instruction |= inst.operands[0].reg << 12;
20304 inst.instruction |= (abcdebits & 3) << 5;
20305 inst.instruction |= (abcdebits >> 2) << 21;
20306 inst.instruction |= (x >> (3-logsize)) << 16;
20307 }
20308 break;
20309
20310 case NS_RRD: /* case 7 (fmrrd). */
20311 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20312 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20313 _(BAD_FPU));
20314
20315 inst.instruction = 0xc500b10;
20316 do_vfp_cond_or_thumb ();
20317 inst.instruction |= inst.operands[0].reg << 12;
20318 inst.instruction |= inst.operands[1].reg << 16;
20319 inst.instruction |= LOW4 (inst.operands[2].reg);
20320 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
20321 break;
20322
20323 case NS_FF: /* case 8 (fcpys). */
20324 do_vfp_nsyn_opcode ("fcpys");
20325 break;
20326
20327 case NS_HI:
20328 case NS_FI: /* case 10 (fconsts). */
20329 ldconst = "fconsts";
20330 encode_fconstd:
20331 if (!inst.operands[1].immisfloat)
20332 {
20333 unsigned new_imm;
20334 /* Immediate has to fit in 8 bits so float is enough. */
20335 float imm = (float) inst.operands[1].imm;
20336 memcpy (&new_imm, &imm, sizeof (float));
20337 /* But the assembly may have been written to provide an integer
20338 bit pattern that equates to a float, so check that the
20339 conversion has worked. */
20340 if (is_quarter_float (new_imm))
20341 {
20342 if (is_quarter_float (inst.operands[1].imm))
20343 as_warn (_("immediate constant is valid both as a bit-pattern and a floating point value (using the fp value)"));
20344
20345 inst.operands[1].imm = new_imm;
20346 inst.operands[1].immisfloat = 1;
20347 }
20348 }
20349
20350 if (is_quarter_float (inst.operands[1].imm))
20351 {
20352 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
20353 do_vfp_nsyn_opcode (ldconst);
20354
20355 /* ARMv8.2 fp16 vmov.f16 instruction. */
20356 if (rs == NS_HI)
20357 do_scalar_fp16_v82_encode ();
20358 }
20359 else
20360 first_error (_("immediate out of range"));
20361 break;
20362
20363 case NS_RH:
20364 case NS_RF: /* case 12 (fmrs). */
20365 do_vfp_nsyn_opcode ("fmrs");
20366 /* ARMv8.2 fp16 vmov.f16 instruction. */
20367 if (rs == NS_RH)
20368 do_scalar_fp16_v82_encode ();
20369 break;
20370
20371 case NS_HR:
20372 case NS_FR: /* case 13 (fmsr). */
20373 do_vfp_nsyn_opcode ("fmsr");
20374 /* ARMv8.2 fp16 vmov.f16 instruction. */
20375 if (rs == NS_HR)
20376 do_scalar_fp16_v82_encode ();
20377 break;
20378
20379 case NS_RRSS:
20380 do_mve_mov (0);
20381 break;
20382 case NS_SSRR:
20383 do_mve_mov (1);
20384 break;
20385
20386 /* The encoders for the fmrrs and fmsrr instructions expect three operands
20387 (one of which is a list), but we have parsed four. Do some fiddling to
20388 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
20389 expect. */
20390 case NS_RRFF: /* case 14 (fmrrs). */
20391 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20392 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20393 _(BAD_FPU));
20394 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
20395 _("VFP registers must be adjacent"));
20396 inst.operands[2].imm = 2;
20397 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
20398 do_vfp_nsyn_opcode ("fmrrs");
20399 break;
20400
20401 case NS_FFRR: /* case 15 (fmsrr). */
20402 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2)
20403 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20404 _(BAD_FPU));
20405 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
20406 _("VFP registers must be adjacent"));
20407 inst.operands[1] = inst.operands[2];
20408 inst.operands[2] = inst.operands[3];
20409 inst.operands[0].imm = 2;
20410 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
20411 do_vfp_nsyn_opcode ("fmsrr");
20412 break;
20413
20414 case NS_NULL:
20415 /* neon_select_shape has determined that the instruction
20416 shape is wrong and has already set the error message. */
20417 break;
20418
20419 default:
20420 abort ();
20421 }
20422 }
20423
20424 static void
20425 do_mve_movl (void)
20426 {
20427 if (!(inst.operands[0].present && inst.operands[0].isquad
20428 && inst.operands[1].present && inst.operands[1].isquad
20429 && !inst.operands[2].present))
20430 {
20431 inst.instruction = 0;
20432 inst.cond = 0xb;
20433 if (thumb_mode)
20434 set_pred_insn_type (INSIDE_IT_INSN);
20435 do_neon_mov ();
20436 return;
20437 }
20438
20439 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20440 return;
20441
20442 if (inst.cond != COND_ALWAYS)
20443 inst.pred_insn_type = INSIDE_VPT_INSN;
20444
20445 struct neon_type_el et = neon_check_type (2, NS_QQ, N_EQK, N_S8 | N_U8
20446 | N_S16 | N_U16 | N_KEY);
20447
20448 inst.instruction |= (et.type == NT_unsigned) << 28;
20449 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20450 inst.instruction |= (neon_logbits (et.size) + 1) << 19;
20451 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20452 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
20453 inst.instruction |= LOW4 (inst.operands[1].reg);
20454 inst.is_neon = 1;
20455 }
20456
20457 static void
20458 do_neon_rshift_round_imm (void)
20459 {
20460 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20461 return;
20462
20463 enum neon_shape rs;
20464 struct neon_type_el et;
20465
20466 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20467 {
20468 rs = neon_select_shape (NS_QQI, NS_NULL);
20469 et = neon_check_type (2, rs, N_EQK, N_SU_MVE | N_KEY);
20470 }
20471 else
20472 {
20473 rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
20474 et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
20475 }
20476 int imm = inst.operands[2].imm;
20477
20478 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
20479 if (imm == 0)
20480 {
20481 inst.operands[2].present = 0;
20482 do_neon_mov ();
20483 return;
20484 }
20485
20486 constraint (imm < 1 || (unsigned)imm > et.size,
20487 _("immediate out of range for shift"));
20488 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
20489 et.size - imm);
20490 }
20491
20492 static void
20493 do_neon_movhf (void)
20494 {
20495 enum neon_shape rs = neon_select_shape (NS_HH, NS_NULL);
20496 constraint (rs != NS_HH, _("invalid suffix"));
20497
20498 if (inst.cond != COND_ALWAYS)
20499 {
20500 if (thumb_mode)
20501 {
20502 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
20503 " the behaviour is UNPREDICTABLE"));
20504 }
20505 else
20506 {
20507 inst.error = BAD_COND;
20508 return;
20509 }
20510 }
20511
20512 do_vfp_sp_monadic ();
20513
20514 inst.is_neon = 1;
20515 inst.instruction |= 0xf0000000;
20516 }
20517
20518 static void
20519 do_neon_movl (void)
20520 {
20521 struct neon_type_el et = neon_check_type (2, NS_QD,
20522 N_EQK | N_DBL, N_SU_32 | N_KEY);
20523 unsigned sizebits = et.size >> 3;
20524 inst.instruction |= sizebits << 19;
20525 neon_two_same (0, et.type == NT_unsigned, -1);
20526 }
20527
20528 static void
20529 do_neon_trn (void)
20530 {
20531 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20532 struct neon_type_el et = neon_check_type (2, rs,
20533 N_EQK, N_8 | N_16 | N_32 | N_KEY);
20534 NEON_ENCODE (INTEGER, inst);
20535 neon_two_same (neon_quad (rs), 1, et.size);
20536 }
20537
20538 static void
20539 do_neon_zip_uzp (void)
20540 {
20541 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20542 struct neon_type_el et = neon_check_type (2, rs,
20543 N_EQK, N_8 | N_16 | N_32 | N_KEY);
20544 if (rs == NS_DD && et.size == 32)
20545 {
20546 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
20547 inst.instruction = N_MNEM_vtrn;
20548 do_neon_trn ();
20549 return;
20550 }
20551 neon_two_same (neon_quad (rs), 1, et.size);
20552 }
20553
20554 static void
20555 do_neon_sat_abs_neg (void)
20556 {
20557 if (!check_simd_pred_availability (FALSE, NEON_CHECK_CC | NEON_CHECK_ARCH))
20558 return;
20559
20560 enum neon_shape rs;
20561 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20562 rs = neon_select_shape (NS_QQ, NS_NULL);
20563 else
20564 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20565 struct neon_type_el et = neon_check_type (2, rs,
20566 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
20567 neon_two_same (neon_quad (rs), 1, et.size);
20568 }
20569
20570 static void
20571 do_neon_pair_long (void)
20572 {
20573 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20574 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
20575 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
20576 inst.instruction |= (et.type == NT_unsigned) << 7;
20577 neon_two_same (neon_quad (rs), 1, et.size);
20578 }
20579
20580 static void
20581 do_neon_recip_est (void)
20582 {
20583 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20584 struct neon_type_el et = neon_check_type (2, rs,
20585 N_EQK | N_FLT, N_F_16_32 | N_U32 | N_KEY);
20586 inst.instruction |= (et.type == NT_float) << 8;
20587 neon_two_same (neon_quad (rs), 1, et.size);
20588 }
20589
20590 static void
20591 do_neon_cls (void)
20592 {
20593 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20594 return;
20595
20596 enum neon_shape rs;
20597 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20598 rs = neon_select_shape (NS_QQ, NS_NULL);
20599 else
20600 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20601
20602 struct neon_type_el et = neon_check_type (2, rs,
20603 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
20604 neon_two_same (neon_quad (rs), 1, et.size);
20605 }
20606
20607 static void
20608 do_neon_clz (void)
20609 {
20610 if (!check_simd_pred_availability (FALSE, NEON_CHECK_ARCH | NEON_CHECK_CC))
20611 return;
20612
20613 enum neon_shape rs;
20614 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20615 rs = neon_select_shape (NS_QQ, NS_NULL);
20616 else
20617 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20618
20619 struct neon_type_el et = neon_check_type (2, rs,
20620 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
20621 neon_two_same (neon_quad (rs), 1, et.size);
20622 }
20623
20624 static void
20625 do_neon_cnt (void)
20626 {
20627 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20628 struct neon_type_el et = neon_check_type (2, rs,
20629 N_EQK | N_INT, N_8 | N_KEY);
20630 neon_two_same (neon_quad (rs), 1, et.size);
20631 }
20632
20633 static void
20634 do_neon_swp (void)
20635 {
20636 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
20637 neon_two_same (neon_quad (rs), 1, -1);
20638 }
20639
20640 static void
20641 do_neon_tbl_tbx (void)
20642 {
20643 unsigned listlenbits;
20644 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
20645
20646 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
20647 {
20648 first_error (_("bad list length for table lookup"));
20649 return;
20650 }
20651
20652 listlenbits = inst.operands[1].imm - 1;
20653 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
20654 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
20655 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
20656 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
20657 inst.instruction |= LOW4 (inst.operands[2].reg);
20658 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
20659 inst.instruction |= listlenbits << 8;
20660
20661 neon_dp_fixup (&inst);
20662 }
20663
20664 static void
20665 do_neon_ldm_stm (void)
20666 {
20667 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd)
20668 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext),
20669 _(BAD_FPU));
20670 /* P, U and L bits are part of bitmask. */
20671 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
20672 unsigned offsetbits = inst.operands[1].imm * 2;
20673
20674 if (inst.operands[1].issingle)
20675 {
20676 do_vfp_nsyn_ldm_stm (is_dbmode);
20677 return;
20678 }
20679
20680 constraint (is_dbmode && !inst.operands[0].writeback,
20681 _("writeback (!) must be used for VLDMDB and VSTMDB"));
20682
20683 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
20684 _("register list must contain at least 1 and at most 16 "
20685 "registers"));
20686
20687 inst.instruction |= inst.operands[0].reg << 16;
20688 inst.instruction |= inst.operands[0].writeback << 21;
20689 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
20690 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
20691
20692 inst.instruction |= offsetbits;
20693
20694 do_vfp_cond_or_thumb ();
20695 }
20696
20697 static void
20698 do_vfp_nsyn_pop (void)
20699 {
20700 nsyn_insert_sp ();
20701 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)) {
20702 return do_vfp_nsyn_opcode ("vldm");
20703 }
20704
20705 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd),
20706 _(BAD_FPU));
20707
20708 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
20709 _("register list must contain at least 1 and at most 16 "
20710 "registers"));
20711
20712 if (inst.operands[1].issingle)
20713 do_vfp_nsyn_opcode ("fldmias");
20714 else
20715 do_vfp_nsyn_opcode ("fldmiad");
20716 }
20717
20718 static void
20719 do_vfp_nsyn_push (void)
20720 {
20721 nsyn_insert_sp ();
20722 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)) {
20723 return do_vfp_nsyn_opcode ("vstmdb");
20724 }
20725
20726 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1xd),
20727 _(BAD_FPU));
20728
20729 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
20730 _("register list must contain at least 1 and at most 16 "
20731 "registers"));
20732
20733 if (inst.operands[1].issingle)
20734 do_vfp_nsyn_opcode ("fstmdbs");
20735 else
20736 do_vfp_nsyn_opcode ("fstmdbd");
20737 }
20738
20739
20740 static void
20741 do_neon_ldr_str (void)
20742 {
20743 int is_ldr = (inst.instruction & (1 << 20)) != 0;
20744
20745 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
20746 And is UNPREDICTABLE in thumb mode. */
20747 if (!is_ldr
20748 && inst.operands[1].reg == REG_PC
20749 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
20750 {
20751 if (thumb_mode)
20752 inst.error = _("Use of PC here is UNPREDICTABLE");
20753 else if (warn_on_deprecated)
20754 as_tsktsk (_("Use of PC here is deprecated"));
20755 }
20756
20757 if (inst.operands[0].issingle)
20758 {
20759 if (is_ldr)
20760 do_vfp_nsyn_opcode ("flds");
20761 else
20762 do_vfp_nsyn_opcode ("fsts");
20763
20764 /* ARMv8.2 vldr.16/vstr.16 instruction. */
20765 if (inst.vectype.el[0].size == 16)
20766 do_scalar_fp16_v82_encode ();
20767 }
20768 else
20769 {
20770 if (is_ldr)
20771 do_vfp_nsyn_opcode ("fldd");
20772 else
20773 do_vfp_nsyn_opcode ("fstd");
20774 }
20775 }
20776
20777 static void
20778 do_t_vldr_vstr_sysreg (void)
20779 {
20780 int fp_vldr_bitno = 20, sysreg_vldr_bitno = 20;
20781 bfd_boolean is_vldr = ((inst.instruction & (1 << fp_vldr_bitno)) != 0);
20782
20783 /* Use of PC is UNPREDICTABLE. */
20784 if (inst.operands[1].reg == REG_PC)
20785 inst.error = _("Use of PC here is UNPREDICTABLE");
20786
20787 if (inst.operands[1].immisreg)
20788 inst.error = _("instruction does not accept register index");
20789
20790 if (!inst.operands[1].isreg)
20791 inst.error = _("instruction does not accept PC-relative addressing");
20792
20793 if (abs (inst.operands[1].imm) >= (1 << 7))
20794 inst.error = _("immediate value out of range");
20795
20796 inst.instruction = 0xec000f80;
20797 if (is_vldr)
20798 inst.instruction |= 1 << sysreg_vldr_bitno;
20799 encode_arm_cp_address (1, TRUE, FALSE, BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM);
20800 inst.instruction |= (inst.operands[0].imm & 0x7) << 13;
20801 inst.instruction |= (inst.operands[0].imm & 0x8) << 19;
20802 }
20803
20804 static void
20805 do_vldr_vstr (void)
20806 {
20807 bfd_boolean sysreg_op = !inst.operands[0].isreg;
20808
20809 /* VLDR/VSTR (System Register). */
20810 if (sysreg_op)
20811 {
20812 if (!mark_feature_used (&arm_ext_v8_1m_main))
20813 as_bad (_("Instruction not permitted on this architecture"));
20814
20815 do_t_vldr_vstr_sysreg ();
20816 }
20817 /* VLDR/VSTR. */
20818 else
20819 {
20820 if (!mark_feature_used (&fpu_vfp_ext_v1xd)
20821 && !ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
20822 as_bad (_("Instruction not permitted on this architecture"));
20823 do_neon_ldr_str ();
20824 }
20825 }
20826
20827 /* "interleave" version also handles non-interleaving register VLD1/VST1
20828 instructions. */
20829
20830 static void
20831 do_neon_ld_st_interleave (void)
20832 {
20833 struct neon_type_el et = neon_check_type (1, NS_NULL,
20834 N_8 | N_16 | N_32 | N_64);
20835 unsigned alignbits = 0;
20836 unsigned idx;
20837 /* The bits in this table go:
20838 0: register stride of one (0) or two (1)
20839 1,2: register list length, minus one (1, 2, 3, 4).
20840 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
20841 We use -1 for invalid entries. */
20842 const int typetable[] =
20843 {
20844 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
20845 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
20846 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
20847 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
20848 };
20849 int typebits;
20850
20851 if (et.type == NT_invtype)
20852 return;
20853
20854 if (inst.operands[1].immisalign)
20855 switch (inst.operands[1].imm >> 8)
20856 {
20857 case 64: alignbits = 1; break;
20858 case 128:
20859 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
20860 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
20861 goto bad_alignment;
20862 alignbits = 2;
20863 break;
20864 case 256:
20865 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
20866 goto bad_alignment;
20867 alignbits = 3;
20868 break;
20869 default:
20870 bad_alignment:
20871 first_error (_("bad alignment"));
20872 return;
20873 }
20874
20875 inst.instruction |= alignbits << 4;
20876 inst.instruction |= neon_logbits (et.size) << 6;
20877
20878 /* Bits [4:6] of the immediate in a list specifier encode register stride
20879 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
20880 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
20881 up the right value for "type" in a table based on this value and the given
20882 list style, then stick it back. */
20883 idx = ((inst.operands[0].imm >> 4) & 7)
20884 | (((inst.instruction >> 8) & 3) << 3);
20885
20886 typebits = typetable[idx];
20887
20888 constraint (typebits == -1, _("bad list type for instruction"));
20889 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
20890 BAD_EL_TYPE);
20891
20892 inst.instruction &= ~0xf00;
20893 inst.instruction |= typebits << 8;
20894 }
20895
20896 /* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
20897 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
20898 otherwise. The variable arguments are a list of pairs of legal (size, align)
20899 values, terminated with -1. */
20900
20901 static int
20902 neon_alignment_bit (int size, int align, int *do_alignment, ...)
20903 {
20904 va_list ap;
20905 int result = FAIL, thissize, thisalign;
20906
20907 if (!inst.operands[1].immisalign)
20908 {
20909 *do_alignment = 0;
20910 return SUCCESS;
20911 }
20912
20913 va_start (ap, do_alignment);
20914
20915 do
20916 {
20917 thissize = va_arg (ap, int);
20918 if (thissize == -1)
20919 break;
20920 thisalign = va_arg (ap, int);
20921
20922 if (size == thissize && align == thisalign)
20923 result = SUCCESS;
20924 }
20925 while (result != SUCCESS);
20926
20927 va_end (ap);
20928
20929 if (result == SUCCESS)
20930 *do_alignment = 1;
20931 else
20932 first_error (_("unsupported alignment for instruction"));
20933
20934 return result;
20935 }
20936
20937 static void
20938 do_neon_ld_st_lane (void)
20939 {
20940 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
20941 int align_good, do_alignment = 0;
20942 int logsize = neon_logbits (et.size);
20943 int align = inst.operands[1].imm >> 8;
20944 int n = (inst.instruction >> 8) & 3;
20945 int max_el = 64 / et.size;
20946
20947 if (et.type == NT_invtype)
20948 return;
20949
20950 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
20951 _("bad list length"));
20952 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
20953 _("scalar index out of range"));
20954 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
20955 && et.size == 8,
20956 _("stride of 2 unavailable when element size is 8"));
20957
20958 switch (n)
20959 {
20960 case 0: /* VLD1 / VST1. */
20961 align_good = neon_alignment_bit (et.size, align, &do_alignment, 16, 16,
20962 32, 32, -1);
20963 if (align_good == FAIL)
20964 return;
20965 if (do_alignment)
20966 {
20967 unsigned alignbits = 0;
20968 switch (et.size)
20969 {
20970 case 16: alignbits = 0x1; break;
20971 case 32: alignbits = 0x3; break;
20972 default: ;
20973 }
20974 inst.instruction |= alignbits << 4;
20975 }
20976 break;
20977
20978 case 1: /* VLD2 / VST2. */
20979 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 16,
20980 16, 32, 32, 64, -1);
20981 if (align_good == FAIL)
20982 return;
20983 if (do_alignment)
20984 inst.instruction |= 1 << 4;
20985 break;
20986
20987 case 2: /* VLD3 / VST3. */
20988 constraint (inst.operands[1].immisalign,
20989 _("can't use alignment with this instruction"));
20990 break;
20991
20992 case 3: /* VLD4 / VST4. */
20993 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
20994 16, 64, 32, 64, 32, 128, -1);
20995 if (align_good == FAIL)
20996 return;
20997 if (do_alignment)
20998 {
20999 unsigned alignbits = 0;
21000 switch (et.size)
21001 {
21002 case 8: alignbits = 0x1; break;
21003 case 16: alignbits = 0x1; break;
21004 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
21005 default: ;
21006 }
21007 inst.instruction |= alignbits << 4;
21008 }
21009 break;
21010
21011 default: ;
21012 }
21013
21014 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
21015 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
21016 inst.instruction |= 1 << (4 + logsize);
21017
21018 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
21019 inst.instruction |= logsize << 10;
21020 }
21021
21022 /* Encode single n-element structure to all lanes VLD<n> instructions. */
21023
21024 static void
21025 do_neon_ld_dup (void)
21026 {
21027 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
21028 int align_good, do_alignment = 0;
21029
21030 if (et.type == NT_invtype)
21031 return;
21032
21033 switch ((inst.instruction >> 8) & 3)
21034 {
21035 case 0: /* VLD1. */
21036 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
21037 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
21038 &do_alignment, 16, 16, 32, 32, -1);
21039 if (align_good == FAIL)
21040 return;
21041 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
21042 {
21043 case 1: break;
21044 case 2: inst.instruction |= 1 << 5; break;
21045 default: first_error (_("bad list length")); return;
21046 }
21047 inst.instruction |= neon_logbits (et.size) << 6;
21048 break;
21049
21050 case 1: /* VLD2. */
21051 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
21052 &do_alignment, 8, 16, 16, 32, 32, 64,
21053 -1);
21054 if (align_good == FAIL)
21055 return;
21056 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
21057 _("bad list length"));
21058 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
21059 inst.instruction |= 1 << 5;
21060 inst.instruction |= neon_logbits (et.size) << 6;
21061 break;
21062
21063 case 2: /* VLD3. */
21064 constraint (inst.operands[1].immisalign,
21065 _("can't use alignment with this instruction"));
21066 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
21067 _("bad list length"));
21068 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
21069 inst.instruction |= 1 << 5;
21070 inst.instruction |= neon_logbits (et.size) << 6;
21071 break;
21072
21073 case 3: /* VLD4. */
21074 {
21075 int align = inst.operands[1].imm >> 8;
21076 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
21077 16, 64, 32, 64, 32, 128, -1);
21078 if (align_good == FAIL)
21079 return;
21080 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
21081 _("bad list length"));
21082 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
21083 inst.instruction |= 1 << 5;
21084 if (et.size == 32 && align == 128)
21085 inst.instruction |= 0x3 << 6;
21086 else
21087 inst.instruction |= neon_logbits (et.size) << 6;
21088 }
21089 break;
21090
21091 default: ;
21092 }
21093
21094 inst.instruction |= do_alignment << 4;
21095 }
21096
21097 /* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
21098 apart from bits [11:4]. */
21099
21100 static void
21101 do_neon_ldx_stx (void)
21102 {
21103 if (inst.operands[1].isreg)
21104 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
21105
21106 switch (NEON_LANE (inst.operands[0].imm))
21107 {
21108 case NEON_INTERLEAVE_LANES:
21109 NEON_ENCODE (INTERLV, inst);
21110 do_neon_ld_st_interleave ();
21111 break;
21112
21113 case NEON_ALL_LANES:
21114 NEON_ENCODE (DUP, inst);
21115 if (inst.instruction == N_INV)
21116 {
21117 first_error ("only loads support such operands");
21118 break;
21119 }
21120 do_neon_ld_dup ();
21121 break;
21122
21123 default:
21124 NEON_ENCODE (LANE, inst);
21125 do_neon_ld_st_lane ();
21126 }
21127
21128 /* L bit comes from bit mask. */
21129 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21130 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21131 inst.instruction |= inst.operands[1].reg << 16;
21132
21133 if (inst.operands[1].postind)
21134 {
21135 int postreg = inst.operands[1].imm & 0xf;
21136 constraint (!inst.operands[1].immisreg,
21137 _("post-index must be a register"));
21138 constraint (postreg == 0xd || postreg == 0xf,
21139 _("bad register for post-index"));
21140 inst.instruction |= postreg;
21141 }
21142 else
21143 {
21144 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
21145 constraint (inst.relocs[0].exp.X_op != O_constant
21146 || inst.relocs[0].exp.X_add_number != 0,
21147 BAD_ADDR_MODE);
21148
21149 if (inst.operands[1].writeback)
21150 {
21151 inst.instruction |= 0xd;
21152 }
21153 else
21154 inst.instruction |= 0xf;
21155 }
21156
21157 if (thumb_mode)
21158 inst.instruction |= 0xf9000000;
21159 else
21160 inst.instruction |= 0xf4000000;
21161 }
21162
21163 /* FP v8. */
21164 static void
21165 do_vfp_nsyn_fpv8 (enum neon_shape rs)
21166 {
21167 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
21168 D register operands. */
21169 if (neon_shape_class[rs] == SC_DOUBLE)
21170 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
21171 _(BAD_FPU));
21172
21173 NEON_ENCODE (FPV8, inst);
21174
21175 if (rs == NS_FFF || rs == NS_HHH)
21176 {
21177 do_vfp_sp_dyadic ();
21178
21179 /* ARMv8.2 fp16 instruction. */
21180 if (rs == NS_HHH)
21181 do_scalar_fp16_v82_encode ();
21182 }
21183 else
21184 do_vfp_dp_rd_rn_rm ();
21185
21186 if (rs == NS_DDD)
21187 inst.instruction |= 0x100;
21188
21189 inst.instruction |= 0xf0000000;
21190 }
21191
21192 static void
21193 do_vsel (void)
21194 {
21195 set_pred_insn_type (OUTSIDE_PRED_INSN);
21196
21197 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
21198 first_error (_("invalid instruction shape"));
21199 }
21200
21201 static void
21202 do_vmaxnm (void)
21203 {
21204 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
21205 set_pred_insn_type (OUTSIDE_PRED_INSN);
21206
21207 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
21208 return;
21209
21210 if (!check_simd_pred_availability (TRUE, NEON_CHECK_CC | NEON_CHECK_ARCH8))
21211 return;
21212
21213 neon_dyadic_misc (NT_untyped, N_F_16_32, 0);
21214 }
21215
21216 static void
21217 do_vrint_1 (enum neon_cvt_mode mode)
21218 {
21219 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_QQ, NS_NULL);
21220 struct neon_type_el et;
21221
21222 if (rs == NS_NULL)
21223 return;
21224
21225 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
21226 D register operands. */
21227 if (neon_shape_class[rs] == SC_DOUBLE)
21228 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
21229 _(BAD_FPU));
21230
21231 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY
21232 | N_VFP);
21233 if (et.type != NT_invtype)
21234 {
21235 /* VFP encodings. */
21236 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
21237 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
21238 set_pred_insn_type (OUTSIDE_PRED_INSN);
21239
21240 NEON_ENCODE (FPV8, inst);
21241 if (rs == NS_FF || rs == NS_HH)
21242 do_vfp_sp_monadic ();
21243 else
21244 do_vfp_dp_rd_rm ();
21245
21246 switch (mode)
21247 {
21248 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
21249 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
21250 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
21251 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
21252 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
21253 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
21254 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
21255 default: abort ();
21256 }
21257
21258 inst.instruction |= (rs == NS_DD) << 8;
21259 do_vfp_cond_or_thumb ();
21260
21261 /* ARMv8.2 fp16 vrint instruction. */
21262 if (rs == NS_HH)
21263 do_scalar_fp16_v82_encode ();
21264 }
21265 else
21266 {
21267 /* Neon encodings (or something broken...). */
21268 inst.error = NULL;
21269 et = neon_check_type (2, rs, N_EQK, N_F_16_32 | N_KEY);
21270
21271 if (et.type == NT_invtype)
21272 return;
21273
21274 if (!check_simd_pred_availability (TRUE,
21275 NEON_CHECK_CC | NEON_CHECK_ARCH8))
21276 return;
21277
21278 NEON_ENCODE (FLOAT, inst);
21279
21280 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21281 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21282 inst.instruction |= LOW4 (inst.operands[1].reg);
21283 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
21284 inst.instruction |= neon_quad (rs) << 6;
21285 /* Mask off the original size bits and reencode them. */
21286 inst.instruction = ((inst.instruction & 0xfff3ffff)
21287 | neon_logbits (et.size) << 18);
21288
21289 switch (mode)
21290 {
21291 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
21292 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
21293 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
21294 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
21295 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
21296 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
21297 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
21298 default: abort ();
21299 }
21300
21301 if (thumb_mode)
21302 inst.instruction |= 0xfc000000;
21303 else
21304 inst.instruction |= 0xf0000000;
21305 }
21306 }
21307
21308 static void
21309 do_vrintx (void)
21310 {
21311 do_vrint_1 (neon_cvt_mode_x);
21312 }
21313
21314 static void
21315 do_vrintz (void)
21316 {
21317 do_vrint_1 (neon_cvt_mode_z);
21318 }
21319
21320 static void
21321 do_vrintr (void)
21322 {
21323 do_vrint_1 (neon_cvt_mode_r);
21324 }
21325
21326 static void
21327 do_vrinta (void)
21328 {
21329 do_vrint_1 (neon_cvt_mode_a);
21330 }
21331
21332 static void
21333 do_vrintn (void)
21334 {
21335 do_vrint_1 (neon_cvt_mode_n);
21336 }
21337
21338 static void
21339 do_vrintp (void)
21340 {
21341 do_vrint_1 (neon_cvt_mode_p);
21342 }
21343
21344 static void
21345 do_vrintm (void)
21346 {
21347 do_vrint_1 (neon_cvt_mode_m);
21348 }
21349
21350 static unsigned
21351 neon_scalar_for_vcmla (unsigned opnd, unsigned elsize)
21352 {
21353 unsigned regno = NEON_SCALAR_REG (opnd);
21354 unsigned elno = NEON_SCALAR_INDEX (opnd);
21355
21356 if (elsize == 16 && elno < 2 && regno < 16)
21357 return regno | (elno << 4);
21358 else if (elsize == 32 && elno == 0)
21359 return regno;
21360
21361 first_error (_("scalar out of range"));
21362 return 0;
21363 }
21364
21365 static void
21366 do_vcmla (void)
21367 {
21368 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext)
21369 && (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8)
21370 || !mark_feature_used (&arm_ext_v8_3)), (BAD_FPU));
21371 constraint (inst.relocs[0].exp.X_op != O_constant,
21372 _("expression too complex"));
21373 unsigned rot = inst.relocs[0].exp.X_add_number;
21374 constraint (rot != 0 && rot != 90 && rot != 180 && rot != 270,
21375 _("immediate out of range"));
21376 rot /= 90;
21377
21378 if (!check_simd_pred_availability (TRUE,
21379 NEON_CHECK_ARCH8 | NEON_CHECK_CC))
21380 return;
21381
21382 if (inst.operands[2].isscalar)
21383 {
21384 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
21385 first_error (_("invalid instruction shape"));
21386 enum neon_shape rs = neon_select_shape (NS_DDSI, NS_QQSI, NS_NULL);
21387 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
21388 N_KEY | N_F16 | N_F32).size;
21389 unsigned m = neon_scalar_for_vcmla (inst.operands[2].reg, size);
21390 inst.is_neon = 1;
21391 inst.instruction = 0xfe000800;
21392 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21393 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21394 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
21395 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
21396 inst.instruction |= LOW4 (m);
21397 inst.instruction |= HI1 (m) << 5;
21398 inst.instruction |= neon_quad (rs) << 6;
21399 inst.instruction |= rot << 20;
21400 inst.instruction |= (size == 32) << 23;
21401 }
21402 else
21403 {
21404 enum neon_shape rs;
21405 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext))
21406 rs = neon_select_shape (NS_QQQI, NS_NULL);
21407 else
21408 rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
21409
21410 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
21411 N_KEY | N_F16 | N_F32).size;
21412 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_fp_ext) && size == 32
21413 && (inst.operands[0].reg == inst.operands[1].reg
21414 || inst.operands[0].reg == inst.operands[2].reg))
21415 as_tsktsk (BAD_MVE_SRCDEST);
21416
21417 neon_three_same (neon_quad (rs), 0, -1);
21418 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
21419 inst.instruction |= 0xfc200800;
21420 inst.instruction |= rot << 23;
21421 inst.instruction |= (size == 32) << 20;
21422 }
21423 }
21424
21425 static void
21426 do_vcadd (void)
21427 {
21428 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext)
21429 && (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8)
21430 || !mark_feature_used (&arm_ext_v8_3)), (BAD_FPU));
21431 constraint (inst.relocs[0].exp.X_op != O_constant,
21432 _("expression too complex"));
21433
21434 unsigned rot = inst.relocs[0].exp.X_add_number;
21435 constraint (rot != 90 && rot != 270, _("immediate out of range"));
21436 enum neon_shape rs;
21437 struct neon_type_el et;
21438 if (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
21439 {
21440 rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
21441 et = neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_F16 | N_F32);
21442 }
21443 else
21444 {
21445 rs = neon_select_shape (NS_QQQI, NS_NULL);
21446 et = neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_F16 | N_F32 | N_I8
21447 | N_I16 | N_I32);
21448 if (et.size == 32 && inst.operands[0].reg == inst.operands[2].reg)
21449 as_tsktsk (_("Warning: 32-bit element size and same first and third "
21450 "operand makes instruction UNPREDICTABLE"));
21451 }
21452
21453 if (et.type == NT_invtype)
21454 return;
21455
21456 if (!check_simd_pred_availability (et.type == NT_float,
21457 NEON_CHECK_ARCH8 | NEON_CHECK_CC))
21458 return;
21459
21460 if (et.type == NT_float)
21461 {
21462 neon_three_same (neon_quad (rs), 0, -1);
21463 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
21464 inst.instruction |= 0xfc800800;
21465 inst.instruction |= (rot == 270) << 24;
21466 inst.instruction |= (et.size == 32) << 20;
21467 }
21468 else
21469 {
21470 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext), BAD_FPU);
21471 inst.instruction = 0xfe000f00;
21472 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
21473 inst.instruction |= neon_logbits (et.size) << 20;
21474 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
21475 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
21476 inst.instruction |= (rot == 270) << 12;
21477 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
21478 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
21479 inst.instruction |= LOW4 (inst.operands[2].reg);
21480 inst.is_neon = 1;
21481 }
21482 }
21483
21484 /* Dot Product instructions encoding support. */
21485
21486 static void
21487 do_neon_dotproduct (int unsigned_p)
21488 {
21489 enum neon_shape rs;
21490 unsigned scalar_oprd2 = 0;
21491 int high8;
21492
21493 if (inst.cond != COND_ALWAYS)
21494 as_warn (_("Dot Product instructions cannot be conditional, the behaviour "
21495 "is UNPREDICTABLE"));
21496
21497 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
21498 _(BAD_FPU));
21499
21500 /* Dot Product instructions are in three-same D/Q register format or the third
21501 operand can be a scalar index register. */
21502 if (inst.operands[2].isscalar)
21503 {
21504 scalar_oprd2 = neon_scalar_for_mul (inst.operands[2].reg, 32);
21505 high8 = 0xfe000000;
21506 rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
21507 }
21508 else
21509 {
21510 high8 = 0xfc000000;
21511 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
21512 }
21513
21514 if (unsigned_p)
21515 neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_U8);
21516 else
21517 neon_check_type (3, rs, N_EQK, N_EQK, N_KEY | N_S8);
21518
21519 /* The "U" bit in traditional Three Same encoding is fixed to 0 for Dot
21520 Product instruction, so we pass 0 as the "ubit" parameter. And the
21521 "Size" field are fixed to 0x2, so we pass 32 as the "size" parameter. */
21522 neon_three_same (neon_quad (rs), 0, 32);
21523
21524 /* Undo neon_dp_fixup. Dot Product instructions are using a slightly
21525 different NEON three-same encoding. */
21526 inst.instruction &= 0x00ffffff;
21527 inst.instruction |= high8;
21528 /* Encode 'U' bit which indicates signedness. */
21529 inst.instruction |= (unsigned_p ? 1 : 0) << 4;
21530 /* Re-encode operand2 if it's indexed scalar operand. What has been encoded
21531 from inst.operand[2].reg in neon_three_same is GAS's internal encoding, not
21532 the instruction encoding. */
21533 if (inst.operands[2].isscalar)
21534 {
21535 inst.instruction &= 0xffffffd0;
21536 inst.instruction |= LOW4 (scalar_oprd2);
21537 inst.instruction |= HI1 (scalar_oprd2) << 5;
21538 }
21539 }
21540
21541 /* Dot Product instructions for signed integer. */
21542
21543 static void
21544 do_neon_dotproduct_s (void)
21545 {
21546 return do_neon_dotproduct (0);
21547 }
21548
21549 /* Dot Product instructions for unsigned integer. */
21550
21551 static void
21552 do_neon_dotproduct_u (void)
21553 {
21554 return do_neon_dotproduct (1);
21555 }
21556
21557 static void
21558 do_vusdot (void)
21559 {
21560 enum neon_shape rs;
21561 set_pred_insn_type (OUTSIDE_PRED_INSN);
21562 if (inst.operands[2].isscalar)
21563 {
21564 rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
21565 neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_KEY);
21566
21567 inst.instruction |= (1 << 25);
21568 int index = inst.operands[2].reg & 0xf;
21569 constraint ((index != 1 && index != 0), _("index must be 0 or 1"));
21570 inst.operands[2].reg >>= 4;
21571 constraint (!(inst.operands[2].reg < 16),
21572 _("indexed register must be less than 16"));
21573 neon_three_args (rs == NS_QQS);
21574 inst.instruction |= (index << 5);
21575 }
21576 else
21577 {
21578 inst.instruction |= (1 << 21);
21579 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
21580 neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_KEY);
21581 neon_three_args (rs == NS_QQQ);
21582 }
21583 }
21584
21585 static void
21586 do_vsudot (void)
21587 {
21588 enum neon_shape rs;
21589 set_pred_insn_type (OUTSIDE_PRED_INSN);
21590 if (inst.operands[2].isscalar)
21591 {
21592 rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
21593 neon_check_type (3, rs, N_EQK, N_EQK, N_U8 | N_KEY);
21594
21595 inst.instruction |= (1 << 25);
21596 int index = inst.operands[2].reg & 0xf;
21597 constraint ((index != 1 && index != 0), _("index must be 0 or 1"));
21598 inst.operands[2].reg >>= 4;
21599 constraint (!(inst.operands[2].reg < 16),
21600 _("indexed register must be less than 16"));
21601 neon_three_args (rs == NS_QQS);
21602 inst.instruction |= (index << 5);
21603 }
21604 }
21605
21606 static void
21607 do_vsmmla (void)
21608 {
21609 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
21610 neon_check_type (3, rs, N_EQK, N_EQK, N_S8 | N_KEY);
21611
21612 set_pred_insn_type (OUTSIDE_PRED_INSN);
21613
21614 neon_three_args (1);
21615
21616 }
21617
21618 static void
21619 do_vummla (void)
21620 {
21621 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
21622 neon_check_type (3, rs, N_EQK, N_EQK, N_U8 | N_KEY);
21623
21624 set_pred_insn_type (OUTSIDE_PRED_INSN);
21625
21626 neon_three_args (1);
21627
21628 }
21629
21630 static void
21631 check_cde_operand (size_t index, int is_dual)
21632 {
21633 unsigned Rx = inst.operands[index].reg;
21634 bfd_boolean isvec = inst.operands[index].isvec;
21635 if (is_dual == 0 && thumb_mode)
21636 constraint (
21637 !((Rx <= 14 && Rx != 13) || (Rx == REG_PC && isvec)),
21638 _("Register must be r0-r14 except r13, or APSR_nzcv."));
21639 else
21640 constraint ( !((Rx <= 10 && Rx % 2 == 0 )),
21641 _("Register must be an even register between r0-r10."));
21642 }
21643
21644 static bfd_boolean
21645 cde_coproc_enabled (unsigned coproc)
21646 {
21647 switch (coproc)
21648 {
21649 case 0: return mark_feature_used (&arm_ext_cde0);
21650 case 1: return mark_feature_used (&arm_ext_cde1);
21651 case 2: return mark_feature_used (&arm_ext_cde2);
21652 case 3: return mark_feature_used (&arm_ext_cde3);
21653 case 4: return mark_feature_used (&arm_ext_cde4);
21654 case 5: return mark_feature_used (&arm_ext_cde5);
21655 case 6: return mark_feature_used (&arm_ext_cde6);
21656 case 7: return mark_feature_used (&arm_ext_cde7);
21657 default: return FALSE;
21658 }
21659 }
21660
21661 #define cde_coproc_pos 8
21662 static void
21663 cde_handle_coproc (void)
21664 {
21665 unsigned coproc = inst.operands[0].reg;
21666 constraint (coproc > 7, _("CDE Coprocessor must be in range 0-7"));
21667 constraint (!(cde_coproc_enabled (coproc)), BAD_CDE_COPROC);
21668 inst.instruction |= coproc << cde_coproc_pos;
21669 }
21670 #undef cde_coproc_pos
21671
21672 static void
21673 cxn_handle_predication (bfd_boolean is_accum)
21674 {
21675 if (is_accum && conditional_insn ())
21676 set_pred_insn_type (INSIDE_IT_INSN);
21677 else if (conditional_insn ())
21678 /* conditional_insn essentially checks for a suffix, not whether the
21679 instruction is inside an IT block or not.
21680 The non-accumulator versions should not have suffixes. */
21681 inst.error = BAD_SYNTAX;
21682 else
21683 set_pred_insn_type (OUTSIDE_PRED_INSN);
21684 }
21685
21686 static void
21687 do_custom_instruction_1 (int is_dual, bfd_boolean is_accum)
21688 {
21689
21690 constraint (!mark_feature_used (&arm_ext_cde), _(BAD_CDE));
21691
21692 unsigned imm, Rd;
21693
21694 Rd = inst.operands[1].reg;
21695 check_cde_operand (1, is_dual);
21696
21697 if (is_dual == 1)
21698 {
21699 constraint (inst.operands[2].reg != Rd + 1,
21700 _("cx1d requires consecutive destination registers."));
21701 imm = inst.operands[3].imm;
21702 }
21703 else if (is_dual == 0)
21704 imm = inst.operands[2].imm;
21705 else
21706 abort ();
21707
21708 inst.instruction |= Rd << 12;
21709 inst.instruction |= (imm & 0x1F80) << 9;
21710 inst.instruction |= (imm & 0x0040) << 1;
21711 inst.instruction |= (imm & 0x003f);
21712
21713 cde_handle_coproc ();
21714 cxn_handle_predication (is_accum);
21715 }
21716
21717 static void
21718 do_custom_instruction_2 (int is_dual, bfd_boolean is_accum)
21719 {
21720
21721 constraint (!mark_feature_used (&arm_ext_cde), _(BAD_CDE));
21722
21723 unsigned imm, Rd, Rn;
21724
21725 Rd = inst.operands[1].reg;
21726
21727 if (is_dual == 1)
21728 {
21729 constraint (inst.operands[2].reg != Rd + 1,
21730 _("cx2d requires consecutive destination registers."));
21731 imm = inst.operands[4].imm;
21732 Rn = inst.operands[3].reg;
21733 }
21734 else if (is_dual == 0)
21735 {
21736 imm = inst.operands[3].imm;
21737 Rn = inst.operands[2].reg;
21738 }
21739 else
21740 abort ();
21741
21742 check_cde_operand (2 + is_dual, /* is_dual = */0);
21743 check_cde_operand (1, is_dual);
21744
21745 inst.instruction |= Rd << 12;
21746 inst.instruction |= Rn << 16;
21747
21748 inst.instruction |= (imm & 0x0380) << 13;
21749 inst.instruction |= (imm & 0x0040) << 1;
21750 inst.instruction |= (imm & 0x003f);
21751
21752 cde_handle_coproc ();
21753 cxn_handle_predication (is_accum);
21754 }
21755
21756 static void
21757 do_custom_instruction_3 (int is_dual, bfd_boolean is_accum)
21758 {
21759
21760 constraint (!mark_feature_used (&arm_ext_cde), _(BAD_CDE));
21761
21762 unsigned imm, Rd, Rn, Rm;
21763
21764 Rd = inst.operands[1].reg;
21765
21766 if (is_dual == 1)
21767 {
21768 constraint (inst.operands[2].reg != Rd + 1,
21769 _("cx3d requires consecutive destination registers."));
21770 imm = inst.operands[5].imm;
21771 Rn = inst.operands[3].reg;
21772 Rm = inst.operands[4].reg;
21773 }
21774 else if (is_dual == 0)
21775 {
21776 imm = inst.operands[4].imm;
21777 Rn = inst.operands[2].reg;
21778 Rm = inst.operands[3].reg;
21779 }
21780 else
21781 abort ();
21782
21783 check_cde_operand (1, is_dual);
21784 check_cde_operand (2 + is_dual, /* is_dual = */0);
21785 check_cde_operand (3 + is_dual, /* is_dual = */0);
21786
21787 inst.instruction |= Rd;
21788 inst.instruction |= Rn << 16;
21789 inst.instruction |= Rm << 12;
21790
21791 inst.instruction |= (imm & 0x0038) << 17;
21792 inst.instruction |= (imm & 0x0004) << 5;
21793 inst.instruction |= (imm & 0x0003) << 4;
21794
21795 cde_handle_coproc ();
21796 cxn_handle_predication (is_accum);
21797 }
21798
21799 static void
21800 do_cx1 (void)
21801 {
21802 return do_custom_instruction_1 (0, 0);
21803 }
21804
21805 static void
21806 do_cx1a (void)
21807 {
21808 return do_custom_instruction_1 (0, 1);
21809 }
21810
21811 static void
21812 do_cx1d (void)
21813 {
21814 return do_custom_instruction_1 (1, 0);
21815 }
21816
21817 static void
21818 do_cx1da (void)
21819 {
21820 return do_custom_instruction_1 (1, 1);
21821 }
21822
21823 static void
21824 do_cx2 (void)
21825 {
21826 return do_custom_instruction_2 (0, 0);
21827 }
21828
21829 static void
21830 do_cx2a (void)
21831 {
21832 return do_custom_instruction_2 (0, 1);
21833 }
21834
21835 static void
21836 do_cx2d (void)
21837 {
21838 return do_custom_instruction_2 (1, 0);
21839 }
21840
21841 static void
21842 do_cx2da (void)
21843 {
21844 return do_custom_instruction_2 (1, 1);
21845 }
21846
21847 static void
21848 do_cx3 (void)
21849 {
21850 return do_custom_instruction_3 (0, 0);
21851 }
21852
21853 static void
21854 do_cx3a (void)
21855 {
21856 return do_custom_instruction_3 (0, 1);
21857 }
21858
21859 static void
21860 do_cx3d (void)
21861 {
21862 return do_custom_instruction_3 (1, 0);
21863 }
21864
21865 static void
21866 do_cx3da (void)
21867 {
21868 return do_custom_instruction_3 (1, 1);
21869 }
21870
21871 static void
21872 vcx_assign_vec_d (unsigned regnum)
21873 {
21874 inst.instruction |= HI4 (regnum) << 12;
21875 inst.instruction |= LOW1 (regnum) << 22;
21876 }
21877
21878 static void
21879 vcx_assign_vec_m (unsigned regnum)
21880 {
21881 inst.instruction |= HI4 (regnum);
21882 inst.instruction |= LOW1 (regnum) << 5;
21883 }
21884
21885 static void
21886 vcx_assign_vec_n (unsigned regnum)
21887 {
21888 inst.instruction |= HI4 (regnum) << 16;
21889 inst.instruction |= LOW1 (regnum) << 7;
21890 }
21891
21892 enum vcx_reg_type {
21893 q_reg,
21894 d_reg,
21895 s_reg
21896 };
21897
21898 static enum vcx_reg_type
21899 vcx_get_reg_type (enum neon_shape ns)
21900 {
21901 gas_assert (ns == NS_PQI
21902 || ns == NS_PDI
21903 || ns == NS_PFI
21904 || ns == NS_PQQI
21905 || ns == NS_PDDI
21906 || ns == NS_PFFI
21907 || ns == NS_PQQQI
21908 || ns == NS_PDDDI
21909 || ns == NS_PFFFI);
21910 if (ns == NS_PQI || ns == NS_PQQI || ns == NS_PQQQI)
21911 return q_reg;
21912 if (ns == NS_PDI || ns == NS_PDDI || ns == NS_PDDDI)
21913 return d_reg;
21914 return s_reg;
21915 }
21916
21917 #define vcx_size_pos 24
21918 #define vcx_vec_pos 6
21919 static unsigned
21920 vcx_handle_shape (enum vcx_reg_type reg_type)
21921 {
21922 unsigned mult = 2;
21923 if (reg_type == q_reg)
21924 inst.instruction |= 1 << vcx_vec_pos;
21925 else if (reg_type == d_reg)
21926 inst.instruction |= 1 << vcx_size_pos;
21927 else
21928 mult = 1;
21929 /* NOTE:
21930 The documentation says that the Q registers are encoded as 2*N in the D:Vd
21931 bits (or equivalent for N and M registers).
21932 Similarly the D registers are encoded as N in D:Vd bits.
21933 While the S registers are encoded as N in the Vd:D bits.
21934
21935 Taking into account the maximum values of these registers we can see a
21936 nicer pattern for calculation:
21937 Q -> 7, D -> 15, S -> 31
21938
21939 If we say that everything is encoded in the Vd:D bits, then we can say
21940 that Q is encoded as 4*N, and D is encoded as 2*N.
21941 This way the bits will end up the same, and calculation is simpler.
21942 (calculation is now:
21943 1. Multiply by a number determined by the register letter.
21944 2. Encode resulting number in Vd:D bits.)
21945
21946 This is made a little more complicated by automatic handling of 'Q'
21947 registers elsewhere, which means the register number is already 2*N where
21948 N is the number the user wrote after the register letter.
21949 */
21950 return mult;
21951 }
21952 #undef vcx_vec_pos
21953 #undef vcx_size_pos
21954
21955 static void
21956 vcx_ensure_register_in_range (unsigned R, enum vcx_reg_type reg_type)
21957 {
21958 if (reg_type == q_reg)
21959 {
21960 gas_assert (R % 2 == 0);
21961 constraint (R >= 16, _("'q' register must be in range 0-7"));
21962 }
21963 else if (reg_type == d_reg)
21964 constraint (R >= 16, _("'d' register must be in range 0-15"));
21965 else
21966 constraint (R >= 32, _("'s' register must be in range 0-31"));
21967 }
21968
21969 static void (*vcx_assign_vec[3]) (unsigned) = {
21970 vcx_assign_vec_d,
21971 vcx_assign_vec_m,
21972 vcx_assign_vec_n
21973 };
21974
21975 static void
21976 vcx_handle_register_arguments (unsigned num_registers,
21977 enum vcx_reg_type reg_type)
21978 {
21979 unsigned R, i;
21980 unsigned reg_mult = vcx_handle_shape (reg_type);
21981 for (i = 0; i < num_registers; i++)
21982 {
21983 R = inst.operands[i+1].reg;
21984 vcx_ensure_register_in_range (R, reg_type);
21985 if (num_registers == 3 && i > 0)
21986 {
21987 if (i == 2)
21988 vcx_assign_vec[1] (R * reg_mult);
21989 else
21990 vcx_assign_vec[2] (R * reg_mult);
21991 continue;
21992 }
21993 vcx_assign_vec[i](R * reg_mult);
21994 }
21995 }
21996
21997 static void
21998 vcx_handle_insn_block (enum vcx_reg_type reg_type)
21999 {
22000 if (reg_type == q_reg)
22001 if (inst.cond > COND_ALWAYS)
22002 inst.pred_insn_type = INSIDE_VPT_INSN;
22003 else
22004 inst.pred_insn_type = MVE_OUTSIDE_PRED_INSN;
22005 else if (inst.cond == COND_ALWAYS)
22006 inst.pred_insn_type = OUTSIDE_PRED_INSN;
22007 else
22008 inst.error = BAD_NOT_IT;
22009 }
22010
22011 static void
22012 vcx_handle_common_checks (unsigned num_args, enum neon_shape rs)
22013 {
22014 constraint (!mark_feature_used (&arm_ext_cde), _(BAD_CDE));
22015 cde_handle_coproc ();
22016 enum vcx_reg_type reg_type = vcx_get_reg_type (rs);
22017 vcx_handle_register_arguments (num_args, reg_type);
22018 vcx_handle_insn_block (reg_type);
22019 if (reg_type == q_reg)
22020 constraint (!mark_feature_used (&mve_ext),
22021 _("vcx instructions with Q registers require MVE"));
22022 else
22023 constraint (!(ARM_FSET_CPU_SUBSET (armv8m_fp, cpu_variant)
22024 && mark_feature_used (&armv8m_fp))
22025 && !mark_feature_used (&mve_ext),
22026 _("vcx instructions with S or D registers require either MVE"
22027 " or Armv8-M floating point extension."));
22028 }
22029
22030 static void
22031 do_vcx1 (void)
22032 {
22033 enum neon_shape rs = neon_select_shape (NS_PQI, NS_PDI, NS_PFI, NS_NULL);
22034 vcx_handle_common_checks (1, rs);
22035
22036 unsigned imm = inst.operands[2].imm;
22037 inst.instruction |= (imm & 0x03f);
22038 inst.instruction |= (imm & 0x040) << 1;
22039 inst.instruction |= (imm & 0x780) << 9;
22040 if (rs != NS_PQI)
22041 constraint (imm >= 2048,
22042 _("vcx1 with S or D registers takes immediate within 0-2047"));
22043 inst.instruction |= (imm & 0x800) << 13;
22044 }
22045
22046 static void
22047 do_vcx2 (void)
22048 {
22049 enum neon_shape rs = neon_select_shape (NS_PQQI, NS_PDDI, NS_PFFI, NS_NULL);
22050 vcx_handle_common_checks (2, rs);
22051
22052 unsigned imm = inst.operands[3].imm;
22053 inst.instruction |= (imm & 0x01) << 4;
22054 inst.instruction |= (imm & 0x02) << 6;
22055 inst.instruction |= (imm & 0x3c) << 14;
22056 if (rs != NS_PQQI)
22057 constraint (imm >= 64,
22058 _("vcx2 with S or D registers takes immediate within 0-63"));
22059 inst.instruction |= (imm & 0x40) << 18;
22060 }
22061
22062 static void
22063 do_vcx3 (void)
22064 {
22065 enum neon_shape rs = neon_select_shape (NS_PQQQI, NS_PDDDI, NS_PFFFI, NS_NULL);
22066 vcx_handle_common_checks (3, rs);
22067
22068 unsigned imm = inst.operands[4].imm;
22069 inst.instruction |= (imm & 0x1) << 4;
22070 inst.instruction |= (imm & 0x6) << 19;
22071 if (rs != NS_PQQQI)
22072 constraint (imm >= 8,
22073 _("vcx2 with S or D registers takes immediate within 0-7"));
22074 inst.instruction |= (imm & 0x8) << 21;
22075 }
22076
22077 /* Crypto v1 instructions. */
22078 static void
22079 do_crypto_2op_1 (unsigned elttype, int op)
22080 {
22081 set_pred_insn_type (OUTSIDE_PRED_INSN);
22082
22083 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
22084 == NT_invtype)
22085 return;
22086
22087 inst.error = NULL;
22088
22089 NEON_ENCODE (INTEGER, inst);
22090 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
22091 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
22092 inst.instruction |= LOW4 (inst.operands[1].reg);
22093 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
22094 if (op != -1)
22095 inst.instruction |= op << 6;
22096
22097 if (thumb_mode)
22098 inst.instruction |= 0xfc000000;
22099 else
22100 inst.instruction |= 0xf0000000;
22101 }
22102
22103 static void
22104 do_crypto_3op_1 (int u, int op)
22105 {
22106 set_pred_insn_type (OUTSIDE_PRED_INSN);
22107
22108 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
22109 N_32 | N_UNT | N_KEY).type == NT_invtype)
22110 return;
22111
22112 inst.error = NULL;
22113
22114 NEON_ENCODE (INTEGER, inst);
22115 neon_three_same (1, u, 8 << op);
22116 }
22117
22118 static void
22119 do_aese (void)
22120 {
22121 do_crypto_2op_1 (N_8, 0);
22122 }
22123
22124 static void
22125 do_aesd (void)
22126 {
22127 do_crypto_2op_1 (N_8, 1);
22128 }
22129
22130 static void
22131 do_aesmc (void)
22132 {
22133 do_crypto_2op_1 (N_8, 2);
22134 }
22135
22136 static void
22137 do_aesimc (void)
22138 {
22139 do_crypto_2op_1 (N_8, 3);
22140 }
22141
22142 static void
22143 do_sha1c (void)
22144 {
22145 do_crypto_3op_1 (0, 0);
22146 }
22147
22148 static void
22149 do_sha1p (void)
22150 {
22151 do_crypto_3op_1 (0, 1);
22152 }
22153
22154 static void
22155 do_sha1m (void)
22156 {
22157 do_crypto_3op_1 (0, 2);
22158 }
22159
22160 static void
22161 do_sha1su0 (void)
22162 {
22163 do_crypto_3op_1 (0, 3);
22164 }
22165
22166 static void
22167 do_sha256h (void)
22168 {
22169 do_crypto_3op_1 (1, 0);
22170 }
22171
22172 static void
22173 do_sha256h2 (void)
22174 {
22175 do_crypto_3op_1 (1, 1);
22176 }
22177
22178 static void
22179 do_sha256su1 (void)
22180 {
22181 do_crypto_3op_1 (1, 2);
22182 }
22183
22184 static void
22185 do_sha1h (void)
22186 {
22187 do_crypto_2op_1 (N_32, -1);
22188 }
22189
22190 static void
22191 do_sha1su1 (void)
22192 {
22193 do_crypto_2op_1 (N_32, 0);
22194 }
22195
22196 static void
22197 do_sha256su0 (void)
22198 {
22199 do_crypto_2op_1 (N_32, 1);
22200 }
22201
22202 static void
22203 do_crc32_1 (unsigned int poly, unsigned int sz)
22204 {
22205 unsigned int Rd = inst.operands[0].reg;
22206 unsigned int Rn = inst.operands[1].reg;
22207 unsigned int Rm = inst.operands[2].reg;
22208
22209 set_pred_insn_type (OUTSIDE_PRED_INSN);
22210 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
22211 inst.instruction |= LOW4 (Rn) << 16;
22212 inst.instruction |= LOW4 (Rm);
22213 inst.instruction |= sz << (thumb_mode ? 4 : 21);
22214 inst.instruction |= poly << (thumb_mode ? 20 : 9);
22215
22216 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
22217 as_warn (UNPRED_REG ("r15"));
22218 }
22219
22220 static void
22221 do_crc32b (void)
22222 {
22223 do_crc32_1 (0, 0);
22224 }
22225
22226 static void
22227 do_crc32h (void)
22228 {
22229 do_crc32_1 (0, 1);
22230 }
22231
22232 static void
22233 do_crc32w (void)
22234 {
22235 do_crc32_1 (0, 2);
22236 }
22237
22238 static void
22239 do_crc32cb (void)
22240 {
22241 do_crc32_1 (1, 0);
22242 }
22243
22244 static void
22245 do_crc32ch (void)
22246 {
22247 do_crc32_1 (1, 1);
22248 }
22249
22250 static void
22251 do_crc32cw (void)
22252 {
22253 do_crc32_1 (1, 2);
22254 }
22255
22256 static void
22257 do_vjcvt (void)
22258 {
22259 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
22260 _(BAD_FPU));
22261 neon_check_type (2, NS_FD, N_S32, N_F64);
22262 do_vfp_sp_dp_cvt ();
22263 do_vfp_cond_or_thumb ();
22264 }
22265
22266 static void
22267 do_vdot (void)
22268 {
22269 enum neon_shape rs;
22270 constraint (!mark_feature_used (&fpu_neon_ext_armv8), _(BAD_FPU));
22271 set_pred_insn_type (OUTSIDE_PRED_INSN);
22272 if (inst.operands[2].isscalar)
22273 {
22274 rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
22275 neon_check_type (3, rs, N_EQK, N_EQK, N_BF16 | N_KEY);
22276
22277 inst.instruction |= (1 << 25);
22278 int index = inst.operands[2].reg & 0xf;
22279 constraint ((index != 1 && index != 0), _("index must be 0 or 1"));
22280 inst.operands[2].reg >>= 4;
22281 constraint (!(inst.operands[2].reg < 16),
22282 _("indexed register must be less than 16"));
22283 neon_three_args (rs == NS_QQS);
22284 inst.instruction |= (index << 5);
22285 }
22286 else
22287 {
22288 rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
22289 neon_check_type (3, rs, N_EQK, N_EQK, N_BF16 | N_KEY);
22290 neon_three_args (rs == NS_QQQ);
22291 }
22292 }
22293
22294 static void
22295 do_vmmla (void)
22296 {
22297 enum neon_shape rs = neon_select_shape (NS_QQQ, NS_NULL);
22298 neon_check_type (3, rs, N_EQK, N_EQK, N_BF16 | N_KEY);
22299
22300 constraint (!mark_feature_used (&fpu_neon_ext_armv8), _(BAD_FPU));
22301 set_pred_insn_type (OUTSIDE_PRED_INSN);
22302
22303 neon_three_args (1);
22304 }
22305
22306 \f
22307 /* Overall per-instruction processing. */
22308
22309 /* We need to be able to fix up arbitrary expressions in some statements.
22310 This is so that we can handle symbols that are an arbitrary distance from
22311 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
22312 which returns part of an address in a form which will be valid for
22313 a data instruction. We do this by pushing the expression into a symbol
22314 in the expr_section, and creating a fix for that. */
22315
22316 static void
22317 fix_new_arm (fragS * frag,
22318 int where,
22319 short int size,
22320 expressionS * exp,
22321 int pc_rel,
22322 int reloc)
22323 {
22324 fixS * new_fix;
22325
22326 switch (exp->X_op)
22327 {
22328 case O_constant:
22329 if (pc_rel)
22330 {
22331 /* Create an absolute valued symbol, so we have something to
22332 refer to in the object file. Unfortunately for us, gas's
22333 generic expression parsing will already have folded out
22334 any use of .set foo/.type foo %function that may have
22335 been used to set type information of the target location,
22336 that's being specified symbolically. We have to presume
22337 the user knows what they are doing. */
22338 char name[16 + 8];
22339 symbolS *symbol;
22340
22341 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
22342
22343 symbol = symbol_find_or_make (name);
22344 S_SET_SEGMENT (symbol, absolute_section);
22345 symbol_set_frag (symbol, &zero_address_frag);
22346 S_SET_VALUE (symbol, exp->X_add_number);
22347 exp->X_op = O_symbol;
22348 exp->X_add_symbol = symbol;
22349 exp->X_add_number = 0;
22350 }
22351 /* FALLTHROUGH */
22352 case O_symbol:
22353 case O_add:
22354 case O_subtract:
22355 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
22356 (enum bfd_reloc_code_real) reloc);
22357 break;
22358
22359 default:
22360 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
22361 pc_rel, (enum bfd_reloc_code_real) reloc);
22362 break;
22363 }
22364
22365 /* Mark whether the fix is to a THUMB instruction, or an ARM
22366 instruction. */
22367 new_fix->tc_fix_data = thumb_mode;
22368 }
22369
22370 /* Create a frg for an instruction requiring relaxation. */
22371 static void
22372 output_relax_insn (void)
22373 {
22374 char * to;
22375 symbolS *sym;
22376 int offset;
22377
22378 /* The size of the instruction is unknown, so tie the debug info to the
22379 start of the instruction. */
22380 dwarf2_emit_insn (0);
22381
22382 switch (inst.relocs[0].exp.X_op)
22383 {
22384 case O_symbol:
22385 sym = inst.relocs[0].exp.X_add_symbol;
22386 offset = inst.relocs[0].exp.X_add_number;
22387 break;
22388 case O_constant:
22389 sym = NULL;
22390 offset = inst.relocs[0].exp.X_add_number;
22391 break;
22392 default:
22393 sym = make_expr_symbol (&inst.relocs[0].exp);
22394 offset = 0;
22395 break;
22396 }
22397 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
22398 inst.relax, sym, offset, NULL/*offset, opcode*/);
22399 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
22400 }
22401
22402 /* Write a 32-bit thumb instruction to buf. */
22403 static void
22404 put_thumb32_insn (char * buf, unsigned long insn)
22405 {
22406 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
22407 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
22408 }
22409
22410 static void
22411 output_inst (const char * str)
22412 {
22413 char * to = NULL;
22414
22415 if (inst.error)
22416 {
22417 as_bad ("%s -- `%s'", inst.error, str);
22418 return;
22419 }
22420 if (inst.relax)
22421 {
22422 output_relax_insn ();
22423 return;
22424 }
22425 if (inst.size == 0)
22426 return;
22427
22428 to = frag_more (inst.size);
22429 /* PR 9814: Record the thumb mode into the current frag so that we know
22430 what type of NOP padding to use, if necessary. We override any previous
22431 setting so that if the mode has changed then the NOPS that we use will
22432 match the encoding of the last instruction in the frag. */
22433 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
22434
22435 if (thumb_mode && (inst.size > THUMB_SIZE))
22436 {
22437 gas_assert (inst.size == (2 * THUMB_SIZE));
22438 put_thumb32_insn (to, inst.instruction);
22439 }
22440 else if (inst.size > INSN_SIZE)
22441 {
22442 gas_assert (inst.size == (2 * INSN_SIZE));
22443 md_number_to_chars (to, inst.instruction, INSN_SIZE);
22444 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
22445 }
22446 else
22447 md_number_to_chars (to, inst.instruction, inst.size);
22448
22449 int r;
22450 for (r = 0; r < ARM_IT_MAX_RELOCS; r++)
22451 {
22452 if (inst.relocs[r].type != BFD_RELOC_UNUSED)
22453 fix_new_arm (frag_now, to - frag_now->fr_literal,
22454 inst.size, & inst.relocs[r].exp, inst.relocs[r].pc_rel,
22455 inst.relocs[r].type);
22456 }
22457
22458 dwarf2_emit_insn (inst.size);
22459 }
22460
22461 static char *
22462 output_it_inst (int cond, int mask, char * to)
22463 {
22464 unsigned long instruction = 0xbf00;
22465
22466 mask &= 0xf;
22467 instruction |= mask;
22468 instruction |= cond << 4;
22469
22470 if (to == NULL)
22471 {
22472 to = frag_more (2);
22473 #ifdef OBJ_ELF
22474 dwarf2_emit_insn (2);
22475 #endif
22476 }
22477
22478 md_number_to_chars (to, instruction, 2);
22479
22480 return to;
22481 }
22482
22483 /* Tag values used in struct asm_opcode's tag field. */
22484 enum opcode_tag
22485 {
22486 OT_unconditional, /* Instruction cannot be conditionalized.
22487 The ARM condition field is still 0xE. */
22488 OT_unconditionalF, /* Instruction cannot be conditionalized
22489 and carries 0xF in its ARM condition field. */
22490 OT_csuffix, /* Instruction takes a conditional suffix. */
22491 OT_csuffixF, /* Some forms of the instruction take a scalar
22492 conditional suffix, others place 0xF where the
22493 condition field would be, others take a vector
22494 conditional suffix. */
22495 OT_cinfix3, /* Instruction takes a conditional infix,
22496 beginning at character index 3. (In
22497 unified mode, it becomes a suffix.) */
22498 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
22499 tsts, cmps, cmns, and teqs. */
22500 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
22501 character index 3, even in unified mode. Used for
22502 legacy instructions where suffix and infix forms
22503 may be ambiguous. */
22504 OT_csuf_or_in3, /* Instruction takes either a conditional
22505 suffix or an infix at character index 3. */
22506 OT_odd_infix_unc, /* This is the unconditional variant of an
22507 instruction that takes a conditional infix
22508 at an unusual position. In unified mode,
22509 this variant will accept a suffix. */
22510 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
22511 are the conditional variants of instructions that
22512 take conditional infixes in unusual positions.
22513 The infix appears at character index
22514 (tag - OT_odd_infix_0). These are not accepted
22515 in unified mode. */
22516 };
22517
22518 /* Subroutine of md_assemble, responsible for looking up the primary
22519 opcode from the mnemonic the user wrote. STR points to the
22520 beginning of the mnemonic.
22521
22522 This is not simply a hash table lookup, because of conditional
22523 variants. Most instructions have conditional variants, which are
22524 expressed with a _conditional affix_ to the mnemonic. If we were
22525 to encode each conditional variant as a literal string in the opcode
22526 table, it would have approximately 20,000 entries.
22527
22528 Most mnemonics take this affix as a suffix, and in unified syntax,
22529 'most' is upgraded to 'all'. However, in the divided syntax, some
22530 instructions take the affix as an infix, notably the s-variants of
22531 the arithmetic instructions. Of those instructions, all but six
22532 have the infix appear after the third character of the mnemonic.
22533
22534 Accordingly, the algorithm for looking up primary opcodes given
22535 an identifier is:
22536
22537 1. Look up the identifier in the opcode table.
22538 If we find a match, go to step U.
22539
22540 2. Look up the last two characters of the identifier in the
22541 conditions table. If we find a match, look up the first N-2
22542 characters of the identifier in the opcode table. If we
22543 find a match, go to step CE.
22544
22545 3. Look up the fourth and fifth characters of the identifier in
22546 the conditions table. If we find a match, extract those
22547 characters from the identifier, and look up the remaining
22548 characters in the opcode table. If we find a match, go
22549 to step CM.
22550
22551 4. Fail.
22552
22553 U. Examine the tag field of the opcode structure, in case this is
22554 one of the six instructions with its conditional infix in an
22555 unusual place. If it is, the tag tells us where to find the
22556 infix; look it up in the conditions table and set inst.cond
22557 accordingly. Otherwise, this is an unconditional instruction.
22558 Again set inst.cond accordingly. Return the opcode structure.
22559
22560 CE. Examine the tag field to make sure this is an instruction that
22561 should receive a conditional suffix. If it is not, fail.
22562 Otherwise, set inst.cond from the suffix we already looked up,
22563 and return the opcode structure.
22564
22565 CM. Examine the tag field to make sure this is an instruction that
22566 should receive a conditional infix after the third character.
22567 If it is not, fail. Otherwise, undo the edits to the current
22568 line of input and proceed as for case CE. */
22569
22570 static const struct asm_opcode *
22571 opcode_lookup (char **str)
22572 {
22573 char *end, *base;
22574 char *affix;
22575 const struct asm_opcode *opcode;
22576 const struct asm_cond *cond;
22577 char save[2];
22578
22579 /* Scan up to the end of the mnemonic, which must end in white space,
22580 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
22581 for (base = end = *str; *end != '\0'; end++)
22582 if (*end == ' ' || *end == '.')
22583 break;
22584
22585 if (end == base)
22586 return NULL;
22587
22588 /* Handle a possible width suffix and/or Neon type suffix. */
22589 if (end[0] == '.')
22590 {
22591 int offset = 2;
22592
22593 /* The .w and .n suffixes are only valid if the unified syntax is in
22594 use. */
22595 if (unified_syntax && end[1] == 'w')
22596 inst.size_req = 4;
22597 else if (unified_syntax && end[1] == 'n')
22598 inst.size_req = 2;
22599 else
22600 offset = 0;
22601
22602 inst.vectype.elems = 0;
22603
22604 *str = end + offset;
22605
22606 if (end[offset] == '.')
22607 {
22608 /* See if we have a Neon type suffix (possible in either unified or
22609 non-unified ARM syntax mode). */
22610 if (parse_neon_type (&inst.vectype, str) == FAIL)
22611 return NULL;
22612 }
22613 else if (end[offset] != '\0' && end[offset] != ' ')
22614 return NULL;
22615 }
22616 else
22617 *str = end;
22618
22619 /* Look for unaffixed or special-case affixed mnemonic. */
22620 opcode = (const struct asm_opcode *) str_hash_find_n (arm_ops_hsh, base,
22621 end - base);
22622 cond = NULL;
22623 if (opcode)
22624 {
22625 /* step U */
22626 if (opcode->tag < OT_odd_infix_0)
22627 {
22628 inst.cond = COND_ALWAYS;
22629 return opcode;
22630 }
22631
22632 if (warn_on_deprecated && unified_syntax)
22633 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
22634 affix = base + (opcode->tag - OT_odd_infix_0);
22635 cond = (const struct asm_cond *) str_hash_find_n (arm_cond_hsh, affix, 2);
22636 gas_assert (cond);
22637
22638 inst.cond = cond->value;
22639 return opcode;
22640 }
22641 if (ARM_CPU_HAS_FEATURE (cpu_variant, mve_ext))
22642 {
22643 /* Cannot have a conditional suffix on a mnemonic of less than a character.
22644 */
22645 if (end - base < 2)
22646 return NULL;
22647 affix = end - 1;
22648 cond = (const struct asm_cond *) str_hash_find_n (arm_vcond_hsh, affix, 1);
22649 opcode = (const struct asm_opcode *) str_hash_find_n (arm_ops_hsh, base,
22650 affix - base);
22651 /* If this opcode can not be vector predicated then don't accept it with a
22652 vector predication code. */
22653 if (opcode && !opcode->mayBeVecPred)
22654 opcode = NULL;
22655 }
22656 if (!opcode || !cond)
22657 {
22658 /* Cannot have a conditional suffix on a mnemonic of less than two
22659 characters. */
22660 if (end - base < 3)
22661 return NULL;
22662
22663 /* Look for suffixed mnemonic. */
22664 affix = end - 2;
22665 cond = (const struct asm_cond *) str_hash_find_n (arm_cond_hsh, affix, 2);
22666 opcode = (const struct asm_opcode *) str_hash_find_n (arm_ops_hsh, base,
22667 affix - base);
22668 }
22669
22670 if (opcode && cond)
22671 {
22672 /* step CE */
22673 switch (opcode->tag)
22674 {
22675 case OT_cinfix3_legacy:
22676 /* Ignore conditional suffixes matched on infix only mnemonics. */
22677 break;
22678
22679 case OT_cinfix3:
22680 case OT_cinfix3_deprecated:
22681 case OT_odd_infix_unc:
22682 if (!unified_syntax)
22683 return NULL;
22684 /* Fall through. */
22685
22686 case OT_csuffix:
22687 case OT_csuffixF:
22688 case OT_csuf_or_in3:
22689 inst.cond = cond->value;
22690 return opcode;
22691
22692 case OT_unconditional:
22693 case OT_unconditionalF:
22694 if (thumb_mode)
22695 inst.cond = cond->value;
22696 else
22697 {
22698 /* Delayed diagnostic. */
22699 inst.error = BAD_COND;
22700 inst.cond = COND_ALWAYS;
22701 }
22702 return opcode;
22703
22704 default:
22705 return NULL;
22706 }
22707 }
22708
22709 /* Cannot have a usual-position infix on a mnemonic of less than
22710 six characters (five would be a suffix). */
22711 if (end - base < 6)
22712 return NULL;
22713
22714 /* Look for infixed mnemonic in the usual position. */
22715 affix = base + 3;
22716 cond = (const struct asm_cond *) str_hash_find_n (arm_cond_hsh, affix, 2);
22717 if (!cond)
22718 return NULL;
22719
22720 memcpy (save, affix, 2);
22721 memmove (affix, affix + 2, (end - affix) - 2);
22722 opcode = (const struct asm_opcode *) str_hash_find_n (arm_ops_hsh, base,
22723 (end - base) - 2);
22724 memmove (affix + 2, affix, (end - affix) - 2);
22725 memcpy (affix, save, 2);
22726
22727 if (opcode
22728 && (opcode->tag == OT_cinfix3
22729 || opcode->tag == OT_cinfix3_deprecated
22730 || opcode->tag == OT_csuf_or_in3
22731 || opcode->tag == OT_cinfix3_legacy))
22732 {
22733 /* Step CM. */
22734 if (warn_on_deprecated && unified_syntax
22735 && (opcode->tag == OT_cinfix3
22736 || opcode->tag == OT_cinfix3_deprecated))
22737 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
22738
22739 inst.cond = cond->value;
22740 return opcode;
22741 }
22742
22743 return NULL;
22744 }
22745
22746 /* This function generates an initial IT instruction, leaving its block
22747 virtually open for the new instructions. Eventually,
22748 the mask will be updated by now_pred_add_mask () each time
22749 a new instruction needs to be included in the IT block.
22750 Finally, the block is closed with close_automatic_it_block ().
22751 The block closure can be requested either from md_assemble (),
22752 a tencode (), or due to a label hook. */
22753
22754 static void
22755 new_automatic_it_block (int cond)
22756 {
22757 now_pred.state = AUTOMATIC_PRED_BLOCK;
22758 now_pred.mask = 0x18;
22759 now_pred.cc = cond;
22760 now_pred.block_length = 1;
22761 mapping_state (MAP_THUMB);
22762 now_pred.insn = output_it_inst (cond, now_pred.mask, NULL);
22763 now_pred.warn_deprecated = FALSE;
22764 now_pred.insn_cond = TRUE;
22765 }
22766
22767 /* Close an automatic IT block.
22768 See comments in new_automatic_it_block (). */
22769
22770 static void
22771 close_automatic_it_block (void)
22772 {
22773 now_pred.mask = 0x10;
22774 now_pred.block_length = 0;
22775 }
22776
22777 /* Update the mask of the current automatically-generated IT
22778 instruction. See comments in new_automatic_it_block (). */
22779
22780 static void
22781 now_pred_add_mask (int cond)
22782 {
22783 #define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
22784 #define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
22785 | ((bitvalue) << (nbit)))
22786 const int resulting_bit = (cond & 1);
22787
22788 now_pred.mask &= 0xf;
22789 now_pred.mask = SET_BIT_VALUE (now_pred.mask,
22790 resulting_bit,
22791 (5 - now_pred.block_length));
22792 now_pred.mask = SET_BIT_VALUE (now_pred.mask,
22793 1,
22794 ((5 - now_pred.block_length) - 1));
22795 output_it_inst (now_pred.cc, now_pred.mask, now_pred.insn);
22796
22797 #undef CLEAR_BIT
22798 #undef SET_BIT_VALUE
22799 }
22800
22801 /* The IT blocks handling machinery is accessed through the these functions:
22802 it_fsm_pre_encode () from md_assemble ()
22803 set_pred_insn_type () optional, from the tencode functions
22804 set_pred_insn_type_last () ditto
22805 in_pred_block () ditto
22806 it_fsm_post_encode () from md_assemble ()
22807 force_automatic_it_block_close () from label handling functions
22808
22809 Rationale:
22810 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
22811 initializing the IT insn type with a generic initial value depending
22812 on the inst.condition.
22813 2) During the tencode function, two things may happen:
22814 a) The tencode function overrides the IT insn type by
22815 calling either set_pred_insn_type (type) or
22816 set_pred_insn_type_last ().
22817 b) The tencode function queries the IT block state by
22818 calling in_pred_block () (i.e. to determine narrow/not narrow mode).
22819
22820 Both set_pred_insn_type and in_pred_block run the internal FSM state
22821 handling function (handle_pred_state), because: a) setting the IT insn
22822 type may incur in an invalid state (exiting the function),
22823 and b) querying the state requires the FSM to be updated.
22824 Specifically we want to avoid creating an IT block for conditional
22825 branches, so it_fsm_pre_encode is actually a guess and we can't
22826 determine whether an IT block is required until the tencode () routine
22827 has decided what type of instruction this actually it.
22828 Because of this, if set_pred_insn_type and in_pred_block have to be
22829 used, set_pred_insn_type has to be called first.
22830
22831 set_pred_insn_type_last () is a wrapper of set_pred_insn_type (type),
22832 that determines the insn IT type depending on the inst.cond code.
22833 When a tencode () routine encodes an instruction that can be
22834 either outside an IT block, or, in the case of being inside, has to be
22835 the last one, set_pred_insn_type_last () will determine the proper
22836 IT instruction type based on the inst.cond code. Otherwise,
22837 set_pred_insn_type can be called for overriding that logic or
22838 for covering other cases.
22839
22840 Calling handle_pred_state () may not transition the IT block state to
22841 OUTSIDE_PRED_BLOCK immediately, since the (current) state could be
22842 still queried. Instead, if the FSM determines that the state should
22843 be transitioned to OUTSIDE_PRED_BLOCK, a flag is marked to be closed
22844 after the tencode () function: that's what it_fsm_post_encode () does.
22845
22846 Since in_pred_block () calls the state handling function to get an
22847 updated state, an error may occur (due to invalid insns combination).
22848 In that case, inst.error is set.
22849 Therefore, inst.error has to be checked after the execution of
22850 the tencode () routine.
22851
22852 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
22853 any pending state change (if any) that didn't take place in
22854 handle_pred_state () as explained above. */
22855
22856 static void
22857 it_fsm_pre_encode (void)
22858 {
22859 if (inst.cond != COND_ALWAYS)
22860 inst.pred_insn_type = INSIDE_IT_INSN;
22861 else
22862 inst.pred_insn_type = OUTSIDE_PRED_INSN;
22863
22864 now_pred.state_handled = 0;
22865 }
22866
22867 /* IT state FSM handling function. */
22868 /* MVE instructions and non-MVE instructions are handled differently because of
22869 the introduction of VPT blocks.
22870 Specifications say that any non-MVE instruction inside a VPT block is
22871 UNPREDICTABLE, with the exception of the BKPT instruction. Whereas most MVE
22872 instructions are deemed to be UNPREDICTABLE if inside an IT block. For the
22873 few exceptions we have MVE_UNPREDICABLE_INSN.
22874 The error messages provided depending on the different combinations possible
22875 are described in the cases below:
22876 For 'most' MVE instructions:
22877 1) In an IT block, with an IT code: syntax error
22878 2) In an IT block, with a VPT code: error: must be in a VPT block
22879 3) In an IT block, with no code: warning: UNPREDICTABLE
22880 4) In a VPT block, with an IT code: syntax error
22881 5) In a VPT block, with a VPT code: OK!
22882 6) In a VPT block, with no code: error: missing code
22883 7) Outside a pred block, with an IT code: error: syntax error
22884 8) Outside a pred block, with a VPT code: error: should be in a VPT block
22885 9) Outside a pred block, with no code: OK!
22886 For non-MVE instructions:
22887 10) In an IT block, with an IT code: OK!
22888 11) In an IT block, with a VPT code: syntax error
22889 12) In an IT block, with no code: error: missing code
22890 13) In a VPT block, with an IT code: error: should be in an IT block
22891 14) In a VPT block, with a VPT code: syntax error
22892 15) In a VPT block, with no code: UNPREDICTABLE
22893 16) Outside a pred block, with an IT code: error: should be in an IT block
22894 17) Outside a pred block, with a VPT code: syntax error
22895 18) Outside a pred block, with no code: OK!
22896 */
22897
22898
22899 static int
22900 handle_pred_state (void)
22901 {
22902 now_pred.state_handled = 1;
22903 now_pred.insn_cond = FALSE;
22904
22905 switch (now_pred.state)
22906 {
22907 case OUTSIDE_PRED_BLOCK:
22908 switch (inst.pred_insn_type)
22909 {
22910 case MVE_UNPREDICABLE_INSN:
22911 case MVE_OUTSIDE_PRED_INSN:
22912 if (inst.cond < COND_ALWAYS)
22913 {
22914 /* Case 7: Outside a pred block, with an IT code: error: syntax
22915 error. */
22916 inst.error = BAD_SYNTAX;
22917 return FAIL;
22918 }
22919 /* Case 9: Outside a pred block, with no code: OK! */
22920 break;
22921 case OUTSIDE_PRED_INSN:
22922 if (inst.cond > COND_ALWAYS)
22923 {
22924 /* Case 17: Outside a pred block, with a VPT code: syntax error.
22925 */
22926 inst.error = BAD_SYNTAX;
22927 return FAIL;
22928 }
22929 /* Case 18: Outside a pred block, with no code: OK! */
22930 break;
22931
22932 case INSIDE_VPT_INSN:
22933 /* Case 8: Outside a pred block, with a VPT code: error: should be in
22934 a VPT block. */
22935 inst.error = BAD_OUT_VPT;
22936 return FAIL;
22937
22938 case INSIDE_IT_INSN:
22939 case INSIDE_IT_LAST_INSN:
22940 if (inst.cond < COND_ALWAYS)
22941 {
22942 /* Case 16: Outside a pred block, with an IT code: error: should
22943 be in an IT block. */
22944 if (thumb_mode == 0)
22945 {
22946 if (unified_syntax
22947 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
22948 as_tsktsk (_("Warning: conditional outside an IT block"\
22949 " for Thumb."));
22950 }
22951 else
22952 {
22953 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
22954 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
22955 {
22956 /* Automatically generate the IT instruction. */
22957 new_automatic_it_block (inst.cond);
22958 if (inst.pred_insn_type == INSIDE_IT_LAST_INSN)
22959 close_automatic_it_block ();
22960 }
22961 else
22962 {
22963 inst.error = BAD_OUT_IT;
22964 return FAIL;
22965 }
22966 }
22967 break;
22968 }
22969 else if (inst.cond > COND_ALWAYS)
22970 {
22971 /* Case 17: Outside a pred block, with a VPT code: syntax error.
22972 */
22973 inst.error = BAD_SYNTAX;
22974 return FAIL;
22975 }
22976 else
22977 gas_assert (0);
22978 case IF_INSIDE_IT_LAST_INSN:
22979 case NEUTRAL_IT_INSN:
22980 break;
22981
22982 case VPT_INSN:
22983 if (inst.cond != COND_ALWAYS)
22984 first_error (BAD_SYNTAX);
22985 now_pred.state = MANUAL_PRED_BLOCK;
22986 now_pred.block_length = 0;
22987 now_pred.type = VECTOR_PRED;
22988 now_pred.cc = 0;
22989 break;
22990 case IT_INSN:
22991 now_pred.state = MANUAL_PRED_BLOCK;
22992 now_pred.block_length = 0;
22993 now_pred.type = SCALAR_PRED;
22994 break;
22995 }
22996 break;
22997
22998 case AUTOMATIC_PRED_BLOCK:
22999 /* Three things may happen now:
23000 a) We should increment current it block size;
23001 b) We should close current it block (closing insn or 4 insns);
23002 c) We should close current it block and start a new one (due
23003 to incompatible conditions or
23004 4 insns-length block reached). */
23005
23006 switch (inst.pred_insn_type)
23007 {
23008 case INSIDE_VPT_INSN:
23009 case VPT_INSN:
23010 case MVE_UNPREDICABLE_INSN:
23011 case MVE_OUTSIDE_PRED_INSN:
23012 gas_assert (0);
23013 case OUTSIDE_PRED_INSN:
23014 /* The closure of the block shall happen immediately,
23015 so any in_pred_block () call reports the block as closed. */
23016 force_automatic_it_block_close ();
23017 break;
23018
23019 case INSIDE_IT_INSN:
23020 case INSIDE_IT_LAST_INSN:
23021 case IF_INSIDE_IT_LAST_INSN:
23022 now_pred.block_length++;
23023
23024 if (now_pred.block_length > 4
23025 || !now_pred_compatible (inst.cond))
23026 {
23027 force_automatic_it_block_close ();
23028 if (inst.pred_insn_type != IF_INSIDE_IT_LAST_INSN)
23029 new_automatic_it_block (inst.cond);
23030 }
23031 else
23032 {
23033 now_pred.insn_cond = TRUE;
23034 now_pred_add_mask (inst.cond);
23035 }
23036
23037 if (now_pred.state == AUTOMATIC_PRED_BLOCK
23038 && (inst.pred_insn_type == INSIDE_IT_LAST_INSN
23039 || inst.pred_insn_type == IF_INSIDE_IT_LAST_INSN))
23040 close_automatic_it_block ();
23041 break;
23042
23043 /* Fallthrough. */
23044 case NEUTRAL_IT_INSN:
23045 now_pred.block_length++;
23046 now_pred.insn_cond = TRUE;
23047
23048 if (now_pred.block_length > 4)
23049 force_automatic_it_block_close ();
23050 else
23051 now_pred_add_mask (now_pred.cc & 1);
23052 break;
23053
23054 case IT_INSN:
23055 close_automatic_it_block ();
23056 now_pred.state = MANUAL_PRED_BLOCK;
23057 break;
23058 }
23059 break;
23060
23061 case MANUAL_PRED_BLOCK:
23062 {
23063 int cond, is_last;
23064 if (now_pred.type == SCALAR_PRED)
23065 {
23066 /* Check conditional suffixes. */
23067 cond = now_pred.cc ^ ((now_pred.mask >> 4) & 1) ^ 1;
23068 now_pred.mask <<= 1;
23069 now_pred.mask &= 0x1f;
23070 is_last = (now_pred.mask == 0x10);
23071 }
23072 else
23073 {
23074 now_pred.cc ^= (now_pred.mask >> 4);
23075 cond = now_pred.cc + 0xf;
23076 now_pred.mask <<= 1;
23077 now_pred.mask &= 0x1f;
23078 is_last = now_pred.mask == 0x10;
23079 }
23080 now_pred.insn_cond = TRUE;
23081
23082 switch (inst.pred_insn_type)
23083 {
23084 case OUTSIDE_PRED_INSN:
23085 if (now_pred.type == SCALAR_PRED)
23086 {
23087 if (inst.cond == COND_ALWAYS)
23088 {
23089 /* Case 12: In an IT block, with no code: error: missing
23090 code. */
23091 inst.error = BAD_NOT_IT;
23092 return FAIL;
23093 }
23094 else if (inst.cond > COND_ALWAYS)
23095 {
23096 /* Case 11: In an IT block, with a VPT code: syntax error.
23097 */
23098 inst.error = BAD_SYNTAX;
23099 return FAIL;
23100 }
23101 else if (thumb_mode)
23102 {
23103 /* This is for some special cases where a non-MVE
23104 instruction is not allowed in an IT block, such as cbz,
23105 but are put into one with a condition code.
23106 You could argue this should be a syntax error, but we
23107 gave the 'not allowed in IT block' diagnostic in the
23108 past so we will keep doing so. */
23109 inst.error = BAD_NOT_IT;
23110 return FAIL;
23111 }
23112 break;
23113 }
23114 else
23115 {
23116 /* Case 15: In a VPT block, with no code: UNPREDICTABLE. */
23117 as_tsktsk (MVE_NOT_VPT);
23118 return SUCCESS;
23119 }
23120 case MVE_OUTSIDE_PRED_INSN:
23121 if (now_pred.type == SCALAR_PRED)
23122 {
23123 if (inst.cond == COND_ALWAYS)
23124 {
23125 /* Case 3: In an IT block, with no code: warning:
23126 UNPREDICTABLE. */
23127 as_tsktsk (MVE_NOT_IT);
23128 return SUCCESS;
23129 }
23130 else if (inst.cond < COND_ALWAYS)
23131 {
23132 /* Case 1: In an IT block, with an IT code: syntax error.
23133 */
23134 inst.error = BAD_SYNTAX;
23135 return FAIL;
23136 }
23137 else
23138 gas_assert (0);
23139 }
23140 else
23141 {
23142 if (inst.cond < COND_ALWAYS)
23143 {
23144 /* Case 4: In a VPT block, with an IT code: syntax error.
23145 */
23146 inst.error = BAD_SYNTAX;
23147 return FAIL;
23148 }
23149 else if (inst.cond == COND_ALWAYS)
23150 {
23151 /* Case 6: In a VPT block, with no code: error: missing
23152 code. */
23153 inst.error = BAD_NOT_VPT;
23154 return FAIL;
23155 }
23156 else
23157 {
23158 gas_assert (0);
23159 }
23160 }
23161 case MVE_UNPREDICABLE_INSN:
23162 as_tsktsk (now_pred.type == SCALAR_PRED ? MVE_NOT_IT : MVE_NOT_VPT);
23163 return SUCCESS;
23164 case INSIDE_IT_INSN:
23165 if (inst.cond > COND_ALWAYS)
23166 {
23167 /* Case 11: In an IT block, with a VPT code: syntax error. */
23168 /* Case 14: In a VPT block, with a VPT code: syntax error. */
23169 inst.error = BAD_SYNTAX;
23170 return FAIL;
23171 }
23172 else if (now_pred.type == SCALAR_PRED)
23173 {
23174 /* Case 10: In an IT block, with an IT code: OK! */
23175 if (cond != inst.cond)
23176 {
23177 inst.error = now_pred.type == SCALAR_PRED ? BAD_IT_COND :
23178 BAD_VPT_COND;
23179 return FAIL;
23180 }
23181 }
23182 else
23183 {
23184 /* Case 13: In a VPT block, with an IT code: error: should be
23185 in an IT block. */
23186 inst.error = BAD_OUT_IT;
23187 return FAIL;
23188 }
23189 break;
23190
23191 case INSIDE_VPT_INSN:
23192 if (now_pred.type == SCALAR_PRED)
23193 {
23194 /* Case 2: In an IT block, with a VPT code: error: must be in a
23195 VPT block. */
23196 inst.error = BAD_OUT_VPT;
23197 return FAIL;
23198 }
23199 /* Case 5: In a VPT block, with a VPT code: OK! */
23200 else if (cond != inst.cond)
23201 {
23202 inst.error = BAD_VPT_COND;
23203 return FAIL;
23204 }
23205 break;
23206 case INSIDE_IT_LAST_INSN:
23207 case IF_INSIDE_IT_LAST_INSN:
23208 if (now_pred.type == VECTOR_PRED || inst.cond > COND_ALWAYS)
23209 {
23210 /* Case 4: In a VPT block, with an IT code: syntax error. */
23211 /* Case 11: In an IT block, with a VPT code: syntax error. */
23212 inst.error = BAD_SYNTAX;
23213 return FAIL;
23214 }
23215 else if (cond != inst.cond)
23216 {
23217 inst.error = BAD_IT_COND;
23218 return FAIL;
23219 }
23220 if (!is_last)
23221 {
23222 inst.error = BAD_BRANCH;
23223 return FAIL;
23224 }
23225 break;
23226
23227 case NEUTRAL_IT_INSN:
23228 /* The BKPT instruction is unconditional even in a IT or VPT
23229 block. */
23230 break;
23231
23232 case IT_INSN:
23233 if (now_pred.type == SCALAR_PRED)
23234 {
23235 inst.error = BAD_IT_IT;
23236 return FAIL;
23237 }
23238 /* fall through. */
23239 case VPT_INSN:
23240 if (inst.cond == COND_ALWAYS)
23241 {
23242 /* Executing a VPT/VPST instruction inside an IT block or a
23243 VPT/VPST/IT instruction inside a VPT block is UNPREDICTABLE.
23244 */
23245 if (now_pred.type == SCALAR_PRED)
23246 as_tsktsk (MVE_NOT_IT);
23247 else
23248 as_tsktsk (MVE_NOT_VPT);
23249 return SUCCESS;
23250 }
23251 else
23252 {
23253 /* VPT/VPST do not accept condition codes. */
23254 inst.error = BAD_SYNTAX;
23255 return FAIL;
23256 }
23257 }
23258 }
23259 break;
23260 }
23261
23262 return SUCCESS;
23263 }
23264
23265 struct depr_insn_mask
23266 {
23267 unsigned long pattern;
23268 unsigned long mask;
23269 const char* description;
23270 };
23271
23272 /* List of 16-bit instruction patterns deprecated in an IT block in
23273 ARMv8. */
23274 static const struct depr_insn_mask depr_it_insns[] = {
23275 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
23276 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
23277 { 0xa000, 0xb800, N_("ADR") },
23278 { 0x4800, 0xf800, N_("Literal loads") },
23279 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
23280 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
23281 /* NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue'
23282 field in asm_opcode. 'tvalue' is used at the stage this check happen. */
23283 { 0x00dd, 0x7fff, N_("ADD/SUB sp, sp #imm") },
23284 { 0, 0, NULL }
23285 };
23286
23287 static void
23288 it_fsm_post_encode (void)
23289 {
23290 int is_last;
23291
23292 if (!now_pred.state_handled)
23293 handle_pred_state ();
23294
23295 if (now_pred.insn_cond
23296 && warn_on_restrict_it
23297 && !now_pred.warn_deprecated
23298 && warn_on_deprecated
23299 && (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8)
23300 || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8r))
23301 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_m))
23302 {
23303 if (inst.instruction >= 0x10000)
23304 {
23305 as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
23306 "performance deprecated in ARMv8-A and ARMv8-R"));
23307 now_pred.warn_deprecated = TRUE;
23308 }
23309 else
23310 {
23311 const struct depr_insn_mask *p = depr_it_insns;
23312
23313 while (p->mask != 0)
23314 {
23315 if ((inst.instruction & p->mask) == p->pattern)
23316 {
23317 as_tsktsk (_("IT blocks containing 16-bit Thumb "
23318 "instructions of the following class are "
23319 "performance deprecated in ARMv8-A and "
23320 "ARMv8-R: %s"), p->description);
23321 now_pred.warn_deprecated = TRUE;
23322 break;
23323 }
23324
23325 ++p;
23326 }
23327 }
23328
23329 if (now_pred.block_length > 1)
23330 {
23331 as_tsktsk (_("IT blocks containing more than one conditional "
23332 "instruction are performance deprecated in ARMv8-A and "
23333 "ARMv8-R"));
23334 now_pred.warn_deprecated = TRUE;
23335 }
23336 }
23337
23338 is_last = (now_pred.mask == 0x10);
23339 if (is_last)
23340 {
23341 now_pred.state = OUTSIDE_PRED_BLOCK;
23342 now_pred.mask = 0;
23343 }
23344 }
23345
23346 static void
23347 force_automatic_it_block_close (void)
23348 {
23349 if (now_pred.state == AUTOMATIC_PRED_BLOCK)
23350 {
23351 close_automatic_it_block ();
23352 now_pred.state = OUTSIDE_PRED_BLOCK;
23353 now_pred.mask = 0;
23354 }
23355 }
23356
23357 static int
23358 in_pred_block (void)
23359 {
23360 if (!now_pred.state_handled)
23361 handle_pred_state ();
23362
23363 return now_pred.state != OUTSIDE_PRED_BLOCK;
23364 }
23365
23366 /* Whether OPCODE only has T32 encoding. Since this function is only used by
23367 t32_insn_ok, OPCODE enabled by v6t2 extension bit do not need to be listed
23368 here, hence the "known" in the function name. */
23369
23370 static bfd_boolean
23371 known_t32_only_insn (const struct asm_opcode *opcode)
23372 {
23373 /* Original Thumb-1 wide instruction. */
23374 if (opcode->tencode == do_t_blx
23375 || opcode->tencode == do_t_branch23
23376 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
23377 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier))
23378 return TRUE;
23379
23380 /* Wide-only instruction added to ARMv8-M Baseline. */
23381 if (ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v8m_m_only)
23382 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_atomics)
23383 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v6t2_v8m)
23384 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_div))
23385 return TRUE;
23386
23387 return FALSE;
23388 }
23389
23390 /* Whether wide instruction variant can be used if available for a valid OPCODE
23391 in ARCH. */
23392
23393 static bfd_boolean
23394 t32_insn_ok (arm_feature_set arch, const struct asm_opcode *opcode)
23395 {
23396 if (known_t32_only_insn (opcode))
23397 return TRUE;
23398
23399 /* Instruction with narrow and wide encoding added to ARMv8-M. Availability
23400 of variant T3 of B.W is checked in do_t_branch. */
23401 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
23402 && opcode->tencode == do_t_branch)
23403 return TRUE;
23404
23405 /* MOV accepts T1/T3 encodings under Baseline, T3 encoding is 32bit. */
23406 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
23407 && opcode->tencode == do_t_mov_cmp
23408 /* Make sure CMP instruction is not affected. */
23409 && opcode->aencode == do_mov)
23410 return TRUE;
23411
23412 /* Wide instruction variants of all instructions with narrow *and* wide
23413 variants become available with ARMv6t2. Other opcodes are either
23414 narrow-only or wide-only and are thus available if OPCODE is valid. */
23415 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v6t2))
23416 return TRUE;
23417
23418 /* OPCODE with narrow only instruction variant or wide variant not
23419 available. */
23420 return FALSE;
23421 }
23422
23423 void
23424 md_assemble (char *str)
23425 {
23426 char *p = str;
23427 const struct asm_opcode * opcode;
23428
23429 /* Align the previous label if needed. */
23430 if (last_label_seen != NULL)
23431 {
23432 symbol_set_frag (last_label_seen, frag_now);
23433 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
23434 S_SET_SEGMENT (last_label_seen, now_seg);
23435 }
23436
23437 memset (&inst, '\0', sizeof (inst));
23438 int r;
23439 for (r = 0; r < ARM_IT_MAX_RELOCS; r++)
23440 inst.relocs[r].type = BFD_RELOC_UNUSED;
23441
23442 opcode = opcode_lookup (&p);
23443 if (!opcode)
23444 {
23445 /* It wasn't an instruction, but it might be a register alias of
23446 the form alias .req reg, or a Neon .dn/.qn directive. */
23447 if (! create_register_alias (str, p)
23448 && ! create_neon_reg_alias (str, p))
23449 as_bad (_("bad instruction `%s'"), str);
23450
23451 return;
23452 }
23453
23454 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
23455 as_tsktsk (_("s suffix on comparison instruction is deprecated"));
23456
23457 /* The value which unconditional instructions should have in place of the
23458 condition field. */
23459 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
23460
23461 if (thumb_mode)
23462 {
23463 arm_feature_set variant;
23464
23465 variant = cpu_variant;
23466 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
23467 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
23468 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
23469 /* Check that this instruction is supported for this CPU. */
23470 if (!opcode->tvariant
23471 || (thumb_mode == 1
23472 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
23473 {
23474 if (opcode->tencode == do_t_swi)
23475 as_bad (_("SVC is not permitted on this architecture"));
23476 else
23477 as_bad (_("selected processor does not support `%s' in Thumb mode"), str);
23478 return;
23479 }
23480 if (inst.cond != COND_ALWAYS && !unified_syntax
23481 && opcode->tencode != do_t_branch)
23482 {
23483 as_bad (_("Thumb does not support conditional execution"));
23484 return;
23485 }
23486
23487 /* Two things are addressed here:
23488 1) Implicit require narrow instructions on Thumb-1.
23489 This avoids relaxation accidentally introducing Thumb-2
23490 instructions.
23491 2) Reject wide instructions in non Thumb-2 cores.
23492
23493 Only instructions with narrow and wide variants need to be handled
23494 but selecting all non wide-only instructions is easier. */
23495 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2)
23496 && !t32_insn_ok (variant, opcode))
23497 {
23498 if (inst.size_req == 0)
23499 inst.size_req = 2;
23500 else if (inst.size_req == 4)
23501 {
23502 if (ARM_CPU_HAS_FEATURE (variant, arm_ext_v8m))
23503 as_bad (_("selected processor does not support 32bit wide "
23504 "variant of instruction `%s'"), str);
23505 else
23506 as_bad (_("selected processor does not support `%s' in "
23507 "Thumb-2 mode"), str);
23508 return;
23509 }
23510 }
23511
23512 inst.instruction = opcode->tvalue;
23513
23514 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
23515 {
23516 /* Prepare the pred_insn_type for those encodings that don't set
23517 it. */
23518 it_fsm_pre_encode ();
23519
23520 opcode->tencode ();
23521
23522 it_fsm_post_encode ();
23523 }
23524
23525 if (!(inst.error || inst.relax))
23526 {
23527 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
23528 inst.size = (inst.instruction > 0xffff ? 4 : 2);
23529 if (inst.size_req && inst.size_req != inst.size)
23530 {
23531 as_bad (_("cannot honor width suffix -- `%s'"), str);
23532 return;
23533 }
23534 }
23535
23536 /* Something has gone badly wrong if we try to relax a fixed size
23537 instruction. */
23538 gas_assert (inst.size_req == 0 || !inst.relax);
23539
23540 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
23541 *opcode->tvariant);
23542 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
23543 set those bits when Thumb-2 32-bit instructions are seen. The impact
23544 of relaxable instructions will be considered later after we finish all
23545 relaxation. */
23546 if (ARM_FEATURE_CORE_EQUAL (cpu_variant, arm_arch_any))
23547 variant = arm_arch_none;
23548 else
23549 variant = cpu_variant;
23550 if (inst.size == 4 && !t32_insn_ok (variant, opcode))
23551 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
23552 arm_ext_v6t2);
23553
23554 check_neon_suffixes;
23555
23556 if (!inst.error)
23557 {
23558 mapping_state (MAP_THUMB);
23559 }
23560 }
23561 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
23562 {
23563 bfd_boolean is_bx;
23564
23565 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
23566 is_bx = (opcode->aencode == do_bx);
23567
23568 /* Check that this instruction is supported for this CPU. */
23569 if (!(is_bx && fix_v4bx)
23570 && !(opcode->avariant &&
23571 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
23572 {
23573 as_bad (_("selected processor does not support `%s' in ARM mode"), str);
23574 return;
23575 }
23576 if (inst.size_req)
23577 {
23578 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
23579 return;
23580 }
23581
23582 inst.instruction = opcode->avalue;
23583 if (opcode->tag == OT_unconditionalF)
23584 inst.instruction |= 0xFU << 28;
23585 else
23586 inst.instruction |= inst.cond << 28;
23587 inst.size = INSN_SIZE;
23588 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
23589 {
23590 it_fsm_pre_encode ();
23591 opcode->aencode ();
23592 it_fsm_post_encode ();
23593 }
23594 /* Arm mode bx is marked as both v4T and v5 because it's still required
23595 on a hypothetical non-thumb v5 core. */
23596 if (is_bx)
23597 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
23598 else
23599 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
23600 *opcode->avariant);
23601
23602 check_neon_suffixes;
23603
23604 if (!inst.error)
23605 {
23606 mapping_state (MAP_ARM);
23607 }
23608 }
23609 else
23610 {
23611 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
23612 "-- `%s'"), str);
23613 return;
23614 }
23615 output_inst (str);
23616 }
23617
23618 static void
23619 check_pred_blocks_finished (void)
23620 {
23621 #ifdef OBJ_ELF
23622 asection *sect;
23623
23624 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
23625 if (seg_info (sect)->tc_segment_info_data.current_pred.state
23626 == MANUAL_PRED_BLOCK)
23627 {
23628 if (now_pred.type == SCALAR_PRED)
23629 as_warn (_("section '%s' finished with an open IT block."),
23630 sect->name);
23631 else
23632 as_warn (_("section '%s' finished with an open VPT/VPST block."),
23633 sect->name);
23634 }
23635 #else
23636 if (now_pred.state == MANUAL_PRED_BLOCK)
23637 {
23638 if (now_pred.type == SCALAR_PRED)
23639 as_warn (_("file finished with an open IT block."));
23640 else
23641 as_warn (_("file finished with an open VPT/VPST block."));
23642 }
23643 #endif
23644 }
23645
23646 /* Various frobbings of labels and their addresses. */
23647
23648 void
23649 arm_start_line_hook (void)
23650 {
23651 last_label_seen = NULL;
23652 }
23653
23654 void
23655 arm_frob_label (symbolS * sym)
23656 {
23657 last_label_seen = sym;
23658
23659 ARM_SET_THUMB (sym, thumb_mode);
23660
23661 #if defined OBJ_COFF || defined OBJ_ELF
23662 ARM_SET_INTERWORK (sym, support_interwork);
23663 #endif
23664
23665 force_automatic_it_block_close ();
23666
23667 /* Note - do not allow local symbols (.Lxxx) to be labelled
23668 as Thumb functions. This is because these labels, whilst
23669 they exist inside Thumb code, are not the entry points for
23670 possible ARM->Thumb calls. Also, these labels can be used
23671 as part of a computed goto or switch statement. eg gcc
23672 can generate code that looks like this:
23673
23674 ldr r2, [pc, .Laaa]
23675 lsl r3, r3, #2
23676 ldr r2, [r3, r2]
23677 mov pc, r2
23678
23679 .Lbbb: .word .Lxxx
23680 .Lccc: .word .Lyyy
23681 ..etc...
23682 .Laaa: .word Lbbb
23683
23684 The first instruction loads the address of the jump table.
23685 The second instruction converts a table index into a byte offset.
23686 The third instruction gets the jump address out of the table.
23687 The fourth instruction performs the jump.
23688
23689 If the address stored at .Laaa is that of a symbol which has the
23690 Thumb_Func bit set, then the linker will arrange for this address
23691 to have the bottom bit set, which in turn would mean that the
23692 address computation performed by the third instruction would end
23693 up with the bottom bit set. Since the ARM is capable of unaligned
23694 word loads, the instruction would then load the incorrect address
23695 out of the jump table, and chaos would ensue. */
23696 if (label_is_thumb_function_name
23697 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
23698 && (bfd_section_flags (now_seg) & SEC_CODE) != 0)
23699 {
23700 /* When the address of a Thumb function is taken the bottom
23701 bit of that address should be set. This will allow
23702 interworking between Arm and Thumb functions to work
23703 correctly. */
23704
23705 THUMB_SET_FUNC (sym, 1);
23706
23707 label_is_thumb_function_name = FALSE;
23708 }
23709
23710 dwarf2_emit_label (sym);
23711 }
23712
23713 bfd_boolean
23714 arm_data_in_code (void)
23715 {
23716 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
23717 {
23718 *input_line_pointer = '/';
23719 input_line_pointer += 5;
23720 *input_line_pointer = 0;
23721 return TRUE;
23722 }
23723
23724 return FALSE;
23725 }
23726
23727 char *
23728 arm_canonicalize_symbol_name (char * name)
23729 {
23730 int len;
23731
23732 if (thumb_mode && (len = strlen (name)) > 5
23733 && streq (name + len - 5, "/data"))
23734 *(name + len - 5) = 0;
23735
23736 return name;
23737 }
23738 \f
23739 /* Table of all register names defined by default. The user can
23740 define additional names with .req. Note that all register names
23741 should appear in both upper and lowercase variants. Some registers
23742 also have mixed-case names. */
23743
23744 #define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
23745 #define REGNUM(p,n,t) REGDEF(p##n, n, t)
23746 #define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
23747 #define REGSET(p,t) \
23748 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
23749 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
23750 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
23751 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
23752 #define REGSETH(p,t) \
23753 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
23754 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
23755 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
23756 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
23757 #define REGSET2(p,t) \
23758 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
23759 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
23760 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
23761 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
23762 #define SPLRBANK(base,bank,t) \
23763 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
23764 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
23765 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
23766 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
23767 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
23768 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
23769
23770 static const struct reg_entry reg_names[] =
23771 {
23772 /* ARM integer registers. */
23773 REGSET(r, RN), REGSET(R, RN),
23774
23775 /* ATPCS synonyms. */
23776 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
23777 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
23778 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
23779
23780 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
23781 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
23782 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
23783
23784 /* Well-known aliases. */
23785 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
23786 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
23787
23788 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
23789 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
23790
23791 /* Defining the new Zero register from ARMv8.1-M. */
23792 REGDEF(zr,15,ZR),
23793 REGDEF(ZR,15,ZR),
23794
23795 /* Coprocessor numbers. */
23796 REGSET(p, CP), REGSET(P, CP),
23797
23798 /* Coprocessor register numbers. The "cr" variants are for backward
23799 compatibility. */
23800 REGSET(c, CN), REGSET(C, CN),
23801 REGSET(cr, CN), REGSET(CR, CN),
23802
23803 /* ARM banked registers. */
23804 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
23805 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
23806 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
23807 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
23808 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
23809 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
23810 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
23811
23812 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
23813 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
23814 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
23815 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
23816 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
23817 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
23818 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
23819 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
23820
23821 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
23822 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
23823 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
23824 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
23825 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
23826 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
23827 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
23828 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
23829 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
23830
23831 /* FPA registers. */
23832 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
23833 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
23834
23835 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
23836 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
23837
23838 /* VFP SP registers. */
23839 REGSET(s,VFS), REGSET(S,VFS),
23840 REGSETH(s,VFS), REGSETH(S,VFS),
23841
23842 /* VFP DP Registers. */
23843 REGSET(d,VFD), REGSET(D,VFD),
23844 /* Extra Neon DP registers. */
23845 REGSETH(d,VFD), REGSETH(D,VFD),
23846
23847 /* Neon QP registers. */
23848 REGSET2(q,NQ), REGSET2(Q,NQ),
23849
23850 /* VFP control registers. */
23851 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
23852 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
23853 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
23854 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
23855 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
23856 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
23857 REGDEF(mvfr2,5,VFC), REGDEF(MVFR2,5,VFC),
23858 REGDEF(fpscr_nzcvqc,2,VFC), REGDEF(FPSCR_nzcvqc,2,VFC),
23859 REGDEF(vpr,12,VFC), REGDEF(VPR,12,VFC),
23860 REGDEF(fpcxt_ns,14,VFC), REGDEF(FPCXT_NS,14,VFC),
23861 REGDEF(fpcxt_s,15,VFC), REGDEF(FPCXT_S,15,VFC),
23862
23863 /* Maverick DSP coprocessor registers. */
23864 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
23865 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
23866
23867 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
23868 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
23869 REGDEF(dspsc,0,DSPSC),
23870
23871 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
23872 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
23873 REGDEF(DSPSC,0,DSPSC),
23874
23875 /* iWMMXt data registers - p0, c0-15. */
23876 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
23877
23878 /* iWMMXt control registers - p1, c0-3. */
23879 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
23880 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
23881 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
23882 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
23883
23884 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
23885 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
23886 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
23887 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
23888 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
23889
23890 /* XScale accumulator registers. */
23891 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
23892 };
23893 #undef REGDEF
23894 #undef REGNUM
23895 #undef REGSET
23896
23897 /* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
23898 within psr_required_here. */
23899 static const struct asm_psr psrs[] =
23900 {
23901 /* Backward compatibility notation. Note that "all" is no longer
23902 truly all possible PSR bits. */
23903 {"all", PSR_c | PSR_f},
23904 {"flg", PSR_f},
23905 {"ctl", PSR_c},
23906
23907 /* Individual flags. */
23908 {"f", PSR_f},
23909 {"c", PSR_c},
23910 {"x", PSR_x},
23911 {"s", PSR_s},
23912
23913 /* Combinations of flags. */
23914 {"fs", PSR_f | PSR_s},
23915 {"fx", PSR_f | PSR_x},
23916 {"fc", PSR_f | PSR_c},
23917 {"sf", PSR_s | PSR_f},
23918 {"sx", PSR_s | PSR_x},
23919 {"sc", PSR_s | PSR_c},
23920 {"xf", PSR_x | PSR_f},
23921 {"xs", PSR_x | PSR_s},
23922 {"xc", PSR_x | PSR_c},
23923 {"cf", PSR_c | PSR_f},
23924 {"cs", PSR_c | PSR_s},
23925 {"cx", PSR_c | PSR_x},
23926 {"fsx", PSR_f | PSR_s | PSR_x},
23927 {"fsc", PSR_f | PSR_s | PSR_c},
23928 {"fxs", PSR_f | PSR_x | PSR_s},
23929 {"fxc", PSR_f | PSR_x | PSR_c},
23930 {"fcs", PSR_f | PSR_c | PSR_s},
23931 {"fcx", PSR_f | PSR_c | PSR_x},
23932 {"sfx", PSR_s | PSR_f | PSR_x},
23933 {"sfc", PSR_s | PSR_f | PSR_c},
23934 {"sxf", PSR_s | PSR_x | PSR_f},
23935 {"sxc", PSR_s | PSR_x | PSR_c},
23936 {"scf", PSR_s | PSR_c | PSR_f},
23937 {"scx", PSR_s | PSR_c | PSR_x},
23938 {"xfs", PSR_x | PSR_f | PSR_s},
23939 {"xfc", PSR_x | PSR_f | PSR_c},
23940 {"xsf", PSR_x | PSR_s | PSR_f},
23941 {"xsc", PSR_x | PSR_s | PSR_c},
23942 {"xcf", PSR_x | PSR_c | PSR_f},
23943 {"xcs", PSR_x | PSR_c | PSR_s},
23944 {"cfs", PSR_c | PSR_f | PSR_s},
23945 {"cfx", PSR_c | PSR_f | PSR_x},
23946 {"csf", PSR_c | PSR_s | PSR_f},
23947 {"csx", PSR_c | PSR_s | PSR_x},
23948 {"cxf", PSR_c | PSR_x | PSR_f},
23949 {"cxs", PSR_c | PSR_x | PSR_s},
23950 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
23951 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
23952 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
23953 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
23954 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
23955 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
23956 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
23957 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
23958 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
23959 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
23960 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
23961 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
23962 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
23963 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
23964 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
23965 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
23966 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
23967 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
23968 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
23969 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
23970 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
23971 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
23972 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
23973 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
23974 };
23975
23976 /* Table of V7M psr names. */
23977 static const struct asm_psr v7m_psrs[] =
23978 {
23979 {"apsr", 0x0 }, {"APSR", 0x0 },
23980 {"iapsr", 0x1 }, {"IAPSR", 0x1 },
23981 {"eapsr", 0x2 }, {"EAPSR", 0x2 },
23982 {"psr", 0x3 }, {"PSR", 0x3 },
23983 {"xpsr", 0x3 }, {"XPSR", 0x3 }, {"xPSR", 3 },
23984 {"ipsr", 0x5 }, {"IPSR", 0x5 },
23985 {"epsr", 0x6 }, {"EPSR", 0x6 },
23986 {"iepsr", 0x7 }, {"IEPSR", 0x7 },
23987 {"msp", 0x8 }, {"MSP", 0x8 },
23988 {"psp", 0x9 }, {"PSP", 0x9 },
23989 {"msplim", 0xa }, {"MSPLIM", 0xa },
23990 {"psplim", 0xb }, {"PSPLIM", 0xb },
23991 {"primask", 0x10}, {"PRIMASK", 0x10},
23992 {"basepri", 0x11}, {"BASEPRI", 0x11},
23993 {"basepri_max", 0x12}, {"BASEPRI_MAX", 0x12},
23994 {"faultmask", 0x13}, {"FAULTMASK", 0x13},
23995 {"control", 0x14}, {"CONTROL", 0x14},
23996 {"msp_ns", 0x88}, {"MSP_NS", 0x88},
23997 {"psp_ns", 0x89}, {"PSP_NS", 0x89},
23998 {"msplim_ns", 0x8a}, {"MSPLIM_NS", 0x8a},
23999 {"psplim_ns", 0x8b}, {"PSPLIM_NS", 0x8b},
24000 {"primask_ns", 0x90}, {"PRIMASK_NS", 0x90},
24001 {"basepri_ns", 0x91}, {"BASEPRI_NS", 0x91},
24002 {"faultmask_ns", 0x93}, {"FAULTMASK_NS", 0x93},
24003 {"control_ns", 0x94}, {"CONTROL_NS", 0x94},
24004 {"sp_ns", 0x98}, {"SP_NS", 0x98 }
24005 };
24006
24007 /* Table of all shift-in-operand names. */
24008 static const struct asm_shift_name shift_names [] =
24009 {
24010 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
24011 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
24012 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
24013 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
24014 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
24015 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX },
24016 { "uxtw", SHIFT_UXTW}, { "UXTW", SHIFT_UXTW}
24017 };
24018
24019 /* Table of all explicit relocation names. */
24020 #ifdef OBJ_ELF
24021 static struct reloc_entry reloc_names[] =
24022 {
24023 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
24024 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
24025 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
24026 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
24027 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
24028 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
24029 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
24030 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
24031 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
24032 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
24033 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
24034 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
24035 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
24036 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
24037 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
24038 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
24039 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
24040 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ},
24041 { "gotfuncdesc", BFD_RELOC_ARM_GOTFUNCDESC },
24042 { "GOTFUNCDESC", BFD_RELOC_ARM_GOTFUNCDESC },
24043 { "gotofffuncdesc", BFD_RELOC_ARM_GOTOFFFUNCDESC },
24044 { "GOTOFFFUNCDESC", BFD_RELOC_ARM_GOTOFFFUNCDESC },
24045 { "funcdesc", BFD_RELOC_ARM_FUNCDESC },
24046 { "FUNCDESC", BFD_RELOC_ARM_FUNCDESC },
24047 { "tlsgd_fdpic", BFD_RELOC_ARM_TLS_GD32_FDPIC }, { "TLSGD_FDPIC", BFD_RELOC_ARM_TLS_GD32_FDPIC },
24048 { "tlsldm_fdpic", BFD_RELOC_ARM_TLS_LDM32_FDPIC }, { "TLSLDM_FDPIC", BFD_RELOC_ARM_TLS_LDM32_FDPIC },
24049 { "gottpoff_fdpic", BFD_RELOC_ARM_TLS_IE32_FDPIC }, { "GOTTPOFF_FDIC", BFD_RELOC_ARM_TLS_IE32_FDPIC },
24050 };
24051 #endif
24052
24053 /* Table of all conditional affixes. */
24054 static const struct asm_cond conds[] =
24055 {
24056 {"eq", 0x0},
24057 {"ne", 0x1},
24058 {"cs", 0x2}, {"hs", 0x2},
24059 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
24060 {"mi", 0x4},
24061 {"pl", 0x5},
24062 {"vs", 0x6},
24063 {"vc", 0x7},
24064 {"hi", 0x8},
24065 {"ls", 0x9},
24066 {"ge", 0xa},
24067 {"lt", 0xb},
24068 {"gt", 0xc},
24069 {"le", 0xd},
24070 {"al", 0xe}
24071 };
24072 static const struct asm_cond vconds[] =
24073 {
24074 {"t", 0xf},
24075 {"e", 0x10}
24076 };
24077
24078 #define UL_BARRIER(L,U,CODE,FEAT) \
24079 { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
24080 { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
24081
24082 static struct asm_barrier_opt barrier_opt_names[] =
24083 {
24084 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
24085 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
24086 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
24087 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
24088 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
24089 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
24090 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
24091 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
24092 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
24093 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
24094 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
24095 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
24096 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
24097 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
24098 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
24099 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
24100 };
24101
24102 #undef UL_BARRIER
24103
24104 /* Table of ARM-format instructions. */
24105
24106 /* Macros for gluing together operand strings. N.B. In all cases
24107 other than OPS0, the trailing OP_stop comes from default
24108 zero-initialization of the unspecified elements of the array. */
24109 #define OPS0() { OP_stop, }
24110 #define OPS1(a) { OP_##a, }
24111 #define OPS2(a,b) { OP_##a,OP_##b, }
24112 #define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
24113 #define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
24114 #define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
24115 #define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
24116
24117 /* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
24118 This is useful when mixing operands for ARM and THUMB, i.e. using the
24119 MIX_ARM_THUMB_OPERANDS macro.
24120 In order to use these macros, prefix the number of operands with _
24121 e.g. _3. */
24122 #define OPS_1(a) { a, }
24123 #define OPS_2(a,b) { a,b, }
24124 #define OPS_3(a,b,c) { a,b,c, }
24125 #define OPS_4(a,b,c,d) { a,b,c,d, }
24126 #define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
24127 #define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
24128
24129 /* These macros abstract out the exact format of the mnemonic table and
24130 save some repeated characters. */
24131
24132 /* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
24133 #define TxCE(mnem, op, top, nops, ops, ae, te) \
24134 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
24135 THUMB_VARIANT, do_##ae, do_##te, 0 }
24136
24137 /* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
24138 a T_MNEM_xyz enumerator. */
24139 #define TCE(mnem, aop, top, nops, ops, ae, te) \
24140 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
24141 #define tCE(mnem, aop, top, nops, ops, ae, te) \
24142 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
24143
24144 /* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
24145 infix after the third character. */
24146 #define TxC3(mnem, op, top, nops, ops, ae, te) \
24147 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
24148 THUMB_VARIANT, do_##ae, do_##te, 0 }
24149 #define TxC3w(mnem, op, top, nops, ops, ae, te) \
24150 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
24151 THUMB_VARIANT, do_##ae, do_##te, 0 }
24152 #define TC3(mnem, aop, top, nops, ops, ae, te) \
24153 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
24154 #define TC3w(mnem, aop, top, nops, ops, ae, te) \
24155 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
24156 #define tC3(mnem, aop, top, nops, ops, ae, te) \
24157 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
24158 #define tC3w(mnem, aop, top, nops, ops, ae, te) \
24159 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
24160
24161 /* Mnemonic that cannot be conditionalized. The ARM condition-code
24162 field is still 0xE. Many of the Thumb variants can be executed
24163 conditionally, so this is checked separately. */
24164 #define TUE(mnem, op, top, nops, ops, ae, te) \
24165 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
24166 THUMB_VARIANT, do_##ae, do_##te, 0 }
24167
24168 /* Same as TUE but the encoding function for ARM and Thumb modes is the same.
24169 Used by mnemonics that have very minimal differences in the encoding for
24170 ARM and Thumb variants and can be handled in a common function. */
24171 #define TUEc(mnem, op, top, nops, ops, en) \
24172 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
24173 THUMB_VARIANT, do_##en, do_##en, 0 }
24174
24175 /* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
24176 condition code field. */
24177 #define TUF(mnem, op, top, nops, ops, ae, te) \
24178 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
24179 THUMB_VARIANT, do_##ae, do_##te, 0 }
24180
24181 /* ARM-only variants of all the above. */
24182 #define CE(mnem, op, nops, ops, ae) \
24183 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24184
24185 #define C3(mnem, op, nops, ops, ae) \
24186 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24187
24188 /* Thumb-only variants of TCE and TUE. */
24189 #define ToC(mnem, top, nops, ops, te) \
24190 { mnem, OPS##nops ops, OT_csuffix, 0x0, 0x##top, 0, THUMB_VARIANT, NULL, \
24191 do_##te, 0 }
24192
24193 #define ToU(mnem, top, nops, ops, te) \
24194 { mnem, OPS##nops ops, OT_unconditional, 0x0, 0x##top, 0, THUMB_VARIANT, \
24195 NULL, do_##te, 0 }
24196
24197 /* T_MNEM_xyz enumerator variants of ToC. */
24198 #define toC(mnem, top, nops, ops, te) \
24199 { mnem, OPS##nops ops, OT_csuffix, 0x0, T_MNEM##top, 0, THUMB_VARIANT, NULL, \
24200 do_##te, 0 }
24201
24202 /* T_MNEM_xyz enumerator variants of ToU. */
24203 #define toU(mnem, top, nops, ops, te) \
24204 { mnem, OPS##nops ops, OT_unconditional, 0x0, T_MNEM##top, 0, THUMB_VARIANT, \
24205 NULL, do_##te, 0 }
24206
24207 /* Legacy mnemonics that always have conditional infix after the third
24208 character. */
24209 #define CL(mnem, op, nops, ops, ae) \
24210 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
24211 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24212
24213 /* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
24214 #define cCE(mnem, op, nops, ops, ae) \
24215 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
24216
24217 /* mov instructions that are shared between coprocessor and MVE. */
24218 #define mcCE(mnem, op, nops, ops, ae) \
24219 { #mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, THUMB_VARIANT, do_##ae, do_##ae, 0 }
24220
24221 /* Legacy coprocessor instructions where conditional infix and conditional
24222 suffix are ambiguous. For consistency this includes all FPA instructions,
24223 not just the potentially ambiguous ones. */
24224 #define cCL(mnem, op, nops, ops, ae) \
24225 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
24226 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
24227
24228 /* Coprocessor, takes either a suffix or a position-3 infix
24229 (for an FPA corner case). */
24230 #define C3E(mnem, op, nops, ops, ae) \
24231 { mnem, OPS##nops ops, OT_csuf_or_in3, \
24232 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae, 0 }
24233
24234 #define xCM_(m1, m2, m3, op, nops, ops, ae) \
24235 { m1 #m2 m3, OPS##nops ops, \
24236 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
24237 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24238
24239 #define CM(m1, m2, op, nops, ops, ae) \
24240 xCM_ (m1, , m2, op, nops, ops, ae), \
24241 xCM_ (m1, eq, m2, op, nops, ops, ae), \
24242 xCM_ (m1, ne, m2, op, nops, ops, ae), \
24243 xCM_ (m1, cs, m2, op, nops, ops, ae), \
24244 xCM_ (m1, hs, m2, op, nops, ops, ae), \
24245 xCM_ (m1, cc, m2, op, nops, ops, ae), \
24246 xCM_ (m1, ul, m2, op, nops, ops, ae), \
24247 xCM_ (m1, lo, m2, op, nops, ops, ae), \
24248 xCM_ (m1, mi, m2, op, nops, ops, ae), \
24249 xCM_ (m1, pl, m2, op, nops, ops, ae), \
24250 xCM_ (m1, vs, m2, op, nops, ops, ae), \
24251 xCM_ (m1, vc, m2, op, nops, ops, ae), \
24252 xCM_ (m1, hi, m2, op, nops, ops, ae), \
24253 xCM_ (m1, ls, m2, op, nops, ops, ae), \
24254 xCM_ (m1, ge, m2, op, nops, ops, ae), \
24255 xCM_ (m1, lt, m2, op, nops, ops, ae), \
24256 xCM_ (m1, gt, m2, op, nops, ops, ae), \
24257 xCM_ (m1, le, m2, op, nops, ops, ae), \
24258 xCM_ (m1, al, m2, op, nops, ops, ae)
24259
24260 #define UE(mnem, op, nops, ops, ae) \
24261 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24262
24263 #define UF(mnem, op, nops, ops, ae) \
24264 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL, 0 }
24265
24266 /* Neon data-processing. ARM versions are unconditional with cond=0xf.
24267 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
24268 use the same encoding function for each. */
24269 #define NUF(mnem, op, nops, ops, enc) \
24270 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
24271 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 0 }
24272
24273 /* Neon data processing, version which indirects through neon_enc_tab for
24274 the various overloaded versions of opcodes. */
24275 #define nUF(mnem, op, nops, ops, enc) \
24276 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
24277 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 0 }
24278
24279 /* Neon insn with conditional suffix for the ARM version, non-overloaded
24280 version. */
24281 #define NCE_tag(mnem, op, nops, ops, enc, tag, mve_p) \
24282 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
24283 THUMB_VARIANT, do_##enc, do_##enc, mve_p }
24284
24285 #define NCE(mnem, op, nops, ops, enc) \
24286 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 0)
24287
24288 #define NCEF(mnem, op, nops, ops, enc) \
24289 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 0)
24290
24291 /* Neon insn with conditional suffix for the ARM version, overloaded types. */
24292 #define nCE_tag(mnem, op, nops, ops, enc, tag, mve_p) \
24293 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
24294 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, mve_p }
24295
24296 #define nCE(mnem, op, nops, ops, enc) \
24297 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 0)
24298
24299 #define nCEF(mnem, op, nops, ops, enc) \
24300 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 0)
24301
24302 /* */
24303 #define mCEF(mnem, op, nops, ops, enc) \
24304 { #mnem, OPS##nops ops, OT_csuffixF, M_MNEM##op, M_MNEM##op, \
24305 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
24306
24307
24308 /* nCEF but for MVE predicated instructions. */
24309 #define mnCEF(mnem, op, nops, ops, enc) \
24310 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 1)
24311
24312 /* nCE but for MVE predicated instructions. */
24313 #define mnCE(mnem, op, nops, ops, enc) \
24314 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 1)
24315
24316 /* NUF but for potentially MVE predicated instructions. */
24317 #define MNUF(mnem, op, nops, ops, enc) \
24318 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
24319 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
24320
24321 /* nUF but for potentially MVE predicated instructions. */
24322 #define mnUF(mnem, op, nops, ops, enc) \
24323 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
24324 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc, 1 }
24325
24326 /* ToC but for potentially MVE predicated instructions. */
24327 #define mToC(mnem, top, nops, ops, te) \
24328 { mnem, OPS##nops ops, OT_csuffix, 0x0, 0x##top, 0, THUMB_VARIANT, NULL, \
24329 do_##te, 1 }
24330
24331 /* NCE but for MVE predicated instructions. */
24332 #define MNCE(mnem, op, nops, ops, enc) \
24333 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix, 1)
24334
24335 /* NCEF but for MVE predicated instructions. */
24336 #define MNCEF(mnem, op, nops, ops, enc) \
24337 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF, 1)
24338 #define do_0 0
24339
24340 static const struct asm_opcode insns[] =
24341 {
24342 #define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
24343 #define THUMB_VARIANT & arm_ext_v4t
24344 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
24345 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
24346 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
24347 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
24348 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
24349 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
24350 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
24351 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
24352 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
24353 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
24354 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
24355 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
24356 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
24357 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
24358 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
24359 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
24360
24361 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
24362 for setting PSR flag bits. They are obsolete in V6 and do not
24363 have Thumb equivalents. */
24364 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
24365 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
24366 CL("tstp", 110f000, 2, (RR, SH), cmp),
24367 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
24368 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
24369 CL("cmpp", 150f000, 2, (RR, SH), cmp),
24370 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
24371 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
24372 CL("cmnp", 170f000, 2, (RR, SH), cmp),
24373
24374 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
24375 tC3("movs", 1b00000, _movs, 2, (RR, SHG), mov, t_mov_cmp),
24376 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
24377 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
24378
24379 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
24380 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
24381 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
24382 OP_RRnpc),
24383 OP_ADDRGLDR),ldst, t_ldst),
24384 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
24385
24386 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24387 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24388 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24389 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24390 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24391 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24392
24393 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
24394 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
24395
24396 /* Pseudo ops. */
24397 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
24398 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
24399 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
24400 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
24401
24402 /* Thumb-compatibility pseudo ops. */
24403 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
24404 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
24405 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
24406 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
24407 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
24408 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
24409 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
24410 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
24411 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
24412 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
24413 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
24414 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
24415
24416 /* These may simplify to neg. */
24417 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
24418 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
24419
24420 #undef THUMB_VARIANT
24421 #define THUMB_VARIANT & arm_ext_os
24422
24423 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
24424 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
24425
24426 #undef THUMB_VARIANT
24427 #define THUMB_VARIANT & arm_ext_v6
24428
24429 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
24430
24431 /* V1 instructions with no Thumb analogue prior to V6T2. */
24432 #undef THUMB_VARIANT
24433 #define THUMB_VARIANT & arm_ext_v6t2
24434
24435 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
24436 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
24437 CL("teqp", 130f000, 2, (RR, SH), cmp),
24438
24439 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
24440 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
24441 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
24442 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
24443
24444 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24445 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24446
24447 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24448 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
24449
24450 /* V1 instructions with no Thumb analogue at all. */
24451 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
24452 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
24453
24454 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
24455 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
24456 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
24457 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
24458 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
24459 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
24460 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
24461 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
24462
24463 #undef ARM_VARIANT
24464 #define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
24465 #undef THUMB_VARIANT
24466 #define THUMB_VARIANT & arm_ext_v4t
24467
24468 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
24469 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
24470
24471 #undef THUMB_VARIANT
24472 #define THUMB_VARIANT & arm_ext_v6t2
24473
24474 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
24475 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
24476
24477 /* Generic coprocessor instructions. */
24478 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
24479 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24480 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24481 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24482 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24483 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
24484 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
24485
24486 #undef ARM_VARIANT
24487 #define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
24488
24489 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
24490 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
24491
24492 #undef ARM_VARIANT
24493 #define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
24494 #undef THUMB_VARIANT
24495 #define THUMB_VARIANT & arm_ext_msr
24496
24497 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
24498 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
24499
24500 #undef ARM_VARIANT
24501 #define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
24502 #undef THUMB_VARIANT
24503 #define THUMB_VARIANT & arm_ext_v6t2
24504
24505 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
24506 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
24507 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
24508 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
24509 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
24510 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
24511 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
24512 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
24513
24514 #undef ARM_VARIANT
24515 #define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
24516 #undef THUMB_VARIANT
24517 #define THUMB_VARIANT & arm_ext_v4t
24518
24519 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24520 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24521 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24522 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24523 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24524 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
24525
24526 #undef ARM_VARIANT
24527 #define ARM_VARIANT & arm_ext_v4t_5
24528
24529 /* ARM Architecture 4T. */
24530 /* Note: bx (and blx) are required on V5, even if the processor does
24531 not support Thumb. */
24532 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
24533
24534 #undef ARM_VARIANT
24535 #define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
24536 #undef THUMB_VARIANT
24537 #define THUMB_VARIANT & arm_ext_v5t
24538
24539 /* Note: blx has 2 variants; the .value coded here is for
24540 BLX(2). Only this variant has conditional execution. */
24541 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
24542 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
24543
24544 #undef THUMB_VARIANT
24545 #define THUMB_VARIANT & arm_ext_v6t2
24546
24547 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
24548 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24549 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24550 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24551 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
24552 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
24553 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
24554 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
24555
24556 #undef ARM_VARIANT
24557 #define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
24558 #undef THUMB_VARIANT
24559 #define THUMB_VARIANT & arm_ext_v5exp
24560
24561 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24562 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24563 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24564 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24565
24566 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24567 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
24568
24569 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
24570 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
24571 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
24572 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
24573
24574 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24575 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24576 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24577 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24578
24579 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24580 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24581
24582 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
24583 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
24584 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
24585 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
24586
24587 #undef ARM_VARIANT
24588 #define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
24589 #undef THUMB_VARIANT
24590 #define THUMB_VARIANT & arm_ext_v6t2
24591
24592 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
24593 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
24594 ldrd, t_ldstd),
24595 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
24596 ADDRGLDRS), ldrd, t_ldstd),
24597
24598 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
24599 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
24600
24601 #undef ARM_VARIANT
24602 #define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
24603
24604 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
24605
24606 #undef ARM_VARIANT
24607 #define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
24608 #undef THUMB_VARIANT
24609 #define THUMB_VARIANT & arm_ext_v6
24610
24611 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
24612 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
24613 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
24614 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
24615 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
24616 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24617 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24618 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24619 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24620 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
24621
24622 #undef THUMB_VARIANT
24623 #define THUMB_VARIANT & arm_ext_v6t2_v8m
24624
24625 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
24626 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
24627 strex, t_strex),
24628 #undef THUMB_VARIANT
24629 #define THUMB_VARIANT & arm_ext_v6t2
24630
24631 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
24632 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
24633
24634 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
24635 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
24636
24637 /* ARM V6 not included in V7M. */
24638 #undef THUMB_VARIANT
24639 #define THUMB_VARIANT & arm_ext_v6_notm
24640 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
24641 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
24642 UF(rfeib, 9900a00, 1, (RRw), rfe),
24643 UF(rfeda, 8100a00, 1, (RRw), rfe),
24644 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
24645 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
24646 UF(rfefa, 8100a00, 1, (RRw), rfe),
24647 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
24648 UF(rfeed, 9900a00, 1, (RRw), rfe),
24649 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
24650 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
24651 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
24652 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
24653 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
24654 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
24655 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
24656 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
24657 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
24658 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
24659
24660 /* ARM V6 not included in V7M (eg. integer SIMD). */
24661 #undef THUMB_VARIANT
24662 #define THUMB_VARIANT & arm_ext_v6_dsp
24663 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
24664 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
24665 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24666 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24667 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24668 /* Old name for QASX. */
24669 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24670 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24671 /* Old name for QSAX. */
24672 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24673 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24674 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24675 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24676 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24677 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24678 /* Old name for SASX. */
24679 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24680 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24681 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24682 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24683 /* Old name for SHASX. */
24684 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24685 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24686 /* Old name for SHSAX. */
24687 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24688 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24689 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24690 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24691 /* Old name for SSAX. */
24692 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24693 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24694 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24695 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24696 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24697 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24698 /* Old name for UASX. */
24699 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24700 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24701 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24702 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24703 /* Old name for UHASX. */
24704 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24705 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24706 /* Old name for UHSAX. */
24707 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24708 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24709 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24710 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24711 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24712 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24713 /* Old name for UQASX. */
24714 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24715 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24716 /* Old name for UQSAX. */
24717 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24718 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24719 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24720 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24721 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24722 /* Old name for USAX. */
24723 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24724 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24725 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24726 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24727 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24728 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24729 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24730 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24731 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
24732 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
24733 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
24734 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24735 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24736 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
24737 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
24738 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24739 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24740 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
24741 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
24742 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24743 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24744 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24745 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24746 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24747 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24748 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24749 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24750 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24751 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24752 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
24753 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
24754 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
24755 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
24756 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
24757
24758 #undef ARM_VARIANT
24759 #define ARM_VARIANT & arm_ext_v6k_v6t2
24760 #undef THUMB_VARIANT
24761 #define THUMB_VARIANT & arm_ext_v6k_v6t2
24762
24763 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
24764 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
24765 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
24766 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
24767
24768 #undef THUMB_VARIANT
24769 #define THUMB_VARIANT & arm_ext_v6_notm
24770 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
24771 ldrexd, t_ldrexd),
24772 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
24773 RRnpcb), strexd, t_strexd),
24774
24775 #undef THUMB_VARIANT
24776 #define THUMB_VARIANT & arm_ext_v6t2_v8m
24777 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
24778 rd_rn, rd_rn),
24779 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
24780 rd_rn, rd_rn),
24781 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
24782 strex, t_strexbh),
24783 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
24784 strex, t_strexbh),
24785 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
24786
24787 #undef ARM_VARIANT
24788 #define ARM_VARIANT & arm_ext_sec
24789 #undef THUMB_VARIANT
24790 #define THUMB_VARIANT & arm_ext_sec
24791
24792 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
24793
24794 #undef ARM_VARIANT
24795 #define ARM_VARIANT & arm_ext_virt
24796 #undef THUMB_VARIANT
24797 #define THUMB_VARIANT & arm_ext_virt
24798
24799 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
24800 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
24801
24802 #undef ARM_VARIANT
24803 #define ARM_VARIANT & arm_ext_pan
24804 #undef THUMB_VARIANT
24805 #define THUMB_VARIANT & arm_ext_pan
24806
24807 TUF("setpan", 1100000, b610, 1, (I7), setpan, t_setpan),
24808
24809 #undef ARM_VARIANT
24810 #define ARM_VARIANT & arm_ext_v6t2
24811 #undef THUMB_VARIANT
24812 #define THUMB_VARIANT & arm_ext_v6t2
24813
24814 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
24815 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
24816 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
24817 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
24818
24819 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
24820 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
24821
24822 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
24823 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
24824 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
24825 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
24826
24827 #undef ARM_VARIANT
24828 #define ARM_VARIANT & arm_ext_v3
24829 #undef THUMB_VARIANT
24830 #define THUMB_VARIANT & arm_ext_v6t2
24831
24832 TUE("csdb", 320f014, f3af8014, 0, (), noargs, t_csdb),
24833 TUF("ssbb", 57ff040, f3bf8f40, 0, (), noargs, t_csdb),
24834 TUF("pssbb", 57ff044, f3bf8f44, 0, (), noargs, t_csdb),
24835
24836 #undef ARM_VARIANT
24837 #define ARM_VARIANT & arm_ext_v6t2
24838 #undef THUMB_VARIANT
24839 #define THUMB_VARIANT & arm_ext_v6t2_v8m
24840 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
24841 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
24842
24843 /* Thumb-only instructions. */
24844 #undef ARM_VARIANT
24845 #define ARM_VARIANT NULL
24846 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
24847 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
24848
24849 /* ARM does not really have an IT instruction, so always allow it.
24850 The opcode is copied from Thumb in order to allow warnings in
24851 -mimplicit-it=[never | arm] modes. */
24852 #undef ARM_VARIANT
24853 #define ARM_VARIANT & arm_ext_v1
24854 #undef THUMB_VARIANT
24855 #define THUMB_VARIANT & arm_ext_v6t2
24856
24857 TUE("it", bf08, bf08, 1, (COND), it, t_it),
24858 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
24859 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
24860 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
24861 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
24862 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
24863 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
24864 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
24865 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
24866 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
24867 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
24868 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
24869 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
24870 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
24871 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
24872 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
24873 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
24874 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
24875
24876 /* Thumb2 only instructions. */
24877 #undef ARM_VARIANT
24878 #define ARM_VARIANT NULL
24879
24880 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
24881 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
24882 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
24883 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
24884 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
24885 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
24886
24887 /* Hardware division instructions. */
24888 #undef ARM_VARIANT
24889 #define ARM_VARIANT & arm_ext_adiv
24890 #undef THUMB_VARIANT
24891 #define THUMB_VARIANT & arm_ext_div
24892
24893 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
24894 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
24895
24896 /* ARM V6M/V7 instructions. */
24897 #undef ARM_VARIANT
24898 #define ARM_VARIANT & arm_ext_barrier
24899 #undef THUMB_VARIANT
24900 #define THUMB_VARIANT & arm_ext_barrier
24901
24902 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
24903 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
24904 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
24905
24906 /* ARM V7 instructions. */
24907 #undef ARM_VARIANT
24908 #define ARM_VARIANT & arm_ext_v7
24909 #undef THUMB_VARIANT
24910 #define THUMB_VARIANT & arm_ext_v7
24911
24912 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
24913 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
24914
24915 #undef ARM_VARIANT
24916 #define ARM_VARIANT & arm_ext_mp
24917 #undef THUMB_VARIANT
24918 #define THUMB_VARIANT & arm_ext_mp
24919
24920 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
24921
24922 /* AArchv8 instructions. */
24923 #undef ARM_VARIANT
24924 #define ARM_VARIANT & arm_ext_v8
24925
24926 /* Instructions shared between armv8-a and armv8-m. */
24927 #undef THUMB_VARIANT
24928 #define THUMB_VARIANT & arm_ext_atomics
24929
24930 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24931 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24932 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24933 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24934 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24935 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
24936 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24937 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
24938 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
24939 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
24940 stlex, t_stlex),
24941 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
24942 stlex, t_stlex),
24943 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
24944 stlex, t_stlex),
24945 #undef THUMB_VARIANT
24946 #define THUMB_VARIANT & arm_ext_v8
24947
24948 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
24949 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
24950 ldrexd, t_ldrexd),
24951 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
24952 strexd, t_strexd),
24953 #undef THUMB_VARIANT
24954 #define THUMB_VARIANT & arm_ext_v8r
24955 #undef ARM_VARIANT
24956 #define ARM_VARIANT & arm_ext_v8r
24957
24958 /* ARMv8-R instructions. */
24959 TUF("dfb", 57ff04c, f3bf8f4c, 0, (), noargs, noargs),
24960
24961 /* Defined in V8 but is in undefined encoding space for earlier
24962 architectures. However earlier architectures are required to treat
24963 this instuction as a semihosting trap as well. Hence while not explicitly
24964 defined as such, it is in fact correct to define the instruction for all
24965 architectures. */
24966 #undef THUMB_VARIANT
24967 #define THUMB_VARIANT & arm_ext_v1
24968 #undef ARM_VARIANT
24969 #define ARM_VARIANT & arm_ext_v1
24970 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
24971
24972 /* ARMv8 T32 only. */
24973 #undef ARM_VARIANT
24974 #define ARM_VARIANT NULL
24975 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
24976 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
24977 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
24978
24979 /* FP for ARMv8. */
24980 #undef ARM_VARIANT
24981 #define ARM_VARIANT & fpu_vfp_ext_armv8xd
24982 #undef THUMB_VARIANT
24983 #define THUMB_VARIANT & fpu_vfp_ext_armv8xd
24984
24985 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
24986 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
24987 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
24988 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
24989 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
24990 mnCE(vrintz, _vrintr, 2, (RNSDQMQ, oRNSDQMQ), vrintz),
24991 mnCE(vrintx, _vrintr, 2, (RNSDQMQ, oRNSDQMQ), vrintx),
24992 mnUF(vrinta, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrinta),
24993 mnUF(vrintn, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintn),
24994 mnUF(vrintp, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintp),
24995 mnUF(vrintm, _vrinta, 2, (RNSDQMQ, oRNSDQMQ), vrintm),
24996
24997 /* Crypto v1 extensions. */
24998 #undef ARM_VARIANT
24999 #define ARM_VARIANT & fpu_crypto_ext_armv8
25000 #undef THUMB_VARIANT
25001 #define THUMB_VARIANT & fpu_crypto_ext_armv8
25002
25003 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
25004 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
25005 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
25006 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
25007 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
25008 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
25009 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
25010 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
25011 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
25012 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
25013 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
25014 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
25015 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
25016 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
25017
25018 #undef ARM_VARIANT
25019 #define ARM_VARIANT & arm_ext_crc
25020 #undef THUMB_VARIANT
25021 #define THUMB_VARIANT & arm_ext_crc
25022 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
25023 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
25024 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
25025 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
25026 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
25027 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
25028
25029 /* ARMv8.2 RAS extension. */
25030 #undef ARM_VARIANT
25031 #define ARM_VARIANT & arm_ext_ras
25032 #undef THUMB_VARIANT
25033 #define THUMB_VARIANT & arm_ext_ras
25034 TUE ("esb", 320f010, f3af8010, 0, (), noargs, noargs),
25035
25036 #undef ARM_VARIANT
25037 #define ARM_VARIANT & arm_ext_v8_3
25038 #undef THUMB_VARIANT
25039 #define THUMB_VARIANT & arm_ext_v8_3
25040 NCE (vjcvt, eb90bc0, 2, (RVS, RVD), vjcvt),
25041
25042 #undef ARM_VARIANT
25043 #define ARM_VARIANT & fpu_neon_ext_dotprod
25044 #undef THUMB_VARIANT
25045 #define THUMB_VARIANT & fpu_neon_ext_dotprod
25046 NUF (vsdot, d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), neon_dotproduct_s),
25047 NUF (vudot, d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), neon_dotproduct_u),
25048
25049 #undef ARM_VARIANT
25050 #define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
25051 #undef THUMB_VARIANT
25052 #define THUMB_VARIANT NULL
25053
25054 cCE("wfs", e200110, 1, (RR), rd),
25055 cCE("rfs", e300110, 1, (RR), rd),
25056 cCE("wfc", e400110, 1, (RR), rd),
25057 cCE("rfc", e500110, 1, (RR), rd),
25058
25059 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
25060 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
25061 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
25062 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
25063
25064 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
25065 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
25066 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
25067 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
25068
25069 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
25070 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
25071 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
25072 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
25073 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
25074 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
25075 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
25076 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
25077 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
25078 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
25079 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
25080 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
25081
25082 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
25083 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
25084 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
25085 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
25086 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
25087 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
25088 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
25089 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
25090 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
25091 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
25092 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
25093 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
25094
25095 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
25096 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
25097 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
25098 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
25099 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
25100 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
25101 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
25102 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
25103 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
25104 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
25105 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
25106 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
25107
25108 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
25109 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
25110 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
25111 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
25112 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
25113 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
25114 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
25115 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
25116 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
25117 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
25118 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
25119 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
25120
25121 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
25122 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
25123 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
25124 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
25125 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
25126 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
25127 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
25128 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
25129 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
25130 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
25131 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
25132 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
25133
25134 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
25135 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
25136 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
25137 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
25138 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
25139 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
25140 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
25141 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
25142 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
25143 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
25144 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
25145 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
25146
25147 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
25148 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
25149 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
25150 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
25151 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
25152 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
25153 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
25154 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
25155 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
25156 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
25157 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
25158 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
25159
25160 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
25161 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
25162 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
25163 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
25164 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
25165 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
25166 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
25167 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
25168 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
25169 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
25170 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
25171 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
25172
25173 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
25174 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
25175 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
25176 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
25177 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
25178 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
25179 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
25180 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
25181 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
25182 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
25183 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
25184 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
25185
25186 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
25187 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
25188 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
25189 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
25190 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
25191 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
25192 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
25193 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
25194 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
25195 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
25196 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
25197 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
25198
25199 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
25200 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
25201 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
25202 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
25203 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
25204 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
25205 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
25206 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
25207 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
25208 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
25209 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
25210 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
25211
25212 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
25213 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
25214 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
25215 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
25216 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
25217 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
25218 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
25219 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
25220 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
25221 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
25222 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
25223 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
25224
25225 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
25226 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
25227 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
25228 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
25229 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
25230 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
25231 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
25232 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
25233 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
25234 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
25235 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
25236 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
25237
25238 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
25239 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
25240 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
25241 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
25242 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
25243 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
25244 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
25245 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
25246 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
25247 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
25248 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
25249 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
25250
25251 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
25252 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
25253 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
25254 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
25255 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
25256 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
25257 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
25258 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
25259 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
25260 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
25261 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
25262 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
25263
25264 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
25265 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
25266 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
25267 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
25268 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
25269 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
25270 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
25271 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
25272 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
25273 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
25274 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
25275 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
25276
25277 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
25278 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
25279 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
25280 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
25281 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
25282 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25283 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25284 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25285 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
25286 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
25287 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
25288 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
25289
25290 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
25291 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
25292 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
25293 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
25294 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
25295 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25296 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25297 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25298 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
25299 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
25300 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
25301 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
25302
25303 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
25304 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
25305 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
25306 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
25307 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
25308 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25309 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25310 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25311 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
25312 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
25313 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
25314 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
25315
25316 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
25317 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
25318 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
25319 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
25320 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
25321 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25322 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25323 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25324 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
25325 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
25326 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
25327 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
25328
25329 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
25330 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
25331 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
25332 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
25333 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
25334 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25335 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25336 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25337 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
25338 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
25339 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
25340 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
25341
25342 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
25343 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
25344 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
25345 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
25346 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
25347 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25348 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25349 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25350 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
25351 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
25352 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
25353 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
25354
25355 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
25356 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
25357 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
25358 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
25359 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
25360 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25361 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25362 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25363 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
25364 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
25365 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
25366 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
25367
25368 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
25369 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
25370 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
25371 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
25372 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
25373 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25374 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25375 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25376 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
25377 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
25378 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
25379 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
25380
25381 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
25382 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
25383 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
25384 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
25385 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
25386 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25387 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25388 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25389 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
25390 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
25391 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
25392 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
25393
25394 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
25395 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
25396 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
25397 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
25398 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
25399 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25400 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25401 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25402 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
25403 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
25404 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
25405 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
25406
25407 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
25408 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
25409 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
25410 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
25411 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
25412 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25413 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25414 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25415 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
25416 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
25417 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
25418 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
25419
25420 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
25421 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
25422 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
25423 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
25424 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
25425 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25426 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25427 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25428 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
25429 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
25430 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
25431 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
25432
25433 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
25434 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
25435 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
25436 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
25437 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
25438 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
25439 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
25440 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
25441 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
25442 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
25443 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
25444 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
25445
25446 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
25447 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
25448 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
25449 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
25450
25451 cCL("flts", e000110, 2, (RF, RR), rn_rd),
25452 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
25453 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
25454 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
25455 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
25456 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
25457 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
25458 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
25459 cCL("flte", e080110, 2, (RF, RR), rn_rd),
25460 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
25461 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
25462 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
25463
25464 /* The implementation of the FIX instruction is broken on some
25465 assemblers, in that it accepts a precision specifier as well as a
25466 rounding specifier, despite the fact that this is meaningless.
25467 To be more compatible, we accept it as well, though of course it
25468 does not set any bits. */
25469 cCE("fix", e100110, 2, (RR, RF), rd_rm),
25470 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
25471 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
25472 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
25473 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
25474 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
25475 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
25476 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
25477 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
25478 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
25479 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
25480 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
25481 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
25482
25483 /* Instructions that were new with the real FPA, call them V2. */
25484 #undef ARM_VARIANT
25485 #define ARM_VARIANT & fpu_fpa_ext_v2
25486
25487 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25488 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25489 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25490 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25491 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25492 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
25493
25494 #undef ARM_VARIANT
25495 #define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
25496 #undef THUMB_VARIANT
25497 #define THUMB_VARIANT & arm_ext_v6t2
25498 mcCE(vmrs, ef00a10, 2, (APSR_RR, RVC), vmrs),
25499 mcCE(vmsr, ee00a10, 2, (RVC, RR), vmsr),
25500 mcCE(fldd, d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
25501 mcCE(fstd, d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
25502 mcCE(flds, d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
25503 mcCE(fsts, d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
25504
25505 /* Memory operations. */
25506 mcCE(fldmias, c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
25507 mcCE(fldmdbs, d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
25508 mcCE(fstmias, c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
25509 mcCE(fstmdbs, d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
25510 #undef THUMB_VARIANT
25511
25512 /* Moves and type conversions. */
25513 cCE("fmstat", ef1fa10, 0, (), noargs),
25514 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
25515 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
25516 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
25517 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
25518 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
25519 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
25520 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
25521 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
25522
25523 /* Memory operations. */
25524 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
25525 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
25526 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
25527 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
25528 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
25529 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
25530 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
25531 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
25532 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
25533 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
25534 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
25535 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
25536
25537 /* Monadic operations. */
25538 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
25539 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
25540 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
25541
25542 /* Dyadic operations. */
25543 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25544 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25545 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25546 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25547 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25548 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25549 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25550 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25551 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25552
25553 /* Comparisons. */
25554 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
25555 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
25556 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
25557 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
25558
25559 /* Double precision load/store are still present on single precision
25560 implementations. */
25561 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
25562 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
25563 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
25564 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
25565 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
25566 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
25567 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
25568 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
25569
25570 #undef ARM_VARIANT
25571 #define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
25572
25573 /* Moves and type conversions. */
25574 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
25575 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
25576 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
25577 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
25578 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
25579 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
25580 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
25581 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
25582 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
25583 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
25584 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
25585 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
25586
25587 /* Monadic operations. */
25588 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
25589 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
25590 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
25591
25592 /* Dyadic operations. */
25593 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25594 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25595 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25596 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25597 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25598 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25599 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25600 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25601 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25602
25603 /* Comparisons. */
25604 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
25605 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
25606 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
25607 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
25608
25609 /* Instructions which may belong to either the Neon or VFP instruction sets.
25610 Individual encoder functions perform additional architecture checks. */
25611 #undef ARM_VARIANT
25612 #define ARM_VARIANT & fpu_vfp_ext_v1xd
25613 #undef THUMB_VARIANT
25614 #define THUMB_VARIANT & arm_ext_v6t2
25615
25616 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25617 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25618 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25619 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25620 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25621 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
25622
25623 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
25624 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
25625
25626 #undef THUMB_VARIANT
25627 #define THUMB_VARIANT & fpu_vfp_ext_v1xd
25628
25629 /* These mnemonics are unique to VFP. */
25630 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
25631 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
25632 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25633 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25634 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25635 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
25636
25637 /* Mnemonics shared by Neon and VFP. */
25638 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
25639
25640 mnCEF(vcvt, _vcvt, 3, (RNSDQMQ, RNSDQMQ, oI32z), neon_cvt),
25641 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
25642 MNCEF(vcvtb, eb20a40, 3, (RVSDMQ, RVSDMQ, oI32b), neon_cvtb),
25643 MNCEF(vcvtt, eb20a40, 3, (RVSDMQ, RVSDMQ, oI32b), neon_cvtt),
25644
25645
25646 /* NOTE: All VMOV encoding is special-cased! */
25647 NCE(vmovq, 0, 1, (VMOV), neon_mov),
25648
25649 #undef THUMB_VARIANT
25650 /* Could be either VLDR/VSTR or VLDR/VSTR (system register) which are guarded
25651 by different feature bits. Since we are setting the Thumb guard, we can
25652 require Thumb-1 which makes it a nop guard and set the right feature bit in
25653 do_vldr_vstr (). */
25654 #define THUMB_VARIANT & arm_ext_v4t
25655 NCE(vldr, d100b00, 2, (VLDR, ADDRGLDC), vldr_vstr),
25656 NCE(vstr, d000b00, 2, (VLDR, ADDRGLDC), vldr_vstr),
25657
25658 #undef ARM_VARIANT
25659 #define ARM_VARIANT & arm_ext_fp16
25660 #undef THUMB_VARIANT
25661 #define THUMB_VARIANT & arm_ext_fp16
25662 /* New instructions added from v8.2, allowing the extraction and insertion of
25663 the upper 16 bits of a 32-bit vector register. */
25664 NCE (vmovx, eb00a40, 2, (RVS, RVS), neon_movhf),
25665 NCE (vins, eb00ac0, 2, (RVS, RVS), neon_movhf),
25666
25667 /* New backported fma/fms instructions optional in v8.2. */
25668 NUF (vfmsl, 810, 3, (RNDQ, RNSD, RNSD_RNSC), neon_vfmsl),
25669 NUF (vfmal, 810, 3, (RNDQ, RNSD, RNSD_RNSC), neon_vfmal),
25670
25671 #undef THUMB_VARIANT
25672 #define THUMB_VARIANT & fpu_neon_ext_v1
25673 #undef ARM_VARIANT
25674 #define ARM_VARIANT & fpu_neon_ext_v1
25675
25676 /* Data processing with three registers of the same length. */
25677 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
25678 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
25679 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
25680 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
25681 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
25682 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
25683 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
25684 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
25685 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
25686 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
25687 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
25688 /* If not immediate, fall back to neon_dyadic_i64_su.
25689 shl should accept I8 I16 I32 I64,
25690 qshl should accept S8 S16 S32 S64 U8 U16 U32 U64. */
25691 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl),
25692 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl),
25693 /* Logic ops, types optional & ignored. */
25694 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
25695 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
25696 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
25697 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
25698 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
25699 /* Bitfield ops, untyped. */
25700 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
25701 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
25702 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
25703 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
25704 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
25705 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
25706 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F16 F32. */
25707 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
25708 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
25709 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
25710 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
25711 back to neon_dyadic_if_su. */
25712 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
25713 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
25714 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
25715 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
25716 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
25717 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
25718 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
25719 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
25720 /* Comparison. Type I8 I16 I32 F32. */
25721 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
25722 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
25723 /* As above, D registers only. */
25724 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
25725 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
25726 /* Int and float variants, signedness unimportant. */
25727 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
25728 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
25729 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
25730 /* Add/sub take types I8 I16 I32 I64 F32. */
25731 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
25732 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
25733 /* vtst takes sizes 8, 16, 32. */
25734 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
25735 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
25736 /* VMUL takes I8 I16 I32 F32 P8. */
25737 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
25738 /* VQD{R}MULH takes S16 S32. */
25739 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
25740 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
25741 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
25742 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
25743 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
25744 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
25745 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
25746 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
25747 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
25748 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
25749 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
25750 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
25751 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
25752 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
25753 /* ARM v8.1 extension. */
25754 nUF (vqrdmlahq, _vqrdmlah, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
25755 nUF (vqrdmlsh, _vqrdmlsh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
25756 nUF (vqrdmlshq, _vqrdmlsh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
25757
25758 /* Two address, int/float. Types S8 S16 S32 F32. */
25759 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
25760 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
25761
25762 /* Data processing with two registers and a shift amount. */
25763 /* Right shifts, and variants with rounding.
25764 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
25765 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
25766 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
25767 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
25768 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
25769 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
25770 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
25771 /* Shift and insert. Sizes accepted 8 16 32 64. */
25772 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
25773 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
25774 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
25775 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
25776 /* Right shift immediate, saturating & narrowing, with rounding variants.
25777 Types accepted S16 S32 S64 U16 U32 U64. */
25778 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
25779 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
25780 /* As above, unsigned. Types accepted S16 S32 S64. */
25781 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
25782 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
25783 /* Right shift narrowing. Types accepted I16 I32 I64. */
25784 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
25785 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
25786 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
25787 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
25788 /* CVT with optional immediate for fixed-point variant. */
25789 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
25790
25791 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
25792
25793 /* Data processing, three registers of different lengths. */
25794 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
25795 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
25796 /* If not scalar, fall back to neon_dyadic_long.
25797 Vector types as above, scalar types S16 S32 U16 U32. */
25798 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
25799 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
25800 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
25801 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
25802 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
25803 /* Dyadic, narrowing insns. Types I16 I32 I64. */
25804 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
25805 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
25806 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
25807 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
25808 /* Saturating doubling multiplies. Types S16 S32. */
25809 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
25810 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
25811 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
25812 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
25813 S16 S32 U16 U32. */
25814 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
25815
25816 /* Extract. Size 8. */
25817 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
25818 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
25819
25820 /* Two registers, miscellaneous. */
25821 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
25822 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
25823 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
25824 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
25825 /* Vector replicate. Sizes 8 16 32. */
25826 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
25827 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
25828 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
25829 /* VMOVN. Types I16 I32 I64. */
25830 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
25831 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
25832 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
25833 /* VQMOVUN. Types S16 S32 S64. */
25834 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
25835 /* VZIP / VUZP. Sizes 8 16 32. */
25836 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
25837 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
25838 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
25839 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
25840 /* VQABS / VQNEG. Types S8 S16 S32. */
25841 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
25842 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
25843 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
25844 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
25845 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
25846 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
25847 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
25848 /* Reciprocal estimates. Types U32 F16 F32. */
25849 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
25850 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
25851 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
25852 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
25853 /* VCLS. Types S8 S16 S32. */
25854 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
25855 /* VCLZ. Types I8 I16 I32. */
25856 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
25857 /* VCNT. Size 8. */
25858 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
25859 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
25860 /* Two address, untyped. */
25861 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
25862 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
25863 /* VTRN. Sizes 8 16 32. */
25864 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
25865 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
25866
25867 /* Table lookup. Size 8. */
25868 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
25869 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
25870
25871 #undef THUMB_VARIANT
25872 #define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
25873 #undef ARM_VARIANT
25874 #define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
25875
25876 /* Neon element/structure load/store. */
25877 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
25878 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
25879 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
25880 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
25881 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
25882 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
25883 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
25884 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
25885
25886 #undef THUMB_VARIANT
25887 #define THUMB_VARIANT & fpu_vfp_ext_v3xd
25888 #undef ARM_VARIANT
25889 #define ARM_VARIANT & fpu_vfp_ext_v3xd
25890 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
25891 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25892 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25893 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25894 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25895 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25896 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25897 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
25898 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
25899
25900 #undef THUMB_VARIANT
25901 #define THUMB_VARIANT & fpu_vfp_ext_v3
25902 #undef ARM_VARIANT
25903 #define ARM_VARIANT & fpu_vfp_ext_v3
25904
25905 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
25906 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25907 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25908 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25909 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25910 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25911 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25912 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
25913 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
25914
25915 #undef ARM_VARIANT
25916 #define ARM_VARIANT & fpu_vfp_ext_fma
25917 #undef THUMB_VARIANT
25918 #define THUMB_VARIANT & fpu_vfp_ext_fma
25919 /* Mnemonics shared by Neon, VFP, MVE and BF16. These are included in the
25920 VFP FMA variant; NEON and VFP FMA always includes the NEON
25921 FMA instructions. */
25922 mnCEF(vfma, _vfma, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_fmac),
25923 TUF ("vfmat", c300850, fc300850, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ_RR), mve_vfma, mve_vfma),
25924 mnCEF(vfms, _vfms, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), neon_fmac),
25925
25926 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
25927 the v form should always be used. */
25928 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25929 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
25930 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25931 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
25932 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25933 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
25934
25935 #undef THUMB_VARIANT
25936 #undef ARM_VARIANT
25937 #define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
25938
25939 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25940 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25941 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25942 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25943 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25944 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
25945 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
25946 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
25947
25948 #undef ARM_VARIANT
25949 #define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
25950
25951 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
25952 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
25953 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
25954 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
25955 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
25956 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
25957 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
25958 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
25959 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
25960 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25961 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25962 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
25963 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25964 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25965 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
25966 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25967 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25968 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
25969 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
25970 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
25971 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25972 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25973 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25974 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25975 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25976 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
25977 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
25978 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
25979 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
25980 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
25981 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
25982 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
25983 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
25984 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
25985 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
25986 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
25987 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
25988 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25989 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25990 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25991 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25992 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25993 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25994 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25995 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25996 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25997 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
25998 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
25999 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26000 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26001 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26002 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26003 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26004 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26005 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26006 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26007 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26008 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26009 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26010 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26011 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26012 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26013 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26014 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26015 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26016 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26017 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
26018 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
26019 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
26020 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
26021 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26022 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26023 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26024 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26025 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26026 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26027 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26028 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26029 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26030 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26031 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26032 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26033 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26034 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26035 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26036 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26037 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26038 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26039 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
26040 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26041 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26042 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26043 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26044 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26045 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26046 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26047 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26048 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26049 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26050 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26051 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26052 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26053 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26054 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26055 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26056 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26057 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26058 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26059 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26060 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26061 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
26062 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26063 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26064 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26065 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26066 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26067 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26068 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26069 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26070 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26071 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26072 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26073 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26074 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26075 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26076 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26077 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26078 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
26079 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
26080 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
26081 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
26082 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
26083 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
26084 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26085 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26086 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26087 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26088 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26089 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26090 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26091 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26092 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26093 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
26094 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
26095 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
26096 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
26097 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
26098 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
26099 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26100 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26101 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26102 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
26103 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
26104 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
26105 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
26106 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
26107 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
26108 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26109 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26110 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26111 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26112 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
26113
26114 #undef ARM_VARIANT
26115 #define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
26116
26117 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
26118 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
26119 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
26120 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
26121 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
26122 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
26123 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26124 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26125 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26126 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26127 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26128 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26129 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26130 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26131 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26132 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26133 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26134 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26135 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26136 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26137 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
26138 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26139 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26140 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26141 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26142 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26143 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26144 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26145 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26146 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26147 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26148 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26149 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26150 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26151 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26152 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26153 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26154 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26155 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26156 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26157 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26158 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26159 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26160 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26161 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26162 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26163 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26164 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26165 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26166 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26167 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26168 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26169 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26170 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26171 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26172 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26173 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
26174
26175 #undef ARM_VARIANT
26176 #define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
26177
26178 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
26179 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
26180 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
26181 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
26182 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
26183 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
26184 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
26185 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
26186 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
26187 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
26188 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
26189 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
26190 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
26191 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
26192 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
26193 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
26194 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
26195 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
26196 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
26197 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
26198 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
26199 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
26200 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
26201 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
26202 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
26203 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
26204 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
26205 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
26206 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
26207 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
26208 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
26209 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
26210 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
26211 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
26212 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
26213 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
26214 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
26215 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
26216 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
26217 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
26218 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
26219 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
26220 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
26221 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
26222 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
26223 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
26224 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
26225 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
26226 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
26227 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
26228 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
26229 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
26230 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
26231 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
26232 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
26233 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
26234 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
26235 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
26236 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
26237 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
26238 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
26239 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
26240 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
26241 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
26242 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
26243 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
26244 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
26245 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
26246 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
26247 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
26248 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
26249 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
26250 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
26251 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
26252 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
26253 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
26254
26255 /* ARMv8.5-A instructions. */
26256 #undef ARM_VARIANT
26257 #define ARM_VARIANT & arm_ext_sb
26258 #undef THUMB_VARIANT
26259 #define THUMB_VARIANT & arm_ext_sb
26260 TUF("sb", 57ff070, f3bf8f70, 0, (), noargs, noargs),
26261
26262 #undef ARM_VARIANT
26263 #define ARM_VARIANT & arm_ext_predres
26264 #undef THUMB_VARIANT
26265 #define THUMB_VARIANT & arm_ext_predres
26266 CE("cfprctx", e070f93, 1, (RRnpc), rd),
26267 CE("dvprctx", e070fb3, 1, (RRnpc), rd),
26268 CE("cpprctx", e070ff3, 1, (RRnpc), rd),
26269
26270 /* ARMv8-M instructions. */
26271 #undef ARM_VARIANT
26272 #define ARM_VARIANT NULL
26273 #undef THUMB_VARIANT
26274 #define THUMB_VARIANT & arm_ext_v8m
26275 ToU("sg", e97fe97f, 0, (), noargs),
26276 ToC("blxns", 4784, 1, (RRnpc), t_blx),
26277 ToC("bxns", 4704, 1, (RRnpc), t_bx),
26278 ToC("tt", e840f000, 2, (RRnpc, RRnpc), tt),
26279 ToC("ttt", e840f040, 2, (RRnpc, RRnpc), tt),
26280 ToC("tta", e840f080, 2, (RRnpc, RRnpc), tt),
26281 ToC("ttat", e840f0c0, 2, (RRnpc, RRnpc), tt),
26282
26283 /* FP for ARMv8-M Mainline. Enabled for ARMv8-M Mainline because the
26284 instructions behave as nop if no VFP is present. */
26285 #undef THUMB_VARIANT
26286 #define THUMB_VARIANT & arm_ext_v8m_main
26287 ToC("vlldm", ec300a00, 1, (RRnpc), rn),
26288 ToC("vlstm", ec200a00, 1, (RRnpc), rn),
26289
26290 /* Armv8.1-M Mainline instructions. */
26291 #undef THUMB_VARIANT
26292 #define THUMB_VARIANT & arm_ext_v8_1m_main
26293 toU("cinc", _cinc, 3, (RRnpcsp, RR_ZR, COND), t_cond),
26294 toU("cinv", _cinv, 3, (RRnpcsp, RR_ZR, COND), t_cond),
26295 toU("cneg", _cneg, 3, (RRnpcsp, RR_ZR, COND), t_cond),
26296 toU("csel", _csel, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
26297 toU("csetm", _csetm, 2, (RRnpcsp, COND), t_cond),
26298 toU("cset", _cset, 2, (RRnpcsp, COND), t_cond),
26299 toU("csinc", _csinc, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
26300 toU("csinv", _csinv, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
26301 toU("csneg", _csneg, 4, (RRnpcsp, RR_ZR, RR_ZR, COND), t_cond),
26302
26303 toC("bf", _bf, 2, (EXPs, EXPs), t_branch_future),
26304 toU("bfcsel", _bfcsel, 4, (EXPs, EXPs, EXPs, COND), t_branch_future),
26305 toC("bfx", _bfx, 2, (EXPs, RRnpcsp), t_branch_future),
26306 toC("bfl", _bfl, 2, (EXPs, EXPs), t_branch_future),
26307 toC("bflx", _bflx, 2, (EXPs, RRnpcsp), t_branch_future),
26308
26309 toU("dls", _dls, 2, (LR, RRnpcsp), t_loloop),
26310 toU("wls", _wls, 3, (LR, RRnpcsp, EXP), t_loloop),
26311 toU("le", _le, 2, (oLR, EXP), t_loloop),
26312
26313 ToC("clrm", e89f0000, 1, (CLRMLST), t_clrm),
26314 ToC("vscclrm", ec9f0a00, 1, (VRSDVLST), t_vscclrm),
26315
26316 #undef THUMB_VARIANT
26317 #define THUMB_VARIANT & mve_ext
26318 ToC("lsll", ea50010d, 3, (RRe, RRo, RRnpcsp_I32), mve_scalar_shift),
26319 ToC("lsrl", ea50011f, 3, (RRe, RRo, I32), mve_scalar_shift),
26320 ToC("asrl", ea50012d, 3, (RRe, RRo, RRnpcsp_I32), mve_scalar_shift),
26321 ToC("uqrshll", ea51010d, 4, (RRe, RRo, I48_I64, RRnpcsp), mve_scalar_shift1),
26322 ToC("sqrshrl", ea51012d, 4, (RRe, RRo, I48_I64, RRnpcsp), mve_scalar_shift1),
26323 ToC("uqshll", ea51010f, 3, (RRe, RRo, I32), mve_scalar_shift),
26324 ToC("urshrl", ea51011f, 3, (RRe, RRo, I32), mve_scalar_shift),
26325 ToC("srshrl", ea51012f, 3, (RRe, RRo, I32), mve_scalar_shift),
26326 ToC("sqshll", ea51013f, 3, (RRe, RRo, I32), mve_scalar_shift),
26327 ToC("uqrshl", ea500f0d, 2, (RRnpcsp, RRnpcsp), mve_scalar_shift),
26328 ToC("sqrshr", ea500f2d, 2, (RRnpcsp, RRnpcsp), mve_scalar_shift),
26329 ToC("uqshl", ea500f0f, 2, (RRnpcsp, I32), mve_scalar_shift),
26330 ToC("urshr", ea500f1f, 2, (RRnpcsp, I32), mve_scalar_shift),
26331 ToC("srshr", ea500f2f, 2, (RRnpcsp, I32), mve_scalar_shift),
26332 ToC("sqshl", ea500f3f, 2, (RRnpcsp, I32), mve_scalar_shift),
26333
26334 ToC("vpt", ee410f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26335 ToC("vptt", ee018f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26336 ToC("vpte", ee418f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26337 ToC("vpttt", ee014f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26338 ToC("vptte", ee01cf00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26339 ToC("vptet", ee41cf00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26340 ToC("vptee", ee414f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26341 ToC("vptttt", ee012f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26342 ToC("vpttte", ee016f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26343 ToC("vpttet", ee01ef00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26344 ToC("vpttee", ee01af00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26345 ToC("vptett", ee41af00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26346 ToC("vptete", ee41ef00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26347 ToC("vpteet", ee416f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26348 ToC("vpteee", ee412f00, 3, (COND, RMQ, RMQRZ), mve_vpt),
26349
26350 ToC("vpst", fe710f4d, 0, (), mve_vpt),
26351 ToC("vpstt", fe318f4d, 0, (), mve_vpt),
26352 ToC("vpste", fe718f4d, 0, (), mve_vpt),
26353 ToC("vpsttt", fe314f4d, 0, (), mve_vpt),
26354 ToC("vpstte", fe31cf4d, 0, (), mve_vpt),
26355 ToC("vpstet", fe71cf4d, 0, (), mve_vpt),
26356 ToC("vpstee", fe714f4d, 0, (), mve_vpt),
26357 ToC("vpstttt", fe312f4d, 0, (), mve_vpt),
26358 ToC("vpsttte", fe316f4d, 0, (), mve_vpt),
26359 ToC("vpsttet", fe31ef4d, 0, (), mve_vpt),
26360 ToC("vpsttee", fe31af4d, 0, (), mve_vpt),
26361 ToC("vpstett", fe71af4d, 0, (), mve_vpt),
26362 ToC("vpstete", fe71ef4d, 0, (), mve_vpt),
26363 ToC("vpsteet", fe716f4d, 0, (), mve_vpt),
26364 ToC("vpsteee", fe712f4d, 0, (), mve_vpt),
26365
26366 /* MVE and MVE FP only. */
26367 mToC("vhcadd", ee000f00, 4, (RMQ, RMQ, RMQ, EXPi), mve_vhcadd),
26368 mCEF(vctp, _vctp, 1, (RRnpc), mve_vctp),
26369 mCEF(vadc, _vadc, 3, (RMQ, RMQ, RMQ), mve_vadc),
26370 mCEF(vadci, _vadci, 3, (RMQ, RMQ, RMQ), mve_vadc),
26371 mToC("vsbc", fe300f00, 3, (RMQ, RMQ, RMQ), mve_vsbc),
26372 mToC("vsbci", fe301f00, 3, (RMQ, RMQ, RMQ), mve_vsbc),
26373 mCEF(vmullb, _vmullb, 3, (RMQ, RMQ, RMQ), mve_vmull),
26374 mCEF(vabav, _vabav, 3, (RRnpcsp, RMQ, RMQ), mve_vabav),
26375 mCEF(vmladav, _vmladav, 3, (RRe, RMQ, RMQ), mve_vmladav),
26376 mCEF(vmladava, _vmladava, 3, (RRe, RMQ, RMQ), mve_vmladav),
26377 mCEF(vmladavx, _vmladavx, 3, (RRe, RMQ, RMQ), mve_vmladav),
26378 mCEF(vmladavax, _vmladavax, 3, (RRe, RMQ, RMQ), mve_vmladav),
26379 mCEF(vmlav, _vmladav, 3, (RRe, RMQ, RMQ), mve_vmladav),
26380 mCEF(vmlava, _vmladava, 3, (RRe, RMQ, RMQ), mve_vmladav),
26381 mCEF(vmlsdav, _vmlsdav, 3, (RRe, RMQ, RMQ), mve_vmladav),
26382 mCEF(vmlsdava, _vmlsdava, 3, (RRe, RMQ, RMQ), mve_vmladav),
26383 mCEF(vmlsdavx, _vmlsdavx, 3, (RRe, RMQ, RMQ), mve_vmladav),
26384 mCEF(vmlsdavax, _vmlsdavax, 3, (RRe, RMQ, RMQ), mve_vmladav),
26385
26386 mCEF(vst20, _vst20, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
26387 mCEF(vst21, _vst21, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
26388 mCEF(vst40, _vst40, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26389 mCEF(vst41, _vst41, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26390 mCEF(vst42, _vst42, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26391 mCEF(vst43, _vst43, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26392 mCEF(vld20, _vld20, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
26393 mCEF(vld21, _vld21, 2, (MSTRLST2, ADDRMVE), mve_vst_vld),
26394 mCEF(vld40, _vld40, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26395 mCEF(vld41, _vld41, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26396 mCEF(vld42, _vld42, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26397 mCEF(vld43, _vld43, 2, (MSTRLST4, ADDRMVE), mve_vst_vld),
26398 mCEF(vstrb, _vstrb, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26399 mCEF(vstrh, _vstrh, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26400 mCEF(vstrw, _vstrw, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26401 mCEF(vstrd, _vstrd, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26402 mCEF(vldrb, _vldrb, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26403 mCEF(vldrh, _vldrh, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26404 mCEF(vldrw, _vldrw, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26405 mCEF(vldrd, _vldrd, 2, (RMQ, ADDRMVE), mve_vstr_vldr),
26406
26407 mCEF(vmovnt, _vmovnt, 2, (RMQ, RMQ), mve_movn),
26408 mCEF(vmovnb, _vmovnb, 2, (RMQ, RMQ), mve_movn),
26409 mCEF(vbrsr, _vbrsr, 3, (RMQ, RMQ, RR), mve_vbrsr),
26410 mCEF(vaddlv, _vaddlv, 3, (RRe, RRo, RMQ), mve_vaddlv),
26411 mCEF(vaddlva, _vaddlva, 3, (RRe, RRo, RMQ), mve_vaddlv),
26412 mCEF(vaddv, _vaddv, 2, (RRe, RMQ), mve_vaddv),
26413 mCEF(vaddva, _vaddva, 2, (RRe, RMQ), mve_vaddv),
26414 mCEF(vddup, _vddup, 3, (RMQ, RRe, EXPi), mve_viddup),
26415 mCEF(vdwdup, _vdwdup, 4, (RMQ, RRe, RR, EXPi), mve_viddup),
26416 mCEF(vidup, _vidup, 3, (RMQ, RRe, EXPi), mve_viddup),
26417 mCEF(viwdup, _viwdup, 4, (RMQ, RRe, RR, EXPi), mve_viddup),
26418 mToC("vmaxa", ee330e81, 2, (RMQ, RMQ), mve_vmaxa_vmina),
26419 mToC("vmina", ee331e81, 2, (RMQ, RMQ), mve_vmaxa_vmina),
26420 mCEF(vmaxv, _vmaxv, 2, (RR, RMQ), mve_vmaxv),
26421 mCEF(vmaxav, _vmaxav, 2, (RR, RMQ), mve_vmaxv),
26422 mCEF(vminv, _vminv, 2, (RR, RMQ), mve_vmaxv),
26423 mCEF(vminav, _vminav, 2, (RR, RMQ), mve_vmaxv),
26424
26425 mCEF(vmlaldav, _vmlaldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26426 mCEF(vmlaldava, _vmlaldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26427 mCEF(vmlaldavx, _vmlaldavx, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26428 mCEF(vmlaldavax, _vmlaldavax, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26429 mCEF(vmlalv, _vmlaldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26430 mCEF(vmlalva, _vmlaldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26431 mCEF(vmlsldav, _vmlsldav, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26432 mCEF(vmlsldava, _vmlsldava, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26433 mCEF(vmlsldavx, _vmlsldavx, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26434 mCEF(vmlsldavax, _vmlsldavax, 4, (RRe, RRo, RMQ, RMQ), mve_vmlaldav),
26435 mToC("vrmlaldavh", ee800f00, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26436 mToC("vrmlaldavha",ee800f20, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26437 mCEF(vrmlaldavhx, _vrmlaldavhx, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26438 mCEF(vrmlaldavhax, _vrmlaldavhax, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26439 mToC("vrmlalvh", ee800f00, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26440 mToC("vrmlalvha", ee800f20, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26441 mCEF(vrmlsldavh, _vrmlsldavh, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26442 mCEF(vrmlsldavha, _vrmlsldavha, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26443 mCEF(vrmlsldavhx, _vrmlsldavhx, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26444 mCEF(vrmlsldavhax, _vrmlsldavhax, 4, (RRe, RR, RMQ, RMQ), mve_vrmlaldavh),
26445
26446 mToC("vmlas", ee011e40, 3, (RMQ, RMQ, RR), mve_vmlas),
26447 mToC("vmulh", ee010e01, 3, (RMQ, RMQ, RMQ), mve_vmulh),
26448 mToC("vrmulh", ee011e01, 3, (RMQ, RMQ, RMQ), mve_vmulh),
26449 mToC("vpnot", fe310f4d, 0, (), mve_vpnot),
26450 mToC("vpsel", fe310f01, 3, (RMQ, RMQ, RMQ), mve_vpsel),
26451
26452 mToC("vqdmladh", ee000e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26453 mToC("vqdmladhx", ee001e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26454 mToC("vqrdmladh", ee000e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26455 mToC("vqrdmladhx",ee001e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26456 mToC("vqdmlsdh", fe000e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26457 mToC("vqdmlsdhx", fe001e00, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26458 mToC("vqrdmlsdh", fe000e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26459 mToC("vqrdmlsdhx",fe001e01, 3, (RMQ, RMQ, RMQ), mve_vqdmladh),
26460 mToC("vqdmlah", ee000e60, 3, (RMQ, RMQ, RR), mve_vqdmlah),
26461 mToC("vqdmlash", ee001e60, 3, (RMQ, RMQ, RR), mve_vqdmlah),
26462 mToC("vqrdmlash", ee001e40, 3, (RMQ, RMQ, RR), mve_vqdmlah),
26463 mToC("vqdmullt", ee301f00, 3, (RMQ, RMQ, RMQRR), mve_vqdmull),
26464 mToC("vqdmullb", ee300f00, 3, (RMQ, RMQ, RMQRR), mve_vqdmull),
26465 mCEF(vqmovnt, _vqmovnt, 2, (RMQ, RMQ), mve_vqmovn),
26466 mCEF(vqmovnb, _vqmovnb, 2, (RMQ, RMQ), mve_vqmovn),
26467 mCEF(vqmovunt, _vqmovunt, 2, (RMQ, RMQ), mve_vqmovn),
26468 mCEF(vqmovunb, _vqmovunb, 2, (RMQ, RMQ), mve_vqmovn),
26469
26470 mCEF(vshrnt, _vshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26471 mCEF(vshrnb, _vshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26472 mCEF(vrshrnt, _vrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26473 mCEF(vrshrnb, _vrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26474 mCEF(vqshrnt, _vqrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26475 mCEF(vqshrnb, _vqrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26476 mCEF(vqshrunt, _vqrshrunt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26477 mCEF(vqshrunb, _vqrshrunb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26478 mCEF(vqrshrnt, _vqrshrnt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26479 mCEF(vqrshrnb, _vqrshrnb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26480 mCEF(vqrshrunt, _vqrshrunt, 3, (RMQ, RMQ, I32z), mve_vshrn),
26481 mCEF(vqrshrunb, _vqrshrunb, 3, (RMQ, RMQ, I32z), mve_vshrn),
26482
26483 mToC("vshlc", eea00fc0, 3, (RMQ, RR, I32z), mve_vshlc),
26484 mToC("vshllt", ee201e00, 3, (RMQ, RMQ, I32), mve_vshll),
26485 mToC("vshllb", ee200e00, 3, (RMQ, RMQ, I32), mve_vshll),
26486
26487 toU("dlstp", _dlstp, 2, (LR, RR), t_loloop),
26488 toU("wlstp", _wlstp, 3, (LR, RR, EXP), t_loloop),
26489 toU("letp", _letp, 2, (LR, EXP), t_loloop),
26490 toU("lctp", _lctp, 0, (), t_loloop),
26491
26492 #undef THUMB_VARIANT
26493 #define THUMB_VARIANT & mve_fp_ext
26494 mToC("vcmul", ee300e00, 4, (RMQ, RMQ, RMQ, EXPi), mve_vcmul),
26495 mToC("vfmas", ee311e40, 3, (RMQ, RMQ, RR), mve_vfmas),
26496 mToC("vmaxnma", ee3f0e81, 2, (RMQ, RMQ), mve_vmaxnma_vminnma),
26497 mToC("vminnma", ee3f1e81, 2, (RMQ, RMQ), mve_vmaxnma_vminnma),
26498 mToC("vmaxnmv", eeee0f00, 2, (RR, RMQ), mve_vmaxnmv),
26499 mToC("vmaxnmav",eeec0f00, 2, (RR, RMQ), mve_vmaxnmv),
26500 mToC("vminnmv", eeee0f80, 2, (RR, RMQ), mve_vmaxnmv),
26501 mToC("vminnmav",eeec0f80, 2, (RR, RMQ), mve_vmaxnmv),
26502
26503 #undef ARM_VARIANT
26504 #define ARM_VARIANT & fpu_vfp_ext_v1
26505 #undef THUMB_VARIANT
26506 #define THUMB_VARIANT & arm_ext_v6t2
26507 mnCEF(vmla, _vmla, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ_RR), neon_mac_maybe_scalar),
26508 mnCEF(vmul, _vmul, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ_RR), neon_mul),
26509
26510 mcCE(fcpyd, eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
26511
26512 #undef ARM_VARIANT
26513 #define ARM_VARIANT & fpu_vfp_ext_v1xd
26514
26515 MNCE(vmov, 0, 1, (VMOV), neon_mov),
26516 mcCE(fmrs, e100a10, 2, (RR, RVS), vfp_reg_from_sp),
26517 mcCE(fmsr, e000a10, 2, (RVS, RR), vfp_sp_from_reg),
26518 mcCE(fcpys, eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
26519
26520 mCEF(vmullt, _vmullt, 3, (RNSDQMQ, oRNSDQMQ, RNSDQ_RNSC_MQ), mve_vmull),
26521 mnCEF(vadd, _vadd, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_addsub_if_i),
26522 mnCEF(vsub, _vsub, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQR), neon_addsub_if_i),
26523
26524 MNCEF(vabs, 1b10300, 2, (RNSDQMQ, RNSDQMQ), neon_abs_neg),
26525 MNCEF(vneg, 1b10380, 2, (RNSDQMQ, RNSDQMQ), neon_abs_neg),
26526
26527 mCEF(vmovlt, _vmovlt, 1, (VMOV), mve_movl),
26528 mCEF(vmovlb, _vmovlb, 1, (VMOV), mve_movl),
26529
26530 mnCE(vcmp, _vcmp, 3, (RVSD_COND, RSVDMQ_FI0, oRMQRZ), vfp_nsyn_cmp),
26531 mnCE(vcmpe, _vcmpe, 3, (RVSD_COND, RSVDMQ_FI0, oRMQRZ), vfp_nsyn_cmp),
26532
26533 #undef ARM_VARIANT
26534 #define ARM_VARIANT & fpu_vfp_ext_v2
26535
26536 mcCE(fmsrr, c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
26537 mcCE(fmrrs, c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
26538 mcCE(fmdrr, c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
26539 mcCE(fmrrd, c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
26540
26541 #undef ARM_VARIANT
26542 #define ARM_VARIANT & fpu_vfp_ext_armv8xd
26543 mnUF(vcvta, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvta),
26544 mnUF(vcvtp, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvtp),
26545 mnUF(vcvtn, _vcvta, 3, (RNSDQMQ, oRNSDQMQ, oI32z), neon_cvtn),
26546 mnUF(vcvtm, _vcvta, 2, (RNSDQMQ, oRNSDQMQ), neon_cvtm),
26547 mnUF(vmaxnm, _vmaxnm, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), vmaxnm),
26548 mnUF(vminnm, _vminnm, 3, (RNSDQMQ, oRNSDQMQ, RNSDQMQ), vmaxnm),
26549
26550 #undef ARM_VARIANT
26551 #define ARM_VARIANT & fpu_neon_ext_v1
26552 mnUF(vabd, _vabd, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
26553 mnUF(vabdl, _vabdl, 3, (RNQMQ, RNDMQ, RNDMQ), neon_dyadic_long),
26554 mnUF(vaddl, _vaddl, 3, (RNSDQMQ, oRNSDMQ, RNSDMQR), neon_dyadic_long),
26555 mnUF(vsubl, _vsubl, 3, (RNSDQMQ, oRNSDMQ, RNSDMQR), neon_dyadic_long),
26556 mnUF(vand, _vand, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
26557 mnUF(vbic, _vbic, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
26558 mnUF(vorr, _vorr, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
26559 mnUF(vorn, _vorn, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_Ibig), neon_logic),
26560 mnUF(veor, _veor, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_logic),
26561 MNUF(vcls, 1b00400, 2, (RNDQMQ, RNDQMQ), neon_cls),
26562 MNUF(vclz, 1b00480, 2, (RNDQMQ, RNDQMQ), neon_clz),
26563 mnCE(vdup, _vdup, 2, (RNDQMQ, RR_RNSC), neon_dup),
26564 MNUF(vhadd, 00000000, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i_su),
26565 MNUF(vrhadd, 00000100, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_i_su),
26566 MNUF(vhsub, 00000200, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i_su),
26567 mnUF(vmin, _vmin, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
26568 mnUF(vmax, _vmax, 3, (RNDQMQ, oRNDQMQ, RNDQMQ), neon_dyadic_if_su),
26569 MNUF(vqadd, 0000010, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i64_su),
26570 MNUF(vqsub, 0000210, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_dyadic_i64_su),
26571 mnUF(vmvn, _vmvn, 2, (RNDQMQ, RNDQMQ_Ibig), neon_mvn),
26572 MNUF(vqabs, 1b00700, 2, (RNDQMQ, RNDQMQ), neon_sat_abs_neg),
26573 MNUF(vqneg, 1b00780, 2, (RNDQMQ, RNDQMQ), neon_sat_abs_neg),
26574 mnUF(vqrdmlah, _vqrdmlah,3, (RNDQMQ, oRNDQMQ, RNDQ_RNSC_RR), neon_qrdmlah),
26575 mnUF(vqdmulh, _vqdmulh, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_RNSC_RR), neon_qdmulh),
26576 mnUF(vqrdmulh, _vqrdmulh,3, (RNDQMQ, oRNDQMQ, RNDQMQ_RNSC_RR), neon_qdmulh),
26577 MNUF(vqrshl, 0000510, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_rshl),
26578 MNUF(vrshl, 0000500, 3, (RNDQMQ, oRNDQMQ, RNDQMQR), neon_rshl),
26579 MNUF(vshr, 0800010, 3, (RNDQMQ, oRNDQMQ, I64z), neon_rshift_round_imm),
26580 MNUF(vrshr, 0800210, 3, (RNDQMQ, oRNDQMQ, I64z), neon_rshift_round_imm),
26581 MNUF(vsli, 1800510, 3, (RNDQMQ, oRNDQMQ, I63), neon_sli),
26582 MNUF(vsri, 1800410, 3, (RNDQMQ, oRNDQMQ, I64z), neon_sri),
26583 MNUF(vrev64, 1b00000, 2, (RNDQMQ, RNDQMQ), neon_rev),
26584 MNUF(vrev32, 1b00080, 2, (RNDQMQ, RNDQMQ), neon_rev),
26585 MNUF(vrev16, 1b00100, 2, (RNDQMQ, RNDQMQ), neon_rev),
26586 mnUF(vshl, _vshl, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_I63b_RR), neon_shl),
26587 mnUF(vqshl, _vqshl, 3, (RNDQMQ, oRNDQMQ, RNDQMQ_I63b_RR), neon_qshl),
26588 MNUF(vqshlu, 1800610, 3, (RNDQMQ, oRNDQMQ, I63), neon_qshlu_imm),
26589
26590 #undef ARM_VARIANT
26591 #define ARM_VARIANT & arm_ext_v8_3
26592 #undef THUMB_VARIANT
26593 #define THUMB_VARIANT & arm_ext_v6t2_v8m
26594 MNUF (vcadd, 0, 4, (RNDQMQ, RNDQMQ, RNDQMQ, EXPi), vcadd),
26595 MNUF (vcmla, 0, 4, (RNDQMQ, RNDQMQ, RNDQMQ_RNSC, EXPi), vcmla),
26596
26597 #undef ARM_VARIANT
26598 #define ARM_VARIANT &arm_ext_bf16
26599 #undef THUMB_VARIANT
26600 #define THUMB_VARIANT &arm_ext_bf16
26601 TUF ("vdot", c000d00, fc000d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), vdot, vdot),
26602 TUF ("vmmla", c000c40, fc000c40, 3, (RNQ, RNQ, RNQ), vmmla, vmmla),
26603 TUF ("vfmab", c300810, fc300810, 3, (RNDQ, RNDQ, RNDQ_RNSC), bfloat_vfma, bfloat_vfma),
26604
26605 #undef ARM_VARIANT
26606 #define ARM_VARIANT &arm_ext_i8mm
26607 #undef THUMB_VARIANT
26608 #define THUMB_VARIANT &arm_ext_i8mm
26609 TUF ("vsmmla", c200c40, fc200c40, 3, (RNQ, RNQ, RNQ), vsmmla, vsmmla),
26610 TUF ("vummla", c200c50, fc200c50, 3, (RNQ, RNQ, RNQ), vummla, vummla),
26611 TUF ("vusmmla", ca00c40, fca00c40, 3, (RNQ, RNQ, RNQ), vsmmla, vsmmla),
26612 TUF ("vusdot", c800d00, fc800d00, 3, (RNDQ, RNDQ, RNDQ_RNSC), vusdot, vusdot),
26613 TUF ("vsudot", c800d10, fc800d10, 3, (RNDQ, RNDQ, RNSC), vsudot, vsudot),
26614
26615 #undef ARM_VARIANT
26616 #undef THUMB_VARIANT
26617 #define THUMB_VARIANT &arm_ext_cde
26618 ToC ("cx1", ee000000, 3, (RCP, APSR_RR, I8191), cx1),
26619 ToC ("cx1a", fe000000, 3, (RCP, APSR_RR, I8191), cx1a),
26620 ToC ("cx1d", ee000040, 4, (RCP, RR, APSR_RR, I8191), cx1d),
26621 ToC ("cx1da", fe000040, 4, (RCP, RR, APSR_RR, I8191), cx1da),
26622
26623 ToC ("cx2", ee400000, 4, (RCP, APSR_RR, APSR_RR, I511), cx2),
26624 ToC ("cx2a", fe400000, 4, (RCP, APSR_RR, APSR_RR, I511), cx2a),
26625 ToC ("cx2d", ee400040, 5, (RCP, RR, APSR_RR, APSR_RR, I511), cx2d),
26626 ToC ("cx2da", fe400040, 5, (RCP, RR, APSR_RR, APSR_RR, I511), cx2da),
26627
26628 ToC ("cx3", ee800000, 5, (RCP, APSR_RR, APSR_RR, APSR_RR, I63), cx3),
26629 ToC ("cx3a", fe800000, 5, (RCP, APSR_RR, APSR_RR, APSR_RR, I63), cx3a),
26630 ToC ("cx3d", ee800040, 6, (RCP, RR, APSR_RR, APSR_RR, APSR_RR, I63), cx3d),
26631 ToC ("cx3da", fe800040, 6, (RCP, RR, APSR_RR, APSR_RR, APSR_RR, I63), cx3da),
26632
26633 mToC ("vcx1", ec200000, 3, (RCP, RNSDMQ, I4095), vcx1),
26634 mToC ("vcx1a", fc200000, 3, (RCP, RNSDMQ, I4095), vcx1),
26635
26636 mToC ("vcx2", ec300000, 4, (RCP, RNSDMQ, RNSDMQ, I127), vcx2),
26637 mToC ("vcx2a", fc300000, 4, (RCP, RNSDMQ, RNSDMQ, I127), vcx2),
26638
26639 mToC ("vcx3", ec800000, 5, (RCP, RNSDMQ, RNSDMQ, RNSDMQ, I15), vcx3),
26640 mToC ("vcx3a", fc800000, 5, (RCP, RNSDMQ, RNSDMQ, RNSDMQ, I15), vcx3),
26641 };
26642
26643 #undef ARM_VARIANT
26644 #undef THUMB_VARIANT
26645 #undef TCE
26646 #undef TUE
26647 #undef TUF
26648 #undef TCC
26649 #undef cCE
26650 #undef cCL
26651 #undef C3E
26652 #undef C3
26653 #undef CE
26654 #undef CM
26655 #undef CL
26656 #undef UE
26657 #undef UF
26658 #undef UT
26659 #undef NUF
26660 #undef nUF
26661 #undef NCE
26662 #undef nCE
26663 #undef OPS0
26664 #undef OPS1
26665 #undef OPS2
26666 #undef OPS3
26667 #undef OPS4
26668 #undef OPS5
26669 #undef OPS6
26670 #undef do_0
26671 #undef ToC
26672 #undef toC
26673 #undef ToU
26674 #undef toU
26675 \f
26676 /* MD interface: bits in the object file. */
26677
26678 /* Turn an integer of n bytes (in val) into a stream of bytes appropriate
26679 for use in the a.out file, and stores them in the array pointed to by buf.
26680 This knows about the endian-ness of the target machine and does
26681 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
26682 2 (short) and 4 (long) Floating numbers are put out as a series of
26683 LITTLENUMS (shorts, here at least). */
26684
26685 void
26686 md_number_to_chars (char * buf, valueT val, int n)
26687 {
26688 if (target_big_endian)
26689 number_to_chars_bigendian (buf, val, n);
26690 else
26691 number_to_chars_littleendian (buf, val, n);
26692 }
26693
26694 static valueT
26695 md_chars_to_number (char * buf, int n)
26696 {
26697 valueT result = 0;
26698 unsigned char * where = (unsigned char *) buf;
26699
26700 if (target_big_endian)
26701 {
26702 while (n--)
26703 {
26704 result <<= 8;
26705 result |= (*where++ & 255);
26706 }
26707 }
26708 else
26709 {
26710 while (n--)
26711 {
26712 result <<= 8;
26713 result |= (where[n] & 255);
26714 }
26715 }
26716
26717 return result;
26718 }
26719
26720 /* MD interface: Sections. */
26721
26722 /* Calculate the maximum variable size (i.e., excluding fr_fix)
26723 that an rs_machine_dependent frag may reach. */
26724
26725 unsigned int
26726 arm_frag_max_var (fragS *fragp)
26727 {
26728 /* We only use rs_machine_dependent for variable-size Thumb instructions,
26729 which are either THUMB_SIZE (2) or INSN_SIZE (4).
26730
26731 Note that we generate relaxable instructions even for cases that don't
26732 really need it, like an immediate that's a trivial constant. So we're
26733 overestimating the instruction size for some of those cases. Rather
26734 than putting more intelligence here, it would probably be better to
26735 avoid generating a relaxation frag in the first place when it can be
26736 determined up front that a short instruction will suffice. */
26737
26738 gas_assert (fragp->fr_type == rs_machine_dependent);
26739 return INSN_SIZE;
26740 }
26741
26742 /* Estimate the size of a frag before relaxing. Assume everything fits in
26743 2 bytes. */
26744
26745 int
26746 md_estimate_size_before_relax (fragS * fragp,
26747 segT segtype ATTRIBUTE_UNUSED)
26748 {
26749 fragp->fr_var = 2;
26750 return 2;
26751 }
26752
26753 /* Convert a machine dependent frag. */
26754
26755 void
26756 md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
26757 {
26758 unsigned long insn;
26759 unsigned long old_op;
26760 char *buf;
26761 expressionS exp;
26762 fixS *fixp;
26763 int reloc_type;
26764 int pc_rel;
26765 int opcode;
26766
26767 buf = fragp->fr_literal + fragp->fr_fix;
26768
26769 old_op = bfd_get_16(abfd, buf);
26770 if (fragp->fr_symbol)
26771 {
26772 exp.X_op = O_symbol;
26773 exp.X_add_symbol = fragp->fr_symbol;
26774 }
26775 else
26776 {
26777 exp.X_op = O_constant;
26778 }
26779 exp.X_add_number = fragp->fr_offset;
26780 opcode = fragp->fr_subtype;
26781 switch (opcode)
26782 {
26783 case T_MNEM_ldr_pc:
26784 case T_MNEM_ldr_pc2:
26785 case T_MNEM_ldr_sp:
26786 case T_MNEM_str_sp:
26787 case T_MNEM_ldr:
26788 case T_MNEM_ldrb:
26789 case T_MNEM_ldrh:
26790 case T_MNEM_str:
26791 case T_MNEM_strb:
26792 case T_MNEM_strh:
26793 if (fragp->fr_var == 4)
26794 {
26795 insn = THUMB_OP32 (opcode);
26796 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
26797 {
26798 insn |= (old_op & 0x700) << 4;
26799 }
26800 else
26801 {
26802 insn |= (old_op & 7) << 12;
26803 insn |= (old_op & 0x38) << 13;
26804 }
26805 insn |= 0x00000c00;
26806 put_thumb32_insn (buf, insn);
26807 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
26808 }
26809 else
26810 {
26811 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
26812 }
26813 pc_rel = (opcode == T_MNEM_ldr_pc2);
26814 break;
26815 case T_MNEM_adr:
26816 if (fragp->fr_var == 4)
26817 {
26818 insn = THUMB_OP32 (opcode);
26819 insn |= (old_op & 0xf0) << 4;
26820 put_thumb32_insn (buf, insn);
26821 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
26822 }
26823 else
26824 {
26825 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
26826 exp.X_add_number -= 4;
26827 }
26828 pc_rel = 1;
26829 break;
26830 case T_MNEM_mov:
26831 case T_MNEM_movs:
26832 case T_MNEM_cmp:
26833 case T_MNEM_cmn:
26834 if (fragp->fr_var == 4)
26835 {
26836 int r0off = (opcode == T_MNEM_mov
26837 || opcode == T_MNEM_movs) ? 0 : 8;
26838 insn = THUMB_OP32 (opcode);
26839 insn = (insn & 0xe1ffffff) | 0x10000000;
26840 insn |= (old_op & 0x700) << r0off;
26841 put_thumb32_insn (buf, insn);
26842 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
26843 }
26844 else
26845 {
26846 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
26847 }
26848 pc_rel = 0;
26849 break;
26850 case T_MNEM_b:
26851 if (fragp->fr_var == 4)
26852 {
26853 insn = THUMB_OP32(opcode);
26854 put_thumb32_insn (buf, insn);
26855 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
26856 }
26857 else
26858 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
26859 pc_rel = 1;
26860 break;
26861 case T_MNEM_bcond:
26862 if (fragp->fr_var == 4)
26863 {
26864 insn = THUMB_OP32(opcode);
26865 insn |= (old_op & 0xf00) << 14;
26866 put_thumb32_insn (buf, insn);
26867 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
26868 }
26869 else
26870 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
26871 pc_rel = 1;
26872 break;
26873 case T_MNEM_add_sp:
26874 case T_MNEM_add_pc:
26875 case T_MNEM_inc_sp:
26876 case T_MNEM_dec_sp:
26877 if (fragp->fr_var == 4)
26878 {
26879 /* ??? Choose between add and addw. */
26880 insn = THUMB_OP32 (opcode);
26881 insn |= (old_op & 0xf0) << 4;
26882 put_thumb32_insn (buf, insn);
26883 if (opcode == T_MNEM_add_pc)
26884 reloc_type = BFD_RELOC_ARM_T32_IMM12;
26885 else
26886 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
26887 }
26888 else
26889 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
26890 pc_rel = 0;
26891 break;
26892
26893 case T_MNEM_addi:
26894 case T_MNEM_addis:
26895 case T_MNEM_subi:
26896 case T_MNEM_subis:
26897 if (fragp->fr_var == 4)
26898 {
26899 insn = THUMB_OP32 (opcode);
26900 insn |= (old_op & 0xf0) << 4;
26901 insn |= (old_op & 0xf) << 16;
26902 put_thumb32_insn (buf, insn);
26903 if (insn & (1 << 20))
26904 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
26905 else
26906 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
26907 }
26908 else
26909 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
26910 pc_rel = 0;
26911 break;
26912 default:
26913 abort ();
26914 }
26915 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
26916 (enum bfd_reloc_code_real) reloc_type);
26917 fixp->fx_file = fragp->fr_file;
26918 fixp->fx_line = fragp->fr_line;
26919 fragp->fr_fix += fragp->fr_var;
26920
26921 /* Set whether we use thumb-2 ISA based on final relaxation results. */
26922 if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
26923 && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
26924 ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
26925 }
26926
26927 /* Return the size of a relaxable immediate operand instruction.
26928 SHIFT and SIZE specify the form of the allowable immediate. */
26929 static int
26930 relax_immediate (fragS *fragp, int size, int shift)
26931 {
26932 offsetT offset;
26933 offsetT mask;
26934 offsetT low;
26935
26936 /* ??? Should be able to do better than this. */
26937 if (fragp->fr_symbol)
26938 return 4;
26939
26940 low = (1 << shift) - 1;
26941 mask = (1 << (shift + size)) - (1 << shift);
26942 offset = fragp->fr_offset;
26943 /* Force misaligned offsets to 32-bit variant. */
26944 if (offset & low)
26945 return 4;
26946 if (offset & ~mask)
26947 return 4;
26948 return 2;
26949 }
26950
26951 /* Get the address of a symbol during relaxation. */
26952 static addressT
26953 relaxed_symbol_addr (fragS *fragp, long stretch)
26954 {
26955 fragS *sym_frag;
26956 addressT addr;
26957 symbolS *sym;
26958
26959 sym = fragp->fr_symbol;
26960 sym_frag = symbol_get_frag (sym);
26961 know (S_GET_SEGMENT (sym) != absolute_section
26962 || sym_frag == &zero_address_frag);
26963 addr = S_GET_VALUE (sym) + fragp->fr_offset;
26964
26965 /* If frag has yet to be reached on this pass, assume it will
26966 move by STRETCH just as we did. If this is not so, it will
26967 be because some frag between grows, and that will force
26968 another pass. */
26969
26970 if (stretch != 0
26971 && sym_frag->relax_marker != fragp->relax_marker)
26972 {
26973 fragS *f;
26974
26975 /* Adjust stretch for any alignment frag. Note that if have
26976 been expanding the earlier code, the symbol may be
26977 defined in what appears to be an earlier frag. FIXME:
26978 This doesn't handle the fr_subtype field, which specifies
26979 a maximum number of bytes to skip when doing an
26980 alignment. */
26981 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
26982 {
26983 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
26984 {
26985 if (stretch < 0)
26986 stretch = - ((- stretch)
26987 & ~ ((1 << (int) f->fr_offset) - 1));
26988 else
26989 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
26990 if (stretch == 0)
26991 break;
26992 }
26993 }
26994 if (f != NULL)
26995 addr += stretch;
26996 }
26997
26998 return addr;
26999 }
27000
27001 /* Return the size of a relaxable adr pseudo-instruction or PC-relative
27002 load. */
27003 static int
27004 relax_adr (fragS *fragp, asection *sec, long stretch)
27005 {
27006 addressT addr;
27007 offsetT val;
27008
27009 /* Assume worst case for symbols not known to be in the same section. */
27010 if (fragp->fr_symbol == NULL
27011 || !S_IS_DEFINED (fragp->fr_symbol)
27012 || sec != S_GET_SEGMENT (fragp->fr_symbol)
27013 || S_IS_WEAK (fragp->fr_symbol))
27014 return 4;
27015
27016 val = relaxed_symbol_addr (fragp, stretch);
27017 addr = fragp->fr_address + fragp->fr_fix;
27018 addr = (addr + 4) & ~3;
27019 /* Force misaligned targets to 32-bit variant. */
27020 if (val & 3)
27021 return 4;
27022 val -= addr;
27023 if (val < 0 || val > 1020)
27024 return 4;
27025 return 2;
27026 }
27027
27028 /* Return the size of a relaxable add/sub immediate instruction. */
27029 static int
27030 relax_addsub (fragS *fragp, asection *sec)
27031 {
27032 char *buf;
27033 int op;
27034
27035 buf = fragp->fr_literal + fragp->fr_fix;
27036 op = bfd_get_16(sec->owner, buf);
27037 if ((op & 0xf) == ((op >> 4) & 0xf))
27038 return relax_immediate (fragp, 8, 0);
27039 else
27040 return relax_immediate (fragp, 3, 0);
27041 }
27042
27043 /* Return TRUE iff the definition of symbol S could be pre-empted
27044 (overridden) at link or load time. */
27045 static bfd_boolean
27046 symbol_preemptible (symbolS *s)
27047 {
27048 /* Weak symbols can always be pre-empted. */
27049 if (S_IS_WEAK (s))
27050 return TRUE;
27051
27052 /* Non-global symbols cannot be pre-empted. */
27053 if (! S_IS_EXTERNAL (s))
27054 return FALSE;
27055
27056 #ifdef OBJ_ELF
27057 /* In ELF, a global symbol can be marked protected, or private. In that
27058 case it can't be pre-empted (other definitions in the same link unit
27059 would violate the ODR). */
27060 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
27061 return FALSE;
27062 #endif
27063
27064 /* Other global symbols might be pre-empted. */
27065 return TRUE;
27066 }
27067
27068 /* Return the size of a relaxable branch instruction. BITS is the
27069 size of the offset field in the narrow instruction. */
27070
27071 static int
27072 relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
27073 {
27074 addressT addr;
27075 offsetT val;
27076 offsetT limit;
27077
27078 /* Assume worst case for symbols not known to be in the same section. */
27079 if (!S_IS_DEFINED (fragp->fr_symbol)
27080 || sec != S_GET_SEGMENT (fragp->fr_symbol)
27081 || S_IS_WEAK (fragp->fr_symbol))
27082 return 4;
27083
27084 #ifdef OBJ_ELF
27085 /* A branch to a function in ARM state will require interworking. */
27086 if (S_IS_DEFINED (fragp->fr_symbol)
27087 && ARM_IS_FUNC (fragp->fr_symbol))
27088 return 4;
27089 #endif
27090
27091 if (symbol_preemptible (fragp->fr_symbol))
27092 return 4;
27093
27094 val = relaxed_symbol_addr (fragp, stretch);
27095 addr = fragp->fr_address + fragp->fr_fix + 4;
27096 val -= addr;
27097
27098 /* Offset is a signed value *2 */
27099 limit = 1 << bits;
27100 if (val >= limit || val < -limit)
27101 return 4;
27102 return 2;
27103 }
27104
27105
27106 /* Relax a machine dependent frag. This returns the amount by which
27107 the current size of the frag should change. */
27108
27109 int
27110 arm_relax_frag (asection *sec, fragS *fragp, long stretch)
27111 {
27112 int oldsize;
27113 int newsize;
27114
27115 oldsize = fragp->fr_var;
27116 switch (fragp->fr_subtype)
27117 {
27118 case T_MNEM_ldr_pc2:
27119 newsize = relax_adr (fragp, sec, stretch);
27120 break;
27121 case T_MNEM_ldr_pc:
27122 case T_MNEM_ldr_sp:
27123 case T_MNEM_str_sp:
27124 newsize = relax_immediate (fragp, 8, 2);
27125 break;
27126 case T_MNEM_ldr:
27127 case T_MNEM_str:
27128 newsize = relax_immediate (fragp, 5, 2);
27129 break;
27130 case T_MNEM_ldrh:
27131 case T_MNEM_strh:
27132 newsize = relax_immediate (fragp, 5, 1);
27133 break;
27134 case T_MNEM_ldrb:
27135 case T_MNEM_strb:
27136 newsize = relax_immediate (fragp, 5, 0);
27137 break;
27138 case T_MNEM_adr:
27139 newsize = relax_adr (fragp, sec, stretch);
27140 break;
27141 case T_MNEM_mov:
27142 case T_MNEM_movs:
27143 case T_MNEM_cmp:
27144 case T_MNEM_cmn:
27145 newsize = relax_immediate (fragp, 8, 0);
27146 break;
27147 case T_MNEM_b:
27148 newsize = relax_branch (fragp, sec, 11, stretch);
27149 break;
27150 case T_MNEM_bcond:
27151 newsize = relax_branch (fragp, sec, 8, stretch);
27152 break;
27153 case T_MNEM_add_sp:
27154 case T_MNEM_add_pc:
27155 newsize = relax_immediate (fragp, 8, 2);
27156 break;
27157 case T_MNEM_inc_sp:
27158 case T_MNEM_dec_sp:
27159 newsize = relax_immediate (fragp, 7, 2);
27160 break;
27161 case T_MNEM_addi:
27162 case T_MNEM_addis:
27163 case T_MNEM_subi:
27164 case T_MNEM_subis:
27165 newsize = relax_addsub (fragp, sec);
27166 break;
27167 default:
27168 abort ();
27169 }
27170
27171 fragp->fr_var = newsize;
27172 /* Freeze wide instructions that are at or before the same location as
27173 in the previous pass. This avoids infinite loops.
27174 Don't freeze them unconditionally because targets may be artificially
27175 misaligned by the expansion of preceding frags. */
27176 if (stretch <= 0 && newsize > 2)
27177 {
27178 md_convert_frag (sec->owner, sec, fragp);
27179 frag_wane (fragp);
27180 }
27181
27182 return newsize - oldsize;
27183 }
27184
27185 /* Round up a section size to the appropriate boundary. */
27186
27187 valueT
27188 md_section_align (segT segment ATTRIBUTE_UNUSED,
27189 valueT size)
27190 {
27191 return size;
27192 }
27193
27194 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
27195 of an rs_align_code fragment. */
27196
27197 void
27198 arm_handle_align (fragS * fragP)
27199 {
27200 static unsigned char const arm_noop[2][2][4] =
27201 {
27202 { /* ARMv1 */
27203 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
27204 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
27205 },
27206 { /* ARMv6k */
27207 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
27208 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
27209 },
27210 };
27211 static unsigned char const thumb_noop[2][2][2] =
27212 {
27213 { /* Thumb-1 */
27214 {0xc0, 0x46}, /* LE */
27215 {0x46, 0xc0}, /* BE */
27216 },
27217 { /* Thumb-2 */
27218 {0x00, 0xbf}, /* LE */
27219 {0xbf, 0x00} /* BE */
27220 }
27221 };
27222 static unsigned char const wide_thumb_noop[2][4] =
27223 { /* Wide Thumb-2 */
27224 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
27225 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
27226 };
27227
27228 unsigned bytes, fix, noop_size;
27229 char * p;
27230 const unsigned char * noop;
27231 const unsigned char *narrow_noop = NULL;
27232 #ifdef OBJ_ELF
27233 enum mstate state;
27234 #endif
27235
27236 if (fragP->fr_type != rs_align_code)
27237 return;
27238
27239 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
27240 p = fragP->fr_literal + fragP->fr_fix;
27241 fix = 0;
27242
27243 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
27244 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
27245
27246 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
27247
27248 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
27249 {
27250 if (ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
27251 ? selected_cpu : arm_arch_none, arm_ext_v6t2))
27252 {
27253 narrow_noop = thumb_noop[1][target_big_endian];
27254 noop = wide_thumb_noop[target_big_endian];
27255 }
27256 else
27257 noop = thumb_noop[0][target_big_endian];
27258 noop_size = 2;
27259 #ifdef OBJ_ELF
27260 state = MAP_THUMB;
27261 #endif
27262 }
27263 else
27264 {
27265 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
27266 ? selected_cpu : arm_arch_none,
27267 arm_ext_v6k) != 0]
27268 [target_big_endian];
27269 noop_size = 4;
27270 #ifdef OBJ_ELF
27271 state = MAP_ARM;
27272 #endif
27273 }
27274
27275 fragP->fr_var = noop_size;
27276
27277 if (bytes & (noop_size - 1))
27278 {
27279 fix = bytes & (noop_size - 1);
27280 #ifdef OBJ_ELF
27281 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
27282 #endif
27283 memset (p, 0, fix);
27284 p += fix;
27285 bytes -= fix;
27286 }
27287
27288 if (narrow_noop)
27289 {
27290 if (bytes & noop_size)
27291 {
27292 /* Insert a narrow noop. */
27293 memcpy (p, narrow_noop, noop_size);
27294 p += noop_size;
27295 bytes -= noop_size;
27296 fix += noop_size;
27297 }
27298
27299 /* Use wide noops for the remainder */
27300 noop_size = 4;
27301 }
27302
27303 while (bytes >= noop_size)
27304 {
27305 memcpy (p, noop, noop_size);
27306 p += noop_size;
27307 bytes -= noop_size;
27308 fix += noop_size;
27309 }
27310
27311 fragP->fr_fix += fix;
27312 }
27313
27314 /* Called from md_do_align. Used to create an alignment
27315 frag in a code section. */
27316
27317 void
27318 arm_frag_align_code (int n, int max)
27319 {
27320 char * p;
27321
27322 /* We assume that there will never be a requirement
27323 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
27324 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
27325 {
27326 char err_msg[128];
27327
27328 sprintf (err_msg,
27329 _("alignments greater than %d bytes not supported in .text sections."),
27330 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
27331 as_fatal ("%s", err_msg);
27332 }
27333
27334 p = frag_var (rs_align_code,
27335 MAX_MEM_FOR_RS_ALIGN_CODE,
27336 1,
27337 (relax_substateT) max,
27338 (symbolS *) NULL,
27339 (offsetT) n,
27340 (char *) NULL);
27341 *p = 0;
27342 }
27343
27344 /* Perform target specific initialisation of a frag.
27345 Note - despite the name this initialisation is not done when the frag
27346 is created, but only when its type is assigned. A frag can be created
27347 and used a long time before its type is set, so beware of assuming that
27348 this initialisation is performed first. */
27349
27350 #ifndef OBJ_ELF
27351 void
27352 arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
27353 {
27354 /* Record whether this frag is in an ARM or a THUMB area. */
27355 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
27356 }
27357
27358 #else /* OBJ_ELF is defined. */
27359 void
27360 arm_init_frag (fragS * fragP, int max_chars)
27361 {
27362 bfd_boolean frag_thumb_mode;
27363
27364 /* If the current ARM vs THUMB mode has not already
27365 been recorded into this frag then do so now. */
27366 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
27367 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
27368
27369 /* PR 21809: Do not set a mapping state for debug sections
27370 - it just confuses other tools. */
27371 if (bfd_section_flags (now_seg) & SEC_DEBUGGING)
27372 return;
27373
27374 frag_thumb_mode = fragP->tc_frag_data.thumb_mode ^ MODE_RECORDED;
27375
27376 /* Record a mapping symbol for alignment frags. We will delete this
27377 later if the alignment ends up empty. */
27378 switch (fragP->fr_type)
27379 {
27380 case rs_align:
27381 case rs_align_test:
27382 case rs_fill:
27383 mapping_state_2 (MAP_DATA, max_chars);
27384 break;
27385 case rs_align_code:
27386 mapping_state_2 (frag_thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
27387 break;
27388 default:
27389 break;
27390 }
27391 }
27392
27393 /* When we change sections we need to issue a new mapping symbol. */
27394
27395 void
27396 arm_elf_change_section (void)
27397 {
27398 /* Link an unlinked unwind index table section to the .text section. */
27399 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
27400 && elf_linked_to_section (now_seg) == NULL)
27401 elf_linked_to_section (now_seg) = text_section;
27402 }
27403
27404 int
27405 arm_elf_section_type (const char * str, size_t len)
27406 {
27407 if (len == 5 && strncmp (str, "exidx", 5) == 0)
27408 return SHT_ARM_EXIDX;
27409
27410 return -1;
27411 }
27412 \f
27413 /* Code to deal with unwinding tables. */
27414
27415 static void add_unwind_adjustsp (offsetT);
27416
27417 /* Generate any deferred unwind frame offset. */
27418
27419 static void
27420 flush_pending_unwind (void)
27421 {
27422 offsetT offset;
27423
27424 offset = unwind.pending_offset;
27425 unwind.pending_offset = 0;
27426 if (offset != 0)
27427 add_unwind_adjustsp (offset);
27428 }
27429
27430 /* Add an opcode to this list for this function. Two-byte opcodes should
27431 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
27432 order. */
27433
27434 static void
27435 add_unwind_opcode (valueT op, int length)
27436 {
27437 /* Add any deferred stack adjustment. */
27438 if (unwind.pending_offset)
27439 flush_pending_unwind ();
27440
27441 unwind.sp_restored = 0;
27442
27443 if (unwind.opcode_count + length > unwind.opcode_alloc)
27444 {
27445 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
27446 if (unwind.opcodes)
27447 unwind.opcodes = XRESIZEVEC (unsigned char, unwind.opcodes,
27448 unwind.opcode_alloc);
27449 else
27450 unwind.opcodes = XNEWVEC (unsigned char, unwind.opcode_alloc);
27451 }
27452 while (length > 0)
27453 {
27454 length--;
27455 unwind.opcodes[unwind.opcode_count] = op & 0xff;
27456 op >>= 8;
27457 unwind.opcode_count++;
27458 }
27459 }
27460
27461 /* Add unwind opcodes to adjust the stack pointer. */
27462
27463 static void
27464 add_unwind_adjustsp (offsetT offset)
27465 {
27466 valueT op;
27467
27468 if (offset > 0x200)
27469 {
27470 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
27471 char bytes[5];
27472 int n;
27473 valueT o;
27474
27475 /* Long form: 0xb2, uleb128. */
27476 /* This might not fit in a word so add the individual bytes,
27477 remembering the list is built in reverse order. */
27478 o = (valueT) ((offset - 0x204) >> 2);
27479 if (o == 0)
27480 add_unwind_opcode (0, 1);
27481
27482 /* Calculate the uleb128 encoding of the offset. */
27483 n = 0;
27484 while (o)
27485 {
27486 bytes[n] = o & 0x7f;
27487 o >>= 7;
27488 if (o)
27489 bytes[n] |= 0x80;
27490 n++;
27491 }
27492 /* Add the insn. */
27493 for (; n; n--)
27494 add_unwind_opcode (bytes[n - 1], 1);
27495 add_unwind_opcode (0xb2, 1);
27496 }
27497 else if (offset > 0x100)
27498 {
27499 /* Two short opcodes. */
27500 add_unwind_opcode (0x3f, 1);
27501 op = (offset - 0x104) >> 2;
27502 add_unwind_opcode (op, 1);
27503 }
27504 else if (offset > 0)
27505 {
27506 /* Short opcode. */
27507 op = (offset - 4) >> 2;
27508 add_unwind_opcode (op, 1);
27509 }
27510 else if (offset < 0)
27511 {
27512 offset = -offset;
27513 while (offset > 0x100)
27514 {
27515 add_unwind_opcode (0x7f, 1);
27516 offset -= 0x100;
27517 }
27518 op = ((offset - 4) >> 2) | 0x40;
27519 add_unwind_opcode (op, 1);
27520 }
27521 }
27522
27523 /* Finish the list of unwind opcodes for this function. */
27524
27525 static void
27526 finish_unwind_opcodes (void)
27527 {
27528 valueT op;
27529
27530 if (unwind.fp_used)
27531 {
27532 /* Adjust sp as necessary. */
27533 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
27534 flush_pending_unwind ();
27535
27536 /* After restoring sp from the frame pointer. */
27537 op = 0x90 | unwind.fp_reg;
27538 add_unwind_opcode (op, 1);
27539 }
27540 else
27541 flush_pending_unwind ();
27542 }
27543
27544
27545 /* Start an exception table entry. If idx is nonzero this is an index table
27546 entry. */
27547
27548 static void
27549 start_unwind_section (const segT text_seg, int idx)
27550 {
27551 const char * text_name;
27552 const char * prefix;
27553 const char * prefix_once;
27554 struct elf_section_match match;
27555 char * sec_name;
27556 int type;
27557 int flags;
27558 int linkonce;
27559
27560 if (idx)
27561 {
27562 prefix = ELF_STRING_ARM_unwind;
27563 prefix_once = ELF_STRING_ARM_unwind_once;
27564 type = SHT_ARM_EXIDX;
27565 }
27566 else
27567 {
27568 prefix = ELF_STRING_ARM_unwind_info;
27569 prefix_once = ELF_STRING_ARM_unwind_info_once;
27570 type = SHT_PROGBITS;
27571 }
27572
27573 text_name = segment_name (text_seg);
27574 if (streq (text_name, ".text"))
27575 text_name = "";
27576
27577 if (strncmp (text_name, ".gnu.linkonce.t.",
27578 strlen (".gnu.linkonce.t.")) == 0)
27579 {
27580 prefix = prefix_once;
27581 text_name += strlen (".gnu.linkonce.t.");
27582 }
27583
27584 sec_name = concat (prefix, text_name, (char *) NULL);
27585
27586 flags = SHF_ALLOC;
27587 linkonce = 0;
27588 memset (&match, 0, sizeof (match));
27589
27590 /* Handle COMDAT group. */
27591 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
27592 {
27593 match.group_name = elf_group_name (text_seg);
27594 if (match.group_name == NULL)
27595 {
27596 as_bad (_("Group section `%s' has no group signature"),
27597 segment_name (text_seg));
27598 ignore_rest_of_line ();
27599 return;
27600 }
27601 flags |= SHF_GROUP;
27602 linkonce = 1;
27603 }
27604
27605 obj_elf_change_section (sec_name, type, flags, 0, &match,
27606 linkonce, 0);
27607
27608 /* Set the section link for index tables. */
27609 if (idx)
27610 elf_linked_to_section (now_seg) = text_seg;
27611 }
27612
27613
27614 /* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
27615 personality routine data. Returns zero, or the index table value for
27616 an inline entry. */
27617
27618 static valueT
27619 create_unwind_entry (int have_data)
27620 {
27621 int size;
27622 addressT where;
27623 char *ptr;
27624 /* The current word of data. */
27625 valueT data;
27626 /* The number of bytes left in this word. */
27627 int n;
27628
27629 finish_unwind_opcodes ();
27630
27631 /* Remember the current text section. */
27632 unwind.saved_seg = now_seg;
27633 unwind.saved_subseg = now_subseg;
27634
27635 start_unwind_section (now_seg, 0);
27636
27637 if (unwind.personality_routine == NULL)
27638 {
27639 if (unwind.personality_index == -2)
27640 {
27641 if (have_data)
27642 as_bad (_("handlerdata in cantunwind frame"));
27643 return 1; /* EXIDX_CANTUNWIND. */
27644 }
27645
27646 /* Use a default personality routine if none is specified. */
27647 if (unwind.personality_index == -1)
27648 {
27649 if (unwind.opcode_count > 3)
27650 unwind.personality_index = 1;
27651 else
27652 unwind.personality_index = 0;
27653 }
27654
27655 /* Space for the personality routine entry. */
27656 if (unwind.personality_index == 0)
27657 {
27658 if (unwind.opcode_count > 3)
27659 as_bad (_("too many unwind opcodes for personality routine 0"));
27660
27661 if (!have_data)
27662 {
27663 /* All the data is inline in the index table. */
27664 data = 0x80;
27665 n = 3;
27666 while (unwind.opcode_count > 0)
27667 {
27668 unwind.opcode_count--;
27669 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
27670 n--;
27671 }
27672
27673 /* Pad with "finish" opcodes. */
27674 while (n--)
27675 data = (data << 8) | 0xb0;
27676
27677 return data;
27678 }
27679 size = 0;
27680 }
27681 else
27682 /* We get two opcodes "free" in the first word. */
27683 size = unwind.opcode_count - 2;
27684 }
27685 else
27686 {
27687 /* PR 16765: Missing or misplaced unwind directives can trigger this. */
27688 if (unwind.personality_index != -1)
27689 {
27690 as_bad (_("attempt to recreate an unwind entry"));
27691 return 1;
27692 }
27693
27694 /* An extra byte is required for the opcode count. */
27695 size = unwind.opcode_count + 1;
27696 }
27697
27698 size = (size + 3) >> 2;
27699 if (size > 0xff)
27700 as_bad (_("too many unwind opcodes"));
27701
27702 frag_align (2, 0, 0);
27703 record_alignment (now_seg, 2);
27704 unwind.table_entry = expr_build_dot ();
27705
27706 /* Allocate the table entry. */
27707 ptr = frag_more ((size << 2) + 4);
27708 /* PR 13449: Zero the table entries in case some of them are not used. */
27709 memset (ptr, 0, (size << 2) + 4);
27710 where = frag_now_fix () - ((size << 2) + 4);
27711
27712 switch (unwind.personality_index)
27713 {
27714 case -1:
27715 /* ??? Should this be a PLT generating relocation? */
27716 /* Custom personality routine. */
27717 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
27718 BFD_RELOC_ARM_PREL31);
27719
27720 where += 4;
27721 ptr += 4;
27722
27723 /* Set the first byte to the number of additional words. */
27724 data = size > 0 ? size - 1 : 0;
27725 n = 3;
27726 break;
27727
27728 /* ABI defined personality routines. */
27729 case 0:
27730 /* Three opcodes bytes are packed into the first word. */
27731 data = 0x80;
27732 n = 3;
27733 break;
27734
27735 case 1:
27736 case 2:
27737 /* The size and first two opcode bytes go in the first word. */
27738 data = ((0x80 + unwind.personality_index) << 8) | size;
27739 n = 2;
27740 break;
27741
27742 default:
27743 /* Should never happen. */
27744 abort ();
27745 }
27746
27747 /* Pack the opcodes into words (MSB first), reversing the list at the same
27748 time. */
27749 while (unwind.opcode_count > 0)
27750 {
27751 if (n == 0)
27752 {
27753 md_number_to_chars (ptr, data, 4);
27754 ptr += 4;
27755 n = 4;
27756 data = 0;
27757 }
27758 unwind.opcode_count--;
27759 n--;
27760 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
27761 }
27762
27763 /* Finish off the last word. */
27764 if (n < 4)
27765 {
27766 /* Pad with "finish" opcodes. */
27767 while (n--)
27768 data = (data << 8) | 0xb0;
27769
27770 md_number_to_chars (ptr, data, 4);
27771 }
27772
27773 if (!have_data)
27774 {
27775 /* Add an empty descriptor if there is no user-specified data. */
27776 ptr = frag_more (4);
27777 md_number_to_chars (ptr, 0, 4);
27778 }
27779
27780 return 0;
27781 }
27782
27783
27784 /* Initialize the DWARF-2 unwind information for this procedure. */
27785
27786 void
27787 tc_arm_frame_initial_instructions (void)
27788 {
27789 cfi_add_CFA_def_cfa (REG_SP, 0);
27790 }
27791 #endif /* OBJ_ELF */
27792
27793 /* Convert REGNAME to a DWARF-2 register number. */
27794
27795 int
27796 tc_arm_regname_to_dw2regnum (char *regname)
27797 {
27798 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
27799 if (reg != FAIL)
27800 return reg;
27801
27802 /* PR 16694: Allow VFP registers as well. */
27803 reg = arm_reg_parse (&regname, REG_TYPE_VFS);
27804 if (reg != FAIL)
27805 return 64 + reg;
27806
27807 reg = arm_reg_parse (&regname, REG_TYPE_VFD);
27808 if (reg != FAIL)
27809 return reg + 256;
27810
27811 return FAIL;
27812 }
27813
27814 #ifdef TE_PE
27815 void
27816 tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
27817 {
27818 expressionS exp;
27819
27820 exp.X_op = O_secrel;
27821 exp.X_add_symbol = symbol;
27822 exp.X_add_number = 0;
27823 emit_expr (&exp, size);
27824 }
27825 #endif
27826
27827 /* MD interface: Symbol and relocation handling. */
27828
27829 /* Return the address within the segment that a PC-relative fixup is
27830 relative to. For ARM, PC-relative fixups applied to instructions
27831 are generally relative to the location of the fixup plus 8 bytes.
27832 Thumb branches are offset by 4, and Thumb loads relative to PC
27833 require special handling. */
27834
27835 long
27836 md_pcrel_from_section (fixS * fixP, segT seg)
27837 {
27838 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
27839
27840 /* If this is pc-relative and we are going to emit a relocation
27841 then we just want to put out any pipeline compensation that the linker
27842 will need. Otherwise we want to use the calculated base.
27843 For WinCE we skip the bias for externals as well, since this
27844 is how the MS ARM-CE assembler behaves and we want to be compatible. */
27845 if (fixP->fx_pcrel
27846 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
27847 || (arm_force_relocation (fixP)
27848 #ifdef TE_WINCE
27849 && !S_IS_EXTERNAL (fixP->fx_addsy)
27850 #endif
27851 )))
27852 base = 0;
27853
27854
27855 switch (fixP->fx_r_type)
27856 {
27857 /* PC relative addressing on the Thumb is slightly odd as the
27858 bottom two bits of the PC are forced to zero for the
27859 calculation. This happens *after* application of the
27860 pipeline offset. However, Thumb adrl already adjusts for
27861 this, so we need not do it again. */
27862 case BFD_RELOC_ARM_THUMB_ADD:
27863 return base & ~3;
27864
27865 case BFD_RELOC_ARM_THUMB_OFFSET:
27866 case BFD_RELOC_ARM_T32_OFFSET_IMM:
27867 case BFD_RELOC_ARM_T32_ADD_PC12:
27868 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
27869 return (base + 4) & ~3;
27870
27871 /* Thumb branches are simply offset by +4. */
27872 case BFD_RELOC_THUMB_PCREL_BRANCH5:
27873 case BFD_RELOC_THUMB_PCREL_BRANCH7:
27874 case BFD_RELOC_THUMB_PCREL_BRANCH9:
27875 case BFD_RELOC_THUMB_PCREL_BRANCH12:
27876 case BFD_RELOC_THUMB_PCREL_BRANCH20:
27877 case BFD_RELOC_THUMB_PCREL_BRANCH25:
27878 case BFD_RELOC_THUMB_PCREL_BFCSEL:
27879 case BFD_RELOC_ARM_THUMB_BF17:
27880 case BFD_RELOC_ARM_THUMB_BF19:
27881 case BFD_RELOC_ARM_THUMB_BF13:
27882 case BFD_RELOC_ARM_THUMB_LOOP12:
27883 return base + 4;
27884
27885 case BFD_RELOC_THUMB_PCREL_BRANCH23:
27886 if (fixP->fx_addsy
27887 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27888 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27889 && ARM_IS_FUNC (fixP->fx_addsy)
27890 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
27891 base = fixP->fx_where + fixP->fx_frag->fr_address;
27892 return base + 4;
27893
27894 /* BLX is like branches above, but forces the low two bits of PC to
27895 zero. */
27896 case BFD_RELOC_THUMB_PCREL_BLX:
27897 if (fixP->fx_addsy
27898 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27899 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27900 && THUMB_IS_FUNC (fixP->fx_addsy)
27901 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
27902 base = fixP->fx_where + fixP->fx_frag->fr_address;
27903 return (base + 4) & ~3;
27904
27905 /* ARM mode branches are offset by +8. However, the Windows CE
27906 loader expects the relocation not to take this into account. */
27907 case BFD_RELOC_ARM_PCREL_BLX:
27908 if (fixP->fx_addsy
27909 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27910 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27911 && ARM_IS_FUNC (fixP->fx_addsy)
27912 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
27913 base = fixP->fx_where + fixP->fx_frag->fr_address;
27914 return base + 8;
27915
27916 case BFD_RELOC_ARM_PCREL_CALL:
27917 if (fixP->fx_addsy
27918 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27919 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
27920 && THUMB_IS_FUNC (fixP->fx_addsy)
27921 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
27922 base = fixP->fx_where + fixP->fx_frag->fr_address;
27923 return base + 8;
27924
27925 case BFD_RELOC_ARM_PCREL_BRANCH:
27926 case BFD_RELOC_ARM_PCREL_JUMP:
27927 case BFD_RELOC_ARM_PLT32:
27928 #ifdef TE_WINCE
27929 /* When handling fixups immediately, because we have already
27930 discovered the value of a symbol, or the address of the frag involved
27931 we must account for the offset by +8, as the OS loader will never see the reloc.
27932 see fixup_segment() in write.c
27933 The S_IS_EXTERNAL test handles the case of global symbols.
27934 Those need the calculated base, not just the pipe compensation the linker will need. */
27935 if (fixP->fx_pcrel
27936 && fixP->fx_addsy != NULL
27937 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
27938 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
27939 return base + 8;
27940 return base;
27941 #else
27942 return base + 8;
27943 #endif
27944
27945
27946 /* ARM mode loads relative to PC are also offset by +8. Unlike
27947 branches, the Windows CE loader *does* expect the relocation
27948 to take this into account. */
27949 case BFD_RELOC_ARM_OFFSET_IMM:
27950 case BFD_RELOC_ARM_OFFSET_IMM8:
27951 case BFD_RELOC_ARM_HWLITERAL:
27952 case BFD_RELOC_ARM_LITERAL:
27953 case BFD_RELOC_ARM_CP_OFF_IMM:
27954 return base + 8;
27955
27956
27957 /* Other PC-relative relocations are un-offset. */
27958 default:
27959 return base;
27960 }
27961 }
27962
27963 static bfd_boolean flag_warn_syms = TRUE;
27964
27965 bfd_boolean
27966 arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
27967 {
27968 /* PR 18347 - Warn if the user attempts to create a symbol with the same
27969 name as an ARM instruction. Whilst strictly speaking it is allowed, it
27970 does mean that the resulting code might be very confusing to the reader.
27971 Also this warning can be triggered if the user omits an operand before
27972 an immediate address, eg:
27973
27974 LDR =foo
27975
27976 GAS treats this as an assignment of the value of the symbol foo to a
27977 symbol LDR, and so (without this code) it will not issue any kind of
27978 warning or error message.
27979
27980 Note - ARM instructions are case-insensitive but the strings in the hash
27981 table are all stored in lower case, so we must first ensure that name is
27982 lower case too. */
27983 if (flag_warn_syms && arm_ops_hsh)
27984 {
27985 char * nbuf = strdup (name);
27986 char * p;
27987
27988 for (p = nbuf; *p; p++)
27989 *p = TOLOWER (*p);
27990 if (str_hash_find (arm_ops_hsh, nbuf) != NULL)
27991 {
27992 static htab_t already_warned = NULL;
27993
27994 if (already_warned == NULL)
27995 already_warned = str_htab_create ();
27996 /* Only warn about the symbol once. To keep the code
27997 simple we let str_hash_insert do the lookup for us. */
27998 if (str_hash_find (already_warned, nbuf) == NULL)
27999 {
28000 as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
28001 str_hash_insert (already_warned, nbuf, NULL, 0);
28002 }
28003 }
28004 else
28005 free (nbuf);
28006 }
28007
28008 return FALSE;
28009 }
28010
28011 /* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
28012 Otherwise we have no need to default values of symbols. */
28013
28014 symbolS *
28015 md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
28016 {
28017 #ifdef OBJ_ELF
28018 if (name[0] == '_' && name[1] == 'G'
28019 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
28020 {
28021 if (!GOT_symbol)
28022 {
28023 if (symbol_find (name))
28024 as_bad (_("GOT already in the symbol table"));
28025
28026 GOT_symbol = symbol_new (name, undefined_section,
28027 &zero_address_frag, 0);
28028 }
28029
28030 return GOT_symbol;
28031 }
28032 #endif
28033
28034 return NULL;
28035 }
28036
28037 /* Subroutine of md_apply_fix. Check to see if an immediate can be
28038 computed as two separate immediate values, added together. We
28039 already know that this value cannot be computed by just one ARM
28040 instruction. */
28041
28042 static unsigned int
28043 validate_immediate_twopart (unsigned int val,
28044 unsigned int * highpart)
28045 {
28046 unsigned int a;
28047 unsigned int i;
28048
28049 for (i = 0; i < 32; i += 2)
28050 if (((a = rotate_left (val, i)) & 0xff) != 0)
28051 {
28052 if (a & 0xff00)
28053 {
28054 if (a & ~ 0xffff)
28055 continue;
28056 * highpart = (a >> 8) | ((i + 24) << 7);
28057 }
28058 else if (a & 0xff0000)
28059 {
28060 if (a & 0xff000000)
28061 continue;
28062 * highpart = (a >> 16) | ((i + 16) << 7);
28063 }
28064 else
28065 {
28066 gas_assert (a & 0xff000000);
28067 * highpart = (a >> 24) | ((i + 8) << 7);
28068 }
28069
28070 return (a & 0xff) | (i << 7);
28071 }
28072
28073 return FAIL;
28074 }
28075
28076 static int
28077 validate_offset_imm (unsigned int val, int hwse)
28078 {
28079 if ((hwse && val > 255) || val > 4095)
28080 return FAIL;
28081 return val;
28082 }
28083
28084 /* Subroutine of md_apply_fix. Do those data_ops which can take a
28085 negative immediate constant by altering the instruction. A bit of
28086 a hack really.
28087 MOV <-> MVN
28088 AND <-> BIC
28089 ADC <-> SBC
28090 by inverting the second operand, and
28091 ADD <-> SUB
28092 CMP <-> CMN
28093 by negating the second operand. */
28094
28095 static int
28096 negate_data_op (unsigned long * instruction,
28097 unsigned long value)
28098 {
28099 int op, new_inst;
28100 unsigned long negated, inverted;
28101
28102 negated = encode_arm_immediate (-value);
28103 inverted = encode_arm_immediate (~value);
28104
28105 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
28106 switch (op)
28107 {
28108 /* First negates. */
28109 case OPCODE_SUB: /* ADD <-> SUB */
28110 new_inst = OPCODE_ADD;
28111 value = negated;
28112 break;
28113
28114 case OPCODE_ADD:
28115 new_inst = OPCODE_SUB;
28116 value = negated;
28117 break;
28118
28119 case OPCODE_CMP: /* CMP <-> CMN */
28120 new_inst = OPCODE_CMN;
28121 value = negated;
28122 break;
28123
28124 case OPCODE_CMN:
28125 new_inst = OPCODE_CMP;
28126 value = negated;
28127 break;
28128
28129 /* Now Inverted ops. */
28130 case OPCODE_MOV: /* MOV <-> MVN */
28131 new_inst = OPCODE_MVN;
28132 value = inverted;
28133 break;
28134
28135 case OPCODE_MVN:
28136 new_inst = OPCODE_MOV;
28137 value = inverted;
28138 break;
28139
28140 case OPCODE_AND: /* AND <-> BIC */
28141 new_inst = OPCODE_BIC;
28142 value = inverted;
28143 break;
28144
28145 case OPCODE_BIC:
28146 new_inst = OPCODE_AND;
28147 value = inverted;
28148 break;
28149
28150 case OPCODE_ADC: /* ADC <-> SBC */
28151 new_inst = OPCODE_SBC;
28152 value = inverted;
28153 break;
28154
28155 case OPCODE_SBC:
28156 new_inst = OPCODE_ADC;
28157 value = inverted;
28158 break;
28159
28160 /* We cannot do anything. */
28161 default:
28162 return FAIL;
28163 }
28164
28165 if (value == (unsigned) FAIL)
28166 return FAIL;
28167
28168 *instruction &= OPCODE_MASK;
28169 *instruction |= new_inst << DATA_OP_SHIFT;
28170 return value;
28171 }
28172
28173 /* Like negate_data_op, but for Thumb-2. */
28174
28175 static unsigned int
28176 thumb32_negate_data_op (offsetT *instruction, unsigned int value)
28177 {
28178 int op, new_inst;
28179 int rd;
28180 unsigned int negated, inverted;
28181
28182 negated = encode_thumb32_immediate (-value);
28183 inverted = encode_thumb32_immediate (~value);
28184
28185 rd = (*instruction >> 8) & 0xf;
28186 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
28187 switch (op)
28188 {
28189 /* ADD <-> SUB. Includes CMP <-> CMN. */
28190 case T2_OPCODE_SUB:
28191 new_inst = T2_OPCODE_ADD;
28192 value = negated;
28193 break;
28194
28195 case T2_OPCODE_ADD:
28196 new_inst = T2_OPCODE_SUB;
28197 value = negated;
28198 break;
28199
28200 /* ORR <-> ORN. Includes MOV <-> MVN. */
28201 case T2_OPCODE_ORR:
28202 new_inst = T2_OPCODE_ORN;
28203 value = inverted;
28204 break;
28205
28206 case T2_OPCODE_ORN:
28207 new_inst = T2_OPCODE_ORR;
28208 value = inverted;
28209 break;
28210
28211 /* AND <-> BIC. TST has no inverted equivalent. */
28212 case T2_OPCODE_AND:
28213 new_inst = T2_OPCODE_BIC;
28214 if (rd == 15)
28215 value = FAIL;
28216 else
28217 value = inverted;
28218 break;
28219
28220 case T2_OPCODE_BIC:
28221 new_inst = T2_OPCODE_AND;
28222 value = inverted;
28223 break;
28224
28225 /* ADC <-> SBC */
28226 case T2_OPCODE_ADC:
28227 new_inst = T2_OPCODE_SBC;
28228 value = inverted;
28229 break;
28230
28231 case T2_OPCODE_SBC:
28232 new_inst = T2_OPCODE_ADC;
28233 value = inverted;
28234 break;
28235
28236 /* We cannot do anything. */
28237 default:
28238 return FAIL;
28239 }
28240
28241 if (value == (unsigned int)FAIL)
28242 return FAIL;
28243
28244 *instruction &= T2_OPCODE_MASK;
28245 *instruction |= new_inst << T2_DATA_OP_SHIFT;
28246 return value;
28247 }
28248
28249 /* Read a 32-bit thumb instruction from buf. */
28250
28251 static unsigned long
28252 get_thumb32_insn (char * buf)
28253 {
28254 unsigned long insn;
28255 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
28256 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28257
28258 return insn;
28259 }
28260
28261 /* We usually want to set the low bit on the address of thumb function
28262 symbols. In particular .word foo - . should have the low bit set.
28263 Generic code tries to fold the difference of two symbols to
28264 a constant. Prevent this and force a relocation when the first symbols
28265 is a thumb function. */
28266
28267 bfd_boolean
28268 arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
28269 {
28270 if (op == O_subtract
28271 && l->X_op == O_symbol
28272 && r->X_op == O_symbol
28273 && THUMB_IS_FUNC (l->X_add_symbol))
28274 {
28275 l->X_op = O_subtract;
28276 l->X_op_symbol = r->X_add_symbol;
28277 l->X_add_number -= r->X_add_number;
28278 return TRUE;
28279 }
28280
28281 /* Process as normal. */
28282 return FALSE;
28283 }
28284
28285 /* Encode Thumb2 unconditional branches and calls. The encoding
28286 for the 2 are identical for the immediate values. */
28287
28288 static void
28289 encode_thumb2_b_bl_offset (char * buf, offsetT value)
28290 {
28291 #define T2I1I2MASK ((1 << 13) | (1 << 11))
28292 offsetT newval;
28293 offsetT newval2;
28294 addressT S, I1, I2, lo, hi;
28295
28296 S = (value >> 24) & 0x01;
28297 I1 = (value >> 23) & 0x01;
28298 I2 = (value >> 22) & 0x01;
28299 hi = (value >> 12) & 0x3ff;
28300 lo = (value >> 1) & 0x7ff;
28301 newval = md_chars_to_number (buf, THUMB_SIZE);
28302 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
28303 newval |= (S << 10) | hi;
28304 newval2 &= ~T2I1I2MASK;
28305 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
28306 md_number_to_chars (buf, newval, THUMB_SIZE);
28307 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
28308 }
28309
28310 void
28311 md_apply_fix (fixS * fixP,
28312 valueT * valP,
28313 segT seg)
28314 {
28315 offsetT value = * valP;
28316 offsetT newval;
28317 unsigned int newimm;
28318 unsigned long temp;
28319 int sign;
28320 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
28321
28322 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
28323
28324 /* Note whether this will delete the relocation. */
28325
28326 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
28327 fixP->fx_done = 1;
28328
28329 /* On a 64-bit host, silently truncate 'value' to 32 bits for
28330 consistency with the behaviour on 32-bit hosts. Remember value
28331 for emit_reloc. */
28332 value &= 0xffffffff;
28333 value ^= 0x80000000;
28334 value -= 0x80000000;
28335
28336 *valP = value;
28337 fixP->fx_addnumber = value;
28338
28339 /* Same treatment for fixP->fx_offset. */
28340 fixP->fx_offset &= 0xffffffff;
28341 fixP->fx_offset ^= 0x80000000;
28342 fixP->fx_offset -= 0x80000000;
28343
28344 switch (fixP->fx_r_type)
28345 {
28346 case BFD_RELOC_NONE:
28347 /* This will need to go in the object file. */
28348 fixP->fx_done = 0;
28349 break;
28350
28351 case BFD_RELOC_ARM_IMMEDIATE:
28352 /* We claim that this fixup has been processed here,
28353 even if in fact we generate an error because we do
28354 not have a reloc for it, so tc_gen_reloc will reject it. */
28355 fixP->fx_done = 1;
28356
28357 if (fixP->fx_addsy)
28358 {
28359 const char *msg = 0;
28360
28361 if (! S_IS_DEFINED (fixP->fx_addsy))
28362 msg = _("undefined symbol %s used as an immediate value");
28363 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
28364 msg = _("symbol %s is in a different section");
28365 else if (S_IS_WEAK (fixP->fx_addsy))
28366 msg = _("symbol %s is weak and may be overridden later");
28367
28368 if (msg)
28369 {
28370 as_bad_where (fixP->fx_file, fixP->fx_line,
28371 msg, S_GET_NAME (fixP->fx_addsy));
28372 break;
28373 }
28374 }
28375
28376 temp = md_chars_to_number (buf, INSN_SIZE);
28377
28378 /* If the offset is negative, we should use encoding A2 for ADR. */
28379 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
28380 newimm = negate_data_op (&temp, value);
28381 else
28382 {
28383 newimm = encode_arm_immediate (value);
28384
28385 /* If the instruction will fail, see if we can fix things up by
28386 changing the opcode. */
28387 if (newimm == (unsigned int) FAIL)
28388 newimm = negate_data_op (&temp, value);
28389 /* MOV accepts both ARM modified immediate (A1 encoding) and
28390 UINT16 (A2 encoding) when possible, MOVW only accepts UINT16.
28391 When disassembling, MOV is preferred when there is no encoding
28392 overlap. */
28393 if (newimm == (unsigned int) FAIL
28394 && ((temp >> DATA_OP_SHIFT) & 0xf) == OPCODE_MOV
28395 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
28396 && !((temp >> SBIT_SHIFT) & 0x1)
28397 && value >= 0 && value <= 0xffff)
28398 {
28399 /* Clear bits[23:20] to change encoding from A1 to A2. */
28400 temp &= 0xff0fffff;
28401 /* Encoding high 4bits imm. Code below will encode the remaining
28402 low 12bits. */
28403 temp |= (value & 0x0000f000) << 4;
28404 newimm = value & 0x00000fff;
28405 }
28406 }
28407
28408 if (newimm == (unsigned int) FAIL)
28409 {
28410 as_bad_where (fixP->fx_file, fixP->fx_line,
28411 _("invalid constant (%lx) after fixup"),
28412 (unsigned long) value);
28413 break;
28414 }
28415
28416 newimm |= (temp & 0xfffff000);
28417 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
28418 break;
28419
28420 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
28421 {
28422 unsigned int highpart = 0;
28423 unsigned int newinsn = 0xe1a00000; /* nop. */
28424
28425 if (fixP->fx_addsy)
28426 {
28427 const char *msg = 0;
28428
28429 if (! S_IS_DEFINED (fixP->fx_addsy))
28430 msg = _("undefined symbol %s used as an immediate value");
28431 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
28432 msg = _("symbol %s is in a different section");
28433 else if (S_IS_WEAK (fixP->fx_addsy))
28434 msg = _("symbol %s is weak and may be overridden later");
28435
28436 if (msg)
28437 {
28438 as_bad_where (fixP->fx_file, fixP->fx_line,
28439 msg, S_GET_NAME (fixP->fx_addsy));
28440 break;
28441 }
28442 }
28443
28444 newimm = encode_arm_immediate (value);
28445 temp = md_chars_to_number (buf, INSN_SIZE);
28446
28447 /* If the instruction will fail, see if we can fix things up by
28448 changing the opcode. */
28449 if (newimm == (unsigned int) FAIL
28450 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
28451 {
28452 /* No ? OK - try using two ADD instructions to generate
28453 the value. */
28454 newimm = validate_immediate_twopart (value, & highpart);
28455
28456 /* Yes - then make sure that the second instruction is
28457 also an add. */
28458 if (newimm != (unsigned int) FAIL)
28459 newinsn = temp;
28460 /* Still No ? Try using a negated value. */
28461 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
28462 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
28463 /* Otherwise - give up. */
28464 else
28465 {
28466 as_bad_where (fixP->fx_file, fixP->fx_line,
28467 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
28468 (long) value);
28469 break;
28470 }
28471
28472 /* Replace the first operand in the 2nd instruction (which
28473 is the PC) with the destination register. We have
28474 already added in the PC in the first instruction and we
28475 do not want to do it again. */
28476 newinsn &= ~ 0xf0000;
28477 newinsn |= ((newinsn & 0x0f000) << 4);
28478 }
28479
28480 newimm |= (temp & 0xfffff000);
28481 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
28482
28483 highpart |= (newinsn & 0xfffff000);
28484 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
28485 }
28486 break;
28487
28488 case BFD_RELOC_ARM_OFFSET_IMM:
28489 if (!fixP->fx_done && seg->use_rela_p)
28490 value = 0;
28491 /* Fall through. */
28492
28493 case BFD_RELOC_ARM_LITERAL:
28494 sign = value > 0;
28495
28496 if (value < 0)
28497 value = - value;
28498
28499 if (validate_offset_imm (value, 0) == FAIL)
28500 {
28501 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
28502 as_bad_where (fixP->fx_file, fixP->fx_line,
28503 _("invalid literal constant: pool needs to be closer"));
28504 else
28505 as_bad_where (fixP->fx_file, fixP->fx_line,
28506 _("bad immediate value for offset (%ld)"),
28507 (long) value);
28508 break;
28509 }
28510
28511 newval = md_chars_to_number (buf, INSN_SIZE);
28512 if (value == 0)
28513 newval &= 0xfffff000;
28514 else
28515 {
28516 newval &= 0xff7ff000;
28517 newval |= value | (sign ? INDEX_UP : 0);
28518 }
28519 md_number_to_chars (buf, newval, INSN_SIZE);
28520 break;
28521
28522 case BFD_RELOC_ARM_OFFSET_IMM8:
28523 case BFD_RELOC_ARM_HWLITERAL:
28524 sign = value > 0;
28525
28526 if (value < 0)
28527 value = - value;
28528
28529 if (validate_offset_imm (value, 1) == FAIL)
28530 {
28531 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
28532 as_bad_where (fixP->fx_file, fixP->fx_line,
28533 _("invalid literal constant: pool needs to be closer"));
28534 else
28535 as_bad_where (fixP->fx_file, fixP->fx_line,
28536 _("bad immediate value for 8-bit offset (%ld)"),
28537 (long) value);
28538 break;
28539 }
28540
28541 newval = md_chars_to_number (buf, INSN_SIZE);
28542 if (value == 0)
28543 newval &= 0xfffff0f0;
28544 else
28545 {
28546 newval &= 0xff7ff0f0;
28547 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
28548 }
28549 md_number_to_chars (buf, newval, INSN_SIZE);
28550 break;
28551
28552 case BFD_RELOC_ARM_T32_OFFSET_U8:
28553 if (value < 0 || value > 1020 || value % 4 != 0)
28554 as_bad_where (fixP->fx_file, fixP->fx_line,
28555 _("bad immediate value for offset (%ld)"), (long) value);
28556 value /= 4;
28557
28558 newval = md_chars_to_number (buf+2, THUMB_SIZE);
28559 newval |= value;
28560 md_number_to_chars (buf+2, newval, THUMB_SIZE);
28561 break;
28562
28563 case BFD_RELOC_ARM_T32_OFFSET_IMM:
28564 /* This is a complicated relocation used for all varieties of Thumb32
28565 load/store instruction with immediate offset:
28566
28567 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
28568 *4, optional writeback(W)
28569 (doubleword load/store)
28570
28571 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
28572 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
28573 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
28574 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
28575 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
28576
28577 Uppercase letters indicate bits that are already encoded at
28578 this point. Lowercase letters are our problem. For the
28579 second block of instructions, the secondary opcode nybble
28580 (bits 8..11) is present, and bit 23 is zero, even if this is
28581 a PC-relative operation. */
28582 newval = md_chars_to_number (buf, THUMB_SIZE);
28583 newval <<= 16;
28584 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
28585
28586 if ((newval & 0xf0000000) == 0xe0000000)
28587 {
28588 /* Doubleword load/store: 8-bit offset, scaled by 4. */
28589 if (value >= 0)
28590 newval |= (1 << 23);
28591 else
28592 value = -value;
28593 if (value % 4 != 0)
28594 {
28595 as_bad_where (fixP->fx_file, fixP->fx_line,
28596 _("offset not a multiple of 4"));
28597 break;
28598 }
28599 value /= 4;
28600 if (value > 0xff)
28601 {
28602 as_bad_where (fixP->fx_file, fixP->fx_line,
28603 _("offset out of range"));
28604 break;
28605 }
28606 newval &= ~0xff;
28607 }
28608 else if ((newval & 0x000f0000) == 0x000f0000)
28609 {
28610 /* PC-relative, 12-bit offset. */
28611 if (value >= 0)
28612 newval |= (1 << 23);
28613 else
28614 value = -value;
28615 if (value > 0xfff)
28616 {
28617 as_bad_where (fixP->fx_file, fixP->fx_line,
28618 _("offset out of range"));
28619 break;
28620 }
28621 newval &= ~0xfff;
28622 }
28623 else if ((newval & 0x00000100) == 0x00000100)
28624 {
28625 /* Writeback: 8-bit, +/- offset. */
28626 if (value >= 0)
28627 newval |= (1 << 9);
28628 else
28629 value = -value;
28630 if (value > 0xff)
28631 {
28632 as_bad_where (fixP->fx_file, fixP->fx_line,
28633 _("offset out of range"));
28634 break;
28635 }
28636 newval &= ~0xff;
28637 }
28638 else if ((newval & 0x00000f00) == 0x00000e00)
28639 {
28640 /* T-instruction: positive 8-bit offset. */
28641 if (value < 0 || value > 0xff)
28642 {
28643 as_bad_where (fixP->fx_file, fixP->fx_line,
28644 _("offset out of range"));
28645 break;
28646 }
28647 newval &= ~0xff;
28648 newval |= value;
28649 }
28650 else
28651 {
28652 /* Positive 12-bit or negative 8-bit offset. */
28653 int limit;
28654 if (value >= 0)
28655 {
28656 newval |= (1 << 23);
28657 limit = 0xfff;
28658 }
28659 else
28660 {
28661 value = -value;
28662 limit = 0xff;
28663 }
28664 if (value > limit)
28665 {
28666 as_bad_where (fixP->fx_file, fixP->fx_line,
28667 _("offset out of range"));
28668 break;
28669 }
28670 newval &= ~limit;
28671 }
28672
28673 newval |= value;
28674 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
28675 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
28676 break;
28677
28678 case BFD_RELOC_ARM_SHIFT_IMM:
28679 newval = md_chars_to_number (buf, INSN_SIZE);
28680 if (((unsigned long) value) > 32
28681 || (value == 32
28682 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
28683 {
28684 as_bad_where (fixP->fx_file, fixP->fx_line,
28685 _("shift expression is too large"));
28686 break;
28687 }
28688
28689 if (value == 0)
28690 /* Shifts of zero must be done as lsl. */
28691 newval &= ~0x60;
28692 else if (value == 32)
28693 value = 0;
28694 newval &= 0xfffff07f;
28695 newval |= (value & 0x1f) << 7;
28696 md_number_to_chars (buf, newval, INSN_SIZE);
28697 break;
28698
28699 case BFD_RELOC_ARM_T32_IMMEDIATE:
28700 case BFD_RELOC_ARM_T32_ADD_IMM:
28701 case BFD_RELOC_ARM_T32_IMM12:
28702 case BFD_RELOC_ARM_T32_ADD_PC12:
28703 /* We claim that this fixup has been processed here,
28704 even if in fact we generate an error because we do
28705 not have a reloc for it, so tc_gen_reloc will reject it. */
28706 fixP->fx_done = 1;
28707
28708 if (fixP->fx_addsy
28709 && ! S_IS_DEFINED (fixP->fx_addsy))
28710 {
28711 as_bad_where (fixP->fx_file, fixP->fx_line,
28712 _("undefined symbol %s used as an immediate value"),
28713 S_GET_NAME (fixP->fx_addsy));
28714 break;
28715 }
28716
28717 newval = md_chars_to_number (buf, THUMB_SIZE);
28718 newval <<= 16;
28719 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
28720
28721 newimm = FAIL;
28722 if ((fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
28723 /* ARMv8-M Baseline MOV will reach here, but it doesn't support
28724 Thumb2 modified immediate encoding (T2). */
28725 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
28726 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
28727 {
28728 newimm = encode_thumb32_immediate (value);
28729 if (newimm == (unsigned int) FAIL)
28730 newimm = thumb32_negate_data_op (&newval, value);
28731 }
28732 if (newimm == (unsigned int) FAIL)
28733 {
28734 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE)
28735 {
28736 /* Turn add/sum into addw/subw. */
28737 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
28738 newval = (newval & 0xfeffffff) | 0x02000000;
28739 /* No flat 12-bit imm encoding for addsw/subsw. */
28740 if ((newval & 0x00100000) == 0)
28741 {
28742 /* 12 bit immediate for addw/subw. */
28743 if (value < 0)
28744 {
28745 value = -value;
28746 newval ^= 0x00a00000;
28747 }
28748 if (value > 0xfff)
28749 newimm = (unsigned int) FAIL;
28750 else
28751 newimm = value;
28752 }
28753 }
28754 else
28755 {
28756 /* MOV accepts both Thumb2 modified immediate (T2 encoding) and
28757 UINT16 (T3 encoding), MOVW only accepts UINT16. When
28758 disassembling, MOV is preferred when there is no encoding
28759 overlap. */
28760 if (((newval >> T2_DATA_OP_SHIFT) & 0xf) == T2_OPCODE_ORR
28761 /* NOTE: MOV uses the ORR opcode in Thumb 2 mode
28762 but with the Rn field [19:16] set to 1111. */
28763 && (((newval >> 16) & 0xf) == 0xf)
28764 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m)
28765 && !((newval >> T2_SBIT_SHIFT) & 0x1)
28766 && value >= 0 && value <= 0xffff)
28767 {
28768 /* Toggle bit[25] to change encoding from T2 to T3. */
28769 newval ^= 1 << 25;
28770 /* Clear bits[19:16]. */
28771 newval &= 0xfff0ffff;
28772 /* Encoding high 4bits imm. Code below will encode the
28773 remaining low 12bits. */
28774 newval |= (value & 0x0000f000) << 4;
28775 newimm = value & 0x00000fff;
28776 }
28777 }
28778 }
28779
28780 if (newimm == (unsigned int)FAIL)
28781 {
28782 as_bad_where (fixP->fx_file, fixP->fx_line,
28783 _("invalid constant (%lx) after fixup"),
28784 (unsigned long) value);
28785 break;
28786 }
28787
28788 newval |= (newimm & 0x800) << 15;
28789 newval |= (newimm & 0x700) << 4;
28790 newval |= (newimm & 0x0ff);
28791
28792 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
28793 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
28794 break;
28795
28796 case BFD_RELOC_ARM_SMC:
28797 if (((unsigned long) value) > 0xf)
28798 as_bad_where (fixP->fx_file, fixP->fx_line,
28799 _("invalid smc expression"));
28800
28801 newval = md_chars_to_number (buf, INSN_SIZE);
28802 newval |= (value & 0xf);
28803 md_number_to_chars (buf, newval, INSN_SIZE);
28804 break;
28805
28806 case BFD_RELOC_ARM_HVC:
28807 if (((unsigned long) value) > 0xffff)
28808 as_bad_where (fixP->fx_file, fixP->fx_line,
28809 _("invalid hvc expression"));
28810 newval = md_chars_to_number (buf, INSN_SIZE);
28811 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
28812 md_number_to_chars (buf, newval, INSN_SIZE);
28813 break;
28814
28815 case BFD_RELOC_ARM_SWI:
28816 if (fixP->tc_fix_data != 0)
28817 {
28818 if (((unsigned long) value) > 0xff)
28819 as_bad_where (fixP->fx_file, fixP->fx_line,
28820 _("invalid swi expression"));
28821 newval = md_chars_to_number (buf, THUMB_SIZE);
28822 newval |= value;
28823 md_number_to_chars (buf, newval, THUMB_SIZE);
28824 }
28825 else
28826 {
28827 if (((unsigned long) value) > 0x00ffffff)
28828 as_bad_where (fixP->fx_file, fixP->fx_line,
28829 _("invalid swi expression"));
28830 newval = md_chars_to_number (buf, INSN_SIZE);
28831 newval |= value;
28832 md_number_to_chars (buf, newval, INSN_SIZE);
28833 }
28834 break;
28835
28836 case BFD_RELOC_ARM_MULTI:
28837 if (((unsigned long) value) > 0xffff)
28838 as_bad_where (fixP->fx_file, fixP->fx_line,
28839 _("invalid expression in load/store multiple"));
28840 newval = value | md_chars_to_number (buf, INSN_SIZE);
28841 md_number_to_chars (buf, newval, INSN_SIZE);
28842 break;
28843
28844 #ifdef OBJ_ELF
28845 case BFD_RELOC_ARM_PCREL_CALL:
28846
28847 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
28848 && fixP->fx_addsy
28849 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28850 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28851 && THUMB_IS_FUNC (fixP->fx_addsy))
28852 /* Flip the bl to blx. This is a simple flip
28853 bit here because we generate PCREL_CALL for
28854 unconditional bls. */
28855 {
28856 newval = md_chars_to_number (buf, INSN_SIZE);
28857 newval = newval | 0x10000000;
28858 md_number_to_chars (buf, newval, INSN_SIZE);
28859 temp = 1;
28860 fixP->fx_done = 1;
28861 }
28862 else
28863 temp = 3;
28864 goto arm_branch_common;
28865
28866 case BFD_RELOC_ARM_PCREL_JUMP:
28867 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
28868 && fixP->fx_addsy
28869 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28870 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28871 && THUMB_IS_FUNC (fixP->fx_addsy))
28872 {
28873 /* This would map to a bl<cond>, b<cond>,
28874 b<always> to a Thumb function. We
28875 need to force a relocation for this particular
28876 case. */
28877 newval = md_chars_to_number (buf, INSN_SIZE);
28878 fixP->fx_done = 0;
28879 }
28880 /* Fall through. */
28881
28882 case BFD_RELOC_ARM_PLT32:
28883 #endif
28884 case BFD_RELOC_ARM_PCREL_BRANCH:
28885 temp = 3;
28886 goto arm_branch_common;
28887
28888 case BFD_RELOC_ARM_PCREL_BLX:
28889
28890 temp = 1;
28891 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
28892 && fixP->fx_addsy
28893 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28894 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28895 && ARM_IS_FUNC (fixP->fx_addsy))
28896 {
28897 /* Flip the blx to a bl and warn. */
28898 const char *name = S_GET_NAME (fixP->fx_addsy);
28899 newval = 0xeb000000;
28900 as_warn_where (fixP->fx_file, fixP->fx_line,
28901 _("blx to '%s' an ARM ISA state function changed to bl"),
28902 name);
28903 md_number_to_chars (buf, newval, INSN_SIZE);
28904 temp = 3;
28905 fixP->fx_done = 1;
28906 }
28907
28908 #ifdef OBJ_ELF
28909 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
28910 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
28911 #endif
28912
28913 arm_branch_common:
28914 /* We are going to store value (shifted right by two) in the
28915 instruction, in a 24 bit, signed field. Bits 26 through 32 either
28916 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
28917 also be clear. */
28918 if (value & temp)
28919 as_bad_where (fixP->fx_file, fixP->fx_line,
28920 _("misaligned branch destination"));
28921 if ((value & (offsetT)0xfe000000) != (offsetT)0
28922 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
28923 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28924
28925 if (fixP->fx_done || !seg->use_rela_p)
28926 {
28927 newval = md_chars_to_number (buf, INSN_SIZE);
28928 newval |= (value >> 2) & 0x00ffffff;
28929 /* Set the H bit on BLX instructions. */
28930 if (temp == 1)
28931 {
28932 if (value & 2)
28933 newval |= 0x01000000;
28934 else
28935 newval &= ~0x01000000;
28936 }
28937 md_number_to_chars (buf, newval, INSN_SIZE);
28938 }
28939 break;
28940
28941 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
28942 /* CBZ can only branch forward. */
28943
28944 /* Attempts to use CBZ to branch to the next instruction
28945 (which, strictly speaking, are prohibited) will be turned into
28946 no-ops.
28947
28948 FIXME: It may be better to remove the instruction completely and
28949 perform relaxation. */
28950 if (value == -2)
28951 {
28952 newval = md_chars_to_number (buf, THUMB_SIZE);
28953 newval = 0xbf00; /* NOP encoding T1 */
28954 md_number_to_chars (buf, newval, THUMB_SIZE);
28955 }
28956 else
28957 {
28958 if (value & ~0x7e)
28959 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28960
28961 if (fixP->fx_done || !seg->use_rela_p)
28962 {
28963 newval = md_chars_to_number (buf, THUMB_SIZE);
28964 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
28965 md_number_to_chars (buf, newval, THUMB_SIZE);
28966 }
28967 }
28968 break;
28969
28970 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
28971 if (out_of_range_p (value, 8))
28972 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28973
28974 if (fixP->fx_done || !seg->use_rela_p)
28975 {
28976 newval = md_chars_to_number (buf, THUMB_SIZE);
28977 newval |= (value & 0x1ff) >> 1;
28978 md_number_to_chars (buf, newval, THUMB_SIZE);
28979 }
28980 break;
28981
28982 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
28983 if (out_of_range_p (value, 11))
28984 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
28985
28986 if (fixP->fx_done || !seg->use_rela_p)
28987 {
28988 newval = md_chars_to_number (buf, THUMB_SIZE);
28989 newval |= (value & 0xfff) >> 1;
28990 md_number_to_chars (buf, newval, THUMB_SIZE);
28991 }
28992 break;
28993
28994 /* This relocation is misnamed, it should be BRANCH21. */
28995 case BFD_RELOC_THUMB_PCREL_BRANCH20:
28996 if (fixP->fx_addsy
28997 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
28998 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
28999 && ARM_IS_FUNC (fixP->fx_addsy)
29000 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
29001 {
29002 /* Force a relocation for a branch 20 bits wide. */
29003 fixP->fx_done = 0;
29004 }
29005 if (out_of_range_p (value, 20))
29006 as_bad_where (fixP->fx_file, fixP->fx_line,
29007 _("conditional branch out of range"));
29008
29009 if (fixP->fx_done || !seg->use_rela_p)
29010 {
29011 offsetT newval2;
29012 addressT S, J1, J2, lo, hi;
29013
29014 S = (value & 0x00100000) >> 20;
29015 J2 = (value & 0x00080000) >> 19;
29016 J1 = (value & 0x00040000) >> 18;
29017 hi = (value & 0x0003f000) >> 12;
29018 lo = (value & 0x00000ffe) >> 1;
29019
29020 newval = md_chars_to_number (buf, THUMB_SIZE);
29021 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29022 newval |= (S << 10) | hi;
29023 newval2 |= (J1 << 13) | (J2 << 11) | lo;
29024 md_number_to_chars (buf, newval, THUMB_SIZE);
29025 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
29026 }
29027 break;
29028
29029 case BFD_RELOC_THUMB_PCREL_BLX:
29030 /* If there is a blx from a thumb state function to
29031 another thumb function flip this to a bl and warn
29032 about it. */
29033
29034 if (fixP->fx_addsy
29035 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29036 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29037 && THUMB_IS_FUNC (fixP->fx_addsy))
29038 {
29039 const char *name = S_GET_NAME (fixP->fx_addsy);
29040 as_warn_where (fixP->fx_file, fixP->fx_line,
29041 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
29042 name);
29043 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29044 newval = newval | 0x1000;
29045 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
29046 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
29047 fixP->fx_done = 1;
29048 }
29049
29050
29051 goto thumb_bl_common;
29052
29053 case BFD_RELOC_THUMB_PCREL_BRANCH23:
29054 /* A bl from Thumb state ISA to an internal ARM state function
29055 is converted to a blx. */
29056 if (fixP->fx_addsy
29057 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29058 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29059 && ARM_IS_FUNC (fixP->fx_addsy)
29060 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
29061 {
29062 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29063 newval = newval & ~0x1000;
29064 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
29065 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
29066 fixP->fx_done = 1;
29067 }
29068
29069 thumb_bl_common:
29070
29071 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
29072 /* For a BLX instruction, make sure that the relocation is rounded up
29073 to a word boundary. This follows the semantics of the instruction
29074 which specifies that bit 1 of the target address will come from bit
29075 1 of the base address. */
29076 value = (value + 3) & ~ 3;
29077
29078 #ifdef OBJ_ELF
29079 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
29080 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
29081 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
29082 #endif
29083
29084 if (out_of_range_p (value, 22))
29085 {
29086 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)))
29087 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
29088 else if (out_of_range_p (value, 24))
29089 as_bad_where (fixP->fx_file, fixP->fx_line,
29090 _("Thumb2 branch out of range"));
29091 }
29092
29093 if (fixP->fx_done || !seg->use_rela_p)
29094 encode_thumb2_b_bl_offset (buf, value);
29095
29096 break;
29097
29098 case BFD_RELOC_THUMB_PCREL_BRANCH25:
29099 if (out_of_range_p (value, 24))
29100 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
29101
29102 if (fixP->fx_done || !seg->use_rela_p)
29103 encode_thumb2_b_bl_offset (buf, value);
29104
29105 break;
29106
29107 case BFD_RELOC_8:
29108 if (fixP->fx_done || !seg->use_rela_p)
29109 *buf = value;
29110 break;
29111
29112 case BFD_RELOC_16:
29113 if (fixP->fx_done || !seg->use_rela_p)
29114 md_number_to_chars (buf, value, 2);
29115 break;
29116
29117 #ifdef OBJ_ELF
29118 case BFD_RELOC_ARM_TLS_CALL:
29119 case BFD_RELOC_ARM_THM_TLS_CALL:
29120 case BFD_RELOC_ARM_TLS_DESCSEQ:
29121 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
29122 case BFD_RELOC_ARM_TLS_GOTDESC:
29123 case BFD_RELOC_ARM_TLS_GD32:
29124 case BFD_RELOC_ARM_TLS_LE32:
29125 case BFD_RELOC_ARM_TLS_IE32:
29126 case BFD_RELOC_ARM_TLS_LDM32:
29127 case BFD_RELOC_ARM_TLS_LDO32:
29128 S_SET_THREAD_LOCAL (fixP->fx_addsy);
29129 break;
29130
29131 /* Same handling as above, but with the arm_fdpic guard. */
29132 case BFD_RELOC_ARM_TLS_GD32_FDPIC:
29133 case BFD_RELOC_ARM_TLS_IE32_FDPIC:
29134 case BFD_RELOC_ARM_TLS_LDM32_FDPIC:
29135 if (arm_fdpic)
29136 {
29137 S_SET_THREAD_LOCAL (fixP->fx_addsy);
29138 }
29139 else
29140 {
29141 as_bad_where (fixP->fx_file, fixP->fx_line,
29142 _("Relocation supported only in FDPIC mode"));
29143 }
29144 break;
29145
29146 case BFD_RELOC_ARM_GOT32:
29147 case BFD_RELOC_ARM_GOTOFF:
29148 break;
29149
29150 case BFD_RELOC_ARM_GOT_PREL:
29151 if (fixP->fx_done || !seg->use_rela_p)
29152 md_number_to_chars (buf, value, 4);
29153 break;
29154
29155 case BFD_RELOC_ARM_TARGET2:
29156 /* TARGET2 is not partial-inplace, so we need to write the
29157 addend here for REL targets, because it won't be written out
29158 during reloc processing later. */
29159 if (fixP->fx_done || !seg->use_rela_p)
29160 md_number_to_chars (buf, fixP->fx_offset, 4);
29161 break;
29162
29163 /* Relocations for FDPIC. */
29164 case BFD_RELOC_ARM_GOTFUNCDESC:
29165 case BFD_RELOC_ARM_GOTOFFFUNCDESC:
29166 case BFD_RELOC_ARM_FUNCDESC:
29167 if (arm_fdpic)
29168 {
29169 if (fixP->fx_done || !seg->use_rela_p)
29170 md_number_to_chars (buf, 0, 4);
29171 }
29172 else
29173 {
29174 as_bad_where (fixP->fx_file, fixP->fx_line,
29175 _("Relocation supported only in FDPIC mode"));
29176 }
29177 break;
29178 #endif
29179
29180 case BFD_RELOC_RVA:
29181 case BFD_RELOC_32:
29182 case BFD_RELOC_ARM_TARGET1:
29183 case BFD_RELOC_ARM_ROSEGREL32:
29184 case BFD_RELOC_ARM_SBREL32:
29185 case BFD_RELOC_32_PCREL:
29186 #ifdef TE_PE
29187 case BFD_RELOC_32_SECREL:
29188 #endif
29189 if (fixP->fx_done || !seg->use_rela_p)
29190 #ifdef TE_WINCE
29191 /* For WinCE we only do this for pcrel fixups. */
29192 if (fixP->fx_done || fixP->fx_pcrel)
29193 #endif
29194 md_number_to_chars (buf, value, 4);
29195 break;
29196
29197 #ifdef OBJ_ELF
29198 case BFD_RELOC_ARM_PREL31:
29199 if (fixP->fx_done || !seg->use_rela_p)
29200 {
29201 newval = md_chars_to_number (buf, 4) & 0x80000000;
29202 if ((value ^ (value >> 1)) & 0x40000000)
29203 {
29204 as_bad_where (fixP->fx_file, fixP->fx_line,
29205 _("rel31 relocation overflow"));
29206 }
29207 newval |= value & 0x7fffffff;
29208 md_number_to_chars (buf, newval, 4);
29209 }
29210 break;
29211 #endif
29212
29213 case BFD_RELOC_ARM_CP_OFF_IMM:
29214 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
29215 case BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM:
29216 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM)
29217 newval = md_chars_to_number (buf, INSN_SIZE);
29218 else
29219 newval = get_thumb32_insn (buf);
29220 if ((newval & 0x0f200f00) == 0x0d000900)
29221 {
29222 /* This is a fp16 vstr/vldr. The immediate offset in the mnemonic
29223 has permitted values that are multiples of 2, in the range 0
29224 to 510. */
29225 if (value < -510 || value > 510 || (value & 1))
29226 as_bad_where (fixP->fx_file, fixP->fx_line,
29227 _("co-processor offset out of range"));
29228 }
29229 else if ((newval & 0xfe001f80) == 0xec000f80)
29230 {
29231 if (value < -511 || value > 512 || (value & 3))
29232 as_bad_where (fixP->fx_file, fixP->fx_line,
29233 _("co-processor offset out of range"));
29234 }
29235 else if (value < -1023 || value > 1023 || (value & 3))
29236 as_bad_where (fixP->fx_file, fixP->fx_line,
29237 _("co-processor offset out of range"));
29238 cp_off_common:
29239 sign = value > 0;
29240 if (value < 0)
29241 value = -value;
29242 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
29243 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
29244 newval = md_chars_to_number (buf, INSN_SIZE);
29245 else
29246 newval = get_thumb32_insn (buf);
29247 if (value == 0)
29248 {
29249 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM)
29250 newval &= 0xffffff80;
29251 else
29252 newval &= 0xffffff00;
29253 }
29254 else
29255 {
29256 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_VLDR_VSTR_OFF_IMM)
29257 newval &= 0xff7fff80;
29258 else
29259 newval &= 0xff7fff00;
29260 if ((newval & 0x0f200f00) == 0x0d000900)
29261 {
29262 /* This is a fp16 vstr/vldr.
29263
29264 It requires the immediate offset in the instruction is shifted
29265 left by 1 to be a half-word offset.
29266
29267 Here, left shift by 1 first, and later right shift by 2
29268 should get the right offset. */
29269 value <<= 1;
29270 }
29271 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
29272 }
29273 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
29274 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
29275 md_number_to_chars (buf, newval, INSN_SIZE);
29276 else
29277 put_thumb32_insn (buf, newval);
29278 break;
29279
29280 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
29281 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
29282 if (value < -255 || value > 255)
29283 as_bad_where (fixP->fx_file, fixP->fx_line,
29284 _("co-processor offset out of range"));
29285 value *= 4;
29286 goto cp_off_common;
29287
29288 case BFD_RELOC_ARM_THUMB_OFFSET:
29289 newval = md_chars_to_number (buf, THUMB_SIZE);
29290 /* Exactly what ranges, and where the offset is inserted depends
29291 on the type of instruction, we can establish this from the
29292 top 4 bits. */
29293 switch (newval >> 12)
29294 {
29295 case 4: /* PC load. */
29296 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
29297 forced to zero for these loads; md_pcrel_from has already
29298 compensated for this. */
29299 if (value & 3)
29300 as_bad_where (fixP->fx_file, fixP->fx_line,
29301 _("invalid offset, target not word aligned (0x%08lX)"),
29302 (((unsigned long) fixP->fx_frag->fr_address
29303 + (unsigned long) fixP->fx_where) & ~3)
29304 + (unsigned long) value);
29305 else if (get_recorded_alignment (seg) < 2)
29306 as_warn_where (fixP->fx_file, fixP->fx_line,
29307 _("section does not have enough alignment to ensure safe PC-relative loads"));
29308
29309 if (value & ~0x3fc)
29310 as_bad_where (fixP->fx_file, fixP->fx_line,
29311 _("invalid offset, value too big (0x%08lX)"),
29312 (long) value);
29313
29314 newval |= value >> 2;
29315 break;
29316
29317 case 9: /* SP load/store. */
29318 if (value & ~0x3fc)
29319 as_bad_where (fixP->fx_file, fixP->fx_line,
29320 _("invalid offset, value too big (0x%08lX)"),
29321 (long) value);
29322 newval |= value >> 2;
29323 break;
29324
29325 case 6: /* Word load/store. */
29326 if (value & ~0x7c)
29327 as_bad_where (fixP->fx_file, fixP->fx_line,
29328 _("invalid offset, value too big (0x%08lX)"),
29329 (long) value);
29330 newval |= value << 4; /* 6 - 2. */
29331 break;
29332
29333 case 7: /* Byte load/store. */
29334 if (value & ~0x1f)
29335 as_bad_where (fixP->fx_file, fixP->fx_line,
29336 _("invalid offset, value too big (0x%08lX)"),
29337 (long) value);
29338 newval |= value << 6;
29339 break;
29340
29341 case 8: /* Halfword load/store. */
29342 if (value & ~0x3e)
29343 as_bad_where (fixP->fx_file, fixP->fx_line,
29344 _("invalid offset, value too big (0x%08lX)"),
29345 (long) value);
29346 newval |= value << 5; /* 6 - 1. */
29347 break;
29348
29349 default:
29350 as_bad_where (fixP->fx_file, fixP->fx_line,
29351 "Unable to process relocation for thumb opcode: %lx",
29352 (unsigned long) newval);
29353 break;
29354 }
29355 md_number_to_chars (buf, newval, THUMB_SIZE);
29356 break;
29357
29358 case BFD_RELOC_ARM_THUMB_ADD:
29359 /* This is a complicated relocation, since we use it for all of
29360 the following immediate relocations:
29361
29362 3bit ADD/SUB
29363 8bit ADD/SUB
29364 9bit ADD/SUB SP word-aligned
29365 10bit ADD PC/SP word-aligned
29366
29367 The type of instruction being processed is encoded in the
29368 instruction field:
29369
29370 0x8000 SUB
29371 0x00F0 Rd
29372 0x000F Rs
29373 */
29374 newval = md_chars_to_number (buf, THUMB_SIZE);
29375 {
29376 int rd = (newval >> 4) & 0xf;
29377 int rs = newval & 0xf;
29378 int subtract = !!(newval & 0x8000);
29379
29380 /* Check for HI regs, only very restricted cases allowed:
29381 Adjusting SP, and using PC or SP to get an address. */
29382 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
29383 || (rs > 7 && rs != REG_SP && rs != REG_PC))
29384 as_bad_where (fixP->fx_file, fixP->fx_line,
29385 _("invalid Hi register with immediate"));
29386
29387 /* If value is negative, choose the opposite instruction. */
29388 if (value < 0)
29389 {
29390 value = -value;
29391 subtract = !subtract;
29392 if (value < 0)
29393 as_bad_where (fixP->fx_file, fixP->fx_line,
29394 _("immediate value out of range"));
29395 }
29396
29397 if (rd == REG_SP)
29398 {
29399 if (value & ~0x1fc)
29400 as_bad_where (fixP->fx_file, fixP->fx_line,
29401 _("invalid immediate for stack address calculation"));
29402 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
29403 newval |= value >> 2;
29404 }
29405 else if (rs == REG_PC || rs == REG_SP)
29406 {
29407 /* PR gas/18541. If the addition is for a defined symbol
29408 within range of an ADR instruction then accept it. */
29409 if (subtract
29410 && value == 4
29411 && fixP->fx_addsy != NULL)
29412 {
29413 subtract = 0;
29414
29415 if (! S_IS_DEFINED (fixP->fx_addsy)
29416 || S_GET_SEGMENT (fixP->fx_addsy) != seg
29417 || S_IS_WEAK (fixP->fx_addsy))
29418 {
29419 as_bad_where (fixP->fx_file, fixP->fx_line,
29420 _("address calculation needs a strongly defined nearby symbol"));
29421 }
29422 else
29423 {
29424 offsetT v = fixP->fx_where + fixP->fx_frag->fr_address;
29425
29426 /* Round up to the next 4-byte boundary. */
29427 if (v & 3)
29428 v = (v + 3) & ~ 3;
29429 else
29430 v += 4;
29431 v = S_GET_VALUE (fixP->fx_addsy) - v;
29432
29433 if (v & ~0x3fc)
29434 {
29435 as_bad_where (fixP->fx_file, fixP->fx_line,
29436 _("symbol too far away"));
29437 }
29438 else
29439 {
29440 fixP->fx_done = 1;
29441 value = v;
29442 }
29443 }
29444 }
29445
29446 if (subtract || value & ~0x3fc)
29447 as_bad_where (fixP->fx_file, fixP->fx_line,
29448 _("invalid immediate for address calculation (value = 0x%08lX)"),
29449 (unsigned long) (subtract ? - value : value));
29450 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
29451 newval |= rd << 8;
29452 newval |= value >> 2;
29453 }
29454 else if (rs == rd)
29455 {
29456 if (value & ~0xff)
29457 as_bad_where (fixP->fx_file, fixP->fx_line,
29458 _("immediate value out of range"));
29459 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
29460 newval |= (rd << 8) | value;
29461 }
29462 else
29463 {
29464 if (value & ~0x7)
29465 as_bad_where (fixP->fx_file, fixP->fx_line,
29466 _("immediate value out of range"));
29467 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
29468 newval |= rd | (rs << 3) | (value << 6);
29469 }
29470 }
29471 md_number_to_chars (buf, newval, THUMB_SIZE);
29472 break;
29473
29474 case BFD_RELOC_ARM_THUMB_IMM:
29475 newval = md_chars_to_number (buf, THUMB_SIZE);
29476 if (value < 0 || value > 255)
29477 as_bad_where (fixP->fx_file, fixP->fx_line,
29478 _("invalid immediate: %ld is out of range"),
29479 (long) value);
29480 newval |= value;
29481 md_number_to_chars (buf, newval, THUMB_SIZE);
29482 break;
29483
29484 case BFD_RELOC_ARM_THUMB_SHIFT:
29485 /* 5bit shift value (0..32). LSL cannot take 32. */
29486 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
29487 temp = newval & 0xf800;
29488 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
29489 as_bad_where (fixP->fx_file, fixP->fx_line,
29490 _("invalid shift value: %ld"), (long) value);
29491 /* Shifts of zero must be encoded as LSL. */
29492 if (value == 0)
29493 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
29494 /* Shifts of 32 are encoded as zero. */
29495 else if (value == 32)
29496 value = 0;
29497 newval |= value << 6;
29498 md_number_to_chars (buf, newval, THUMB_SIZE);
29499 break;
29500
29501 case BFD_RELOC_VTABLE_INHERIT:
29502 case BFD_RELOC_VTABLE_ENTRY:
29503 fixP->fx_done = 0;
29504 return;
29505
29506 case BFD_RELOC_ARM_MOVW:
29507 case BFD_RELOC_ARM_MOVT:
29508 case BFD_RELOC_ARM_THUMB_MOVW:
29509 case BFD_RELOC_ARM_THUMB_MOVT:
29510 if (fixP->fx_done || !seg->use_rela_p)
29511 {
29512 /* REL format relocations are limited to a 16-bit addend. */
29513 if (!fixP->fx_done)
29514 {
29515 if (value < -0x8000 || value > 0x7fff)
29516 as_bad_where (fixP->fx_file, fixP->fx_line,
29517 _("offset out of range"));
29518 }
29519 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
29520 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
29521 {
29522 value >>= 16;
29523 }
29524
29525 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
29526 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
29527 {
29528 newval = get_thumb32_insn (buf);
29529 newval &= 0xfbf08f00;
29530 newval |= (value & 0xf000) << 4;
29531 newval |= (value & 0x0800) << 15;
29532 newval |= (value & 0x0700) << 4;
29533 newval |= (value & 0x00ff);
29534 put_thumb32_insn (buf, newval);
29535 }
29536 else
29537 {
29538 newval = md_chars_to_number (buf, 4);
29539 newval &= 0xfff0f000;
29540 newval |= value & 0x0fff;
29541 newval |= (value & 0xf000) << 4;
29542 md_number_to_chars (buf, newval, 4);
29543 }
29544 }
29545 return;
29546
29547 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
29548 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
29549 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
29550 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
29551 gas_assert (!fixP->fx_done);
29552 {
29553 bfd_vma insn;
29554 bfd_boolean is_mov;
29555 bfd_vma encoded_addend = value;
29556
29557 /* Check that addend can be encoded in instruction. */
29558 if (!seg->use_rela_p && (value < 0 || value > 255))
29559 as_bad_where (fixP->fx_file, fixP->fx_line,
29560 _("the offset 0x%08lX is not representable"),
29561 (unsigned long) encoded_addend);
29562
29563 /* Extract the instruction. */
29564 insn = md_chars_to_number (buf, THUMB_SIZE);
29565 is_mov = (insn & 0xf800) == 0x2000;
29566
29567 /* Encode insn. */
29568 if (is_mov)
29569 {
29570 if (!seg->use_rela_p)
29571 insn |= encoded_addend;
29572 }
29573 else
29574 {
29575 int rd, rs;
29576
29577 /* Extract the instruction. */
29578 /* Encoding is the following
29579 0x8000 SUB
29580 0x00F0 Rd
29581 0x000F Rs
29582 */
29583 /* The following conditions must be true :
29584 - ADD
29585 - Rd == Rs
29586 - Rd <= 7
29587 */
29588 rd = (insn >> 4) & 0xf;
29589 rs = insn & 0xf;
29590 if ((insn & 0x8000) || (rd != rs) || rd > 7)
29591 as_bad_where (fixP->fx_file, fixP->fx_line,
29592 _("Unable to process relocation for thumb opcode: %lx"),
29593 (unsigned long) insn);
29594
29595 /* Encode as ADD immediate8 thumb 1 code. */
29596 insn = 0x3000 | (rd << 8);
29597
29598 /* Place the encoded addend into the first 8 bits of the
29599 instruction. */
29600 if (!seg->use_rela_p)
29601 insn |= encoded_addend;
29602 }
29603
29604 /* Update the instruction. */
29605 md_number_to_chars (buf, insn, THUMB_SIZE);
29606 }
29607 break;
29608
29609 case BFD_RELOC_ARM_ALU_PC_G0_NC:
29610 case BFD_RELOC_ARM_ALU_PC_G0:
29611 case BFD_RELOC_ARM_ALU_PC_G1_NC:
29612 case BFD_RELOC_ARM_ALU_PC_G1:
29613 case BFD_RELOC_ARM_ALU_PC_G2:
29614 case BFD_RELOC_ARM_ALU_SB_G0_NC:
29615 case BFD_RELOC_ARM_ALU_SB_G0:
29616 case BFD_RELOC_ARM_ALU_SB_G1_NC:
29617 case BFD_RELOC_ARM_ALU_SB_G1:
29618 case BFD_RELOC_ARM_ALU_SB_G2:
29619 gas_assert (!fixP->fx_done);
29620 if (!seg->use_rela_p)
29621 {
29622 bfd_vma insn;
29623 bfd_vma encoded_addend;
29624 bfd_vma addend_abs = llabs (value);
29625
29626 /* Check that the absolute value of the addend can be
29627 expressed as an 8-bit constant plus a rotation. */
29628 encoded_addend = encode_arm_immediate (addend_abs);
29629 if (encoded_addend == (unsigned int) FAIL)
29630 as_bad_where (fixP->fx_file, fixP->fx_line,
29631 _("the offset 0x%08lX is not representable"),
29632 (unsigned long) addend_abs);
29633
29634 /* Extract the instruction. */
29635 insn = md_chars_to_number (buf, INSN_SIZE);
29636
29637 /* If the addend is positive, use an ADD instruction.
29638 Otherwise use a SUB. Take care not to destroy the S bit. */
29639 insn &= 0xff1fffff;
29640 if (value < 0)
29641 insn |= 1 << 22;
29642 else
29643 insn |= 1 << 23;
29644
29645 /* Place the encoded addend into the first 12 bits of the
29646 instruction. */
29647 insn &= 0xfffff000;
29648 insn |= encoded_addend;
29649
29650 /* Update the instruction. */
29651 md_number_to_chars (buf, insn, INSN_SIZE);
29652 }
29653 break;
29654
29655 case BFD_RELOC_ARM_LDR_PC_G0:
29656 case BFD_RELOC_ARM_LDR_PC_G1:
29657 case BFD_RELOC_ARM_LDR_PC_G2:
29658 case BFD_RELOC_ARM_LDR_SB_G0:
29659 case BFD_RELOC_ARM_LDR_SB_G1:
29660 case BFD_RELOC_ARM_LDR_SB_G2:
29661 gas_assert (!fixP->fx_done);
29662 if (!seg->use_rela_p)
29663 {
29664 bfd_vma insn;
29665 bfd_vma addend_abs = llabs (value);
29666
29667 /* Check that the absolute value of the addend can be
29668 encoded in 12 bits. */
29669 if (addend_abs >= 0x1000)
29670 as_bad_where (fixP->fx_file, fixP->fx_line,
29671 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
29672 (unsigned long) addend_abs);
29673
29674 /* Extract the instruction. */
29675 insn = md_chars_to_number (buf, INSN_SIZE);
29676
29677 /* If the addend is negative, clear bit 23 of the instruction.
29678 Otherwise set it. */
29679 if (value < 0)
29680 insn &= ~(1 << 23);
29681 else
29682 insn |= 1 << 23;
29683
29684 /* Place the absolute value of the addend into the first 12 bits
29685 of the instruction. */
29686 insn &= 0xfffff000;
29687 insn |= addend_abs;
29688
29689 /* Update the instruction. */
29690 md_number_to_chars (buf, insn, INSN_SIZE);
29691 }
29692 break;
29693
29694 case BFD_RELOC_ARM_LDRS_PC_G0:
29695 case BFD_RELOC_ARM_LDRS_PC_G1:
29696 case BFD_RELOC_ARM_LDRS_PC_G2:
29697 case BFD_RELOC_ARM_LDRS_SB_G0:
29698 case BFD_RELOC_ARM_LDRS_SB_G1:
29699 case BFD_RELOC_ARM_LDRS_SB_G2:
29700 gas_assert (!fixP->fx_done);
29701 if (!seg->use_rela_p)
29702 {
29703 bfd_vma insn;
29704 bfd_vma addend_abs = llabs (value);
29705
29706 /* Check that the absolute value of the addend can be
29707 encoded in 8 bits. */
29708 if (addend_abs >= 0x100)
29709 as_bad_where (fixP->fx_file, fixP->fx_line,
29710 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
29711 (unsigned long) addend_abs);
29712
29713 /* Extract the instruction. */
29714 insn = md_chars_to_number (buf, INSN_SIZE);
29715
29716 /* If the addend is negative, clear bit 23 of the instruction.
29717 Otherwise set it. */
29718 if (value < 0)
29719 insn &= ~(1 << 23);
29720 else
29721 insn |= 1 << 23;
29722
29723 /* Place the first four bits of the absolute value of the addend
29724 into the first 4 bits of the instruction, and the remaining
29725 four into bits 8 .. 11. */
29726 insn &= 0xfffff0f0;
29727 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
29728
29729 /* Update the instruction. */
29730 md_number_to_chars (buf, insn, INSN_SIZE);
29731 }
29732 break;
29733
29734 case BFD_RELOC_ARM_LDC_PC_G0:
29735 case BFD_RELOC_ARM_LDC_PC_G1:
29736 case BFD_RELOC_ARM_LDC_PC_G2:
29737 case BFD_RELOC_ARM_LDC_SB_G0:
29738 case BFD_RELOC_ARM_LDC_SB_G1:
29739 case BFD_RELOC_ARM_LDC_SB_G2:
29740 gas_assert (!fixP->fx_done);
29741 if (!seg->use_rela_p)
29742 {
29743 bfd_vma insn;
29744 bfd_vma addend_abs = llabs (value);
29745
29746 /* Check that the absolute value of the addend is a multiple of
29747 four and, when divided by four, fits in 8 bits. */
29748 if (addend_abs & 0x3)
29749 as_bad_where (fixP->fx_file, fixP->fx_line,
29750 _("bad offset 0x%08lX (must be word-aligned)"),
29751 (unsigned long) addend_abs);
29752
29753 if ((addend_abs >> 2) > 0xff)
29754 as_bad_where (fixP->fx_file, fixP->fx_line,
29755 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
29756 (unsigned long) addend_abs);
29757
29758 /* Extract the instruction. */
29759 insn = md_chars_to_number (buf, INSN_SIZE);
29760
29761 /* If the addend is negative, clear bit 23 of the instruction.
29762 Otherwise set it. */
29763 if (value < 0)
29764 insn &= ~(1 << 23);
29765 else
29766 insn |= 1 << 23;
29767
29768 /* Place the addend (divided by four) into the first eight
29769 bits of the instruction. */
29770 insn &= 0xfffffff0;
29771 insn |= addend_abs >> 2;
29772
29773 /* Update the instruction. */
29774 md_number_to_chars (buf, insn, INSN_SIZE);
29775 }
29776 break;
29777
29778 case BFD_RELOC_THUMB_PCREL_BRANCH5:
29779 if (fixP->fx_addsy
29780 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29781 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29782 && ARM_IS_FUNC (fixP->fx_addsy)
29783 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29784 {
29785 /* Force a relocation for a branch 5 bits wide. */
29786 fixP->fx_done = 0;
29787 }
29788 if (v8_1_branch_value_check (value, 5, FALSE) == FAIL)
29789 as_bad_where (fixP->fx_file, fixP->fx_line,
29790 BAD_BRANCH_OFF);
29791
29792 if (fixP->fx_done || !seg->use_rela_p)
29793 {
29794 addressT boff = value >> 1;
29795
29796 newval = md_chars_to_number (buf, THUMB_SIZE);
29797 newval |= (boff << 7);
29798 md_number_to_chars (buf, newval, THUMB_SIZE);
29799 }
29800 break;
29801
29802 case BFD_RELOC_THUMB_PCREL_BFCSEL:
29803 if (fixP->fx_addsy
29804 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29805 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29806 && ARM_IS_FUNC (fixP->fx_addsy)
29807 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29808 {
29809 fixP->fx_done = 0;
29810 }
29811 if ((value & ~0x7f) && ((value & ~0x3f) != ~0x3f))
29812 as_bad_where (fixP->fx_file, fixP->fx_line,
29813 _("branch out of range"));
29814
29815 if (fixP->fx_done || !seg->use_rela_p)
29816 {
29817 newval = md_chars_to_number (buf, THUMB_SIZE);
29818
29819 addressT boff = ((newval & 0x0780) >> 7) << 1;
29820 addressT diff = value - boff;
29821
29822 if (diff == 4)
29823 {
29824 newval |= 1 << 1; /* T bit. */
29825 }
29826 else if (diff != 2)
29827 {
29828 as_bad_where (fixP->fx_file, fixP->fx_line,
29829 _("out of range label-relative fixup value"));
29830 }
29831 md_number_to_chars (buf, newval, THUMB_SIZE);
29832 }
29833 break;
29834
29835 case BFD_RELOC_ARM_THUMB_BF17:
29836 if (fixP->fx_addsy
29837 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29838 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29839 && ARM_IS_FUNC (fixP->fx_addsy)
29840 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29841 {
29842 /* Force a relocation for a branch 17 bits wide. */
29843 fixP->fx_done = 0;
29844 }
29845
29846 if (v8_1_branch_value_check (value, 17, TRUE) == FAIL)
29847 as_bad_where (fixP->fx_file, fixP->fx_line,
29848 BAD_BRANCH_OFF);
29849
29850 if (fixP->fx_done || !seg->use_rela_p)
29851 {
29852 offsetT newval2;
29853 addressT immA, immB, immC;
29854
29855 immA = (value & 0x0001f000) >> 12;
29856 immB = (value & 0x00000ffc) >> 2;
29857 immC = (value & 0x00000002) >> 1;
29858
29859 newval = md_chars_to_number (buf, THUMB_SIZE);
29860 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29861 newval |= immA;
29862 newval2 |= (immC << 11) | (immB << 1);
29863 md_number_to_chars (buf, newval, THUMB_SIZE);
29864 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
29865 }
29866 break;
29867
29868 case BFD_RELOC_ARM_THUMB_BF19:
29869 if (fixP->fx_addsy
29870 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29871 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29872 && ARM_IS_FUNC (fixP->fx_addsy)
29873 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29874 {
29875 /* Force a relocation for a branch 19 bits wide. */
29876 fixP->fx_done = 0;
29877 }
29878
29879 if (v8_1_branch_value_check (value, 19, TRUE) == FAIL)
29880 as_bad_where (fixP->fx_file, fixP->fx_line,
29881 BAD_BRANCH_OFF);
29882
29883 if (fixP->fx_done || !seg->use_rela_p)
29884 {
29885 offsetT newval2;
29886 addressT immA, immB, immC;
29887
29888 immA = (value & 0x0007f000) >> 12;
29889 immB = (value & 0x00000ffc) >> 2;
29890 immC = (value & 0x00000002) >> 1;
29891
29892 newval = md_chars_to_number (buf, THUMB_SIZE);
29893 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29894 newval |= immA;
29895 newval2 |= (immC << 11) | (immB << 1);
29896 md_number_to_chars (buf, newval, THUMB_SIZE);
29897 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
29898 }
29899 break;
29900
29901 case BFD_RELOC_ARM_THUMB_BF13:
29902 if (fixP->fx_addsy
29903 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29904 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29905 && ARM_IS_FUNC (fixP->fx_addsy)
29906 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29907 {
29908 /* Force a relocation for a branch 13 bits wide. */
29909 fixP->fx_done = 0;
29910 }
29911
29912 if (v8_1_branch_value_check (value, 13, TRUE) == FAIL)
29913 as_bad_where (fixP->fx_file, fixP->fx_line,
29914 BAD_BRANCH_OFF);
29915
29916 if (fixP->fx_done || !seg->use_rela_p)
29917 {
29918 offsetT newval2;
29919 addressT immA, immB, immC;
29920
29921 immA = (value & 0x00001000) >> 12;
29922 immB = (value & 0x00000ffc) >> 2;
29923 immC = (value & 0x00000002) >> 1;
29924
29925 newval = md_chars_to_number (buf, THUMB_SIZE);
29926 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29927 newval |= immA;
29928 newval2 |= (immC << 11) | (immB << 1);
29929 md_number_to_chars (buf, newval, THUMB_SIZE);
29930 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
29931 }
29932 break;
29933
29934 case BFD_RELOC_ARM_THUMB_LOOP12:
29935 if (fixP->fx_addsy
29936 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
29937 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
29938 && ARM_IS_FUNC (fixP->fx_addsy)
29939 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v8_1m_main))
29940 {
29941 /* Force a relocation for a branch 12 bits wide. */
29942 fixP->fx_done = 0;
29943 }
29944
29945 bfd_vma insn = get_thumb32_insn (buf);
29946 /* le lr, <label>, le <label> or letp lr, <label> */
29947 if (((insn & 0xffffffff) == 0xf00fc001)
29948 || ((insn & 0xffffffff) == 0xf02fc001)
29949 || ((insn & 0xffffffff) == 0xf01fc001))
29950 value = -value;
29951
29952 if (v8_1_branch_value_check (value, 12, FALSE) == FAIL)
29953 as_bad_where (fixP->fx_file, fixP->fx_line,
29954 BAD_BRANCH_OFF);
29955 if (fixP->fx_done || !seg->use_rela_p)
29956 {
29957 addressT imml, immh;
29958
29959 immh = (value & 0x00000ffc) >> 2;
29960 imml = (value & 0x00000002) >> 1;
29961
29962 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
29963 newval |= (imml << 11) | (immh << 1);
29964 md_number_to_chars (buf + THUMB_SIZE, newval, THUMB_SIZE);
29965 }
29966 break;
29967
29968 case BFD_RELOC_ARM_V4BX:
29969 /* This will need to go in the object file. */
29970 fixP->fx_done = 0;
29971 break;
29972
29973 case BFD_RELOC_UNUSED:
29974 default:
29975 as_bad_where (fixP->fx_file, fixP->fx_line,
29976 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
29977 }
29978 }
29979
29980 /* Translate internal representation of relocation info to BFD target
29981 format. */
29982
29983 arelent *
29984 tc_gen_reloc (asection *section, fixS *fixp)
29985 {
29986 arelent * reloc;
29987 bfd_reloc_code_real_type code;
29988
29989 reloc = XNEW (arelent);
29990
29991 reloc->sym_ptr_ptr = XNEW (asymbol *);
29992 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
29993 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
29994
29995 if (fixp->fx_pcrel)
29996 {
29997 if (section->use_rela_p)
29998 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
29999 else
30000 fixp->fx_offset = reloc->address;
30001 }
30002 reloc->addend = fixp->fx_offset;
30003
30004 switch (fixp->fx_r_type)
30005 {
30006 case BFD_RELOC_8:
30007 if (fixp->fx_pcrel)
30008 {
30009 code = BFD_RELOC_8_PCREL;
30010 break;
30011 }
30012 /* Fall through. */
30013
30014 case BFD_RELOC_16:
30015 if (fixp->fx_pcrel)
30016 {
30017 code = BFD_RELOC_16_PCREL;
30018 break;
30019 }
30020 /* Fall through. */
30021
30022 case BFD_RELOC_32:
30023 if (fixp->fx_pcrel)
30024 {
30025 code = BFD_RELOC_32_PCREL;
30026 break;
30027 }
30028 /* Fall through. */
30029
30030 case BFD_RELOC_ARM_MOVW:
30031 if (fixp->fx_pcrel)
30032 {
30033 code = BFD_RELOC_ARM_MOVW_PCREL;
30034 break;
30035 }
30036 /* Fall through. */
30037
30038 case BFD_RELOC_ARM_MOVT:
30039 if (fixp->fx_pcrel)
30040 {
30041 code = BFD_RELOC_ARM_MOVT_PCREL;
30042 break;
30043 }
30044 /* Fall through. */
30045
30046 case BFD_RELOC_ARM_THUMB_MOVW:
30047 if (fixp->fx_pcrel)
30048 {
30049 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
30050 break;
30051 }
30052 /* Fall through. */
30053
30054 case BFD_RELOC_ARM_THUMB_MOVT:
30055 if (fixp->fx_pcrel)
30056 {
30057 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
30058 break;
30059 }
30060 /* Fall through. */
30061
30062 case BFD_RELOC_NONE:
30063 case BFD_RELOC_ARM_PCREL_BRANCH:
30064 case BFD_RELOC_ARM_PCREL_BLX:
30065 case BFD_RELOC_RVA:
30066 case BFD_RELOC_THUMB_PCREL_BRANCH7:
30067 case BFD_RELOC_THUMB_PCREL_BRANCH9:
30068 case BFD_RELOC_THUMB_PCREL_BRANCH12:
30069 case BFD_RELOC_THUMB_PCREL_BRANCH20:
30070 case BFD_RELOC_THUMB_PCREL_BRANCH23:
30071 case BFD_RELOC_THUMB_PCREL_BRANCH25:
30072 case BFD_RELOC_VTABLE_ENTRY:
30073 case BFD_RELOC_VTABLE_INHERIT:
30074 #ifdef TE_PE
30075 case BFD_RELOC_32_SECREL:
30076 #endif
30077 code = fixp->fx_r_type;
30078 break;
30079
30080 case BFD_RELOC_THUMB_PCREL_BLX:
30081 #ifdef OBJ_ELF
30082 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
30083 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
30084 else
30085 #endif
30086 code = BFD_RELOC_THUMB_PCREL_BLX;
30087 break;
30088
30089 case BFD_RELOC_ARM_LITERAL:
30090 case BFD_RELOC_ARM_HWLITERAL:
30091 /* If this is called then the a literal has
30092 been referenced across a section boundary. */
30093 as_bad_where (fixp->fx_file, fixp->fx_line,
30094 _("literal referenced across section boundary"));
30095 return NULL;
30096
30097 #ifdef OBJ_ELF
30098 case BFD_RELOC_ARM_TLS_CALL:
30099 case BFD_RELOC_ARM_THM_TLS_CALL:
30100 case BFD_RELOC_ARM_TLS_DESCSEQ:
30101 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
30102 case BFD_RELOC_ARM_GOT32:
30103 case BFD_RELOC_ARM_GOTOFF:
30104 case BFD_RELOC_ARM_GOT_PREL:
30105 case BFD_RELOC_ARM_PLT32:
30106 case BFD_RELOC_ARM_TARGET1:
30107 case BFD_RELOC_ARM_ROSEGREL32:
30108 case BFD_RELOC_ARM_SBREL32:
30109 case BFD_RELOC_ARM_PREL31:
30110 case BFD_RELOC_ARM_TARGET2:
30111 case BFD_RELOC_ARM_TLS_LDO32:
30112 case BFD_RELOC_ARM_PCREL_CALL:
30113 case BFD_RELOC_ARM_PCREL_JUMP:
30114 case BFD_RELOC_ARM_ALU_PC_G0_NC:
30115 case BFD_RELOC_ARM_ALU_PC_G0:
30116 case BFD_RELOC_ARM_ALU_PC_G1_NC:
30117 case BFD_RELOC_ARM_ALU_PC_G1:
30118 case BFD_RELOC_ARM_ALU_PC_G2:
30119 case BFD_RELOC_ARM_LDR_PC_G0:
30120 case BFD_RELOC_ARM_LDR_PC_G1:
30121 case BFD_RELOC_ARM_LDR_PC_G2:
30122 case BFD_RELOC_ARM_LDRS_PC_G0:
30123 case BFD_RELOC_ARM_LDRS_PC_G1:
30124 case BFD_RELOC_ARM_LDRS_PC_G2:
30125 case BFD_RELOC_ARM_LDC_PC_G0:
30126 case BFD_RELOC_ARM_LDC_PC_G1:
30127 case BFD_RELOC_ARM_LDC_PC_G2:
30128 case BFD_RELOC_ARM_ALU_SB_G0_NC:
30129 case BFD_RELOC_ARM_ALU_SB_G0:
30130 case BFD_RELOC_ARM_ALU_SB_G1_NC:
30131 case BFD_RELOC_ARM_ALU_SB_G1:
30132 case BFD_RELOC_ARM_ALU_SB_G2:
30133 case BFD_RELOC_ARM_LDR_SB_G0:
30134 case BFD_RELOC_ARM_LDR_SB_G1:
30135 case BFD_RELOC_ARM_LDR_SB_G2:
30136 case BFD_RELOC_ARM_LDRS_SB_G0:
30137 case BFD_RELOC_ARM_LDRS_SB_G1:
30138 case BFD_RELOC_ARM_LDRS_SB_G2:
30139 case BFD_RELOC_ARM_LDC_SB_G0:
30140 case BFD_RELOC_ARM_LDC_SB_G1:
30141 case BFD_RELOC_ARM_LDC_SB_G2:
30142 case BFD_RELOC_ARM_V4BX:
30143 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
30144 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
30145 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
30146 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
30147 case BFD_RELOC_ARM_GOTFUNCDESC:
30148 case BFD_RELOC_ARM_GOTOFFFUNCDESC:
30149 case BFD_RELOC_ARM_FUNCDESC:
30150 case BFD_RELOC_ARM_THUMB_BF17:
30151 case BFD_RELOC_ARM_THUMB_BF19:
30152 case BFD_RELOC_ARM_THUMB_BF13:
30153 code = fixp->fx_r_type;
30154 break;
30155
30156 case BFD_RELOC_ARM_TLS_GOTDESC:
30157 case BFD_RELOC_ARM_TLS_GD32:
30158 case BFD_RELOC_ARM_TLS_GD32_FDPIC:
30159 case BFD_RELOC_ARM_TLS_LE32:
30160 case BFD_RELOC_ARM_TLS_IE32:
30161 case BFD_RELOC_ARM_TLS_IE32_FDPIC:
30162 case BFD_RELOC_ARM_TLS_LDM32:
30163 case BFD_RELOC_ARM_TLS_LDM32_FDPIC:
30164 /* BFD will include the symbol's address in the addend.
30165 But we don't want that, so subtract it out again here. */
30166 if (!S_IS_COMMON (fixp->fx_addsy))
30167 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
30168 code = fixp->fx_r_type;
30169 break;
30170 #endif
30171
30172 case BFD_RELOC_ARM_IMMEDIATE:
30173 as_bad_where (fixp->fx_file, fixp->fx_line,
30174 _("internal relocation (type: IMMEDIATE) not fixed up"));
30175 return NULL;
30176
30177 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
30178 as_bad_where (fixp->fx_file, fixp->fx_line,
30179 _("ADRL used for a symbol not defined in the same file"));
30180 return NULL;
30181
30182 case BFD_RELOC_THUMB_PCREL_BRANCH5:
30183 case BFD_RELOC_THUMB_PCREL_BFCSEL:
30184 case BFD_RELOC_ARM_THUMB_LOOP12:
30185 as_bad_where (fixp->fx_file, fixp->fx_line,
30186 _("%s used for a symbol not defined in the same file"),
30187 bfd_get_reloc_code_name (fixp->fx_r_type));
30188 return NULL;
30189
30190 case BFD_RELOC_ARM_OFFSET_IMM:
30191 if (section->use_rela_p)
30192 {
30193 code = fixp->fx_r_type;
30194 break;
30195 }
30196
30197 if (fixp->fx_addsy != NULL
30198 && !S_IS_DEFINED (fixp->fx_addsy)
30199 && S_IS_LOCAL (fixp->fx_addsy))
30200 {
30201 as_bad_where (fixp->fx_file, fixp->fx_line,
30202 _("undefined local label `%s'"),
30203 S_GET_NAME (fixp->fx_addsy));
30204 return NULL;
30205 }
30206
30207 as_bad_where (fixp->fx_file, fixp->fx_line,
30208 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
30209 return NULL;
30210
30211 default:
30212 {
30213 const char * type;
30214
30215 switch (fixp->fx_r_type)
30216 {
30217 case BFD_RELOC_NONE: type = "NONE"; break;
30218 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
30219 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
30220 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
30221 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
30222 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
30223 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
30224 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
30225 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
30226 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
30227 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
30228 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
30229 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
30230 default: type = _("<unknown>"); break;
30231 }
30232 as_bad_where (fixp->fx_file, fixp->fx_line,
30233 _("cannot represent %s relocation in this object file format"),
30234 type);
30235 return NULL;
30236 }
30237 }
30238
30239 #ifdef OBJ_ELF
30240 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
30241 && GOT_symbol
30242 && fixp->fx_addsy == GOT_symbol)
30243 {
30244 code = BFD_RELOC_ARM_GOTPC;
30245 reloc->addend = fixp->fx_offset = reloc->address;
30246 }
30247 #endif
30248
30249 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
30250
30251 if (reloc->howto == NULL)
30252 {
30253 as_bad_where (fixp->fx_file, fixp->fx_line,
30254 _("cannot represent %s relocation in this object file format"),
30255 bfd_get_reloc_code_name (code));
30256 return NULL;
30257 }
30258
30259 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
30260 vtable entry to be used in the relocation's section offset. */
30261 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
30262 reloc->address = fixp->fx_offset;
30263
30264 return reloc;
30265 }
30266
30267 /* This fix_new is called by cons via TC_CONS_FIX_NEW. */
30268
30269 void
30270 cons_fix_new_arm (fragS * frag,
30271 int where,
30272 int size,
30273 expressionS * exp,
30274 bfd_reloc_code_real_type reloc)
30275 {
30276 int pcrel = 0;
30277
30278 /* Pick a reloc.
30279 FIXME: @@ Should look at CPU word size. */
30280 switch (size)
30281 {
30282 case 1:
30283 reloc = BFD_RELOC_8;
30284 break;
30285 case 2:
30286 reloc = BFD_RELOC_16;
30287 break;
30288 case 4:
30289 default:
30290 reloc = BFD_RELOC_32;
30291 break;
30292 case 8:
30293 reloc = BFD_RELOC_64;
30294 break;
30295 }
30296
30297 #ifdef TE_PE
30298 if (exp->X_op == O_secrel)
30299 {
30300 exp->X_op = O_symbol;
30301 reloc = BFD_RELOC_32_SECREL;
30302 }
30303 #endif
30304
30305 fix_new_exp (frag, where, size, exp, pcrel, reloc);
30306 }
30307
30308 #if defined (OBJ_COFF)
30309 void
30310 arm_validate_fix (fixS * fixP)
30311 {
30312 /* If the destination of the branch is a defined symbol which does not have
30313 the THUMB_FUNC attribute, then we must be calling a function which has
30314 the (interfacearm) attribute. We look for the Thumb entry point to that
30315 function and change the branch to refer to that function instead. */
30316 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
30317 && fixP->fx_addsy != NULL
30318 && S_IS_DEFINED (fixP->fx_addsy)
30319 && ! THUMB_IS_FUNC (fixP->fx_addsy))
30320 {
30321 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
30322 }
30323 }
30324 #endif
30325
30326
30327 int
30328 arm_force_relocation (struct fix * fixp)
30329 {
30330 #if defined (OBJ_COFF) && defined (TE_PE)
30331 if (fixp->fx_r_type == BFD_RELOC_RVA)
30332 return 1;
30333 #endif
30334
30335 /* In case we have a call or a branch to a function in ARM ISA mode from
30336 a thumb function or vice-versa force the relocation. These relocations
30337 are cleared off for some cores that might have blx and simple transformations
30338 are possible. */
30339
30340 #ifdef OBJ_ELF
30341 switch (fixp->fx_r_type)
30342 {
30343 case BFD_RELOC_ARM_PCREL_JUMP:
30344 case BFD_RELOC_ARM_PCREL_CALL:
30345 case BFD_RELOC_THUMB_PCREL_BLX:
30346 if (THUMB_IS_FUNC (fixp->fx_addsy))
30347 return 1;
30348 break;
30349
30350 case BFD_RELOC_ARM_PCREL_BLX:
30351 case BFD_RELOC_THUMB_PCREL_BRANCH25:
30352 case BFD_RELOC_THUMB_PCREL_BRANCH20:
30353 case BFD_RELOC_THUMB_PCREL_BRANCH23:
30354 if (ARM_IS_FUNC (fixp->fx_addsy))
30355 return 1;
30356 break;
30357
30358 default:
30359 break;
30360 }
30361 #endif
30362
30363 /* Resolve these relocations even if the symbol is extern or weak.
30364 Technically this is probably wrong due to symbol preemption.
30365 In practice these relocations do not have enough range to be useful
30366 at dynamic link time, and some code (e.g. in the Linux kernel)
30367 expects these references to be resolved. */
30368 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
30369 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
30370 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
30371 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
30372 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
30373 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
30374 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
30375 || fixp->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH12
30376 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
30377 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
30378 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
30379 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
30380 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
30381 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
30382 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
30383 return 0;
30384
30385 /* Always leave these relocations for the linker. */
30386 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
30387 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
30388 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
30389 return 1;
30390
30391 /* Always generate relocations against function symbols. */
30392 if (fixp->fx_r_type == BFD_RELOC_32
30393 && fixp->fx_addsy
30394 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
30395 return 1;
30396
30397 return generic_force_reloc (fixp);
30398 }
30399
30400 #if defined (OBJ_ELF) || defined (OBJ_COFF)
30401 /* Relocations against function names must be left unadjusted,
30402 so that the linker can use this information to generate interworking
30403 stubs. The MIPS version of this function
30404 also prevents relocations that are mips-16 specific, but I do not
30405 know why it does this.
30406
30407 FIXME:
30408 There is one other problem that ought to be addressed here, but
30409 which currently is not: Taking the address of a label (rather
30410 than a function) and then later jumping to that address. Such
30411 addresses also ought to have their bottom bit set (assuming that
30412 they reside in Thumb code), but at the moment they will not. */
30413
30414 bfd_boolean
30415 arm_fix_adjustable (fixS * fixP)
30416 {
30417 if (fixP->fx_addsy == NULL)
30418 return 1;
30419
30420 /* Preserve relocations against symbols with function type. */
30421 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
30422 return FALSE;
30423
30424 if (THUMB_IS_FUNC (fixP->fx_addsy)
30425 && fixP->fx_subsy == NULL)
30426 return FALSE;
30427
30428 /* We need the symbol name for the VTABLE entries. */
30429 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
30430 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
30431 return FALSE;
30432
30433 /* Don't allow symbols to be discarded on GOT related relocs. */
30434 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
30435 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
30436 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
30437 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
30438 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32_FDPIC
30439 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
30440 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
30441 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32_FDPIC
30442 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
30443 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32_FDPIC
30444 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
30445 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
30446 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
30447 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
30448 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
30449 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
30450 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
30451 return FALSE;
30452
30453 /* Similarly for group relocations. */
30454 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
30455 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
30456 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
30457 return FALSE;
30458
30459 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
30460 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
30461 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
30462 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
30463 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
30464 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
30465 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
30466 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
30467 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
30468 return FALSE;
30469
30470 /* BFD_RELOC_ARM_THUMB_ALU_ABS_Gx_NC relocations have VERY limited
30471 offsets, so keep these symbols. */
30472 if (fixP->fx_r_type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
30473 && fixP->fx_r_type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
30474 return FALSE;
30475
30476 return TRUE;
30477 }
30478 #endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
30479
30480 #ifdef OBJ_ELF
30481 const char *
30482 elf32_arm_target_format (void)
30483 {
30484 #ifdef TE_SYMBIAN
30485 return (target_big_endian
30486 ? "elf32-bigarm-symbian"
30487 : "elf32-littlearm-symbian");
30488 #elif defined (TE_VXWORKS)
30489 return (target_big_endian
30490 ? "elf32-bigarm-vxworks"
30491 : "elf32-littlearm-vxworks");
30492 #elif defined (TE_NACL)
30493 return (target_big_endian
30494 ? "elf32-bigarm-nacl"
30495 : "elf32-littlearm-nacl");
30496 #else
30497 if (arm_fdpic)
30498 {
30499 if (target_big_endian)
30500 return "elf32-bigarm-fdpic";
30501 else
30502 return "elf32-littlearm-fdpic";
30503 }
30504 else
30505 {
30506 if (target_big_endian)
30507 return "elf32-bigarm";
30508 else
30509 return "elf32-littlearm";
30510 }
30511 #endif
30512 }
30513
30514 void
30515 armelf_frob_symbol (symbolS * symp,
30516 int * puntp)
30517 {
30518 elf_frob_symbol (symp, puntp);
30519 }
30520 #endif
30521
30522 /* MD interface: Finalization. */
30523
30524 void
30525 arm_cleanup (void)
30526 {
30527 literal_pool * pool;
30528
30529 /* Ensure that all the predication blocks are properly closed. */
30530 check_pred_blocks_finished ();
30531
30532 for (pool = list_of_pools; pool; pool = pool->next)
30533 {
30534 /* Put it at the end of the relevant section. */
30535 subseg_set (pool->section, pool->sub_section);
30536 #ifdef OBJ_ELF
30537 arm_elf_change_section ();
30538 #endif
30539 s_ltorg (0);
30540 }
30541 }
30542
30543 #ifdef OBJ_ELF
30544 /* Remove any excess mapping symbols generated for alignment frags in
30545 SEC. We may have created a mapping symbol before a zero byte
30546 alignment; remove it if there's a mapping symbol after the
30547 alignment. */
30548 static void
30549 check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
30550 void *dummy ATTRIBUTE_UNUSED)
30551 {
30552 segment_info_type *seginfo = seg_info (sec);
30553 fragS *fragp;
30554
30555 if (seginfo == NULL || seginfo->frchainP == NULL)
30556 return;
30557
30558 for (fragp = seginfo->frchainP->frch_root;
30559 fragp != NULL;
30560 fragp = fragp->fr_next)
30561 {
30562 symbolS *sym = fragp->tc_frag_data.last_map;
30563 fragS *next = fragp->fr_next;
30564
30565 /* Variable-sized frags have been converted to fixed size by
30566 this point. But if this was variable-sized to start with,
30567 there will be a fixed-size frag after it. So don't handle
30568 next == NULL. */
30569 if (sym == NULL || next == NULL)
30570 continue;
30571
30572 if (S_GET_VALUE (sym) < next->fr_address)
30573 /* Not at the end of this frag. */
30574 continue;
30575 know (S_GET_VALUE (sym) == next->fr_address);
30576
30577 do
30578 {
30579 if (next->tc_frag_data.first_map != NULL)
30580 {
30581 /* Next frag starts with a mapping symbol. Discard this
30582 one. */
30583 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
30584 break;
30585 }
30586
30587 if (next->fr_next == NULL)
30588 {
30589 /* This mapping symbol is at the end of the section. Discard
30590 it. */
30591 know (next->fr_fix == 0 && next->fr_var == 0);
30592 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
30593 break;
30594 }
30595
30596 /* As long as we have empty frags without any mapping symbols,
30597 keep looking. */
30598 /* If the next frag is non-empty and does not start with a
30599 mapping symbol, then this mapping symbol is required. */
30600 if (next->fr_address != next->fr_next->fr_address)
30601 break;
30602
30603 next = next->fr_next;
30604 }
30605 while (next != NULL);
30606 }
30607 }
30608 #endif
30609
30610 /* Adjust the symbol table. This marks Thumb symbols as distinct from
30611 ARM ones. */
30612
30613 void
30614 arm_adjust_symtab (void)
30615 {
30616 #ifdef OBJ_COFF
30617 symbolS * sym;
30618
30619 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
30620 {
30621 if (ARM_IS_THUMB (sym))
30622 {
30623 if (THUMB_IS_FUNC (sym))
30624 {
30625 /* Mark the symbol as a Thumb function. */
30626 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
30627 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
30628 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
30629
30630 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
30631 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
30632 else
30633 as_bad (_("%s: unexpected function type: %d"),
30634 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
30635 }
30636 else switch (S_GET_STORAGE_CLASS (sym))
30637 {
30638 case C_EXT:
30639 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
30640 break;
30641 case C_STAT:
30642 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
30643 break;
30644 case C_LABEL:
30645 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
30646 break;
30647 default:
30648 /* Do nothing. */
30649 break;
30650 }
30651 }
30652
30653 if (ARM_IS_INTERWORK (sym))
30654 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
30655 }
30656 #endif
30657 #ifdef OBJ_ELF
30658 symbolS * sym;
30659 char bind;
30660
30661 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
30662 {
30663 if (ARM_IS_THUMB (sym))
30664 {
30665 elf_symbol_type * elf_sym;
30666
30667 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
30668 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
30669
30670 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
30671 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
30672 {
30673 /* If it's a .thumb_func, declare it as so,
30674 otherwise tag label as .code 16. */
30675 if (THUMB_IS_FUNC (sym))
30676 ARM_SET_SYM_BRANCH_TYPE (elf_sym->internal_elf_sym.st_target_internal,
30677 ST_BRANCH_TO_THUMB);
30678 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
30679 elf_sym->internal_elf_sym.st_info =
30680 ELF_ST_INFO (bind, STT_ARM_16BIT);
30681 }
30682 }
30683 }
30684
30685 /* Remove any overlapping mapping symbols generated by alignment frags. */
30686 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
30687 /* Now do generic ELF adjustments. */
30688 elf_adjust_symtab ();
30689 #endif
30690 }
30691
30692 /* MD interface: Initialization. */
30693
30694 static void
30695 set_constant_flonums (void)
30696 {
30697 int i;
30698
30699 for (i = 0; i < NUM_FLOAT_VALS; i++)
30700 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
30701 abort ();
30702 }
30703
30704 /* Auto-select Thumb mode if it's the only available instruction set for the
30705 given architecture. */
30706
30707 static void
30708 autoselect_thumb_from_cpu_variant (void)
30709 {
30710 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
30711 opcode_select (16);
30712 }
30713
30714 void
30715 md_begin (void)
30716 {
30717 unsigned mach;
30718 unsigned int i;
30719
30720 arm_ops_hsh = str_htab_create ();
30721 arm_cond_hsh = str_htab_create ();
30722 arm_vcond_hsh = str_htab_create ();
30723 arm_shift_hsh = str_htab_create ();
30724 arm_psr_hsh = str_htab_create ();
30725 arm_v7m_psr_hsh = str_htab_create ();
30726 arm_reg_hsh = str_htab_create ();
30727 arm_reloc_hsh = str_htab_create ();
30728 arm_barrier_opt_hsh = str_htab_create ();
30729
30730 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
30731 if (str_hash_find (arm_ops_hsh, insns[i].template_name) == NULL)
30732 str_hash_insert (arm_ops_hsh, insns[i].template_name, insns + i, 0);
30733 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
30734 str_hash_insert (arm_cond_hsh, conds[i].template_name, conds + i, 0);
30735 for (i = 0; i < sizeof (vconds) / sizeof (struct asm_cond); i++)
30736 str_hash_insert (arm_vcond_hsh, vconds[i].template_name, vconds + i, 0);
30737 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
30738 str_hash_insert (arm_shift_hsh, shift_names[i].name, shift_names + i, 0);
30739 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
30740 str_hash_insert (arm_psr_hsh, psrs[i].template_name, psrs + i, 0);
30741 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
30742 str_hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
30743 v7m_psrs + i, 0);
30744 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
30745 str_hash_insert (arm_reg_hsh, reg_names[i].name, reg_names + i, 0);
30746 for (i = 0;
30747 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
30748 i++)
30749 str_hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
30750 barrier_opt_names + i, 0);
30751 #ifdef OBJ_ELF
30752 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
30753 {
30754 struct reloc_entry * entry = reloc_names + i;
30755
30756 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
30757 /* This makes encode_branch() use the EABI versions of this relocation. */
30758 entry->reloc = BFD_RELOC_UNUSED;
30759
30760 str_hash_insert (arm_reloc_hsh, entry->name, entry, 0);
30761 }
30762 #endif
30763
30764 set_constant_flonums ();
30765
30766 /* Set the cpu variant based on the command-line options. We prefer
30767 -mcpu= over -march= if both are set (as for GCC); and we prefer
30768 -mfpu= over any other way of setting the floating point unit.
30769 Use of legacy options with new options are faulted. */
30770 if (legacy_cpu)
30771 {
30772 if (mcpu_cpu_opt || march_cpu_opt)
30773 as_bad (_("use of old and new-style options to set CPU type"));
30774
30775 selected_arch = *legacy_cpu;
30776 }
30777 else if (mcpu_cpu_opt)
30778 {
30779 selected_arch = *mcpu_cpu_opt;
30780 selected_ext = *mcpu_ext_opt;
30781 }
30782 else if (march_cpu_opt)
30783 {
30784 selected_arch = *march_cpu_opt;
30785 selected_ext = *march_ext_opt;
30786 }
30787 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
30788
30789 if (legacy_fpu)
30790 {
30791 if (mfpu_opt)
30792 as_bad (_("use of old and new-style options to set FPU type"));
30793
30794 selected_fpu = *legacy_fpu;
30795 }
30796 else if (mfpu_opt)
30797 selected_fpu = *mfpu_opt;
30798 else
30799 {
30800 #if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
30801 || defined (TE_NetBSD) || defined (TE_VXWORKS))
30802 /* Some environments specify a default FPU. If they don't, infer it
30803 from the processor. */
30804 if (mcpu_fpu_opt)
30805 selected_fpu = *mcpu_fpu_opt;
30806 else if (march_fpu_opt)
30807 selected_fpu = *march_fpu_opt;
30808 #else
30809 selected_fpu = fpu_default;
30810 #endif
30811 }
30812
30813 if (ARM_FEATURE_ZERO (selected_fpu))
30814 {
30815 if (!no_cpu_selected ())
30816 selected_fpu = fpu_default;
30817 else
30818 selected_fpu = fpu_arch_fpa;
30819 }
30820
30821 #ifdef CPU_DEFAULT
30822 if (ARM_FEATURE_ZERO (selected_arch))
30823 {
30824 selected_arch = cpu_default;
30825 selected_cpu = selected_arch;
30826 }
30827 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
30828 #else
30829 /* Autodection of feature mode: allow all features in cpu_variant but leave
30830 selected_cpu unset. It will be set in aeabi_set_public_attributes ()
30831 after all instruction have been processed and we can decide what CPU
30832 should be selected. */
30833 if (ARM_FEATURE_ZERO (selected_arch))
30834 ARM_MERGE_FEATURE_SETS (cpu_variant, arm_arch_any, selected_fpu);
30835 else
30836 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
30837 #endif
30838
30839 autoselect_thumb_from_cpu_variant ();
30840
30841 arm_arch_used = thumb_arch_used = arm_arch_none;
30842
30843 #if defined OBJ_COFF || defined OBJ_ELF
30844 {
30845 unsigned int flags = 0;
30846
30847 #if defined OBJ_ELF
30848 flags = meabi_flags;
30849
30850 switch (meabi_flags)
30851 {
30852 case EF_ARM_EABI_UNKNOWN:
30853 #endif
30854 /* Set the flags in the private structure. */
30855 if (uses_apcs_26) flags |= F_APCS26;
30856 if (support_interwork) flags |= F_INTERWORK;
30857 if (uses_apcs_float) flags |= F_APCS_FLOAT;
30858 if (pic_code) flags |= F_PIC;
30859 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
30860 flags |= F_SOFT_FLOAT;
30861
30862 switch (mfloat_abi_opt)
30863 {
30864 case ARM_FLOAT_ABI_SOFT:
30865 case ARM_FLOAT_ABI_SOFTFP:
30866 flags |= F_SOFT_FLOAT;
30867 break;
30868
30869 case ARM_FLOAT_ABI_HARD:
30870 if (flags & F_SOFT_FLOAT)
30871 as_bad (_("hard-float conflicts with specified fpu"));
30872 break;
30873 }
30874
30875 /* Using pure-endian doubles (even if soft-float). */
30876 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
30877 flags |= F_VFP_FLOAT;
30878
30879 #if defined OBJ_ELF
30880 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
30881 flags |= EF_ARM_MAVERICK_FLOAT;
30882 break;
30883
30884 case EF_ARM_EABI_VER4:
30885 case EF_ARM_EABI_VER5:
30886 /* No additional flags to set. */
30887 break;
30888
30889 default:
30890 abort ();
30891 }
30892 #endif
30893 bfd_set_private_flags (stdoutput, flags);
30894
30895 /* We have run out flags in the COFF header to encode the
30896 status of ATPCS support, so instead we create a dummy,
30897 empty, debug section called .arm.atpcs. */
30898 if (atpcs)
30899 {
30900 asection * sec;
30901
30902 sec = bfd_make_section (stdoutput, ".arm.atpcs");
30903
30904 if (sec != NULL)
30905 {
30906 bfd_set_section_flags (sec, SEC_READONLY | SEC_DEBUGGING);
30907 bfd_set_section_size (sec, 0);
30908 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
30909 }
30910 }
30911 }
30912 #endif
30913
30914 /* Record the CPU type as well. */
30915 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
30916 mach = bfd_mach_arm_iWMMXt2;
30917 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
30918 mach = bfd_mach_arm_iWMMXt;
30919 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
30920 mach = bfd_mach_arm_XScale;
30921 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
30922 mach = bfd_mach_arm_ep9312;
30923 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
30924 mach = bfd_mach_arm_5TE;
30925 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
30926 {
30927 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
30928 mach = bfd_mach_arm_5T;
30929 else
30930 mach = bfd_mach_arm_5;
30931 }
30932 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
30933 {
30934 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
30935 mach = bfd_mach_arm_4T;
30936 else
30937 mach = bfd_mach_arm_4;
30938 }
30939 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
30940 mach = bfd_mach_arm_3M;
30941 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
30942 mach = bfd_mach_arm_3;
30943 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
30944 mach = bfd_mach_arm_2a;
30945 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
30946 mach = bfd_mach_arm_2;
30947 else
30948 mach = bfd_mach_arm_unknown;
30949
30950 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
30951 }
30952
30953 /* Command line processing. */
30954
30955 /* md_parse_option
30956 Invocation line includes a switch not recognized by the base assembler.
30957 See if it's a processor-specific option.
30958
30959 This routine is somewhat complicated by the need for backwards
30960 compatibility (since older releases of gcc can't be changed).
30961 The new options try to make the interface as compatible as
30962 possible with GCC.
30963
30964 New options (supported) are:
30965
30966 -mcpu=<cpu name> Assemble for selected processor
30967 -march=<architecture name> Assemble for selected architecture
30968 -mfpu=<fpu architecture> Assemble for selected FPU.
30969 -EB/-mbig-endian Big-endian
30970 -EL/-mlittle-endian Little-endian
30971 -k Generate PIC code
30972 -mthumb Start in Thumb mode
30973 -mthumb-interwork Code supports ARM/Thumb interworking
30974
30975 -m[no-]warn-deprecated Warn about deprecated features
30976 -m[no-]warn-syms Warn when symbols match instructions
30977
30978 For now we will also provide support for:
30979
30980 -mapcs-32 32-bit Program counter
30981 -mapcs-26 26-bit Program counter
30982 -macps-float Floats passed in FP registers
30983 -mapcs-reentrant Reentrant code
30984 -matpcs
30985 (sometime these will probably be replaced with -mapcs=<list of options>
30986 and -matpcs=<list of options>)
30987
30988 The remaining options are only supported for back-wards compatibility.
30989 Cpu variants, the arm part is optional:
30990 -m[arm]1 Currently not supported.
30991 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
30992 -m[arm]3 Arm 3 processor
30993 -m[arm]6[xx], Arm 6 processors
30994 -m[arm]7[xx][t][[d]m] Arm 7 processors
30995 -m[arm]8[10] Arm 8 processors
30996 -m[arm]9[20][tdmi] Arm 9 processors
30997 -mstrongarm[110[0]] StrongARM processors
30998 -mxscale XScale processors
30999 -m[arm]v[2345[t[e]]] Arm architectures
31000 -mall All (except the ARM1)
31001 FP variants:
31002 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
31003 -mfpe-old (No float load/store multiples)
31004 -mvfpxd VFP Single precision
31005 -mvfp All VFP
31006 -mno-fpu Disable all floating point instructions
31007
31008 The following CPU names are recognized:
31009 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
31010 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
31011 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
31012 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
31013 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
31014 arm10t arm10e, arm1020t, arm1020e, arm10200e,
31015 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
31016
31017 */
31018
31019 const char * md_shortopts = "m:k";
31020
31021 #ifdef ARM_BI_ENDIAN
31022 #define OPTION_EB (OPTION_MD_BASE + 0)
31023 #define OPTION_EL (OPTION_MD_BASE + 1)
31024 #else
31025 #if TARGET_BYTES_BIG_ENDIAN
31026 #define OPTION_EB (OPTION_MD_BASE + 0)
31027 #else
31028 #define OPTION_EL (OPTION_MD_BASE + 1)
31029 #endif
31030 #endif
31031 #define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
31032 #define OPTION_FDPIC (OPTION_MD_BASE + 3)
31033
31034 struct option md_longopts[] =
31035 {
31036 #ifdef OPTION_EB
31037 {"EB", no_argument, NULL, OPTION_EB},
31038 #endif
31039 #ifdef OPTION_EL
31040 {"EL", no_argument, NULL, OPTION_EL},
31041 #endif
31042 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
31043 #ifdef OBJ_ELF
31044 {"fdpic", no_argument, NULL, OPTION_FDPIC},
31045 #endif
31046 {NULL, no_argument, NULL, 0}
31047 };
31048
31049 size_t md_longopts_size = sizeof (md_longopts);
31050
31051 struct arm_option_table
31052 {
31053 const char * option; /* Option name to match. */
31054 const char * help; /* Help information. */
31055 int * var; /* Variable to change. */
31056 int value; /* What to change it to. */
31057 const char * deprecated; /* If non-null, print this message. */
31058 };
31059
31060 struct arm_option_table arm_opts[] =
31061 {
31062 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
31063 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
31064 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
31065 &support_interwork, 1, NULL},
31066 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
31067 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
31068 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
31069 1, NULL},
31070 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
31071 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
31072 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
31073 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
31074 NULL},
31075
31076 /* These are recognized by the assembler, but have no affect on code. */
31077 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
31078 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
31079
31080 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
31081 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
31082 &warn_on_deprecated, 0, NULL},
31083
31084 {"mwarn-restrict-it", N_("warn about performance deprecated IT instructions"
31085 " in ARMv8-A and ARMv8-R"), &warn_on_restrict_it, 1, NULL},
31086 {"mno-warn-restrict-it", NULL, &warn_on_restrict_it, 0, NULL},
31087
31088 {"mwarn-syms", N_("warn about symbols that match instruction names [default]"), (int *) (& flag_warn_syms), TRUE, NULL},
31089 {"mno-warn-syms", N_("disable warnings about symobls that match instructions"), (int *) (& flag_warn_syms), FALSE, NULL},
31090 {NULL, NULL, NULL, 0, NULL}
31091 };
31092
31093 struct arm_legacy_option_table
31094 {
31095 const char * option; /* Option name to match. */
31096 const arm_feature_set ** var; /* Variable to change. */
31097 const arm_feature_set value; /* What to change it to. */
31098 const char * deprecated; /* If non-null, print this message. */
31099 };
31100
31101 const struct arm_legacy_option_table arm_legacy_opts[] =
31102 {
31103 /* DON'T add any new processors to this list -- we want the whole list
31104 to go away... Add them to the processors table instead. */
31105 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
31106 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
31107 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
31108 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
31109 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
31110 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
31111 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
31112 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
31113 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
31114 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
31115 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
31116 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
31117 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
31118 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
31119 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
31120 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
31121 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
31122 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
31123 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
31124 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
31125 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
31126 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
31127 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
31128 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
31129 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
31130 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
31131 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
31132 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
31133 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
31134 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
31135 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
31136 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
31137 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
31138 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
31139 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
31140 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
31141 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
31142 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
31143 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
31144 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
31145 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
31146 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
31147 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
31148 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
31149 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
31150 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
31151 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
31152 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
31153 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
31154 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
31155 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
31156 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
31157 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
31158 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
31159 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
31160 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
31161 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
31162 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
31163 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
31164 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
31165 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
31166 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
31167 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
31168 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
31169 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
31170 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
31171 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
31172 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
31173 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
31174 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
31175 N_("use -mcpu=strongarm110")},
31176 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
31177 N_("use -mcpu=strongarm1100")},
31178 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
31179 N_("use -mcpu=strongarm1110")},
31180 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
31181 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
31182 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
31183
31184 /* Architecture variants -- don't add any more to this list either. */
31185 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
31186 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
31187 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
31188 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
31189 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
31190 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
31191 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
31192 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
31193 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
31194 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
31195 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
31196 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
31197 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
31198 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
31199 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
31200 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
31201 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
31202 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
31203
31204 /* Floating point variants -- don't add any more to this list either. */
31205 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
31206 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
31207 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
31208 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
31209 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
31210
31211 {NULL, NULL, ARM_ARCH_NONE, NULL}
31212 };
31213
31214 struct arm_cpu_option_table
31215 {
31216 const char * name;
31217 size_t name_len;
31218 const arm_feature_set value;
31219 const arm_feature_set ext;
31220 /* For some CPUs we assume an FPU unless the user explicitly sets
31221 -mfpu=... */
31222 const arm_feature_set default_fpu;
31223 /* The canonical name of the CPU, or NULL to use NAME converted to upper
31224 case. */
31225 const char * canonical_name;
31226 };
31227
31228 /* This list should, at a minimum, contain all the cpu names
31229 recognized by GCC. */
31230 #define ARM_CPU_OPT(N, CN, V, E, DF) { N, sizeof (N) - 1, V, E, DF, CN }
31231
31232 static const struct arm_cpu_option_table arm_cpus[] =
31233 {
31234 ARM_CPU_OPT ("all", NULL, ARM_ANY,
31235 ARM_ARCH_NONE,
31236 FPU_ARCH_FPA),
31237 ARM_CPU_OPT ("arm1", NULL, ARM_ARCH_V1,
31238 ARM_ARCH_NONE,
31239 FPU_ARCH_FPA),
31240 ARM_CPU_OPT ("arm2", NULL, ARM_ARCH_V2,
31241 ARM_ARCH_NONE,
31242 FPU_ARCH_FPA),
31243 ARM_CPU_OPT ("arm250", NULL, ARM_ARCH_V2S,
31244 ARM_ARCH_NONE,
31245 FPU_ARCH_FPA),
31246 ARM_CPU_OPT ("arm3", NULL, ARM_ARCH_V2S,
31247 ARM_ARCH_NONE,
31248 FPU_ARCH_FPA),
31249 ARM_CPU_OPT ("arm6", NULL, ARM_ARCH_V3,
31250 ARM_ARCH_NONE,
31251 FPU_ARCH_FPA),
31252 ARM_CPU_OPT ("arm60", NULL, ARM_ARCH_V3,
31253 ARM_ARCH_NONE,
31254 FPU_ARCH_FPA),
31255 ARM_CPU_OPT ("arm600", NULL, ARM_ARCH_V3,
31256 ARM_ARCH_NONE,
31257 FPU_ARCH_FPA),
31258 ARM_CPU_OPT ("arm610", NULL, ARM_ARCH_V3,
31259 ARM_ARCH_NONE,
31260 FPU_ARCH_FPA),
31261 ARM_CPU_OPT ("arm620", NULL, ARM_ARCH_V3,
31262 ARM_ARCH_NONE,
31263 FPU_ARCH_FPA),
31264 ARM_CPU_OPT ("arm7", NULL, ARM_ARCH_V3,
31265 ARM_ARCH_NONE,
31266 FPU_ARCH_FPA),
31267 ARM_CPU_OPT ("arm7m", NULL, ARM_ARCH_V3M,
31268 ARM_ARCH_NONE,
31269 FPU_ARCH_FPA),
31270 ARM_CPU_OPT ("arm7d", NULL, ARM_ARCH_V3,
31271 ARM_ARCH_NONE,
31272 FPU_ARCH_FPA),
31273 ARM_CPU_OPT ("arm7dm", NULL, ARM_ARCH_V3M,
31274 ARM_ARCH_NONE,
31275 FPU_ARCH_FPA),
31276 ARM_CPU_OPT ("arm7di", NULL, ARM_ARCH_V3,
31277 ARM_ARCH_NONE,
31278 FPU_ARCH_FPA),
31279 ARM_CPU_OPT ("arm7dmi", NULL, ARM_ARCH_V3M,
31280 ARM_ARCH_NONE,
31281 FPU_ARCH_FPA),
31282 ARM_CPU_OPT ("arm70", NULL, ARM_ARCH_V3,
31283 ARM_ARCH_NONE,
31284 FPU_ARCH_FPA),
31285 ARM_CPU_OPT ("arm700", NULL, ARM_ARCH_V3,
31286 ARM_ARCH_NONE,
31287 FPU_ARCH_FPA),
31288 ARM_CPU_OPT ("arm700i", NULL, ARM_ARCH_V3,
31289 ARM_ARCH_NONE,
31290 FPU_ARCH_FPA),
31291 ARM_CPU_OPT ("arm710", NULL, ARM_ARCH_V3,
31292 ARM_ARCH_NONE,
31293 FPU_ARCH_FPA),
31294 ARM_CPU_OPT ("arm710t", NULL, ARM_ARCH_V4T,
31295 ARM_ARCH_NONE,
31296 FPU_ARCH_FPA),
31297 ARM_CPU_OPT ("arm720", NULL, ARM_ARCH_V3,
31298 ARM_ARCH_NONE,
31299 FPU_ARCH_FPA),
31300 ARM_CPU_OPT ("arm720t", NULL, ARM_ARCH_V4T,
31301 ARM_ARCH_NONE,
31302 FPU_ARCH_FPA),
31303 ARM_CPU_OPT ("arm740t", NULL, ARM_ARCH_V4T,
31304 ARM_ARCH_NONE,
31305 FPU_ARCH_FPA),
31306 ARM_CPU_OPT ("arm710c", NULL, ARM_ARCH_V3,
31307 ARM_ARCH_NONE,
31308 FPU_ARCH_FPA),
31309 ARM_CPU_OPT ("arm7100", NULL, ARM_ARCH_V3,
31310 ARM_ARCH_NONE,
31311 FPU_ARCH_FPA),
31312 ARM_CPU_OPT ("arm7500", NULL, ARM_ARCH_V3,
31313 ARM_ARCH_NONE,
31314 FPU_ARCH_FPA),
31315 ARM_CPU_OPT ("arm7500fe", NULL, ARM_ARCH_V3,
31316 ARM_ARCH_NONE,
31317 FPU_ARCH_FPA),
31318 ARM_CPU_OPT ("arm7t", NULL, ARM_ARCH_V4T,
31319 ARM_ARCH_NONE,
31320 FPU_ARCH_FPA),
31321 ARM_CPU_OPT ("arm7tdmi", NULL, ARM_ARCH_V4T,
31322 ARM_ARCH_NONE,
31323 FPU_ARCH_FPA),
31324 ARM_CPU_OPT ("arm7tdmi-s", NULL, ARM_ARCH_V4T,
31325 ARM_ARCH_NONE,
31326 FPU_ARCH_FPA),
31327 ARM_CPU_OPT ("arm8", NULL, ARM_ARCH_V4,
31328 ARM_ARCH_NONE,
31329 FPU_ARCH_FPA),
31330 ARM_CPU_OPT ("arm810", NULL, ARM_ARCH_V4,
31331 ARM_ARCH_NONE,
31332 FPU_ARCH_FPA),
31333 ARM_CPU_OPT ("strongarm", NULL, ARM_ARCH_V4,
31334 ARM_ARCH_NONE,
31335 FPU_ARCH_FPA),
31336 ARM_CPU_OPT ("strongarm1", NULL, ARM_ARCH_V4,
31337 ARM_ARCH_NONE,
31338 FPU_ARCH_FPA),
31339 ARM_CPU_OPT ("strongarm110", NULL, ARM_ARCH_V4,
31340 ARM_ARCH_NONE,
31341 FPU_ARCH_FPA),
31342 ARM_CPU_OPT ("strongarm1100", NULL, ARM_ARCH_V4,
31343 ARM_ARCH_NONE,
31344 FPU_ARCH_FPA),
31345 ARM_CPU_OPT ("strongarm1110", NULL, ARM_ARCH_V4,
31346 ARM_ARCH_NONE,
31347 FPU_ARCH_FPA),
31348 ARM_CPU_OPT ("arm9", NULL, ARM_ARCH_V4T,
31349 ARM_ARCH_NONE,
31350 FPU_ARCH_FPA),
31351 ARM_CPU_OPT ("arm920", "ARM920T", ARM_ARCH_V4T,
31352 ARM_ARCH_NONE,
31353 FPU_ARCH_FPA),
31354 ARM_CPU_OPT ("arm920t", NULL, ARM_ARCH_V4T,
31355 ARM_ARCH_NONE,
31356 FPU_ARCH_FPA),
31357 ARM_CPU_OPT ("arm922t", NULL, ARM_ARCH_V4T,
31358 ARM_ARCH_NONE,
31359 FPU_ARCH_FPA),
31360 ARM_CPU_OPT ("arm940t", NULL, ARM_ARCH_V4T,
31361 ARM_ARCH_NONE,
31362 FPU_ARCH_FPA),
31363 ARM_CPU_OPT ("arm9tdmi", NULL, ARM_ARCH_V4T,
31364 ARM_ARCH_NONE,
31365 FPU_ARCH_FPA),
31366 ARM_CPU_OPT ("fa526", NULL, ARM_ARCH_V4,
31367 ARM_ARCH_NONE,
31368 FPU_ARCH_FPA),
31369 ARM_CPU_OPT ("fa626", NULL, ARM_ARCH_V4,
31370 ARM_ARCH_NONE,
31371 FPU_ARCH_FPA),
31372
31373 /* For V5 or later processors we default to using VFP; but the user
31374 should really set the FPU type explicitly. */
31375 ARM_CPU_OPT ("arm9e-r0", NULL, ARM_ARCH_V5TExP,
31376 ARM_ARCH_NONE,
31377 FPU_ARCH_VFP_V2),
31378 ARM_CPU_OPT ("arm9e", NULL, ARM_ARCH_V5TE,
31379 ARM_ARCH_NONE,
31380 FPU_ARCH_VFP_V2),
31381 ARM_CPU_OPT ("arm926ej", "ARM926EJ-S", ARM_ARCH_V5TEJ,
31382 ARM_ARCH_NONE,
31383 FPU_ARCH_VFP_V2),
31384 ARM_CPU_OPT ("arm926ejs", "ARM926EJ-S", ARM_ARCH_V5TEJ,
31385 ARM_ARCH_NONE,
31386 FPU_ARCH_VFP_V2),
31387 ARM_CPU_OPT ("arm926ej-s", NULL, ARM_ARCH_V5TEJ,
31388 ARM_ARCH_NONE,
31389 FPU_ARCH_VFP_V2),
31390 ARM_CPU_OPT ("arm946e-r0", NULL, ARM_ARCH_V5TExP,
31391 ARM_ARCH_NONE,
31392 FPU_ARCH_VFP_V2),
31393 ARM_CPU_OPT ("arm946e", "ARM946E-S", ARM_ARCH_V5TE,
31394 ARM_ARCH_NONE,
31395 FPU_ARCH_VFP_V2),
31396 ARM_CPU_OPT ("arm946e-s", NULL, ARM_ARCH_V5TE,
31397 ARM_ARCH_NONE,
31398 FPU_ARCH_VFP_V2),
31399 ARM_CPU_OPT ("arm966e-r0", NULL, ARM_ARCH_V5TExP,
31400 ARM_ARCH_NONE,
31401 FPU_ARCH_VFP_V2),
31402 ARM_CPU_OPT ("arm966e", "ARM966E-S", ARM_ARCH_V5TE,
31403 ARM_ARCH_NONE,
31404 FPU_ARCH_VFP_V2),
31405 ARM_CPU_OPT ("arm966e-s", NULL, ARM_ARCH_V5TE,
31406 ARM_ARCH_NONE,
31407 FPU_ARCH_VFP_V2),
31408 ARM_CPU_OPT ("arm968e-s", NULL, ARM_ARCH_V5TE,
31409 ARM_ARCH_NONE,
31410 FPU_ARCH_VFP_V2),
31411 ARM_CPU_OPT ("arm10t", NULL, ARM_ARCH_V5T,
31412 ARM_ARCH_NONE,
31413 FPU_ARCH_VFP_V1),
31414 ARM_CPU_OPT ("arm10tdmi", NULL, ARM_ARCH_V5T,
31415 ARM_ARCH_NONE,
31416 FPU_ARCH_VFP_V1),
31417 ARM_CPU_OPT ("arm10e", NULL, ARM_ARCH_V5TE,
31418 ARM_ARCH_NONE,
31419 FPU_ARCH_VFP_V2),
31420 ARM_CPU_OPT ("arm1020", "ARM1020E", ARM_ARCH_V5TE,
31421 ARM_ARCH_NONE,
31422 FPU_ARCH_VFP_V2),
31423 ARM_CPU_OPT ("arm1020t", NULL, ARM_ARCH_V5T,
31424 ARM_ARCH_NONE,
31425 FPU_ARCH_VFP_V1),
31426 ARM_CPU_OPT ("arm1020e", NULL, ARM_ARCH_V5TE,
31427 ARM_ARCH_NONE,
31428 FPU_ARCH_VFP_V2),
31429 ARM_CPU_OPT ("arm1022e", NULL, ARM_ARCH_V5TE,
31430 ARM_ARCH_NONE,
31431 FPU_ARCH_VFP_V2),
31432 ARM_CPU_OPT ("arm1026ejs", "ARM1026EJ-S", ARM_ARCH_V5TEJ,
31433 ARM_ARCH_NONE,
31434 FPU_ARCH_VFP_V2),
31435 ARM_CPU_OPT ("arm1026ej-s", NULL, ARM_ARCH_V5TEJ,
31436 ARM_ARCH_NONE,
31437 FPU_ARCH_VFP_V2),
31438 ARM_CPU_OPT ("fa606te", NULL, ARM_ARCH_V5TE,
31439 ARM_ARCH_NONE,
31440 FPU_ARCH_VFP_V2),
31441 ARM_CPU_OPT ("fa616te", NULL, ARM_ARCH_V5TE,
31442 ARM_ARCH_NONE,
31443 FPU_ARCH_VFP_V2),
31444 ARM_CPU_OPT ("fa626te", NULL, ARM_ARCH_V5TE,
31445 ARM_ARCH_NONE,
31446 FPU_ARCH_VFP_V2),
31447 ARM_CPU_OPT ("fmp626", NULL, ARM_ARCH_V5TE,
31448 ARM_ARCH_NONE,
31449 FPU_ARCH_VFP_V2),
31450 ARM_CPU_OPT ("fa726te", NULL, ARM_ARCH_V5TE,
31451 ARM_ARCH_NONE,
31452 FPU_ARCH_VFP_V2),
31453 ARM_CPU_OPT ("arm1136js", "ARM1136J-S", ARM_ARCH_V6,
31454 ARM_ARCH_NONE,
31455 FPU_NONE),
31456 ARM_CPU_OPT ("arm1136j-s", NULL, ARM_ARCH_V6,
31457 ARM_ARCH_NONE,
31458 FPU_NONE),
31459 ARM_CPU_OPT ("arm1136jfs", "ARM1136JF-S", ARM_ARCH_V6,
31460 ARM_ARCH_NONE,
31461 FPU_ARCH_VFP_V2),
31462 ARM_CPU_OPT ("arm1136jf-s", NULL, ARM_ARCH_V6,
31463 ARM_ARCH_NONE,
31464 FPU_ARCH_VFP_V2),
31465 ARM_CPU_OPT ("mpcore", "MPCore", ARM_ARCH_V6K,
31466 ARM_ARCH_NONE,
31467 FPU_ARCH_VFP_V2),
31468 ARM_CPU_OPT ("mpcorenovfp", "MPCore", ARM_ARCH_V6K,
31469 ARM_ARCH_NONE,
31470 FPU_NONE),
31471 ARM_CPU_OPT ("arm1156t2-s", NULL, ARM_ARCH_V6T2,
31472 ARM_ARCH_NONE,
31473 FPU_NONE),
31474 ARM_CPU_OPT ("arm1156t2f-s", NULL, ARM_ARCH_V6T2,
31475 ARM_ARCH_NONE,
31476 FPU_ARCH_VFP_V2),
31477 ARM_CPU_OPT ("arm1176jz-s", NULL, ARM_ARCH_V6KZ,
31478 ARM_ARCH_NONE,
31479 FPU_NONE),
31480 ARM_CPU_OPT ("arm1176jzf-s", NULL, ARM_ARCH_V6KZ,
31481 ARM_ARCH_NONE,
31482 FPU_ARCH_VFP_V2),
31483 ARM_CPU_OPT ("cortex-a5", "Cortex-A5", ARM_ARCH_V7A,
31484 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
31485 FPU_NONE),
31486 ARM_CPU_OPT ("cortex-a7", "Cortex-A7", ARM_ARCH_V7VE,
31487 ARM_ARCH_NONE,
31488 FPU_ARCH_NEON_VFP_V4),
31489 ARM_CPU_OPT ("cortex-a8", "Cortex-A8", ARM_ARCH_V7A,
31490 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
31491 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
31492 ARM_CPU_OPT ("cortex-a9", "Cortex-A9", ARM_ARCH_V7A,
31493 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
31494 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
31495 ARM_CPU_OPT ("cortex-a12", "Cortex-A12", ARM_ARCH_V7VE,
31496 ARM_ARCH_NONE,
31497 FPU_ARCH_NEON_VFP_V4),
31498 ARM_CPU_OPT ("cortex-a15", "Cortex-A15", ARM_ARCH_V7VE,
31499 ARM_ARCH_NONE,
31500 FPU_ARCH_NEON_VFP_V4),
31501 ARM_CPU_OPT ("cortex-a17", "Cortex-A17", ARM_ARCH_V7VE,
31502 ARM_ARCH_NONE,
31503 FPU_ARCH_NEON_VFP_V4),
31504 ARM_CPU_OPT ("cortex-a32", "Cortex-A32", ARM_ARCH_V8A,
31505 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31506 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31507 ARM_CPU_OPT ("cortex-a35", "Cortex-A35", ARM_ARCH_V8A,
31508 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31509 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31510 ARM_CPU_OPT ("cortex-a53", "Cortex-A53", ARM_ARCH_V8A,
31511 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31512 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31513 ARM_CPU_OPT ("cortex-a55", "Cortex-A55", ARM_ARCH_V8_2A,
31514 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31515 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31516 ARM_CPU_OPT ("cortex-a57", "Cortex-A57", ARM_ARCH_V8A,
31517 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31518 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31519 ARM_CPU_OPT ("cortex-a72", "Cortex-A72", ARM_ARCH_V8A,
31520 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31521 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31522 ARM_CPU_OPT ("cortex-a73", "Cortex-A73", ARM_ARCH_V8A,
31523 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31524 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31525 ARM_CPU_OPT ("cortex-a75", "Cortex-A75", ARM_ARCH_V8_2A,
31526 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31527 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31528 ARM_CPU_OPT ("cortex-a76", "Cortex-A76", ARM_ARCH_V8_2A,
31529 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31530 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31531 ARM_CPU_OPT ("cortex-a76ae", "Cortex-A76AE", ARM_ARCH_V8_2A,
31532 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31533 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31534 ARM_CPU_OPT ("cortex-a77", "Cortex-A77", ARM_ARCH_V8_2A,
31535 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31536 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31537 ARM_CPU_OPT ("ares", "Ares", ARM_ARCH_V8_2A,
31538 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31539 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31540 ARM_CPU_OPT ("cortex-r4", "Cortex-R4", ARM_ARCH_V7R,
31541 ARM_ARCH_NONE,
31542 FPU_NONE),
31543 ARM_CPU_OPT ("cortex-r4f", "Cortex-R4F", ARM_ARCH_V7R,
31544 ARM_ARCH_NONE,
31545 FPU_ARCH_VFP_V3D16),
31546 ARM_CPU_OPT ("cortex-r5", "Cortex-R5", ARM_ARCH_V7R,
31547 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
31548 FPU_NONE),
31549 ARM_CPU_OPT ("cortex-r7", "Cortex-R7", ARM_ARCH_V7R,
31550 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
31551 FPU_ARCH_VFP_V3D16),
31552 ARM_CPU_OPT ("cortex-r8", "Cortex-R8", ARM_ARCH_V7R,
31553 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
31554 FPU_ARCH_VFP_V3D16),
31555 ARM_CPU_OPT ("cortex-r52", "Cortex-R52", ARM_ARCH_V8R,
31556 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31557 FPU_ARCH_NEON_VFP_ARMV8),
31558 ARM_CPU_OPT ("cortex-m35p", "Cortex-M35P", ARM_ARCH_V8M_MAIN,
31559 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31560 FPU_NONE),
31561 ARM_CPU_OPT ("cortex-m33", "Cortex-M33", ARM_ARCH_V8M_MAIN,
31562 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31563 FPU_NONE),
31564 ARM_CPU_OPT ("cortex-m23", "Cortex-M23", ARM_ARCH_V8M_BASE,
31565 ARM_ARCH_NONE,
31566 FPU_NONE),
31567 ARM_CPU_OPT ("cortex-m7", "Cortex-M7", ARM_ARCH_V7EM,
31568 ARM_ARCH_NONE,
31569 FPU_NONE),
31570 ARM_CPU_OPT ("cortex-m4", "Cortex-M4", ARM_ARCH_V7EM,
31571 ARM_ARCH_NONE,
31572 FPU_NONE),
31573 ARM_CPU_OPT ("cortex-m3", "Cortex-M3", ARM_ARCH_V7M,
31574 ARM_ARCH_NONE,
31575 FPU_NONE),
31576 ARM_CPU_OPT ("cortex-m1", "Cortex-M1", ARM_ARCH_V6SM,
31577 ARM_ARCH_NONE,
31578 FPU_NONE),
31579 ARM_CPU_OPT ("cortex-m0", "Cortex-M0", ARM_ARCH_V6SM,
31580 ARM_ARCH_NONE,
31581 FPU_NONE),
31582 ARM_CPU_OPT ("cortex-m0plus", "Cortex-M0+", ARM_ARCH_V6SM,
31583 ARM_ARCH_NONE,
31584 FPU_NONE),
31585 ARM_CPU_OPT ("exynos-m1", "Samsung Exynos M1", ARM_ARCH_V8A,
31586 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31587 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31588 ARM_CPU_OPT ("neoverse-n1", "Neoverse N1", ARM_ARCH_V8_2A,
31589 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31590 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD),
31591 /* ??? XSCALE is really an architecture. */
31592 ARM_CPU_OPT ("xscale", NULL, ARM_ARCH_XSCALE,
31593 ARM_ARCH_NONE,
31594 FPU_ARCH_VFP_V2),
31595
31596 /* ??? iwmmxt is not a processor. */
31597 ARM_CPU_OPT ("iwmmxt", NULL, ARM_ARCH_IWMMXT,
31598 ARM_ARCH_NONE,
31599 FPU_ARCH_VFP_V2),
31600 ARM_CPU_OPT ("iwmmxt2", NULL, ARM_ARCH_IWMMXT2,
31601 ARM_ARCH_NONE,
31602 FPU_ARCH_VFP_V2),
31603 ARM_CPU_OPT ("i80200", NULL, ARM_ARCH_XSCALE,
31604 ARM_ARCH_NONE,
31605 FPU_ARCH_VFP_V2),
31606
31607 /* Maverick. */
31608 ARM_CPU_OPT ("ep9312", "ARM920T",
31609 ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
31610 ARM_ARCH_NONE, FPU_ARCH_MAVERICK),
31611
31612 /* Marvell processors. */
31613 ARM_CPU_OPT ("marvell-pj4", NULL, ARM_ARCH_V7A,
31614 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
31615 FPU_ARCH_VFP_V3D16),
31616 ARM_CPU_OPT ("marvell-whitney", NULL, ARM_ARCH_V7A,
31617 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
31618 FPU_ARCH_NEON_VFP_V4),
31619
31620 /* APM X-Gene family. */
31621 ARM_CPU_OPT ("xgene1", "APM X-Gene 1", ARM_ARCH_V8A,
31622 ARM_ARCH_NONE,
31623 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31624 ARM_CPU_OPT ("xgene2", "APM X-Gene 2", ARM_ARCH_V8A,
31625 ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
31626 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
31627
31628 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
31629 };
31630 #undef ARM_CPU_OPT
31631
31632 struct arm_ext_table
31633 {
31634 const char * name;
31635 size_t name_len;
31636 const arm_feature_set merge;
31637 const arm_feature_set clear;
31638 };
31639
31640 struct arm_arch_option_table
31641 {
31642 const char * name;
31643 size_t name_len;
31644 const arm_feature_set value;
31645 const arm_feature_set default_fpu;
31646 const struct arm_ext_table * ext_table;
31647 };
31648
31649 /* Used to add support for +E and +noE extension. */
31650 #define ARM_EXT(E, M, C) { E, sizeof (E) - 1, M, C }
31651 /* Used to add support for a +E extension. */
31652 #define ARM_ADD(E, M) { E, sizeof(E) - 1, M, ARM_ARCH_NONE }
31653 /* Used to add support for a +noE extension. */
31654 #define ARM_REMOVE(E, C) { E, sizeof(E) -1, ARM_ARCH_NONE, C }
31655
31656 #define ALL_FP ARM_FEATURE (0, ARM_EXT2_FP16_INST | ARM_EXT2_FP16_FML, \
31657 ~0 & ~FPU_ENDIAN_PURE)
31658
31659 static const struct arm_ext_table armv5te_ext_table[] =
31660 {
31661 ARM_EXT ("fp", FPU_ARCH_VFP_V2, ALL_FP),
31662 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31663 };
31664
31665 static const struct arm_ext_table armv7_ext_table[] =
31666 {
31667 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
31668 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31669 };
31670
31671 static const struct arm_ext_table armv7ve_ext_table[] =
31672 {
31673 ARM_EXT ("fp", FPU_ARCH_VFP_V4D16, ALL_FP),
31674 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16),
31675 ARM_ADD ("vfpv3", FPU_ARCH_VFP_V3),
31676 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
31677 ARM_ADD ("vfpv3-fp16", FPU_ARCH_VFP_V3_FP16),
31678 ARM_ADD ("vfpv4-d16", FPU_ARCH_VFP_V4D16), /* Alias for +fp. */
31679 ARM_ADD ("vfpv4", FPU_ARCH_VFP_V4),
31680
31681 ARM_EXT ("simd", FPU_ARCH_NEON_VFP_V4,
31682 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_NEON_EXT_FMA)),
31683
31684 /* Aliases for +simd. */
31685 ARM_ADD ("neon-vfpv4", FPU_ARCH_NEON_VFP_V4),
31686
31687 ARM_ADD ("neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
31688 ARM_ADD ("neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
31689 ARM_ADD ("neon-fp16", FPU_ARCH_NEON_FP16),
31690
31691 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31692 };
31693
31694 static const struct arm_ext_table armv7a_ext_table[] =
31695 {
31696 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
31697 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16), /* Alias for +fp. */
31698 ARM_ADD ("vfpv3", FPU_ARCH_VFP_V3),
31699 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
31700 ARM_ADD ("vfpv3-fp16", FPU_ARCH_VFP_V3_FP16),
31701 ARM_ADD ("vfpv4-d16", FPU_ARCH_VFP_V4D16),
31702 ARM_ADD ("vfpv4", FPU_ARCH_VFP_V4),
31703
31704 ARM_EXT ("simd", FPU_ARCH_VFP_V3_PLUS_NEON_V1,
31705 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_NEON_EXT_FMA)),
31706
31707 /* Aliases for +simd. */
31708 ARM_ADD ("neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
31709 ARM_ADD ("neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1),
31710
31711 ARM_ADD ("neon-fp16", FPU_ARCH_NEON_FP16),
31712 ARM_ADD ("neon-vfpv4", FPU_ARCH_NEON_VFP_V4),
31713
31714 ARM_ADD ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP)),
31715 ARM_ADD ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC)),
31716 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31717 };
31718
31719 static const struct arm_ext_table armv7r_ext_table[] =
31720 {
31721 ARM_ADD ("fp.sp", FPU_ARCH_VFP_V3xD),
31722 ARM_ADD ("vfpv3xd", FPU_ARCH_VFP_V3xD), /* Alias for +fp.sp. */
31723 ARM_EXT ("fp", FPU_ARCH_VFP_V3D16, ALL_FP),
31724 ARM_ADD ("vfpv3-d16", FPU_ARCH_VFP_V3D16), /* Alias for +fp. */
31725 ARM_ADD ("vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16),
31726 ARM_ADD ("vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16),
31727 ARM_EXT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
31728 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV)),
31729 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31730 };
31731
31732 static const struct arm_ext_table armv7em_ext_table[] =
31733 {
31734 ARM_EXT ("fp", FPU_ARCH_VFP_V4_SP_D16, ALL_FP),
31735 /* Alias for +fp, used to be known as fpv4-sp-d16. */
31736 ARM_ADD ("vfpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16),
31737 ARM_ADD ("fpv5", FPU_ARCH_VFP_V5_SP_D16),
31738 ARM_ADD ("fp.dp", FPU_ARCH_VFP_V5D16),
31739 ARM_ADD ("fpv5-d16", FPU_ARCH_VFP_V5D16),
31740 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31741 };
31742
31743 static const struct arm_ext_table armv8a_ext_table[] =
31744 {
31745 ARM_ADD ("crc", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC)),
31746 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8),
31747 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
31748 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31749
31750 /* Armv8-a does not allow an FP implementation without SIMD, so the user
31751 should use the +simd option to turn on FP. */
31752 ARM_REMOVE ("fp", ALL_FP),
31753 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
31754 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
31755 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31756 };
31757
31758
31759 static const struct arm_ext_table armv81a_ext_table[] =
31760 {
31761 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8_1),
31762 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1,
31763 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31764
31765 /* Armv8-a does not allow an FP implementation without SIMD, so the user
31766 should use the +simd option to turn on FP. */
31767 ARM_REMOVE ("fp", ALL_FP),
31768 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
31769 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
31770 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31771 };
31772
31773 static const struct arm_ext_table armv82a_ext_table[] =
31774 {
31775 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8_1),
31776 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_2_FP16),
31777 ARM_ADD ("fp16fml", FPU_ARCH_NEON_VFP_ARMV8_2_FP16FML),
31778 ARM_ADD ("bf16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16)),
31779 ARM_ADD ("i8mm", ARM_FEATURE_CORE_HIGH (ARM_EXT2_I8MM)),
31780 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1,
31781 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31782 ARM_ADD ("dotprod", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
31783
31784 /* Armv8-a does not allow an FP implementation without SIMD, so the user
31785 should use the +simd option to turn on FP. */
31786 ARM_REMOVE ("fp", ALL_FP),
31787 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
31788 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
31789 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31790 };
31791
31792 static const struct arm_ext_table armv84a_ext_table[] =
31793 {
31794 ARM_ADD ("simd", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
31795 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_4_FP16FML),
31796 ARM_ADD ("bf16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16)),
31797 ARM_ADD ("i8mm", ARM_FEATURE_CORE_HIGH (ARM_EXT2_I8MM)),
31798 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4,
31799 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31800
31801 /* Armv8-a does not allow an FP implementation without SIMD, so the user
31802 should use the +simd option to turn on FP. */
31803 ARM_REMOVE ("fp", ALL_FP),
31804 ARM_ADD ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB)),
31805 ARM_ADD ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES)),
31806 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31807 };
31808
31809 static const struct arm_ext_table armv85a_ext_table[] =
31810 {
31811 ARM_ADD ("simd", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8),
31812 ARM_ADD ("fp16", FPU_ARCH_NEON_VFP_ARMV8_4_FP16FML),
31813 ARM_ADD ("bf16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16)),
31814 ARM_ADD ("i8mm", ARM_FEATURE_CORE_HIGH (ARM_EXT2_I8MM)),
31815 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4,
31816 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31817
31818 /* Armv8-a does not allow an FP implementation without SIMD, so the user
31819 should use the +simd option to turn on FP. */
31820 ARM_REMOVE ("fp", ALL_FP),
31821 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31822 };
31823
31824 static const struct arm_ext_table armv86a_ext_table[] =
31825 {
31826 ARM_ADD ("i8mm", ARM_FEATURE_CORE_HIGH (ARM_EXT2_I8MM)),
31827 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31828 };
31829
31830 #define CDE_EXTENSIONS \
31831 ARM_ADD ("cdecp0", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE0)), \
31832 ARM_ADD ("cdecp1", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE1)), \
31833 ARM_ADD ("cdecp2", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE2)), \
31834 ARM_ADD ("cdecp3", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE3)), \
31835 ARM_ADD ("cdecp4", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE4)), \
31836 ARM_ADD ("cdecp5", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE5)), \
31837 ARM_ADD ("cdecp6", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE6)), \
31838 ARM_ADD ("cdecp7", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CDE | ARM_EXT2_CDE7))
31839
31840 static const struct arm_ext_table armv8m_main_ext_table[] =
31841 {
31842 ARM_EXT ("dsp", ARM_FEATURE_CORE_LOW (ARM_AEXT_V8M_MAIN_DSP),
31843 ARM_FEATURE_CORE_LOW (ARM_AEXT_V8M_MAIN_DSP)),
31844 ARM_EXT ("fp", FPU_ARCH_VFP_V5_SP_D16, ALL_FP),
31845 ARM_ADD ("fp.dp", FPU_ARCH_VFP_V5D16),
31846 CDE_EXTENSIONS,
31847 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31848 };
31849
31850
31851 static const struct arm_ext_table armv8_1m_main_ext_table[] =
31852 {
31853 ARM_EXT ("dsp", ARM_FEATURE_CORE_LOW (ARM_AEXT_V8M_MAIN_DSP),
31854 ARM_FEATURE_CORE_LOW (ARM_AEXT_V8M_MAIN_DSP)),
31855 ARM_EXT ("fp",
31856 ARM_FEATURE (0, ARM_EXT2_FP16_INST,
31857 FPU_VFP_V5_SP_D16 | FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA),
31858 ALL_FP),
31859 ARM_ADD ("fp.dp",
31860 ARM_FEATURE (0, ARM_EXT2_FP16_INST,
31861 FPU_VFP_V5D16 | FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA)),
31862 ARM_EXT ("mve", ARM_FEATURE (ARM_AEXT_V8M_MAIN_DSP, ARM_EXT2_MVE, 0),
31863 ARM_FEATURE_CORE_HIGH (ARM_EXT2_MVE | ARM_EXT2_MVE_FP)),
31864 ARM_ADD ("mve.fp",
31865 ARM_FEATURE (ARM_AEXT_V8M_MAIN_DSP,
31866 ARM_EXT2_FP16_INST | ARM_EXT2_MVE | ARM_EXT2_MVE_FP,
31867 FPU_VFP_V5_SP_D16 | FPU_VFP_EXT_FP16 | FPU_VFP_EXT_FMA)),
31868 CDE_EXTENSIONS,
31869 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31870 };
31871
31872 #undef CDE_EXTENSIONS
31873
31874 static const struct arm_ext_table armv8r_ext_table[] =
31875 {
31876 ARM_ADD ("crc", ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC)),
31877 ARM_ADD ("simd", FPU_ARCH_NEON_VFP_ARMV8),
31878 ARM_EXT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
31879 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8)),
31880 ARM_REMOVE ("fp", ALL_FP),
31881 ARM_ADD ("fp.sp", FPU_ARCH_VFP_V5_SP_D16),
31882 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
31883 };
31884
31885 /* This list should, at a minimum, contain all the architecture names
31886 recognized by GCC. */
31887 #define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF, NULL }
31888 #define ARM_ARCH_OPT2(N, V, DF, ext) \
31889 { N, sizeof (N) - 1, V, DF, ext##_ext_table }
31890
31891 static const struct arm_arch_option_table arm_archs[] =
31892 {
31893 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
31894 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
31895 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
31896 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
31897 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
31898 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
31899 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
31900 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
31901 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
31902 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
31903 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
31904 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
31905 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
31906 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
31907 ARM_ARCH_OPT2 ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP, armv5te),
31908 ARM_ARCH_OPT2 ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP, armv5te),
31909 ARM_ARCH_OPT2 ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP, armv5te),
31910 ARM_ARCH_OPT2 ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP, armv5te),
31911 ARM_ARCH_OPT2 ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP, armv5te),
31912 ARM_ARCH_OPT2 ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP, armv5te),
31913 ARM_ARCH_OPT2 ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP, armv5te),
31914 /* The official spelling of this variant is ARMv6KZ, the name "armv6zk" is
31915 kept to preserve existing behaviour. */
31916 ARM_ARCH_OPT2 ("armv6kz", ARM_ARCH_V6KZ, FPU_ARCH_VFP, armv5te),
31917 ARM_ARCH_OPT2 ("armv6zk", ARM_ARCH_V6KZ, FPU_ARCH_VFP, armv5te),
31918 ARM_ARCH_OPT2 ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP, armv5te),
31919 ARM_ARCH_OPT2 ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP, armv5te),
31920 ARM_ARCH_OPT2 ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP, armv5te),
31921 /* The official spelling of this variant is ARMv6KZ, the name "armv6zkt2" is
31922 kept to preserve existing behaviour. */
31923 ARM_ARCH_OPT2 ("armv6kzt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP, armv5te),
31924 ARM_ARCH_OPT2 ("armv6zkt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP, armv5te),
31925 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
31926 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
31927 ARM_ARCH_OPT2 ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP, armv7),
31928 /* The official spelling of the ARMv7 profile variants is the dashed form.
31929 Accept the non-dashed form for compatibility with old toolchains. */
31930 ARM_ARCH_OPT2 ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP, armv7a),
31931 ARM_ARCH_OPT2 ("armv7ve", ARM_ARCH_V7VE, FPU_ARCH_VFP, armv7ve),
31932 ARM_ARCH_OPT2 ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP, armv7r),
31933 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
31934 ARM_ARCH_OPT2 ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP, armv7a),
31935 ARM_ARCH_OPT2 ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP, armv7r),
31936 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
31937 ARM_ARCH_OPT2 ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP, armv7em),
31938 ARM_ARCH_OPT ("armv8-m.base", ARM_ARCH_V8M_BASE, FPU_ARCH_VFP),
31939 ARM_ARCH_OPT2 ("armv8-m.main", ARM_ARCH_V8M_MAIN, FPU_ARCH_VFP,
31940 armv8m_main),
31941 ARM_ARCH_OPT2 ("armv8.1-m.main", ARM_ARCH_V8_1M_MAIN, FPU_ARCH_VFP,
31942 armv8_1m_main),
31943 ARM_ARCH_OPT2 ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP, armv8a),
31944 ARM_ARCH_OPT2 ("armv8.1-a", ARM_ARCH_V8_1A, FPU_ARCH_VFP, armv81a),
31945 ARM_ARCH_OPT2 ("armv8.2-a", ARM_ARCH_V8_2A, FPU_ARCH_VFP, armv82a),
31946 ARM_ARCH_OPT2 ("armv8.3-a", ARM_ARCH_V8_3A, FPU_ARCH_VFP, armv82a),
31947 ARM_ARCH_OPT2 ("armv8-r", ARM_ARCH_V8R, FPU_ARCH_VFP, armv8r),
31948 ARM_ARCH_OPT2 ("armv8.4-a", ARM_ARCH_V8_4A, FPU_ARCH_VFP, armv84a),
31949 ARM_ARCH_OPT2 ("armv8.5-a", ARM_ARCH_V8_5A, FPU_ARCH_VFP, armv85a),
31950 ARM_ARCH_OPT2 ("armv8.6-a", ARM_ARCH_V8_6A, FPU_ARCH_VFP, armv86a),
31951 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
31952 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
31953 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2, FPU_ARCH_VFP),
31954 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
31955 };
31956 #undef ARM_ARCH_OPT
31957
31958 /* ISA extensions in the co-processor and main instruction set space. */
31959
31960 struct arm_option_extension_value_table
31961 {
31962 const char * name;
31963 size_t name_len;
31964 const arm_feature_set merge_value;
31965 const arm_feature_set clear_value;
31966 /* List of architectures for which an extension is available. ARM_ARCH_NONE
31967 indicates that an extension is available for all architectures while
31968 ARM_ANY marks an empty entry. */
31969 const arm_feature_set allowed_archs[2];
31970 };
31971
31972 /* The following table must be in alphabetical order with a NULL last entry. */
31973
31974 #define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, { AA, ARM_ANY } }
31975 #define ARM_EXT_OPT2(N, M, C, AA1, AA2) { N, sizeof (N) - 1, M, C, {AA1, AA2} }
31976
31977 /* DEPRECATED: Refrain from using this table to add any new extensions, instead
31978 use the context sensitive approach using arm_ext_table's. */
31979 static const struct arm_option_extension_value_table arm_extensions[] =
31980 {
31981 ARM_EXT_OPT ("crc", ARM_FEATURE_CORE_HIGH(ARM_EXT2_CRC),
31982 ARM_FEATURE_CORE_HIGH(ARM_EXT2_CRC),
31983 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31984 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
31985 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
31986 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31987 ARM_EXT_OPT ("dotprod", FPU_ARCH_DOTPROD_NEON_VFP_ARMV8,
31988 ARM_FEATURE_COPROC (FPU_NEON_EXT_DOTPROD),
31989 ARM_ARCH_V8_2A),
31990 ARM_EXT_OPT ("dsp", ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31991 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
31992 ARM_FEATURE_CORE (ARM_EXT_V7M, ARM_EXT2_V8M)),
31993 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
31994 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
31995 ARM_EXT_OPT ("fp16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31996 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
31997 ARM_ARCH_V8_2A),
31998 ARM_EXT_OPT ("fp16fml", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST
31999 | ARM_EXT2_FP16_FML),
32000 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST
32001 | ARM_EXT2_FP16_FML),
32002 ARM_ARCH_V8_2A),
32003 ARM_EXT_OPT2 ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
32004 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
32005 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
32006 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
32007 /* Duplicate entry for the purpose of allowing ARMv7 to match in presence of
32008 Thumb divide instruction. Due to this having the same name as the
32009 previous entry, this will be ignored when doing command-line parsing and
32010 only considered by build attribute selection code. */
32011 ARM_EXT_OPT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
32012 ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
32013 ARM_FEATURE_CORE_LOW (ARM_EXT_V7)),
32014 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
32015 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ARCH_NONE),
32016 ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
32017 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ARCH_NONE),
32018 ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
32019 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ARCH_NONE),
32020 ARM_EXT_OPT2 ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
32021 ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
32022 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
32023 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
32024 ARM_EXT_OPT ("os", ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
32025 ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
32026 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
32027 ARM_EXT_OPT ("pan", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN),
32028 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_PAN, 0),
32029 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
32030 ARM_EXT_OPT ("predres", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES),
32031 ARM_FEATURE_CORE_HIGH (ARM_EXT2_PREDRES),
32032 ARM_ARCH_V8A),
32033 ARM_EXT_OPT ("ras", ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS),
32034 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_RAS, 0),
32035 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
32036 ARM_EXT_OPT ("rdma", FPU_ARCH_NEON_VFP_ARMV8_1,
32037 ARM_FEATURE_COPROC (FPU_NEON_ARMV8 | FPU_NEON_EXT_RDMA),
32038 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
32039 ARM_EXT_OPT ("sb", ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB),
32040 ARM_FEATURE_CORE_HIGH (ARM_EXT2_SB),
32041 ARM_ARCH_V8A),
32042 ARM_EXT_OPT2 ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
32043 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
32044 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K),
32045 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
32046 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
32047 ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
32048 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
32049 ARM_EXT_OPT ("virt", ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
32050 | ARM_EXT_DIV),
32051 ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
32052 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
32053 ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
32054 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ARCH_NONE),
32055 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, { ARM_ARCH_NONE, ARM_ARCH_NONE } }
32056 };
32057 #undef ARM_EXT_OPT
32058
32059 /* ISA floating-point and Advanced SIMD extensions. */
32060 struct arm_option_fpu_value_table
32061 {
32062 const char * name;
32063 const arm_feature_set value;
32064 };
32065
32066 /* This list should, at a minimum, contain all the fpu names
32067 recognized by GCC. */
32068 static const struct arm_option_fpu_value_table arm_fpus[] =
32069 {
32070 {"softfpa", FPU_NONE},
32071 {"fpe", FPU_ARCH_FPE},
32072 {"fpe2", FPU_ARCH_FPE},
32073 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
32074 {"fpa", FPU_ARCH_FPA},
32075 {"fpa10", FPU_ARCH_FPA},
32076 {"fpa11", FPU_ARCH_FPA},
32077 {"arm7500fe", FPU_ARCH_FPA},
32078 {"softvfp", FPU_ARCH_VFP},
32079 {"softvfp+vfp", FPU_ARCH_VFP_V2},
32080 {"vfp", FPU_ARCH_VFP_V2},
32081 {"vfp9", FPU_ARCH_VFP_V2},
32082 {"vfp3", FPU_ARCH_VFP_V3}, /* Undocumented, use vfpv3. */
32083 {"vfp10", FPU_ARCH_VFP_V2},
32084 {"vfp10-r0", FPU_ARCH_VFP_V1},
32085 {"vfpxd", FPU_ARCH_VFP_V1xD},
32086 {"vfpv2", FPU_ARCH_VFP_V2},
32087 {"vfpv3", FPU_ARCH_VFP_V3},
32088 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
32089 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
32090 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
32091 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
32092 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
32093 {"arm1020t", FPU_ARCH_VFP_V1},
32094 {"arm1020e", FPU_ARCH_VFP_V2},
32095 {"arm1136jfs", FPU_ARCH_VFP_V2}, /* Undocumented, use arm1136jf-s. */
32096 {"arm1136jf-s", FPU_ARCH_VFP_V2},
32097 {"maverick", FPU_ARCH_MAVERICK},
32098 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
32099 {"neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
32100 {"neon-fp16", FPU_ARCH_NEON_FP16},
32101 {"vfpv4", FPU_ARCH_VFP_V4},
32102 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
32103 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
32104 {"fpv5-d16", FPU_ARCH_VFP_V5D16},
32105 {"fpv5-sp-d16", FPU_ARCH_VFP_V5_SP_D16},
32106 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
32107 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
32108 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
32109 {"crypto-neon-fp-armv8",
32110 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
32111 {"neon-fp-armv8.1", FPU_ARCH_NEON_VFP_ARMV8_1},
32112 {"crypto-neon-fp-armv8.1",
32113 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1},
32114 {NULL, ARM_ARCH_NONE}
32115 };
32116
32117 struct arm_option_value_table
32118 {
32119 const char *name;
32120 long value;
32121 };
32122
32123 static const struct arm_option_value_table arm_float_abis[] =
32124 {
32125 {"hard", ARM_FLOAT_ABI_HARD},
32126 {"softfp", ARM_FLOAT_ABI_SOFTFP},
32127 {"soft", ARM_FLOAT_ABI_SOFT},
32128 {NULL, 0}
32129 };
32130
32131 #ifdef OBJ_ELF
32132 /* We only know how to output GNU and ver 4/5 (AAELF) formats. */
32133 static const struct arm_option_value_table arm_eabis[] =
32134 {
32135 {"gnu", EF_ARM_EABI_UNKNOWN},
32136 {"4", EF_ARM_EABI_VER4},
32137 {"5", EF_ARM_EABI_VER5},
32138 {NULL, 0}
32139 };
32140 #endif
32141
32142 struct arm_long_option_table
32143 {
32144 const char * option; /* Substring to match. */
32145 const char * help; /* Help information. */
32146 int (* func) (const char * subopt); /* Function to decode sub-option. */
32147 const char * deprecated; /* If non-null, print this message. */
32148 };
32149
32150 static bfd_boolean
32151 arm_parse_extension (const char *str, const arm_feature_set *opt_set,
32152 arm_feature_set *ext_set,
32153 const struct arm_ext_table *ext_table)
32154 {
32155 /* We insist on extensions being specified in alphabetical order, and with
32156 extensions being added before being removed. We achieve this by having
32157 the global ARM_EXTENSIONS table in alphabetical order, and using the
32158 ADDING_VALUE variable to indicate whether we are adding an extension (1)
32159 or removing it (0) and only allowing it to change in the order
32160 -1 -> 1 -> 0. */
32161 const struct arm_option_extension_value_table * opt = NULL;
32162 const arm_feature_set arm_any = ARM_ANY;
32163 int adding_value = -1;
32164
32165 while (str != NULL && *str != 0)
32166 {
32167 const char *ext;
32168 size_t len;
32169
32170 if (*str != '+')
32171 {
32172 as_bad (_("invalid architectural extension"));
32173 return FALSE;
32174 }
32175
32176 str++;
32177 ext = strchr (str, '+');
32178
32179 if (ext != NULL)
32180 len = ext - str;
32181 else
32182 len = strlen (str);
32183
32184 if (len >= 2 && strncmp (str, "no", 2) == 0)
32185 {
32186 if (adding_value != 0)
32187 {
32188 adding_value = 0;
32189 opt = arm_extensions;
32190 }
32191
32192 len -= 2;
32193 str += 2;
32194 }
32195 else if (len > 0)
32196 {
32197 if (adding_value == -1)
32198 {
32199 adding_value = 1;
32200 opt = arm_extensions;
32201 }
32202 else if (adding_value != 1)
32203 {
32204 as_bad (_("must specify extensions to add before specifying "
32205 "those to remove"));
32206 return FALSE;
32207 }
32208 }
32209
32210 if (len == 0)
32211 {
32212 as_bad (_("missing architectural extension"));
32213 return FALSE;
32214 }
32215
32216 gas_assert (adding_value != -1);
32217 gas_assert (opt != NULL);
32218
32219 if (ext_table != NULL)
32220 {
32221 const struct arm_ext_table * ext_opt = ext_table;
32222 bfd_boolean found = FALSE;
32223 for (; ext_opt->name != NULL; ext_opt++)
32224 if (ext_opt->name_len == len
32225 && strncmp (ext_opt->name, str, len) == 0)
32226 {
32227 if (adding_value)
32228 {
32229 if (ARM_FEATURE_ZERO (ext_opt->merge))
32230 /* TODO: Option not supported. When we remove the
32231 legacy table this case should error out. */
32232 continue;
32233
32234 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, ext_opt->merge);
32235 }
32236 else
32237 {
32238 if (ARM_FEATURE_ZERO (ext_opt->clear))
32239 /* TODO: Option not supported. When we remove the
32240 legacy table this case should error out. */
32241 continue;
32242 ARM_CLEAR_FEATURE (*ext_set, *ext_set, ext_opt->clear);
32243 }
32244 found = TRUE;
32245 break;
32246 }
32247 if (found)
32248 {
32249 str = ext;
32250 continue;
32251 }
32252 }
32253
32254 /* Scan over the options table trying to find an exact match. */
32255 for (; opt->name != NULL; opt++)
32256 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
32257 {
32258 int i, nb_allowed_archs =
32259 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
32260 /* Check we can apply the extension to this architecture. */
32261 for (i = 0; i < nb_allowed_archs; i++)
32262 {
32263 /* Empty entry. */
32264 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
32265 continue;
32266 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *opt_set))
32267 break;
32268 }
32269 if (i == nb_allowed_archs)
32270 {
32271 as_bad (_("extension does not apply to the base architecture"));
32272 return FALSE;
32273 }
32274
32275 /* Add or remove the extension. */
32276 if (adding_value)
32277 ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->merge_value);
32278 else
32279 ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->clear_value);
32280
32281 /* Allowing Thumb division instructions for ARMv7 in autodetection
32282 rely on this break so that duplicate extensions (extensions
32283 with the same name as a previous extension in the list) are not
32284 considered for command-line parsing. */
32285 break;
32286 }
32287
32288 if (opt->name == NULL)
32289 {
32290 /* Did we fail to find an extension because it wasn't specified in
32291 alphabetical order, or because it does not exist? */
32292
32293 for (opt = arm_extensions; opt->name != NULL; opt++)
32294 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
32295 break;
32296
32297 if (opt->name == NULL)
32298 as_bad (_("unknown architectural extension `%s'"), str);
32299 else
32300 as_bad (_("architectural extensions must be specified in "
32301 "alphabetical order"));
32302
32303 return FALSE;
32304 }
32305 else
32306 {
32307 /* We should skip the extension we've just matched the next time
32308 round. */
32309 opt++;
32310 }
32311
32312 str = ext;
32313 };
32314
32315 return TRUE;
32316 }
32317
32318 static bfd_boolean
32319 arm_parse_fp16_opt (const char *str)
32320 {
32321 if (strcasecmp (str, "ieee") == 0)
32322 fp16_format = ARM_FP16_FORMAT_IEEE;
32323 else if (strcasecmp (str, "alternative") == 0)
32324 fp16_format = ARM_FP16_FORMAT_ALTERNATIVE;
32325 else
32326 {
32327 as_bad (_("unrecognised float16 format \"%s\""), str);
32328 return FALSE;
32329 }
32330
32331 return TRUE;
32332 }
32333
32334 static bfd_boolean
32335 arm_parse_cpu (const char *str)
32336 {
32337 const struct arm_cpu_option_table *opt;
32338 const char *ext = strchr (str, '+');
32339 size_t len;
32340
32341 if (ext != NULL)
32342 len = ext - str;
32343 else
32344 len = strlen (str);
32345
32346 if (len == 0)
32347 {
32348 as_bad (_("missing cpu name `%s'"), str);
32349 return FALSE;
32350 }
32351
32352 for (opt = arm_cpus; opt->name != NULL; opt++)
32353 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
32354 {
32355 mcpu_cpu_opt = &opt->value;
32356 if (mcpu_ext_opt == NULL)
32357 mcpu_ext_opt = XNEW (arm_feature_set);
32358 *mcpu_ext_opt = opt->ext;
32359 mcpu_fpu_opt = &opt->default_fpu;
32360 if (opt->canonical_name)
32361 {
32362 gas_assert (sizeof selected_cpu_name > strlen (opt->canonical_name));
32363 strcpy (selected_cpu_name, opt->canonical_name);
32364 }
32365 else
32366 {
32367 size_t i;
32368
32369 if (len >= sizeof selected_cpu_name)
32370 len = (sizeof selected_cpu_name) - 1;
32371
32372 for (i = 0; i < len; i++)
32373 selected_cpu_name[i] = TOUPPER (opt->name[i]);
32374 selected_cpu_name[i] = 0;
32375 }
32376
32377 if (ext != NULL)
32378 return arm_parse_extension (ext, mcpu_cpu_opt, mcpu_ext_opt, NULL);
32379
32380 return TRUE;
32381 }
32382
32383 as_bad (_("unknown cpu `%s'"), str);
32384 return FALSE;
32385 }
32386
32387 static bfd_boolean
32388 arm_parse_arch (const char *str)
32389 {
32390 const struct arm_arch_option_table *opt;
32391 const char *ext = strchr (str, '+');
32392 size_t len;
32393
32394 if (ext != NULL)
32395 len = ext - str;
32396 else
32397 len = strlen (str);
32398
32399 if (len == 0)
32400 {
32401 as_bad (_("missing architecture name `%s'"), str);
32402 return FALSE;
32403 }
32404
32405 for (opt = arm_archs; opt->name != NULL; opt++)
32406 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
32407 {
32408 march_cpu_opt = &opt->value;
32409 if (march_ext_opt == NULL)
32410 march_ext_opt = XNEW (arm_feature_set);
32411 *march_ext_opt = arm_arch_none;
32412 march_fpu_opt = &opt->default_fpu;
32413 selected_ctx_ext_table = opt->ext_table;
32414 strcpy (selected_cpu_name, opt->name);
32415
32416 if (ext != NULL)
32417 return arm_parse_extension (ext, march_cpu_opt, march_ext_opt,
32418 opt->ext_table);
32419
32420 return TRUE;
32421 }
32422
32423 as_bad (_("unknown architecture `%s'\n"), str);
32424 return FALSE;
32425 }
32426
32427 static bfd_boolean
32428 arm_parse_fpu (const char * str)
32429 {
32430 const struct arm_option_fpu_value_table * opt;
32431
32432 for (opt = arm_fpus; opt->name != NULL; opt++)
32433 if (streq (opt->name, str))
32434 {
32435 mfpu_opt = &opt->value;
32436 return TRUE;
32437 }
32438
32439 as_bad (_("unknown floating point format `%s'\n"), str);
32440 return FALSE;
32441 }
32442
32443 static bfd_boolean
32444 arm_parse_float_abi (const char * str)
32445 {
32446 const struct arm_option_value_table * opt;
32447
32448 for (opt = arm_float_abis; opt->name != NULL; opt++)
32449 if (streq (opt->name, str))
32450 {
32451 mfloat_abi_opt = opt->value;
32452 return TRUE;
32453 }
32454
32455 as_bad (_("unknown floating point abi `%s'\n"), str);
32456 return FALSE;
32457 }
32458
32459 #ifdef OBJ_ELF
32460 static bfd_boolean
32461 arm_parse_eabi (const char * str)
32462 {
32463 const struct arm_option_value_table *opt;
32464
32465 for (opt = arm_eabis; opt->name != NULL; opt++)
32466 if (streq (opt->name, str))
32467 {
32468 meabi_flags = opt->value;
32469 return TRUE;
32470 }
32471 as_bad (_("unknown EABI `%s'\n"), str);
32472 return FALSE;
32473 }
32474 #endif
32475
32476 static bfd_boolean
32477 arm_parse_it_mode (const char * str)
32478 {
32479 bfd_boolean ret = TRUE;
32480
32481 if (streq ("arm", str))
32482 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
32483 else if (streq ("thumb", str))
32484 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
32485 else if (streq ("always", str))
32486 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
32487 else if (streq ("never", str))
32488 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
32489 else
32490 {
32491 as_bad (_("unknown implicit IT mode `%s', should be "\
32492 "arm, thumb, always, or never."), str);
32493 ret = FALSE;
32494 }
32495
32496 return ret;
32497 }
32498
32499 static bfd_boolean
32500 arm_ccs_mode (const char * unused ATTRIBUTE_UNUSED)
32501 {
32502 codecomposer_syntax = TRUE;
32503 arm_comment_chars[0] = ';';
32504 arm_line_separator_chars[0] = 0;
32505 return TRUE;
32506 }
32507
32508 struct arm_long_option_table arm_long_opts[] =
32509 {
32510 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
32511 arm_parse_cpu, NULL},
32512 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
32513 arm_parse_arch, NULL},
32514 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
32515 arm_parse_fpu, NULL},
32516 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
32517 arm_parse_float_abi, NULL},
32518 #ifdef OBJ_ELF
32519 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
32520 arm_parse_eabi, NULL},
32521 #endif
32522 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
32523 arm_parse_it_mode, NULL},
32524 {"mccs", N_("\t\t\t TI CodeComposer Studio syntax compatibility mode"),
32525 arm_ccs_mode, NULL},
32526 {"mfp16-format=",
32527 N_("[ieee|alternative]\n\
32528 set the encoding for half precision floating point "
32529 "numbers to IEEE\n\
32530 or Arm alternative format."),
32531 arm_parse_fp16_opt, NULL },
32532 {NULL, NULL, 0, NULL}
32533 };
32534
32535 int
32536 md_parse_option (int c, const char * arg)
32537 {
32538 struct arm_option_table *opt;
32539 const struct arm_legacy_option_table *fopt;
32540 struct arm_long_option_table *lopt;
32541
32542 switch (c)
32543 {
32544 #ifdef OPTION_EB
32545 case OPTION_EB:
32546 target_big_endian = 1;
32547 break;
32548 #endif
32549
32550 #ifdef OPTION_EL
32551 case OPTION_EL:
32552 target_big_endian = 0;
32553 break;
32554 #endif
32555
32556 case OPTION_FIX_V4BX:
32557 fix_v4bx = TRUE;
32558 break;
32559
32560 #ifdef OBJ_ELF
32561 case OPTION_FDPIC:
32562 arm_fdpic = TRUE;
32563 break;
32564 #endif /* OBJ_ELF */
32565
32566 case 'a':
32567 /* Listing option. Just ignore these, we don't support additional
32568 ones. */
32569 return 0;
32570
32571 default:
32572 for (opt = arm_opts; opt->option != NULL; opt++)
32573 {
32574 if (c == opt->option[0]
32575 && ((arg == NULL && opt->option[1] == 0)
32576 || streq (arg, opt->option + 1)))
32577 {
32578 /* If the option is deprecated, tell the user. */
32579 if (warn_on_deprecated && opt->deprecated != NULL)
32580 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
32581 arg ? arg : "", _(opt->deprecated));
32582
32583 if (opt->var != NULL)
32584 *opt->var = opt->value;
32585
32586 return 1;
32587 }
32588 }
32589
32590 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
32591 {
32592 if (c == fopt->option[0]
32593 && ((arg == NULL && fopt->option[1] == 0)
32594 || streq (arg, fopt->option + 1)))
32595 {
32596 /* If the option is deprecated, tell the user. */
32597 if (warn_on_deprecated && fopt->deprecated != NULL)
32598 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
32599 arg ? arg : "", _(fopt->deprecated));
32600
32601 if (fopt->var != NULL)
32602 *fopt->var = &fopt->value;
32603
32604 return 1;
32605 }
32606 }
32607
32608 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
32609 {
32610 /* These options are expected to have an argument. */
32611 if (c == lopt->option[0]
32612 && arg != NULL
32613 && strncmp (arg, lopt->option + 1,
32614 strlen (lopt->option + 1)) == 0)
32615 {
32616 /* If the option is deprecated, tell the user. */
32617 if (warn_on_deprecated && lopt->deprecated != NULL)
32618 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
32619 _(lopt->deprecated));
32620
32621 /* Call the sup-option parser. */
32622 return lopt->func (arg + strlen (lopt->option) - 1);
32623 }
32624 }
32625
32626 return 0;
32627 }
32628
32629 return 1;
32630 }
32631
32632 void
32633 md_show_usage (FILE * fp)
32634 {
32635 struct arm_option_table *opt;
32636 struct arm_long_option_table *lopt;
32637
32638 fprintf (fp, _(" ARM-specific assembler options:\n"));
32639
32640 for (opt = arm_opts; opt->option != NULL; opt++)
32641 if (opt->help != NULL)
32642 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
32643
32644 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
32645 if (lopt->help != NULL)
32646 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
32647
32648 #ifdef OPTION_EB
32649 fprintf (fp, _("\
32650 -EB assemble code for a big-endian cpu\n"));
32651 #endif
32652
32653 #ifdef OPTION_EL
32654 fprintf (fp, _("\
32655 -EL assemble code for a little-endian cpu\n"));
32656 #endif
32657
32658 fprintf (fp, _("\
32659 --fix-v4bx Allow BX in ARMv4 code\n"));
32660
32661 #ifdef OBJ_ELF
32662 fprintf (fp, _("\
32663 --fdpic generate an FDPIC object file\n"));
32664 #endif /* OBJ_ELF */
32665 }
32666
32667 #ifdef OBJ_ELF
32668
32669 typedef struct
32670 {
32671 int val;
32672 arm_feature_set flags;
32673 } cpu_arch_ver_table;
32674
32675 /* Mapping from CPU features to EABI CPU arch values. Table must be sorted
32676 chronologically for architectures, with an exception for ARMv6-M and
32677 ARMv6S-M due to legacy reasons. No new architecture should have a
32678 special case. This allows for build attribute selection results to be
32679 stable when new architectures are added. */
32680 static const cpu_arch_ver_table cpu_arch_ver[] =
32681 {
32682 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V1},
32683 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V2},
32684 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V2S},
32685 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V3},
32686 {TAG_CPU_ARCH_PRE_V4, ARM_ARCH_V3M},
32687 {TAG_CPU_ARCH_V4, ARM_ARCH_V4xM},
32688 {TAG_CPU_ARCH_V4, ARM_ARCH_V4},
32689 {TAG_CPU_ARCH_V4T, ARM_ARCH_V4TxM},
32690 {TAG_CPU_ARCH_V4T, ARM_ARCH_V4T},
32691 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5xM},
32692 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5},
32693 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5TxM},
32694 {TAG_CPU_ARCH_V5T, ARM_ARCH_V5T},
32695 {TAG_CPU_ARCH_V5TE, ARM_ARCH_V5TExP},
32696 {TAG_CPU_ARCH_V5TE, ARM_ARCH_V5TE},
32697 {TAG_CPU_ARCH_V5TEJ, ARM_ARCH_V5TEJ},
32698 {TAG_CPU_ARCH_V6, ARM_ARCH_V6},
32699 {TAG_CPU_ARCH_V6KZ, ARM_ARCH_V6Z},
32700 {TAG_CPU_ARCH_V6KZ, ARM_ARCH_V6KZ},
32701 {TAG_CPU_ARCH_V6K, ARM_ARCH_V6K},
32702 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6T2},
32703 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6KT2},
32704 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6ZT2},
32705 {TAG_CPU_ARCH_V6T2, ARM_ARCH_V6KZT2},
32706
32707 /* When assembling a file with only ARMv6-M or ARMv6S-M instruction, GNU as
32708 always selected build attributes to match those of ARMv6-M
32709 (resp. ARMv6S-M). However, due to these architectures being a strict
32710 subset of ARMv7-M in terms of instructions available, ARMv7-M attributes
32711 would be selected when fully respecting chronology of architectures.
32712 It is thus necessary to make a special case of ARMv6-M and ARMv6S-M and
32713 move them before ARMv7 architectures. */
32714 {TAG_CPU_ARCH_V6_M, ARM_ARCH_V6M},
32715 {TAG_CPU_ARCH_V6S_M, ARM_ARCH_V6SM},
32716
32717 {TAG_CPU_ARCH_V7, ARM_ARCH_V7},
32718 {TAG_CPU_ARCH_V7, ARM_ARCH_V7A},
32719 {TAG_CPU_ARCH_V7, ARM_ARCH_V7R},
32720 {TAG_CPU_ARCH_V7, ARM_ARCH_V7M},
32721 {TAG_CPU_ARCH_V7, ARM_ARCH_V7VE},
32722 {TAG_CPU_ARCH_V7E_M, ARM_ARCH_V7EM},
32723 {TAG_CPU_ARCH_V8, ARM_ARCH_V8A},
32724 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_1A},
32725 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_2A},
32726 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_3A},
32727 {TAG_CPU_ARCH_V8M_BASE, ARM_ARCH_V8M_BASE},
32728 {TAG_CPU_ARCH_V8M_MAIN, ARM_ARCH_V8M_MAIN},
32729 {TAG_CPU_ARCH_V8R, ARM_ARCH_V8R},
32730 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_4A},
32731 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_5A},
32732 {TAG_CPU_ARCH_V8_1M_MAIN, ARM_ARCH_V8_1M_MAIN},
32733 {TAG_CPU_ARCH_V8, ARM_ARCH_V8_6A},
32734 {-1, ARM_ARCH_NONE}
32735 };
32736
32737 /* Set an attribute if it has not already been set by the user. */
32738
32739 static void
32740 aeabi_set_attribute_int (int tag, int value)
32741 {
32742 if (tag < 1
32743 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
32744 || !attributes_set_explicitly[tag])
32745 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
32746 }
32747
32748 static void
32749 aeabi_set_attribute_string (int tag, const char *value)
32750 {
32751 if (tag < 1
32752 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
32753 || !attributes_set_explicitly[tag])
32754 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
32755 }
32756
32757 /* Return whether features in the *NEEDED feature set are available via
32758 extensions for the architecture whose feature set is *ARCH_FSET. */
32759
32760 static bfd_boolean
32761 have_ext_for_needed_feat_p (const arm_feature_set *arch_fset,
32762 const arm_feature_set *needed)
32763 {
32764 int i, nb_allowed_archs;
32765 arm_feature_set ext_fset;
32766 const struct arm_option_extension_value_table *opt;
32767
32768 ext_fset = arm_arch_none;
32769 for (opt = arm_extensions; opt->name != NULL; opt++)
32770 {
32771 /* Extension does not provide any feature we need. */
32772 if (!ARM_CPU_HAS_FEATURE (*needed, opt->merge_value))
32773 continue;
32774
32775 nb_allowed_archs =
32776 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
32777 for (i = 0; i < nb_allowed_archs; i++)
32778 {
32779 /* Empty entry. */
32780 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_arch_any))
32781 break;
32782
32783 /* Extension is available, add it. */
32784 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *arch_fset))
32785 ARM_MERGE_FEATURE_SETS (ext_fset, ext_fset, opt->merge_value);
32786 }
32787 }
32788
32789 /* Can we enable all features in *needed? */
32790 return ARM_FSET_CPU_SUBSET (*needed, ext_fset);
32791 }
32792
32793 /* Select value for Tag_CPU_arch and Tag_CPU_arch_profile build attributes for
32794 a given architecture feature set *ARCH_EXT_FSET including extension feature
32795 set *EXT_FSET. Selection logic used depend on EXACT_MATCH:
32796 - if true, check for an exact match of the architecture modulo extensions;
32797 - otherwise, select build attribute value of the first superset
32798 architecture released so that results remains stable when new architectures
32799 are added.
32800 For -march/-mcpu=all the build attribute value of the most featureful
32801 architecture is returned. Tag_CPU_arch_profile result is returned in
32802 PROFILE. */
32803
32804 static int
32805 get_aeabi_cpu_arch_from_fset (const arm_feature_set *arch_ext_fset,
32806 const arm_feature_set *ext_fset,
32807 char *profile, int exact_match)
32808 {
32809 arm_feature_set arch_fset;
32810 const cpu_arch_ver_table *p_ver, *p_ver_ret = NULL;
32811
32812 /* Select most featureful architecture with all its extensions if building
32813 for -march=all as the feature sets used to set build attributes. */
32814 if (ARM_FEATURE_EQUAL (*arch_ext_fset, arm_arch_any))
32815 {
32816 /* Force revisiting of decision for each new architecture. */
32817 gas_assert (MAX_TAG_CPU_ARCH <= TAG_CPU_ARCH_V8_1M_MAIN);
32818 *profile = 'A';
32819 return TAG_CPU_ARCH_V8;
32820 }
32821
32822 ARM_CLEAR_FEATURE (arch_fset, *arch_ext_fset, *ext_fset);
32823
32824 for (p_ver = cpu_arch_ver; p_ver->val != -1; p_ver++)
32825 {
32826 arm_feature_set known_arch_fset;
32827
32828 ARM_CLEAR_FEATURE (known_arch_fset, p_ver->flags, fpu_any);
32829 if (exact_match)
32830 {
32831 /* Base architecture match user-specified architecture and
32832 extensions, eg. ARMv6S-M matching -march=armv6-m+os. */
32833 if (ARM_FEATURE_EQUAL (*arch_ext_fset, known_arch_fset))
32834 {
32835 p_ver_ret = p_ver;
32836 goto found;
32837 }
32838 /* Base architecture match user-specified architecture only
32839 (eg. ARMv6-M in the same case as above). Record it in case we
32840 find a match with above condition. */
32841 else if (p_ver_ret == NULL
32842 && ARM_FEATURE_EQUAL (arch_fset, known_arch_fset))
32843 p_ver_ret = p_ver;
32844 }
32845 else
32846 {
32847
32848 /* Architecture has all features wanted. */
32849 if (ARM_FSET_CPU_SUBSET (arch_fset, known_arch_fset))
32850 {
32851 arm_feature_set added_fset;
32852
32853 /* Compute features added by this architecture over the one
32854 recorded in p_ver_ret. */
32855 if (p_ver_ret != NULL)
32856 ARM_CLEAR_FEATURE (added_fset, known_arch_fset,
32857 p_ver_ret->flags);
32858 /* First architecture that match incl. with extensions, or the
32859 only difference in features over the recorded match is
32860 features that were optional and are now mandatory. */
32861 if (p_ver_ret == NULL
32862 || ARM_FSET_CPU_SUBSET (added_fset, arch_fset))
32863 {
32864 p_ver_ret = p_ver;
32865 goto found;
32866 }
32867 }
32868 else if (p_ver_ret == NULL)
32869 {
32870 arm_feature_set needed_ext_fset;
32871
32872 ARM_CLEAR_FEATURE (needed_ext_fset, arch_fset, known_arch_fset);
32873
32874 /* Architecture has all features needed when using some
32875 extensions. Record it and continue searching in case there
32876 exist an architecture providing all needed features without
32877 the need for extensions (eg. ARMv6S-M Vs ARMv6-M with
32878 OS extension). */
32879 if (have_ext_for_needed_feat_p (&known_arch_fset,
32880 &needed_ext_fset))
32881 p_ver_ret = p_ver;
32882 }
32883 }
32884 }
32885
32886 if (p_ver_ret == NULL)
32887 return -1;
32888
32889 found:
32890 /* Tag_CPU_arch_profile. */
32891 if (!ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8r)
32892 && (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7a)
32893 || ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8)
32894 || (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_atomics)
32895 && !ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8m_m_only))))
32896 *profile = 'A';
32897 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7r)
32898 || ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8r))
32899 *profile = 'R';
32900 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_m))
32901 *profile = 'M';
32902 else
32903 *profile = '\0';
32904 return p_ver_ret->val;
32905 }
32906
32907 /* Set the public EABI object attributes. */
32908
32909 static void
32910 aeabi_set_public_attributes (void)
32911 {
32912 char profile = '\0';
32913 int arch = -1;
32914 int virt_sec = 0;
32915 int fp16_optional = 0;
32916 int skip_exact_match = 0;
32917 arm_feature_set flags, flags_arch, flags_ext;
32918
32919 /* Autodetection mode, choose the architecture based the instructions
32920 actually used. */
32921 if (no_cpu_selected ())
32922 {
32923 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
32924
32925 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
32926 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
32927
32928 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
32929 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
32930
32931 /* Code run during relaxation relies on selected_cpu being set. */
32932 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
32933 flags_ext = arm_arch_none;
32934 ARM_CLEAR_FEATURE (selected_arch, flags_arch, flags_ext);
32935 selected_ext = flags_ext;
32936 selected_cpu = flags;
32937 }
32938 /* Otherwise, choose the architecture based on the capabilities of the
32939 requested cpu. */
32940 else
32941 {
32942 ARM_MERGE_FEATURE_SETS (flags_arch, selected_arch, selected_ext);
32943 ARM_CLEAR_FEATURE (flags_arch, flags_arch, fpu_any);
32944 flags_ext = selected_ext;
32945 flags = selected_cpu;
32946 }
32947 ARM_MERGE_FEATURE_SETS (flags, flags, selected_fpu);
32948
32949 /* Allow the user to override the reported architecture. */
32950 if (!ARM_FEATURE_ZERO (selected_object_arch))
32951 {
32952 ARM_CLEAR_FEATURE (flags_arch, selected_object_arch, fpu_any);
32953 flags_ext = arm_arch_none;
32954 }
32955 else
32956 skip_exact_match = ARM_FEATURE_EQUAL (selected_cpu, arm_arch_any);
32957
32958 /* When this function is run again after relaxation has happened there is no
32959 way to determine whether an architecture or CPU was specified by the user:
32960 - selected_cpu is set above for relaxation to work;
32961 - march_cpu_opt is not set if only -mcpu or .cpu is used;
32962 - mcpu_cpu_opt is set to arm_arch_any for autodetection.
32963 Therefore, if not in -march=all case we first try an exact match and fall
32964 back to autodetection. */
32965 if (!skip_exact_match)
32966 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 1);
32967 if (arch == -1)
32968 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 0);
32969 if (arch == -1)
32970 as_bad (_("no architecture contains all the instructions used\n"));
32971
32972 /* Tag_CPU_name. */
32973 if (selected_cpu_name[0])
32974 {
32975 char *q;
32976
32977 q = selected_cpu_name;
32978 if (strncmp (q, "armv", 4) == 0)
32979 {
32980 int i;
32981
32982 q += 4;
32983 for (i = 0; q[i]; i++)
32984 q[i] = TOUPPER (q[i]);
32985 }
32986 aeabi_set_attribute_string (Tag_CPU_name, q);
32987 }
32988
32989 /* Tag_CPU_arch. */
32990 aeabi_set_attribute_int (Tag_CPU_arch, arch);
32991
32992 /* Tag_CPU_arch_profile. */
32993 if (profile != '\0')
32994 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
32995
32996 /* Tag_DSP_extension. */
32997 if (ARM_CPU_HAS_FEATURE (selected_ext, arm_ext_dsp))
32998 aeabi_set_attribute_int (Tag_DSP_extension, 1);
32999
33000 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
33001 /* Tag_ARM_ISA_use. */
33002 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
33003 || ARM_FEATURE_ZERO (flags_arch))
33004 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
33005
33006 /* Tag_THUMB_ISA_use. */
33007 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
33008 || ARM_FEATURE_ZERO (flags_arch))
33009 {
33010 int thumb_isa_use;
33011
33012 if (!ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
33013 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only))
33014 thumb_isa_use = 3;
33015 else if (ARM_CPU_HAS_FEATURE (flags, arm_arch_t2))
33016 thumb_isa_use = 2;
33017 else
33018 thumb_isa_use = 1;
33019 aeabi_set_attribute_int (Tag_THUMB_ISA_use, thumb_isa_use);
33020 }
33021
33022 /* Tag_VFP_arch. */
33023 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
33024 aeabi_set_attribute_int (Tag_VFP_arch,
33025 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
33026 ? 7 : 8);
33027 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
33028 aeabi_set_attribute_int (Tag_VFP_arch,
33029 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
33030 ? 5 : 6);
33031 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
33032 {
33033 fp16_optional = 1;
33034 aeabi_set_attribute_int (Tag_VFP_arch, 3);
33035 }
33036 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
33037 {
33038 aeabi_set_attribute_int (Tag_VFP_arch, 4);
33039 fp16_optional = 1;
33040 }
33041 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
33042 aeabi_set_attribute_int (Tag_VFP_arch, 2);
33043 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
33044 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
33045 aeabi_set_attribute_int (Tag_VFP_arch, 1);
33046
33047 /* Tag_ABI_HardFP_use. */
33048 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
33049 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
33050 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
33051
33052 /* Tag_WMMX_arch. */
33053 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
33054 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
33055 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
33056 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
33057
33058 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
33059 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v8_1))
33060 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 4);
33061 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
33062 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
33063 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
33064 {
33065 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
33066 {
33067 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
33068 }
33069 else
33070 {
33071 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
33072 fp16_optional = 1;
33073 }
33074 }
33075
33076 if (ARM_CPU_HAS_FEATURE (flags, mve_fp_ext))
33077 aeabi_set_attribute_int (Tag_MVE_arch, 2);
33078 else if (ARM_CPU_HAS_FEATURE (flags, mve_ext))
33079 aeabi_set_attribute_int (Tag_MVE_arch, 1);
33080
33081 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
33082 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
33083 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
33084
33085 /* Tag_DIV_use.
33086
33087 We set Tag_DIV_use to two when integer divide instructions have been used
33088 in ARM state, or when Thumb integer divide instructions have been used,
33089 but we have no architecture profile set, nor have we any ARM instructions.
33090
33091 For ARMv8-A and ARMv8-M we set the tag to 0 as integer divide is implied
33092 by the base architecture.
33093
33094 For new architectures we will have to check these tests. */
33095 gas_assert (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
33096 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
33097 || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m))
33098 aeabi_set_attribute_int (Tag_DIV_use, 0);
33099 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
33100 || (profile == '\0'
33101 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
33102 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
33103 aeabi_set_attribute_int (Tag_DIV_use, 2);
33104
33105 /* Tag_MP_extension_use. */
33106 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
33107 aeabi_set_attribute_int (Tag_MPextension_use, 1);
33108
33109 /* Tag Virtualization_use. */
33110 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
33111 virt_sec |= 1;
33112 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
33113 virt_sec |= 2;
33114 if (virt_sec != 0)
33115 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
33116
33117 if (fp16_format != ARM_FP16_FORMAT_DEFAULT)
33118 aeabi_set_attribute_int (Tag_ABI_FP_16bit_format, fp16_format);
33119 }
33120
33121 /* Post relaxation hook. Recompute ARM attributes now that relaxation is
33122 finished and free extension feature bits which will not be used anymore. */
33123
33124 void
33125 arm_md_post_relax (void)
33126 {
33127 aeabi_set_public_attributes ();
33128 XDELETE (mcpu_ext_opt);
33129 mcpu_ext_opt = NULL;
33130 XDELETE (march_ext_opt);
33131 march_ext_opt = NULL;
33132 }
33133
33134 /* Add the default contents for the .ARM.attributes section. */
33135
33136 void
33137 arm_md_end (void)
33138 {
33139 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
33140 return;
33141
33142 aeabi_set_public_attributes ();
33143 }
33144 #endif /* OBJ_ELF */
33145
33146 /* Parse a .cpu directive. */
33147
33148 static void
33149 s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
33150 {
33151 const struct arm_cpu_option_table *opt;
33152 char *name;
33153 char saved_char;
33154
33155 name = input_line_pointer;
33156 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
33157 input_line_pointer++;
33158 saved_char = *input_line_pointer;
33159 *input_line_pointer = 0;
33160
33161 /* Skip the first "all" entry. */
33162 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
33163 if (streq (opt->name, name))
33164 {
33165 selected_arch = opt->value;
33166 selected_ext = opt->ext;
33167 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
33168 if (opt->canonical_name)
33169 strcpy (selected_cpu_name, opt->canonical_name);
33170 else
33171 {
33172 int i;
33173 for (i = 0; opt->name[i]; i++)
33174 selected_cpu_name[i] = TOUPPER (opt->name[i]);
33175
33176 selected_cpu_name[i] = 0;
33177 }
33178 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
33179
33180 *input_line_pointer = saved_char;
33181 demand_empty_rest_of_line ();
33182 return;
33183 }
33184 as_bad (_("unknown cpu `%s'"), name);
33185 *input_line_pointer = saved_char;
33186 ignore_rest_of_line ();
33187 }
33188
33189 /* Parse a .arch directive. */
33190
33191 static void
33192 s_arm_arch (int ignored ATTRIBUTE_UNUSED)
33193 {
33194 const struct arm_arch_option_table *opt;
33195 char saved_char;
33196 char *name;
33197
33198 name = input_line_pointer;
33199 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
33200 input_line_pointer++;
33201 saved_char = *input_line_pointer;
33202 *input_line_pointer = 0;
33203
33204 /* Skip the first "all" entry. */
33205 for (opt = arm_archs + 1; opt->name != NULL; opt++)
33206 if (streq (opt->name, name))
33207 {
33208 selected_arch = opt->value;
33209 selected_ctx_ext_table = opt->ext_table;
33210 selected_ext = arm_arch_none;
33211 selected_cpu = selected_arch;
33212 strcpy (selected_cpu_name, opt->name);
33213 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
33214 *input_line_pointer = saved_char;
33215 demand_empty_rest_of_line ();
33216 return;
33217 }
33218
33219 as_bad (_("unknown architecture `%s'\n"), name);
33220 *input_line_pointer = saved_char;
33221 ignore_rest_of_line ();
33222 }
33223
33224 /* Parse a .object_arch directive. */
33225
33226 static void
33227 s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
33228 {
33229 const struct arm_arch_option_table *opt;
33230 char saved_char;
33231 char *name;
33232
33233 name = input_line_pointer;
33234 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
33235 input_line_pointer++;
33236 saved_char = *input_line_pointer;
33237 *input_line_pointer = 0;
33238
33239 /* Skip the first "all" entry. */
33240 for (opt = arm_archs + 1; opt->name != NULL; opt++)
33241 if (streq (opt->name, name))
33242 {
33243 selected_object_arch = opt->value;
33244 *input_line_pointer = saved_char;
33245 demand_empty_rest_of_line ();
33246 return;
33247 }
33248
33249 as_bad (_("unknown architecture `%s'\n"), name);
33250 *input_line_pointer = saved_char;
33251 ignore_rest_of_line ();
33252 }
33253
33254 /* Parse a .arch_extension directive. */
33255
33256 static void
33257 s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
33258 {
33259 const struct arm_option_extension_value_table *opt;
33260 char saved_char;
33261 char *name;
33262 int adding_value = 1;
33263
33264 name = input_line_pointer;
33265 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
33266 input_line_pointer++;
33267 saved_char = *input_line_pointer;
33268 *input_line_pointer = 0;
33269
33270 if (strlen (name) >= 2
33271 && strncmp (name, "no", 2) == 0)
33272 {
33273 adding_value = 0;
33274 name += 2;
33275 }
33276
33277 /* Check the context specific extension table */
33278 if (selected_ctx_ext_table)
33279 {
33280 const struct arm_ext_table * ext_opt;
33281 for (ext_opt = selected_ctx_ext_table; ext_opt->name != NULL; ext_opt++)
33282 {
33283 if (streq (ext_opt->name, name))
33284 {
33285 if (adding_value)
33286 {
33287 if (ARM_FEATURE_ZERO (ext_opt->merge))
33288 /* TODO: Option not supported. When we remove the
33289 legacy table this case should error out. */
33290 continue;
33291 ARM_MERGE_FEATURE_SETS (selected_ext, selected_ext,
33292 ext_opt->merge);
33293 }
33294 else
33295 ARM_CLEAR_FEATURE (selected_ext, selected_ext, ext_opt->clear);
33296
33297 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
33298 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
33299 *input_line_pointer = saved_char;
33300 demand_empty_rest_of_line ();
33301 return;
33302 }
33303 }
33304 }
33305
33306 for (opt = arm_extensions; opt->name != NULL; opt++)
33307 if (streq (opt->name, name))
33308 {
33309 int i, nb_allowed_archs =
33310 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[i]);
33311 for (i = 0; i < nb_allowed_archs; i++)
33312 {
33313 /* Empty entry. */
33314 if (ARM_CPU_IS_ANY (opt->allowed_archs[i]))
33315 continue;
33316 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], selected_arch))
33317 break;
33318 }
33319
33320 if (i == nb_allowed_archs)
33321 {
33322 as_bad (_("architectural extension `%s' is not allowed for the "
33323 "current base architecture"), name);
33324 break;
33325 }
33326
33327 if (adding_value)
33328 ARM_MERGE_FEATURE_SETS (selected_ext, selected_ext,
33329 opt->merge_value);
33330 else
33331 ARM_CLEAR_FEATURE (selected_ext, selected_ext, opt->clear_value);
33332
33333 ARM_MERGE_FEATURE_SETS (selected_cpu, selected_arch, selected_ext);
33334 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
33335 *input_line_pointer = saved_char;
33336 demand_empty_rest_of_line ();
33337 /* Allowing Thumb division instructions for ARMv7 in autodetection rely
33338 on this return so that duplicate extensions (extensions with the
33339 same name as a previous extension in the list) are not considered
33340 for command-line parsing. */
33341 return;
33342 }
33343
33344 if (opt->name == NULL)
33345 as_bad (_("unknown architecture extension `%s'\n"), name);
33346
33347 *input_line_pointer = saved_char;
33348 ignore_rest_of_line ();
33349 }
33350
33351 /* Parse a .fpu directive. */
33352
33353 static void
33354 s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
33355 {
33356 const struct arm_option_fpu_value_table *opt;
33357 char saved_char;
33358 char *name;
33359
33360 name = input_line_pointer;
33361 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
33362 input_line_pointer++;
33363 saved_char = *input_line_pointer;
33364 *input_line_pointer = 0;
33365
33366 for (opt = arm_fpus; opt->name != NULL; opt++)
33367 if (streq (opt->name, name))
33368 {
33369 selected_fpu = opt->value;
33370 ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, fpu_any);
33371 #ifndef CPU_DEFAULT
33372 if (no_cpu_selected ())
33373 ARM_MERGE_FEATURE_SETS (cpu_variant, arm_arch_any, selected_fpu);
33374 else
33375 #endif
33376 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, selected_fpu);
33377 *input_line_pointer = saved_char;
33378 demand_empty_rest_of_line ();
33379 return;
33380 }
33381
33382 as_bad (_("unknown floating point format `%s'\n"), name);
33383 *input_line_pointer = saved_char;
33384 ignore_rest_of_line ();
33385 }
33386
33387 /* Copy symbol information. */
33388
33389 void
33390 arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
33391 {
33392 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
33393 }
33394
33395 #ifdef OBJ_ELF
33396 /* Given a symbolic attribute NAME, return the proper integer value.
33397 Returns -1 if the attribute is not known. */
33398
33399 int
33400 arm_convert_symbolic_attribute (const char *name)
33401 {
33402 static const struct
33403 {
33404 const char * name;
33405 const int tag;
33406 }
33407 attribute_table[] =
33408 {
33409 /* When you modify this table you should
33410 also modify the list in doc/c-arm.texi. */
33411 #define T(tag) {#tag, tag}
33412 T (Tag_CPU_raw_name),
33413 T (Tag_CPU_name),
33414 T (Tag_CPU_arch),
33415 T (Tag_CPU_arch_profile),
33416 T (Tag_ARM_ISA_use),
33417 T (Tag_THUMB_ISA_use),
33418 T (Tag_FP_arch),
33419 T (Tag_VFP_arch),
33420 T (Tag_WMMX_arch),
33421 T (Tag_Advanced_SIMD_arch),
33422 T (Tag_PCS_config),
33423 T (Tag_ABI_PCS_R9_use),
33424 T (Tag_ABI_PCS_RW_data),
33425 T (Tag_ABI_PCS_RO_data),
33426 T (Tag_ABI_PCS_GOT_use),
33427 T (Tag_ABI_PCS_wchar_t),
33428 T (Tag_ABI_FP_rounding),
33429 T (Tag_ABI_FP_denormal),
33430 T (Tag_ABI_FP_exceptions),
33431 T (Tag_ABI_FP_user_exceptions),
33432 T (Tag_ABI_FP_number_model),
33433 T (Tag_ABI_align_needed),
33434 T (Tag_ABI_align8_needed),
33435 T (Tag_ABI_align_preserved),
33436 T (Tag_ABI_align8_preserved),
33437 T (Tag_ABI_enum_size),
33438 T (Tag_ABI_HardFP_use),
33439 T (Tag_ABI_VFP_args),
33440 T (Tag_ABI_WMMX_args),
33441 T (Tag_ABI_optimization_goals),
33442 T (Tag_ABI_FP_optimization_goals),
33443 T (Tag_compatibility),
33444 T (Tag_CPU_unaligned_access),
33445 T (Tag_FP_HP_extension),
33446 T (Tag_VFP_HP_extension),
33447 T (Tag_ABI_FP_16bit_format),
33448 T (Tag_MPextension_use),
33449 T (Tag_DIV_use),
33450 T (Tag_nodefaults),
33451 T (Tag_also_compatible_with),
33452 T (Tag_conformance),
33453 T (Tag_T2EE_use),
33454 T (Tag_Virtualization_use),
33455 T (Tag_DSP_extension),
33456 T (Tag_MVE_arch),
33457 /* We deliberately do not include Tag_MPextension_use_legacy. */
33458 #undef T
33459 };
33460 unsigned int i;
33461
33462 if (name == NULL)
33463 return -1;
33464
33465 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
33466 if (streq (name, attribute_table[i].name))
33467 return attribute_table[i].tag;
33468
33469 return -1;
33470 }
33471
33472 /* Apply sym value for relocations only in the case that they are for
33473 local symbols in the same segment as the fixup and you have the
33474 respective architectural feature for blx and simple switches. */
33475
33476 int
33477 arm_apply_sym_value (struct fix * fixP, segT this_seg)
33478 {
33479 if (fixP->fx_addsy
33480 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
33481 /* PR 17444: If the local symbol is in a different section then a reloc
33482 will always be generated for it, so applying the symbol value now
33483 will result in a double offset being stored in the relocation. */
33484 && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
33485 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
33486 {
33487 switch (fixP->fx_r_type)
33488 {
33489 case BFD_RELOC_ARM_PCREL_BLX:
33490 case BFD_RELOC_THUMB_PCREL_BRANCH23:
33491 if (ARM_IS_FUNC (fixP->fx_addsy))
33492 return 1;
33493 break;
33494
33495 case BFD_RELOC_ARM_PCREL_CALL:
33496 case BFD_RELOC_THUMB_PCREL_BLX:
33497 if (THUMB_IS_FUNC (fixP->fx_addsy))
33498 return 1;
33499 break;
33500
33501 default:
33502 break;
33503 }
33504
33505 }
33506 return 0;
33507 }
33508 #endif /* OBJ_ELF */