]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-arm.c
[ARM] Add linker support for ARMv8-R
[thirdparty/binutils-gdb.git] / gas / config / tc-arm.c
CommitLineData
b99bd4ef 1/* tc-arm.c -- Assemble for the ARM
2571583a 2 Copyright (C) 1994-2017 Free Software Foundation, Inc.
b99bd4ef
NC
3 Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
4 Modified by David Taylor (dtaylor@armltd.co.uk)
22d9c8c5 5 Cirrus coprocessor mods by Aldy Hernandez (aldyh@redhat.com)
34920d91
NC
6 Cirrus coprocessor fixes by Petko Manolov (petkan@nucleusys.com)
7 Cirrus coprocessor fixes by Vladimir Ivanov (vladitx@nucleusys.com)
b99bd4ef
NC
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
ec2655a6 13 the Free Software Foundation; either version 3, or (at your option)
b99bd4ef
NC
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
c19d1205 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b99bd4ef
NC
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
699d2810
NC
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
b99bd4ef 25
42a68e18 26#include "as.h"
5287ad62 27#include <limits.h>
037e8744 28#include <stdarg.h>
c19d1205 29#define NO_RELOC 0
3882b010 30#include "safe-ctype.h"
b99bd4ef
NC
31#include "subsegs.h"
32#include "obstack.h"
3da1d841 33#include "libiberty.h"
f263249b
RE
34#include "opcode/arm.h"
35
b99bd4ef
NC
36#ifdef OBJ_ELF
37#include "elf/arm.h"
a394c00f 38#include "dw2gencfi.h"
b99bd4ef
NC
39#endif
40
f0927246
NC
41#include "dwarf2dbg.h"
42
7ed4c4c5
NC
43#ifdef OBJ_ELF
44/* Must be at least the size of the largest unwind opcode (currently two). */
45#define ARM_OPCODE_CHUNK_SIZE 8
46
47/* This structure holds the unwinding state. */
48
49static struct
50{
c19d1205
ZW
51 symbolS * proc_start;
52 symbolS * table_entry;
53 symbolS * personality_routine;
54 int personality_index;
7ed4c4c5 55 /* The segment containing the function. */
c19d1205
ZW
56 segT saved_seg;
57 subsegT saved_subseg;
7ed4c4c5
NC
58 /* Opcodes generated from this function. */
59 unsigned char * opcodes;
c19d1205
ZW
60 int opcode_count;
61 int opcode_alloc;
7ed4c4c5 62 /* The number of bytes pushed to the stack. */
c19d1205 63 offsetT frame_size;
7ed4c4c5
NC
64 /* We don't add stack adjustment opcodes immediately so that we can merge
65 multiple adjustments. We can also omit the final adjustment
66 when using a frame pointer. */
c19d1205 67 offsetT pending_offset;
7ed4c4c5 68 /* These two fields are set by both unwind_movsp and unwind_setfp. They
c19d1205
ZW
69 hold the reg+offset to use when restoring sp from a frame pointer. */
70 offsetT fp_offset;
71 int fp_reg;
7ed4c4c5 72 /* Nonzero if an unwind_setfp directive has been seen. */
c19d1205 73 unsigned fp_used:1;
7ed4c4c5 74 /* Nonzero if the last opcode restores sp from fp_reg. */
c19d1205 75 unsigned sp_restored:1;
7ed4c4c5
NC
76} unwind;
77
8b1ad454
NC
78#endif /* OBJ_ELF */
79
4962c51a
MS
80/* Results from operand parsing worker functions. */
81
82typedef enum
83{
84 PARSE_OPERAND_SUCCESS,
85 PARSE_OPERAND_FAIL,
86 PARSE_OPERAND_FAIL_NO_BACKTRACK
87} parse_operand_result;
88
33a392fb
PB
89enum arm_float_abi
90{
91 ARM_FLOAT_ABI_HARD,
92 ARM_FLOAT_ABI_SOFTFP,
93 ARM_FLOAT_ABI_SOFT
94};
95
c19d1205 96/* Types of processor to assemble for. */
b99bd4ef 97#ifndef CPU_DEFAULT
8a59fff3 98/* The code that was here used to select a default CPU depending on compiler
fa94de6b 99 pre-defines which were only present when doing native builds, thus
8a59fff3
MGD
100 changing gas' default behaviour depending upon the build host.
101
102 If you have a target that requires a default CPU option then the you
103 should define CPU_DEFAULT here. */
b99bd4ef
NC
104#endif
105
106#ifndef FPU_DEFAULT
c820d418
MM
107# ifdef TE_LINUX
108# define FPU_DEFAULT FPU_ARCH_FPA
109# elif defined (TE_NetBSD)
110# ifdef OBJ_ELF
111# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, but VFP order. */
112# else
113 /* Legacy a.out format. */
114# define FPU_DEFAULT FPU_ARCH_FPA /* Soft-float, but FPA order. */
115# endif
4e7fd91e
PB
116# elif defined (TE_VXWORKS)
117# define FPU_DEFAULT FPU_ARCH_VFP /* Soft-float, VFP order. */
c820d418
MM
118# else
119 /* For backwards compatibility, default to FPA. */
120# define FPU_DEFAULT FPU_ARCH_FPA
121# endif
122#endif /* ifndef FPU_DEFAULT */
b99bd4ef 123
c19d1205 124#define streq(a, b) (strcmp (a, b) == 0)
b99bd4ef 125
e74cfd16
PB
126static arm_feature_set cpu_variant;
127static arm_feature_set arm_arch_used;
128static arm_feature_set thumb_arch_used;
b99bd4ef 129
b99bd4ef 130/* Flags stored in private area of BFD structure. */
c19d1205
ZW
131static int uses_apcs_26 = FALSE;
132static int atpcs = FALSE;
b34976b6
AM
133static int support_interwork = FALSE;
134static int uses_apcs_float = FALSE;
c19d1205 135static int pic_code = FALSE;
845b51d6 136static int fix_v4bx = FALSE;
278df34e
NS
137/* Warn on using deprecated features. */
138static int warn_on_deprecated = TRUE;
139
2e6976a8
DG
140/* Understand CodeComposer Studio assembly syntax. */
141bfd_boolean codecomposer_syntax = FALSE;
03b1477f
RE
142
143/* Variables that we set while parsing command-line options. Once all
144 options have been read we re-process these values to set the real
145 assembly flags. */
e74cfd16
PB
146static const arm_feature_set *legacy_cpu = NULL;
147static const arm_feature_set *legacy_fpu = NULL;
148
149static const arm_feature_set *mcpu_cpu_opt = NULL;
c168ce07 150static arm_feature_set *dyn_mcpu_ext_opt = NULL;
e74cfd16
PB
151static const arm_feature_set *mcpu_fpu_opt = NULL;
152static const arm_feature_set *march_cpu_opt = NULL;
c168ce07 153static arm_feature_set *dyn_march_ext_opt = NULL;
e74cfd16
PB
154static const arm_feature_set *march_fpu_opt = NULL;
155static const arm_feature_set *mfpu_opt = NULL;
7a1d4c38 156static const arm_feature_set *object_arch = NULL;
e74cfd16
PB
157
158/* Constants for known architecture features. */
159static const arm_feature_set fpu_default = FPU_DEFAULT;
f85d59c3 160static const arm_feature_set fpu_arch_vfp_v1 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V1;
e74cfd16 161static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
f85d59c3
KT
162static const arm_feature_set fpu_arch_vfp_v3 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V3;
163static const arm_feature_set fpu_arch_neon_v1 ATTRIBUTE_UNUSED = FPU_ARCH_NEON_V1;
e74cfd16
PB
164static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
165static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
69c9e028 166#ifdef OBJ_ELF
e74cfd16 167static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
69c9e028 168#endif
e74cfd16
PB
169static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
170
171#ifdef CPU_DEFAULT
172static const arm_feature_set cpu_default = CPU_DEFAULT;
173#endif
174
823d2571
TG
175static const arm_feature_set arm_ext_v1 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
176static const arm_feature_set arm_ext_v2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
177static const arm_feature_set arm_ext_v2s = ARM_FEATURE_CORE_LOW (ARM_EXT_V2S);
178static const arm_feature_set arm_ext_v3 = ARM_FEATURE_CORE_LOW (ARM_EXT_V3);
179static const arm_feature_set arm_ext_v3m = ARM_FEATURE_CORE_LOW (ARM_EXT_V3M);
180static const arm_feature_set arm_ext_v4 = ARM_FEATURE_CORE_LOW (ARM_EXT_V4);
181static const arm_feature_set arm_ext_v4t = ARM_FEATURE_CORE_LOW (ARM_EXT_V4T);
182static const arm_feature_set arm_ext_v5 = ARM_FEATURE_CORE_LOW (ARM_EXT_V5);
e74cfd16 183static const arm_feature_set arm_ext_v4t_5 =
823d2571
TG
184 ARM_FEATURE_CORE_LOW (ARM_EXT_V4T | ARM_EXT_V5);
185static const arm_feature_set arm_ext_v5t = ARM_FEATURE_CORE_LOW (ARM_EXT_V5T);
186static const arm_feature_set arm_ext_v5e = ARM_FEATURE_CORE_LOW (ARM_EXT_V5E);
187static const arm_feature_set arm_ext_v5exp = ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP);
188static const arm_feature_set arm_ext_v5j = ARM_FEATURE_CORE_LOW (ARM_EXT_V5J);
189static const arm_feature_set arm_ext_v6 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6);
190static const arm_feature_set arm_ext_v6k = ARM_FEATURE_CORE_LOW (ARM_EXT_V6K);
191static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6T2);
823d2571
TG
192static const arm_feature_set arm_ext_v6_notm =
193 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_NOTM);
194static const arm_feature_set arm_ext_v6_dsp =
195 ARM_FEATURE_CORE_LOW (ARM_EXT_V6_DSP);
196static const arm_feature_set arm_ext_barrier =
197 ARM_FEATURE_CORE_LOW (ARM_EXT_BARRIER);
198static const arm_feature_set arm_ext_msr =
199 ARM_FEATURE_CORE_LOW (ARM_EXT_THUMB_MSR);
200static const arm_feature_set arm_ext_div = ARM_FEATURE_CORE_LOW (ARM_EXT_DIV);
201static const arm_feature_set arm_ext_v7 = ARM_FEATURE_CORE_LOW (ARM_EXT_V7);
202static const arm_feature_set arm_ext_v7a = ARM_FEATURE_CORE_LOW (ARM_EXT_V7A);
203static const arm_feature_set arm_ext_v7r = ARM_FEATURE_CORE_LOW (ARM_EXT_V7R);
69c9e028 204#ifdef OBJ_ELF
e7d39ed3 205static const arm_feature_set ATTRIBUTE_UNUSED arm_ext_v7m = ARM_FEATURE_CORE_LOW (ARM_EXT_V7M);
69c9e028 206#endif
823d2571 207static const arm_feature_set arm_ext_v8 = ARM_FEATURE_CORE_LOW (ARM_EXT_V8);
7e806470 208static const arm_feature_set arm_ext_m =
173205ca 209 ARM_FEATURE_CORE (ARM_EXT_V6M | ARM_EXT_V7M,
16a1fa25 210 ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
823d2571
TG
211static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
212static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
213static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
214static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
215static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
ddfded2f 216static const arm_feature_set arm_ext_pan = ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN);
4ed7ed8d 217static const arm_feature_set arm_ext_v8m = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M);
16a1fa25
TP
218static const arm_feature_set arm_ext_v8m_main =
219 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M_MAIN);
220/* Instructions in ARMv8-M only found in M profile architectures. */
221static const arm_feature_set arm_ext_v8m_m_only =
222 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
ff8646ee
TP
223static const arm_feature_set arm_ext_v6t2_v8m =
224 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V6T2_V8M);
4ed7ed8d
TP
225/* Instructions shared between ARMv8-A and ARMv8-M. */
226static const arm_feature_set arm_ext_atomics =
227 ARM_FEATURE_CORE_HIGH (ARM_EXT2_ATOMICS);
69c9e028 228#ifdef OBJ_ELF
15afaa63
TP
229/* DSP instructions Tag_DSP_extension refers to. */
230static const arm_feature_set arm_ext_dsp =
231 ARM_FEATURE_CORE_LOW (ARM_EXT_V5E | ARM_EXT_V5ExP | ARM_EXT_V6_DSP);
69c9e028 232#endif
4d1464f2
MW
233static const arm_feature_set arm_ext_ras =
234 ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS);
b8ec4e87
JW
235/* FP16 instructions. */
236static const arm_feature_set arm_ext_fp16 =
237 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST);
49e8a725
SN
238static const arm_feature_set arm_ext_v8_3 =
239 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_3A);
e74cfd16
PB
240
241static const arm_feature_set arm_arch_any = ARM_ANY;
2c6b98ea 242static const arm_feature_set fpu_any = FPU_ANY;
f85d59c3 243static const arm_feature_set arm_arch_full ATTRIBUTE_UNUSED = ARM_FEATURE (-1, -1, -1);
e74cfd16
PB
244static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
245static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
246
2d447fca 247static const arm_feature_set arm_cext_iwmmxt2 =
823d2571 248 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
e74cfd16 249static const arm_feature_set arm_cext_iwmmxt =
823d2571 250 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
e74cfd16 251static const arm_feature_set arm_cext_xscale =
823d2571 252 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
e74cfd16 253static const arm_feature_set arm_cext_maverick =
823d2571
TG
254 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
255static const arm_feature_set fpu_fpa_ext_v1 =
256 ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
257static const arm_feature_set fpu_fpa_ext_v2 =
258 ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
e74cfd16 259static const arm_feature_set fpu_vfp_ext_v1xd =
823d2571
TG
260 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
261static const arm_feature_set fpu_vfp_ext_v1 =
262 ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
263static const arm_feature_set fpu_vfp_ext_v2 =
264 ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
265static const arm_feature_set fpu_vfp_ext_v3xd =
266 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
267static const arm_feature_set fpu_vfp_ext_v3 =
268 ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
b1cc4aeb 269static const arm_feature_set fpu_vfp_ext_d32 =
823d2571
TG
270 ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
271static const arm_feature_set fpu_neon_ext_v1 =
272 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
5287ad62 273static const arm_feature_set fpu_vfp_v3_or_neon_ext =
823d2571 274 ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
69c9e028 275#ifdef OBJ_ELF
823d2571
TG
276static const arm_feature_set fpu_vfp_fp16 =
277 ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
278static const arm_feature_set fpu_neon_ext_fma =
279 ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
69c9e028 280#endif
823d2571
TG
281static const arm_feature_set fpu_vfp_ext_fma =
282 ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
bca38921 283static const arm_feature_set fpu_vfp_ext_armv8 =
823d2571 284 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
a715796b 285static const arm_feature_set fpu_vfp_ext_armv8xd =
823d2571 286 ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
bca38921 287static const arm_feature_set fpu_neon_ext_armv8 =
823d2571 288 ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
bca38921 289static const arm_feature_set fpu_crypto_ext_armv8 =
823d2571 290 ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
dd5181d5 291static const arm_feature_set crc_ext_armv8 =
823d2571 292 ARM_FEATURE_COPROC (CRC_EXT_ARMV8);
d6b4b13e 293static const arm_feature_set fpu_neon_ext_v8_1 =
643afb90 294 ARM_FEATURE_COPROC (FPU_NEON_EXT_RDMA);
e74cfd16 295
33a392fb 296static int mfloat_abi_opt = -1;
e74cfd16
PB
297/* Record user cpu selection for object attributes. */
298static arm_feature_set selected_cpu = ARM_ARCH_NONE;
ee065d83 299/* Must be long enough to hold any of the names in arm_cpus. */
ef8e6722 300static char selected_cpu_name[20];
8d67f500 301
aacf0b33
KT
302extern FLONUM_TYPE generic_floating_point_number;
303
8d67f500
NC
304/* Return if no cpu was selected on command-line. */
305static bfd_boolean
306no_cpu_selected (void)
307{
823d2571 308 return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
8d67f500
NC
309}
310
7cc69913 311#ifdef OBJ_ELF
deeaaff8
DJ
312# ifdef EABI_DEFAULT
313static int meabi_flags = EABI_DEFAULT;
314# else
d507cf36 315static int meabi_flags = EF_ARM_EABI_UNKNOWN;
deeaaff8 316# endif
e1da3f5b 317
ee3c0378
AS
318static int attributes_set_explicitly[NUM_KNOWN_OBJ_ATTRIBUTES];
319
e1da3f5b 320bfd_boolean
5f4273c7 321arm_is_eabi (void)
e1da3f5b
PB
322{
323 return (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4);
324}
7cc69913 325#endif
b99bd4ef 326
b99bd4ef 327#ifdef OBJ_ELF
c19d1205 328/* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
b99bd4ef
NC
329symbolS * GOT_symbol;
330#endif
331
b99bd4ef
NC
332/* 0: assemble for ARM,
333 1: assemble for Thumb,
334 2: assemble for Thumb even though target CPU does not support thumb
335 instructions. */
336static int thumb_mode = 0;
8dc2430f
NC
337/* A value distinct from the possible values for thumb_mode that we
338 can use to record whether thumb_mode has been copied into the
339 tc_frag_data field of a frag. */
340#define MODE_RECORDED (1 << 4)
b99bd4ef 341
e07e6e58
NC
342/* Specifies the intrinsic IT insn behavior mode. */
343enum implicit_it_mode
344{
345 IMPLICIT_IT_MODE_NEVER = 0x00,
346 IMPLICIT_IT_MODE_ARM = 0x01,
347 IMPLICIT_IT_MODE_THUMB = 0x02,
348 IMPLICIT_IT_MODE_ALWAYS = (IMPLICIT_IT_MODE_ARM | IMPLICIT_IT_MODE_THUMB)
349};
350static int implicit_it_mode = IMPLICIT_IT_MODE_ARM;
351
c19d1205
ZW
352/* If unified_syntax is true, we are processing the new unified
353 ARM/Thumb syntax. Important differences from the old ARM mode:
354
355 - Immediate operands do not require a # prefix.
356 - Conditional affixes always appear at the end of the
357 instruction. (For backward compatibility, those instructions
358 that formerly had them in the middle, continue to accept them
359 there.)
360 - The IT instruction may appear, and if it does is validated
361 against subsequent conditional affixes. It does not generate
362 machine code.
363
364 Important differences from the old Thumb mode:
365
366 - Immediate operands do not require a # prefix.
367 - Most of the V6T2 instructions are only available in unified mode.
368 - The .N and .W suffixes are recognized and honored (it is an error
369 if they cannot be honored).
370 - All instructions set the flags if and only if they have an 's' affix.
371 - Conditional affixes may be used. They are validated against
372 preceding IT instructions. Unlike ARM mode, you cannot use a
373 conditional affix except in the scope of an IT instruction. */
374
375static bfd_boolean unified_syntax = FALSE;
b99bd4ef 376
bacebabc
RM
377/* An immediate operand can start with #, and ld*, st*, pld operands
378 can contain [ and ]. We need to tell APP not to elide whitespace
477330fc
RM
379 before a [, which can appear as the first operand for pld.
380 Likewise, a { can appear as the first operand for push, pop, vld*, etc. */
381const char arm_symbol_chars[] = "#[]{}";
bacebabc 382
5287ad62
JB
383enum neon_el_type
384{
dcbf9037 385 NT_invtype,
5287ad62
JB
386 NT_untyped,
387 NT_integer,
388 NT_float,
389 NT_poly,
390 NT_signed,
dcbf9037 391 NT_unsigned
5287ad62
JB
392};
393
394struct neon_type_el
395{
396 enum neon_el_type type;
397 unsigned size;
398};
399
400#define NEON_MAX_TYPE_ELS 4
401
402struct neon_type
403{
404 struct neon_type_el el[NEON_MAX_TYPE_ELS];
405 unsigned elems;
406};
407
e07e6e58
NC
408enum it_instruction_type
409{
410 OUTSIDE_IT_INSN,
411 INSIDE_IT_INSN,
412 INSIDE_IT_LAST_INSN,
413 IF_INSIDE_IT_LAST_INSN, /* Either outside or inside;
477330fc 414 if inside, should be the last one. */
e07e6e58 415 NEUTRAL_IT_INSN, /* This could be either inside or outside,
477330fc 416 i.e. BKPT and NOP. */
e07e6e58
NC
417 IT_INSN /* The IT insn has been parsed. */
418};
419
ad6cec43
MGD
420/* The maximum number of operands we need. */
421#define ARM_IT_MAX_OPERANDS 6
422
b99bd4ef
NC
423struct arm_it
424{
c19d1205 425 const char * error;
b99bd4ef 426 unsigned long instruction;
c19d1205
ZW
427 int size;
428 int size_req;
429 int cond;
037e8744
JB
430 /* "uncond_value" is set to the value in place of the conditional field in
431 unconditional versions of the instruction, or -1 if nothing is
432 appropriate. */
433 int uncond_value;
5287ad62 434 struct neon_type vectype;
88714cb8
DG
435 /* This does not indicate an actual NEON instruction, only that
436 the mnemonic accepts neon-style type suffixes. */
437 int is_neon;
0110f2b8
PB
438 /* Set to the opcode if the instruction needs relaxation.
439 Zero if the instruction is not relaxed. */
440 unsigned long relax;
b99bd4ef
NC
441 struct
442 {
443 bfd_reloc_code_real_type type;
c19d1205
ZW
444 expressionS exp;
445 int pc_rel;
b99bd4ef 446 } reloc;
b99bd4ef 447
e07e6e58
NC
448 enum it_instruction_type it_insn_type;
449
c19d1205
ZW
450 struct
451 {
452 unsigned reg;
ca3f61f7 453 signed int imm;
dcbf9037 454 struct neon_type_el vectype;
ca3f61f7
NC
455 unsigned present : 1; /* Operand present. */
456 unsigned isreg : 1; /* Operand was a register. */
457 unsigned immisreg : 1; /* .imm field is a second register. */
5287ad62
JB
458 unsigned isscalar : 1; /* Operand is a (Neon) scalar. */
459 unsigned immisalign : 1; /* Immediate is an alignment specifier. */
c96612cc 460 unsigned immisfloat : 1; /* Immediate was parsed as a float. */
5287ad62
JB
461 /* Note: we abuse "regisimm" to mean "is Neon register" in VMOV
462 instructions. This allows us to disambiguate ARM <-> vector insns. */
463 unsigned regisimm : 1; /* 64-bit immediate, reg forms high 32 bits. */
037e8744 464 unsigned isvec : 1; /* Is a single, double or quad VFP/Neon reg. */
5287ad62 465 unsigned isquad : 1; /* Operand is Neon quad-precision register. */
037e8744 466 unsigned issingle : 1; /* Operand is VFP single-precision register. */
ca3f61f7
NC
467 unsigned hasreloc : 1; /* Operand has relocation suffix. */
468 unsigned writeback : 1; /* Operand has trailing ! */
469 unsigned preind : 1; /* Preindexed address. */
470 unsigned postind : 1; /* Postindexed address. */
471 unsigned negative : 1; /* Index register was negated. */
472 unsigned shifted : 1; /* Shift applied to operation. */
473 unsigned shift_kind : 3; /* Shift operation (enum shift_kind). */
ad6cec43 474 } operands[ARM_IT_MAX_OPERANDS];
b99bd4ef
NC
475};
476
c19d1205 477static struct arm_it inst;
b99bd4ef
NC
478
479#define NUM_FLOAT_VALS 8
480
05d2d07e 481const char * fp_const[] =
b99bd4ef
NC
482{
483 "0.0", "1.0", "2.0", "3.0", "4.0", "5.0", "0.5", "10.0", 0
484};
485
c19d1205 486/* Number of littlenums required to hold an extended precision number. */
b99bd4ef
NC
487#define MAX_LITTLENUMS 6
488
489LITTLENUM_TYPE fp_values[NUM_FLOAT_VALS][MAX_LITTLENUMS];
490
491#define FAIL (-1)
492#define SUCCESS (0)
493
494#define SUFF_S 1
495#define SUFF_D 2
496#define SUFF_E 3
497#define SUFF_P 4
498
c19d1205
ZW
499#define CP_T_X 0x00008000
500#define CP_T_Y 0x00400000
b99bd4ef 501
c19d1205
ZW
502#define CONDS_BIT 0x00100000
503#define LOAD_BIT 0x00100000
b99bd4ef
NC
504
505#define DOUBLE_LOAD_FLAG 0x00000001
506
507struct asm_cond
508{
d3ce72d0 509 const char * template_name;
c921be7d 510 unsigned long value;
b99bd4ef
NC
511};
512
c19d1205 513#define COND_ALWAYS 0xE
b99bd4ef 514
b99bd4ef
NC
515struct asm_psr
516{
d3ce72d0 517 const char * template_name;
c921be7d 518 unsigned long field;
b99bd4ef
NC
519};
520
62b3e311
PB
521struct asm_barrier_opt
522{
e797f7e0
MGD
523 const char * template_name;
524 unsigned long value;
525 const arm_feature_set arch;
62b3e311
PB
526};
527
2d2255b5 528/* The bit that distinguishes CPSR and SPSR. */
b99bd4ef
NC
529#define SPSR_BIT (1 << 22)
530
c19d1205
ZW
531/* The individual PSR flag bits. */
532#define PSR_c (1 << 16)
533#define PSR_x (1 << 17)
534#define PSR_s (1 << 18)
535#define PSR_f (1 << 19)
b99bd4ef 536
c19d1205 537struct reloc_entry
bfae80f2 538{
e0471c16 539 const char * name;
c921be7d 540 bfd_reloc_code_real_type reloc;
bfae80f2
RE
541};
542
5287ad62 543enum vfp_reg_pos
bfae80f2 544{
5287ad62
JB
545 VFP_REG_Sd, VFP_REG_Sm, VFP_REG_Sn,
546 VFP_REG_Dd, VFP_REG_Dm, VFP_REG_Dn
bfae80f2
RE
547};
548
549enum vfp_ldstm_type
550{
551 VFP_LDSTMIA, VFP_LDSTMDB, VFP_LDSTMIAX, VFP_LDSTMDBX
552};
553
dcbf9037
JB
554/* Bits for DEFINED field in neon_typed_alias. */
555#define NTA_HASTYPE 1
556#define NTA_HASINDEX 2
557
558struct neon_typed_alias
559{
c921be7d
NC
560 unsigned char defined;
561 unsigned char index;
562 struct neon_type_el eltype;
dcbf9037
JB
563};
564
c19d1205
ZW
565/* ARM register categories. This includes coprocessor numbers and various
566 architecture extensions' registers. */
567enum arm_reg_type
bfae80f2 568{
c19d1205
ZW
569 REG_TYPE_RN,
570 REG_TYPE_CP,
571 REG_TYPE_CN,
572 REG_TYPE_FN,
573 REG_TYPE_VFS,
574 REG_TYPE_VFD,
5287ad62 575 REG_TYPE_NQ,
037e8744 576 REG_TYPE_VFSD,
5287ad62 577 REG_TYPE_NDQ,
037e8744 578 REG_TYPE_NSDQ,
c19d1205
ZW
579 REG_TYPE_VFC,
580 REG_TYPE_MVF,
581 REG_TYPE_MVD,
582 REG_TYPE_MVFX,
583 REG_TYPE_MVDX,
584 REG_TYPE_MVAX,
585 REG_TYPE_DSPSC,
586 REG_TYPE_MMXWR,
587 REG_TYPE_MMXWC,
588 REG_TYPE_MMXWCG,
589 REG_TYPE_XSCALE,
90ec0d68 590 REG_TYPE_RNB
bfae80f2
RE
591};
592
dcbf9037
JB
593/* Structure for a hash table entry for a register.
594 If TYPE is REG_TYPE_VFD or REG_TYPE_NQ, the NEON field can point to extra
595 information which states whether a vector type or index is specified (for a
596 register alias created with .dn or .qn). Otherwise NEON should be NULL. */
6c43fab6
RE
597struct reg_entry
598{
c921be7d 599 const char * name;
90ec0d68 600 unsigned int number;
c921be7d
NC
601 unsigned char type;
602 unsigned char builtin;
603 struct neon_typed_alias * neon;
6c43fab6
RE
604};
605
c19d1205 606/* Diagnostics used when we don't get a register of the expected type. */
c921be7d 607const char * const reg_expected_msgs[] =
c19d1205
ZW
608{
609 N_("ARM register expected"),
610 N_("bad or missing co-processor number"),
611 N_("co-processor register expected"),
612 N_("FPA register expected"),
613 N_("VFP single precision register expected"),
5287ad62
JB
614 N_("VFP/Neon double precision register expected"),
615 N_("Neon quad precision register expected"),
037e8744 616 N_("VFP single or double precision register expected"),
5287ad62 617 N_("Neon double or quad precision register expected"),
037e8744 618 N_("VFP single, double or Neon quad precision register expected"),
c19d1205
ZW
619 N_("VFP system register expected"),
620 N_("Maverick MVF register expected"),
621 N_("Maverick MVD register expected"),
622 N_("Maverick MVFX register expected"),
623 N_("Maverick MVDX register expected"),
624 N_("Maverick MVAX register expected"),
625 N_("Maverick DSPSC register expected"),
626 N_("iWMMXt data register expected"),
627 N_("iWMMXt control register expected"),
628 N_("iWMMXt scalar register expected"),
629 N_("XScale accumulator register expected"),
6c43fab6
RE
630};
631
c19d1205 632/* Some well known registers that we refer to directly elsewhere. */
bd340a04 633#define REG_R12 12
c19d1205
ZW
634#define REG_SP 13
635#define REG_LR 14
636#define REG_PC 15
404ff6b5 637
b99bd4ef
NC
638/* ARM instructions take 4bytes in the object file, Thumb instructions
639 take 2: */
c19d1205 640#define INSN_SIZE 4
b99bd4ef
NC
641
642struct asm_opcode
643{
644 /* Basic string to match. */
d3ce72d0 645 const char * template_name;
c19d1205
ZW
646
647 /* Parameters to instruction. */
5be8be5d 648 unsigned int operands[8];
c19d1205
ZW
649
650 /* Conditional tag - see opcode_lookup. */
651 unsigned int tag : 4;
b99bd4ef
NC
652
653 /* Basic instruction code. */
c19d1205 654 unsigned int avalue : 28;
b99bd4ef 655
c19d1205
ZW
656 /* Thumb-format instruction code. */
657 unsigned int tvalue;
b99bd4ef 658
90e4755a 659 /* Which architecture variant provides this instruction. */
c921be7d
NC
660 const arm_feature_set * avariant;
661 const arm_feature_set * tvariant;
c19d1205
ZW
662
663 /* Function to call to encode instruction in ARM format. */
664 void (* aencode) (void);
b99bd4ef 665
c19d1205
ZW
666 /* Function to call to encode instruction in Thumb format. */
667 void (* tencode) (void);
b99bd4ef
NC
668};
669
a737bd4d
NC
670/* Defines for various bits that we will want to toggle. */
671#define INST_IMMEDIATE 0x02000000
672#define OFFSET_REG 0x02000000
c19d1205 673#define HWOFFSET_IMM 0x00400000
a737bd4d
NC
674#define SHIFT_BY_REG 0x00000010
675#define PRE_INDEX 0x01000000
676#define INDEX_UP 0x00800000
677#define WRITE_BACK 0x00200000
678#define LDM_TYPE_2_OR_3 0x00400000
a028a6f5 679#define CPSI_MMOD 0x00020000
90e4755a 680
a737bd4d
NC
681#define LITERAL_MASK 0xf000f000
682#define OPCODE_MASK 0xfe1fffff
683#define V4_STR_BIT 0x00000020
8335d6aa 684#define VLDR_VMOV_SAME 0x0040f000
90e4755a 685
efd81785
PB
686#define T2_SUBS_PC_LR 0xf3de8f00
687
a737bd4d 688#define DATA_OP_SHIFT 21
bada4342 689#define SBIT_SHIFT 20
90e4755a 690
ef8d22e6
PB
691#define T2_OPCODE_MASK 0xfe1fffff
692#define T2_DATA_OP_SHIFT 21
bada4342 693#define T2_SBIT_SHIFT 20
ef8d22e6 694
6530b175
NC
695#define A_COND_MASK 0xf0000000
696#define A_PUSH_POP_OP_MASK 0x0fff0000
697
698/* Opcodes for pushing/poping registers to/from the stack. */
699#define A1_OPCODE_PUSH 0x092d0000
700#define A2_OPCODE_PUSH 0x052d0004
701#define A2_OPCODE_POP 0x049d0004
702
a737bd4d
NC
703/* Codes to distinguish the arithmetic instructions. */
704#define OPCODE_AND 0
705#define OPCODE_EOR 1
706#define OPCODE_SUB 2
707#define OPCODE_RSB 3
708#define OPCODE_ADD 4
709#define OPCODE_ADC 5
710#define OPCODE_SBC 6
711#define OPCODE_RSC 7
712#define OPCODE_TST 8
713#define OPCODE_TEQ 9
714#define OPCODE_CMP 10
715#define OPCODE_CMN 11
716#define OPCODE_ORR 12
717#define OPCODE_MOV 13
718#define OPCODE_BIC 14
719#define OPCODE_MVN 15
90e4755a 720
ef8d22e6
PB
721#define T2_OPCODE_AND 0
722#define T2_OPCODE_BIC 1
723#define T2_OPCODE_ORR 2
724#define T2_OPCODE_ORN 3
725#define T2_OPCODE_EOR 4
726#define T2_OPCODE_ADD 8
727#define T2_OPCODE_ADC 10
728#define T2_OPCODE_SBC 11
729#define T2_OPCODE_SUB 13
730#define T2_OPCODE_RSB 14
731
a737bd4d
NC
732#define T_OPCODE_MUL 0x4340
733#define T_OPCODE_TST 0x4200
734#define T_OPCODE_CMN 0x42c0
735#define T_OPCODE_NEG 0x4240
736#define T_OPCODE_MVN 0x43c0
90e4755a 737
a737bd4d
NC
738#define T_OPCODE_ADD_R3 0x1800
739#define T_OPCODE_SUB_R3 0x1a00
740#define T_OPCODE_ADD_HI 0x4400
741#define T_OPCODE_ADD_ST 0xb000
742#define T_OPCODE_SUB_ST 0xb080
743#define T_OPCODE_ADD_SP 0xa800
744#define T_OPCODE_ADD_PC 0xa000
745#define T_OPCODE_ADD_I8 0x3000
746#define T_OPCODE_SUB_I8 0x3800
747#define T_OPCODE_ADD_I3 0x1c00
748#define T_OPCODE_SUB_I3 0x1e00
b99bd4ef 749
a737bd4d
NC
750#define T_OPCODE_ASR_R 0x4100
751#define T_OPCODE_LSL_R 0x4080
c19d1205
ZW
752#define T_OPCODE_LSR_R 0x40c0
753#define T_OPCODE_ROR_R 0x41c0
a737bd4d
NC
754#define T_OPCODE_ASR_I 0x1000
755#define T_OPCODE_LSL_I 0x0000
756#define T_OPCODE_LSR_I 0x0800
b99bd4ef 757
a737bd4d
NC
758#define T_OPCODE_MOV_I8 0x2000
759#define T_OPCODE_CMP_I8 0x2800
760#define T_OPCODE_CMP_LR 0x4280
761#define T_OPCODE_MOV_HR 0x4600
762#define T_OPCODE_CMP_HR 0x4500
b99bd4ef 763
a737bd4d
NC
764#define T_OPCODE_LDR_PC 0x4800
765#define T_OPCODE_LDR_SP 0x9800
766#define T_OPCODE_STR_SP 0x9000
767#define T_OPCODE_LDR_IW 0x6800
768#define T_OPCODE_STR_IW 0x6000
769#define T_OPCODE_LDR_IH 0x8800
770#define T_OPCODE_STR_IH 0x8000
771#define T_OPCODE_LDR_IB 0x7800
772#define T_OPCODE_STR_IB 0x7000
773#define T_OPCODE_LDR_RW 0x5800
774#define T_OPCODE_STR_RW 0x5000
775#define T_OPCODE_LDR_RH 0x5a00
776#define T_OPCODE_STR_RH 0x5200
777#define T_OPCODE_LDR_RB 0x5c00
778#define T_OPCODE_STR_RB 0x5400
c9b604bd 779
a737bd4d
NC
780#define T_OPCODE_PUSH 0xb400
781#define T_OPCODE_POP 0xbc00
b99bd4ef 782
2fc8bdac 783#define T_OPCODE_BRANCH 0xe000
b99bd4ef 784
a737bd4d 785#define THUMB_SIZE 2 /* Size of thumb instruction. */
a737bd4d 786#define THUMB_PP_PC_LR 0x0100
c19d1205 787#define THUMB_LOAD_BIT 0x0800
53365c0d 788#define THUMB2_LOAD_BIT 0x00100000
c19d1205
ZW
789
790#define BAD_ARGS _("bad arguments to instruction")
fdfde340 791#define BAD_SP _("r13 not allowed here")
c19d1205
ZW
792#define BAD_PC _("r15 not allowed here")
793#define BAD_COND _("instruction cannot be conditional")
794#define BAD_OVERLAP _("registers may not be the same")
795#define BAD_HIREG _("lo register required")
796#define BAD_THUMB32 _("instruction not supported in Thumb16 mode")
01cfc07f 797#define BAD_ADDR_MODE _("instruction does not accept this addressing mode");
dfa9f0d5
PB
798#define BAD_BRANCH _("branch must be last instruction in IT block")
799#define BAD_NOT_IT _("instruction not allowed in IT block")
037e8744 800#define BAD_FPU _("selected FPU does not support instruction")
e07e6e58
NC
801#define BAD_OUT_IT _("thumb conditional instruction should be in IT block")
802#define BAD_IT_COND _("incorrect condition in IT block")
803#define BAD_IT_IT _("IT falling in the range of a previous IT block")
921e5f0a 804#define MISSING_FNSTART _("missing .fnstart before unwinding directive")
5be8be5d
DG
805#define BAD_PC_ADDRESSING \
806 _("cannot use register index with PC-relative addressing")
807#define BAD_PC_WRITEBACK \
808 _("cannot use writeback with PC-relative addressing")
9db2f6b4
RL
809#define BAD_RANGE _("branch out of range")
810#define BAD_FP16 _("selected processor does not support fp16 instruction")
dd5181d5 811#define UNPRED_REG(R) _("using " R " results in unpredictable behaviour")
a9f02af8 812#define THUMB1_RELOC_ONLY _("relocation valid in thumb1 code only")
c19d1205 813
c921be7d
NC
814static struct hash_control * arm_ops_hsh;
815static struct hash_control * arm_cond_hsh;
816static struct hash_control * arm_shift_hsh;
817static struct hash_control * arm_psr_hsh;
818static struct hash_control * arm_v7m_psr_hsh;
819static struct hash_control * arm_reg_hsh;
820static struct hash_control * arm_reloc_hsh;
821static struct hash_control * arm_barrier_opt_hsh;
b99bd4ef 822
b99bd4ef
NC
823/* Stuff needed to resolve the label ambiguity
824 As:
825 ...
826 label: <insn>
827 may differ from:
828 ...
829 label:
5f4273c7 830 <insn> */
b99bd4ef
NC
831
832symbolS * last_label_seen;
b34976b6 833static int label_is_thumb_function_name = FALSE;
e07e6e58 834
3d0c9500
NC
835/* Literal pool structure. Held on a per-section
836 and per-sub-section basis. */
a737bd4d 837
c19d1205 838#define MAX_LITERAL_POOL_SIZE 1024
3d0c9500 839typedef struct literal_pool
b99bd4ef 840{
c921be7d
NC
841 expressionS literals [MAX_LITERAL_POOL_SIZE];
842 unsigned int next_free_entry;
843 unsigned int id;
844 symbolS * symbol;
845 segT section;
846 subsegT sub_section;
a8040cf2
NC
847#ifdef OBJ_ELF
848 struct dwarf2_line_info locs [MAX_LITERAL_POOL_SIZE];
849#endif
c921be7d 850 struct literal_pool * next;
8335d6aa 851 unsigned int alignment;
3d0c9500 852} literal_pool;
b99bd4ef 853
3d0c9500
NC
854/* Pointer to a linked list of literal pools. */
855literal_pool * list_of_pools = NULL;
e27ec89e 856
2e6976a8
DG
857typedef enum asmfunc_states
858{
859 OUTSIDE_ASMFUNC,
860 WAITING_ASMFUNC_NAME,
861 WAITING_ENDASMFUNC
862} asmfunc_states;
863
864static asmfunc_states asmfunc_state = OUTSIDE_ASMFUNC;
865
e07e6e58
NC
866#ifdef OBJ_ELF
867# define now_it seg_info (now_seg)->tc_segment_info_data.current_it
868#else
869static struct current_it now_it;
870#endif
871
872static inline int
873now_it_compatible (int cond)
874{
875 return (cond & ~1) == (now_it.cc & ~1);
876}
877
878static inline int
879conditional_insn (void)
880{
881 return inst.cond != COND_ALWAYS;
882}
883
884static int in_it_block (void);
885
886static int handle_it_state (void);
887
888static void force_automatic_it_block_close (void);
889
c921be7d
NC
890static void it_fsm_post_encode (void);
891
e07e6e58
NC
892#define set_it_insn_type(type) \
893 do \
894 { \
895 inst.it_insn_type = type; \
896 if (handle_it_state () == FAIL) \
477330fc 897 return; \
e07e6e58
NC
898 } \
899 while (0)
900
c921be7d
NC
901#define set_it_insn_type_nonvoid(type, failret) \
902 do \
903 { \
904 inst.it_insn_type = type; \
905 if (handle_it_state () == FAIL) \
477330fc 906 return failret; \
c921be7d
NC
907 } \
908 while(0)
909
e07e6e58
NC
910#define set_it_insn_type_last() \
911 do \
912 { \
913 if (inst.cond == COND_ALWAYS) \
477330fc 914 set_it_insn_type (IF_INSIDE_IT_LAST_INSN); \
e07e6e58 915 else \
477330fc 916 set_it_insn_type (INSIDE_IT_LAST_INSN); \
e07e6e58
NC
917 } \
918 while (0)
919
c19d1205 920/* Pure syntax. */
b99bd4ef 921
c19d1205
ZW
922/* This array holds the chars that always start a comment. If the
923 pre-processor is disabled, these aren't very useful. */
2e6976a8 924char arm_comment_chars[] = "@";
3d0c9500 925
c19d1205
ZW
926/* This array holds the chars that only start a comment at the beginning of
927 a line. If the line seems to have the form '# 123 filename'
928 .line and .file directives will appear in the pre-processed output. */
929/* Note that input_file.c hand checks for '#' at the beginning of the
930 first line of the input file. This is because the compiler outputs
931 #NO_APP at the beginning of its output. */
932/* Also note that comments like this one will always work. */
933const char line_comment_chars[] = "#";
3d0c9500 934
2e6976a8 935char arm_line_separator_chars[] = ";";
b99bd4ef 936
c19d1205
ZW
937/* Chars that can be used to separate mant
938 from exp in floating point numbers. */
939const char EXP_CHARS[] = "eE";
3d0c9500 940
c19d1205
ZW
941/* Chars that mean this number is a floating point constant. */
942/* As in 0f12.456 */
943/* or 0d1.2345e12 */
b99bd4ef 944
c19d1205 945const char FLT_CHARS[] = "rRsSfFdDxXeEpP";
3d0c9500 946
c19d1205
ZW
947/* Prefix characters that indicate the start of an immediate
948 value. */
949#define is_immediate_prefix(C) ((C) == '#' || (C) == '$')
3d0c9500 950
c19d1205
ZW
951/* Separator character handling. */
952
953#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
954
955static inline int
956skip_past_char (char ** str, char c)
957{
8ab8155f
NC
958 /* PR gas/14987: Allow for whitespace before the expected character. */
959 skip_whitespace (*str);
427d0db6 960
c19d1205
ZW
961 if (**str == c)
962 {
963 (*str)++;
964 return SUCCESS;
3d0c9500 965 }
c19d1205
ZW
966 else
967 return FAIL;
968}
c921be7d 969
c19d1205 970#define skip_past_comma(str) skip_past_char (str, ',')
3d0c9500 971
c19d1205
ZW
972/* Arithmetic expressions (possibly involving symbols). */
973
974/* Return TRUE if anything in the expression is a bignum. */
975
976static int
977walk_no_bignums (symbolS * sp)
978{
979 if (symbol_get_value_expression (sp)->X_op == O_big)
980 return 1;
981
982 if (symbol_get_value_expression (sp)->X_add_symbol)
3d0c9500 983 {
c19d1205
ZW
984 return (walk_no_bignums (symbol_get_value_expression (sp)->X_add_symbol)
985 || (symbol_get_value_expression (sp)->X_op_symbol
986 && walk_no_bignums (symbol_get_value_expression (sp)->X_op_symbol)));
3d0c9500
NC
987 }
988
c19d1205 989 return 0;
3d0c9500
NC
990}
991
c19d1205
ZW
992static int in_my_get_expression = 0;
993
994/* Third argument to my_get_expression. */
995#define GE_NO_PREFIX 0
996#define GE_IMM_PREFIX 1
997#define GE_OPT_PREFIX 2
5287ad62
JB
998/* This is a bit of a hack. Use an optional prefix, and also allow big (64-bit)
999 immediates, as can be used in Neon VMVN and VMOV immediate instructions. */
1000#define GE_OPT_PREFIX_BIG 3
a737bd4d 1001
b99bd4ef 1002static int
c19d1205 1003my_get_expression (expressionS * ep, char ** str, int prefix_mode)
b99bd4ef 1004{
c19d1205
ZW
1005 char * save_in;
1006 segT seg;
b99bd4ef 1007
c19d1205
ZW
1008 /* In unified syntax, all prefixes are optional. */
1009 if (unified_syntax)
5287ad62 1010 prefix_mode = (prefix_mode == GE_OPT_PREFIX_BIG) ? prefix_mode
477330fc 1011 : GE_OPT_PREFIX;
b99bd4ef 1012
c19d1205 1013 switch (prefix_mode)
b99bd4ef 1014 {
c19d1205
ZW
1015 case GE_NO_PREFIX: break;
1016 case GE_IMM_PREFIX:
1017 if (!is_immediate_prefix (**str))
1018 {
1019 inst.error = _("immediate expression requires a # prefix");
1020 return FAIL;
1021 }
1022 (*str)++;
1023 break;
1024 case GE_OPT_PREFIX:
5287ad62 1025 case GE_OPT_PREFIX_BIG:
c19d1205
ZW
1026 if (is_immediate_prefix (**str))
1027 (*str)++;
1028 break;
1029 default: abort ();
1030 }
b99bd4ef 1031
c19d1205 1032 memset (ep, 0, sizeof (expressionS));
b99bd4ef 1033
c19d1205
ZW
1034 save_in = input_line_pointer;
1035 input_line_pointer = *str;
1036 in_my_get_expression = 1;
1037 seg = expression (ep);
1038 in_my_get_expression = 0;
1039
f86adc07 1040 if (ep->X_op == O_illegal || ep->X_op == O_absent)
b99bd4ef 1041 {
f86adc07 1042 /* We found a bad or missing expression in md_operand(). */
c19d1205
ZW
1043 *str = input_line_pointer;
1044 input_line_pointer = save_in;
1045 if (inst.error == NULL)
f86adc07
NS
1046 inst.error = (ep->X_op == O_absent
1047 ? _("missing expression") :_("bad expression"));
c19d1205
ZW
1048 return 1;
1049 }
b99bd4ef 1050
c19d1205
ZW
1051#ifdef OBJ_AOUT
1052 if (seg != absolute_section
1053 && seg != text_section
1054 && seg != data_section
1055 && seg != bss_section
1056 && seg != undefined_section)
1057 {
1058 inst.error = _("bad segment");
1059 *str = input_line_pointer;
1060 input_line_pointer = save_in;
1061 return 1;
b99bd4ef 1062 }
87975d2a
AM
1063#else
1064 (void) seg;
c19d1205 1065#endif
b99bd4ef 1066
c19d1205
ZW
1067 /* Get rid of any bignums now, so that we don't generate an error for which
1068 we can't establish a line number later on. Big numbers are never valid
1069 in instructions, which is where this routine is always called. */
5287ad62
JB
1070 if (prefix_mode != GE_OPT_PREFIX_BIG
1071 && (ep->X_op == O_big
477330fc 1072 || (ep->X_add_symbol
5287ad62 1073 && (walk_no_bignums (ep->X_add_symbol)
477330fc 1074 || (ep->X_op_symbol
5287ad62 1075 && walk_no_bignums (ep->X_op_symbol))))))
c19d1205
ZW
1076 {
1077 inst.error = _("invalid constant");
1078 *str = input_line_pointer;
1079 input_line_pointer = save_in;
1080 return 1;
1081 }
b99bd4ef 1082
c19d1205
ZW
1083 *str = input_line_pointer;
1084 input_line_pointer = save_in;
1085 return 0;
b99bd4ef
NC
1086}
1087
c19d1205
ZW
1088/* Turn a string in input_line_pointer into a floating point constant
1089 of type TYPE, and store the appropriate bytes in *LITP. The number
1090 of LITTLENUMS emitted is stored in *SIZEP. An error message is
1091 returned, or NULL on OK.
b99bd4ef 1092
c19d1205
ZW
1093 Note that fp constants aren't represent in the normal way on the ARM.
1094 In big endian mode, things are as expected. However, in little endian
1095 mode fp constants are big-endian word-wise, and little-endian byte-wise
1096 within the words. For example, (double) 1.1 in big endian mode is
1097 the byte sequence 3f f1 99 99 99 99 99 9a, and in little endian mode is
1098 the byte sequence 99 99 f1 3f 9a 99 99 99.
b99bd4ef 1099
c19d1205 1100 ??? The format of 12 byte floats is uncertain according to gcc's arm.h. */
b99bd4ef 1101
6d4af3c2 1102const char *
c19d1205
ZW
1103md_atof (int type, char * litP, int * sizeP)
1104{
1105 int prec;
1106 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1107 char *t;
1108 int i;
b99bd4ef 1109
c19d1205
ZW
1110 switch (type)
1111 {
1112 case 'f':
1113 case 'F':
1114 case 's':
1115 case 'S':
1116 prec = 2;
1117 break;
b99bd4ef 1118
c19d1205
ZW
1119 case 'd':
1120 case 'D':
1121 case 'r':
1122 case 'R':
1123 prec = 4;
1124 break;
b99bd4ef 1125
c19d1205
ZW
1126 case 'x':
1127 case 'X':
499ac353 1128 prec = 5;
c19d1205 1129 break;
b99bd4ef 1130
c19d1205
ZW
1131 case 'p':
1132 case 'P':
499ac353 1133 prec = 5;
c19d1205 1134 break;
a737bd4d 1135
c19d1205
ZW
1136 default:
1137 *sizeP = 0;
499ac353 1138 return _("Unrecognized or unsupported floating point constant");
c19d1205 1139 }
b99bd4ef 1140
c19d1205
ZW
1141 t = atof_ieee (input_line_pointer, type, words);
1142 if (t)
1143 input_line_pointer = t;
499ac353 1144 *sizeP = prec * sizeof (LITTLENUM_TYPE);
b99bd4ef 1145
c19d1205
ZW
1146 if (target_big_endian)
1147 {
1148 for (i = 0; i < prec; i++)
1149 {
499ac353
NC
1150 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1151 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1152 }
1153 }
1154 else
1155 {
e74cfd16 1156 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
c19d1205
ZW
1157 for (i = prec - 1; i >= 0; i--)
1158 {
499ac353
NC
1159 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
1160 litP += sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1161 }
1162 else
1163 /* For a 4 byte float the order of elements in `words' is 1 0.
1164 For an 8 byte float the order is 1 0 3 2. */
1165 for (i = 0; i < prec; i += 2)
1166 {
499ac353
NC
1167 md_number_to_chars (litP, (valueT) words[i + 1],
1168 sizeof (LITTLENUM_TYPE));
1169 md_number_to_chars (litP + sizeof (LITTLENUM_TYPE),
1170 (valueT) words[i], sizeof (LITTLENUM_TYPE));
1171 litP += 2 * sizeof (LITTLENUM_TYPE);
c19d1205
ZW
1172 }
1173 }
b99bd4ef 1174
499ac353 1175 return NULL;
c19d1205 1176}
b99bd4ef 1177
c19d1205
ZW
1178/* We handle all bad expressions here, so that we can report the faulty
1179 instruction in the error message. */
1180void
91d6fa6a 1181md_operand (expressionS * exp)
c19d1205
ZW
1182{
1183 if (in_my_get_expression)
91d6fa6a 1184 exp->X_op = O_illegal;
b99bd4ef
NC
1185}
1186
c19d1205 1187/* Immediate values. */
b99bd4ef 1188
c19d1205
ZW
1189/* Generic immediate-value read function for use in directives.
1190 Accepts anything that 'expression' can fold to a constant.
1191 *val receives the number. */
1192#ifdef OBJ_ELF
1193static int
1194immediate_for_directive (int *val)
b99bd4ef 1195{
c19d1205
ZW
1196 expressionS exp;
1197 exp.X_op = O_illegal;
b99bd4ef 1198
c19d1205
ZW
1199 if (is_immediate_prefix (*input_line_pointer))
1200 {
1201 input_line_pointer++;
1202 expression (&exp);
1203 }
b99bd4ef 1204
c19d1205
ZW
1205 if (exp.X_op != O_constant)
1206 {
1207 as_bad (_("expected #constant"));
1208 ignore_rest_of_line ();
1209 return FAIL;
1210 }
1211 *val = exp.X_add_number;
1212 return SUCCESS;
b99bd4ef 1213}
c19d1205 1214#endif
b99bd4ef 1215
c19d1205 1216/* Register parsing. */
b99bd4ef 1217
c19d1205
ZW
1218/* Generic register parser. CCP points to what should be the
1219 beginning of a register name. If it is indeed a valid register
1220 name, advance CCP over it and return the reg_entry structure;
1221 otherwise return NULL. Does not issue diagnostics. */
1222
1223static struct reg_entry *
1224arm_reg_parse_multi (char **ccp)
b99bd4ef 1225{
c19d1205
ZW
1226 char *start = *ccp;
1227 char *p;
1228 struct reg_entry *reg;
b99bd4ef 1229
477330fc
RM
1230 skip_whitespace (start);
1231
c19d1205
ZW
1232#ifdef REGISTER_PREFIX
1233 if (*start != REGISTER_PREFIX)
01cfc07f 1234 return NULL;
c19d1205
ZW
1235 start++;
1236#endif
1237#ifdef OPTIONAL_REGISTER_PREFIX
1238 if (*start == OPTIONAL_REGISTER_PREFIX)
1239 start++;
1240#endif
b99bd4ef 1241
c19d1205
ZW
1242 p = start;
1243 if (!ISALPHA (*p) || !is_name_beginner (*p))
1244 return NULL;
b99bd4ef 1245
c19d1205
ZW
1246 do
1247 p++;
1248 while (ISALPHA (*p) || ISDIGIT (*p) || *p == '_');
1249
1250 reg = (struct reg_entry *) hash_find_n (arm_reg_hsh, start, p - start);
1251
1252 if (!reg)
1253 return NULL;
1254
1255 *ccp = p;
1256 return reg;
b99bd4ef
NC
1257}
1258
1259static int
dcbf9037 1260arm_reg_alt_syntax (char **ccp, char *start, struct reg_entry *reg,
477330fc 1261 enum arm_reg_type type)
b99bd4ef 1262{
c19d1205
ZW
1263 /* Alternative syntaxes are accepted for a few register classes. */
1264 switch (type)
1265 {
1266 case REG_TYPE_MVF:
1267 case REG_TYPE_MVD:
1268 case REG_TYPE_MVFX:
1269 case REG_TYPE_MVDX:
1270 /* Generic coprocessor register names are allowed for these. */
79134647 1271 if (reg && reg->type == REG_TYPE_CN)
c19d1205
ZW
1272 return reg->number;
1273 break;
69b97547 1274
c19d1205
ZW
1275 case REG_TYPE_CP:
1276 /* For backward compatibility, a bare number is valid here. */
1277 {
1278 unsigned long processor = strtoul (start, ccp, 10);
1279 if (*ccp != start && processor <= 15)
1280 return processor;
1281 }
1a0670f3 1282 /* Fall through. */
6057a28f 1283
c19d1205
ZW
1284 case REG_TYPE_MMXWC:
1285 /* WC includes WCG. ??? I'm not sure this is true for all
1286 instructions that take WC registers. */
79134647 1287 if (reg && reg->type == REG_TYPE_MMXWCG)
c19d1205 1288 return reg->number;
6057a28f 1289 break;
c19d1205 1290
6057a28f 1291 default:
c19d1205 1292 break;
6057a28f
NC
1293 }
1294
dcbf9037
JB
1295 return FAIL;
1296}
1297
1298/* As arm_reg_parse_multi, but the register must be of type TYPE, and the
1299 return value is the register number or FAIL. */
1300
1301static int
1302arm_reg_parse (char **ccp, enum arm_reg_type type)
1303{
1304 char *start = *ccp;
1305 struct reg_entry *reg = arm_reg_parse_multi (ccp);
1306 int ret;
1307
1308 /* Do not allow a scalar (reg+index) to parse as a register. */
1309 if (reg && reg->neon && (reg->neon->defined & NTA_HASINDEX))
1310 return FAIL;
1311
1312 if (reg && reg->type == type)
1313 return reg->number;
1314
1315 if ((ret = arm_reg_alt_syntax (ccp, start, reg, type)) != FAIL)
1316 return ret;
1317
c19d1205
ZW
1318 *ccp = start;
1319 return FAIL;
1320}
69b97547 1321
dcbf9037
JB
1322/* Parse a Neon type specifier. *STR should point at the leading '.'
1323 character. Does no verification at this stage that the type fits the opcode
1324 properly. E.g.,
1325
1326 .i32.i32.s16
1327 .s32.f32
1328 .u16
1329
1330 Can all be legally parsed by this function.
1331
1332 Fills in neon_type struct pointer with parsed information, and updates STR
1333 to point after the parsed type specifier. Returns SUCCESS if this was a legal
1334 type, FAIL if not. */
1335
1336static int
1337parse_neon_type (struct neon_type *type, char **str)
1338{
1339 char *ptr = *str;
1340
1341 if (type)
1342 type->elems = 0;
1343
1344 while (type->elems < NEON_MAX_TYPE_ELS)
1345 {
1346 enum neon_el_type thistype = NT_untyped;
1347 unsigned thissize = -1u;
1348
1349 if (*ptr != '.')
1350 break;
1351
1352 ptr++;
1353
1354 /* Just a size without an explicit type. */
1355 if (ISDIGIT (*ptr))
1356 goto parsesize;
1357
1358 switch (TOLOWER (*ptr))
1359 {
1360 case 'i': thistype = NT_integer; break;
1361 case 'f': thistype = NT_float; break;
1362 case 'p': thistype = NT_poly; break;
1363 case 's': thistype = NT_signed; break;
1364 case 'u': thistype = NT_unsigned; break;
477330fc
RM
1365 case 'd':
1366 thistype = NT_float;
1367 thissize = 64;
1368 ptr++;
1369 goto done;
dcbf9037
JB
1370 default:
1371 as_bad (_("unexpected character `%c' in type specifier"), *ptr);
1372 return FAIL;
1373 }
1374
1375 ptr++;
1376
1377 /* .f is an abbreviation for .f32. */
1378 if (thistype == NT_float && !ISDIGIT (*ptr))
1379 thissize = 32;
1380 else
1381 {
1382 parsesize:
1383 thissize = strtoul (ptr, &ptr, 10);
1384
1385 if (thissize != 8 && thissize != 16 && thissize != 32
477330fc
RM
1386 && thissize != 64)
1387 {
1388 as_bad (_("bad size %d in type specifier"), thissize);
dcbf9037
JB
1389 return FAIL;
1390 }
1391 }
1392
037e8744 1393 done:
dcbf9037 1394 if (type)
477330fc
RM
1395 {
1396 type->el[type->elems].type = thistype;
dcbf9037
JB
1397 type->el[type->elems].size = thissize;
1398 type->elems++;
1399 }
1400 }
1401
1402 /* Empty/missing type is not a successful parse. */
1403 if (type->elems == 0)
1404 return FAIL;
1405
1406 *str = ptr;
1407
1408 return SUCCESS;
1409}
1410
1411/* Errors may be set multiple times during parsing or bit encoding
1412 (particularly in the Neon bits), but usually the earliest error which is set
1413 will be the most meaningful. Avoid overwriting it with later (cascading)
1414 errors by calling this function. */
1415
1416static void
1417first_error (const char *err)
1418{
1419 if (!inst.error)
1420 inst.error = err;
1421}
1422
1423/* Parse a single type, e.g. ".s32", leading period included. */
1424static int
1425parse_neon_operand_type (struct neon_type_el *vectype, char **ccp)
1426{
1427 char *str = *ccp;
1428 struct neon_type optype;
1429
1430 if (*str == '.')
1431 {
1432 if (parse_neon_type (&optype, &str) == SUCCESS)
477330fc
RM
1433 {
1434 if (optype.elems == 1)
1435 *vectype = optype.el[0];
1436 else
1437 {
1438 first_error (_("only one type should be specified for operand"));
1439 return FAIL;
1440 }
1441 }
dcbf9037 1442 else
477330fc
RM
1443 {
1444 first_error (_("vector type expected"));
1445 return FAIL;
1446 }
dcbf9037
JB
1447 }
1448 else
1449 return FAIL;
5f4273c7 1450
dcbf9037 1451 *ccp = str;
5f4273c7 1452
dcbf9037
JB
1453 return SUCCESS;
1454}
1455
1456/* Special meanings for indices (which have a range of 0-7), which will fit into
1457 a 4-bit integer. */
1458
1459#define NEON_ALL_LANES 15
1460#define NEON_INTERLEAVE_LANES 14
1461
1462/* Parse either a register or a scalar, with an optional type. Return the
1463 register number, and optionally fill in the actual type of the register
1464 when multiple alternatives were given (NEON_TYPE_NDQ) in *RTYPE, and
1465 type/index information in *TYPEINFO. */
1466
1467static int
1468parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
477330fc
RM
1469 enum arm_reg_type *rtype,
1470 struct neon_typed_alias *typeinfo)
dcbf9037
JB
1471{
1472 char *str = *ccp;
1473 struct reg_entry *reg = arm_reg_parse_multi (&str);
1474 struct neon_typed_alias atype;
1475 struct neon_type_el parsetype;
1476
1477 atype.defined = 0;
1478 atype.index = -1;
1479 atype.eltype.type = NT_invtype;
1480 atype.eltype.size = -1;
1481
1482 /* Try alternate syntax for some types of register. Note these are mutually
1483 exclusive with the Neon syntax extensions. */
1484 if (reg == NULL)
1485 {
1486 int altreg = arm_reg_alt_syntax (&str, *ccp, reg, type);
1487 if (altreg != FAIL)
477330fc 1488 *ccp = str;
dcbf9037 1489 if (typeinfo)
477330fc 1490 *typeinfo = atype;
dcbf9037
JB
1491 return altreg;
1492 }
1493
037e8744
JB
1494 /* Undo polymorphism when a set of register types may be accepted. */
1495 if ((type == REG_TYPE_NDQ
1496 && (reg->type == REG_TYPE_NQ || reg->type == REG_TYPE_VFD))
1497 || (type == REG_TYPE_VFSD
477330fc 1498 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
037e8744 1499 || (type == REG_TYPE_NSDQ
477330fc
RM
1500 && (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
1501 || reg->type == REG_TYPE_NQ))
f512f76f
NC
1502 || (type == REG_TYPE_MMXWC
1503 && (reg->type == REG_TYPE_MMXWCG)))
21d799b5 1504 type = (enum arm_reg_type) reg->type;
dcbf9037
JB
1505
1506 if (type != reg->type)
1507 return FAIL;
1508
1509 if (reg->neon)
1510 atype = *reg->neon;
5f4273c7 1511
dcbf9037
JB
1512 if (parse_neon_operand_type (&parsetype, &str) == SUCCESS)
1513 {
1514 if ((atype.defined & NTA_HASTYPE) != 0)
477330fc
RM
1515 {
1516 first_error (_("can't redefine type for operand"));
1517 return FAIL;
1518 }
dcbf9037
JB
1519 atype.defined |= NTA_HASTYPE;
1520 atype.eltype = parsetype;
1521 }
5f4273c7 1522
dcbf9037
JB
1523 if (skip_past_char (&str, '[') == SUCCESS)
1524 {
1525 if (type != REG_TYPE_VFD)
477330fc
RM
1526 {
1527 first_error (_("only D registers may be indexed"));
1528 return FAIL;
1529 }
5f4273c7 1530
dcbf9037 1531 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
1532 {
1533 first_error (_("can't change index for operand"));
1534 return FAIL;
1535 }
dcbf9037
JB
1536
1537 atype.defined |= NTA_HASINDEX;
1538
1539 if (skip_past_char (&str, ']') == SUCCESS)
477330fc 1540 atype.index = NEON_ALL_LANES;
dcbf9037 1541 else
477330fc
RM
1542 {
1543 expressionS exp;
dcbf9037 1544
477330fc 1545 my_get_expression (&exp, &str, GE_NO_PREFIX);
dcbf9037 1546
477330fc
RM
1547 if (exp.X_op != O_constant)
1548 {
1549 first_error (_("constant expression required"));
1550 return FAIL;
1551 }
dcbf9037 1552
477330fc
RM
1553 if (skip_past_char (&str, ']') == FAIL)
1554 return FAIL;
dcbf9037 1555
477330fc
RM
1556 atype.index = exp.X_add_number;
1557 }
dcbf9037 1558 }
5f4273c7 1559
dcbf9037
JB
1560 if (typeinfo)
1561 *typeinfo = atype;
5f4273c7 1562
dcbf9037
JB
1563 if (rtype)
1564 *rtype = type;
5f4273c7 1565
dcbf9037 1566 *ccp = str;
5f4273c7 1567
dcbf9037
JB
1568 return reg->number;
1569}
1570
1571/* Like arm_reg_parse, but allow allow the following extra features:
1572 - If RTYPE is non-zero, return the (possibly restricted) type of the
1573 register (e.g. Neon double or quad reg when either has been requested).
1574 - If this is a Neon vector type with additional type information, fill
1575 in the struct pointed to by VECTYPE (if non-NULL).
5f4273c7 1576 This function will fault on encountering a scalar. */
dcbf9037
JB
1577
1578static int
1579arm_typed_reg_parse (char **ccp, enum arm_reg_type type,
477330fc 1580 enum arm_reg_type *rtype, struct neon_type_el *vectype)
dcbf9037
JB
1581{
1582 struct neon_typed_alias atype;
1583 char *str = *ccp;
1584 int reg = parse_typed_reg_or_scalar (&str, type, rtype, &atype);
1585
1586 if (reg == FAIL)
1587 return FAIL;
1588
0855e32b
NS
1589 /* Do not allow regname(... to parse as a register. */
1590 if (*str == '(')
1591 return FAIL;
1592
dcbf9037
JB
1593 /* Do not allow a scalar (reg+index) to parse as a register. */
1594 if ((atype.defined & NTA_HASINDEX) != 0)
1595 {
1596 first_error (_("register operand expected, but got scalar"));
1597 return FAIL;
1598 }
1599
1600 if (vectype)
1601 *vectype = atype.eltype;
1602
1603 *ccp = str;
1604
1605 return reg;
1606}
1607
1608#define NEON_SCALAR_REG(X) ((X) >> 4)
1609#define NEON_SCALAR_INDEX(X) ((X) & 15)
1610
5287ad62
JB
1611/* Parse a Neon scalar. Most of the time when we're parsing a scalar, we don't
1612 have enough information to be able to do a good job bounds-checking. So, we
1613 just do easy checks here, and do further checks later. */
1614
1615static int
dcbf9037 1616parse_scalar (char **ccp, int elsize, struct neon_type_el *type)
5287ad62 1617{
dcbf9037 1618 int reg;
5287ad62 1619 char *str = *ccp;
dcbf9037 1620 struct neon_typed_alias atype;
5f4273c7 1621
dcbf9037 1622 reg = parse_typed_reg_or_scalar (&str, REG_TYPE_VFD, NULL, &atype);
5f4273c7 1623
dcbf9037 1624 if (reg == FAIL || (atype.defined & NTA_HASINDEX) == 0)
5287ad62 1625 return FAIL;
5f4273c7 1626
dcbf9037 1627 if (atype.index == NEON_ALL_LANES)
5287ad62 1628 {
dcbf9037 1629 first_error (_("scalar must have an index"));
5287ad62
JB
1630 return FAIL;
1631 }
dcbf9037 1632 else if (atype.index >= 64 / elsize)
5287ad62 1633 {
dcbf9037 1634 first_error (_("scalar index out of range"));
5287ad62
JB
1635 return FAIL;
1636 }
5f4273c7 1637
dcbf9037
JB
1638 if (type)
1639 *type = atype.eltype;
5f4273c7 1640
5287ad62 1641 *ccp = str;
5f4273c7 1642
dcbf9037 1643 return reg * 16 + atype.index;
5287ad62
JB
1644}
1645
c19d1205 1646/* Parse an ARM register list. Returns the bitmask, or FAIL. */
e07e6e58 1647
c19d1205
ZW
1648static long
1649parse_reg_list (char ** strp)
1650{
1651 char * str = * strp;
1652 long range = 0;
1653 int another_range;
a737bd4d 1654
c19d1205
ZW
1655 /* We come back here if we get ranges concatenated by '+' or '|'. */
1656 do
6057a28f 1657 {
477330fc
RM
1658 skip_whitespace (str);
1659
c19d1205 1660 another_range = 0;
a737bd4d 1661
c19d1205
ZW
1662 if (*str == '{')
1663 {
1664 int in_range = 0;
1665 int cur_reg = -1;
a737bd4d 1666
c19d1205
ZW
1667 str++;
1668 do
1669 {
1670 int reg;
6057a28f 1671
dcbf9037 1672 if ((reg = arm_reg_parse (&str, REG_TYPE_RN)) == FAIL)
c19d1205 1673 {
dcbf9037 1674 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
c19d1205
ZW
1675 return FAIL;
1676 }
a737bd4d 1677
c19d1205
ZW
1678 if (in_range)
1679 {
1680 int i;
a737bd4d 1681
c19d1205
ZW
1682 if (reg <= cur_reg)
1683 {
dcbf9037 1684 first_error (_("bad range in register list"));
c19d1205
ZW
1685 return FAIL;
1686 }
40a18ebd 1687
c19d1205
ZW
1688 for (i = cur_reg + 1; i < reg; i++)
1689 {
1690 if (range & (1 << i))
1691 as_tsktsk
1692 (_("Warning: duplicated register (r%d) in register list"),
1693 i);
1694 else
1695 range |= 1 << i;
1696 }
1697 in_range = 0;
1698 }
a737bd4d 1699
c19d1205
ZW
1700 if (range & (1 << reg))
1701 as_tsktsk (_("Warning: duplicated register (r%d) in register list"),
1702 reg);
1703 else if (reg <= cur_reg)
1704 as_tsktsk (_("Warning: register range not in ascending order"));
a737bd4d 1705
c19d1205
ZW
1706 range |= 1 << reg;
1707 cur_reg = reg;
1708 }
1709 while (skip_past_comma (&str) != FAIL
1710 || (in_range = 1, *str++ == '-'));
1711 str--;
a737bd4d 1712
d996d970 1713 if (skip_past_char (&str, '}') == FAIL)
c19d1205 1714 {
dcbf9037 1715 first_error (_("missing `}'"));
c19d1205
ZW
1716 return FAIL;
1717 }
1718 }
1719 else
1720 {
91d6fa6a 1721 expressionS exp;
40a18ebd 1722
91d6fa6a 1723 if (my_get_expression (&exp, &str, GE_NO_PREFIX))
c19d1205 1724 return FAIL;
40a18ebd 1725
91d6fa6a 1726 if (exp.X_op == O_constant)
c19d1205 1727 {
91d6fa6a
NC
1728 if (exp.X_add_number
1729 != (exp.X_add_number & 0x0000ffff))
c19d1205
ZW
1730 {
1731 inst.error = _("invalid register mask");
1732 return FAIL;
1733 }
a737bd4d 1734
91d6fa6a 1735 if ((range & exp.X_add_number) != 0)
c19d1205 1736 {
91d6fa6a 1737 int regno = range & exp.X_add_number;
a737bd4d 1738
c19d1205
ZW
1739 regno &= -regno;
1740 regno = (1 << regno) - 1;
1741 as_tsktsk
1742 (_("Warning: duplicated register (r%d) in register list"),
1743 regno);
1744 }
a737bd4d 1745
91d6fa6a 1746 range |= exp.X_add_number;
c19d1205
ZW
1747 }
1748 else
1749 {
1750 if (inst.reloc.type != 0)
1751 {
1752 inst.error = _("expression too complex");
1753 return FAIL;
1754 }
a737bd4d 1755
91d6fa6a 1756 memcpy (&inst.reloc.exp, &exp, sizeof (expressionS));
c19d1205
ZW
1757 inst.reloc.type = BFD_RELOC_ARM_MULTI;
1758 inst.reloc.pc_rel = 0;
1759 }
1760 }
a737bd4d 1761
c19d1205
ZW
1762 if (*str == '|' || *str == '+')
1763 {
1764 str++;
1765 another_range = 1;
1766 }
a737bd4d 1767 }
c19d1205 1768 while (another_range);
a737bd4d 1769
c19d1205
ZW
1770 *strp = str;
1771 return range;
a737bd4d
NC
1772}
1773
5287ad62
JB
1774/* Types of registers in a list. */
1775
1776enum reg_list_els
1777{
1778 REGLIST_VFP_S,
1779 REGLIST_VFP_D,
1780 REGLIST_NEON_D
1781};
1782
c19d1205
ZW
1783/* Parse a VFP register list. If the string is invalid return FAIL.
1784 Otherwise return the number of registers, and set PBASE to the first
5287ad62
JB
1785 register. Parses registers of type ETYPE.
1786 If REGLIST_NEON_D is used, several syntax enhancements are enabled:
1787 - Q registers can be used to specify pairs of D registers
1788 - { } can be omitted from around a singleton register list
477330fc
RM
1789 FIXME: This is not implemented, as it would require backtracking in
1790 some cases, e.g.:
1791 vtbl.8 d3,d4,d5
1792 This could be done (the meaning isn't really ambiguous), but doesn't
1793 fit in well with the current parsing framework.
dcbf9037
JB
1794 - 32 D registers may be used (also true for VFPv3).
1795 FIXME: Types are ignored in these register lists, which is probably a
1796 bug. */
6057a28f 1797
c19d1205 1798static int
037e8744 1799parse_vfp_reg_list (char **ccp, unsigned int *pbase, enum reg_list_els etype)
6057a28f 1800{
037e8744 1801 char *str = *ccp;
c19d1205
ZW
1802 int base_reg;
1803 int new_base;
21d799b5 1804 enum arm_reg_type regtype = (enum arm_reg_type) 0;
5287ad62 1805 int max_regs = 0;
c19d1205
ZW
1806 int count = 0;
1807 int warned = 0;
1808 unsigned long mask = 0;
a737bd4d 1809 int i;
6057a28f 1810
477330fc 1811 if (skip_past_char (&str, '{') == FAIL)
5287ad62
JB
1812 {
1813 inst.error = _("expecting {");
1814 return FAIL;
1815 }
6057a28f 1816
5287ad62 1817 switch (etype)
c19d1205 1818 {
5287ad62 1819 case REGLIST_VFP_S:
c19d1205
ZW
1820 regtype = REG_TYPE_VFS;
1821 max_regs = 32;
5287ad62 1822 break;
5f4273c7 1823
5287ad62
JB
1824 case REGLIST_VFP_D:
1825 regtype = REG_TYPE_VFD;
b7fc2769 1826 break;
5f4273c7 1827
b7fc2769
JB
1828 case REGLIST_NEON_D:
1829 regtype = REG_TYPE_NDQ;
1830 break;
1831 }
1832
1833 if (etype != REGLIST_VFP_S)
1834 {
b1cc4aeb
PB
1835 /* VFPv3 allows 32 D registers, except for the VFPv3-D16 variant. */
1836 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
1837 {
1838 max_regs = 32;
1839 if (thumb_mode)
1840 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
1841 fpu_vfp_ext_d32);
1842 else
1843 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
1844 fpu_vfp_ext_d32);
1845 }
5287ad62 1846 else
477330fc 1847 max_regs = 16;
c19d1205 1848 }
6057a28f 1849
c19d1205 1850 base_reg = max_regs;
a737bd4d 1851
c19d1205
ZW
1852 do
1853 {
5287ad62 1854 int setmask = 1, addregs = 1;
dcbf9037 1855
037e8744 1856 new_base = arm_typed_reg_parse (&str, regtype, &regtype, NULL);
dcbf9037 1857
c19d1205 1858 if (new_base == FAIL)
a737bd4d 1859 {
dcbf9037 1860 first_error (_(reg_expected_msgs[regtype]));
c19d1205
ZW
1861 return FAIL;
1862 }
5f4273c7 1863
b7fc2769 1864 if (new_base >= max_regs)
477330fc
RM
1865 {
1866 first_error (_("register out of range in list"));
1867 return FAIL;
1868 }
5f4273c7 1869
5287ad62
JB
1870 /* Note: a value of 2 * n is returned for the register Q<n>. */
1871 if (regtype == REG_TYPE_NQ)
477330fc
RM
1872 {
1873 setmask = 3;
1874 addregs = 2;
1875 }
5287ad62 1876
c19d1205
ZW
1877 if (new_base < base_reg)
1878 base_reg = new_base;
a737bd4d 1879
5287ad62 1880 if (mask & (setmask << new_base))
c19d1205 1881 {
dcbf9037 1882 first_error (_("invalid register list"));
c19d1205 1883 return FAIL;
a737bd4d 1884 }
a737bd4d 1885
c19d1205
ZW
1886 if ((mask >> new_base) != 0 && ! warned)
1887 {
1888 as_tsktsk (_("register list not in ascending order"));
1889 warned = 1;
1890 }
0bbf2aa4 1891
5287ad62
JB
1892 mask |= setmask << new_base;
1893 count += addregs;
0bbf2aa4 1894
037e8744 1895 if (*str == '-') /* We have the start of a range expression */
c19d1205
ZW
1896 {
1897 int high_range;
0bbf2aa4 1898
037e8744 1899 str++;
0bbf2aa4 1900
037e8744 1901 if ((high_range = arm_typed_reg_parse (&str, regtype, NULL, NULL))
477330fc 1902 == FAIL)
c19d1205
ZW
1903 {
1904 inst.error = gettext (reg_expected_msgs[regtype]);
1905 return FAIL;
1906 }
0bbf2aa4 1907
477330fc
RM
1908 if (high_range >= max_regs)
1909 {
1910 first_error (_("register out of range in list"));
1911 return FAIL;
1912 }
b7fc2769 1913
477330fc
RM
1914 if (regtype == REG_TYPE_NQ)
1915 high_range = high_range + 1;
5287ad62 1916
c19d1205
ZW
1917 if (high_range <= new_base)
1918 {
1919 inst.error = _("register range not in ascending order");
1920 return FAIL;
1921 }
0bbf2aa4 1922
5287ad62 1923 for (new_base += addregs; new_base <= high_range; new_base += addregs)
0bbf2aa4 1924 {
5287ad62 1925 if (mask & (setmask << new_base))
0bbf2aa4 1926 {
c19d1205
ZW
1927 inst.error = _("invalid register list");
1928 return FAIL;
0bbf2aa4 1929 }
c19d1205 1930
5287ad62
JB
1931 mask |= setmask << new_base;
1932 count += addregs;
0bbf2aa4 1933 }
0bbf2aa4 1934 }
0bbf2aa4 1935 }
037e8744 1936 while (skip_past_comma (&str) != FAIL);
0bbf2aa4 1937
037e8744 1938 str++;
0bbf2aa4 1939
c19d1205
ZW
1940 /* Sanity check -- should have raised a parse error above. */
1941 if (count == 0 || count > max_regs)
1942 abort ();
1943
1944 *pbase = base_reg;
1945
1946 /* Final test -- the registers must be consecutive. */
1947 mask >>= base_reg;
1948 for (i = 0; i < count; i++)
1949 {
1950 if ((mask & (1u << i)) == 0)
1951 {
1952 inst.error = _("non-contiguous register range");
1953 return FAIL;
1954 }
1955 }
1956
037e8744
JB
1957 *ccp = str;
1958
c19d1205 1959 return count;
b99bd4ef
NC
1960}
1961
dcbf9037
JB
1962/* True if two alias types are the same. */
1963
c921be7d 1964static bfd_boolean
dcbf9037
JB
1965neon_alias_types_same (struct neon_typed_alias *a, struct neon_typed_alias *b)
1966{
1967 if (!a && !b)
c921be7d 1968 return TRUE;
5f4273c7 1969
dcbf9037 1970 if (!a || !b)
c921be7d 1971 return FALSE;
dcbf9037
JB
1972
1973 if (a->defined != b->defined)
c921be7d 1974 return FALSE;
5f4273c7 1975
dcbf9037
JB
1976 if ((a->defined & NTA_HASTYPE) != 0
1977 && (a->eltype.type != b->eltype.type
477330fc 1978 || a->eltype.size != b->eltype.size))
c921be7d 1979 return FALSE;
dcbf9037
JB
1980
1981 if ((a->defined & NTA_HASINDEX) != 0
1982 && (a->index != b->index))
c921be7d 1983 return FALSE;
5f4273c7 1984
c921be7d 1985 return TRUE;
dcbf9037
JB
1986}
1987
5287ad62
JB
1988/* Parse element/structure lists for Neon VLD<n> and VST<n> instructions.
1989 The base register is put in *PBASE.
dcbf9037 1990 The lane (or one of the NEON_*_LANES constants) is placed in bits [3:0] of
5287ad62
JB
1991 the return value.
1992 The register stride (minus one) is put in bit 4 of the return value.
dcbf9037
JB
1993 Bits [6:5] encode the list length (minus one).
1994 The type of the list elements is put in *ELTYPE, if non-NULL. */
5287ad62 1995
5287ad62 1996#define NEON_LANE(X) ((X) & 0xf)
dcbf9037 1997#define NEON_REG_STRIDE(X) ((((X) >> 4) & 1) + 1)
5287ad62
JB
1998#define NEON_REGLIST_LENGTH(X) ((((X) >> 5) & 3) + 1)
1999
2000static int
dcbf9037 2001parse_neon_el_struct_list (char **str, unsigned *pbase,
477330fc 2002 struct neon_type_el *eltype)
5287ad62
JB
2003{
2004 char *ptr = *str;
2005 int base_reg = -1;
2006 int reg_incr = -1;
2007 int count = 0;
2008 int lane = -1;
2009 int leading_brace = 0;
2010 enum arm_reg_type rtype = REG_TYPE_NDQ;
20203fb9
NC
2011 const char *const incr_error = _("register stride must be 1 or 2");
2012 const char *const type_error = _("mismatched element/structure types in list");
dcbf9037 2013 struct neon_typed_alias firsttype;
f85d59c3
KT
2014 firsttype.defined = 0;
2015 firsttype.eltype.type = NT_invtype;
2016 firsttype.eltype.size = -1;
2017 firsttype.index = -1;
5f4273c7 2018
5287ad62
JB
2019 if (skip_past_char (&ptr, '{') == SUCCESS)
2020 leading_brace = 1;
5f4273c7 2021
5287ad62
JB
2022 do
2023 {
dcbf9037
JB
2024 struct neon_typed_alias atype;
2025 int getreg = parse_typed_reg_or_scalar (&ptr, rtype, &rtype, &atype);
2026
5287ad62 2027 if (getreg == FAIL)
477330fc
RM
2028 {
2029 first_error (_(reg_expected_msgs[rtype]));
2030 return FAIL;
2031 }
5f4273c7 2032
5287ad62 2033 if (base_reg == -1)
477330fc
RM
2034 {
2035 base_reg = getreg;
2036 if (rtype == REG_TYPE_NQ)
2037 {
2038 reg_incr = 1;
2039 }
2040 firsttype = atype;
2041 }
5287ad62 2042 else if (reg_incr == -1)
477330fc
RM
2043 {
2044 reg_incr = getreg - base_reg;
2045 if (reg_incr < 1 || reg_incr > 2)
2046 {
2047 first_error (_(incr_error));
2048 return FAIL;
2049 }
2050 }
5287ad62 2051 else if (getreg != base_reg + reg_incr * count)
477330fc
RM
2052 {
2053 first_error (_(incr_error));
2054 return FAIL;
2055 }
dcbf9037 2056
c921be7d 2057 if (! neon_alias_types_same (&atype, &firsttype))
477330fc
RM
2058 {
2059 first_error (_(type_error));
2060 return FAIL;
2061 }
5f4273c7 2062
5287ad62 2063 /* Handle Dn-Dm or Qn-Qm syntax. Can only be used with non-indexed list
477330fc 2064 modes. */
5287ad62 2065 if (ptr[0] == '-')
477330fc
RM
2066 {
2067 struct neon_typed_alias htype;
2068 int hireg, dregs = (rtype == REG_TYPE_NQ) ? 2 : 1;
2069 if (lane == -1)
2070 lane = NEON_INTERLEAVE_LANES;
2071 else if (lane != NEON_INTERLEAVE_LANES)
2072 {
2073 first_error (_(type_error));
2074 return FAIL;
2075 }
2076 if (reg_incr == -1)
2077 reg_incr = 1;
2078 else if (reg_incr != 1)
2079 {
2080 first_error (_("don't use Rn-Rm syntax with non-unit stride"));
2081 return FAIL;
2082 }
2083 ptr++;
2084 hireg = parse_typed_reg_or_scalar (&ptr, rtype, NULL, &htype);
2085 if (hireg == FAIL)
2086 {
2087 first_error (_(reg_expected_msgs[rtype]));
2088 return FAIL;
2089 }
2090 if (! neon_alias_types_same (&htype, &firsttype))
2091 {
2092 first_error (_(type_error));
2093 return FAIL;
2094 }
2095 count += hireg + dregs - getreg;
2096 continue;
2097 }
5f4273c7 2098
5287ad62
JB
2099 /* If we're using Q registers, we can't use [] or [n] syntax. */
2100 if (rtype == REG_TYPE_NQ)
477330fc
RM
2101 {
2102 count += 2;
2103 continue;
2104 }
5f4273c7 2105
dcbf9037 2106 if ((atype.defined & NTA_HASINDEX) != 0)
477330fc
RM
2107 {
2108 if (lane == -1)
2109 lane = atype.index;
2110 else if (lane != atype.index)
2111 {
2112 first_error (_(type_error));
2113 return FAIL;
2114 }
2115 }
5287ad62 2116 else if (lane == -1)
477330fc 2117 lane = NEON_INTERLEAVE_LANES;
5287ad62 2118 else if (lane != NEON_INTERLEAVE_LANES)
477330fc
RM
2119 {
2120 first_error (_(type_error));
2121 return FAIL;
2122 }
5287ad62
JB
2123 count++;
2124 }
2125 while ((count != 1 || leading_brace) && skip_past_comma (&ptr) != FAIL);
5f4273c7 2126
5287ad62
JB
2127 /* No lane set by [x]. We must be interleaving structures. */
2128 if (lane == -1)
2129 lane = NEON_INTERLEAVE_LANES;
5f4273c7 2130
5287ad62
JB
2131 /* Sanity check. */
2132 if (lane == -1 || base_reg == -1 || count < 1 || count > 4
2133 || (count > 1 && reg_incr == -1))
2134 {
dcbf9037 2135 first_error (_("error parsing element/structure list"));
5287ad62
JB
2136 return FAIL;
2137 }
2138
2139 if ((count > 1 || leading_brace) && skip_past_char (&ptr, '}') == FAIL)
2140 {
dcbf9037 2141 first_error (_("expected }"));
5287ad62
JB
2142 return FAIL;
2143 }
5f4273c7 2144
5287ad62
JB
2145 if (reg_incr == -1)
2146 reg_incr = 1;
2147
dcbf9037
JB
2148 if (eltype)
2149 *eltype = firsttype.eltype;
2150
5287ad62
JB
2151 *pbase = base_reg;
2152 *str = ptr;
5f4273c7 2153
5287ad62
JB
2154 return lane | ((reg_incr - 1) << 4) | ((count - 1) << 5);
2155}
2156
c19d1205
ZW
2157/* Parse an explicit relocation suffix on an expression. This is
2158 either nothing, or a word in parentheses. Note that if !OBJ_ELF,
2159 arm_reloc_hsh contains no entries, so this function can only
2160 succeed if there is no () after the word. Returns -1 on error,
2161 BFD_RELOC_UNUSED if there wasn't any suffix. */
3da1d841 2162
c19d1205
ZW
2163static int
2164parse_reloc (char **str)
b99bd4ef 2165{
c19d1205
ZW
2166 struct reloc_entry *r;
2167 char *p, *q;
b99bd4ef 2168
c19d1205
ZW
2169 if (**str != '(')
2170 return BFD_RELOC_UNUSED;
b99bd4ef 2171
c19d1205
ZW
2172 p = *str + 1;
2173 q = p;
2174
2175 while (*q && *q != ')' && *q != ',')
2176 q++;
2177 if (*q != ')')
2178 return -1;
2179
21d799b5
NC
2180 if ((r = (struct reloc_entry *)
2181 hash_find_n (arm_reloc_hsh, p, q - p)) == NULL)
c19d1205
ZW
2182 return -1;
2183
2184 *str = q + 1;
2185 return r->reloc;
b99bd4ef
NC
2186}
2187
c19d1205
ZW
2188/* Directives: register aliases. */
2189
dcbf9037 2190static struct reg_entry *
90ec0d68 2191insert_reg_alias (char *str, unsigned number, int type)
b99bd4ef 2192{
d3ce72d0 2193 struct reg_entry *new_reg;
c19d1205 2194 const char *name;
b99bd4ef 2195
d3ce72d0 2196 if ((new_reg = (struct reg_entry *) hash_find (arm_reg_hsh, str)) != 0)
c19d1205 2197 {
d3ce72d0 2198 if (new_reg->builtin)
c19d1205 2199 as_warn (_("ignoring attempt to redefine built-in register '%s'"), str);
b99bd4ef 2200
c19d1205
ZW
2201 /* Only warn about a redefinition if it's not defined as the
2202 same register. */
d3ce72d0 2203 else if (new_reg->number != number || new_reg->type != type)
c19d1205 2204 as_warn (_("ignoring redefinition of register alias '%s'"), str);
69b97547 2205
d929913e 2206 return NULL;
c19d1205 2207 }
b99bd4ef 2208
c19d1205 2209 name = xstrdup (str);
325801bd 2210 new_reg = XNEW (struct reg_entry);
b99bd4ef 2211
d3ce72d0
NC
2212 new_reg->name = name;
2213 new_reg->number = number;
2214 new_reg->type = type;
2215 new_reg->builtin = FALSE;
2216 new_reg->neon = NULL;
b99bd4ef 2217
d3ce72d0 2218 if (hash_insert (arm_reg_hsh, name, (void *) new_reg))
c19d1205 2219 abort ();
5f4273c7 2220
d3ce72d0 2221 return new_reg;
dcbf9037
JB
2222}
2223
2224static void
2225insert_neon_reg_alias (char *str, int number, int type,
477330fc 2226 struct neon_typed_alias *atype)
dcbf9037
JB
2227{
2228 struct reg_entry *reg = insert_reg_alias (str, number, type);
5f4273c7 2229
dcbf9037
JB
2230 if (!reg)
2231 {
2232 first_error (_("attempt to redefine typed alias"));
2233 return;
2234 }
5f4273c7 2235
dcbf9037
JB
2236 if (atype)
2237 {
325801bd 2238 reg->neon = XNEW (struct neon_typed_alias);
dcbf9037
JB
2239 *reg->neon = *atype;
2240 }
c19d1205 2241}
b99bd4ef 2242
c19d1205 2243/* Look for the .req directive. This is of the form:
b99bd4ef 2244
c19d1205 2245 new_register_name .req existing_register_name
b99bd4ef 2246
c19d1205 2247 If we find one, or if it looks sufficiently like one that we want to
d929913e 2248 handle any error here, return TRUE. Otherwise return FALSE. */
b99bd4ef 2249
d929913e 2250static bfd_boolean
c19d1205
ZW
2251create_register_alias (char * newname, char *p)
2252{
2253 struct reg_entry *old;
2254 char *oldname, *nbuf;
2255 size_t nlen;
b99bd4ef 2256
c19d1205
ZW
2257 /* The input scrubber ensures that whitespace after the mnemonic is
2258 collapsed to single spaces. */
2259 oldname = p;
2260 if (strncmp (oldname, " .req ", 6) != 0)
d929913e 2261 return FALSE;
b99bd4ef 2262
c19d1205
ZW
2263 oldname += 6;
2264 if (*oldname == '\0')
d929913e 2265 return FALSE;
b99bd4ef 2266
21d799b5 2267 old = (struct reg_entry *) hash_find (arm_reg_hsh, oldname);
c19d1205 2268 if (!old)
b99bd4ef 2269 {
c19d1205 2270 as_warn (_("unknown register '%s' -- .req ignored"), oldname);
d929913e 2271 return TRUE;
b99bd4ef
NC
2272 }
2273
c19d1205
ZW
2274 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2275 the desired alias name, and p points to its end. If not, then
2276 the desired alias name is in the global original_case_string. */
2277#ifdef TC_CASE_SENSITIVE
2278 nlen = p - newname;
2279#else
2280 newname = original_case_string;
2281 nlen = strlen (newname);
2282#endif
b99bd4ef 2283
29a2809e 2284 nbuf = xmemdup0 (newname, nlen);
b99bd4ef 2285
c19d1205
ZW
2286 /* Create aliases under the new name as stated; an all-lowercase
2287 version of the new name; and an all-uppercase version of the new
2288 name. */
d929913e
NC
2289 if (insert_reg_alias (nbuf, old->number, old->type) != NULL)
2290 {
2291 for (p = nbuf; *p; p++)
2292 *p = TOUPPER (*p);
c19d1205 2293
d929913e
NC
2294 if (strncmp (nbuf, newname, nlen))
2295 {
2296 /* If this attempt to create an additional alias fails, do not bother
2297 trying to create the all-lower case alias. We will fail and issue
2298 a second, duplicate error message. This situation arises when the
2299 programmer does something like:
2300 foo .req r0
2301 Foo .req r1
2302 The second .req creates the "Foo" alias but then fails to create
5f4273c7 2303 the artificial FOO alias because it has already been created by the
d929913e
NC
2304 first .req. */
2305 if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
e1fa0163
NC
2306 {
2307 free (nbuf);
2308 return TRUE;
2309 }
d929913e 2310 }
c19d1205 2311
d929913e
NC
2312 for (p = nbuf; *p; p++)
2313 *p = TOLOWER (*p);
c19d1205 2314
d929913e
NC
2315 if (strncmp (nbuf, newname, nlen))
2316 insert_reg_alias (nbuf, old->number, old->type);
2317 }
c19d1205 2318
e1fa0163 2319 free (nbuf);
d929913e 2320 return TRUE;
b99bd4ef
NC
2321}
2322
dcbf9037
JB
2323/* Create a Neon typed/indexed register alias using directives, e.g.:
2324 X .dn d5.s32[1]
2325 Y .qn 6.s16
2326 Z .dn d7
2327 T .dn Z[0]
2328 These typed registers can be used instead of the types specified after the
2329 Neon mnemonic, so long as all operands given have types. Types can also be
2330 specified directly, e.g.:
5f4273c7 2331 vadd d0.s32, d1.s32, d2.s32 */
dcbf9037 2332
c921be7d 2333static bfd_boolean
dcbf9037
JB
2334create_neon_reg_alias (char *newname, char *p)
2335{
2336 enum arm_reg_type basetype;
2337 struct reg_entry *basereg;
2338 struct reg_entry mybasereg;
2339 struct neon_type ntype;
2340 struct neon_typed_alias typeinfo;
12d6b0b7 2341 char *namebuf, *nameend ATTRIBUTE_UNUSED;
dcbf9037 2342 int namelen;
5f4273c7 2343
dcbf9037
JB
2344 typeinfo.defined = 0;
2345 typeinfo.eltype.type = NT_invtype;
2346 typeinfo.eltype.size = -1;
2347 typeinfo.index = -1;
5f4273c7 2348
dcbf9037 2349 nameend = p;
5f4273c7 2350
dcbf9037
JB
2351 if (strncmp (p, " .dn ", 5) == 0)
2352 basetype = REG_TYPE_VFD;
2353 else if (strncmp (p, " .qn ", 5) == 0)
2354 basetype = REG_TYPE_NQ;
2355 else
c921be7d 2356 return FALSE;
5f4273c7 2357
dcbf9037 2358 p += 5;
5f4273c7 2359
dcbf9037 2360 if (*p == '\0')
c921be7d 2361 return FALSE;
5f4273c7 2362
dcbf9037
JB
2363 basereg = arm_reg_parse_multi (&p);
2364
2365 if (basereg && basereg->type != basetype)
2366 {
2367 as_bad (_("bad type for register"));
c921be7d 2368 return FALSE;
dcbf9037
JB
2369 }
2370
2371 if (basereg == NULL)
2372 {
2373 expressionS exp;
2374 /* Try parsing as an integer. */
2375 my_get_expression (&exp, &p, GE_NO_PREFIX);
2376 if (exp.X_op != O_constant)
477330fc
RM
2377 {
2378 as_bad (_("expression must be constant"));
2379 return FALSE;
2380 }
dcbf9037
JB
2381 basereg = &mybasereg;
2382 basereg->number = (basetype == REG_TYPE_NQ) ? exp.X_add_number * 2
477330fc 2383 : exp.X_add_number;
dcbf9037
JB
2384 basereg->neon = 0;
2385 }
2386
2387 if (basereg->neon)
2388 typeinfo = *basereg->neon;
2389
2390 if (parse_neon_type (&ntype, &p) == SUCCESS)
2391 {
2392 /* We got a type. */
2393 if (typeinfo.defined & NTA_HASTYPE)
477330fc
RM
2394 {
2395 as_bad (_("can't redefine the type of a register alias"));
2396 return FALSE;
2397 }
5f4273c7 2398
dcbf9037
JB
2399 typeinfo.defined |= NTA_HASTYPE;
2400 if (ntype.elems != 1)
477330fc
RM
2401 {
2402 as_bad (_("you must specify a single type only"));
2403 return FALSE;
2404 }
dcbf9037
JB
2405 typeinfo.eltype = ntype.el[0];
2406 }
5f4273c7 2407
dcbf9037
JB
2408 if (skip_past_char (&p, '[') == SUCCESS)
2409 {
2410 expressionS exp;
2411 /* We got a scalar index. */
5f4273c7 2412
dcbf9037 2413 if (typeinfo.defined & NTA_HASINDEX)
477330fc
RM
2414 {
2415 as_bad (_("can't redefine the index of a scalar alias"));
2416 return FALSE;
2417 }
5f4273c7 2418
dcbf9037 2419 my_get_expression (&exp, &p, GE_NO_PREFIX);
5f4273c7 2420
dcbf9037 2421 if (exp.X_op != O_constant)
477330fc
RM
2422 {
2423 as_bad (_("scalar index must be constant"));
2424 return FALSE;
2425 }
5f4273c7 2426
dcbf9037
JB
2427 typeinfo.defined |= NTA_HASINDEX;
2428 typeinfo.index = exp.X_add_number;
5f4273c7 2429
dcbf9037 2430 if (skip_past_char (&p, ']') == FAIL)
477330fc
RM
2431 {
2432 as_bad (_("expecting ]"));
2433 return FALSE;
2434 }
dcbf9037
JB
2435 }
2436
15735687
NS
2437 /* If TC_CASE_SENSITIVE is defined, then newname already points to
2438 the desired alias name, and p points to its end. If not, then
2439 the desired alias name is in the global original_case_string. */
2440#ifdef TC_CASE_SENSITIVE
dcbf9037 2441 namelen = nameend - newname;
15735687
NS
2442#else
2443 newname = original_case_string;
2444 namelen = strlen (newname);
2445#endif
2446
29a2809e 2447 namebuf = xmemdup0 (newname, namelen);
5f4273c7 2448
dcbf9037 2449 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2450 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2451
dcbf9037
JB
2452 /* Insert name in all uppercase. */
2453 for (p = namebuf; *p; p++)
2454 *p = TOUPPER (*p);
5f4273c7 2455
dcbf9037
JB
2456 if (strncmp (namebuf, newname, namelen))
2457 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2458 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2459
dcbf9037
JB
2460 /* Insert name in all lowercase. */
2461 for (p = namebuf; *p; p++)
2462 *p = TOLOWER (*p);
5f4273c7 2463
dcbf9037
JB
2464 if (strncmp (namebuf, newname, namelen))
2465 insert_neon_reg_alias (namebuf, basereg->number, basetype,
477330fc 2466 typeinfo.defined != 0 ? &typeinfo : NULL);
5f4273c7 2467
e1fa0163 2468 free (namebuf);
c921be7d 2469 return TRUE;
dcbf9037
JB
2470}
2471
c19d1205
ZW
2472/* Should never be called, as .req goes between the alias and the
2473 register name, not at the beginning of the line. */
c921be7d 2474
b99bd4ef 2475static void
c19d1205 2476s_req (int a ATTRIBUTE_UNUSED)
b99bd4ef 2477{
c19d1205
ZW
2478 as_bad (_("invalid syntax for .req directive"));
2479}
b99bd4ef 2480
dcbf9037
JB
2481static void
2482s_dn (int a ATTRIBUTE_UNUSED)
2483{
2484 as_bad (_("invalid syntax for .dn directive"));
2485}
2486
2487static void
2488s_qn (int a ATTRIBUTE_UNUSED)
2489{
2490 as_bad (_("invalid syntax for .qn directive"));
2491}
2492
c19d1205
ZW
2493/* The .unreq directive deletes an alias which was previously defined
2494 by .req. For example:
b99bd4ef 2495
c19d1205
ZW
2496 my_alias .req r11
2497 .unreq my_alias */
b99bd4ef
NC
2498
2499static void
c19d1205 2500s_unreq (int a ATTRIBUTE_UNUSED)
b99bd4ef 2501{
c19d1205
ZW
2502 char * name;
2503 char saved_char;
b99bd4ef 2504
c19d1205
ZW
2505 name = input_line_pointer;
2506
2507 while (*input_line_pointer != 0
2508 && *input_line_pointer != ' '
2509 && *input_line_pointer != '\n')
2510 ++input_line_pointer;
2511
2512 saved_char = *input_line_pointer;
2513 *input_line_pointer = 0;
2514
2515 if (!*name)
2516 as_bad (_("invalid syntax for .unreq directive"));
2517 else
2518 {
21d799b5 2519 struct reg_entry *reg = (struct reg_entry *) hash_find (arm_reg_hsh,
477330fc 2520 name);
c19d1205
ZW
2521
2522 if (!reg)
2523 as_bad (_("unknown register alias '%s'"), name);
2524 else if (reg->builtin)
a1727c1a 2525 as_warn (_("ignoring attempt to use .unreq on fixed register name: '%s'"),
c19d1205
ZW
2526 name);
2527 else
2528 {
d929913e
NC
2529 char * p;
2530 char * nbuf;
2531
db0bc284 2532 hash_delete (arm_reg_hsh, name, FALSE);
c19d1205 2533 free ((char *) reg->name);
477330fc
RM
2534 if (reg->neon)
2535 free (reg->neon);
c19d1205 2536 free (reg);
d929913e
NC
2537
2538 /* Also locate the all upper case and all lower case versions.
2539 Do not complain if we cannot find one or the other as it
2540 was probably deleted above. */
5f4273c7 2541
d929913e
NC
2542 nbuf = strdup (name);
2543 for (p = nbuf; *p; p++)
2544 *p = TOUPPER (*p);
21d799b5 2545 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2546 if (reg)
2547 {
db0bc284 2548 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2549 free ((char *) reg->name);
2550 if (reg->neon)
2551 free (reg->neon);
2552 free (reg);
2553 }
2554
2555 for (p = nbuf; *p; p++)
2556 *p = TOLOWER (*p);
21d799b5 2557 reg = (struct reg_entry *) hash_find (arm_reg_hsh, nbuf);
d929913e
NC
2558 if (reg)
2559 {
db0bc284 2560 hash_delete (arm_reg_hsh, nbuf, FALSE);
d929913e
NC
2561 free ((char *) reg->name);
2562 if (reg->neon)
2563 free (reg->neon);
2564 free (reg);
2565 }
2566
2567 free (nbuf);
c19d1205
ZW
2568 }
2569 }
b99bd4ef 2570
c19d1205 2571 *input_line_pointer = saved_char;
b99bd4ef
NC
2572 demand_empty_rest_of_line ();
2573}
2574
c19d1205
ZW
2575/* Directives: Instruction set selection. */
2576
2577#ifdef OBJ_ELF
2578/* This code is to handle mapping symbols as defined in the ARM ELF spec.
2579 (See "Mapping symbols", section 4.5.5, ARM AAELF version 1.0).
2580 Note that previously, $a and $t has type STT_FUNC (BSF_OBJECT flag),
2581 and $d has type STT_OBJECT (BSF_OBJECT flag). Now all three are untyped. */
2582
cd000bff
DJ
2583/* Create a new mapping symbol for the transition to STATE. */
2584
2585static void
2586make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
b99bd4ef 2587{
a737bd4d 2588 symbolS * symbolP;
c19d1205
ZW
2589 const char * symname;
2590 int type;
b99bd4ef 2591
c19d1205 2592 switch (state)
b99bd4ef 2593 {
c19d1205
ZW
2594 case MAP_DATA:
2595 symname = "$d";
2596 type = BSF_NO_FLAGS;
2597 break;
2598 case MAP_ARM:
2599 symname = "$a";
2600 type = BSF_NO_FLAGS;
2601 break;
2602 case MAP_THUMB:
2603 symname = "$t";
2604 type = BSF_NO_FLAGS;
2605 break;
c19d1205
ZW
2606 default:
2607 abort ();
2608 }
2609
cd000bff 2610 symbolP = symbol_new (symname, now_seg, value, frag);
c19d1205
ZW
2611 symbol_get_bfdsym (symbolP)->flags |= type | BSF_LOCAL;
2612
2613 switch (state)
2614 {
2615 case MAP_ARM:
2616 THUMB_SET_FUNC (symbolP, 0);
2617 ARM_SET_THUMB (symbolP, 0);
2618 ARM_SET_INTERWORK (symbolP, support_interwork);
2619 break;
2620
2621 case MAP_THUMB:
2622 THUMB_SET_FUNC (symbolP, 1);
2623 ARM_SET_THUMB (symbolP, 1);
2624 ARM_SET_INTERWORK (symbolP, support_interwork);
2625 break;
2626
2627 case MAP_DATA:
2628 default:
cd000bff
DJ
2629 break;
2630 }
2631
2632 /* Save the mapping symbols for future reference. Also check that
2633 we do not place two mapping symbols at the same offset within a
2634 frag. We'll handle overlap between frags in
2de7820f
JZ
2635 check_mapping_symbols.
2636
2637 If .fill or other data filling directive generates zero sized data,
2638 the mapping symbol for the following code will have the same value
2639 as the one generated for the data filling directive. In this case,
2640 we replace the old symbol with the new one at the same address. */
cd000bff
DJ
2641 if (value == 0)
2642 {
2de7820f
JZ
2643 if (frag->tc_frag_data.first_map != NULL)
2644 {
2645 know (S_GET_VALUE (frag->tc_frag_data.first_map) == 0);
2646 symbol_remove (frag->tc_frag_data.first_map, &symbol_rootP, &symbol_lastP);
2647 }
cd000bff
DJ
2648 frag->tc_frag_data.first_map = symbolP;
2649 }
2650 if (frag->tc_frag_data.last_map != NULL)
0f020cef
JZ
2651 {
2652 know (S_GET_VALUE (frag->tc_frag_data.last_map) <= S_GET_VALUE (symbolP));
0f020cef
JZ
2653 if (S_GET_VALUE (frag->tc_frag_data.last_map) == S_GET_VALUE (symbolP))
2654 symbol_remove (frag->tc_frag_data.last_map, &symbol_rootP, &symbol_lastP);
2655 }
cd000bff
DJ
2656 frag->tc_frag_data.last_map = symbolP;
2657}
2658
2659/* We must sometimes convert a region marked as code to data during
2660 code alignment, if an odd number of bytes have to be padded. The
2661 code mapping symbol is pushed to an aligned address. */
2662
2663static void
2664insert_data_mapping_symbol (enum mstate state,
2665 valueT value, fragS *frag, offsetT bytes)
2666{
2667 /* If there was already a mapping symbol, remove it. */
2668 if (frag->tc_frag_data.last_map != NULL
2669 && S_GET_VALUE (frag->tc_frag_data.last_map) == frag->fr_address + value)
2670 {
2671 symbolS *symp = frag->tc_frag_data.last_map;
2672
2673 if (value == 0)
2674 {
2675 know (frag->tc_frag_data.first_map == symp);
2676 frag->tc_frag_data.first_map = NULL;
2677 }
2678 frag->tc_frag_data.last_map = NULL;
2679 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
c19d1205 2680 }
cd000bff
DJ
2681
2682 make_mapping_symbol (MAP_DATA, value, frag);
2683 make_mapping_symbol (state, value + bytes, frag);
2684}
2685
2686static void mapping_state_2 (enum mstate state, int max_chars);
2687
2688/* Set the mapping state to STATE. Only call this when about to
2689 emit some STATE bytes to the file. */
2690
4e9aaefb 2691#define TRANSITION(from, to) (mapstate == (from) && state == (to))
cd000bff
DJ
2692void
2693mapping_state (enum mstate state)
2694{
940b5ce0
DJ
2695 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2696
cd000bff
DJ
2697 if (mapstate == state)
2698 /* The mapping symbol has already been emitted.
2699 There is nothing else to do. */
2700 return;
49c62a33
NC
2701
2702 if (state == MAP_ARM || state == MAP_THUMB)
2703 /* PR gas/12931
2704 All ARM instructions require 4-byte alignment.
2705 (Almost) all Thumb instructions require 2-byte alignment.
2706
2707 When emitting instructions into any section, mark the section
2708 appropriately.
2709
2710 Some Thumb instructions are alignment-sensitive modulo 4 bytes,
2711 but themselves require 2-byte alignment; this applies to some
33eaf5de 2712 PC- relative forms. However, these cases will involve implicit
49c62a33
NC
2713 literal pool generation or an explicit .align >=2, both of
2714 which will cause the section to me marked with sufficient
2715 alignment. Thus, we don't handle those cases here. */
2716 record_alignment (now_seg, state == MAP_ARM ? 2 : 1);
2717
2718 if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
4e9aaefb 2719 /* This case will be evaluated later. */
cd000bff 2720 return;
cd000bff
DJ
2721
2722 mapping_state_2 (state, 0);
cd000bff
DJ
2723}
2724
2725/* Same as mapping_state, but MAX_CHARS bytes have already been
2726 allocated. Put the mapping symbol that far back. */
2727
2728static void
2729mapping_state_2 (enum mstate state, int max_chars)
2730{
940b5ce0
DJ
2731 enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
2732
2733 if (!SEG_NORMAL (now_seg))
2734 return;
2735
cd000bff
DJ
2736 if (mapstate == state)
2737 /* The mapping symbol has already been emitted.
2738 There is nothing else to do. */
2739 return;
2740
4e9aaefb
SA
2741 if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
2742 || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
2743 {
2744 struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
2745 const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
2746
2747 if (add_symbol)
2748 make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
2749 }
2750
cd000bff
DJ
2751 seg_info (now_seg)->tc_segment_info_data.mapstate = state;
2752 make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
c19d1205 2753}
4e9aaefb 2754#undef TRANSITION
c19d1205 2755#else
d3106081
NS
2756#define mapping_state(x) ((void)0)
2757#define mapping_state_2(x, y) ((void)0)
c19d1205
ZW
2758#endif
2759
2760/* Find the real, Thumb encoded start of a Thumb function. */
2761
4343666d 2762#ifdef OBJ_COFF
c19d1205
ZW
2763static symbolS *
2764find_real_start (symbolS * symbolP)
2765{
2766 char * real_start;
2767 const char * name = S_GET_NAME (symbolP);
2768 symbolS * new_target;
2769
2770 /* This definition must agree with the one in gcc/config/arm/thumb.c. */
2771#define STUB_NAME ".real_start_of"
2772
2773 if (name == NULL)
2774 abort ();
2775
37f6032b
ZW
2776 /* The compiler may generate BL instructions to local labels because
2777 it needs to perform a branch to a far away location. These labels
2778 do not have a corresponding ".real_start_of" label. We check
2779 both for S_IS_LOCAL and for a leading dot, to give a way to bypass
2780 the ".real_start_of" convention for nonlocal branches. */
2781 if (S_IS_LOCAL (symbolP) || name[0] == '.')
c19d1205
ZW
2782 return symbolP;
2783
e1fa0163 2784 real_start = concat (STUB_NAME, name, NULL);
c19d1205 2785 new_target = symbol_find (real_start);
e1fa0163 2786 free (real_start);
c19d1205
ZW
2787
2788 if (new_target == NULL)
2789 {
bd3ba5d1 2790 as_warn (_("Failed to find real start of function: %s\n"), name);
c19d1205
ZW
2791 new_target = symbolP;
2792 }
2793
c19d1205
ZW
2794 return new_target;
2795}
4343666d 2796#endif
c19d1205
ZW
2797
2798static void
2799opcode_select (int width)
2800{
2801 switch (width)
2802 {
2803 case 16:
2804 if (! thumb_mode)
2805 {
e74cfd16 2806 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
c19d1205
ZW
2807 as_bad (_("selected processor does not support THUMB opcodes"));
2808
2809 thumb_mode = 1;
2810 /* No need to force the alignment, since we will have been
2811 coming from ARM mode, which is word-aligned. */
2812 record_alignment (now_seg, 1);
2813 }
c19d1205
ZW
2814 break;
2815
2816 case 32:
2817 if (thumb_mode)
2818 {
e74cfd16 2819 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205
ZW
2820 as_bad (_("selected processor does not support ARM opcodes"));
2821
2822 thumb_mode = 0;
2823
2824 if (!need_pass_2)
2825 frag_align (2, 0, 0);
2826
2827 record_alignment (now_seg, 1);
2828 }
c19d1205
ZW
2829 break;
2830
2831 default:
2832 as_bad (_("invalid instruction size selected (%d)"), width);
2833 }
2834}
2835
2836static void
2837s_arm (int ignore ATTRIBUTE_UNUSED)
2838{
2839 opcode_select (32);
2840 demand_empty_rest_of_line ();
2841}
2842
2843static void
2844s_thumb (int ignore ATTRIBUTE_UNUSED)
2845{
2846 opcode_select (16);
2847 demand_empty_rest_of_line ();
2848}
2849
2850static void
2851s_code (int unused ATTRIBUTE_UNUSED)
2852{
2853 int temp;
2854
2855 temp = get_absolute_expression ();
2856 switch (temp)
2857 {
2858 case 16:
2859 case 32:
2860 opcode_select (temp);
2861 break;
2862
2863 default:
2864 as_bad (_("invalid operand to .code directive (%d) (expecting 16 or 32)"), temp);
2865 }
2866}
2867
2868static void
2869s_force_thumb (int ignore ATTRIBUTE_UNUSED)
2870{
2871 /* If we are not already in thumb mode go into it, EVEN if
2872 the target processor does not support thumb instructions.
2873 This is used by gcc/config/arm/lib1funcs.asm for example
2874 to compile interworking support functions even if the
2875 target processor should not support interworking. */
2876 if (! thumb_mode)
2877 {
2878 thumb_mode = 2;
2879 record_alignment (now_seg, 1);
2880 }
2881
2882 demand_empty_rest_of_line ();
2883}
2884
2885static void
2886s_thumb_func (int ignore ATTRIBUTE_UNUSED)
2887{
2888 s_thumb (0);
2889
2890 /* The following label is the name/address of the start of a Thumb function.
2891 We need to know this for the interworking support. */
2892 label_is_thumb_function_name = TRUE;
2893}
2894
2895/* Perform a .set directive, but also mark the alias as
2896 being a thumb function. */
2897
2898static void
2899s_thumb_set (int equiv)
2900{
2901 /* XXX the following is a duplicate of the code for s_set() in read.c
2902 We cannot just call that code as we need to get at the symbol that
2903 is created. */
2904 char * name;
2905 char delim;
2906 char * end_name;
2907 symbolS * symbolP;
2908
2909 /* Especial apologies for the random logic:
2910 This just grew, and could be parsed much more simply!
2911 Dean - in haste. */
d02603dc 2912 delim = get_symbol_name (& name);
c19d1205 2913 end_name = input_line_pointer;
d02603dc 2914 (void) restore_line_pointer (delim);
c19d1205
ZW
2915
2916 if (*input_line_pointer != ',')
2917 {
2918 *end_name = 0;
2919 as_bad (_("expected comma after name \"%s\""), name);
b99bd4ef
NC
2920 *end_name = delim;
2921 ignore_rest_of_line ();
2922 return;
2923 }
2924
2925 input_line_pointer++;
2926 *end_name = 0;
2927
2928 if (name[0] == '.' && name[1] == '\0')
2929 {
2930 /* XXX - this should not happen to .thumb_set. */
2931 abort ();
2932 }
2933
2934 if ((symbolP = symbol_find (name)) == NULL
2935 && (symbolP = md_undefined_symbol (name)) == NULL)
2936 {
2937#ifndef NO_LISTING
2938 /* When doing symbol listings, play games with dummy fragments living
2939 outside the normal fragment chain to record the file and line info
c19d1205 2940 for this symbol. */
b99bd4ef
NC
2941 if (listing & LISTING_SYMBOLS)
2942 {
2943 extern struct list_info_struct * listing_tail;
21d799b5 2944 fragS * dummy_frag = (fragS * ) xmalloc (sizeof (fragS));
b99bd4ef
NC
2945
2946 memset (dummy_frag, 0, sizeof (fragS));
2947 dummy_frag->fr_type = rs_fill;
2948 dummy_frag->line = listing_tail;
2949 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2950 dummy_frag->fr_symbol = symbolP;
2951 }
2952 else
2953#endif
2954 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2955
2956#ifdef OBJ_COFF
2957 /* "set" symbols are local unless otherwise specified. */
2958 SF_SET_LOCAL (symbolP);
2959#endif /* OBJ_COFF */
2960 } /* Make a new symbol. */
2961
2962 symbol_table_insert (symbolP);
2963
2964 * end_name = delim;
2965
2966 if (equiv
2967 && S_IS_DEFINED (symbolP)
2968 && S_GET_SEGMENT (symbolP) != reg_section)
2969 as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
2970
2971 pseudo_set (symbolP);
2972
2973 demand_empty_rest_of_line ();
2974
c19d1205 2975 /* XXX Now we come to the Thumb specific bit of code. */
b99bd4ef
NC
2976
2977 THUMB_SET_FUNC (symbolP, 1);
2978 ARM_SET_THUMB (symbolP, 1);
2979#if defined OBJ_ELF || defined OBJ_COFF
2980 ARM_SET_INTERWORK (symbolP, support_interwork);
2981#endif
2982}
2983
c19d1205 2984/* Directives: Mode selection. */
b99bd4ef 2985
c19d1205
ZW
2986/* .syntax [unified|divided] - choose the new unified syntax
2987 (same for Arm and Thumb encoding, modulo slight differences in what
2988 can be represented) or the old divergent syntax for each mode. */
b99bd4ef 2989static void
c19d1205 2990s_syntax (int unused ATTRIBUTE_UNUSED)
b99bd4ef 2991{
c19d1205
ZW
2992 char *name, delim;
2993
d02603dc 2994 delim = get_symbol_name (& name);
c19d1205
ZW
2995
2996 if (!strcasecmp (name, "unified"))
2997 unified_syntax = TRUE;
2998 else if (!strcasecmp (name, "divided"))
2999 unified_syntax = FALSE;
3000 else
3001 {
3002 as_bad (_("unrecognized syntax mode \"%s\""), name);
3003 return;
3004 }
d02603dc 3005 (void) restore_line_pointer (delim);
b99bd4ef
NC
3006 demand_empty_rest_of_line ();
3007}
3008
c19d1205
ZW
3009/* Directives: sectioning and alignment. */
3010
c19d1205
ZW
3011static void
3012s_bss (int ignore ATTRIBUTE_UNUSED)
b99bd4ef 3013{
c19d1205
ZW
3014 /* We don't support putting frags in the BSS segment, we fake it by
3015 marking in_bss, then looking at s_skip for clues. */
3016 subseg_set (bss_section, 0);
3017 demand_empty_rest_of_line ();
cd000bff
DJ
3018
3019#ifdef md_elf_section_change_hook
3020 md_elf_section_change_hook ();
3021#endif
c19d1205 3022}
b99bd4ef 3023
c19d1205
ZW
3024static void
3025s_even (int ignore ATTRIBUTE_UNUSED)
3026{
3027 /* Never make frag if expect extra pass. */
3028 if (!need_pass_2)
3029 frag_align (1, 0, 0);
b99bd4ef 3030
c19d1205 3031 record_alignment (now_seg, 1);
b99bd4ef 3032
c19d1205 3033 demand_empty_rest_of_line ();
b99bd4ef
NC
3034}
3035
2e6976a8
DG
3036/* Directives: CodeComposer Studio. */
3037
3038/* .ref (for CodeComposer Studio syntax only). */
3039static void
3040s_ccs_ref (int unused ATTRIBUTE_UNUSED)
3041{
3042 if (codecomposer_syntax)
3043 ignore_rest_of_line ();
3044 else
3045 as_bad (_(".ref pseudo-op only available with -mccs flag."));
3046}
3047
3048/* If name is not NULL, then it is used for marking the beginning of a
2b0f3761 3049 function, whereas if it is NULL then it means the function end. */
2e6976a8
DG
3050static void
3051asmfunc_debug (const char * name)
3052{
3053 static const char * last_name = NULL;
3054
3055 if (name != NULL)
3056 {
3057 gas_assert (last_name == NULL);
3058 last_name = name;
3059
3060 if (debug_type == DEBUG_STABS)
3061 stabs_generate_asm_func (name, name);
3062 }
3063 else
3064 {
3065 gas_assert (last_name != NULL);
3066
3067 if (debug_type == DEBUG_STABS)
3068 stabs_generate_asm_endfunc (last_name, last_name);
3069
3070 last_name = NULL;
3071 }
3072}
3073
3074static void
3075s_ccs_asmfunc (int unused ATTRIBUTE_UNUSED)
3076{
3077 if (codecomposer_syntax)
3078 {
3079 switch (asmfunc_state)
3080 {
3081 case OUTSIDE_ASMFUNC:
3082 asmfunc_state = WAITING_ASMFUNC_NAME;
3083 break;
3084
3085 case WAITING_ASMFUNC_NAME:
3086 as_bad (_(".asmfunc repeated."));
3087 break;
3088
3089 case WAITING_ENDASMFUNC:
3090 as_bad (_(".asmfunc without function."));
3091 break;
3092 }
3093 demand_empty_rest_of_line ();
3094 }
3095 else
3096 as_bad (_(".asmfunc pseudo-op only available with -mccs flag."));
3097}
3098
3099static void
3100s_ccs_endasmfunc (int unused ATTRIBUTE_UNUSED)
3101{
3102 if (codecomposer_syntax)
3103 {
3104 switch (asmfunc_state)
3105 {
3106 case OUTSIDE_ASMFUNC:
3107 as_bad (_(".endasmfunc without a .asmfunc."));
3108 break;
3109
3110 case WAITING_ASMFUNC_NAME:
3111 as_bad (_(".endasmfunc without function."));
3112 break;
3113
3114 case WAITING_ENDASMFUNC:
3115 asmfunc_state = OUTSIDE_ASMFUNC;
3116 asmfunc_debug (NULL);
3117 break;
3118 }
3119 demand_empty_rest_of_line ();
3120 }
3121 else
3122 as_bad (_(".endasmfunc pseudo-op only available with -mccs flag."));
3123}
3124
3125static void
3126s_ccs_def (int name)
3127{
3128 if (codecomposer_syntax)
3129 s_globl (name);
3130 else
3131 as_bad (_(".def pseudo-op only available with -mccs flag."));
3132}
3133
c19d1205 3134/* Directives: Literal pools. */
a737bd4d 3135
c19d1205
ZW
3136static literal_pool *
3137find_literal_pool (void)
a737bd4d 3138{
c19d1205 3139 literal_pool * pool;
a737bd4d 3140
c19d1205 3141 for (pool = list_of_pools; pool != NULL; pool = pool->next)
a737bd4d 3142 {
c19d1205
ZW
3143 if (pool->section == now_seg
3144 && pool->sub_section == now_subseg)
3145 break;
a737bd4d
NC
3146 }
3147
c19d1205 3148 return pool;
a737bd4d
NC
3149}
3150
c19d1205
ZW
3151static literal_pool *
3152find_or_make_literal_pool (void)
a737bd4d 3153{
c19d1205
ZW
3154 /* Next literal pool ID number. */
3155 static unsigned int latest_pool_num = 1;
3156 literal_pool * pool;
a737bd4d 3157
c19d1205 3158 pool = find_literal_pool ();
a737bd4d 3159
c19d1205 3160 if (pool == NULL)
a737bd4d 3161 {
c19d1205 3162 /* Create a new pool. */
325801bd 3163 pool = XNEW (literal_pool);
c19d1205
ZW
3164 if (! pool)
3165 return NULL;
a737bd4d 3166
c19d1205
ZW
3167 pool->next_free_entry = 0;
3168 pool->section = now_seg;
3169 pool->sub_section = now_subseg;
3170 pool->next = list_of_pools;
3171 pool->symbol = NULL;
8335d6aa 3172 pool->alignment = 2;
c19d1205
ZW
3173
3174 /* Add it to the list. */
3175 list_of_pools = pool;
a737bd4d 3176 }
a737bd4d 3177
c19d1205
ZW
3178 /* New pools, and emptied pools, will have a NULL symbol. */
3179 if (pool->symbol == NULL)
a737bd4d 3180 {
c19d1205
ZW
3181 pool->symbol = symbol_create (FAKE_LABEL_NAME, undefined_section,
3182 (valueT) 0, &zero_address_frag);
3183 pool->id = latest_pool_num ++;
a737bd4d
NC
3184 }
3185
c19d1205
ZW
3186 /* Done. */
3187 return pool;
a737bd4d
NC
3188}
3189
c19d1205 3190/* Add the literal in the global 'inst'
5f4273c7 3191 structure to the relevant literal pool. */
b99bd4ef
NC
3192
3193static int
8335d6aa 3194add_to_lit_pool (unsigned int nbytes)
b99bd4ef 3195{
8335d6aa
JW
3196#define PADDING_SLOT 0x1
3197#define LIT_ENTRY_SIZE_MASK 0xFF
c19d1205 3198 literal_pool * pool;
8335d6aa
JW
3199 unsigned int entry, pool_size = 0;
3200 bfd_boolean padding_slot_p = FALSE;
e56c722b 3201 unsigned imm1 = 0;
8335d6aa
JW
3202 unsigned imm2 = 0;
3203
3204 if (nbytes == 8)
3205 {
3206 imm1 = inst.operands[1].imm;
3207 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3208 : inst.reloc.exp.X_unsigned ? 0
2569ceb0 3209 : ((bfd_int64_t) inst.operands[1].imm) >> 32);
8335d6aa
JW
3210 if (target_big_endian)
3211 {
3212 imm1 = imm2;
3213 imm2 = inst.operands[1].imm;
3214 }
3215 }
b99bd4ef 3216
c19d1205
ZW
3217 pool = find_or_make_literal_pool ();
3218
3219 /* Check if this literal value is already in the pool. */
3220 for (entry = 0; entry < pool->next_free_entry; entry ++)
b99bd4ef 3221 {
8335d6aa
JW
3222 if (nbytes == 4)
3223 {
3224 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3225 && (inst.reloc.exp.X_op == O_constant)
3226 && (pool->literals[entry].X_add_number
3227 == inst.reloc.exp.X_add_number)
3228 && (pool->literals[entry].X_md == nbytes)
3229 && (pool->literals[entry].X_unsigned
3230 == inst.reloc.exp.X_unsigned))
3231 break;
3232
3233 if ((pool->literals[entry].X_op == inst.reloc.exp.X_op)
3234 && (inst.reloc.exp.X_op == O_symbol)
3235 && (pool->literals[entry].X_add_number
3236 == inst.reloc.exp.X_add_number)
3237 && (pool->literals[entry].X_add_symbol
3238 == inst.reloc.exp.X_add_symbol)
3239 && (pool->literals[entry].X_op_symbol
3240 == inst.reloc.exp.X_op_symbol)
3241 && (pool->literals[entry].X_md == nbytes))
3242 break;
3243 }
3244 else if ((nbytes == 8)
3245 && !(pool_size & 0x7)
3246 && ((entry + 1) != pool->next_free_entry)
3247 && (pool->literals[entry].X_op == O_constant)
19f2f6a9 3248 && (pool->literals[entry].X_add_number == (offsetT) imm1)
8335d6aa
JW
3249 && (pool->literals[entry].X_unsigned
3250 == inst.reloc.exp.X_unsigned)
3251 && (pool->literals[entry + 1].X_op == O_constant)
19f2f6a9 3252 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
8335d6aa
JW
3253 && (pool->literals[entry + 1].X_unsigned
3254 == inst.reloc.exp.X_unsigned))
c19d1205
ZW
3255 break;
3256
8335d6aa
JW
3257 padding_slot_p = ((pool->literals[entry].X_md >> 8) == PADDING_SLOT);
3258 if (padding_slot_p && (nbytes == 4))
c19d1205 3259 break;
8335d6aa
JW
3260
3261 pool_size += 4;
b99bd4ef
NC
3262 }
3263
c19d1205
ZW
3264 /* Do we need to create a new entry? */
3265 if (entry == pool->next_free_entry)
3266 {
3267 if (entry >= MAX_LITERAL_POOL_SIZE)
3268 {
3269 inst.error = _("literal pool overflow");
3270 return FAIL;
3271 }
3272
8335d6aa
JW
3273 if (nbytes == 8)
3274 {
3275 /* For 8-byte entries, we align to an 8-byte boundary,
3276 and split it into two 4-byte entries, because on 32-bit
3277 host, 8-byte constants are treated as big num, thus
3278 saved in "generic_bignum" which will be overwritten
3279 by later assignments.
3280
3281 We also need to make sure there is enough space for
3282 the split.
3283
3284 We also check to make sure the literal operand is a
3285 constant number. */
19f2f6a9
JW
3286 if (!(inst.reloc.exp.X_op == O_constant
3287 || inst.reloc.exp.X_op == O_big))
8335d6aa
JW
3288 {
3289 inst.error = _("invalid type for literal pool");
3290 return FAIL;
3291 }
3292 else if (pool_size & 0x7)
3293 {
3294 if ((entry + 2) >= MAX_LITERAL_POOL_SIZE)
3295 {
3296 inst.error = _("literal pool overflow");
3297 return FAIL;
3298 }
3299
3300 pool->literals[entry] = inst.reloc.exp;
a6684f0d 3301 pool->literals[entry].X_op = O_constant;
8335d6aa
JW
3302 pool->literals[entry].X_add_number = 0;
3303 pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
3304 pool->next_free_entry += 1;
3305 pool_size += 4;
3306 }
3307 else if ((entry + 1) >= MAX_LITERAL_POOL_SIZE)
3308 {
3309 inst.error = _("literal pool overflow");
3310 return FAIL;
3311 }
3312
3313 pool->literals[entry] = inst.reloc.exp;
3314 pool->literals[entry].X_op = O_constant;
3315 pool->literals[entry].X_add_number = imm1;
3316 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3317 pool->literals[entry++].X_md = 4;
3318 pool->literals[entry] = inst.reloc.exp;
3319 pool->literals[entry].X_op = O_constant;
3320 pool->literals[entry].X_add_number = imm2;
3321 pool->literals[entry].X_unsigned = inst.reloc.exp.X_unsigned;
3322 pool->literals[entry].X_md = 4;
3323 pool->alignment = 3;
3324 pool->next_free_entry += 1;
3325 }
3326 else
3327 {
3328 pool->literals[entry] = inst.reloc.exp;
3329 pool->literals[entry].X_md = 4;
3330 }
3331
a8040cf2
NC
3332#ifdef OBJ_ELF
3333 /* PR ld/12974: Record the location of the first source line to reference
3334 this entry in the literal pool. If it turns out during linking that the
3335 symbol does not exist we will be able to give an accurate line number for
3336 the (first use of the) missing reference. */
3337 if (debug_type == DEBUG_DWARF2)
3338 dwarf2_where (pool->locs + entry);
3339#endif
c19d1205
ZW
3340 pool->next_free_entry += 1;
3341 }
8335d6aa
JW
3342 else if (padding_slot_p)
3343 {
3344 pool->literals[entry] = inst.reloc.exp;
3345 pool->literals[entry].X_md = nbytes;
3346 }
b99bd4ef 3347
c19d1205 3348 inst.reloc.exp.X_op = O_symbol;
8335d6aa 3349 inst.reloc.exp.X_add_number = pool_size;
c19d1205 3350 inst.reloc.exp.X_add_symbol = pool->symbol;
b99bd4ef 3351
c19d1205 3352 return SUCCESS;
b99bd4ef
NC
3353}
3354
2e6976a8 3355bfd_boolean
2e57ce7b 3356tc_start_label_without_colon (void)
2e6976a8
DG
3357{
3358 bfd_boolean ret = TRUE;
3359
3360 if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
3361 {
2e57ce7b 3362 const char *label = input_line_pointer;
2e6976a8
DG
3363
3364 while (!is_end_of_line[(int) label[-1]])
3365 --label;
3366
3367 if (*label == '.')
3368 {
3369 as_bad (_("Invalid label '%s'"), label);
3370 ret = FALSE;
3371 }
3372
3373 asmfunc_debug (label);
3374
3375 asmfunc_state = WAITING_ENDASMFUNC;
3376 }
3377
3378 return ret;
3379}
3380
c19d1205 3381/* Can't use symbol_new here, so have to create a symbol and then at
33eaf5de 3382 a later date assign it a value. That's what these functions do. */
e16bb312 3383
c19d1205
ZW
3384static void
3385symbol_locate (symbolS * symbolP,
3386 const char * name, /* It is copied, the caller can modify. */
3387 segT segment, /* Segment identifier (SEG_<something>). */
3388 valueT valu, /* Symbol value. */
3389 fragS * frag) /* Associated fragment. */
3390{
e57e6ddc 3391 size_t name_length;
c19d1205 3392 char * preserved_copy_of_name;
e16bb312 3393
c19d1205
ZW
3394 name_length = strlen (name) + 1; /* +1 for \0. */
3395 obstack_grow (&notes, name, name_length);
21d799b5 3396 preserved_copy_of_name = (char *) obstack_finish (&notes);
e16bb312 3397
c19d1205
ZW
3398#ifdef tc_canonicalize_symbol_name
3399 preserved_copy_of_name =
3400 tc_canonicalize_symbol_name (preserved_copy_of_name);
3401#endif
b99bd4ef 3402
c19d1205 3403 S_SET_NAME (symbolP, preserved_copy_of_name);
b99bd4ef 3404
c19d1205
ZW
3405 S_SET_SEGMENT (symbolP, segment);
3406 S_SET_VALUE (symbolP, valu);
3407 symbol_clear_list_pointers (symbolP);
b99bd4ef 3408
c19d1205 3409 symbol_set_frag (symbolP, frag);
b99bd4ef 3410
c19d1205
ZW
3411 /* Link to end of symbol chain. */
3412 {
3413 extern int symbol_table_frozen;
b99bd4ef 3414
c19d1205
ZW
3415 if (symbol_table_frozen)
3416 abort ();
3417 }
b99bd4ef 3418
c19d1205 3419 symbol_append (symbolP, symbol_lastP, & symbol_rootP, & symbol_lastP);
b99bd4ef 3420
c19d1205 3421 obj_symbol_new_hook (symbolP);
b99bd4ef 3422
c19d1205
ZW
3423#ifdef tc_symbol_new_hook
3424 tc_symbol_new_hook (symbolP);
3425#endif
3426
3427#ifdef DEBUG_SYMS
3428 verify_symbol_chain (symbol_rootP, symbol_lastP);
3429#endif /* DEBUG_SYMS */
b99bd4ef
NC
3430}
3431
c19d1205
ZW
3432static void
3433s_ltorg (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 3434{
c19d1205
ZW
3435 unsigned int entry;
3436 literal_pool * pool;
3437 char sym_name[20];
b99bd4ef 3438
c19d1205
ZW
3439 pool = find_literal_pool ();
3440 if (pool == NULL
3441 || pool->symbol == NULL
3442 || pool->next_free_entry == 0)
3443 return;
b99bd4ef 3444
c19d1205
ZW
3445 /* Align pool as you have word accesses.
3446 Only make a frag if we have to. */
3447 if (!need_pass_2)
8335d6aa 3448 frag_align (pool->alignment, 0, 0);
b99bd4ef 3449
c19d1205 3450 record_alignment (now_seg, 2);
b99bd4ef 3451
aaca88ef 3452#ifdef OBJ_ELF
47fc6e36
WN
3453 seg_info (now_seg)->tc_segment_info_data.mapstate = MAP_DATA;
3454 make_mapping_symbol (MAP_DATA, (valueT) frag_now_fix (), frag_now);
aaca88ef 3455#endif
c19d1205 3456 sprintf (sym_name, "$$lit_\002%x", pool->id);
b99bd4ef 3457
c19d1205
ZW
3458 symbol_locate (pool->symbol, sym_name, now_seg,
3459 (valueT) frag_now_fix (), frag_now);
3460 symbol_table_insert (pool->symbol);
b99bd4ef 3461
c19d1205 3462 ARM_SET_THUMB (pool->symbol, thumb_mode);
b99bd4ef 3463
c19d1205
ZW
3464#if defined OBJ_COFF || defined OBJ_ELF
3465 ARM_SET_INTERWORK (pool->symbol, support_interwork);
3466#endif
6c43fab6 3467
c19d1205 3468 for (entry = 0; entry < pool->next_free_entry; entry ++)
a8040cf2
NC
3469 {
3470#ifdef OBJ_ELF
3471 if (debug_type == DEBUG_DWARF2)
3472 dwarf2_gen_line_info (frag_now_fix (), pool->locs + entry);
3473#endif
3474 /* First output the expression in the instruction to the pool. */
8335d6aa
JW
3475 emit_expr (&(pool->literals[entry]),
3476 pool->literals[entry].X_md & LIT_ENTRY_SIZE_MASK);
a8040cf2 3477 }
b99bd4ef 3478
c19d1205
ZW
3479 /* Mark the pool as empty. */
3480 pool->next_free_entry = 0;
3481 pool->symbol = NULL;
b99bd4ef
NC
3482}
3483
c19d1205
ZW
3484#ifdef OBJ_ELF
3485/* Forward declarations for functions below, in the MD interface
3486 section. */
3487static void fix_new_arm (fragS *, int, short, expressionS *, int, int);
3488static valueT create_unwind_entry (int);
3489static void start_unwind_section (const segT, int);
3490static void add_unwind_opcode (valueT, int);
3491static void flush_pending_unwind (void);
b99bd4ef 3492
c19d1205 3493/* Directives: Data. */
b99bd4ef 3494
c19d1205
ZW
3495static void
3496s_arm_elf_cons (int nbytes)
3497{
3498 expressionS exp;
b99bd4ef 3499
c19d1205
ZW
3500#ifdef md_flush_pending_output
3501 md_flush_pending_output ();
3502#endif
b99bd4ef 3503
c19d1205 3504 if (is_it_end_of_statement ())
b99bd4ef 3505 {
c19d1205
ZW
3506 demand_empty_rest_of_line ();
3507 return;
b99bd4ef
NC
3508 }
3509
c19d1205
ZW
3510#ifdef md_cons_align
3511 md_cons_align (nbytes);
3512#endif
b99bd4ef 3513
c19d1205
ZW
3514 mapping_state (MAP_DATA);
3515 do
b99bd4ef 3516 {
c19d1205
ZW
3517 int reloc;
3518 char *base = input_line_pointer;
b99bd4ef 3519
c19d1205 3520 expression (& exp);
b99bd4ef 3521
c19d1205
ZW
3522 if (exp.X_op != O_symbol)
3523 emit_expr (&exp, (unsigned int) nbytes);
3524 else
3525 {
3526 char *before_reloc = input_line_pointer;
3527 reloc = parse_reloc (&input_line_pointer);
3528 if (reloc == -1)
3529 {
3530 as_bad (_("unrecognized relocation suffix"));
3531 ignore_rest_of_line ();
3532 return;
3533 }
3534 else if (reloc == BFD_RELOC_UNUSED)
3535 emit_expr (&exp, (unsigned int) nbytes);
3536 else
3537 {
21d799b5 3538 reloc_howto_type *howto = (reloc_howto_type *)
477330fc
RM
3539 bfd_reloc_type_lookup (stdoutput,
3540 (bfd_reloc_code_real_type) reloc);
c19d1205 3541 int size = bfd_get_reloc_size (howto);
b99bd4ef 3542
2fc8bdac
ZW
3543 if (reloc == BFD_RELOC_ARM_PLT32)
3544 {
3545 as_bad (_("(plt) is only valid on branch targets"));
3546 reloc = BFD_RELOC_UNUSED;
3547 size = 0;
3548 }
3549
c19d1205 3550 if (size > nbytes)
2fc8bdac 3551 as_bad (_("%s relocations do not fit in %d bytes"),
c19d1205
ZW
3552 howto->name, nbytes);
3553 else
3554 {
3555 /* We've parsed an expression stopping at O_symbol.
3556 But there may be more expression left now that we
3557 have parsed the relocation marker. Parse it again.
3558 XXX Surely there is a cleaner way to do this. */
3559 char *p = input_line_pointer;
3560 int offset;
325801bd 3561 char *save_buf = XNEWVEC (char, input_line_pointer - base);
e1fa0163 3562
c19d1205
ZW
3563 memcpy (save_buf, base, input_line_pointer - base);
3564 memmove (base + (input_line_pointer - before_reloc),
3565 base, before_reloc - base);
3566
3567 input_line_pointer = base + (input_line_pointer-before_reloc);
3568 expression (&exp);
3569 memcpy (base, save_buf, p - base);
3570
3571 offset = nbytes - size;
4b1a927e
AM
3572 p = frag_more (nbytes);
3573 memset (p, 0, nbytes);
c19d1205 3574 fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
21d799b5 3575 size, &exp, 0, (enum bfd_reloc_code_real) reloc);
e1fa0163 3576 free (save_buf);
c19d1205
ZW
3577 }
3578 }
3579 }
b99bd4ef 3580 }
c19d1205 3581 while (*input_line_pointer++ == ',');
b99bd4ef 3582
c19d1205
ZW
3583 /* Put terminator back into stream. */
3584 input_line_pointer --;
3585 demand_empty_rest_of_line ();
b99bd4ef
NC
3586}
3587
c921be7d
NC
3588/* Emit an expression containing a 32-bit thumb instruction.
3589 Implementation based on put_thumb32_insn. */
3590
3591static void
3592emit_thumb32_expr (expressionS * exp)
3593{
3594 expressionS exp_high = *exp;
3595
3596 exp_high.X_add_number = (unsigned long)exp_high.X_add_number >> 16;
3597 emit_expr (& exp_high, (unsigned int) THUMB_SIZE);
3598 exp->X_add_number &= 0xffff;
3599 emit_expr (exp, (unsigned int) THUMB_SIZE);
3600}
3601
3602/* Guess the instruction size based on the opcode. */
3603
3604static int
3605thumb_insn_size (int opcode)
3606{
3607 if ((unsigned int) opcode < 0xe800u)
3608 return 2;
3609 else if ((unsigned int) opcode >= 0xe8000000u)
3610 return 4;
3611 else
3612 return 0;
3613}
3614
3615static bfd_boolean
3616emit_insn (expressionS *exp, int nbytes)
3617{
3618 int size = 0;
3619
3620 if (exp->X_op == O_constant)
3621 {
3622 size = nbytes;
3623
3624 if (size == 0)
3625 size = thumb_insn_size (exp->X_add_number);
3626
3627 if (size != 0)
3628 {
3629 if (size == 2 && (unsigned int)exp->X_add_number > 0xffffu)
3630 {
3631 as_bad (_(".inst.n operand too big. "\
3632 "Use .inst.w instead"));
3633 size = 0;
3634 }
3635 else
3636 {
3637 if (now_it.state == AUTOMATIC_IT_BLOCK)
3638 set_it_insn_type_nonvoid (OUTSIDE_IT_INSN, 0);
3639 else
3640 set_it_insn_type_nonvoid (NEUTRAL_IT_INSN, 0);
3641
3642 if (thumb_mode && (size > THUMB_SIZE) && !target_big_endian)
3643 emit_thumb32_expr (exp);
3644 else
3645 emit_expr (exp, (unsigned int) size);
3646
3647 it_fsm_post_encode ();
3648 }
3649 }
3650 else
3651 as_bad (_("cannot determine Thumb instruction size. " \
3652 "Use .inst.n/.inst.w instead"));
3653 }
3654 else
3655 as_bad (_("constant expression required"));
3656
3657 return (size != 0);
3658}
3659
3660/* Like s_arm_elf_cons but do not use md_cons_align and
3661 set the mapping state to MAP_ARM/MAP_THUMB. */
3662
3663static void
3664s_arm_elf_inst (int nbytes)
3665{
3666 if (is_it_end_of_statement ())
3667 {
3668 demand_empty_rest_of_line ();
3669 return;
3670 }
3671
3672 /* Calling mapping_state () here will not change ARM/THUMB,
3673 but will ensure not to be in DATA state. */
3674
3675 if (thumb_mode)
3676 mapping_state (MAP_THUMB);
3677 else
3678 {
3679 if (nbytes != 0)
3680 {
3681 as_bad (_("width suffixes are invalid in ARM mode"));
3682 ignore_rest_of_line ();
3683 return;
3684 }
3685
3686 nbytes = 4;
3687
3688 mapping_state (MAP_ARM);
3689 }
3690
3691 do
3692 {
3693 expressionS exp;
3694
3695 expression (& exp);
3696
3697 if (! emit_insn (& exp, nbytes))
3698 {
3699 ignore_rest_of_line ();
3700 return;
3701 }
3702 }
3703 while (*input_line_pointer++ == ',');
3704
3705 /* Put terminator back into stream. */
3706 input_line_pointer --;
3707 demand_empty_rest_of_line ();
3708}
b99bd4ef 3709
c19d1205 3710/* Parse a .rel31 directive. */
b99bd4ef 3711
c19d1205
ZW
3712static void
3713s_arm_rel31 (int ignored ATTRIBUTE_UNUSED)
3714{
3715 expressionS exp;
3716 char *p;
3717 valueT highbit;
b99bd4ef 3718
c19d1205
ZW
3719 highbit = 0;
3720 if (*input_line_pointer == '1')
3721 highbit = 0x80000000;
3722 else if (*input_line_pointer != '0')
3723 as_bad (_("expected 0 or 1"));
b99bd4ef 3724
c19d1205
ZW
3725 input_line_pointer++;
3726 if (*input_line_pointer != ',')
3727 as_bad (_("missing comma"));
3728 input_line_pointer++;
b99bd4ef 3729
c19d1205
ZW
3730#ifdef md_flush_pending_output
3731 md_flush_pending_output ();
3732#endif
b99bd4ef 3733
c19d1205
ZW
3734#ifdef md_cons_align
3735 md_cons_align (4);
3736#endif
b99bd4ef 3737
c19d1205 3738 mapping_state (MAP_DATA);
b99bd4ef 3739
c19d1205 3740 expression (&exp);
b99bd4ef 3741
c19d1205
ZW
3742 p = frag_more (4);
3743 md_number_to_chars (p, highbit, 4);
3744 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 1,
3745 BFD_RELOC_ARM_PREL31);
b99bd4ef 3746
c19d1205 3747 demand_empty_rest_of_line ();
b99bd4ef
NC
3748}
3749
c19d1205 3750/* Directives: AEABI stack-unwind tables. */
b99bd4ef 3751
c19d1205 3752/* Parse an unwind_fnstart directive. Simply records the current location. */
b99bd4ef 3753
c19d1205
ZW
3754static void
3755s_arm_unwind_fnstart (int ignored ATTRIBUTE_UNUSED)
3756{
3757 demand_empty_rest_of_line ();
921e5f0a
PB
3758 if (unwind.proc_start)
3759 {
c921be7d 3760 as_bad (_("duplicate .fnstart directive"));
921e5f0a
PB
3761 return;
3762 }
3763
c19d1205
ZW
3764 /* Mark the start of the function. */
3765 unwind.proc_start = expr_build_dot ();
b99bd4ef 3766
c19d1205
ZW
3767 /* Reset the rest of the unwind info. */
3768 unwind.opcode_count = 0;
3769 unwind.table_entry = NULL;
3770 unwind.personality_routine = NULL;
3771 unwind.personality_index = -1;
3772 unwind.frame_size = 0;
3773 unwind.fp_offset = 0;
fdfde340 3774 unwind.fp_reg = REG_SP;
c19d1205
ZW
3775 unwind.fp_used = 0;
3776 unwind.sp_restored = 0;
3777}
b99bd4ef 3778
b99bd4ef 3779
c19d1205
ZW
3780/* Parse a handlerdata directive. Creates the exception handling table entry
3781 for the function. */
b99bd4ef 3782
c19d1205
ZW
3783static void
3784s_arm_unwind_handlerdata (int ignored ATTRIBUTE_UNUSED)
3785{
3786 demand_empty_rest_of_line ();
921e5f0a 3787 if (!unwind.proc_start)
c921be7d 3788 as_bad (MISSING_FNSTART);
921e5f0a 3789
c19d1205 3790 if (unwind.table_entry)
6decc662 3791 as_bad (_("duplicate .handlerdata directive"));
f02232aa 3792
c19d1205
ZW
3793 create_unwind_entry (1);
3794}
a737bd4d 3795
c19d1205 3796/* Parse an unwind_fnend directive. Generates the index table entry. */
b99bd4ef 3797
c19d1205
ZW
3798static void
3799s_arm_unwind_fnend (int ignored ATTRIBUTE_UNUSED)
3800{
3801 long where;
3802 char *ptr;
3803 valueT val;
940b5ce0 3804 unsigned int marked_pr_dependency;
f02232aa 3805
c19d1205 3806 demand_empty_rest_of_line ();
f02232aa 3807
921e5f0a
PB
3808 if (!unwind.proc_start)
3809 {
c921be7d 3810 as_bad (_(".fnend directive without .fnstart"));
921e5f0a
PB
3811 return;
3812 }
3813
c19d1205
ZW
3814 /* Add eh table entry. */
3815 if (unwind.table_entry == NULL)
3816 val = create_unwind_entry (0);
3817 else
3818 val = 0;
f02232aa 3819
c19d1205
ZW
3820 /* Add index table entry. This is two words. */
3821 start_unwind_section (unwind.saved_seg, 1);
3822 frag_align (2, 0, 0);
3823 record_alignment (now_seg, 2);
b99bd4ef 3824
c19d1205 3825 ptr = frag_more (8);
5011093d 3826 memset (ptr, 0, 8);
c19d1205 3827 where = frag_now_fix () - 8;
f02232aa 3828
c19d1205
ZW
3829 /* Self relative offset of the function start. */
3830 fix_new (frag_now, where, 4, unwind.proc_start, 0, 1,
3831 BFD_RELOC_ARM_PREL31);
f02232aa 3832
c19d1205
ZW
3833 /* Indicate dependency on EHABI-defined personality routines to the
3834 linker, if it hasn't been done already. */
940b5ce0
DJ
3835 marked_pr_dependency
3836 = seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency;
c19d1205
ZW
3837 if (unwind.personality_index >= 0 && unwind.personality_index < 3
3838 && !(marked_pr_dependency & (1 << unwind.personality_index)))
3839 {
5f4273c7
NC
3840 static const char *const name[] =
3841 {
3842 "__aeabi_unwind_cpp_pr0",
3843 "__aeabi_unwind_cpp_pr1",
3844 "__aeabi_unwind_cpp_pr2"
3845 };
c19d1205
ZW
3846 symbolS *pr = symbol_find_or_make (name[unwind.personality_index]);
3847 fix_new (frag_now, where, 0, pr, 0, 1, BFD_RELOC_NONE);
c19d1205 3848 seg_info (now_seg)->tc_segment_info_data.marked_pr_dependency
940b5ce0 3849 |= 1 << unwind.personality_index;
c19d1205 3850 }
f02232aa 3851
c19d1205
ZW
3852 if (val)
3853 /* Inline exception table entry. */
3854 md_number_to_chars (ptr + 4, val, 4);
3855 else
3856 /* Self relative offset of the table entry. */
3857 fix_new (frag_now, where + 4, 4, unwind.table_entry, 0, 1,
3858 BFD_RELOC_ARM_PREL31);
f02232aa 3859
c19d1205
ZW
3860 /* Restore the original section. */
3861 subseg_set (unwind.saved_seg, unwind.saved_subseg);
921e5f0a
PB
3862
3863 unwind.proc_start = NULL;
c19d1205 3864}
f02232aa 3865
f02232aa 3866
c19d1205 3867/* Parse an unwind_cantunwind directive. */
b99bd4ef 3868
c19d1205
ZW
3869static void
3870s_arm_unwind_cantunwind (int ignored ATTRIBUTE_UNUSED)
3871{
3872 demand_empty_rest_of_line ();
921e5f0a 3873 if (!unwind.proc_start)
c921be7d 3874 as_bad (MISSING_FNSTART);
921e5f0a 3875
c19d1205
ZW
3876 if (unwind.personality_routine || unwind.personality_index != -1)
3877 as_bad (_("personality routine specified for cantunwind frame"));
b99bd4ef 3878
c19d1205
ZW
3879 unwind.personality_index = -2;
3880}
b99bd4ef 3881
b99bd4ef 3882
c19d1205 3883/* Parse a personalityindex directive. */
b99bd4ef 3884
c19d1205
ZW
3885static void
3886s_arm_unwind_personalityindex (int ignored ATTRIBUTE_UNUSED)
3887{
3888 expressionS exp;
b99bd4ef 3889
921e5f0a 3890 if (!unwind.proc_start)
c921be7d 3891 as_bad (MISSING_FNSTART);
921e5f0a 3892
c19d1205
ZW
3893 if (unwind.personality_routine || unwind.personality_index != -1)
3894 as_bad (_("duplicate .personalityindex directive"));
b99bd4ef 3895
c19d1205 3896 expression (&exp);
b99bd4ef 3897
c19d1205
ZW
3898 if (exp.X_op != O_constant
3899 || exp.X_add_number < 0 || exp.X_add_number > 15)
b99bd4ef 3900 {
c19d1205
ZW
3901 as_bad (_("bad personality routine number"));
3902 ignore_rest_of_line ();
3903 return;
b99bd4ef
NC
3904 }
3905
c19d1205 3906 unwind.personality_index = exp.X_add_number;
b99bd4ef 3907
c19d1205
ZW
3908 demand_empty_rest_of_line ();
3909}
e16bb312 3910
e16bb312 3911
c19d1205 3912/* Parse a personality directive. */
e16bb312 3913
c19d1205
ZW
3914static void
3915s_arm_unwind_personality (int ignored ATTRIBUTE_UNUSED)
3916{
3917 char *name, *p, c;
a737bd4d 3918
921e5f0a 3919 if (!unwind.proc_start)
c921be7d 3920 as_bad (MISSING_FNSTART);
921e5f0a 3921
c19d1205
ZW
3922 if (unwind.personality_routine || unwind.personality_index != -1)
3923 as_bad (_("duplicate .personality directive"));
a737bd4d 3924
d02603dc 3925 c = get_symbol_name (& name);
c19d1205 3926 p = input_line_pointer;
d02603dc
NC
3927 if (c == '"')
3928 ++ input_line_pointer;
c19d1205
ZW
3929 unwind.personality_routine = symbol_find_or_make (name);
3930 *p = c;
3931 demand_empty_rest_of_line ();
3932}
e16bb312 3933
e16bb312 3934
c19d1205 3935/* Parse a directive saving core registers. */
e16bb312 3936
c19d1205
ZW
3937static void
3938s_arm_unwind_save_core (void)
e16bb312 3939{
c19d1205
ZW
3940 valueT op;
3941 long range;
3942 int n;
e16bb312 3943
c19d1205
ZW
3944 range = parse_reg_list (&input_line_pointer);
3945 if (range == FAIL)
e16bb312 3946 {
c19d1205
ZW
3947 as_bad (_("expected register list"));
3948 ignore_rest_of_line ();
3949 return;
3950 }
e16bb312 3951
c19d1205 3952 demand_empty_rest_of_line ();
e16bb312 3953
c19d1205
ZW
3954 /* Turn .unwind_movsp ip followed by .unwind_save {..., ip, ...}
3955 into .unwind_save {..., sp...}. We aren't bothered about the value of
3956 ip because it is clobbered by calls. */
3957 if (unwind.sp_restored && unwind.fp_reg == 12
3958 && (range & 0x3000) == 0x1000)
3959 {
3960 unwind.opcode_count--;
3961 unwind.sp_restored = 0;
3962 range = (range | 0x2000) & ~0x1000;
3963 unwind.pending_offset = 0;
3964 }
e16bb312 3965
01ae4198
DJ
3966 /* Pop r4-r15. */
3967 if (range & 0xfff0)
c19d1205 3968 {
01ae4198
DJ
3969 /* See if we can use the short opcodes. These pop a block of up to 8
3970 registers starting with r4, plus maybe r14. */
3971 for (n = 0; n < 8; n++)
3972 {
3973 /* Break at the first non-saved register. */
3974 if ((range & (1 << (n + 4))) == 0)
3975 break;
3976 }
3977 /* See if there are any other bits set. */
3978 if (n == 0 || (range & (0xfff0 << n) & 0xbff0) != 0)
3979 {
3980 /* Use the long form. */
3981 op = 0x8000 | ((range >> 4) & 0xfff);
3982 add_unwind_opcode (op, 2);
3983 }
0dd132b6 3984 else
01ae4198
DJ
3985 {
3986 /* Use the short form. */
3987 if (range & 0x4000)
3988 op = 0xa8; /* Pop r14. */
3989 else
3990 op = 0xa0; /* Do not pop r14. */
3991 op |= (n - 1);
3992 add_unwind_opcode (op, 1);
3993 }
c19d1205 3994 }
0dd132b6 3995
c19d1205
ZW
3996 /* Pop r0-r3. */
3997 if (range & 0xf)
3998 {
3999 op = 0xb100 | (range & 0xf);
4000 add_unwind_opcode (op, 2);
0dd132b6
NC
4001 }
4002
c19d1205
ZW
4003 /* Record the number of bytes pushed. */
4004 for (n = 0; n < 16; n++)
4005 {
4006 if (range & (1 << n))
4007 unwind.frame_size += 4;
4008 }
0dd132b6
NC
4009}
4010
c19d1205
ZW
4011
4012/* Parse a directive saving FPA registers. */
b99bd4ef
NC
4013
4014static void
c19d1205 4015s_arm_unwind_save_fpa (int reg)
b99bd4ef 4016{
c19d1205
ZW
4017 expressionS exp;
4018 int num_regs;
4019 valueT op;
b99bd4ef 4020
c19d1205
ZW
4021 /* Get Number of registers to transfer. */
4022 if (skip_past_comma (&input_line_pointer) != FAIL)
4023 expression (&exp);
4024 else
4025 exp.X_op = O_illegal;
b99bd4ef 4026
c19d1205 4027 if (exp.X_op != O_constant)
b99bd4ef 4028 {
c19d1205
ZW
4029 as_bad (_("expected , <constant>"));
4030 ignore_rest_of_line ();
b99bd4ef
NC
4031 return;
4032 }
4033
c19d1205
ZW
4034 num_regs = exp.X_add_number;
4035
4036 if (num_regs < 1 || num_regs > 4)
b99bd4ef 4037 {
c19d1205
ZW
4038 as_bad (_("number of registers must be in the range [1:4]"));
4039 ignore_rest_of_line ();
b99bd4ef
NC
4040 return;
4041 }
4042
c19d1205 4043 demand_empty_rest_of_line ();
b99bd4ef 4044
c19d1205
ZW
4045 if (reg == 4)
4046 {
4047 /* Short form. */
4048 op = 0xb4 | (num_regs - 1);
4049 add_unwind_opcode (op, 1);
4050 }
b99bd4ef
NC
4051 else
4052 {
c19d1205
ZW
4053 /* Long form. */
4054 op = 0xc800 | (reg << 4) | (num_regs - 1);
4055 add_unwind_opcode (op, 2);
b99bd4ef 4056 }
c19d1205 4057 unwind.frame_size += num_regs * 12;
b99bd4ef
NC
4058}
4059
c19d1205 4060
fa073d69
MS
4061/* Parse a directive saving VFP registers for ARMv6 and above. */
4062
4063static void
4064s_arm_unwind_save_vfp_armv6 (void)
4065{
4066 int count;
4067 unsigned int start;
4068 valueT op;
4069 int num_vfpv3_regs = 0;
4070 int num_regs_below_16;
4071
4072 count = parse_vfp_reg_list (&input_line_pointer, &start, REGLIST_VFP_D);
4073 if (count == FAIL)
4074 {
4075 as_bad (_("expected register list"));
4076 ignore_rest_of_line ();
4077 return;
4078 }
4079
4080 demand_empty_rest_of_line ();
4081
4082 /* We always generate FSTMD/FLDMD-style unwinding opcodes (rather
4083 than FSTMX/FLDMX-style ones). */
4084
4085 /* Generate opcode for (VFPv3) registers numbered in the range 16 .. 31. */
4086 if (start >= 16)
4087 num_vfpv3_regs = count;
4088 else if (start + count > 16)
4089 num_vfpv3_regs = start + count - 16;
4090
4091 if (num_vfpv3_regs > 0)
4092 {
4093 int start_offset = start > 16 ? start - 16 : 0;
4094 op = 0xc800 | (start_offset << 4) | (num_vfpv3_regs - 1);
4095 add_unwind_opcode (op, 2);
4096 }
4097
4098 /* Generate opcode for registers numbered in the range 0 .. 15. */
4099 num_regs_below_16 = num_vfpv3_regs > 0 ? 16 - (int) start : count;
9c2799c2 4100 gas_assert (num_regs_below_16 + num_vfpv3_regs == count);
fa073d69
MS
4101 if (num_regs_below_16 > 0)
4102 {
4103 op = 0xc900 | (start << 4) | (num_regs_below_16 - 1);
4104 add_unwind_opcode (op, 2);
4105 }
4106
4107 unwind.frame_size += count * 8;
4108}
4109
4110
4111/* Parse a directive saving VFP registers for pre-ARMv6. */
b99bd4ef
NC
4112
4113static void
c19d1205 4114s_arm_unwind_save_vfp (void)
b99bd4ef 4115{
c19d1205 4116 int count;
ca3f61f7 4117 unsigned int reg;
c19d1205 4118 valueT op;
b99bd4ef 4119
5287ad62 4120 count = parse_vfp_reg_list (&input_line_pointer, &reg, REGLIST_VFP_D);
c19d1205 4121 if (count == FAIL)
b99bd4ef 4122 {
c19d1205
ZW
4123 as_bad (_("expected register list"));
4124 ignore_rest_of_line ();
b99bd4ef
NC
4125 return;
4126 }
4127
c19d1205 4128 demand_empty_rest_of_line ();
b99bd4ef 4129
c19d1205 4130 if (reg == 8)
b99bd4ef 4131 {
c19d1205
ZW
4132 /* Short form. */
4133 op = 0xb8 | (count - 1);
4134 add_unwind_opcode (op, 1);
b99bd4ef 4135 }
c19d1205 4136 else
b99bd4ef 4137 {
c19d1205
ZW
4138 /* Long form. */
4139 op = 0xb300 | (reg << 4) | (count - 1);
4140 add_unwind_opcode (op, 2);
b99bd4ef 4141 }
c19d1205
ZW
4142 unwind.frame_size += count * 8 + 4;
4143}
b99bd4ef 4144
b99bd4ef 4145
c19d1205
ZW
4146/* Parse a directive saving iWMMXt data registers. */
4147
4148static void
4149s_arm_unwind_save_mmxwr (void)
4150{
4151 int reg;
4152 int hi_reg;
4153 int i;
4154 unsigned mask = 0;
4155 valueT op;
b99bd4ef 4156
c19d1205
ZW
4157 if (*input_line_pointer == '{')
4158 input_line_pointer++;
b99bd4ef 4159
c19d1205 4160 do
b99bd4ef 4161 {
dcbf9037 4162 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
b99bd4ef 4163
c19d1205 4164 if (reg == FAIL)
b99bd4ef 4165 {
9b7132d3 4166 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205 4167 goto error;
b99bd4ef
NC
4168 }
4169
c19d1205
ZW
4170 if (mask >> reg)
4171 as_tsktsk (_("register list not in ascending order"));
4172 mask |= 1 << reg;
b99bd4ef 4173
c19d1205
ZW
4174 if (*input_line_pointer == '-')
4175 {
4176 input_line_pointer++;
dcbf9037 4177 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWR);
c19d1205
ZW
4178 if (hi_reg == FAIL)
4179 {
9b7132d3 4180 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWR]));
c19d1205
ZW
4181 goto error;
4182 }
4183 else if (reg >= hi_reg)
4184 {
4185 as_bad (_("bad register range"));
4186 goto error;
4187 }
4188 for (; reg < hi_reg; reg++)
4189 mask |= 1 << reg;
4190 }
4191 }
4192 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4193
d996d970 4194 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4195
c19d1205 4196 demand_empty_rest_of_line ();
b99bd4ef 4197
708587a4 4198 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4199 the list. */
4200 flush_pending_unwind ();
b99bd4ef 4201
c19d1205 4202 for (i = 0; i < 16; i++)
b99bd4ef 4203 {
c19d1205
ZW
4204 if (mask & (1 << i))
4205 unwind.frame_size += 8;
b99bd4ef
NC
4206 }
4207
c19d1205
ZW
4208 /* Attempt to combine with a previous opcode. We do this because gcc
4209 likes to output separate unwind directives for a single block of
4210 registers. */
4211 if (unwind.opcode_count > 0)
b99bd4ef 4212 {
c19d1205
ZW
4213 i = unwind.opcodes[unwind.opcode_count - 1];
4214 if ((i & 0xf8) == 0xc0)
4215 {
4216 i &= 7;
4217 /* Only merge if the blocks are contiguous. */
4218 if (i < 6)
4219 {
4220 if ((mask & 0xfe00) == (1 << 9))
4221 {
4222 mask |= ((1 << (i + 11)) - 1) & 0xfc00;
4223 unwind.opcode_count--;
4224 }
4225 }
4226 else if (i == 6 && unwind.opcode_count >= 2)
4227 {
4228 i = unwind.opcodes[unwind.opcode_count - 2];
4229 reg = i >> 4;
4230 i &= 0xf;
b99bd4ef 4231
c19d1205
ZW
4232 op = 0xffff << (reg - 1);
4233 if (reg > 0
87a1fd79 4234 && ((mask & op) == (1u << (reg - 1))))
c19d1205
ZW
4235 {
4236 op = (1 << (reg + i + 1)) - 1;
4237 op &= ~((1 << reg) - 1);
4238 mask |= op;
4239 unwind.opcode_count -= 2;
4240 }
4241 }
4242 }
b99bd4ef
NC
4243 }
4244
c19d1205
ZW
4245 hi_reg = 15;
4246 /* We want to generate opcodes in the order the registers have been
4247 saved, ie. descending order. */
4248 for (reg = 15; reg >= -1; reg--)
b99bd4ef 4249 {
c19d1205
ZW
4250 /* Save registers in blocks. */
4251 if (reg < 0
4252 || !(mask & (1 << reg)))
4253 {
4254 /* We found an unsaved reg. Generate opcodes to save the
5f4273c7 4255 preceding block. */
c19d1205
ZW
4256 if (reg != hi_reg)
4257 {
4258 if (reg == 9)
4259 {
4260 /* Short form. */
4261 op = 0xc0 | (hi_reg - 10);
4262 add_unwind_opcode (op, 1);
4263 }
4264 else
4265 {
4266 /* Long form. */
4267 op = 0xc600 | ((reg + 1) << 4) | ((hi_reg - reg) - 1);
4268 add_unwind_opcode (op, 2);
4269 }
4270 }
4271 hi_reg = reg - 1;
4272 }
b99bd4ef
NC
4273 }
4274
c19d1205
ZW
4275 return;
4276error:
4277 ignore_rest_of_line ();
b99bd4ef
NC
4278}
4279
4280static void
c19d1205 4281s_arm_unwind_save_mmxwcg (void)
b99bd4ef 4282{
c19d1205
ZW
4283 int reg;
4284 int hi_reg;
4285 unsigned mask = 0;
4286 valueT op;
b99bd4ef 4287
c19d1205
ZW
4288 if (*input_line_pointer == '{')
4289 input_line_pointer++;
b99bd4ef 4290
477330fc
RM
4291 skip_whitespace (input_line_pointer);
4292
c19d1205 4293 do
b99bd4ef 4294 {
dcbf9037 4295 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
b99bd4ef 4296
c19d1205
ZW
4297 if (reg == FAIL)
4298 {
9b7132d3 4299 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4300 goto error;
4301 }
b99bd4ef 4302
c19d1205
ZW
4303 reg -= 8;
4304 if (mask >> reg)
4305 as_tsktsk (_("register list not in ascending order"));
4306 mask |= 1 << reg;
b99bd4ef 4307
c19d1205
ZW
4308 if (*input_line_pointer == '-')
4309 {
4310 input_line_pointer++;
dcbf9037 4311 hi_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_MMXWCG);
c19d1205
ZW
4312 if (hi_reg == FAIL)
4313 {
9b7132d3 4314 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_MMXWCG]));
c19d1205
ZW
4315 goto error;
4316 }
4317 else if (reg >= hi_reg)
4318 {
4319 as_bad (_("bad register range"));
4320 goto error;
4321 }
4322 for (; reg < hi_reg; reg++)
4323 mask |= 1 << reg;
4324 }
b99bd4ef 4325 }
c19d1205 4326 while (skip_past_comma (&input_line_pointer) != FAIL);
b99bd4ef 4327
d996d970 4328 skip_past_char (&input_line_pointer, '}');
b99bd4ef 4329
c19d1205
ZW
4330 demand_empty_rest_of_line ();
4331
708587a4 4332 /* Generate any deferred opcodes because we're going to be looking at
c19d1205
ZW
4333 the list. */
4334 flush_pending_unwind ();
b99bd4ef 4335
c19d1205 4336 for (reg = 0; reg < 16; reg++)
b99bd4ef 4337 {
c19d1205
ZW
4338 if (mask & (1 << reg))
4339 unwind.frame_size += 4;
b99bd4ef 4340 }
c19d1205
ZW
4341 op = 0xc700 | mask;
4342 add_unwind_opcode (op, 2);
4343 return;
4344error:
4345 ignore_rest_of_line ();
b99bd4ef
NC
4346}
4347
c19d1205 4348
fa073d69
MS
4349/* Parse an unwind_save directive.
4350 If the argument is non-zero, this is a .vsave directive. */
c19d1205 4351
b99bd4ef 4352static void
fa073d69 4353s_arm_unwind_save (int arch_v6)
b99bd4ef 4354{
c19d1205
ZW
4355 char *peek;
4356 struct reg_entry *reg;
4357 bfd_boolean had_brace = FALSE;
b99bd4ef 4358
921e5f0a 4359 if (!unwind.proc_start)
c921be7d 4360 as_bad (MISSING_FNSTART);
921e5f0a 4361
c19d1205
ZW
4362 /* Figure out what sort of save we have. */
4363 peek = input_line_pointer;
b99bd4ef 4364
c19d1205 4365 if (*peek == '{')
b99bd4ef 4366 {
c19d1205
ZW
4367 had_brace = TRUE;
4368 peek++;
b99bd4ef
NC
4369 }
4370
c19d1205 4371 reg = arm_reg_parse_multi (&peek);
b99bd4ef 4372
c19d1205 4373 if (!reg)
b99bd4ef 4374 {
c19d1205
ZW
4375 as_bad (_("register expected"));
4376 ignore_rest_of_line ();
b99bd4ef
NC
4377 return;
4378 }
4379
c19d1205 4380 switch (reg->type)
b99bd4ef 4381 {
c19d1205
ZW
4382 case REG_TYPE_FN:
4383 if (had_brace)
4384 {
4385 as_bad (_("FPA .unwind_save does not take a register list"));
4386 ignore_rest_of_line ();
4387 return;
4388 }
93ac2687 4389 input_line_pointer = peek;
c19d1205 4390 s_arm_unwind_save_fpa (reg->number);
b99bd4ef 4391 return;
c19d1205 4392
1f5afe1c
NC
4393 case REG_TYPE_RN:
4394 s_arm_unwind_save_core ();
4395 return;
4396
fa073d69
MS
4397 case REG_TYPE_VFD:
4398 if (arch_v6)
477330fc 4399 s_arm_unwind_save_vfp_armv6 ();
fa073d69 4400 else
477330fc 4401 s_arm_unwind_save_vfp ();
fa073d69 4402 return;
1f5afe1c
NC
4403
4404 case REG_TYPE_MMXWR:
4405 s_arm_unwind_save_mmxwr ();
4406 return;
4407
4408 case REG_TYPE_MMXWCG:
4409 s_arm_unwind_save_mmxwcg ();
4410 return;
c19d1205
ZW
4411
4412 default:
4413 as_bad (_(".unwind_save does not support this kind of register"));
4414 ignore_rest_of_line ();
b99bd4ef 4415 }
c19d1205 4416}
b99bd4ef 4417
b99bd4ef 4418
c19d1205
ZW
4419/* Parse an unwind_movsp directive. */
4420
4421static void
4422s_arm_unwind_movsp (int ignored ATTRIBUTE_UNUSED)
4423{
4424 int reg;
4425 valueT op;
4fa3602b 4426 int offset;
c19d1205 4427
921e5f0a 4428 if (!unwind.proc_start)
c921be7d 4429 as_bad (MISSING_FNSTART);
921e5f0a 4430
dcbf9037 4431 reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205 4432 if (reg == FAIL)
b99bd4ef 4433 {
9b7132d3 4434 as_bad ("%s", _(reg_expected_msgs[REG_TYPE_RN]));
c19d1205 4435 ignore_rest_of_line ();
b99bd4ef
NC
4436 return;
4437 }
4fa3602b
PB
4438
4439 /* Optional constant. */
4440 if (skip_past_comma (&input_line_pointer) != FAIL)
4441 {
4442 if (immediate_for_directive (&offset) == FAIL)
4443 return;
4444 }
4445 else
4446 offset = 0;
4447
c19d1205 4448 demand_empty_rest_of_line ();
b99bd4ef 4449
c19d1205 4450 if (reg == REG_SP || reg == REG_PC)
b99bd4ef 4451 {
c19d1205 4452 as_bad (_("SP and PC not permitted in .unwind_movsp directive"));
b99bd4ef
NC
4453 return;
4454 }
4455
c19d1205
ZW
4456 if (unwind.fp_reg != REG_SP)
4457 as_bad (_("unexpected .unwind_movsp directive"));
b99bd4ef 4458
c19d1205
ZW
4459 /* Generate opcode to restore the value. */
4460 op = 0x90 | reg;
4461 add_unwind_opcode (op, 1);
4462
4463 /* Record the information for later. */
4464 unwind.fp_reg = reg;
4fa3602b 4465 unwind.fp_offset = unwind.frame_size - offset;
c19d1205 4466 unwind.sp_restored = 1;
b05fe5cf
ZW
4467}
4468
c19d1205
ZW
4469/* Parse an unwind_pad directive. */
4470
b05fe5cf 4471static void
c19d1205 4472s_arm_unwind_pad (int ignored ATTRIBUTE_UNUSED)
b05fe5cf 4473{
c19d1205 4474 int offset;
b05fe5cf 4475
921e5f0a 4476 if (!unwind.proc_start)
c921be7d 4477 as_bad (MISSING_FNSTART);
921e5f0a 4478
c19d1205
ZW
4479 if (immediate_for_directive (&offset) == FAIL)
4480 return;
b99bd4ef 4481
c19d1205
ZW
4482 if (offset & 3)
4483 {
4484 as_bad (_("stack increment must be multiple of 4"));
4485 ignore_rest_of_line ();
4486 return;
4487 }
b99bd4ef 4488
c19d1205
ZW
4489 /* Don't generate any opcodes, just record the details for later. */
4490 unwind.frame_size += offset;
4491 unwind.pending_offset += offset;
4492
4493 demand_empty_rest_of_line ();
4494}
4495
4496/* Parse an unwind_setfp directive. */
4497
4498static void
4499s_arm_unwind_setfp (int ignored ATTRIBUTE_UNUSED)
b99bd4ef 4500{
c19d1205
ZW
4501 int sp_reg;
4502 int fp_reg;
4503 int offset;
4504
921e5f0a 4505 if (!unwind.proc_start)
c921be7d 4506 as_bad (MISSING_FNSTART);
921e5f0a 4507
dcbf9037 4508 fp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
c19d1205
ZW
4509 if (skip_past_comma (&input_line_pointer) == FAIL)
4510 sp_reg = FAIL;
4511 else
dcbf9037 4512 sp_reg = arm_reg_parse (&input_line_pointer, REG_TYPE_RN);
b99bd4ef 4513
c19d1205
ZW
4514 if (fp_reg == FAIL || sp_reg == FAIL)
4515 {
4516 as_bad (_("expected <reg>, <reg>"));
4517 ignore_rest_of_line ();
4518 return;
4519 }
b99bd4ef 4520
c19d1205
ZW
4521 /* Optional constant. */
4522 if (skip_past_comma (&input_line_pointer) != FAIL)
4523 {
4524 if (immediate_for_directive (&offset) == FAIL)
4525 return;
4526 }
4527 else
4528 offset = 0;
a737bd4d 4529
c19d1205 4530 demand_empty_rest_of_line ();
a737bd4d 4531
fdfde340 4532 if (sp_reg != REG_SP && sp_reg != unwind.fp_reg)
a737bd4d 4533 {
c19d1205
ZW
4534 as_bad (_("register must be either sp or set by a previous"
4535 "unwind_movsp directive"));
4536 return;
a737bd4d
NC
4537 }
4538
c19d1205
ZW
4539 /* Don't generate any opcodes, just record the information for later. */
4540 unwind.fp_reg = fp_reg;
4541 unwind.fp_used = 1;
fdfde340 4542 if (sp_reg == REG_SP)
c19d1205
ZW
4543 unwind.fp_offset = unwind.frame_size - offset;
4544 else
4545 unwind.fp_offset -= offset;
a737bd4d
NC
4546}
4547
c19d1205
ZW
4548/* Parse an unwind_raw directive. */
4549
4550static void
4551s_arm_unwind_raw (int ignored ATTRIBUTE_UNUSED)
a737bd4d 4552{
c19d1205 4553 expressionS exp;
708587a4 4554 /* This is an arbitrary limit. */
c19d1205
ZW
4555 unsigned char op[16];
4556 int count;
a737bd4d 4557
921e5f0a 4558 if (!unwind.proc_start)
c921be7d 4559 as_bad (MISSING_FNSTART);
921e5f0a 4560
c19d1205
ZW
4561 expression (&exp);
4562 if (exp.X_op == O_constant
4563 && skip_past_comma (&input_line_pointer) != FAIL)
a737bd4d 4564 {
c19d1205
ZW
4565 unwind.frame_size += exp.X_add_number;
4566 expression (&exp);
4567 }
4568 else
4569 exp.X_op = O_illegal;
a737bd4d 4570
c19d1205
ZW
4571 if (exp.X_op != O_constant)
4572 {
4573 as_bad (_("expected <offset>, <opcode>"));
4574 ignore_rest_of_line ();
4575 return;
4576 }
a737bd4d 4577
c19d1205 4578 count = 0;
a737bd4d 4579
c19d1205
ZW
4580 /* Parse the opcode. */
4581 for (;;)
4582 {
4583 if (count >= 16)
4584 {
4585 as_bad (_("unwind opcode too long"));
4586 ignore_rest_of_line ();
a737bd4d 4587 }
c19d1205 4588 if (exp.X_op != O_constant || exp.X_add_number & ~0xff)
a737bd4d 4589 {
c19d1205
ZW
4590 as_bad (_("invalid unwind opcode"));
4591 ignore_rest_of_line ();
4592 return;
a737bd4d 4593 }
c19d1205 4594 op[count++] = exp.X_add_number;
a737bd4d 4595
c19d1205
ZW
4596 /* Parse the next byte. */
4597 if (skip_past_comma (&input_line_pointer) == FAIL)
4598 break;
a737bd4d 4599
c19d1205
ZW
4600 expression (&exp);
4601 }
b99bd4ef 4602
c19d1205
ZW
4603 /* Add the opcode bytes in reverse order. */
4604 while (count--)
4605 add_unwind_opcode (op[count], 1);
b99bd4ef 4606
c19d1205 4607 demand_empty_rest_of_line ();
b99bd4ef 4608}
ee065d83
PB
4609
4610
4611/* Parse a .eabi_attribute directive. */
4612
4613static void
4614s_arm_eabi_attribute (int ignored ATTRIBUTE_UNUSED)
4615{
0420f52b 4616 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC);
ee3c0378
AS
4617
4618 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
4619 attributes_set_explicitly[tag] = 1;
ee065d83
PB
4620}
4621
0855e32b
NS
4622/* Emit a tls fix for the symbol. */
4623
4624static void
4625s_arm_tls_descseq (int ignored ATTRIBUTE_UNUSED)
4626{
4627 char *p;
4628 expressionS exp;
4629#ifdef md_flush_pending_output
4630 md_flush_pending_output ();
4631#endif
4632
4633#ifdef md_cons_align
4634 md_cons_align (4);
4635#endif
4636
4637 /* Since we're just labelling the code, there's no need to define a
4638 mapping symbol. */
4639 expression (&exp);
4640 p = obstack_next_free (&frchain_now->frch_obstack);
4641 fix_new_arm (frag_now, p - frag_now->fr_literal, 4, &exp, 0,
4642 thumb_mode ? BFD_RELOC_ARM_THM_TLS_DESCSEQ
4643 : BFD_RELOC_ARM_TLS_DESCSEQ);
4644}
cdf9ccec 4645#endif /* OBJ_ELF */
0855e32b 4646
ee065d83 4647static void s_arm_arch (int);
7a1d4c38 4648static void s_arm_object_arch (int);
ee065d83
PB
4649static void s_arm_cpu (int);
4650static void s_arm_fpu (int);
69133863 4651static void s_arm_arch_extension (int);
b99bd4ef 4652
f0927246
NC
4653#ifdef TE_PE
4654
4655static void
5f4273c7 4656pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
f0927246
NC
4657{
4658 expressionS exp;
4659
4660 do
4661 {
4662 expression (&exp);
4663 if (exp.X_op == O_symbol)
4664 exp.X_op = O_secrel;
4665
4666 emit_expr (&exp, 4);
4667 }
4668 while (*input_line_pointer++ == ',');
4669
4670 input_line_pointer--;
4671 demand_empty_rest_of_line ();
4672}
4673#endif /* TE_PE */
4674
c19d1205
ZW
4675/* This table describes all the machine specific pseudo-ops the assembler
4676 has to support. The fields are:
4677 pseudo-op name without dot
4678 function to call to execute this pseudo-op
4679 Integer arg to pass to the function. */
b99bd4ef 4680
c19d1205 4681const pseudo_typeS md_pseudo_table[] =
b99bd4ef 4682{
c19d1205
ZW
4683 /* Never called because '.req' does not start a line. */
4684 { "req", s_req, 0 },
dcbf9037
JB
4685 /* Following two are likewise never called. */
4686 { "dn", s_dn, 0 },
4687 { "qn", s_qn, 0 },
c19d1205
ZW
4688 { "unreq", s_unreq, 0 },
4689 { "bss", s_bss, 0 },
db2ed2e0 4690 { "align", s_align_ptwo, 2 },
c19d1205
ZW
4691 { "arm", s_arm, 0 },
4692 { "thumb", s_thumb, 0 },
4693 { "code", s_code, 0 },
4694 { "force_thumb", s_force_thumb, 0 },
4695 { "thumb_func", s_thumb_func, 0 },
4696 { "thumb_set", s_thumb_set, 0 },
4697 { "even", s_even, 0 },
4698 { "ltorg", s_ltorg, 0 },
4699 { "pool", s_ltorg, 0 },
4700 { "syntax", s_syntax, 0 },
8463be01
PB
4701 { "cpu", s_arm_cpu, 0 },
4702 { "arch", s_arm_arch, 0 },
7a1d4c38 4703 { "object_arch", s_arm_object_arch, 0 },
8463be01 4704 { "fpu", s_arm_fpu, 0 },
69133863 4705 { "arch_extension", s_arm_arch_extension, 0 },
c19d1205 4706#ifdef OBJ_ELF
c921be7d
NC
4707 { "word", s_arm_elf_cons, 4 },
4708 { "long", s_arm_elf_cons, 4 },
4709 { "inst.n", s_arm_elf_inst, 2 },
4710 { "inst.w", s_arm_elf_inst, 4 },
4711 { "inst", s_arm_elf_inst, 0 },
4712 { "rel31", s_arm_rel31, 0 },
c19d1205
ZW
4713 { "fnstart", s_arm_unwind_fnstart, 0 },
4714 { "fnend", s_arm_unwind_fnend, 0 },
4715 { "cantunwind", s_arm_unwind_cantunwind, 0 },
4716 { "personality", s_arm_unwind_personality, 0 },
4717 { "personalityindex", s_arm_unwind_personalityindex, 0 },
4718 { "handlerdata", s_arm_unwind_handlerdata, 0 },
4719 { "save", s_arm_unwind_save, 0 },
fa073d69 4720 { "vsave", s_arm_unwind_save, 1 },
c19d1205
ZW
4721 { "movsp", s_arm_unwind_movsp, 0 },
4722 { "pad", s_arm_unwind_pad, 0 },
4723 { "setfp", s_arm_unwind_setfp, 0 },
4724 { "unwind_raw", s_arm_unwind_raw, 0 },
ee065d83 4725 { "eabi_attribute", s_arm_eabi_attribute, 0 },
0855e32b 4726 { "tlsdescseq", s_arm_tls_descseq, 0 },
c19d1205
ZW
4727#else
4728 { "word", cons, 4},
f0927246
NC
4729
4730 /* These are used for dwarf. */
4731 {"2byte", cons, 2},
4732 {"4byte", cons, 4},
4733 {"8byte", cons, 8},
4734 /* These are used for dwarf2. */
4735 { "file", (void (*) (int)) dwarf2_directive_file, 0 },
4736 { "loc", dwarf2_directive_loc, 0 },
4737 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
c19d1205
ZW
4738#endif
4739 { "extend", float_cons, 'x' },
4740 { "ldouble", float_cons, 'x' },
4741 { "packed", float_cons, 'p' },
f0927246
NC
4742#ifdef TE_PE
4743 {"secrel32", pe_directive_secrel, 0},
4744#endif
2e6976a8
DG
4745
4746 /* These are for compatibility with CodeComposer Studio. */
4747 {"ref", s_ccs_ref, 0},
4748 {"def", s_ccs_def, 0},
4749 {"asmfunc", s_ccs_asmfunc, 0},
4750 {"endasmfunc", s_ccs_endasmfunc, 0},
4751
c19d1205
ZW
4752 { 0, 0, 0 }
4753};
4754\f
4755/* Parser functions used exclusively in instruction operands. */
b99bd4ef 4756
c19d1205
ZW
4757/* Generic immediate-value read function for use in insn parsing.
4758 STR points to the beginning of the immediate (the leading #);
4759 VAL receives the value; if the value is outside [MIN, MAX]
4760 issue an error. PREFIX_OPT is true if the immediate prefix is
4761 optional. */
b99bd4ef 4762
c19d1205
ZW
4763static int
4764parse_immediate (char **str, int *val, int min, int max,
4765 bfd_boolean prefix_opt)
4766{
4767 expressionS exp;
4768 my_get_expression (&exp, str, prefix_opt ? GE_OPT_PREFIX : GE_IMM_PREFIX);
4769 if (exp.X_op != O_constant)
b99bd4ef 4770 {
c19d1205
ZW
4771 inst.error = _("constant expression required");
4772 return FAIL;
4773 }
b99bd4ef 4774
c19d1205
ZW
4775 if (exp.X_add_number < min || exp.X_add_number > max)
4776 {
4777 inst.error = _("immediate value out of range");
4778 return FAIL;
4779 }
b99bd4ef 4780
c19d1205
ZW
4781 *val = exp.X_add_number;
4782 return SUCCESS;
4783}
b99bd4ef 4784
5287ad62 4785/* Less-generic immediate-value read function with the possibility of loading a
036dc3f7 4786 big (64-bit) immediate, as required by Neon VMOV, VMVN and logic immediate
5287ad62
JB
4787 instructions. Puts the result directly in inst.operands[i]. */
4788
4789static int
8335d6aa
JW
4790parse_big_immediate (char **str, int i, expressionS *in_exp,
4791 bfd_boolean allow_symbol_p)
5287ad62
JB
4792{
4793 expressionS exp;
8335d6aa 4794 expressionS *exp_p = in_exp ? in_exp : &exp;
5287ad62
JB
4795 char *ptr = *str;
4796
8335d6aa 4797 my_get_expression (exp_p, &ptr, GE_OPT_PREFIX_BIG);
5287ad62 4798
8335d6aa 4799 if (exp_p->X_op == O_constant)
036dc3f7 4800 {
8335d6aa 4801 inst.operands[i].imm = exp_p->X_add_number & 0xffffffff;
036dc3f7
PB
4802 /* If we're on a 64-bit host, then a 64-bit number can be returned using
4803 O_constant. We have to be careful not to break compilation for
4804 32-bit X_add_number, though. */
8335d6aa 4805 if ((exp_p->X_add_number & ~(offsetT)(0xffffffffU)) != 0)
036dc3f7 4806 {
8335d6aa
JW
4807 /* X >> 32 is illegal if sizeof (exp_p->X_add_number) == 4. */
4808 inst.operands[i].reg = (((exp_p->X_add_number >> 16) >> 16)
4809 & 0xffffffff);
036dc3f7
PB
4810 inst.operands[i].regisimm = 1;
4811 }
4812 }
8335d6aa
JW
4813 else if (exp_p->X_op == O_big
4814 && LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 32)
5287ad62
JB
4815 {
4816 unsigned parts = 32 / LITTLENUM_NUMBER_OF_BITS, j, idx = 0;
95b75c01 4817
5287ad62 4818 /* Bignums have their least significant bits in
477330fc
RM
4819 generic_bignum[0]. Make sure we put 32 bits in imm and
4820 32 bits in reg, in a (hopefully) portable way. */
9c2799c2 4821 gas_assert (parts != 0);
95b75c01
NC
4822
4823 /* Make sure that the number is not too big.
4824 PR 11972: Bignums can now be sign-extended to the
4825 size of a .octa so check that the out of range bits
4826 are all zero or all one. */
8335d6aa 4827 if (LITTLENUM_NUMBER_OF_BITS * exp_p->X_add_number > 64)
95b75c01
NC
4828 {
4829 LITTLENUM_TYPE m = -1;
4830
4831 if (generic_bignum[parts * 2] != 0
4832 && generic_bignum[parts * 2] != m)
4833 return FAIL;
4834
8335d6aa 4835 for (j = parts * 2 + 1; j < (unsigned) exp_p->X_add_number; j++)
95b75c01
NC
4836 if (generic_bignum[j] != generic_bignum[j-1])
4837 return FAIL;
4838 }
4839
5287ad62
JB
4840 inst.operands[i].imm = 0;
4841 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4842 inst.operands[i].imm |= generic_bignum[idx]
4843 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4844 inst.operands[i].reg = 0;
4845 for (j = 0; j < parts; j++, idx++)
477330fc
RM
4846 inst.operands[i].reg |= generic_bignum[idx]
4847 << (LITTLENUM_NUMBER_OF_BITS * j);
5287ad62
JB
4848 inst.operands[i].regisimm = 1;
4849 }
8335d6aa 4850 else if (!(exp_p->X_op == O_symbol && allow_symbol_p))
5287ad62 4851 return FAIL;
5f4273c7 4852
5287ad62
JB
4853 *str = ptr;
4854
4855 return SUCCESS;
4856}
4857
c19d1205
ZW
4858/* Returns the pseudo-register number of an FPA immediate constant,
4859 or FAIL if there isn't a valid constant here. */
b99bd4ef 4860
c19d1205
ZW
4861static int
4862parse_fpa_immediate (char ** str)
4863{
4864 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4865 char * save_in;
4866 expressionS exp;
4867 int i;
4868 int j;
b99bd4ef 4869
c19d1205
ZW
4870 /* First try and match exact strings, this is to guarantee
4871 that some formats will work even for cross assembly. */
b99bd4ef 4872
c19d1205
ZW
4873 for (i = 0; fp_const[i]; i++)
4874 {
4875 if (strncmp (*str, fp_const[i], strlen (fp_const[i])) == 0)
b99bd4ef 4876 {
c19d1205 4877 char *start = *str;
b99bd4ef 4878
c19d1205
ZW
4879 *str += strlen (fp_const[i]);
4880 if (is_end_of_line[(unsigned char) **str])
4881 return i + 8;
4882 *str = start;
4883 }
4884 }
b99bd4ef 4885
c19d1205
ZW
4886 /* Just because we didn't get a match doesn't mean that the constant
4887 isn't valid, just that it is in a format that we don't
4888 automatically recognize. Try parsing it with the standard
4889 expression routines. */
b99bd4ef 4890
c19d1205 4891 memset (words, 0, MAX_LITTLENUMS * sizeof (LITTLENUM_TYPE));
b99bd4ef 4892
c19d1205
ZW
4893 /* Look for a raw floating point number. */
4894 if ((save_in = atof_ieee (*str, 'x', words)) != NULL
4895 && is_end_of_line[(unsigned char) *save_in])
4896 {
4897 for (i = 0; i < NUM_FLOAT_VALS; i++)
4898 {
4899 for (j = 0; j < MAX_LITTLENUMS; j++)
b99bd4ef 4900 {
c19d1205
ZW
4901 if (words[j] != fp_values[i][j])
4902 break;
b99bd4ef
NC
4903 }
4904
c19d1205 4905 if (j == MAX_LITTLENUMS)
b99bd4ef 4906 {
c19d1205
ZW
4907 *str = save_in;
4908 return i + 8;
b99bd4ef
NC
4909 }
4910 }
4911 }
b99bd4ef 4912
c19d1205
ZW
4913 /* Try and parse a more complex expression, this will probably fail
4914 unless the code uses a floating point prefix (eg "0f"). */
4915 save_in = input_line_pointer;
4916 input_line_pointer = *str;
4917 if (expression (&exp) == absolute_section
4918 && exp.X_op == O_big
4919 && exp.X_add_number < 0)
4920 {
4921 /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
4922 Ditto for 15. */
ba592044
AM
4923#define X_PRECISION 5
4924#define E_PRECISION 15L
4925 if (gen_to_words (words, X_PRECISION, E_PRECISION) == 0)
c19d1205
ZW
4926 {
4927 for (i = 0; i < NUM_FLOAT_VALS; i++)
4928 {
4929 for (j = 0; j < MAX_LITTLENUMS; j++)
4930 {
4931 if (words[j] != fp_values[i][j])
4932 break;
4933 }
b99bd4ef 4934
c19d1205
ZW
4935 if (j == MAX_LITTLENUMS)
4936 {
4937 *str = input_line_pointer;
4938 input_line_pointer = save_in;
4939 return i + 8;
4940 }
4941 }
4942 }
b99bd4ef
NC
4943 }
4944
c19d1205
ZW
4945 *str = input_line_pointer;
4946 input_line_pointer = save_in;
4947 inst.error = _("invalid FPA immediate expression");
4948 return FAIL;
b99bd4ef
NC
4949}
4950
136da414
JB
4951/* Returns 1 if a number has "quarter-precision" float format
4952 0baBbbbbbc defgh000 00000000 00000000. */
4953
4954static int
4955is_quarter_float (unsigned imm)
4956{
4957 int bs = (imm & 0x20000000) ? 0x3e000000 : 0x40000000;
4958 return (imm & 0x7ffff) == 0 && ((imm & 0x7e000000) ^ bs) == 0;
4959}
4960
aacf0b33
KT
4961
4962/* Detect the presence of a floating point or integer zero constant,
4963 i.e. #0.0 or #0. */
4964
4965static bfd_boolean
4966parse_ifimm_zero (char **in)
4967{
4968 int error_code;
4969
4970 if (!is_immediate_prefix (**in))
3c6452ae
TP
4971 {
4972 /* In unified syntax, all prefixes are optional. */
4973 if (!unified_syntax)
4974 return FALSE;
4975 }
4976 else
4977 ++*in;
0900a05b
JW
4978
4979 /* Accept #0x0 as a synonym for #0. */
4980 if (strncmp (*in, "0x", 2) == 0)
4981 {
4982 int val;
4983 if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
4984 return FALSE;
4985 return TRUE;
4986 }
4987
aacf0b33
KT
4988 error_code = atof_generic (in, ".", EXP_CHARS,
4989 &generic_floating_point_number);
4990
4991 if (!error_code
4992 && generic_floating_point_number.sign == '+'
4993 && (generic_floating_point_number.low
4994 > generic_floating_point_number.leader))
4995 return TRUE;
4996
4997 return FALSE;
4998}
4999
136da414
JB
5000/* Parse an 8-bit "quarter-precision" floating point number of the form:
5001 0baBbbbbbc defgh000 00000000 00000000.
c96612cc
JB
5002 The zero and minus-zero cases need special handling, since they can't be
5003 encoded in the "quarter-precision" float format, but can nonetheless be
5004 loaded as integer constants. */
136da414
JB
5005
5006static unsigned
5007parse_qfloat_immediate (char **ccp, int *immed)
5008{
5009 char *str = *ccp;
c96612cc 5010 char *fpnum;
136da414 5011 LITTLENUM_TYPE words[MAX_LITTLENUMS];
c96612cc 5012 int found_fpchar = 0;
5f4273c7 5013
136da414 5014 skip_past_char (&str, '#');
5f4273c7 5015
c96612cc
JB
5016 /* We must not accidentally parse an integer as a floating-point number. Make
5017 sure that the value we parse is not an integer by checking for special
5018 characters '.' or 'e'.
5019 FIXME: This is a horrible hack, but doing better is tricky because type
5020 information isn't in a very usable state at parse time. */
5021 fpnum = str;
5022 skip_whitespace (fpnum);
5023
5024 if (strncmp (fpnum, "0x", 2) == 0)
5025 return FAIL;
5026 else
5027 {
5028 for (; *fpnum != '\0' && *fpnum != ' ' && *fpnum != '\n'; fpnum++)
477330fc
RM
5029 if (*fpnum == '.' || *fpnum == 'e' || *fpnum == 'E')
5030 {
5031 found_fpchar = 1;
5032 break;
5033 }
c96612cc
JB
5034
5035 if (!found_fpchar)
477330fc 5036 return FAIL;
c96612cc 5037 }
5f4273c7 5038
136da414
JB
5039 if ((str = atof_ieee (str, 's', words)) != NULL)
5040 {
5041 unsigned fpword = 0;
5042 int i;
5f4273c7 5043
136da414
JB
5044 /* Our FP word must be 32 bits (single-precision FP). */
5045 for (i = 0; i < 32 / LITTLENUM_NUMBER_OF_BITS; i++)
477330fc
RM
5046 {
5047 fpword <<= LITTLENUM_NUMBER_OF_BITS;
5048 fpword |= words[i];
5049 }
5f4273c7 5050
c96612cc 5051 if (is_quarter_float (fpword) || (fpword & 0x7fffffff) == 0)
477330fc 5052 *immed = fpword;
136da414 5053 else
477330fc 5054 return FAIL;
136da414
JB
5055
5056 *ccp = str;
5f4273c7 5057
136da414
JB
5058 return SUCCESS;
5059 }
5f4273c7 5060
136da414
JB
5061 return FAIL;
5062}
5063
c19d1205
ZW
5064/* Shift operands. */
5065enum shift_kind
b99bd4ef 5066{
c19d1205
ZW
5067 SHIFT_LSL, SHIFT_LSR, SHIFT_ASR, SHIFT_ROR, SHIFT_RRX
5068};
b99bd4ef 5069
c19d1205
ZW
5070struct asm_shift_name
5071{
5072 const char *name;
5073 enum shift_kind kind;
5074};
b99bd4ef 5075
c19d1205
ZW
5076/* Third argument to parse_shift. */
5077enum parse_shift_mode
5078{
5079 NO_SHIFT_RESTRICT, /* Any kind of shift is accepted. */
5080 SHIFT_IMMEDIATE, /* Shift operand must be an immediate. */
5081 SHIFT_LSL_OR_ASR_IMMEDIATE, /* Shift must be LSL or ASR immediate. */
5082 SHIFT_ASR_IMMEDIATE, /* Shift must be ASR immediate. */
5083 SHIFT_LSL_IMMEDIATE, /* Shift must be LSL immediate. */
5084};
b99bd4ef 5085
c19d1205
ZW
5086/* Parse a <shift> specifier on an ARM data processing instruction.
5087 This has three forms:
b99bd4ef 5088
c19d1205
ZW
5089 (LSL|LSR|ASL|ASR|ROR) Rs
5090 (LSL|LSR|ASL|ASR|ROR) #imm
5091 RRX
b99bd4ef 5092
c19d1205
ZW
5093 Note that ASL is assimilated to LSL in the instruction encoding, and
5094 RRX to ROR #0 (which cannot be written as such). */
b99bd4ef 5095
c19d1205
ZW
5096static int
5097parse_shift (char **str, int i, enum parse_shift_mode mode)
b99bd4ef 5098{
c19d1205
ZW
5099 const struct asm_shift_name *shift_name;
5100 enum shift_kind shift;
5101 char *s = *str;
5102 char *p = s;
5103 int reg;
b99bd4ef 5104
c19d1205
ZW
5105 for (p = *str; ISALPHA (*p); p++)
5106 ;
b99bd4ef 5107
c19d1205 5108 if (p == *str)
b99bd4ef 5109 {
c19d1205
ZW
5110 inst.error = _("shift expression expected");
5111 return FAIL;
b99bd4ef
NC
5112 }
5113
21d799b5 5114 shift_name = (const struct asm_shift_name *) hash_find_n (arm_shift_hsh, *str,
477330fc 5115 p - *str);
c19d1205
ZW
5116
5117 if (shift_name == NULL)
b99bd4ef 5118 {
c19d1205
ZW
5119 inst.error = _("shift expression expected");
5120 return FAIL;
b99bd4ef
NC
5121 }
5122
c19d1205 5123 shift = shift_name->kind;
b99bd4ef 5124
c19d1205
ZW
5125 switch (mode)
5126 {
5127 case NO_SHIFT_RESTRICT:
5128 case SHIFT_IMMEDIATE: break;
b99bd4ef 5129
c19d1205
ZW
5130 case SHIFT_LSL_OR_ASR_IMMEDIATE:
5131 if (shift != SHIFT_LSL && shift != SHIFT_ASR)
5132 {
5133 inst.error = _("'LSL' or 'ASR' required");
5134 return FAIL;
5135 }
5136 break;
b99bd4ef 5137
c19d1205
ZW
5138 case SHIFT_LSL_IMMEDIATE:
5139 if (shift != SHIFT_LSL)
5140 {
5141 inst.error = _("'LSL' required");
5142 return FAIL;
5143 }
5144 break;
b99bd4ef 5145
c19d1205
ZW
5146 case SHIFT_ASR_IMMEDIATE:
5147 if (shift != SHIFT_ASR)
5148 {
5149 inst.error = _("'ASR' required");
5150 return FAIL;
5151 }
5152 break;
b99bd4ef 5153
c19d1205
ZW
5154 default: abort ();
5155 }
b99bd4ef 5156
c19d1205
ZW
5157 if (shift != SHIFT_RRX)
5158 {
5159 /* Whitespace can appear here if the next thing is a bare digit. */
5160 skip_whitespace (p);
b99bd4ef 5161
c19d1205 5162 if (mode == NO_SHIFT_RESTRICT
dcbf9037 5163 && (reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5164 {
5165 inst.operands[i].imm = reg;
5166 inst.operands[i].immisreg = 1;
5167 }
5168 else if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5169 return FAIL;
5170 }
5171 inst.operands[i].shift_kind = shift;
5172 inst.operands[i].shifted = 1;
5173 *str = p;
5174 return SUCCESS;
b99bd4ef
NC
5175}
5176
c19d1205 5177/* Parse a <shifter_operand> for an ARM data processing instruction:
b99bd4ef 5178
c19d1205
ZW
5179 #<immediate>
5180 #<immediate>, <rotate>
5181 <Rm>
5182 <Rm>, <shift>
b99bd4ef 5183
c19d1205
ZW
5184 where <shift> is defined by parse_shift above, and <rotate> is a
5185 multiple of 2 between 0 and 30. Validation of immediate operands
55cf6793 5186 is deferred to md_apply_fix. */
b99bd4ef 5187
c19d1205
ZW
5188static int
5189parse_shifter_operand (char **str, int i)
5190{
5191 int value;
91d6fa6a 5192 expressionS exp;
b99bd4ef 5193
dcbf9037 5194 if ((value = arm_reg_parse (str, REG_TYPE_RN)) != FAIL)
c19d1205
ZW
5195 {
5196 inst.operands[i].reg = value;
5197 inst.operands[i].isreg = 1;
b99bd4ef 5198
c19d1205
ZW
5199 /* parse_shift will override this if appropriate */
5200 inst.reloc.exp.X_op = O_constant;
5201 inst.reloc.exp.X_add_number = 0;
b99bd4ef 5202
c19d1205
ZW
5203 if (skip_past_comma (str) == FAIL)
5204 return SUCCESS;
b99bd4ef 5205
c19d1205
ZW
5206 /* Shift operation on register. */
5207 return parse_shift (str, i, NO_SHIFT_RESTRICT);
b99bd4ef
NC
5208 }
5209
c19d1205
ZW
5210 if (my_get_expression (&inst.reloc.exp, str, GE_IMM_PREFIX))
5211 return FAIL;
b99bd4ef 5212
c19d1205 5213 if (skip_past_comma (str) == SUCCESS)
b99bd4ef 5214 {
c19d1205 5215 /* #x, y -- ie explicit rotation by Y. */
91d6fa6a 5216 if (my_get_expression (&exp, str, GE_NO_PREFIX))
c19d1205 5217 return FAIL;
b99bd4ef 5218
91d6fa6a 5219 if (exp.X_op != O_constant || inst.reloc.exp.X_op != O_constant)
c19d1205
ZW
5220 {
5221 inst.error = _("constant expression expected");
5222 return FAIL;
5223 }
b99bd4ef 5224
91d6fa6a 5225 value = exp.X_add_number;
c19d1205
ZW
5226 if (value < 0 || value > 30 || value % 2 != 0)
5227 {
5228 inst.error = _("invalid rotation");
5229 return FAIL;
5230 }
5231 if (inst.reloc.exp.X_add_number < 0 || inst.reloc.exp.X_add_number > 255)
5232 {
5233 inst.error = _("invalid constant");
5234 return FAIL;
5235 }
09d92015 5236
a415b1cd
JB
5237 /* Encode as specified. */
5238 inst.operands[i].imm = inst.reloc.exp.X_add_number | value << 7;
5239 return SUCCESS;
09d92015
MM
5240 }
5241
c19d1205
ZW
5242 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
5243 inst.reloc.pc_rel = 0;
5244 return SUCCESS;
09d92015
MM
5245}
5246
4962c51a
MS
5247/* Group relocation information. Each entry in the table contains the
5248 textual name of the relocation as may appear in assembler source
5249 and must end with a colon.
5250 Along with this textual name are the relocation codes to be used if
5251 the corresponding instruction is an ALU instruction (ADD or SUB only),
5252 an LDR, an LDRS, or an LDC. */
5253
5254struct group_reloc_table_entry
5255{
5256 const char *name;
5257 int alu_code;
5258 int ldr_code;
5259 int ldrs_code;
5260 int ldc_code;
5261};
5262
5263typedef enum
5264{
5265 /* Varieties of non-ALU group relocation. */
5266
5267 GROUP_LDR,
5268 GROUP_LDRS,
5269 GROUP_LDC
5270} group_reloc_type;
5271
5272static struct group_reloc_table_entry group_reloc_table[] =
5273 { /* Program counter relative: */
5274 { "pc_g0_nc",
5275 BFD_RELOC_ARM_ALU_PC_G0_NC, /* ALU */
5276 0, /* LDR */
5277 0, /* LDRS */
5278 0 }, /* LDC */
5279 { "pc_g0",
5280 BFD_RELOC_ARM_ALU_PC_G0, /* ALU */
5281 BFD_RELOC_ARM_LDR_PC_G0, /* LDR */
5282 BFD_RELOC_ARM_LDRS_PC_G0, /* LDRS */
5283 BFD_RELOC_ARM_LDC_PC_G0 }, /* LDC */
5284 { "pc_g1_nc",
5285 BFD_RELOC_ARM_ALU_PC_G1_NC, /* ALU */
5286 0, /* LDR */
5287 0, /* LDRS */
5288 0 }, /* LDC */
5289 { "pc_g1",
5290 BFD_RELOC_ARM_ALU_PC_G1, /* ALU */
5291 BFD_RELOC_ARM_LDR_PC_G1, /* LDR */
5292 BFD_RELOC_ARM_LDRS_PC_G1, /* LDRS */
5293 BFD_RELOC_ARM_LDC_PC_G1 }, /* LDC */
5294 { "pc_g2",
5295 BFD_RELOC_ARM_ALU_PC_G2, /* ALU */
5296 BFD_RELOC_ARM_LDR_PC_G2, /* LDR */
5297 BFD_RELOC_ARM_LDRS_PC_G2, /* LDRS */
5298 BFD_RELOC_ARM_LDC_PC_G2 }, /* LDC */
5299 /* Section base relative */
5300 { "sb_g0_nc",
5301 BFD_RELOC_ARM_ALU_SB_G0_NC, /* ALU */
5302 0, /* LDR */
5303 0, /* LDRS */
5304 0 }, /* LDC */
5305 { "sb_g0",
5306 BFD_RELOC_ARM_ALU_SB_G0, /* ALU */
5307 BFD_RELOC_ARM_LDR_SB_G0, /* LDR */
5308 BFD_RELOC_ARM_LDRS_SB_G0, /* LDRS */
5309 BFD_RELOC_ARM_LDC_SB_G0 }, /* LDC */
5310 { "sb_g1_nc",
5311 BFD_RELOC_ARM_ALU_SB_G1_NC, /* ALU */
5312 0, /* LDR */
5313 0, /* LDRS */
5314 0 }, /* LDC */
5315 { "sb_g1",
5316 BFD_RELOC_ARM_ALU_SB_G1, /* ALU */
5317 BFD_RELOC_ARM_LDR_SB_G1, /* LDR */
5318 BFD_RELOC_ARM_LDRS_SB_G1, /* LDRS */
5319 BFD_RELOC_ARM_LDC_SB_G1 }, /* LDC */
5320 { "sb_g2",
5321 BFD_RELOC_ARM_ALU_SB_G2, /* ALU */
5322 BFD_RELOC_ARM_LDR_SB_G2, /* LDR */
5323 BFD_RELOC_ARM_LDRS_SB_G2, /* LDRS */
72d98d16
MG
5324 BFD_RELOC_ARM_LDC_SB_G2 }, /* LDC */
5325 /* Absolute thumb alu relocations. */
5326 { "lower0_7",
5327 BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC,/* ALU. */
5328 0, /* LDR. */
5329 0, /* LDRS. */
5330 0 }, /* LDC. */
5331 { "lower8_15",
5332 BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC,/* ALU. */
5333 0, /* LDR. */
5334 0, /* LDRS. */
5335 0 }, /* LDC. */
5336 { "upper0_7",
5337 BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC,/* ALU. */
5338 0, /* LDR. */
5339 0, /* LDRS. */
5340 0 }, /* LDC. */
5341 { "upper8_15",
5342 BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC,/* ALU. */
5343 0, /* LDR. */
5344 0, /* LDRS. */
5345 0 } }; /* LDC. */
4962c51a
MS
5346
5347/* Given the address of a pointer pointing to the textual name of a group
5348 relocation as may appear in assembler source, attempt to find its details
5349 in group_reloc_table. The pointer will be updated to the character after
5350 the trailing colon. On failure, FAIL will be returned; SUCCESS
5351 otherwise. On success, *entry will be updated to point at the relevant
5352 group_reloc_table entry. */
5353
5354static int
5355find_group_reloc_table_entry (char **str, struct group_reloc_table_entry **out)
5356{
5357 unsigned int i;
5358 for (i = 0; i < ARRAY_SIZE (group_reloc_table); i++)
5359 {
5360 int length = strlen (group_reloc_table[i].name);
5361
5f4273c7
NC
5362 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0
5363 && (*str)[length] == ':')
477330fc
RM
5364 {
5365 *out = &group_reloc_table[i];
5366 *str += (length + 1);
5367 return SUCCESS;
5368 }
4962c51a
MS
5369 }
5370
5371 return FAIL;
5372}
5373
5374/* Parse a <shifter_operand> for an ARM data processing instruction
5375 (as for parse_shifter_operand) where group relocations are allowed:
5376
5377 #<immediate>
5378 #<immediate>, <rotate>
5379 #:<group_reloc>:<expression>
5380 <Rm>
5381 <Rm>, <shift>
5382
5383 where <group_reloc> is one of the strings defined in group_reloc_table.
5384 The hashes are optional.
5385
5386 Everything else is as for parse_shifter_operand. */
5387
5388static parse_operand_result
5389parse_shifter_operand_group_reloc (char **str, int i)
5390{
5391 /* Determine if we have the sequence of characters #: or just :
5392 coming next. If we do, then we check for a group relocation.
5393 If we don't, punt the whole lot to parse_shifter_operand. */
5394
5395 if (((*str)[0] == '#' && (*str)[1] == ':')
5396 || (*str)[0] == ':')
5397 {
5398 struct group_reloc_table_entry *entry;
5399
5400 if ((*str)[0] == '#')
477330fc 5401 (*str) += 2;
4962c51a 5402 else
477330fc 5403 (*str)++;
4962c51a
MS
5404
5405 /* Try to parse a group relocation. Anything else is an error. */
5406 if (find_group_reloc_table_entry (str, &entry) == FAIL)
477330fc
RM
5407 {
5408 inst.error = _("unknown group relocation");
5409 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5410 }
4962c51a
MS
5411
5412 /* We now have the group relocation table entry corresponding to
477330fc 5413 the name in the assembler source. Next, we parse the expression. */
4962c51a 5414 if (my_get_expression (&inst.reloc.exp, str, GE_NO_PREFIX))
477330fc 5415 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
4962c51a
MS
5416
5417 /* Record the relocation type (always the ALU variant here). */
21d799b5 5418 inst.reloc.type = (bfd_reloc_code_real_type) entry->alu_code;
9c2799c2 5419 gas_assert (inst.reloc.type != 0);
4962c51a
MS
5420
5421 return PARSE_OPERAND_SUCCESS;
5422 }
5423 else
5424 return parse_shifter_operand (str, i) == SUCCESS
477330fc 5425 ? PARSE_OPERAND_SUCCESS : PARSE_OPERAND_FAIL;
4962c51a
MS
5426
5427 /* Never reached. */
5428}
5429
8e560766
MGD
5430/* Parse a Neon alignment expression. Information is written to
5431 inst.operands[i]. We assume the initial ':' has been skipped.
fa94de6b 5432
8e560766
MGD
5433 align .imm = align << 8, .immisalign=1, .preind=0 */
5434static parse_operand_result
5435parse_neon_alignment (char **str, int i)
5436{
5437 char *p = *str;
5438 expressionS exp;
5439
5440 my_get_expression (&exp, &p, GE_NO_PREFIX);
5441
5442 if (exp.X_op != O_constant)
5443 {
5444 inst.error = _("alignment must be constant");
5445 return PARSE_OPERAND_FAIL;
5446 }
5447
5448 inst.operands[i].imm = exp.X_add_number << 8;
5449 inst.operands[i].immisalign = 1;
5450 /* Alignments are not pre-indexes. */
5451 inst.operands[i].preind = 0;
5452
5453 *str = p;
5454 return PARSE_OPERAND_SUCCESS;
5455}
5456
c19d1205
ZW
5457/* Parse all forms of an ARM address expression. Information is written
5458 to inst.operands[i] and/or inst.reloc.
09d92015 5459
c19d1205 5460 Preindexed addressing (.preind=1):
09d92015 5461
c19d1205
ZW
5462 [Rn, #offset] .reg=Rn .reloc.exp=offset
5463 [Rn, +/-Rm] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5464 [Rn, +/-Rm, shift] .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5465 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5466
c19d1205 5467 These three may have a trailing ! which causes .writeback to be set also.
09d92015 5468
c19d1205 5469 Postindexed addressing (.postind=1, .writeback=1):
09d92015 5470
c19d1205
ZW
5471 [Rn], #offset .reg=Rn .reloc.exp=offset
5472 [Rn], +/-Rm .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5473 [Rn], +/-Rm, shift .reg=Rn .imm=Rm .immisreg=1 .negative=0/1
5474 .shift_kind=shift .reloc.exp=shift_imm
09d92015 5475
c19d1205 5476 Unindexed addressing (.preind=0, .postind=0):
09d92015 5477
c19d1205 5478 [Rn], {option} .reg=Rn .imm=option .immisreg=0
09d92015 5479
c19d1205 5480 Other:
09d92015 5481
c19d1205
ZW
5482 [Rn]{!} shorthand for [Rn,#0]{!}
5483 =immediate .isreg=0 .reloc.exp=immediate
5484 label .reg=PC .reloc.pc_rel=1 .reloc.exp=label
09d92015 5485
c19d1205
ZW
5486 It is the caller's responsibility to check for addressing modes not
5487 supported by the instruction, and to set inst.reloc.type. */
5488
4962c51a
MS
5489static parse_operand_result
5490parse_address_main (char **str, int i, int group_relocations,
477330fc 5491 group_reloc_type group_type)
09d92015 5492{
c19d1205
ZW
5493 char *p = *str;
5494 int reg;
09d92015 5495
c19d1205 5496 if (skip_past_char (&p, '[') == FAIL)
09d92015 5497 {
c19d1205
ZW
5498 if (skip_past_char (&p, '=') == FAIL)
5499 {
974da60d 5500 /* Bare address - translate to PC-relative offset. */
c19d1205
ZW
5501 inst.reloc.pc_rel = 1;
5502 inst.operands[i].reg = REG_PC;
5503 inst.operands[i].isreg = 1;
5504 inst.operands[i].preind = 1;
09d92015 5505
8335d6aa
JW
5506 if (my_get_expression (&inst.reloc.exp, &p, GE_OPT_PREFIX_BIG))
5507 return PARSE_OPERAND_FAIL;
5508 }
5509 else if (parse_big_immediate (&p, i, &inst.reloc.exp,
5510 /*allow_symbol_p=*/TRUE))
4962c51a 5511 return PARSE_OPERAND_FAIL;
09d92015 5512
c19d1205 5513 *str = p;
4962c51a 5514 return PARSE_OPERAND_SUCCESS;
09d92015
MM
5515 }
5516
8ab8155f
NC
5517 /* PR gas/14887: Allow for whitespace after the opening bracket. */
5518 skip_whitespace (p);
5519
dcbf9037 5520 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
09d92015 5521 {
c19d1205 5522 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
4962c51a 5523 return PARSE_OPERAND_FAIL;
09d92015 5524 }
c19d1205
ZW
5525 inst.operands[i].reg = reg;
5526 inst.operands[i].isreg = 1;
09d92015 5527
c19d1205 5528 if (skip_past_comma (&p) == SUCCESS)
09d92015 5529 {
c19d1205 5530 inst.operands[i].preind = 1;
09d92015 5531
c19d1205
ZW
5532 if (*p == '+') p++;
5533 else if (*p == '-') p++, inst.operands[i].negative = 1;
5534
dcbf9037 5535 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
09d92015 5536 {
c19d1205
ZW
5537 inst.operands[i].imm = reg;
5538 inst.operands[i].immisreg = 1;
5539
5540 if (skip_past_comma (&p) == SUCCESS)
5541 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5542 return PARSE_OPERAND_FAIL;
c19d1205 5543 }
5287ad62 5544 else if (skip_past_char (&p, ':') == SUCCESS)
8e560766
MGD
5545 {
5546 /* FIXME: '@' should be used here, but it's filtered out by generic
5547 code before we get to see it here. This may be subject to
5548 change. */
5549 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5550
8e560766
MGD
5551 if (result != PARSE_OPERAND_SUCCESS)
5552 return result;
5553 }
c19d1205
ZW
5554 else
5555 {
5556 if (inst.operands[i].negative)
5557 {
5558 inst.operands[i].negative = 0;
5559 p--;
5560 }
4962c51a 5561
5f4273c7
NC
5562 if (group_relocations
5563 && ((*p == '#' && *(p + 1) == ':') || *p == ':'))
4962c51a
MS
5564 {
5565 struct group_reloc_table_entry *entry;
5566
477330fc
RM
5567 /* Skip over the #: or : sequence. */
5568 if (*p == '#')
5569 p += 2;
5570 else
5571 p++;
4962c51a
MS
5572
5573 /* Try to parse a group relocation. Anything else is an
477330fc 5574 error. */
4962c51a
MS
5575 if (find_group_reloc_table_entry (&p, &entry) == FAIL)
5576 {
5577 inst.error = _("unknown group relocation");
5578 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5579 }
5580
5581 /* We now have the group relocation table entry corresponding to
5582 the name in the assembler source. Next, we parse the
477330fc 5583 expression. */
4962c51a
MS
5584 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5585 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5586
5587 /* Record the relocation type. */
477330fc
RM
5588 switch (group_type)
5589 {
5590 case GROUP_LDR:
5591 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldr_code;
5592 break;
4962c51a 5593
477330fc
RM
5594 case GROUP_LDRS:
5595 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldrs_code;
5596 break;
4962c51a 5597
477330fc
RM
5598 case GROUP_LDC:
5599 inst.reloc.type = (bfd_reloc_code_real_type) entry->ldc_code;
5600 break;
4962c51a 5601
477330fc
RM
5602 default:
5603 gas_assert (0);
5604 }
4962c51a 5605
477330fc 5606 if (inst.reloc.type == 0)
4962c51a
MS
5607 {
5608 inst.error = _("this group relocation is not allowed on this instruction");
5609 return PARSE_OPERAND_FAIL_NO_BACKTRACK;
5610 }
477330fc
RM
5611 }
5612 else
26d97720
NS
5613 {
5614 char *q = p;
5615 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
5616 return PARSE_OPERAND_FAIL;
5617 /* If the offset is 0, find out if it's a +0 or -0. */
5618 if (inst.reloc.exp.X_op == O_constant
5619 && inst.reloc.exp.X_add_number == 0)
5620 {
5621 skip_whitespace (q);
5622 if (*q == '#')
5623 {
5624 q++;
5625 skip_whitespace (q);
5626 }
5627 if (*q == '-')
5628 inst.operands[i].negative = 1;
5629 }
5630 }
09d92015
MM
5631 }
5632 }
8e560766
MGD
5633 else if (skip_past_char (&p, ':') == SUCCESS)
5634 {
5635 /* FIXME: '@' should be used here, but it's filtered out by generic code
5636 before we get to see it here. This may be subject to change. */
5637 parse_operand_result result = parse_neon_alignment (&p, i);
fa94de6b 5638
8e560766
MGD
5639 if (result != PARSE_OPERAND_SUCCESS)
5640 return result;
5641 }
09d92015 5642
c19d1205 5643 if (skip_past_char (&p, ']') == FAIL)
09d92015 5644 {
c19d1205 5645 inst.error = _("']' expected");
4962c51a 5646 return PARSE_OPERAND_FAIL;
09d92015
MM
5647 }
5648
c19d1205
ZW
5649 if (skip_past_char (&p, '!') == SUCCESS)
5650 inst.operands[i].writeback = 1;
09d92015 5651
c19d1205 5652 else if (skip_past_comma (&p) == SUCCESS)
09d92015 5653 {
c19d1205
ZW
5654 if (skip_past_char (&p, '{') == SUCCESS)
5655 {
5656 /* [Rn], {expr} - unindexed, with option */
5657 if (parse_immediate (&p, &inst.operands[i].imm,
ca3f61f7 5658 0, 255, TRUE) == FAIL)
4962c51a 5659 return PARSE_OPERAND_FAIL;
09d92015 5660
c19d1205
ZW
5661 if (skip_past_char (&p, '}') == FAIL)
5662 {
5663 inst.error = _("'}' expected at end of 'option' field");
4962c51a 5664 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5665 }
5666 if (inst.operands[i].preind)
5667 {
5668 inst.error = _("cannot combine index with option");
4962c51a 5669 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5670 }
5671 *str = p;
4962c51a 5672 return PARSE_OPERAND_SUCCESS;
09d92015 5673 }
c19d1205
ZW
5674 else
5675 {
5676 inst.operands[i].postind = 1;
5677 inst.operands[i].writeback = 1;
09d92015 5678
c19d1205
ZW
5679 if (inst.operands[i].preind)
5680 {
5681 inst.error = _("cannot combine pre- and post-indexing");
4962c51a 5682 return PARSE_OPERAND_FAIL;
c19d1205 5683 }
09d92015 5684
c19d1205
ZW
5685 if (*p == '+') p++;
5686 else if (*p == '-') p++, inst.operands[i].negative = 1;
a737bd4d 5687
dcbf9037 5688 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) != FAIL)
c19d1205 5689 {
477330fc
RM
5690 /* We might be using the immediate for alignment already. If we
5691 are, OR the register number into the low-order bits. */
5692 if (inst.operands[i].immisalign)
5693 inst.operands[i].imm |= reg;
5694 else
5695 inst.operands[i].imm = reg;
c19d1205 5696 inst.operands[i].immisreg = 1;
a737bd4d 5697
c19d1205
ZW
5698 if (skip_past_comma (&p) == SUCCESS)
5699 if (parse_shift (&p, i, SHIFT_IMMEDIATE) == FAIL)
4962c51a 5700 return PARSE_OPERAND_FAIL;
c19d1205
ZW
5701 }
5702 else
5703 {
26d97720 5704 char *q = p;
c19d1205
ZW
5705 if (inst.operands[i].negative)
5706 {
5707 inst.operands[i].negative = 0;
5708 p--;
5709 }
5710 if (my_get_expression (&inst.reloc.exp, &p, GE_IMM_PREFIX))
4962c51a 5711 return PARSE_OPERAND_FAIL;
26d97720
NS
5712 /* If the offset is 0, find out if it's a +0 or -0. */
5713 if (inst.reloc.exp.X_op == O_constant
5714 && inst.reloc.exp.X_add_number == 0)
5715 {
5716 skip_whitespace (q);
5717 if (*q == '#')
5718 {
5719 q++;
5720 skip_whitespace (q);
5721 }
5722 if (*q == '-')
5723 inst.operands[i].negative = 1;
5724 }
c19d1205
ZW
5725 }
5726 }
a737bd4d
NC
5727 }
5728
c19d1205
ZW
5729 /* If at this point neither .preind nor .postind is set, we have a
5730 bare [Rn]{!}, which is shorthand for [Rn,#0]{!}. */
5731 if (inst.operands[i].preind == 0 && inst.operands[i].postind == 0)
5732 {
5733 inst.operands[i].preind = 1;
5734 inst.reloc.exp.X_op = O_constant;
5735 inst.reloc.exp.X_add_number = 0;
5736 }
5737 *str = p;
4962c51a
MS
5738 return PARSE_OPERAND_SUCCESS;
5739}
5740
5741static int
5742parse_address (char **str, int i)
5743{
21d799b5 5744 return parse_address_main (str, i, 0, GROUP_LDR) == PARSE_OPERAND_SUCCESS
477330fc 5745 ? SUCCESS : FAIL;
4962c51a
MS
5746}
5747
5748static parse_operand_result
5749parse_address_group_reloc (char **str, int i, group_reloc_type type)
5750{
5751 return parse_address_main (str, i, 1, type);
a737bd4d
NC
5752}
5753
b6895b4f
PB
5754/* Parse an operand for a MOVW or MOVT instruction. */
5755static int
5756parse_half (char **str)
5757{
5758 char * p;
5f4273c7 5759
b6895b4f
PB
5760 p = *str;
5761 skip_past_char (&p, '#');
5f4273c7 5762 if (strncasecmp (p, ":lower16:", 9) == 0)
b6895b4f
PB
5763 inst.reloc.type = BFD_RELOC_ARM_MOVW;
5764 else if (strncasecmp (p, ":upper16:", 9) == 0)
5765 inst.reloc.type = BFD_RELOC_ARM_MOVT;
5766
5767 if (inst.reloc.type != BFD_RELOC_UNUSED)
5768 {
5769 p += 9;
5f4273c7 5770 skip_whitespace (p);
b6895b4f
PB
5771 }
5772
5773 if (my_get_expression (&inst.reloc.exp, &p, GE_NO_PREFIX))
5774 return FAIL;
5775
5776 if (inst.reloc.type == BFD_RELOC_UNUSED)
5777 {
5778 if (inst.reloc.exp.X_op != O_constant)
5779 {
5780 inst.error = _("constant expression expected");
5781 return FAIL;
5782 }
5783 if (inst.reloc.exp.X_add_number < 0
5784 || inst.reloc.exp.X_add_number > 0xffff)
5785 {
5786 inst.error = _("immediate value out of range");
5787 return FAIL;
5788 }
5789 }
5790 *str = p;
5791 return SUCCESS;
5792}
5793
c19d1205 5794/* Miscellaneous. */
a737bd4d 5795
c19d1205
ZW
5796/* Parse a PSR flag operand. The value returned is FAIL on syntax error,
5797 or a bitmask suitable to be or-ed into the ARM msr instruction. */
5798static int
d2cd1205 5799parse_psr (char **str, bfd_boolean lhs)
09d92015 5800{
c19d1205
ZW
5801 char *p;
5802 unsigned long psr_field;
62b3e311
PB
5803 const struct asm_psr *psr;
5804 char *start;
d2cd1205 5805 bfd_boolean is_apsr = FALSE;
ac7f631b 5806 bfd_boolean m_profile = ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m);
09d92015 5807
a4482bb6
NC
5808 /* PR gas/12698: If the user has specified -march=all then m_profile will
5809 be TRUE, but we want to ignore it in this case as we are building for any
5810 CPU type, including non-m variants. */
823d2571 5811 if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
a4482bb6
NC
5812 m_profile = FALSE;
5813
c19d1205
ZW
5814 /* CPSR's and SPSR's can now be lowercase. This is just a convenience
5815 feature for ease of use and backwards compatibility. */
5816 p = *str;
62b3e311 5817 if (strncasecmp (p, "SPSR", 4) == 0)
d2cd1205
JB
5818 {
5819 if (m_profile)
5820 goto unsupported_psr;
fa94de6b 5821
d2cd1205
JB
5822 psr_field = SPSR_BIT;
5823 }
5824 else if (strncasecmp (p, "CPSR", 4) == 0)
5825 {
5826 if (m_profile)
5827 goto unsupported_psr;
5828
5829 psr_field = 0;
5830 }
5831 else if (strncasecmp (p, "APSR", 4) == 0)
5832 {
5833 /* APSR[_<bits>] can be used as a synonym for CPSR[_<flags>] on ARMv7-A
5834 and ARMv7-R architecture CPUs. */
5835 is_apsr = TRUE;
5836 psr_field = 0;
5837 }
5838 else if (m_profile)
62b3e311
PB
5839 {
5840 start = p;
5841 do
5842 p++;
5843 while (ISALNUM (*p) || *p == '_');
5844
d2cd1205
JB
5845 if (strncasecmp (start, "iapsr", 5) == 0
5846 || strncasecmp (start, "eapsr", 5) == 0
5847 || strncasecmp (start, "xpsr", 4) == 0
5848 || strncasecmp (start, "psr", 3) == 0)
5849 p = start + strcspn (start, "rR") + 1;
5850
21d799b5 5851 psr = (const struct asm_psr *) hash_find_n (arm_v7m_psr_hsh, start,
477330fc 5852 p - start);
d2cd1205 5853
62b3e311
PB
5854 if (!psr)
5855 return FAIL;
09d92015 5856
d2cd1205
JB
5857 /* If APSR is being written, a bitfield may be specified. Note that
5858 APSR itself is handled above. */
5859 if (psr->field <= 3)
5860 {
5861 psr_field = psr->field;
5862 is_apsr = TRUE;
5863 goto check_suffix;
5864 }
5865
62b3e311 5866 *str = p;
d2cd1205
JB
5867 /* M-profile MSR instructions have the mask field set to "10", except
5868 *PSR variants which modify APSR, which may use a different mask (and
5869 have been handled already). Do that by setting the PSR_f field
5870 here. */
5871 return psr->field | (lhs ? PSR_f : 0);
62b3e311 5872 }
d2cd1205
JB
5873 else
5874 goto unsupported_psr;
09d92015 5875
62b3e311 5876 p += 4;
d2cd1205 5877check_suffix:
c19d1205
ZW
5878 if (*p == '_')
5879 {
5880 /* A suffix follows. */
c19d1205
ZW
5881 p++;
5882 start = p;
a737bd4d 5883
c19d1205
ZW
5884 do
5885 p++;
5886 while (ISALNUM (*p) || *p == '_');
a737bd4d 5887
d2cd1205
JB
5888 if (is_apsr)
5889 {
5890 /* APSR uses a notation for bits, rather than fields. */
5891 unsigned int nzcvq_bits = 0;
5892 unsigned int g_bit = 0;
5893 char *bit;
fa94de6b 5894
d2cd1205
JB
5895 for (bit = start; bit != p; bit++)
5896 {
5897 switch (TOLOWER (*bit))
477330fc 5898 {
d2cd1205
JB
5899 case 'n':
5900 nzcvq_bits |= (nzcvq_bits & 0x01) ? 0x20 : 0x01;
5901 break;
5902
5903 case 'z':
5904 nzcvq_bits |= (nzcvq_bits & 0x02) ? 0x20 : 0x02;
5905 break;
5906
5907 case 'c':
5908 nzcvq_bits |= (nzcvq_bits & 0x04) ? 0x20 : 0x04;
5909 break;
5910
5911 case 'v':
5912 nzcvq_bits |= (nzcvq_bits & 0x08) ? 0x20 : 0x08;
5913 break;
fa94de6b 5914
d2cd1205
JB
5915 case 'q':
5916 nzcvq_bits |= (nzcvq_bits & 0x10) ? 0x20 : 0x10;
5917 break;
fa94de6b 5918
d2cd1205
JB
5919 case 'g':
5920 g_bit |= (g_bit & 0x1) ? 0x2 : 0x1;
5921 break;
fa94de6b 5922
d2cd1205
JB
5923 default:
5924 inst.error = _("unexpected bit specified after APSR");
5925 return FAIL;
5926 }
5927 }
fa94de6b 5928
d2cd1205
JB
5929 if (nzcvq_bits == 0x1f)
5930 psr_field |= PSR_f;
fa94de6b 5931
d2cd1205
JB
5932 if (g_bit == 0x1)
5933 {
5934 if (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp))
477330fc 5935 {
d2cd1205
JB
5936 inst.error = _("selected processor does not "
5937 "support DSP extension");
5938 return FAIL;
5939 }
5940
5941 psr_field |= PSR_s;
5942 }
fa94de6b 5943
d2cd1205
JB
5944 if ((nzcvq_bits & 0x20) != 0
5945 || (nzcvq_bits != 0x1f && nzcvq_bits != 0)
5946 || (g_bit & 0x2) != 0)
5947 {
5948 inst.error = _("bad bitmask specified after APSR");
5949 return FAIL;
5950 }
5951 }
5952 else
477330fc 5953 {
d2cd1205 5954 psr = (const struct asm_psr *) hash_find_n (arm_psr_hsh, start,
477330fc 5955 p - start);
d2cd1205 5956 if (!psr)
477330fc 5957 goto error;
a737bd4d 5958
d2cd1205
JB
5959 psr_field |= psr->field;
5960 }
a737bd4d 5961 }
c19d1205 5962 else
a737bd4d 5963 {
c19d1205
ZW
5964 if (ISALNUM (*p))
5965 goto error; /* Garbage after "[CS]PSR". */
5966
d2cd1205 5967 /* Unadorned APSR is equivalent to APSR_nzcvq/CPSR_f (for writes). This
477330fc 5968 is deprecated, but allow it anyway. */
d2cd1205
JB
5969 if (is_apsr && lhs)
5970 {
5971 psr_field |= PSR_f;
5972 as_tsktsk (_("writing to APSR without specifying a bitmask is "
5973 "deprecated"));
5974 }
5975 else if (!m_profile)
5976 /* These bits are never right for M-profile devices: don't set them
5977 (only code paths which read/write APSR reach here). */
5978 psr_field |= (PSR_c | PSR_f);
a737bd4d 5979 }
c19d1205
ZW
5980 *str = p;
5981 return psr_field;
a737bd4d 5982
d2cd1205
JB
5983 unsupported_psr:
5984 inst.error = _("selected processor does not support requested special "
5985 "purpose register");
5986 return FAIL;
5987
c19d1205
ZW
5988 error:
5989 inst.error = _("flag for {c}psr instruction expected");
5990 return FAIL;
a737bd4d
NC
5991}
5992
c19d1205
ZW
5993/* Parse the flags argument to CPSI[ED]. Returns FAIL on error, or a
5994 value suitable for splatting into the AIF field of the instruction. */
a737bd4d 5995
c19d1205
ZW
5996static int
5997parse_cps_flags (char **str)
a737bd4d 5998{
c19d1205
ZW
5999 int val = 0;
6000 int saw_a_flag = 0;
6001 char *s = *str;
a737bd4d 6002
c19d1205
ZW
6003 for (;;)
6004 switch (*s++)
6005 {
6006 case '\0': case ',':
6007 goto done;
a737bd4d 6008
c19d1205
ZW
6009 case 'a': case 'A': saw_a_flag = 1; val |= 0x4; break;
6010 case 'i': case 'I': saw_a_flag = 1; val |= 0x2; break;
6011 case 'f': case 'F': saw_a_flag = 1; val |= 0x1; break;
a737bd4d 6012
c19d1205
ZW
6013 default:
6014 inst.error = _("unrecognized CPS flag");
6015 return FAIL;
6016 }
a737bd4d 6017
c19d1205
ZW
6018 done:
6019 if (saw_a_flag == 0)
a737bd4d 6020 {
c19d1205
ZW
6021 inst.error = _("missing CPS flags");
6022 return FAIL;
a737bd4d 6023 }
a737bd4d 6024
c19d1205
ZW
6025 *str = s - 1;
6026 return val;
a737bd4d
NC
6027}
6028
c19d1205
ZW
6029/* Parse an endian specifier ("BE" or "LE", case insensitive);
6030 returns 0 for big-endian, 1 for little-endian, FAIL for an error. */
a737bd4d
NC
6031
6032static int
c19d1205 6033parse_endian_specifier (char **str)
a737bd4d 6034{
c19d1205
ZW
6035 int little_endian;
6036 char *s = *str;
a737bd4d 6037
c19d1205
ZW
6038 if (strncasecmp (s, "BE", 2))
6039 little_endian = 0;
6040 else if (strncasecmp (s, "LE", 2))
6041 little_endian = 1;
6042 else
a737bd4d 6043 {
c19d1205 6044 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6045 return FAIL;
6046 }
6047
c19d1205 6048 if (ISALNUM (s[2]) || s[2] == '_')
a737bd4d 6049 {
c19d1205 6050 inst.error = _("valid endian specifiers are be or le");
a737bd4d
NC
6051 return FAIL;
6052 }
6053
c19d1205
ZW
6054 *str = s + 2;
6055 return little_endian;
6056}
a737bd4d 6057
c19d1205
ZW
6058/* Parse a rotation specifier: ROR #0, #8, #16, #24. *val receives a
6059 value suitable for poking into the rotate field of an sxt or sxta
6060 instruction, or FAIL on error. */
6061
6062static int
6063parse_ror (char **str)
6064{
6065 int rot;
6066 char *s = *str;
6067
6068 if (strncasecmp (s, "ROR", 3) == 0)
6069 s += 3;
6070 else
a737bd4d 6071 {
c19d1205 6072 inst.error = _("missing rotation field after comma");
a737bd4d
NC
6073 return FAIL;
6074 }
c19d1205
ZW
6075
6076 if (parse_immediate (&s, &rot, 0, 24, FALSE) == FAIL)
6077 return FAIL;
6078
6079 switch (rot)
a737bd4d 6080 {
c19d1205
ZW
6081 case 0: *str = s; return 0x0;
6082 case 8: *str = s; return 0x1;
6083 case 16: *str = s; return 0x2;
6084 case 24: *str = s; return 0x3;
6085
6086 default:
6087 inst.error = _("rotation can only be 0, 8, 16, or 24");
a737bd4d
NC
6088 return FAIL;
6089 }
c19d1205 6090}
a737bd4d 6091
c19d1205
ZW
6092/* Parse a conditional code (from conds[] below). The value returned is in the
6093 range 0 .. 14, or FAIL. */
6094static int
6095parse_cond (char **str)
6096{
c462b453 6097 char *q;
c19d1205 6098 const struct asm_cond *c;
c462b453
PB
6099 int n;
6100 /* Condition codes are always 2 characters, so matching up to
6101 3 characters is sufficient. */
6102 char cond[3];
a737bd4d 6103
c462b453
PB
6104 q = *str;
6105 n = 0;
6106 while (ISALPHA (*q) && n < 3)
6107 {
e07e6e58 6108 cond[n] = TOLOWER (*q);
c462b453
PB
6109 q++;
6110 n++;
6111 }
a737bd4d 6112
21d799b5 6113 c = (const struct asm_cond *) hash_find_n (arm_cond_hsh, cond, n);
c19d1205 6114 if (!c)
a737bd4d 6115 {
c19d1205 6116 inst.error = _("condition required");
a737bd4d
NC
6117 return FAIL;
6118 }
6119
c19d1205
ZW
6120 *str = q;
6121 return c->value;
6122}
6123
643afb90
MW
6124/* Record a use of the given feature. */
6125static void
6126record_feature_use (const arm_feature_set *feature)
6127{
6128 if (thumb_mode)
6129 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
6130 else
6131 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
6132}
6133
e797f7e0
MGD
6134/* If the given feature available in the selected CPU, mark it as used.
6135 Returns TRUE iff feature is available. */
6136static bfd_boolean
6137mark_feature_used (const arm_feature_set *feature)
6138{
6139 /* Ensure the option is valid on the current architecture. */
6140 if (!ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
6141 return FALSE;
6142
6143 /* Add the appropriate architecture feature for the barrier option used.
6144 */
643afb90 6145 record_feature_use (feature);
e797f7e0
MGD
6146
6147 return TRUE;
6148}
6149
62b3e311
PB
6150/* Parse an option for a barrier instruction. Returns the encoding for the
6151 option, or FAIL. */
6152static int
6153parse_barrier (char **str)
6154{
6155 char *p, *q;
6156 const struct asm_barrier_opt *o;
6157
6158 p = q = *str;
6159 while (ISALPHA (*q))
6160 q++;
6161
21d799b5 6162 o = (const struct asm_barrier_opt *) hash_find_n (arm_barrier_opt_hsh, p,
477330fc 6163 q - p);
62b3e311
PB
6164 if (!o)
6165 return FAIL;
6166
e797f7e0
MGD
6167 if (!mark_feature_used (&o->arch))
6168 return FAIL;
6169
62b3e311
PB
6170 *str = q;
6171 return o->value;
6172}
6173
92e90b6e
PB
6174/* Parse the operands of a table branch instruction. Similar to a memory
6175 operand. */
6176static int
6177parse_tb (char **str)
6178{
6179 char * p = *str;
6180 int reg;
6181
6182 if (skip_past_char (&p, '[') == FAIL)
ab1eb5fe
PB
6183 {
6184 inst.error = _("'[' expected");
6185 return FAIL;
6186 }
92e90b6e 6187
dcbf9037 6188 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6189 {
6190 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6191 return FAIL;
6192 }
6193 inst.operands[0].reg = reg;
6194
6195 if (skip_past_comma (&p) == FAIL)
ab1eb5fe
PB
6196 {
6197 inst.error = _("',' expected");
6198 return FAIL;
6199 }
5f4273c7 6200
dcbf9037 6201 if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL)
92e90b6e
PB
6202 {
6203 inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
6204 return FAIL;
6205 }
6206 inst.operands[0].imm = reg;
6207
6208 if (skip_past_comma (&p) == SUCCESS)
6209 {
6210 if (parse_shift (&p, 0, SHIFT_LSL_IMMEDIATE) == FAIL)
6211 return FAIL;
6212 if (inst.reloc.exp.X_add_number != 1)
6213 {
6214 inst.error = _("invalid shift");
6215 return FAIL;
6216 }
6217 inst.operands[0].shifted = 1;
6218 }
6219
6220 if (skip_past_char (&p, ']') == FAIL)
6221 {
6222 inst.error = _("']' expected");
6223 return FAIL;
6224 }
6225 *str = p;
6226 return SUCCESS;
6227}
6228
5287ad62
JB
6229/* Parse the operands of a Neon VMOV instruction. See do_neon_mov for more
6230 information on the types the operands can take and how they are encoded.
037e8744
JB
6231 Up to four operands may be read; this function handles setting the
6232 ".present" field for each read operand itself.
5287ad62
JB
6233 Updates STR and WHICH_OPERAND if parsing is successful and returns SUCCESS,
6234 else returns FAIL. */
6235
6236static int
6237parse_neon_mov (char **str, int *which_operand)
6238{
6239 int i = *which_operand, val;
6240 enum arm_reg_type rtype;
6241 char *ptr = *str;
dcbf9037 6242 struct neon_type_el optype;
5f4273c7 6243
dcbf9037 6244 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
5287ad62
JB
6245 {
6246 /* Case 4: VMOV<c><q>.<size> <Dn[x]>, <Rd>. */
6247 inst.operands[i].reg = val;
6248 inst.operands[i].isscalar = 1;
dcbf9037 6249 inst.operands[i].vectype = optype;
5287ad62
JB
6250 inst.operands[i++].present = 1;
6251
6252 if (skip_past_comma (&ptr) == FAIL)
477330fc 6253 goto wanted_comma;
5f4273c7 6254
dcbf9037 6255 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
477330fc 6256 goto wanted_arm;
5f4273c7 6257
5287ad62
JB
6258 inst.operands[i].reg = val;
6259 inst.operands[i].isreg = 1;
6260 inst.operands[i].present = 1;
6261 }
037e8744 6262 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype, &optype))
477330fc 6263 != FAIL)
5287ad62
JB
6264 {
6265 /* Cases 0, 1, 2, 3, 5 (D only). */
6266 if (skip_past_comma (&ptr) == FAIL)
477330fc 6267 goto wanted_comma;
5f4273c7 6268
5287ad62
JB
6269 inst.operands[i].reg = val;
6270 inst.operands[i].isreg = 1;
6271 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
037e8744
JB
6272 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6273 inst.operands[i].isvec = 1;
dcbf9037 6274 inst.operands[i].vectype = optype;
5287ad62
JB
6275 inst.operands[i++].present = 1;
6276
dcbf9037 6277 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6278 {
6279 /* Case 5: VMOV<c><q> <Dm>, <Rd>, <Rn>.
6280 Case 13: VMOV <Sd>, <Rm> */
6281 inst.operands[i].reg = val;
6282 inst.operands[i].isreg = 1;
6283 inst.operands[i].present = 1;
6284
6285 if (rtype == REG_TYPE_NQ)
6286 {
6287 first_error (_("can't use Neon quad register here"));
6288 return FAIL;
6289 }
6290 else if (rtype != REG_TYPE_VFS)
6291 {
6292 i++;
6293 if (skip_past_comma (&ptr) == FAIL)
6294 goto wanted_comma;
6295 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6296 goto wanted_arm;
6297 inst.operands[i].reg = val;
6298 inst.operands[i].isreg = 1;
6299 inst.operands[i].present = 1;
6300 }
6301 }
037e8744 6302 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_NSDQ, &rtype,
477330fc
RM
6303 &optype)) != FAIL)
6304 {
6305 /* Case 0: VMOV<c><q> <Qd>, <Qm>
6306 Case 1: VMOV<c><q> <Dd>, <Dm>
6307 Case 8: VMOV.F32 <Sd>, <Sm>
6308 Case 15: VMOV <Sd>, <Se>, <Rn>, <Rm> */
6309
6310 inst.operands[i].reg = val;
6311 inst.operands[i].isreg = 1;
6312 inst.operands[i].isquad = (rtype == REG_TYPE_NQ);
6313 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6314 inst.operands[i].isvec = 1;
6315 inst.operands[i].vectype = optype;
6316 inst.operands[i].present = 1;
6317
6318 if (skip_past_comma (&ptr) == SUCCESS)
6319 {
6320 /* Case 15. */
6321 i++;
6322
6323 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6324 goto wanted_arm;
6325
6326 inst.operands[i].reg = val;
6327 inst.operands[i].isreg = 1;
6328 inst.operands[i++].present = 1;
6329
6330 if (skip_past_comma (&ptr) == FAIL)
6331 goto wanted_comma;
6332
6333 if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) == FAIL)
6334 goto wanted_arm;
6335
6336 inst.operands[i].reg = val;
6337 inst.operands[i].isreg = 1;
6338 inst.operands[i].present = 1;
6339 }
6340 }
4641781c 6341 else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
477330fc
RM
6342 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<float-imm>
6343 Case 3: VMOV<c><q>.<dt> <Dd>, #<float-imm>
6344 Case 10: VMOV.F32 <Sd>, #<imm>
6345 Case 11: VMOV.F64 <Dd>, #<imm> */
6346 inst.operands[i].immisfloat = 1;
8335d6aa
JW
6347 else if (parse_big_immediate (&ptr, i, NULL, /*allow_symbol_p=*/FALSE)
6348 == SUCCESS)
477330fc
RM
6349 /* Case 2: VMOV<c><q>.<dt> <Qd>, #<imm>
6350 Case 3: VMOV<c><q>.<dt> <Dd>, #<imm> */
6351 ;
5287ad62 6352 else
477330fc
RM
6353 {
6354 first_error (_("expected <Rm> or <Dm> or <Qm> operand"));
6355 return FAIL;
6356 }
5287ad62 6357 }
dcbf9037 6358 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
5287ad62
JB
6359 {
6360 /* Cases 6, 7. */
6361 inst.operands[i].reg = val;
6362 inst.operands[i].isreg = 1;
6363 inst.operands[i++].present = 1;
5f4273c7 6364
5287ad62 6365 if (skip_past_comma (&ptr) == FAIL)
477330fc 6366 goto wanted_comma;
5f4273c7 6367
dcbf9037 6368 if ((val = parse_scalar (&ptr, 8, &optype)) != FAIL)
477330fc
RM
6369 {
6370 /* Case 6: VMOV<c><q>.<dt> <Rd>, <Dn[x]> */
6371 inst.operands[i].reg = val;
6372 inst.operands[i].isscalar = 1;
6373 inst.operands[i].present = 1;
6374 inst.operands[i].vectype = optype;
6375 }
dcbf9037 6376 else if ((val = arm_reg_parse (&ptr, REG_TYPE_RN)) != FAIL)
477330fc
RM
6377 {
6378 /* Case 7: VMOV<c><q> <Rd>, <Rn>, <Dm> */
6379 inst.operands[i].reg = val;
6380 inst.operands[i].isreg = 1;
6381 inst.operands[i++].present = 1;
6382
6383 if (skip_past_comma (&ptr) == FAIL)
6384 goto wanted_comma;
6385
6386 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFSD, &rtype, &optype))
6387 == FAIL)
6388 {
6389 first_error (_(reg_expected_msgs[REG_TYPE_VFSD]));
6390 return FAIL;
6391 }
6392
6393 inst.operands[i].reg = val;
6394 inst.operands[i].isreg = 1;
6395 inst.operands[i].isvec = 1;
6396 inst.operands[i].issingle = (rtype == REG_TYPE_VFS);
6397 inst.operands[i].vectype = optype;
6398 inst.operands[i].present = 1;
6399
6400 if (rtype == REG_TYPE_VFS)
6401 {
6402 /* Case 14. */
6403 i++;
6404 if (skip_past_comma (&ptr) == FAIL)
6405 goto wanted_comma;
6406 if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL,
6407 &optype)) == FAIL)
6408 {
6409 first_error (_(reg_expected_msgs[REG_TYPE_VFS]));
6410 return FAIL;
6411 }
6412 inst.operands[i].reg = val;
6413 inst.operands[i].isreg = 1;
6414 inst.operands[i].isvec = 1;
6415 inst.operands[i].issingle = 1;
6416 inst.operands[i].vectype = optype;
6417 inst.operands[i].present = 1;
6418 }
6419 }
037e8744 6420 else if ((val = arm_typed_reg_parse (&ptr, REG_TYPE_VFS, NULL, &optype))
477330fc
RM
6421 != FAIL)
6422 {
6423 /* Case 13. */
6424 inst.operands[i].reg = val;
6425 inst.operands[i].isreg = 1;
6426 inst.operands[i].isvec = 1;
6427 inst.operands[i].issingle = 1;
6428 inst.operands[i].vectype = optype;
6429 inst.operands[i].present = 1;
6430 }
5287ad62
JB
6431 }
6432 else
6433 {
dcbf9037 6434 first_error (_("parse error"));
5287ad62
JB
6435 return FAIL;
6436 }
6437
6438 /* Successfully parsed the operands. Update args. */
6439 *which_operand = i;
6440 *str = ptr;
6441 return SUCCESS;
6442
5f4273c7 6443 wanted_comma:
dcbf9037 6444 first_error (_("expected comma"));
5287ad62 6445 return FAIL;
5f4273c7
NC
6446
6447 wanted_arm:
dcbf9037 6448 first_error (_(reg_expected_msgs[REG_TYPE_RN]));
5287ad62 6449 return FAIL;
5287ad62
JB
6450}
6451
5be8be5d
DG
6452/* Use this macro when the operand constraints are different
6453 for ARM and THUMB (e.g. ldrd). */
6454#define MIX_ARM_THUMB_OPERANDS(arm_operand, thumb_operand) \
6455 ((arm_operand) | ((thumb_operand) << 16))
6456
c19d1205
ZW
6457/* Matcher codes for parse_operands. */
6458enum operand_parse_code
6459{
6460 OP_stop, /* end of line */
6461
6462 OP_RR, /* ARM register */
6463 OP_RRnpc, /* ARM register, not r15 */
5be8be5d 6464 OP_RRnpcsp, /* ARM register, neither r15 nor r13 (a.k.a. 'BadReg') */
c19d1205 6465 OP_RRnpcb, /* ARM register, not r15, in square brackets */
fa94de6b 6466 OP_RRnpctw, /* ARM register, not r15 in Thumb-state or with writeback,
55881a11 6467 optional trailing ! */
c19d1205
ZW
6468 OP_RRw, /* ARM register, not r15, optional trailing ! */
6469 OP_RCP, /* Coprocessor number */
6470 OP_RCN, /* Coprocessor register */
6471 OP_RF, /* FPA register */
6472 OP_RVS, /* VFP single precision register */
5287ad62
JB
6473 OP_RVD, /* VFP double precision register (0..15) */
6474 OP_RND, /* Neon double precision register (0..31) */
6475 OP_RNQ, /* Neon quad precision register */
037e8744 6476 OP_RVSD, /* VFP single or double precision register */
5287ad62 6477 OP_RNDQ, /* Neon double or quad precision register */
037e8744 6478 OP_RNSDQ, /* Neon single, double or quad precision register */
5287ad62 6479 OP_RNSC, /* Neon scalar D[X] */
c19d1205
ZW
6480 OP_RVC, /* VFP control register */
6481 OP_RMF, /* Maverick F register */
6482 OP_RMD, /* Maverick D register */
6483 OP_RMFX, /* Maverick FX register */
6484 OP_RMDX, /* Maverick DX register */
6485 OP_RMAX, /* Maverick AX register */
6486 OP_RMDS, /* Maverick DSPSC register */
6487 OP_RIWR, /* iWMMXt wR register */
6488 OP_RIWC, /* iWMMXt wC register */
6489 OP_RIWG, /* iWMMXt wCG register */
6490 OP_RXA, /* XScale accumulator register */
6491
6492 OP_REGLST, /* ARM register list */
6493 OP_VRSLST, /* VFP single-precision register list */
6494 OP_VRDLST, /* VFP double-precision register list */
037e8744 6495 OP_VRSDLST, /* VFP single or double-precision register list (& quad) */
5287ad62
JB
6496 OP_NRDLST, /* Neon double-precision register list (d0-d31, qN aliases) */
6497 OP_NSTRLST, /* Neon element/structure list */
6498
5287ad62 6499 OP_RNDQ_I0, /* Neon D or Q reg, or immediate zero. */
037e8744 6500 OP_RVSD_I0, /* VFP S or D reg, or immediate zero. */
aacf0b33 6501 OP_RSVD_FI0, /* VFP S or D reg, or floating point immediate zero. */
5287ad62 6502 OP_RR_RNSC, /* ARM reg or Neon scalar. */
037e8744 6503 OP_RNSDQ_RNSC, /* Vector S, D or Q reg, or Neon scalar. */
5287ad62
JB
6504 OP_RNDQ_RNSC, /* Neon D or Q reg, or Neon scalar. */
6505 OP_RND_RNSC, /* Neon D reg, or Neon scalar. */
6506 OP_VMOV, /* Neon VMOV operands. */
4316f0d2 6507 OP_RNDQ_Ibig, /* Neon D or Q reg, or big immediate for logic and VMVN. */
5287ad62 6508 OP_RNDQ_I63b, /* Neon D or Q reg, or immediate for shift. */
2d447fca 6509 OP_RIWR_I32z, /* iWMMXt wR register, or immediate 0 .. 32 for iWMMXt2. */
5287ad62
JB
6510
6511 OP_I0, /* immediate zero */
c19d1205
ZW
6512 OP_I7, /* immediate value 0 .. 7 */
6513 OP_I15, /* 0 .. 15 */
6514 OP_I16, /* 1 .. 16 */
5287ad62 6515 OP_I16z, /* 0 .. 16 */
c19d1205
ZW
6516 OP_I31, /* 0 .. 31 */
6517 OP_I31w, /* 0 .. 31, optional trailing ! */
6518 OP_I32, /* 1 .. 32 */
5287ad62
JB
6519 OP_I32z, /* 0 .. 32 */
6520 OP_I63, /* 0 .. 63 */
c19d1205 6521 OP_I63s, /* -64 .. 63 */
5287ad62
JB
6522 OP_I64, /* 1 .. 64 */
6523 OP_I64z, /* 0 .. 64 */
c19d1205 6524 OP_I255, /* 0 .. 255 */
c19d1205
ZW
6525
6526 OP_I4b, /* immediate, prefix optional, 1 .. 4 */
6527 OP_I7b, /* 0 .. 7 */
6528 OP_I15b, /* 0 .. 15 */
6529 OP_I31b, /* 0 .. 31 */
6530
6531 OP_SH, /* shifter operand */
4962c51a 6532 OP_SHG, /* shifter operand with possible group relocation */
c19d1205 6533 OP_ADDR, /* Memory address expression (any mode) */
4962c51a
MS
6534 OP_ADDRGLDR, /* Mem addr expr (any mode) with possible LDR group reloc */
6535 OP_ADDRGLDRS, /* Mem addr expr (any mode) with possible LDRS group reloc */
6536 OP_ADDRGLDC, /* Mem addr expr (any mode) with possible LDC group reloc */
c19d1205
ZW
6537 OP_EXP, /* arbitrary expression */
6538 OP_EXPi, /* same, with optional immediate prefix */
6539 OP_EXPr, /* same, with optional relocation suffix */
b6895b4f 6540 OP_HALF, /* 0 .. 65535 or low/high reloc. */
c28eeff2
SN
6541 OP_IROT1, /* VCADD rotate immediate: 90, 270. */
6542 OP_IROT2, /* VCMLA rotate immediate: 0, 90, 180, 270. */
c19d1205
ZW
6543
6544 OP_CPSF, /* CPS flags */
6545 OP_ENDI, /* Endianness specifier */
d2cd1205
JB
6546 OP_wPSR, /* CPSR/SPSR/APSR mask for msr (writing). */
6547 OP_rPSR, /* CPSR/SPSR/APSR mask for msr (reading). */
c19d1205 6548 OP_COND, /* conditional code */
92e90b6e 6549 OP_TB, /* Table branch. */
c19d1205 6550
037e8744
JB
6551 OP_APSR_RR, /* ARM register or "APSR_nzcv". */
6552
c19d1205 6553 OP_RRnpc_I0, /* ARM register or literal 0 */
33eaf5de 6554 OP_RR_EXr, /* ARM register or expression with opt. reloc stuff. */
c19d1205
ZW
6555 OP_RR_EXi, /* ARM register or expression with imm prefix */
6556 OP_RF_IF, /* FPA register or immediate */
6557 OP_RIWR_RIWC, /* iWMMXt R or C reg */
41adaa5c 6558 OP_RIWC_RIWG, /* iWMMXt wC or wCG reg */
c19d1205
ZW
6559
6560 /* Optional operands. */
6561 OP_oI7b, /* immediate, prefix optional, 0 .. 7 */
6562 OP_oI31b, /* 0 .. 31 */
5287ad62 6563 OP_oI32b, /* 1 .. 32 */
5f1af56b 6564 OP_oI32z, /* 0 .. 32 */
c19d1205
ZW
6565 OP_oIffffb, /* 0 .. 65535 */
6566 OP_oI255c, /* curly-brace enclosed, 0 .. 255 */
6567
6568 OP_oRR, /* ARM register */
6569 OP_oRRnpc, /* ARM register, not the PC */
5be8be5d 6570 OP_oRRnpcsp, /* ARM register, neither the PC nor the SP (a.k.a. BadReg) */
b6702015 6571 OP_oRRw, /* ARM register, not r15, optional trailing ! */
5287ad62
JB
6572 OP_oRND, /* Optional Neon double precision register */
6573 OP_oRNQ, /* Optional Neon quad precision register */
6574 OP_oRNDQ, /* Optional Neon double or quad precision register */
037e8744 6575 OP_oRNSDQ, /* Optional single, double or quad precision vector register */
c19d1205
ZW
6576 OP_oSHll, /* LSL immediate */
6577 OP_oSHar, /* ASR immediate */
6578 OP_oSHllar, /* LSL or ASR immediate */
6579 OP_oROR, /* ROR 0/8/16/24 */
52e7f43d 6580 OP_oBARRIER_I15, /* Option argument for a barrier instruction. */
c19d1205 6581
5be8be5d
DG
6582 /* Some pre-defined mixed (ARM/THUMB) operands. */
6583 OP_RR_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RR, OP_RRnpcsp),
6584 OP_RRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_RRnpc, OP_RRnpcsp),
6585 OP_oRRnpc_npcsp = MIX_ARM_THUMB_OPERANDS (OP_oRRnpc, OP_oRRnpcsp),
6586
c19d1205
ZW
6587 OP_FIRST_OPTIONAL = OP_oI7b
6588};
a737bd4d 6589
c19d1205
ZW
6590/* Generic instruction operand parser. This does no encoding and no
6591 semantic validation; it merely squirrels values away in the inst
6592 structure. Returns SUCCESS or FAIL depending on whether the
6593 specified grammar matched. */
6594static int
5be8be5d 6595parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
c19d1205 6596{
5be8be5d 6597 unsigned const int *upat = pattern;
c19d1205
ZW
6598 char *backtrack_pos = 0;
6599 const char *backtrack_error = 0;
99aad254 6600 int i, val = 0, backtrack_index = 0;
5287ad62 6601 enum arm_reg_type rtype;
4962c51a 6602 parse_operand_result result;
5be8be5d 6603 unsigned int op_parse_code;
c19d1205 6604
e07e6e58
NC
6605#define po_char_or_fail(chr) \
6606 do \
6607 { \
6608 if (skip_past_char (&str, chr) == FAIL) \
477330fc 6609 goto bad_args; \
e07e6e58
NC
6610 } \
6611 while (0)
c19d1205 6612
e07e6e58
NC
6613#define po_reg_or_fail(regtype) \
6614 do \
dcbf9037 6615 { \
e07e6e58 6616 val = arm_typed_reg_parse (& str, regtype, & rtype, \
477330fc 6617 & inst.operands[i].vectype); \
e07e6e58 6618 if (val == FAIL) \
477330fc
RM
6619 { \
6620 first_error (_(reg_expected_msgs[regtype])); \
6621 goto failure; \
6622 } \
e07e6e58
NC
6623 inst.operands[i].reg = val; \
6624 inst.operands[i].isreg = 1; \
6625 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6626 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6627 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc
RM
6628 || rtype == REG_TYPE_VFD \
6629 || rtype == REG_TYPE_NQ); \
dcbf9037 6630 } \
e07e6e58
NC
6631 while (0)
6632
6633#define po_reg_or_goto(regtype, label) \
6634 do \
6635 { \
6636 val = arm_typed_reg_parse (& str, regtype, & rtype, \
6637 & inst.operands[i].vectype); \
6638 if (val == FAIL) \
6639 goto label; \
dcbf9037 6640 \
e07e6e58
NC
6641 inst.operands[i].reg = val; \
6642 inst.operands[i].isreg = 1; \
6643 inst.operands[i].isquad = (rtype == REG_TYPE_NQ); \
6644 inst.operands[i].issingle = (rtype == REG_TYPE_VFS); \
6645 inst.operands[i].isvec = (rtype == REG_TYPE_VFS \
477330fc 6646 || rtype == REG_TYPE_VFD \
e07e6e58
NC
6647 || rtype == REG_TYPE_NQ); \
6648 } \
6649 while (0)
6650
6651#define po_imm_or_fail(min, max, popt) \
6652 do \
6653 { \
6654 if (parse_immediate (&str, &val, min, max, popt) == FAIL) \
6655 goto failure; \
6656 inst.operands[i].imm = val; \
6657 } \
6658 while (0)
6659
6660#define po_scalar_or_goto(elsz, label) \
6661 do \
6662 { \
6663 val = parse_scalar (& str, elsz, & inst.operands[i].vectype); \
6664 if (val == FAIL) \
6665 goto label; \
6666 inst.operands[i].reg = val; \
6667 inst.operands[i].isscalar = 1; \
6668 } \
6669 while (0)
6670
6671#define po_misc_or_fail(expr) \
6672 do \
6673 { \
6674 if (expr) \
6675 goto failure; \
6676 } \
6677 while (0)
6678
6679#define po_misc_or_fail_no_backtrack(expr) \
6680 do \
6681 { \
6682 result = expr; \
6683 if (result == PARSE_OPERAND_FAIL_NO_BACKTRACK) \
6684 backtrack_pos = 0; \
6685 if (result != PARSE_OPERAND_SUCCESS) \
6686 goto failure; \
6687 } \
6688 while (0)
4962c51a 6689
52e7f43d
RE
6690#define po_barrier_or_imm(str) \
6691 do \
6692 { \
6693 val = parse_barrier (&str); \
ccb84d65
JB
6694 if (val == FAIL && ! ISALPHA (*str)) \
6695 goto immediate; \
6696 if (val == FAIL \
6697 /* ISB can only take SY as an option. */ \
6698 || ((inst.instruction & 0xf0) == 0x60 \
6699 && val != 0xf)) \
52e7f43d 6700 { \
ccb84d65
JB
6701 inst.error = _("invalid barrier type"); \
6702 backtrack_pos = 0; \
6703 goto failure; \
52e7f43d
RE
6704 } \
6705 } \
6706 while (0)
6707
c19d1205
ZW
6708 skip_whitespace (str);
6709
6710 for (i = 0; upat[i] != OP_stop; i++)
6711 {
5be8be5d
DG
6712 op_parse_code = upat[i];
6713 if (op_parse_code >= 1<<16)
6714 op_parse_code = thumb ? (op_parse_code >> 16)
6715 : (op_parse_code & ((1<<16)-1));
6716
6717 if (op_parse_code >= OP_FIRST_OPTIONAL)
c19d1205
ZW
6718 {
6719 /* Remember where we are in case we need to backtrack. */
9c2799c2 6720 gas_assert (!backtrack_pos);
c19d1205
ZW
6721 backtrack_pos = str;
6722 backtrack_error = inst.error;
6723 backtrack_index = i;
6724 }
6725
b6702015 6726 if (i > 0 && (i > 1 || inst.operands[0].present))
c19d1205
ZW
6727 po_char_or_fail (',');
6728
5be8be5d 6729 switch (op_parse_code)
c19d1205
ZW
6730 {
6731 /* Registers */
6732 case OP_oRRnpc:
5be8be5d 6733 case OP_oRRnpcsp:
c19d1205 6734 case OP_RRnpc:
5be8be5d 6735 case OP_RRnpcsp:
c19d1205
ZW
6736 case OP_oRR:
6737 case OP_RR: po_reg_or_fail (REG_TYPE_RN); break;
6738 case OP_RCP: po_reg_or_fail (REG_TYPE_CP); break;
6739 case OP_RCN: po_reg_or_fail (REG_TYPE_CN); break;
6740 case OP_RF: po_reg_or_fail (REG_TYPE_FN); break;
6741 case OP_RVS: po_reg_or_fail (REG_TYPE_VFS); break;
6742 case OP_RVD: po_reg_or_fail (REG_TYPE_VFD); break;
477330fc 6743 case OP_oRND:
5287ad62 6744 case OP_RND: po_reg_or_fail (REG_TYPE_VFD); break;
cd2cf30b
PB
6745 case OP_RVC:
6746 po_reg_or_goto (REG_TYPE_VFC, coproc_reg);
6747 break;
6748 /* Also accept generic coprocessor regs for unknown registers. */
6749 coproc_reg:
6750 po_reg_or_fail (REG_TYPE_CN);
6751 break;
c19d1205
ZW
6752 case OP_RMF: po_reg_or_fail (REG_TYPE_MVF); break;
6753 case OP_RMD: po_reg_or_fail (REG_TYPE_MVD); break;
6754 case OP_RMFX: po_reg_or_fail (REG_TYPE_MVFX); break;
6755 case OP_RMDX: po_reg_or_fail (REG_TYPE_MVDX); break;
6756 case OP_RMAX: po_reg_or_fail (REG_TYPE_MVAX); break;
6757 case OP_RMDS: po_reg_or_fail (REG_TYPE_DSPSC); break;
6758 case OP_RIWR: po_reg_or_fail (REG_TYPE_MMXWR); break;
6759 case OP_RIWC: po_reg_or_fail (REG_TYPE_MMXWC); break;
6760 case OP_RIWG: po_reg_or_fail (REG_TYPE_MMXWCG); break;
6761 case OP_RXA: po_reg_or_fail (REG_TYPE_XSCALE); break;
477330fc 6762 case OP_oRNQ:
5287ad62 6763 case OP_RNQ: po_reg_or_fail (REG_TYPE_NQ); break;
477330fc 6764 case OP_oRNDQ:
5287ad62 6765 case OP_RNDQ: po_reg_or_fail (REG_TYPE_NDQ); break;
477330fc
RM
6766 case OP_RVSD: po_reg_or_fail (REG_TYPE_VFSD); break;
6767 case OP_oRNSDQ:
6768 case OP_RNSDQ: po_reg_or_fail (REG_TYPE_NSDQ); break;
6769
6770 /* Neon scalar. Using an element size of 8 means that some invalid
6771 scalars are accepted here, so deal with those in later code. */
6772 case OP_RNSC: po_scalar_or_goto (8, failure); break;
6773
6774 case OP_RNDQ_I0:
6775 {
6776 po_reg_or_goto (REG_TYPE_NDQ, try_imm0);
6777 break;
6778 try_imm0:
6779 po_imm_or_fail (0, 0, TRUE);
6780 }
6781 break;
6782
6783 case OP_RVSD_I0:
6784 po_reg_or_goto (REG_TYPE_VFSD, try_imm0);
6785 break;
6786
aacf0b33
KT
6787 case OP_RSVD_FI0:
6788 {
6789 po_reg_or_goto (REG_TYPE_VFSD, try_ifimm0);
6790 break;
6791 try_ifimm0:
6792 if (parse_ifimm_zero (&str))
6793 inst.operands[i].imm = 0;
6794 else
6795 {
6796 inst.error
6797 = _("only floating point zero is allowed as immediate value");
6798 goto failure;
6799 }
6800 }
6801 break;
6802
477330fc
RM
6803 case OP_RR_RNSC:
6804 {
6805 po_scalar_or_goto (8, try_rr);
6806 break;
6807 try_rr:
6808 po_reg_or_fail (REG_TYPE_RN);
6809 }
6810 break;
6811
6812 case OP_RNSDQ_RNSC:
6813 {
6814 po_scalar_or_goto (8, try_nsdq);
6815 break;
6816 try_nsdq:
6817 po_reg_or_fail (REG_TYPE_NSDQ);
6818 }
6819 break;
6820
6821 case OP_RNDQ_RNSC:
6822 {
6823 po_scalar_or_goto (8, try_ndq);
6824 break;
6825 try_ndq:
6826 po_reg_or_fail (REG_TYPE_NDQ);
6827 }
6828 break;
6829
6830 case OP_RND_RNSC:
6831 {
6832 po_scalar_or_goto (8, try_vfd);
6833 break;
6834 try_vfd:
6835 po_reg_or_fail (REG_TYPE_VFD);
6836 }
6837 break;
6838
6839 case OP_VMOV:
6840 /* WARNING: parse_neon_mov can move the operand counter, i. If we're
6841 not careful then bad things might happen. */
6842 po_misc_or_fail (parse_neon_mov (&str, &i) == FAIL);
6843 break;
6844
6845 case OP_RNDQ_Ibig:
6846 {
6847 po_reg_or_goto (REG_TYPE_NDQ, try_immbig);
6848 break;
6849 try_immbig:
6850 /* There's a possibility of getting a 64-bit immediate here, so
6851 we need special handling. */
8335d6aa
JW
6852 if (parse_big_immediate (&str, i, NULL, /*allow_symbol_p=*/FALSE)
6853 == FAIL)
477330fc
RM
6854 {
6855 inst.error = _("immediate value is out of range");
6856 goto failure;
6857 }
6858 }
6859 break;
6860
6861 case OP_RNDQ_I63b:
6862 {
6863 po_reg_or_goto (REG_TYPE_NDQ, try_shimm);
6864 break;
6865 try_shimm:
6866 po_imm_or_fail (0, 63, TRUE);
6867 }
6868 break;
c19d1205
ZW
6869
6870 case OP_RRnpcb:
6871 po_char_or_fail ('[');
6872 po_reg_or_fail (REG_TYPE_RN);
6873 po_char_or_fail (']');
6874 break;
a737bd4d 6875
55881a11 6876 case OP_RRnpctw:
c19d1205 6877 case OP_RRw:
b6702015 6878 case OP_oRRw:
c19d1205
ZW
6879 po_reg_or_fail (REG_TYPE_RN);
6880 if (skip_past_char (&str, '!') == SUCCESS)
6881 inst.operands[i].writeback = 1;
6882 break;
6883
6884 /* Immediates */
6885 case OP_I7: po_imm_or_fail ( 0, 7, FALSE); break;
6886 case OP_I15: po_imm_or_fail ( 0, 15, FALSE); break;
6887 case OP_I16: po_imm_or_fail ( 1, 16, FALSE); break;
477330fc 6888 case OP_I16z: po_imm_or_fail ( 0, 16, FALSE); break;
c19d1205
ZW
6889 case OP_I31: po_imm_or_fail ( 0, 31, FALSE); break;
6890 case OP_I32: po_imm_or_fail ( 1, 32, FALSE); break;
477330fc 6891 case OP_I32z: po_imm_or_fail ( 0, 32, FALSE); break;
c19d1205 6892 case OP_I63s: po_imm_or_fail (-64, 63, FALSE); break;
477330fc
RM
6893 case OP_I63: po_imm_or_fail ( 0, 63, FALSE); break;
6894 case OP_I64: po_imm_or_fail ( 1, 64, FALSE); break;
6895 case OP_I64z: po_imm_or_fail ( 0, 64, FALSE); break;
c19d1205 6896 case OP_I255: po_imm_or_fail ( 0, 255, FALSE); break;
c19d1205
ZW
6897
6898 case OP_I4b: po_imm_or_fail ( 1, 4, TRUE); break;
6899 case OP_oI7b:
6900 case OP_I7b: po_imm_or_fail ( 0, 7, TRUE); break;
6901 case OP_I15b: po_imm_or_fail ( 0, 15, TRUE); break;
6902 case OP_oI31b:
6903 case OP_I31b: po_imm_or_fail ( 0, 31, TRUE); break;
477330fc
RM
6904 case OP_oI32b: po_imm_or_fail ( 1, 32, TRUE); break;
6905 case OP_oI32z: po_imm_or_fail ( 0, 32, TRUE); break;
c19d1205
ZW
6906 case OP_oIffffb: po_imm_or_fail ( 0, 0xffff, TRUE); break;
6907
6908 /* Immediate variants */
6909 case OP_oI255c:
6910 po_char_or_fail ('{');
6911 po_imm_or_fail (0, 255, TRUE);
6912 po_char_or_fail ('}');
6913 break;
6914
6915 case OP_I31w:
6916 /* The expression parser chokes on a trailing !, so we have
6917 to find it first and zap it. */
6918 {
6919 char *s = str;
6920 while (*s && *s != ',')
6921 s++;
6922 if (s[-1] == '!')
6923 {
6924 s[-1] = '\0';
6925 inst.operands[i].writeback = 1;
6926 }
6927 po_imm_or_fail (0, 31, TRUE);
6928 if (str == s - 1)
6929 str = s;
6930 }
6931 break;
6932
6933 /* Expressions */
6934 case OP_EXPi: EXPi:
6935 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6936 GE_OPT_PREFIX));
6937 break;
6938
6939 case OP_EXP:
6940 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6941 GE_NO_PREFIX));
6942 break;
6943
6944 case OP_EXPr: EXPr:
6945 po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
6946 GE_NO_PREFIX));
6947 if (inst.reloc.exp.X_op == O_symbol)
a737bd4d 6948 {
c19d1205
ZW
6949 val = parse_reloc (&str);
6950 if (val == -1)
6951 {
6952 inst.error = _("unrecognized relocation suffix");
6953 goto failure;
6954 }
6955 else if (val != BFD_RELOC_UNUSED)
6956 {
6957 inst.operands[i].imm = val;
6958 inst.operands[i].hasreloc = 1;
6959 }
a737bd4d 6960 }
c19d1205 6961 break;
a737bd4d 6962
b6895b4f
PB
6963 /* Operand for MOVW or MOVT. */
6964 case OP_HALF:
6965 po_misc_or_fail (parse_half (&str));
6966 break;
6967
e07e6e58 6968 /* Register or expression. */
c19d1205
ZW
6969 case OP_RR_EXr: po_reg_or_goto (REG_TYPE_RN, EXPr); break;
6970 case OP_RR_EXi: po_reg_or_goto (REG_TYPE_RN, EXPi); break;
a737bd4d 6971
e07e6e58 6972 /* Register or immediate. */
c19d1205
ZW
6973 case OP_RRnpc_I0: po_reg_or_goto (REG_TYPE_RN, I0); break;
6974 I0: po_imm_or_fail (0, 0, FALSE); break;
a737bd4d 6975
c19d1205
ZW
6976 case OP_RF_IF: po_reg_or_goto (REG_TYPE_FN, IF); break;
6977 IF:
6978 if (!is_immediate_prefix (*str))
6979 goto bad_args;
6980 str++;
6981 val = parse_fpa_immediate (&str);
6982 if (val == FAIL)
6983 goto failure;
6984 /* FPA immediates are encoded as registers 8-15.
6985 parse_fpa_immediate has already applied the offset. */
6986 inst.operands[i].reg = val;
6987 inst.operands[i].isreg = 1;
6988 break;
09d92015 6989
2d447fca
JM
6990 case OP_RIWR_I32z: po_reg_or_goto (REG_TYPE_MMXWR, I32z); break;
6991 I32z: po_imm_or_fail (0, 32, FALSE); break;
6992
e07e6e58 6993 /* Two kinds of register. */
c19d1205
ZW
6994 case OP_RIWR_RIWC:
6995 {
6996 struct reg_entry *rege = arm_reg_parse_multi (&str);
97f87066
JM
6997 if (!rege
6998 || (rege->type != REG_TYPE_MMXWR
6999 && rege->type != REG_TYPE_MMXWC
7000 && rege->type != REG_TYPE_MMXWCG))
c19d1205
ZW
7001 {
7002 inst.error = _("iWMMXt data or control register expected");
7003 goto failure;
7004 }
7005 inst.operands[i].reg = rege->number;
7006 inst.operands[i].isreg = (rege->type == REG_TYPE_MMXWR);
7007 }
7008 break;
09d92015 7009
41adaa5c
JM
7010 case OP_RIWC_RIWG:
7011 {
7012 struct reg_entry *rege = arm_reg_parse_multi (&str);
7013 if (!rege
7014 || (rege->type != REG_TYPE_MMXWC
7015 && rege->type != REG_TYPE_MMXWCG))
7016 {
7017 inst.error = _("iWMMXt control register expected");
7018 goto failure;
7019 }
7020 inst.operands[i].reg = rege->number;
7021 inst.operands[i].isreg = 1;
7022 }
7023 break;
7024
c19d1205
ZW
7025 /* Misc */
7026 case OP_CPSF: val = parse_cps_flags (&str); break;
7027 case OP_ENDI: val = parse_endian_specifier (&str); break;
7028 case OP_oROR: val = parse_ror (&str); break;
c19d1205 7029 case OP_COND: val = parse_cond (&str); break;
52e7f43d
RE
7030 case OP_oBARRIER_I15:
7031 po_barrier_or_imm (str); break;
7032 immediate:
7033 if (parse_immediate (&str, &val, 0, 15, TRUE) == FAIL)
477330fc 7034 goto failure;
52e7f43d 7035 break;
c19d1205 7036
fa94de6b 7037 case OP_wPSR:
d2cd1205 7038 case OP_rPSR:
90ec0d68
MGD
7039 po_reg_or_goto (REG_TYPE_RNB, try_psr);
7040 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_virt))
7041 {
7042 inst.error = _("Banked registers are not available with this "
7043 "architecture.");
7044 goto failure;
7045 }
7046 break;
d2cd1205
JB
7047 try_psr:
7048 val = parse_psr (&str, op_parse_code == OP_wPSR);
7049 break;
037e8744 7050
477330fc
RM
7051 case OP_APSR_RR:
7052 po_reg_or_goto (REG_TYPE_RN, try_apsr);
7053 break;
7054 try_apsr:
7055 /* Parse "APSR_nvzc" operand (for FMSTAT-equivalent MRS
7056 instruction). */
7057 if (strncasecmp (str, "APSR_", 5) == 0)
7058 {
7059 unsigned found = 0;
7060 str += 5;
7061 while (found < 15)
7062 switch (*str++)
7063 {
7064 case 'c': found = (found & 1) ? 16 : found | 1; break;
7065 case 'n': found = (found & 2) ? 16 : found | 2; break;
7066 case 'z': found = (found & 4) ? 16 : found | 4; break;
7067 case 'v': found = (found & 8) ? 16 : found | 8; break;
7068 default: found = 16;
7069 }
7070 if (found != 15)
7071 goto failure;
7072 inst.operands[i].isvec = 1;
f7c21dc7
NC
7073 /* APSR_nzcv is encoded in instructions as if it were the REG_PC. */
7074 inst.operands[i].reg = REG_PC;
477330fc
RM
7075 }
7076 else
7077 goto failure;
7078 break;
037e8744 7079
92e90b6e
PB
7080 case OP_TB:
7081 po_misc_or_fail (parse_tb (&str));
7082 break;
7083
e07e6e58 7084 /* Register lists. */
c19d1205
ZW
7085 case OP_REGLST:
7086 val = parse_reg_list (&str);
7087 if (*str == '^')
7088 {
5e0d7f77 7089 inst.operands[i].writeback = 1;
c19d1205
ZW
7090 str++;
7091 }
7092 break;
09d92015 7093
c19d1205 7094 case OP_VRSLST:
5287ad62 7095 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_S);
c19d1205 7096 break;
09d92015 7097
c19d1205 7098 case OP_VRDLST:
5287ad62 7099 val = parse_vfp_reg_list (&str, &inst.operands[i].reg, REGLIST_VFP_D);
c19d1205 7100 break;
a737bd4d 7101
477330fc
RM
7102 case OP_VRSDLST:
7103 /* Allow Q registers too. */
7104 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7105 REGLIST_NEON_D);
7106 if (val == FAIL)
7107 {
7108 inst.error = NULL;
7109 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7110 REGLIST_VFP_S);
7111 inst.operands[i].issingle = 1;
7112 }
7113 break;
7114
7115 case OP_NRDLST:
7116 val = parse_vfp_reg_list (&str, &inst.operands[i].reg,
7117 REGLIST_NEON_D);
7118 break;
5287ad62
JB
7119
7120 case OP_NSTRLST:
477330fc
RM
7121 val = parse_neon_el_struct_list (&str, &inst.operands[i].reg,
7122 &inst.operands[i].vectype);
7123 break;
5287ad62 7124
c19d1205
ZW
7125 /* Addressing modes */
7126 case OP_ADDR:
7127 po_misc_or_fail (parse_address (&str, i));
7128 break;
09d92015 7129
4962c51a
MS
7130 case OP_ADDRGLDR:
7131 po_misc_or_fail_no_backtrack (
477330fc 7132 parse_address_group_reloc (&str, i, GROUP_LDR));
4962c51a
MS
7133 break;
7134
7135 case OP_ADDRGLDRS:
7136 po_misc_or_fail_no_backtrack (
477330fc 7137 parse_address_group_reloc (&str, i, GROUP_LDRS));
4962c51a
MS
7138 break;
7139
7140 case OP_ADDRGLDC:
7141 po_misc_or_fail_no_backtrack (
477330fc 7142 parse_address_group_reloc (&str, i, GROUP_LDC));
4962c51a
MS
7143 break;
7144
c19d1205
ZW
7145 case OP_SH:
7146 po_misc_or_fail (parse_shifter_operand (&str, i));
7147 break;
09d92015 7148
4962c51a
MS
7149 case OP_SHG:
7150 po_misc_or_fail_no_backtrack (
477330fc 7151 parse_shifter_operand_group_reloc (&str, i));
4962c51a
MS
7152 break;
7153
c19d1205
ZW
7154 case OP_oSHll:
7155 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_IMMEDIATE));
7156 break;
09d92015 7157
c19d1205
ZW
7158 case OP_oSHar:
7159 po_misc_or_fail (parse_shift (&str, i, SHIFT_ASR_IMMEDIATE));
7160 break;
09d92015 7161
c19d1205
ZW
7162 case OP_oSHllar:
7163 po_misc_or_fail (parse_shift (&str, i, SHIFT_LSL_OR_ASR_IMMEDIATE));
7164 break;
09d92015 7165
c19d1205 7166 default:
5be8be5d 7167 as_fatal (_("unhandled operand code %d"), op_parse_code);
c19d1205 7168 }
09d92015 7169
c19d1205
ZW
7170 /* Various value-based sanity checks and shared operations. We
7171 do not signal immediate failures for the register constraints;
7172 this allows a syntax error to take precedence. */
5be8be5d 7173 switch (op_parse_code)
c19d1205
ZW
7174 {
7175 case OP_oRRnpc:
7176 case OP_RRnpc:
7177 case OP_RRnpcb:
7178 case OP_RRw:
b6702015 7179 case OP_oRRw:
c19d1205
ZW
7180 case OP_RRnpc_I0:
7181 if (inst.operands[i].isreg && inst.operands[i].reg == REG_PC)
7182 inst.error = BAD_PC;
7183 break;
09d92015 7184
5be8be5d
DG
7185 case OP_oRRnpcsp:
7186 case OP_RRnpcsp:
7187 if (inst.operands[i].isreg)
7188 {
7189 if (inst.operands[i].reg == REG_PC)
7190 inst.error = BAD_PC;
5c8ed6a4
JW
7191 else if (inst.operands[i].reg == REG_SP
7192 /* The restriction on Rd/Rt/Rt2 on Thumb mode has been
7193 relaxed since ARMv8-A. */
7194 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
7195 {
7196 gas_assert (thumb);
7197 inst.error = BAD_SP;
7198 }
5be8be5d
DG
7199 }
7200 break;
7201
55881a11 7202 case OP_RRnpctw:
fa94de6b
RM
7203 if (inst.operands[i].isreg
7204 && inst.operands[i].reg == REG_PC
55881a11
MGD
7205 && (inst.operands[i].writeback || thumb))
7206 inst.error = BAD_PC;
7207 break;
7208
c19d1205
ZW
7209 case OP_CPSF:
7210 case OP_ENDI:
7211 case OP_oROR:
d2cd1205
JB
7212 case OP_wPSR:
7213 case OP_rPSR:
c19d1205 7214 case OP_COND:
52e7f43d 7215 case OP_oBARRIER_I15:
c19d1205
ZW
7216 case OP_REGLST:
7217 case OP_VRSLST:
7218 case OP_VRDLST:
477330fc
RM
7219 case OP_VRSDLST:
7220 case OP_NRDLST:
7221 case OP_NSTRLST:
c19d1205
ZW
7222 if (val == FAIL)
7223 goto failure;
7224 inst.operands[i].imm = val;
7225 break;
a737bd4d 7226
c19d1205
ZW
7227 default:
7228 break;
7229 }
09d92015 7230
c19d1205
ZW
7231 /* If we get here, this operand was successfully parsed. */
7232 inst.operands[i].present = 1;
7233 continue;
09d92015 7234
c19d1205 7235 bad_args:
09d92015 7236 inst.error = BAD_ARGS;
c19d1205
ZW
7237
7238 failure:
7239 if (!backtrack_pos)
d252fdde
PB
7240 {
7241 /* The parse routine should already have set inst.error, but set a
5f4273c7 7242 default here just in case. */
d252fdde
PB
7243 if (!inst.error)
7244 inst.error = _("syntax error");
7245 return FAIL;
7246 }
c19d1205
ZW
7247
7248 /* Do not backtrack over a trailing optional argument that
7249 absorbed some text. We will only fail again, with the
7250 'garbage following instruction' error message, which is
7251 probably less helpful than the current one. */
7252 if (backtrack_index == i && backtrack_pos != str
7253 && upat[i+1] == OP_stop)
d252fdde
PB
7254 {
7255 if (!inst.error)
7256 inst.error = _("syntax error");
7257 return FAIL;
7258 }
c19d1205
ZW
7259
7260 /* Try again, skipping the optional argument at backtrack_pos. */
7261 str = backtrack_pos;
7262 inst.error = backtrack_error;
7263 inst.operands[backtrack_index].present = 0;
7264 i = backtrack_index;
7265 backtrack_pos = 0;
09d92015 7266 }
09d92015 7267
c19d1205
ZW
7268 /* Check that we have parsed all the arguments. */
7269 if (*str != '\0' && !inst.error)
7270 inst.error = _("garbage following instruction");
09d92015 7271
c19d1205 7272 return inst.error ? FAIL : SUCCESS;
09d92015
MM
7273}
7274
c19d1205
ZW
7275#undef po_char_or_fail
7276#undef po_reg_or_fail
7277#undef po_reg_or_goto
7278#undef po_imm_or_fail
5287ad62 7279#undef po_scalar_or_fail
52e7f43d 7280#undef po_barrier_or_imm
e07e6e58 7281
c19d1205 7282/* Shorthand macro for instruction encoding functions issuing errors. */
e07e6e58
NC
7283#define constraint(expr, err) \
7284 do \
c19d1205 7285 { \
e07e6e58
NC
7286 if (expr) \
7287 { \
7288 inst.error = err; \
7289 return; \
7290 } \
c19d1205 7291 } \
e07e6e58 7292 while (0)
c19d1205 7293
fdfde340
JM
7294/* Reject "bad registers" for Thumb-2 instructions. Many Thumb-2
7295 instructions are unpredictable if these registers are used. This
5c8ed6a4
JW
7296 is the BadReg predicate in ARM's Thumb-2 documentation.
7297
7298 Before ARMv8-A, REG_PC and REG_SP were not allowed in quite a few
7299 places, while the restriction on REG_SP was relaxed since ARMv8-A. */
7300#define reject_bad_reg(reg) \
7301 do \
7302 if (reg == REG_PC) \
7303 { \
7304 inst.error = BAD_PC; \
7305 return; \
7306 } \
7307 else if (reg == REG_SP \
7308 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8)) \
7309 { \
7310 inst.error = BAD_SP; \
7311 return; \
7312 } \
fdfde340
JM
7313 while (0)
7314
94206790
MM
7315/* If REG is R13 (the stack pointer), warn that its use is
7316 deprecated. */
7317#define warn_deprecated_sp(reg) \
7318 do \
7319 if (warn_on_deprecated && reg == REG_SP) \
5c3696f8 7320 as_tsktsk (_("use of r13 is deprecated")); \
94206790
MM
7321 while (0)
7322
c19d1205
ZW
7323/* Functions for operand encoding. ARM, then Thumb. */
7324
d840c081 7325#define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
c19d1205 7326
9db2f6b4
RL
7327/* If the current inst is scalar ARMv8.2 fp16 instruction, do special encoding.
7328
7329 The only binary encoding difference is the Coprocessor number. Coprocessor
7330 9 is used for half-precision calculations or conversions. The format of the
2b0f3761 7331 instruction is the same as the equivalent Coprocessor 10 instruction that
9db2f6b4
RL
7332 exists for Single-Precision operation. */
7333
7334static void
7335do_scalar_fp16_v82_encode (void)
7336{
7337 if (inst.cond != COND_ALWAYS)
7338 as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
7339 " the behaviour is UNPREDICTABLE"));
7340 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
7341 _(BAD_FP16));
7342
7343 inst.instruction = (inst.instruction & 0xfffff0ff) | 0x900;
7344 mark_feature_used (&arm_ext_fp16);
7345}
7346
c19d1205
ZW
7347/* If VAL can be encoded in the immediate field of an ARM instruction,
7348 return the encoded form. Otherwise, return FAIL. */
7349
7350static unsigned int
7351encode_arm_immediate (unsigned int val)
09d92015 7352{
c19d1205
ZW
7353 unsigned int a, i;
7354
4f1d6205
L
7355 if (val <= 0xff)
7356 return val;
7357
7358 for (i = 2; i < 32; i += 2)
c19d1205
ZW
7359 if ((a = rotate_left (val, i)) <= 0xff)
7360 return a | (i << 7); /* 12-bit pack: [shift-cnt,const]. */
7361
7362 return FAIL;
09d92015
MM
7363}
7364
c19d1205
ZW
7365/* If VAL can be encoded in the immediate field of a Thumb32 instruction,
7366 return the encoded form. Otherwise, return FAIL. */
7367static unsigned int
7368encode_thumb32_immediate (unsigned int val)
09d92015 7369{
c19d1205 7370 unsigned int a, i;
09d92015 7371
9c3c69f2 7372 if (val <= 0xff)
c19d1205 7373 return val;
a737bd4d 7374
9c3c69f2 7375 for (i = 1; i <= 24; i++)
09d92015 7376 {
9c3c69f2
PB
7377 a = val >> i;
7378 if ((val & ~(0xff << i)) == 0)
7379 return ((val >> i) & 0x7f) | ((32 - i) << 7);
09d92015 7380 }
a737bd4d 7381
c19d1205
ZW
7382 a = val & 0xff;
7383 if (val == ((a << 16) | a))
7384 return 0x100 | a;
7385 if (val == ((a << 24) | (a << 16) | (a << 8) | a))
7386 return 0x300 | a;
09d92015 7387
c19d1205
ZW
7388 a = val & 0xff00;
7389 if (val == ((a << 16) | a))
7390 return 0x200 | (a >> 8);
a737bd4d 7391
c19d1205 7392 return FAIL;
09d92015 7393}
5287ad62 7394/* Encode a VFP SP or DP register number into inst.instruction. */
09d92015
MM
7395
7396static void
5287ad62
JB
7397encode_arm_vfp_reg (int reg, enum vfp_reg_pos pos)
7398{
7399 if ((pos == VFP_REG_Dd || pos == VFP_REG_Dn || pos == VFP_REG_Dm)
7400 && reg > 15)
7401 {
b1cc4aeb 7402 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_d32))
477330fc
RM
7403 {
7404 if (thumb_mode)
7405 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
7406 fpu_vfp_ext_d32);
7407 else
7408 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
7409 fpu_vfp_ext_d32);
7410 }
5287ad62 7411 else
477330fc
RM
7412 {
7413 first_error (_("D register out of range for selected VFP version"));
7414 return;
7415 }
5287ad62
JB
7416 }
7417
c19d1205 7418 switch (pos)
09d92015 7419 {
c19d1205
ZW
7420 case VFP_REG_Sd:
7421 inst.instruction |= ((reg >> 1) << 12) | ((reg & 1) << 22);
7422 break;
7423
7424 case VFP_REG_Sn:
7425 inst.instruction |= ((reg >> 1) << 16) | ((reg & 1) << 7);
7426 break;
7427
7428 case VFP_REG_Sm:
7429 inst.instruction |= ((reg >> 1) << 0) | ((reg & 1) << 5);
7430 break;
7431
5287ad62
JB
7432 case VFP_REG_Dd:
7433 inst.instruction |= ((reg & 15) << 12) | ((reg >> 4) << 22);
7434 break;
5f4273c7 7435
5287ad62
JB
7436 case VFP_REG_Dn:
7437 inst.instruction |= ((reg & 15) << 16) | ((reg >> 4) << 7);
7438 break;
5f4273c7 7439
5287ad62
JB
7440 case VFP_REG_Dm:
7441 inst.instruction |= (reg & 15) | ((reg >> 4) << 5);
7442 break;
7443
c19d1205
ZW
7444 default:
7445 abort ();
09d92015 7446 }
09d92015
MM
7447}
7448
c19d1205 7449/* Encode a <shift> in an ARM-format instruction. The immediate,
55cf6793 7450 if any, is handled by md_apply_fix. */
09d92015 7451static void
c19d1205 7452encode_arm_shift (int i)
09d92015 7453{
008a97ef
RL
7454 /* register-shifted register. */
7455 if (inst.operands[i].immisreg)
7456 {
bf355b69
MR
7457 int op_index;
7458 for (op_index = 0; op_index <= i; ++op_index)
008a97ef 7459 {
5689c942
RL
7460 /* Check the operand only when it's presented. In pre-UAL syntax,
7461 if the destination register is the same as the first operand, two
7462 register form of the instruction can be used. */
bf355b69
MR
7463 if (inst.operands[op_index].present && inst.operands[op_index].isreg
7464 && inst.operands[op_index].reg == REG_PC)
008a97ef
RL
7465 as_warn (UNPRED_REG ("r15"));
7466 }
7467
7468 if (inst.operands[i].imm == REG_PC)
7469 as_warn (UNPRED_REG ("r15"));
7470 }
7471
c19d1205
ZW
7472 if (inst.operands[i].shift_kind == SHIFT_RRX)
7473 inst.instruction |= SHIFT_ROR << 5;
7474 else
09d92015 7475 {
c19d1205
ZW
7476 inst.instruction |= inst.operands[i].shift_kind << 5;
7477 if (inst.operands[i].immisreg)
7478 {
7479 inst.instruction |= SHIFT_BY_REG;
7480 inst.instruction |= inst.operands[i].imm << 8;
7481 }
7482 else
7483 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
09d92015 7484 }
c19d1205 7485}
09d92015 7486
c19d1205
ZW
7487static void
7488encode_arm_shifter_operand (int i)
7489{
7490 if (inst.operands[i].isreg)
09d92015 7491 {
c19d1205
ZW
7492 inst.instruction |= inst.operands[i].reg;
7493 encode_arm_shift (i);
09d92015 7494 }
c19d1205 7495 else
a415b1cd
JB
7496 {
7497 inst.instruction |= INST_IMMEDIATE;
7498 if (inst.reloc.type != BFD_RELOC_ARM_IMMEDIATE)
7499 inst.instruction |= inst.operands[i].imm;
7500 }
09d92015
MM
7501}
7502
c19d1205 7503/* Subroutine of encode_arm_addr_mode_2 and encode_arm_addr_mode_3. */
09d92015 7504static void
c19d1205 7505encode_arm_addr_mode_common (int i, bfd_boolean is_t)
09d92015 7506{
2b2f5df9
NC
7507 /* PR 14260:
7508 Generate an error if the operand is not a register. */
7509 constraint (!inst.operands[i].isreg,
7510 _("Instruction does not support =N addresses"));
7511
c19d1205 7512 inst.instruction |= inst.operands[i].reg << 16;
a737bd4d 7513
c19d1205 7514 if (inst.operands[i].preind)
09d92015 7515 {
c19d1205
ZW
7516 if (is_t)
7517 {
7518 inst.error = _("instruction does not accept preindexed addressing");
7519 return;
7520 }
7521 inst.instruction |= PRE_INDEX;
7522 if (inst.operands[i].writeback)
7523 inst.instruction |= WRITE_BACK;
09d92015 7524
c19d1205
ZW
7525 }
7526 else if (inst.operands[i].postind)
7527 {
9c2799c2 7528 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
7529 if (is_t)
7530 inst.instruction |= WRITE_BACK;
7531 }
7532 else /* unindexed - only for coprocessor */
09d92015 7533 {
c19d1205 7534 inst.error = _("instruction does not accept unindexed addressing");
09d92015
MM
7535 return;
7536 }
7537
c19d1205
ZW
7538 if (((inst.instruction & WRITE_BACK) || !(inst.instruction & PRE_INDEX))
7539 && (((inst.instruction & 0x000f0000) >> 16)
7540 == ((inst.instruction & 0x0000f000) >> 12)))
7541 as_warn ((inst.instruction & LOAD_BIT)
7542 ? _("destination register same as write-back base")
7543 : _("source register same as write-back base"));
09d92015
MM
7544}
7545
c19d1205
ZW
7546/* inst.operands[i] was set up by parse_address. Encode it into an
7547 ARM-format mode 2 load or store instruction. If is_t is true,
7548 reject forms that cannot be used with a T instruction (i.e. not
7549 post-indexed). */
a737bd4d 7550static void
c19d1205 7551encode_arm_addr_mode_2 (int i, bfd_boolean is_t)
09d92015 7552{
5be8be5d
DG
7553 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
7554
c19d1205 7555 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7556
c19d1205 7557 if (inst.operands[i].immisreg)
09d92015 7558 {
5be8be5d
DG
7559 constraint ((inst.operands[i].imm == REG_PC
7560 || (is_pc && inst.operands[i].writeback)),
7561 BAD_PC_ADDRESSING);
c19d1205
ZW
7562 inst.instruction |= INST_IMMEDIATE; /* yes, this is backwards */
7563 inst.instruction |= inst.operands[i].imm;
7564 if (!inst.operands[i].negative)
7565 inst.instruction |= INDEX_UP;
7566 if (inst.operands[i].shifted)
7567 {
7568 if (inst.operands[i].shift_kind == SHIFT_RRX)
7569 inst.instruction |= SHIFT_ROR << 5;
7570 else
7571 {
7572 inst.instruction |= inst.operands[i].shift_kind << 5;
7573 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
7574 }
7575 }
09d92015 7576 }
c19d1205 7577 else /* immediate offset in inst.reloc */
09d92015 7578 {
5be8be5d
DG
7579 if (is_pc && !inst.reloc.pc_rel)
7580 {
7581 const bfd_boolean is_load = ((inst.instruction & LOAD_BIT) != 0);
23a10334
JZ
7582
7583 /* If is_t is TRUE, it's called from do_ldstt. ldrt/strt
7584 cannot use PC in addressing.
7585 PC cannot be used in writeback addressing, either. */
7586 constraint ((is_t || inst.operands[i].writeback),
5be8be5d 7587 BAD_PC_ADDRESSING);
23a10334 7588
dc5ec521 7589 /* Use of PC in str is deprecated for ARMv7. */
23a10334
JZ
7590 if (warn_on_deprecated
7591 && !is_load
7592 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
5c3696f8 7593 as_tsktsk (_("use of PC in this instruction is deprecated"));
5be8be5d
DG
7594 }
7595
c19d1205 7596 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7597 {
7598 /* Prefer + for zero encoded value. */
7599 if (!inst.operands[i].negative)
7600 inst.instruction |= INDEX_UP;
7601 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM;
7602 }
09d92015 7603 }
09d92015
MM
7604}
7605
c19d1205
ZW
7606/* inst.operands[i] was set up by parse_address. Encode it into an
7607 ARM-format mode 3 load or store instruction. Reject forms that
7608 cannot be used with such instructions. If is_t is true, reject
7609 forms that cannot be used with a T instruction (i.e. not
7610 post-indexed). */
7611static void
7612encode_arm_addr_mode_3 (int i, bfd_boolean is_t)
09d92015 7613{
c19d1205 7614 if (inst.operands[i].immisreg && inst.operands[i].shifted)
09d92015 7615 {
c19d1205
ZW
7616 inst.error = _("instruction does not accept scaled register index");
7617 return;
09d92015 7618 }
a737bd4d 7619
c19d1205 7620 encode_arm_addr_mode_common (i, is_t);
a737bd4d 7621
c19d1205
ZW
7622 if (inst.operands[i].immisreg)
7623 {
5be8be5d 7624 constraint ((inst.operands[i].imm == REG_PC
eb9f3f00 7625 || (is_t && inst.operands[i].reg == REG_PC)),
5be8be5d 7626 BAD_PC_ADDRESSING);
eb9f3f00
JB
7627 constraint (inst.operands[i].reg == REG_PC && inst.operands[i].writeback,
7628 BAD_PC_WRITEBACK);
c19d1205
ZW
7629 inst.instruction |= inst.operands[i].imm;
7630 if (!inst.operands[i].negative)
7631 inst.instruction |= INDEX_UP;
7632 }
7633 else /* immediate offset in inst.reloc */
7634 {
5be8be5d
DG
7635 constraint ((inst.operands[i].reg == REG_PC && !inst.reloc.pc_rel
7636 && inst.operands[i].writeback),
7637 BAD_PC_WRITEBACK);
c19d1205
ZW
7638 inst.instruction |= HWOFFSET_IMM;
7639 if (inst.reloc.type == BFD_RELOC_UNUSED)
26d97720
NS
7640 {
7641 /* Prefer + for zero encoded value. */
7642 if (!inst.operands[i].negative)
7643 inst.instruction |= INDEX_UP;
7644
7645 inst.reloc.type = BFD_RELOC_ARM_OFFSET_IMM8;
7646 }
c19d1205 7647 }
a737bd4d
NC
7648}
7649
8335d6aa
JW
7650/* Write immediate bits [7:0] to the following locations:
7651
7652 |28/24|23 19|18 16|15 4|3 0|
7653 | 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|
7654
7655 This function is used by VMOV/VMVN/VORR/VBIC. */
7656
7657static void
7658neon_write_immbits (unsigned immbits)
7659{
7660 inst.instruction |= immbits & 0xf;
7661 inst.instruction |= ((immbits >> 4) & 0x7) << 16;
7662 inst.instruction |= ((immbits >> 7) & 0x1) << (thumb_mode ? 28 : 24);
7663}
7664
7665/* Invert low-order SIZE bits of XHI:XLO. */
7666
7667static void
7668neon_invert_size (unsigned *xlo, unsigned *xhi, int size)
7669{
7670 unsigned immlo = xlo ? *xlo : 0;
7671 unsigned immhi = xhi ? *xhi : 0;
7672
7673 switch (size)
7674 {
7675 case 8:
7676 immlo = (~immlo) & 0xff;
7677 break;
7678
7679 case 16:
7680 immlo = (~immlo) & 0xffff;
7681 break;
7682
7683 case 64:
7684 immhi = (~immhi) & 0xffffffff;
7685 /* fall through. */
7686
7687 case 32:
7688 immlo = (~immlo) & 0xffffffff;
7689 break;
7690
7691 default:
7692 abort ();
7693 }
7694
7695 if (xlo)
7696 *xlo = immlo;
7697
7698 if (xhi)
7699 *xhi = immhi;
7700}
7701
7702/* True if IMM has form 0bAAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD for bits
7703 A, B, C, D. */
09d92015 7704
c19d1205 7705static int
8335d6aa 7706neon_bits_same_in_bytes (unsigned imm)
09d92015 7707{
8335d6aa
JW
7708 return ((imm & 0x000000ff) == 0 || (imm & 0x000000ff) == 0x000000ff)
7709 && ((imm & 0x0000ff00) == 0 || (imm & 0x0000ff00) == 0x0000ff00)
7710 && ((imm & 0x00ff0000) == 0 || (imm & 0x00ff0000) == 0x00ff0000)
7711 && ((imm & 0xff000000) == 0 || (imm & 0xff000000) == 0xff000000);
7712}
a737bd4d 7713
8335d6aa 7714/* For immediate of above form, return 0bABCD. */
09d92015 7715
8335d6aa
JW
7716static unsigned
7717neon_squash_bits (unsigned imm)
7718{
7719 return (imm & 0x01) | ((imm & 0x0100) >> 7) | ((imm & 0x010000) >> 14)
7720 | ((imm & 0x01000000) >> 21);
7721}
7722
7723/* Compress quarter-float representation to 0b...000 abcdefgh. */
7724
7725static unsigned
7726neon_qfloat_bits (unsigned imm)
7727{
7728 return ((imm >> 19) & 0x7f) | ((imm >> 24) & 0x80);
7729}
7730
7731/* Returns CMODE. IMMBITS [7:0] is set to bits suitable for inserting into
7732 the instruction. *OP is passed as the initial value of the op field, and
7733 may be set to a different value depending on the constant (i.e.
7734 "MOV I64, 0bAAAAAAAABBBB..." which uses OP = 1 despite being MOV not
7735 MVN). If the immediate looks like a repeated pattern then also
7736 try smaller element sizes. */
7737
7738static int
7739neon_cmode_for_move_imm (unsigned immlo, unsigned immhi, int float_p,
7740 unsigned *immbits, int *op, int size,
7741 enum neon_el_type type)
7742{
7743 /* Only permit float immediates (including 0.0/-0.0) if the operand type is
7744 float. */
7745 if (type == NT_float && !float_p)
7746 return FAIL;
7747
7748 if (type == NT_float && is_quarter_float (immlo) && immhi == 0)
09d92015 7749 {
8335d6aa
JW
7750 if (size != 32 || *op == 1)
7751 return FAIL;
7752 *immbits = neon_qfloat_bits (immlo);
7753 return 0xf;
7754 }
7755
7756 if (size == 64)
7757 {
7758 if (neon_bits_same_in_bytes (immhi)
7759 && neon_bits_same_in_bytes (immlo))
c19d1205 7760 {
8335d6aa
JW
7761 if (*op == 1)
7762 return FAIL;
7763 *immbits = (neon_squash_bits (immhi) << 4)
7764 | neon_squash_bits (immlo);
7765 *op = 1;
7766 return 0xe;
c19d1205 7767 }
a737bd4d 7768
8335d6aa
JW
7769 if (immhi != immlo)
7770 return FAIL;
7771 }
a737bd4d 7772
8335d6aa 7773 if (size >= 32)
09d92015 7774 {
8335d6aa 7775 if (immlo == (immlo & 0x000000ff))
c19d1205 7776 {
8335d6aa
JW
7777 *immbits = immlo;
7778 return 0x0;
c19d1205 7779 }
8335d6aa 7780 else if (immlo == (immlo & 0x0000ff00))
c19d1205 7781 {
8335d6aa
JW
7782 *immbits = immlo >> 8;
7783 return 0x2;
c19d1205 7784 }
8335d6aa
JW
7785 else if (immlo == (immlo & 0x00ff0000))
7786 {
7787 *immbits = immlo >> 16;
7788 return 0x4;
7789 }
7790 else if (immlo == (immlo & 0xff000000))
7791 {
7792 *immbits = immlo >> 24;
7793 return 0x6;
7794 }
7795 else if (immlo == ((immlo & 0x0000ff00) | 0x000000ff))
7796 {
7797 *immbits = (immlo >> 8) & 0xff;
7798 return 0xc;
7799 }
7800 else if (immlo == ((immlo & 0x00ff0000) | 0x0000ffff))
7801 {
7802 *immbits = (immlo >> 16) & 0xff;
7803 return 0xd;
7804 }
7805
7806 if ((immlo & 0xffff) != (immlo >> 16))
7807 return FAIL;
7808 immlo &= 0xffff;
09d92015 7809 }
a737bd4d 7810
8335d6aa 7811 if (size >= 16)
4962c51a 7812 {
8335d6aa
JW
7813 if (immlo == (immlo & 0x000000ff))
7814 {
7815 *immbits = immlo;
7816 return 0x8;
7817 }
7818 else if (immlo == (immlo & 0x0000ff00))
7819 {
7820 *immbits = immlo >> 8;
7821 return 0xa;
7822 }
7823
7824 if ((immlo & 0xff) != (immlo >> 8))
7825 return FAIL;
7826 immlo &= 0xff;
4962c51a
MS
7827 }
7828
8335d6aa
JW
7829 if (immlo == (immlo & 0x000000ff))
7830 {
7831 /* Don't allow MVN with 8-bit immediate. */
7832 if (*op == 1)
7833 return FAIL;
7834 *immbits = immlo;
7835 return 0xe;
7836 }
26d97720 7837
8335d6aa 7838 return FAIL;
c19d1205 7839}
a737bd4d 7840
5fc177c8 7841#if defined BFD_HOST_64_BIT
ba592044
AM
7842/* Returns TRUE if double precision value V may be cast
7843 to single precision without loss of accuracy. */
7844
7845static bfd_boolean
5fc177c8 7846is_double_a_single (bfd_int64_t v)
ba592044 7847{
5fc177c8 7848 int exp = (int)((v >> 52) & 0x7FF);
8fe3f3d6 7849 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
ba592044
AM
7850
7851 return (exp == 0 || exp == 0x7FF
7852 || (exp >= 1023 - 126 && exp <= 1023 + 127))
7853 && (mantissa & 0x1FFFFFFFl) == 0;
7854}
7855
3739860c 7856/* Returns a double precision value casted to single precision
ba592044
AM
7857 (ignoring the least significant bits in exponent and mantissa). */
7858
7859static int
5fc177c8 7860double_to_single (bfd_int64_t v)
ba592044
AM
7861{
7862 int sign = (int) ((v >> 63) & 1l);
5fc177c8 7863 int exp = (int) ((v >> 52) & 0x7FF);
8fe3f3d6 7864 bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
ba592044
AM
7865
7866 if (exp == 0x7FF)
7867 exp = 0xFF;
7868 else
7869 {
7870 exp = exp - 1023 + 127;
7871 if (exp >= 0xFF)
7872 {
7873 /* Infinity. */
7874 exp = 0x7F;
7875 mantissa = 0;
7876 }
7877 else if (exp < 0)
7878 {
7879 /* No denormalized numbers. */
7880 exp = 0;
7881 mantissa = 0;
7882 }
7883 }
7884 mantissa >>= 29;
7885 return (sign << 31) | (exp << 23) | mantissa;
7886}
5fc177c8 7887#endif /* BFD_HOST_64_BIT */
ba592044 7888
8335d6aa
JW
7889enum lit_type
7890{
7891 CONST_THUMB,
7892 CONST_ARM,
7893 CONST_VEC
7894};
7895
ba592044
AM
7896static void do_vfp_nsyn_opcode (const char *);
7897
c19d1205
ZW
7898/* inst.reloc.exp describes an "=expr" load pseudo-operation.
7899 Determine whether it can be performed with a move instruction; if
7900 it can, convert inst.instruction to that move instruction and
c921be7d
NC
7901 return TRUE; if it can't, convert inst.instruction to a literal-pool
7902 load and return FALSE. If this is not a valid thing to do in the
7903 current context, set inst.error and return TRUE.
a737bd4d 7904
c19d1205
ZW
7905 inst.operands[i] describes the destination register. */
7906
c921be7d 7907static bfd_boolean
8335d6aa 7908move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
c19d1205 7909{
53365c0d 7910 unsigned long tbit;
8335d6aa
JW
7911 bfd_boolean thumb_p = (t == CONST_THUMB);
7912 bfd_boolean arm_p = (t == CONST_ARM);
53365c0d
PB
7913
7914 if (thumb_p)
7915 tbit = (inst.instruction > 0xffff) ? THUMB2_LOAD_BIT : THUMB_LOAD_BIT;
7916 else
7917 tbit = LOAD_BIT;
7918
7919 if ((inst.instruction & tbit) == 0)
09d92015 7920 {
c19d1205 7921 inst.error = _("invalid pseudo operation");
c921be7d 7922 return TRUE;
09d92015 7923 }
ba592044 7924
8335d6aa
JW
7925 if (inst.reloc.exp.X_op != O_constant
7926 && inst.reloc.exp.X_op != O_symbol
7927 && inst.reloc.exp.X_op != O_big)
09d92015
MM
7928 {
7929 inst.error = _("constant expression expected");
c921be7d 7930 return TRUE;
09d92015 7931 }
ba592044
AM
7932
7933 if (inst.reloc.exp.X_op == O_constant
7934 || inst.reloc.exp.X_op == O_big)
8335d6aa 7935 {
5fc177c8
NC
7936#if defined BFD_HOST_64_BIT
7937 bfd_int64_t v;
7938#else
ba592044 7939 offsetT v;
5fc177c8 7940#endif
ba592044 7941 if (inst.reloc.exp.X_op == O_big)
8335d6aa 7942 {
ba592044
AM
7943 LITTLENUM_TYPE w[X_PRECISION];
7944 LITTLENUM_TYPE * l;
7945
7946 if (inst.reloc.exp.X_add_number == -1)
8335d6aa 7947 {
ba592044
AM
7948 gen_to_words (w, X_PRECISION, E_PRECISION);
7949 l = w;
7950 /* FIXME: Should we check words w[2..5] ? */
8335d6aa 7951 }
ba592044
AM
7952 else
7953 l = generic_bignum;
3739860c 7954
5fc177c8
NC
7955#if defined BFD_HOST_64_BIT
7956 v =
7957 ((((((((bfd_int64_t) l[3] & LITTLENUM_MASK)
7958 << LITTLENUM_NUMBER_OF_BITS)
7959 | ((bfd_int64_t) l[2] & LITTLENUM_MASK))
7960 << LITTLENUM_NUMBER_OF_BITS)
7961 | ((bfd_int64_t) l[1] & LITTLENUM_MASK))
7962 << LITTLENUM_NUMBER_OF_BITS)
7963 | ((bfd_int64_t) l[0] & LITTLENUM_MASK));
7964#else
ba592044
AM
7965 v = ((l[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
7966 | (l[0] & LITTLENUM_MASK);
5fc177c8 7967#endif
8335d6aa 7968 }
ba592044
AM
7969 else
7970 v = inst.reloc.exp.X_add_number;
7971
7972 if (!inst.operands[i].issingle)
8335d6aa 7973 {
12569877 7974 if (thumb_p)
8335d6aa 7975 {
53445554
TP
7976 /* LDR should not use lead in a flag-setting instruction being
7977 chosen so we do not check whether movs can be used. */
12569877 7978
53445554 7979 if ((ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
ff8646ee 7980 || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
53445554
TP
7981 && inst.operands[i].reg != 13
7982 && inst.operands[i].reg != 15)
12569877 7983 {
fc289b0a
TP
7984 /* Check if on thumb2 it can be done with a mov.w, mvn or
7985 movw instruction. */
12569877
AM
7986 unsigned int newimm;
7987 bfd_boolean isNegated;
7988
7989 newimm = encode_thumb32_immediate (v);
7990 if (newimm != (unsigned int) FAIL)
7991 isNegated = FALSE;
7992 else
7993 {
582cfe03 7994 newimm = encode_thumb32_immediate (~v);
12569877
AM
7995 if (newimm != (unsigned int) FAIL)
7996 isNegated = TRUE;
7997 }
7998
fc289b0a
TP
7999 /* The number can be loaded with a mov.w or mvn
8000 instruction. */
ff8646ee
TP
8001 if (newimm != (unsigned int) FAIL
8002 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
12569877 8003 {
fc289b0a 8004 inst.instruction = (0xf04f0000 /* MOV.W. */
582cfe03 8005 | (inst.operands[i].reg << 8));
fc289b0a 8006 /* Change to MOVN. */
582cfe03 8007 inst.instruction |= (isNegated ? 0x200000 : 0);
12569877
AM
8008 inst.instruction |= (newimm & 0x800) << 15;
8009 inst.instruction |= (newimm & 0x700) << 4;
8010 inst.instruction |= (newimm & 0x0ff);
8011 return TRUE;
8012 }
fc289b0a 8013 /* The number can be loaded with a movw instruction. */
ff8646ee
TP
8014 else if ((v & ~0xFFFF) == 0
8015 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
3739860c 8016 {
582cfe03 8017 int imm = v & 0xFFFF;
12569877 8018
582cfe03 8019 inst.instruction = 0xf2400000; /* MOVW. */
12569877
AM
8020 inst.instruction |= (inst.operands[i].reg << 8);
8021 inst.instruction |= (imm & 0xf000) << 4;
8022 inst.instruction |= (imm & 0x0800) << 15;
8023 inst.instruction |= (imm & 0x0700) << 4;
8024 inst.instruction |= (imm & 0x00ff);
8025 return TRUE;
8026 }
8027 }
8335d6aa 8028 }
12569877 8029 else if (arm_p)
ba592044
AM
8030 {
8031 int value = encode_arm_immediate (v);
12569877 8032
ba592044
AM
8033 if (value != FAIL)
8034 {
8035 /* This can be done with a mov instruction. */
8036 inst.instruction &= LITERAL_MASK;
8037 inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
8038 inst.instruction |= value & 0xfff;
8039 return TRUE;
8040 }
8335d6aa 8041
ba592044
AM
8042 value = encode_arm_immediate (~ v);
8043 if (value != FAIL)
8044 {
8045 /* This can be done with a mvn instruction. */
8046 inst.instruction &= LITERAL_MASK;
8047 inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
8048 inst.instruction |= value & 0xfff;
8049 return TRUE;
8050 }
8051 }
934c2632 8052 else if (t == CONST_VEC && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
8335d6aa 8053 {
ba592044
AM
8054 int op = 0;
8055 unsigned immbits = 0;
8056 unsigned immlo = inst.operands[1].imm;
8057 unsigned immhi = inst.operands[1].regisimm
8058 ? inst.operands[1].reg
8059 : inst.reloc.exp.X_unsigned
8060 ? 0
8061 : ((bfd_int64_t)((int) immlo)) >> 32;
8062 int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8063 &op, 64, NT_invtype);
8064
8065 if (cmode == FAIL)
8066 {
8067 neon_invert_size (&immlo, &immhi, 64);
8068 op = !op;
8069 cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
8070 &op, 64, NT_invtype);
8071 }
8072
8073 if (cmode != FAIL)
8074 {
8075 inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
8076 | (1 << 23)
8077 | (cmode << 8)
8078 | (op << 5)
8079 | (1 << 4);
8080
8081 /* Fill other bits in vmov encoding for both thumb and arm. */
8082 if (thumb_mode)
eff0bc54 8083 inst.instruction |= (0x7U << 29) | (0xF << 24);
ba592044 8084 else
eff0bc54 8085 inst.instruction |= (0xFU << 28) | (0x1 << 25);
ba592044
AM
8086 neon_write_immbits (immbits);
8087 return TRUE;
8088 }
8335d6aa
JW
8089 }
8090 }
8335d6aa 8091
ba592044
AM
8092 if (t == CONST_VEC)
8093 {
8094 /* Check if vldr Rx, =constant could be optimized to vmov Rx, #constant. */
8095 if (inst.operands[i].issingle
8096 && is_quarter_float (inst.operands[1].imm)
8097 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3xd))
8335d6aa 8098 {
ba592044
AM
8099 inst.operands[1].imm =
8100 neon_qfloat_bits (v);
8101 do_vfp_nsyn_opcode ("fconsts");
8102 return TRUE;
8335d6aa 8103 }
5fc177c8
NC
8104
8105 /* If our host does not support a 64-bit type then we cannot perform
8106 the following optimization. This mean that there will be a
8107 discrepancy between the output produced by an assembler built for
8108 a 32-bit-only host and the output produced from a 64-bit host, but
8109 this cannot be helped. */
8110#if defined BFD_HOST_64_BIT
ba592044
AM
8111 else if (!inst.operands[1].issingle
8112 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
8335d6aa 8113 {
ba592044
AM
8114 if (is_double_a_single (v)
8115 && is_quarter_float (double_to_single (v)))
8116 {
8117 inst.operands[1].imm =
8118 neon_qfloat_bits (double_to_single (v));
8119 do_vfp_nsyn_opcode ("fconstd");
8120 return TRUE;
8121 }
8335d6aa 8122 }
5fc177c8 8123#endif
8335d6aa
JW
8124 }
8125 }
8126
8127 if (add_to_lit_pool ((!inst.operands[i].isvec
8128 || inst.operands[i].issingle) ? 4 : 8) == FAIL)
8129 return TRUE;
8130
8131 inst.operands[1].reg = REG_PC;
8132 inst.operands[1].isreg = 1;
8133 inst.operands[1].preind = 1;
8134 inst.reloc.pc_rel = 1;
8135 inst.reloc.type = (thumb_p
8136 ? BFD_RELOC_ARM_THUMB_OFFSET
8137 : (mode_3
8138 ? BFD_RELOC_ARM_HWLITERAL
8139 : BFD_RELOC_ARM_LITERAL));
8140 return FALSE;
8141}
8142
8143/* inst.operands[i] was set up by parse_address. Encode it into an
8144 ARM-format instruction. Reject all forms which cannot be encoded
8145 into a coprocessor load/store instruction. If wb_ok is false,
8146 reject use of writeback; if unind_ok is false, reject use of
8147 unindexed addressing. If reloc_override is not 0, use it instead
8148 of BFD_ARM_CP_OFF_IMM, unless the initial relocation is a group one
8149 (in which case it is preserved). */
8150
8151static int
8152encode_arm_cp_address (int i, int wb_ok, int unind_ok, int reloc_override)
8153{
8154 if (!inst.operands[i].isreg)
8155 {
99b2a2dd
NC
8156 /* PR 18256 */
8157 if (! inst.operands[0].isvec)
8158 {
8159 inst.error = _("invalid co-processor operand");
8160 return FAIL;
8161 }
8335d6aa
JW
8162 if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
8163 return SUCCESS;
8164 }
8165
8166 inst.instruction |= inst.operands[i].reg << 16;
8167
8168 gas_assert (!(inst.operands[i].preind && inst.operands[i].postind));
8169
8170 if (!inst.operands[i].preind && !inst.operands[i].postind) /* unindexed */
8171 {
8172 gas_assert (!inst.operands[i].writeback);
8173 if (!unind_ok)
8174 {
8175 inst.error = _("instruction does not support unindexed addressing");
8176 return FAIL;
8177 }
8178 inst.instruction |= inst.operands[i].imm;
8179 inst.instruction |= INDEX_UP;
8180 return SUCCESS;
8181 }
8182
8183 if (inst.operands[i].preind)
8184 inst.instruction |= PRE_INDEX;
8185
8186 if (inst.operands[i].writeback)
09d92015 8187 {
8335d6aa 8188 if (inst.operands[i].reg == REG_PC)
c19d1205 8189 {
8335d6aa
JW
8190 inst.error = _("pc may not be used with write-back");
8191 return FAIL;
c19d1205 8192 }
8335d6aa 8193 if (!wb_ok)
c19d1205 8194 {
8335d6aa
JW
8195 inst.error = _("instruction does not support writeback");
8196 return FAIL;
c19d1205 8197 }
8335d6aa 8198 inst.instruction |= WRITE_BACK;
09d92015
MM
8199 }
8200
8335d6aa
JW
8201 if (reloc_override)
8202 inst.reloc.type = (bfd_reloc_code_real_type) reloc_override;
8203 else if ((inst.reloc.type < BFD_RELOC_ARM_ALU_PC_G0_NC
8204 || inst.reloc.type > BFD_RELOC_ARM_LDC_SB_G2)
8205 && inst.reloc.type != BFD_RELOC_ARM_LDR_PC_G0)
c19d1205 8206 {
8335d6aa
JW
8207 if (thumb_mode)
8208 inst.reloc.type = BFD_RELOC_ARM_T32_CP_OFF_IMM;
8209 else
8210 inst.reloc.type = BFD_RELOC_ARM_CP_OFF_IMM;
c19d1205 8211 }
8335d6aa
JW
8212
8213 /* Prefer + for zero encoded value. */
8214 if (!inst.operands[i].negative)
8215 inst.instruction |= INDEX_UP;
8216
8217 return SUCCESS;
09d92015
MM
8218}
8219
5f4273c7 8220/* Functions for instruction encoding, sorted by sub-architecture.
c19d1205
ZW
8221 First some generics; their names are taken from the conventional
8222 bit positions for register arguments in ARM format instructions. */
09d92015 8223
a737bd4d 8224static void
c19d1205 8225do_noargs (void)
09d92015 8226{
c19d1205 8227}
a737bd4d 8228
c19d1205
ZW
8229static void
8230do_rd (void)
8231{
8232 inst.instruction |= inst.operands[0].reg << 12;
8233}
a737bd4d 8234
16a1fa25
TP
8235static void
8236do_rn (void)
8237{
8238 inst.instruction |= inst.operands[0].reg << 16;
8239}
8240
c19d1205
ZW
8241static void
8242do_rd_rm (void)
8243{
8244 inst.instruction |= inst.operands[0].reg << 12;
8245 inst.instruction |= inst.operands[1].reg;
8246}
09d92015 8247
9eb6c0f1
MGD
8248static void
8249do_rm_rn (void)
8250{
8251 inst.instruction |= inst.operands[0].reg;
8252 inst.instruction |= inst.operands[1].reg << 16;
8253}
8254
c19d1205
ZW
8255static void
8256do_rd_rn (void)
8257{
8258 inst.instruction |= inst.operands[0].reg << 12;
8259 inst.instruction |= inst.operands[1].reg << 16;
8260}
a737bd4d 8261
c19d1205
ZW
8262static void
8263do_rn_rd (void)
8264{
8265 inst.instruction |= inst.operands[0].reg << 16;
8266 inst.instruction |= inst.operands[1].reg << 12;
8267}
09d92015 8268
4ed7ed8d
TP
8269static void
8270do_tt (void)
8271{
8272 inst.instruction |= inst.operands[0].reg << 8;
8273 inst.instruction |= inst.operands[1].reg << 16;
8274}
8275
59d09be6
MGD
8276static bfd_boolean
8277check_obsolete (const arm_feature_set *feature, const char *msg)
8278{
8279 if (ARM_CPU_IS_ANY (cpu_variant))
8280 {
5c3696f8 8281 as_tsktsk ("%s", msg);
59d09be6
MGD
8282 return TRUE;
8283 }
8284 else if (ARM_CPU_HAS_FEATURE (cpu_variant, *feature))
8285 {
8286 as_bad ("%s", msg);
8287 return TRUE;
8288 }
8289
8290 return FALSE;
8291}
8292
c19d1205
ZW
8293static void
8294do_rd_rm_rn (void)
8295{
9a64e435 8296 unsigned Rn = inst.operands[2].reg;
708587a4 8297 /* Enforce restrictions on SWP instruction. */
9a64e435 8298 if ((inst.instruction & 0x0fbfffff) == 0x01000090)
56adecf4
DG
8299 {
8300 constraint (Rn == inst.operands[0].reg || Rn == inst.operands[1].reg,
8301 _("Rn must not overlap other operands"));
8302
59d09be6
MGD
8303 /* SWP{b} is obsolete for ARMv8-A, and deprecated for ARMv6* and ARMv7.
8304 */
8305 if (!check_obsolete (&arm_ext_v8,
8306 _("swp{b} use is obsoleted for ARMv8 and later"))
8307 && warn_on_deprecated
8308 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
5c3696f8 8309 as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
56adecf4 8310 }
59d09be6 8311
c19d1205
ZW
8312 inst.instruction |= inst.operands[0].reg << 12;
8313 inst.instruction |= inst.operands[1].reg;
9a64e435 8314 inst.instruction |= Rn << 16;
c19d1205 8315}
09d92015 8316
c19d1205
ZW
8317static void
8318do_rd_rn_rm (void)
8319{
8320 inst.instruction |= inst.operands[0].reg << 12;
8321 inst.instruction |= inst.operands[1].reg << 16;
8322 inst.instruction |= inst.operands[2].reg;
8323}
a737bd4d 8324
c19d1205
ZW
8325static void
8326do_rm_rd_rn (void)
8327{
5be8be5d
DG
8328 constraint ((inst.operands[2].reg == REG_PC), BAD_PC);
8329 constraint (((inst.reloc.exp.X_op != O_constant
8330 && inst.reloc.exp.X_op != O_illegal)
8331 || inst.reloc.exp.X_add_number != 0),
8332 BAD_ADDR_MODE);
c19d1205
ZW
8333 inst.instruction |= inst.operands[0].reg;
8334 inst.instruction |= inst.operands[1].reg << 12;
8335 inst.instruction |= inst.operands[2].reg << 16;
8336}
09d92015 8337
c19d1205
ZW
8338static void
8339do_imm0 (void)
8340{
8341 inst.instruction |= inst.operands[0].imm;
8342}
09d92015 8343
c19d1205
ZW
8344static void
8345do_rd_cpaddr (void)
8346{
8347 inst.instruction |= inst.operands[0].reg << 12;
8348 encode_arm_cp_address (1, TRUE, TRUE, 0);
09d92015 8349}
a737bd4d 8350
c19d1205
ZW
8351/* ARM instructions, in alphabetical order by function name (except
8352 that wrapper functions appear immediately after the function they
8353 wrap). */
09d92015 8354
c19d1205
ZW
8355/* This is a pseudo-op of the form "adr rd, label" to be converted
8356 into a relative address of the form "add rd, pc, #label-.-8". */
09d92015
MM
8357
8358static void
c19d1205 8359do_adr (void)
09d92015 8360{
c19d1205 8361 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8362
c19d1205
ZW
8363 /* Frag hacking will turn this into a sub instruction if the offset turns
8364 out to be negative. */
8365 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
c19d1205 8366 inst.reloc.pc_rel = 1;
2fc8bdac 8367 inst.reloc.exp.X_add_number -= 8;
52a86f84
NC
8368
8369 if (inst.reloc.exp.X_op == O_symbol
8370 && inst.reloc.exp.X_add_symbol != NULL
8371 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
8372 && THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
8373 inst.reloc.exp.X_add_number += 1;
c19d1205 8374}
b99bd4ef 8375
c19d1205
ZW
8376/* This is a pseudo-op of the form "adrl rd, label" to be converted
8377 into a relative address of the form:
8378 add rd, pc, #low(label-.-8)"
8379 add rd, rd, #high(label-.-8)" */
b99bd4ef 8380
c19d1205
ZW
8381static void
8382do_adrl (void)
8383{
8384 inst.instruction |= (inst.operands[0].reg << 12); /* Rd */
a737bd4d 8385
c19d1205
ZW
8386 /* Frag hacking will turn this into a sub instruction if the offset turns
8387 out to be negative. */
8388 inst.reloc.type = BFD_RELOC_ARM_ADRL_IMMEDIATE;
c19d1205
ZW
8389 inst.reloc.pc_rel = 1;
8390 inst.size = INSN_SIZE * 2;
2fc8bdac 8391 inst.reloc.exp.X_add_number -= 8;
52a86f84
NC
8392
8393 if (inst.reloc.exp.X_op == O_symbol
8394 && inst.reloc.exp.X_add_symbol != NULL
8395 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
8396 && THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
8397 inst.reloc.exp.X_add_number += 1;
b99bd4ef
NC
8398}
8399
b99bd4ef 8400static void
c19d1205 8401do_arit (void)
b99bd4ef 8402{
a9f02af8
MG
8403 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
8404 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
8405 THUMB1_RELOC_ONLY);
c19d1205
ZW
8406 if (!inst.operands[1].present)
8407 inst.operands[1].reg = inst.operands[0].reg;
8408 inst.instruction |= inst.operands[0].reg << 12;
8409 inst.instruction |= inst.operands[1].reg << 16;
8410 encode_arm_shifter_operand (2);
8411}
b99bd4ef 8412
62b3e311
PB
8413static void
8414do_barrier (void)
8415{
8416 if (inst.operands[0].present)
ccb84d65 8417 inst.instruction |= inst.operands[0].imm;
62b3e311
PB
8418 else
8419 inst.instruction |= 0xf;
8420}
8421
c19d1205
ZW
8422static void
8423do_bfc (void)
8424{
8425 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
8426 constraint (msb > 32, _("bit-field extends past end of register"));
8427 /* The instruction encoding stores the LSB and MSB,
8428 not the LSB and width. */
8429 inst.instruction |= inst.operands[0].reg << 12;
8430 inst.instruction |= inst.operands[1].imm << 7;
8431 inst.instruction |= (msb - 1) << 16;
8432}
b99bd4ef 8433
c19d1205
ZW
8434static void
8435do_bfi (void)
8436{
8437 unsigned int msb;
b99bd4ef 8438
c19d1205
ZW
8439 /* #0 in second position is alternative syntax for bfc, which is
8440 the same instruction but with REG_PC in the Rm field. */
8441 if (!inst.operands[1].isreg)
8442 inst.operands[1].reg = REG_PC;
b99bd4ef 8443
c19d1205
ZW
8444 msb = inst.operands[2].imm + inst.operands[3].imm;
8445 constraint (msb > 32, _("bit-field extends past end of register"));
8446 /* The instruction encoding stores the LSB and MSB,
8447 not the LSB and width. */
8448 inst.instruction |= inst.operands[0].reg << 12;
8449 inst.instruction |= inst.operands[1].reg;
8450 inst.instruction |= inst.operands[2].imm << 7;
8451 inst.instruction |= (msb - 1) << 16;
b99bd4ef
NC
8452}
8453
b99bd4ef 8454static void
c19d1205 8455do_bfx (void)
b99bd4ef 8456{
c19d1205
ZW
8457 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
8458 _("bit-field extends past end of register"));
8459 inst.instruction |= inst.operands[0].reg << 12;
8460 inst.instruction |= inst.operands[1].reg;
8461 inst.instruction |= inst.operands[2].imm << 7;
8462 inst.instruction |= (inst.operands[3].imm - 1) << 16;
8463}
09d92015 8464
c19d1205
ZW
8465/* ARM V5 breakpoint instruction (argument parse)
8466 BKPT <16 bit unsigned immediate>
8467 Instruction is not conditional.
8468 The bit pattern given in insns[] has the COND_ALWAYS condition,
8469 and it is an error if the caller tried to override that. */
b99bd4ef 8470
c19d1205
ZW
8471static void
8472do_bkpt (void)
8473{
8474 /* Top 12 of 16 bits to bits 19:8. */
8475 inst.instruction |= (inst.operands[0].imm & 0xfff0) << 4;
09d92015 8476
c19d1205
ZW
8477 /* Bottom 4 of 16 bits to bits 3:0. */
8478 inst.instruction |= inst.operands[0].imm & 0xf;
8479}
09d92015 8480
c19d1205
ZW
8481static void
8482encode_branch (int default_reloc)
8483{
8484 if (inst.operands[0].hasreloc)
8485 {
0855e32b
NS
8486 constraint (inst.operands[0].imm != BFD_RELOC_ARM_PLT32
8487 && inst.operands[0].imm != BFD_RELOC_ARM_TLS_CALL,
8488 _("the only valid suffixes here are '(plt)' and '(tlscall)'"));
8489 inst.reloc.type = inst.operands[0].imm == BFD_RELOC_ARM_PLT32
8490 ? BFD_RELOC_ARM_PLT32
8491 : thumb_mode ? BFD_RELOC_ARM_THM_TLS_CALL : BFD_RELOC_ARM_TLS_CALL;
c19d1205 8492 }
b99bd4ef 8493 else
9ae92b05 8494 inst.reloc.type = (bfd_reloc_code_real_type) default_reloc;
2fc8bdac 8495 inst.reloc.pc_rel = 1;
b99bd4ef
NC
8496}
8497
b99bd4ef 8498static void
c19d1205 8499do_branch (void)
b99bd4ef 8500{
39b41c9c
PB
8501#ifdef OBJ_ELF
8502 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8503 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8504 else
8505#endif
8506 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
8507}
8508
8509static void
8510do_bl (void)
8511{
8512#ifdef OBJ_ELF
8513 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
8514 {
8515 if (inst.cond == COND_ALWAYS)
8516 encode_branch (BFD_RELOC_ARM_PCREL_CALL);
8517 else
8518 encode_branch (BFD_RELOC_ARM_PCREL_JUMP);
8519 }
8520 else
8521#endif
8522 encode_branch (BFD_RELOC_ARM_PCREL_BRANCH);
c19d1205 8523}
b99bd4ef 8524
c19d1205
ZW
8525/* ARM V5 branch-link-exchange instruction (argument parse)
8526 BLX <target_addr> ie BLX(1)
8527 BLX{<condition>} <Rm> ie BLX(2)
8528 Unfortunately, there are two different opcodes for this mnemonic.
8529 So, the insns[].value is not used, and the code here zaps values
8530 into inst.instruction.
8531 Also, the <target_addr> can be 25 bits, hence has its own reloc. */
b99bd4ef 8532
c19d1205
ZW
8533static void
8534do_blx (void)
8535{
8536 if (inst.operands[0].isreg)
b99bd4ef 8537 {
c19d1205
ZW
8538 /* Arg is a register; the opcode provided by insns[] is correct.
8539 It is not illegal to do "blx pc", just useless. */
8540 if (inst.operands[0].reg == REG_PC)
8541 as_tsktsk (_("use of r15 in blx in ARM mode is not really useful"));
b99bd4ef 8542
c19d1205
ZW
8543 inst.instruction |= inst.operands[0].reg;
8544 }
8545 else
b99bd4ef 8546 {
c19d1205 8547 /* Arg is an address; this instruction cannot be executed
267bf995
RR
8548 conditionally, and the opcode must be adjusted.
8549 We retain the BFD_RELOC_ARM_PCREL_BLX till the very end
8550 where we generate out a BFD_RELOC_ARM_PCREL_CALL instead. */
c19d1205 8551 constraint (inst.cond != COND_ALWAYS, BAD_COND);
2fc8bdac 8552 inst.instruction = 0xfa000000;
267bf995 8553 encode_branch (BFD_RELOC_ARM_PCREL_BLX);
b99bd4ef 8554 }
c19d1205
ZW
8555}
8556
8557static void
8558do_bx (void)
8559{
845b51d6
PB
8560 bfd_boolean want_reloc;
8561
c19d1205
ZW
8562 if (inst.operands[0].reg == REG_PC)
8563 as_tsktsk (_("use of r15 in bx in ARM mode is not really useful"));
b99bd4ef 8564
c19d1205 8565 inst.instruction |= inst.operands[0].reg;
845b51d6
PB
8566 /* Output R_ARM_V4BX relocations if is an EABI object that looks like
8567 it is for ARMv4t or earlier. */
8568 want_reloc = !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5);
8569 if (object_arch && !ARM_CPU_HAS_FEATURE (*object_arch, arm_ext_v5))
8570 want_reloc = TRUE;
8571
5ad34203 8572#ifdef OBJ_ELF
845b51d6 8573 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
5ad34203 8574#endif
584206db 8575 want_reloc = FALSE;
845b51d6
PB
8576
8577 if (want_reloc)
8578 inst.reloc.type = BFD_RELOC_ARM_V4BX;
09d92015
MM
8579}
8580
c19d1205
ZW
8581
8582/* ARM v5TEJ. Jump to Jazelle code. */
a737bd4d
NC
8583
8584static void
c19d1205 8585do_bxj (void)
a737bd4d 8586{
c19d1205
ZW
8587 if (inst.operands[0].reg == REG_PC)
8588 as_tsktsk (_("use of r15 in bxj is not really useful"));
8589
8590 inst.instruction |= inst.operands[0].reg;
a737bd4d
NC
8591}
8592
c19d1205
ZW
8593/* Co-processor data operation:
8594 CDP{cond} <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>}
8595 CDP2 <coproc>, <opcode_1>, <CRd>, <CRn>, <CRm>{, <opcode_2>} */
8596static void
8597do_cdp (void)
8598{
8599 inst.instruction |= inst.operands[0].reg << 8;
8600 inst.instruction |= inst.operands[1].imm << 20;
8601 inst.instruction |= inst.operands[2].reg << 12;
8602 inst.instruction |= inst.operands[3].reg << 16;
8603 inst.instruction |= inst.operands[4].reg;
8604 inst.instruction |= inst.operands[5].imm << 5;
8605}
a737bd4d
NC
8606
8607static void
c19d1205 8608do_cmp (void)
a737bd4d 8609{
c19d1205
ZW
8610 inst.instruction |= inst.operands[0].reg << 16;
8611 encode_arm_shifter_operand (1);
a737bd4d
NC
8612}
8613
c19d1205
ZW
8614/* Transfer between coprocessor and ARM registers.
8615 MRC{cond} <coproc>, <opcode_1>, <Rd>, <CRn>, <CRm>{, <opcode_2>}
8616 MRC2
8617 MCR{cond}
8618 MCR2
8619
8620 No special properties. */
09d92015 8621
dcbd0d71
MGD
8622struct deprecated_coproc_regs_s
8623{
8624 unsigned cp;
8625 int opc1;
8626 unsigned crn;
8627 unsigned crm;
8628 int opc2;
8629 arm_feature_set deprecated;
8630 arm_feature_set obsoleted;
8631 const char *dep_msg;
8632 const char *obs_msg;
8633};
8634
8635#define DEPR_ACCESS_V8 \
8636 N_("This coprocessor register access is deprecated in ARMv8")
8637
8638/* Table of all deprecated coprocessor registers. */
8639static struct deprecated_coproc_regs_s deprecated_coproc_regs[] =
8640{
8641 {15, 0, 7, 10, 5, /* CP15DMB. */
823d2571 8642 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8643 DEPR_ACCESS_V8, NULL},
8644 {15, 0, 7, 10, 4, /* CP15DSB. */
823d2571 8645 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8646 DEPR_ACCESS_V8, NULL},
8647 {15, 0, 7, 5, 4, /* CP15ISB. */
823d2571 8648 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8649 DEPR_ACCESS_V8, NULL},
8650 {14, 6, 1, 0, 0, /* TEEHBR. */
823d2571 8651 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8652 DEPR_ACCESS_V8, NULL},
8653 {14, 6, 0, 0, 0, /* TEECR. */
823d2571 8654 ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
dcbd0d71
MGD
8655 DEPR_ACCESS_V8, NULL},
8656};
8657
8658#undef DEPR_ACCESS_V8
8659
8660static const size_t deprecated_coproc_reg_count =
8661 sizeof (deprecated_coproc_regs) / sizeof (deprecated_coproc_regs[0]);
8662
09d92015 8663static void
c19d1205 8664do_co_reg (void)
09d92015 8665{
fdfde340 8666 unsigned Rd;
dcbd0d71 8667 size_t i;
fdfde340
JM
8668
8669 Rd = inst.operands[2].reg;
8670 if (thumb_mode)
8671 {
8672 if (inst.instruction == 0xee000010
8673 || inst.instruction == 0xfe000010)
8674 /* MCR, MCR2 */
8675 reject_bad_reg (Rd);
5c8ed6a4 8676 else if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
fdfde340
JM
8677 /* MRC, MRC2 */
8678 constraint (Rd == REG_SP, BAD_SP);
8679 }
8680 else
8681 {
8682 /* MCR */
8683 if (inst.instruction == 0xe000010)
8684 constraint (Rd == REG_PC, BAD_PC);
8685 }
8686
dcbd0d71
MGD
8687 for (i = 0; i < deprecated_coproc_reg_count; ++i)
8688 {
8689 const struct deprecated_coproc_regs_s *r =
8690 deprecated_coproc_regs + i;
8691
8692 if (inst.operands[0].reg == r->cp
8693 && inst.operands[1].imm == r->opc1
8694 && inst.operands[3].reg == r->crn
8695 && inst.operands[4].reg == r->crm
8696 && inst.operands[5].imm == r->opc2)
8697 {
b10bf8c5 8698 if (! ARM_CPU_IS_ANY (cpu_variant)
477330fc 8699 && warn_on_deprecated
dcbd0d71 8700 && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
5c3696f8 8701 as_tsktsk ("%s", r->dep_msg);
dcbd0d71
MGD
8702 }
8703 }
fdfde340 8704
c19d1205
ZW
8705 inst.instruction |= inst.operands[0].reg << 8;
8706 inst.instruction |= inst.operands[1].imm << 21;
fdfde340 8707 inst.instruction |= Rd << 12;
c19d1205
ZW
8708 inst.instruction |= inst.operands[3].reg << 16;
8709 inst.instruction |= inst.operands[4].reg;
8710 inst.instruction |= inst.operands[5].imm << 5;
8711}
09d92015 8712
c19d1205
ZW
8713/* Transfer between coprocessor register and pair of ARM registers.
8714 MCRR{cond} <coproc>, <opcode>, <Rd>, <Rn>, <CRm>.
8715 MCRR2
8716 MRRC{cond}
8717 MRRC2
b99bd4ef 8718
c19d1205 8719 Two XScale instructions are special cases of these:
09d92015 8720
c19d1205
ZW
8721 MAR{cond} acc0, <RdLo>, <RdHi> == MCRR{cond} p0, #0, <RdLo>, <RdHi>, c0
8722 MRA{cond} acc0, <RdLo>, <RdHi> == MRRC{cond} p0, #0, <RdLo>, <RdHi>, c0
b99bd4ef 8723
5f4273c7 8724 Result unpredictable if Rd or Rn is R15. */
a737bd4d 8725
c19d1205
ZW
8726static void
8727do_co_reg2c (void)
8728{
fdfde340
JM
8729 unsigned Rd, Rn;
8730
8731 Rd = inst.operands[2].reg;
8732 Rn = inst.operands[3].reg;
8733
8734 if (thumb_mode)
8735 {
8736 reject_bad_reg (Rd);
8737 reject_bad_reg (Rn);
8738 }
8739 else
8740 {
8741 constraint (Rd == REG_PC, BAD_PC);
8742 constraint (Rn == REG_PC, BAD_PC);
8743 }
8744
873f10f0
TC
8745 /* Only check the MRRC{2} variants. */
8746 if ((inst.instruction & 0x0FF00000) == 0x0C500000)
8747 {
8748 /* If Rd == Rn, error that the operation is
8749 unpredictable (example MRRC p3,#1,r1,r1,c4). */
8750 constraint (Rd == Rn, BAD_OVERLAP);
8751 }
8752
c19d1205
ZW
8753 inst.instruction |= inst.operands[0].reg << 8;
8754 inst.instruction |= inst.operands[1].imm << 4;
fdfde340
JM
8755 inst.instruction |= Rd << 12;
8756 inst.instruction |= Rn << 16;
c19d1205 8757 inst.instruction |= inst.operands[4].reg;
b99bd4ef
NC
8758}
8759
c19d1205
ZW
8760static void
8761do_cpsi (void)
8762{
8763 inst.instruction |= inst.operands[0].imm << 6;
a028a6f5
PB
8764 if (inst.operands[1].present)
8765 {
8766 inst.instruction |= CPSI_MMOD;
8767 inst.instruction |= inst.operands[1].imm;
8768 }
c19d1205 8769}
b99bd4ef 8770
62b3e311
PB
8771static void
8772do_dbg (void)
8773{
8774 inst.instruction |= inst.operands[0].imm;
8775}
8776
eea54501
MGD
8777static void
8778do_div (void)
8779{
8780 unsigned Rd, Rn, Rm;
8781
8782 Rd = inst.operands[0].reg;
8783 Rn = (inst.operands[1].present
8784 ? inst.operands[1].reg : Rd);
8785 Rm = inst.operands[2].reg;
8786
8787 constraint ((Rd == REG_PC), BAD_PC);
8788 constraint ((Rn == REG_PC), BAD_PC);
8789 constraint ((Rm == REG_PC), BAD_PC);
8790
8791 inst.instruction |= Rd << 16;
8792 inst.instruction |= Rn << 0;
8793 inst.instruction |= Rm << 8;
8794}
8795
b99bd4ef 8796static void
c19d1205 8797do_it (void)
b99bd4ef 8798{
c19d1205 8799 /* There is no IT instruction in ARM mode. We
e07e6e58
NC
8800 process it to do the validation as if in
8801 thumb mode, just in case the code gets
8802 assembled for thumb using the unified syntax. */
8803
c19d1205 8804 inst.size = 0;
e07e6e58
NC
8805 if (unified_syntax)
8806 {
8807 set_it_insn_type (IT_INSN);
8808 now_it.mask = (inst.instruction & 0xf) | 0x10;
8809 now_it.cc = inst.operands[0].imm;
8810 }
09d92015 8811}
b99bd4ef 8812
6530b175
NC
8813/* If there is only one register in the register list,
8814 then return its register number. Otherwise return -1. */
8815static int
8816only_one_reg_in_list (int range)
8817{
8818 int i = ffs (range) - 1;
8819 return (i > 15 || range != (1 << i)) ? -1 : i;
8820}
8821
09d92015 8822static void
6530b175 8823encode_ldmstm(int from_push_pop_mnem)
ea6ef066 8824{
c19d1205
ZW
8825 int base_reg = inst.operands[0].reg;
8826 int range = inst.operands[1].imm;
6530b175 8827 int one_reg;
ea6ef066 8828
c19d1205
ZW
8829 inst.instruction |= base_reg << 16;
8830 inst.instruction |= range;
ea6ef066 8831
c19d1205
ZW
8832 if (inst.operands[1].writeback)
8833 inst.instruction |= LDM_TYPE_2_OR_3;
09d92015 8834
c19d1205 8835 if (inst.operands[0].writeback)
ea6ef066 8836 {
c19d1205
ZW
8837 inst.instruction |= WRITE_BACK;
8838 /* Check for unpredictable uses of writeback. */
8839 if (inst.instruction & LOAD_BIT)
09d92015 8840 {
c19d1205
ZW
8841 /* Not allowed in LDM type 2. */
8842 if ((inst.instruction & LDM_TYPE_2_OR_3)
8843 && ((range & (1 << REG_PC)) == 0))
8844 as_warn (_("writeback of base register is UNPREDICTABLE"));
8845 /* Only allowed if base reg not in list for other types. */
8846 else if (range & (1 << base_reg))
8847 as_warn (_("writeback of base register when in register list is UNPREDICTABLE"));
8848 }
8849 else /* STM. */
8850 {
8851 /* Not allowed for type 2. */
8852 if (inst.instruction & LDM_TYPE_2_OR_3)
8853 as_warn (_("writeback of base register is UNPREDICTABLE"));
8854 /* Only allowed if base reg not in list, or first in list. */
8855 else if ((range & (1 << base_reg))
8856 && (range & ((1 << base_reg) - 1)))
8857 as_warn (_("if writeback register is in list, it must be the lowest reg in the list"));
09d92015 8858 }
ea6ef066 8859 }
6530b175
NC
8860
8861 /* If PUSH/POP has only one register, then use the A2 encoding. */
8862 one_reg = only_one_reg_in_list (range);
8863 if (from_push_pop_mnem && one_reg >= 0)
8864 {
8865 int is_push = (inst.instruction & A_PUSH_POP_OP_MASK) == A1_OPCODE_PUSH;
8866
8867 inst.instruction &= A_COND_MASK;
8868 inst.instruction |= is_push ? A2_OPCODE_PUSH : A2_OPCODE_POP;
8869 inst.instruction |= one_reg << 12;
8870 }
8871}
8872
8873static void
8874do_ldmstm (void)
8875{
8876 encode_ldmstm (/*from_push_pop_mnem=*/FALSE);
a737bd4d
NC
8877}
8878
c19d1205
ZW
8879/* ARMv5TE load-consecutive (argument parse)
8880 Mode is like LDRH.
8881
8882 LDRccD R, mode
8883 STRccD R, mode. */
8884
a737bd4d 8885static void
c19d1205 8886do_ldrd (void)
a737bd4d 8887{
c19d1205 8888 constraint (inst.operands[0].reg % 2 != 0,
c56791bb 8889 _("first transfer register must be even"));
c19d1205
ZW
8890 constraint (inst.operands[1].present
8891 && inst.operands[1].reg != inst.operands[0].reg + 1,
c56791bb 8892 _("can only transfer two consecutive registers"));
c19d1205
ZW
8893 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
8894 constraint (!inst.operands[2].isreg, _("'[' expected"));
a737bd4d 8895
c19d1205
ZW
8896 if (!inst.operands[1].present)
8897 inst.operands[1].reg = inst.operands[0].reg + 1;
5f4273c7 8898
c56791bb
RE
8899 /* encode_arm_addr_mode_3 will diagnose overlap between the base
8900 register and the first register written; we have to diagnose
8901 overlap between the base and the second register written here. */
ea6ef066 8902
c56791bb
RE
8903 if (inst.operands[2].reg == inst.operands[1].reg
8904 && (inst.operands[2].writeback || inst.operands[2].postind))
8905 as_warn (_("base register written back, and overlaps "
8906 "second transfer register"));
b05fe5cf 8907
c56791bb
RE
8908 if (!(inst.instruction & V4_STR_BIT))
8909 {
c19d1205 8910 /* For an index-register load, the index register must not overlap the
c56791bb
RE
8911 destination (even if not write-back). */
8912 if (inst.operands[2].immisreg
8913 && ((unsigned) inst.operands[2].imm == inst.operands[0].reg
8914 || (unsigned) inst.operands[2].imm == inst.operands[1].reg))
8915 as_warn (_("index register overlaps transfer register"));
b05fe5cf 8916 }
c19d1205
ZW
8917 inst.instruction |= inst.operands[0].reg << 12;
8918 encode_arm_addr_mode_3 (2, /*is_t=*/FALSE);
b05fe5cf
ZW
8919}
8920
8921static void
c19d1205 8922do_ldrex (void)
b05fe5cf 8923{
c19d1205
ZW
8924 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
8925 || inst.operands[1].postind || inst.operands[1].writeback
8926 || inst.operands[1].immisreg || inst.operands[1].shifted
01cfc07f
NC
8927 || inst.operands[1].negative
8928 /* This can arise if the programmer has written
8929 strex rN, rM, foo
8930 or if they have mistakenly used a register name as the last
8931 operand, eg:
8932 strex rN, rM, rX
8933 It is very difficult to distinguish between these two cases
8934 because "rX" might actually be a label. ie the register
8935 name has been occluded by a symbol of the same name. So we
8936 just generate a general 'bad addressing mode' type error
8937 message and leave it up to the programmer to discover the
8938 true cause and fix their mistake. */
8939 || (inst.operands[1].reg == REG_PC),
8940 BAD_ADDR_MODE);
b05fe5cf 8941
c19d1205
ZW
8942 constraint (inst.reloc.exp.X_op != O_constant
8943 || inst.reloc.exp.X_add_number != 0,
8944 _("offset must be zero in ARM encoding"));
b05fe5cf 8945
5be8be5d
DG
8946 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
8947
c19d1205
ZW
8948 inst.instruction |= inst.operands[0].reg << 12;
8949 inst.instruction |= inst.operands[1].reg << 16;
8950 inst.reloc.type = BFD_RELOC_UNUSED;
b05fe5cf
ZW
8951}
8952
8953static void
c19d1205 8954do_ldrexd (void)
b05fe5cf 8955{
c19d1205
ZW
8956 constraint (inst.operands[0].reg % 2 != 0,
8957 _("even register required"));
8958 constraint (inst.operands[1].present
8959 && inst.operands[1].reg != inst.operands[0].reg + 1,
8960 _("can only load two consecutive registers"));
8961 /* If op 1 were present and equal to PC, this function wouldn't
8962 have been called in the first place. */
8963 constraint (inst.operands[0].reg == REG_LR, _("r14 not allowed here"));
b05fe5cf 8964
c19d1205
ZW
8965 inst.instruction |= inst.operands[0].reg << 12;
8966 inst.instruction |= inst.operands[2].reg << 16;
b05fe5cf
ZW
8967}
8968
1be5fd2e
NC
8969/* In both ARM and thumb state 'ldr pc, #imm' with an immediate
8970 which is not a multiple of four is UNPREDICTABLE. */
8971static void
8972check_ldr_r15_aligned (void)
8973{
8974 constraint (!(inst.operands[1].immisreg)
8975 && (inst.operands[0].reg == REG_PC
8976 && inst.operands[1].reg == REG_PC
8977 && (inst.reloc.exp.X_add_number & 0x3)),
8978 _("ldr to register 15 must be 4-byte alligned"));
8979}
8980
b05fe5cf 8981static void
c19d1205 8982do_ldst (void)
b05fe5cf 8983{
c19d1205
ZW
8984 inst.instruction |= inst.operands[0].reg << 12;
8985 if (!inst.operands[1].isreg)
8335d6aa 8986 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/FALSE))
b05fe5cf 8987 return;
c19d1205 8988 encode_arm_addr_mode_2 (1, /*is_t=*/FALSE);
1be5fd2e 8989 check_ldr_r15_aligned ();
b05fe5cf
ZW
8990}
8991
8992static void
c19d1205 8993do_ldstt (void)
b05fe5cf 8994{
c19d1205
ZW
8995 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
8996 reject [Rn,...]. */
8997 if (inst.operands[1].preind)
b05fe5cf 8998 {
bd3ba5d1
NC
8999 constraint (inst.reloc.exp.X_op != O_constant
9000 || inst.reloc.exp.X_add_number != 0,
c19d1205 9001 _("this instruction requires a post-indexed address"));
b05fe5cf 9002
c19d1205
ZW
9003 inst.operands[1].preind = 0;
9004 inst.operands[1].postind = 1;
9005 inst.operands[1].writeback = 1;
b05fe5cf 9006 }
c19d1205
ZW
9007 inst.instruction |= inst.operands[0].reg << 12;
9008 encode_arm_addr_mode_2 (1, /*is_t=*/TRUE);
9009}
b05fe5cf 9010
c19d1205 9011/* Halfword and signed-byte load/store operations. */
b05fe5cf 9012
c19d1205
ZW
9013static void
9014do_ldstv4 (void)
9015{
ff4a8d2b 9016 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205
ZW
9017 inst.instruction |= inst.operands[0].reg << 12;
9018 if (!inst.operands[1].isreg)
8335d6aa 9019 if (move_or_literal_pool (0, CONST_ARM, /*mode_3=*/TRUE))
b05fe5cf 9020 return;
c19d1205 9021 encode_arm_addr_mode_3 (1, /*is_t=*/FALSE);
b05fe5cf
ZW
9022}
9023
9024static void
c19d1205 9025do_ldsttv4 (void)
b05fe5cf 9026{
c19d1205
ZW
9027 /* ldrt/strt always use post-indexed addressing. Turn [Rn] into [Rn]! and
9028 reject [Rn,...]. */
9029 if (inst.operands[1].preind)
b05fe5cf 9030 {
bd3ba5d1
NC
9031 constraint (inst.reloc.exp.X_op != O_constant
9032 || inst.reloc.exp.X_add_number != 0,
c19d1205 9033 _("this instruction requires a post-indexed address"));
b05fe5cf 9034
c19d1205
ZW
9035 inst.operands[1].preind = 0;
9036 inst.operands[1].postind = 1;
9037 inst.operands[1].writeback = 1;
b05fe5cf 9038 }
c19d1205
ZW
9039 inst.instruction |= inst.operands[0].reg << 12;
9040 encode_arm_addr_mode_3 (1, /*is_t=*/TRUE);
9041}
b05fe5cf 9042
c19d1205
ZW
9043/* Co-processor register load/store.
9044 Format: <LDC|STC>{cond}[L] CP#,CRd,<address> */
9045static void
9046do_lstc (void)
9047{
9048 inst.instruction |= inst.operands[0].reg << 8;
9049 inst.instruction |= inst.operands[1].reg << 12;
9050 encode_arm_cp_address (2, TRUE, TRUE, 0);
b05fe5cf
ZW
9051}
9052
b05fe5cf 9053static void
c19d1205 9054do_mlas (void)
b05fe5cf 9055{
8fb9d7b9 9056 /* This restriction does not apply to mls (nor to mla in v6 or later). */
c19d1205 9057 if (inst.operands[0].reg == inst.operands[1].reg
8fb9d7b9 9058 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6)
c19d1205 9059 && !(inst.instruction & 0x00400000))
8fb9d7b9 9060 as_tsktsk (_("Rd and Rm should be different in mla"));
b05fe5cf 9061
c19d1205
ZW
9062 inst.instruction |= inst.operands[0].reg << 16;
9063 inst.instruction |= inst.operands[1].reg;
9064 inst.instruction |= inst.operands[2].reg << 8;
9065 inst.instruction |= inst.operands[3].reg << 12;
c19d1205 9066}
b05fe5cf 9067
c19d1205
ZW
9068static void
9069do_mov (void)
9070{
a9f02af8
MG
9071 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
9072 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
9073 THUMB1_RELOC_ONLY);
c19d1205
ZW
9074 inst.instruction |= inst.operands[0].reg << 12;
9075 encode_arm_shifter_operand (1);
9076}
b05fe5cf 9077
c19d1205
ZW
9078/* ARM V6T2 16-bit immediate register load: MOV[WT]{cond} Rd, #<imm16>. */
9079static void
9080do_mov16 (void)
9081{
b6895b4f
PB
9082 bfd_vma imm;
9083 bfd_boolean top;
9084
9085 top = (inst.instruction & 0x00400000) != 0;
9086 constraint (top && inst.reloc.type == BFD_RELOC_ARM_MOVW,
33eaf5de 9087 _(":lower16: not allowed in this instruction"));
b6895b4f 9088 constraint (!top && inst.reloc.type == BFD_RELOC_ARM_MOVT,
33eaf5de 9089 _(":upper16: not allowed in this instruction"));
c19d1205 9090 inst.instruction |= inst.operands[0].reg << 12;
b6895b4f
PB
9091 if (inst.reloc.type == BFD_RELOC_UNUSED)
9092 {
9093 imm = inst.reloc.exp.X_add_number;
9094 /* The value is in two pieces: 0:11, 16:19. */
9095 inst.instruction |= (imm & 0x00000fff);
9096 inst.instruction |= (imm & 0x0000f000) << 4;
9097 }
b05fe5cf 9098}
b99bd4ef 9099
037e8744
JB
9100static int
9101do_vfp_nsyn_mrs (void)
9102{
9103 if (inst.operands[0].isvec)
9104 {
9105 if (inst.operands[1].reg != 1)
477330fc 9106 first_error (_("operand 1 must be FPSCR"));
037e8744
JB
9107 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
9108 memset (&inst.operands[1], '\0', sizeof (inst.operands[1]));
9109 do_vfp_nsyn_opcode ("fmstat");
9110 }
9111 else if (inst.operands[1].isvec)
9112 do_vfp_nsyn_opcode ("fmrx");
9113 else
9114 return FAIL;
5f4273c7 9115
037e8744
JB
9116 return SUCCESS;
9117}
9118
9119static int
9120do_vfp_nsyn_msr (void)
9121{
9122 if (inst.operands[0].isvec)
9123 do_vfp_nsyn_opcode ("fmxr");
9124 else
9125 return FAIL;
9126
9127 return SUCCESS;
9128}
9129
f7c21dc7
NC
9130static void
9131do_vmrs (void)
9132{
9133 unsigned Rt = inst.operands[0].reg;
fa94de6b 9134
16d02dc9 9135 if (thumb_mode && Rt == REG_SP)
f7c21dc7
NC
9136 {
9137 inst.error = BAD_SP;
9138 return;
9139 }
9140
9141 /* APSR_ sets isvec. All other refs to PC are illegal. */
16d02dc9 9142 if (!inst.operands[0].isvec && Rt == REG_PC)
f7c21dc7
NC
9143 {
9144 inst.error = BAD_PC;
9145 return;
9146 }
9147
16d02dc9
JB
9148 /* If we get through parsing the register name, we just insert the number
9149 generated into the instruction without further validation. */
9150 inst.instruction |= (inst.operands[1].reg << 16);
f7c21dc7
NC
9151 inst.instruction |= (Rt << 12);
9152}
9153
9154static void
9155do_vmsr (void)
9156{
9157 unsigned Rt = inst.operands[1].reg;
fa94de6b 9158
f7c21dc7
NC
9159 if (thumb_mode)
9160 reject_bad_reg (Rt);
9161 else if (Rt == REG_PC)
9162 {
9163 inst.error = BAD_PC;
9164 return;
9165 }
9166
16d02dc9
JB
9167 /* If we get through parsing the register name, we just insert the number
9168 generated into the instruction without further validation. */
9169 inst.instruction |= (inst.operands[0].reg << 16);
f7c21dc7
NC
9170 inst.instruction |= (Rt << 12);
9171}
9172
b99bd4ef 9173static void
c19d1205 9174do_mrs (void)
b99bd4ef 9175{
90ec0d68
MGD
9176 unsigned br;
9177
037e8744
JB
9178 if (do_vfp_nsyn_mrs () == SUCCESS)
9179 return;
9180
ff4a8d2b 9181 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
c19d1205 9182 inst.instruction |= inst.operands[0].reg << 12;
90ec0d68
MGD
9183
9184 if (inst.operands[1].isreg)
9185 {
9186 br = inst.operands[1].reg;
9187 if (((br & 0x200) == 0) && ((br & 0xf0000) != 0xf000))
9188 as_bad (_("bad register for mrs"));
9189 }
9190 else
9191 {
9192 /* mrs only accepts CPSR/SPSR/CPSR_all/SPSR_all. */
9193 constraint ((inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f))
9194 != (PSR_c|PSR_f),
d2cd1205 9195 _("'APSR', 'CPSR' or 'SPSR' expected"));
90ec0d68
MGD
9196 br = (15<<16) | (inst.operands[1].imm & SPSR_BIT);
9197 }
9198
9199 inst.instruction |= br;
c19d1205 9200}
b99bd4ef 9201
c19d1205
ZW
9202/* Two possible forms:
9203 "{C|S}PSR_<field>, Rm",
9204 "{C|S}PSR_f, #expression". */
b99bd4ef 9205
c19d1205
ZW
9206static void
9207do_msr (void)
9208{
037e8744
JB
9209 if (do_vfp_nsyn_msr () == SUCCESS)
9210 return;
9211
c19d1205
ZW
9212 inst.instruction |= inst.operands[0].imm;
9213 if (inst.operands[1].isreg)
9214 inst.instruction |= inst.operands[1].reg;
9215 else
b99bd4ef 9216 {
c19d1205
ZW
9217 inst.instruction |= INST_IMMEDIATE;
9218 inst.reloc.type = BFD_RELOC_ARM_IMMEDIATE;
9219 inst.reloc.pc_rel = 0;
b99bd4ef 9220 }
b99bd4ef
NC
9221}
9222
c19d1205
ZW
9223static void
9224do_mul (void)
a737bd4d 9225{
ff4a8d2b
NC
9226 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
9227
c19d1205
ZW
9228 if (!inst.operands[2].present)
9229 inst.operands[2].reg = inst.operands[0].reg;
9230 inst.instruction |= inst.operands[0].reg << 16;
9231 inst.instruction |= inst.operands[1].reg;
9232 inst.instruction |= inst.operands[2].reg << 8;
a737bd4d 9233
8fb9d7b9
MS
9234 if (inst.operands[0].reg == inst.operands[1].reg
9235 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
9236 as_tsktsk (_("Rd and Rm should be different in mul"));
a737bd4d
NC
9237}
9238
c19d1205
ZW
9239/* Long Multiply Parser
9240 UMULL RdLo, RdHi, Rm, Rs
9241 SMULL RdLo, RdHi, Rm, Rs
9242 UMLAL RdLo, RdHi, Rm, Rs
9243 SMLAL RdLo, RdHi, Rm, Rs. */
b99bd4ef
NC
9244
9245static void
c19d1205 9246do_mull (void)
b99bd4ef 9247{
c19d1205
ZW
9248 inst.instruction |= inst.operands[0].reg << 12;
9249 inst.instruction |= inst.operands[1].reg << 16;
9250 inst.instruction |= inst.operands[2].reg;
9251 inst.instruction |= inst.operands[3].reg << 8;
b99bd4ef 9252
682b27ad
PB
9253 /* rdhi and rdlo must be different. */
9254 if (inst.operands[0].reg == inst.operands[1].reg)
9255 as_tsktsk (_("rdhi and rdlo must be different"));
9256
9257 /* rdhi, rdlo and rm must all be different before armv6. */
9258 if ((inst.operands[0].reg == inst.operands[2].reg
c19d1205 9259 || inst.operands[1].reg == inst.operands[2].reg)
682b27ad 9260 && !ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6))
c19d1205
ZW
9261 as_tsktsk (_("rdhi, rdlo and rm must all be different"));
9262}
b99bd4ef 9263
c19d1205
ZW
9264static void
9265do_nop (void)
9266{
e7495e45
NS
9267 if (inst.operands[0].present
9268 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6k))
c19d1205
ZW
9269 {
9270 /* Architectural NOP hints are CPSR sets with no bits selected. */
9271 inst.instruction &= 0xf0000000;
e7495e45
NS
9272 inst.instruction |= 0x0320f000;
9273 if (inst.operands[0].present)
9274 inst.instruction |= inst.operands[0].imm;
c19d1205 9275 }
b99bd4ef
NC
9276}
9277
c19d1205
ZW
9278/* ARM V6 Pack Halfword Bottom Top instruction (argument parse).
9279 PKHBT {<cond>} <Rd>, <Rn>, <Rm> {, LSL #<shift_imm>}
9280 Condition defaults to COND_ALWAYS.
9281 Error if Rd, Rn or Rm are R15. */
b99bd4ef
NC
9282
9283static void
c19d1205 9284do_pkhbt (void)
b99bd4ef 9285{
c19d1205
ZW
9286 inst.instruction |= inst.operands[0].reg << 12;
9287 inst.instruction |= inst.operands[1].reg << 16;
9288 inst.instruction |= inst.operands[2].reg;
9289 if (inst.operands[3].present)
9290 encode_arm_shift (3);
9291}
b99bd4ef 9292
c19d1205 9293/* ARM V6 PKHTB (Argument Parse). */
b99bd4ef 9294
c19d1205
ZW
9295static void
9296do_pkhtb (void)
9297{
9298 if (!inst.operands[3].present)
b99bd4ef 9299 {
c19d1205
ZW
9300 /* If the shift specifier is omitted, turn the instruction
9301 into pkhbt rd, rm, rn. */
9302 inst.instruction &= 0xfff00010;
9303 inst.instruction |= inst.operands[0].reg << 12;
9304 inst.instruction |= inst.operands[1].reg;
9305 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
9306 }
9307 else
9308 {
c19d1205
ZW
9309 inst.instruction |= inst.operands[0].reg << 12;
9310 inst.instruction |= inst.operands[1].reg << 16;
9311 inst.instruction |= inst.operands[2].reg;
9312 encode_arm_shift (3);
b99bd4ef
NC
9313 }
9314}
9315
c19d1205 9316/* ARMv5TE: Preload-Cache
60e5ef9f 9317 MP Extensions: Preload for write
c19d1205 9318
60e5ef9f 9319 PLD(W) <addr_mode>
c19d1205
ZW
9320
9321 Syntactically, like LDR with B=1, W=0, L=1. */
b99bd4ef
NC
9322
9323static void
c19d1205 9324do_pld (void)
b99bd4ef 9325{
c19d1205
ZW
9326 constraint (!inst.operands[0].isreg,
9327 _("'[' expected after PLD mnemonic"));
9328 constraint (inst.operands[0].postind,
9329 _("post-indexed expression used in preload instruction"));
9330 constraint (inst.operands[0].writeback,
9331 _("writeback used in preload instruction"));
9332 constraint (!inst.operands[0].preind,
9333 _("unindexed addressing used in preload instruction"));
c19d1205
ZW
9334 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9335}
b99bd4ef 9336
62b3e311
PB
9337/* ARMv7: PLI <addr_mode> */
9338static void
9339do_pli (void)
9340{
9341 constraint (!inst.operands[0].isreg,
9342 _("'[' expected after PLI mnemonic"));
9343 constraint (inst.operands[0].postind,
9344 _("post-indexed expression used in preload instruction"));
9345 constraint (inst.operands[0].writeback,
9346 _("writeback used in preload instruction"));
9347 constraint (!inst.operands[0].preind,
9348 _("unindexed addressing used in preload instruction"));
9349 encode_arm_addr_mode_2 (0, /*is_t=*/FALSE);
9350 inst.instruction &= ~PRE_INDEX;
9351}
9352
c19d1205
ZW
9353static void
9354do_push_pop (void)
9355{
5e0d7f77
MP
9356 constraint (inst.operands[0].writeback,
9357 _("push/pop do not support {reglist}^"));
c19d1205
ZW
9358 inst.operands[1] = inst.operands[0];
9359 memset (&inst.operands[0], 0, sizeof inst.operands[0]);
9360 inst.operands[0].isreg = 1;
9361 inst.operands[0].writeback = 1;
9362 inst.operands[0].reg = REG_SP;
6530b175 9363 encode_ldmstm (/*from_push_pop_mnem=*/TRUE);
c19d1205 9364}
b99bd4ef 9365
c19d1205
ZW
9366/* ARM V6 RFE (Return from Exception) loads the PC and CPSR from the
9367 word at the specified address and the following word
9368 respectively.
9369 Unconditionally executed.
9370 Error if Rn is R15. */
b99bd4ef 9371
c19d1205
ZW
9372static void
9373do_rfe (void)
9374{
9375 inst.instruction |= inst.operands[0].reg << 16;
9376 if (inst.operands[0].writeback)
9377 inst.instruction |= WRITE_BACK;
9378}
b99bd4ef 9379
c19d1205 9380/* ARM V6 ssat (argument parse). */
b99bd4ef 9381
c19d1205
ZW
9382static void
9383do_ssat (void)
9384{
9385 inst.instruction |= inst.operands[0].reg << 12;
9386 inst.instruction |= (inst.operands[1].imm - 1) << 16;
9387 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9388
c19d1205
ZW
9389 if (inst.operands[3].present)
9390 encode_arm_shift (3);
b99bd4ef
NC
9391}
9392
c19d1205 9393/* ARM V6 usat (argument parse). */
b99bd4ef
NC
9394
9395static void
c19d1205 9396do_usat (void)
b99bd4ef 9397{
c19d1205
ZW
9398 inst.instruction |= inst.operands[0].reg << 12;
9399 inst.instruction |= inst.operands[1].imm << 16;
9400 inst.instruction |= inst.operands[2].reg;
b99bd4ef 9401
c19d1205
ZW
9402 if (inst.operands[3].present)
9403 encode_arm_shift (3);
b99bd4ef
NC
9404}
9405
c19d1205 9406/* ARM V6 ssat16 (argument parse). */
09d92015
MM
9407
9408static void
c19d1205 9409do_ssat16 (void)
09d92015 9410{
c19d1205
ZW
9411 inst.instruction |= inst.operands[0].reg << 12;
9412 inst.instruction |= ((inst.operands[1].imm - 1) << 16);
9413 inst.instruction |= inst.operands[2].reg;
09d92015
MM
9414}
9415
c19d1205
ZW
9416static void
9417do_usat16 (void)
a737bd4d 9418{
c19d1205
ZW
9419 inst.instruction |= inst.operands[0].reg << 12;
9420 inst.instruction |= inst.operands[1].imm << 16;
9421 inst.instruction |= inst.operands[2].reg;
9422}
a737bd4d 9423
c19d1205
ZW
9424/* ARM V6 SETEND (argument parse). Sets the E bit in the CPSR while
9425 preserving the other bits.
a737bd4d 9426
c19d1205
ZW
9427 setend <endian_specifier>, where <endian_specifier> is either
9428 BE or LE. */
a737bd4d 9429
c19d1205
ZW
9430static void
9431do_setend (void)
9432{
12e37cbc
MGD
9433 if (warn_on_deprecated
9434 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 9435 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 9436
c19d1205
ZW
9437 if (inst.operands[0].imm)
9438 inst.instruction |= 0x200;
a737bd4d
NC
9439}
9440
9441static void
c19d1205 9442do_shift (void)
a737bd4d 9443{
c19d1205
ZW
9444 unsigned int Rm = (inst.operands[1].present
9445 ? inst.operands[1].reg
9446 : inst.operands[0].reg);
a737bd4d 9447
c19d1205
ZW
9448 inst.instruction |= inst.operands[0].reg << 12;
9449 inst.instruction |= Rm;
9450 if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */
a737bd4d 9451 {
c19d1205
ZW
9452 inst.instruction |= inst.operands[2].reg << 8;
9453 inst.instruction |= SHIFT_BY_REG;
94342ec3
NC
9454 /* PR 12854: Error on extraneous shifts. */
9455 constraint (inst.operands[2].shifted,
9456 _("extraneous shift as part of operand to shift insn"));
a737bd4d
NC
9457 }
9458 else
c19d1205 9459 inst.reloc.type = BFD_RELOC_ARM_SHIFT_IMM;
a737bd4d
NC
9460}
9461
09d92015 9462static void
3eb17e6b 9463do_smc (void)
09d92015 9464{
3eb17e6b 9465 inst.reloc.type = BFD_RELOC_ARM_SMC;
c19d1205 9466 inst.reloc.pc_rel = 0;
09d92015
MM
9467}
9468
90ec0d68
MGD
9469static void
9470do_hvc (void)
9471{
9472 inst.reloc.type = BFD_RELOC_ARM_HVC;
9473 inst.reloc.pc_rel = 0;
9474}
9475
09d92015 9476static void
c19d1205 9477do_swi (void)
09d92015 9478{
c19d1205
ZW
9479 inst.reloc.type = BFD_RELOC_ARM_SWI;
9480 inst.reloc.pc_rel = 0;
09d92015
MM
9481}
9482
ddfded2f
MW
9483static void
9484do_setpan (void)
9485{
9486 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
9487 _("selected processor does not support SETPAN instruction"));
9488
9489 inst.instruction |= ((inst.operands[0].imm & 1) << 9);
9490}
9491
9492static void
9493do_t_setpan (void)
9494{
9495 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
9496 _("selected processor does not support SETPAN instruction"));
9497
9498 inst.instruction |= (inst.operands[0].imm << 3);
9499}
9500
c19d1205
ZW
9501/* ARM V5E (El Segundo) signed-multiply-accumulate (argument parse)
9502 SMLAxy{cond} Rd,Rm,Rs,Rn
9503 SMLAWy{cond} Rd,Rm,Rs,Rn
9504 Error if any register is R15. */
e16bb312 9505
c19d1205
ZW
9506static void
9507do_smla (void)
e16bb312 9508{
c19d1205
ZW
9509 inst.instruction |= inst.operands[0].reg << 16;
9510 inst.instruction |= inst.operands[1].reg;
9511 inst.instruction |= inst.operands[2].reg << 8;
9512 inst.instruction |= inst.operands[3].reg << 12;
9513}
a737bd4d 9514
c19d1205
ZW
9515/* ARM V5E (El Segundo) signed-multiply-accumulate-long (argument parse)
9516 SMLALxy{cond} Rdlo,Rdhi,Rm,Rs
9517 Error if any register is R15.
9518 Warning if Rdlo == Rdhi. */
a737bd4d 9519
c19d1205
ZW
9520static void
9521do_smlal (void)
9522{
9523 inst.instruction |= inst.operands[0].reg << 12;
9524 inst.instruction |= inst.operands[1].reg << 16;
9525 inst.instruction |= inst.operands[2].reg;
9526 inst.instruction |= inst.operands[3].reg << 8;
a737bd4d 9527
c19d1205
ZW
9528 if (inst.operands[0].reg == inst.operands[1].reg)
9529 as_tsktsk (_("rdhi and rdlo must be different"));
9530}
a737bd4d 9531
c19d1205
ZW
9532/* ARM V5E (El Segundo) signed-multiply (argument parse)
9533 SMULxy{cond} Rd,Rm,Rs
9534 Error if any register is R15. */
a737bd4d 9535
c19d1205
ZW
9536static void
9537do_smul (void)
9538{
9539 inst.instruction |= inst.operands[0].reg << 16;
9540 inst.instruction |= inst.operands[1].reg;
9541 inst.instruction |= inst.operands[2].reg << 8;
9542}
a737bd4d 9543
b6702015
PB
9544/* ARM V6 srs (argument parse). The variable fields in the encoding are
9545 the same for both ARM and Thumb-2. */
a737bd4d 9546
c19d1205
ZW
9547static void
9548do_srs (void)
9549{
b6702015
PB
9550 int reg;
9551
9552 if (inst.operands[0].present)
9553 {
9554 reg = inst.operands[0].reg;
fdfde340 9555 constraint (reg != REG_SP, _("SRS base register must be r13"));
b6702015
PB
9556 }
9557 else
fdfde340 9558 reg = REG_SP;
b6702015
PB
9559
9560 inst.instruction |= reg << 16;
9561 inst.instruction |= inst.operands[1].imm;
9562 if (inst.operands[0].writeback || inst.operands[1].writeback)
c19d1205
ZW
9563 inst.instruction |= WRITE_BACK;
9564}
a737bd4d 9565
c19d1205 9566/* ARM V6 strex (argument parse). */
a737bd4d 9567
c19d1205
ZW
9568static void
9569do_strex (void)
9570{
9571 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9572 || inst.operands[2].postind || inst.operands[2].writeback
9573 || inst.operands[2].immisreg || inst.operands[2].shifted
01cfc07f
NC
9574 || inst.operands[2].negative
9575 /* See comment in do_ldrex(). */
9576 || (inst.operands[2].reg == REG_PC),
9577 BAD_ADDR_MODE);
a737bd4d 9578
c19d1205
ZW
9579 constraint (inst.operands[0].reg == inst.operands[1].reg
9580 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
a737bd4d 9581
c19d1205
ZW
9582 constraint (inst.reloc.exp.X_op != O_constant
9583 || inst.reloc.exp.X_add_number != 0,
9584 _("offset must be zero in ARM encoding"));
a737bd4d 9585
c19d1205
ZW
9586 inst.instruction |= inst.operands[0].reg << 12;
9587 inst.instruction |= inst.operands[1].reg;
9588 inst.instruction |= inst.operands[2].reg << 16;
9589 inst.reloc.type = BFD_RELOC_UNUSED;
e16bb312
NC
9590}
9591
877807f8
NC
9592static void
9593do_t_strexbh (void)
9594{
9595 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
9596 || inst.operands[2].postind || inst.operands[2].writeback
9597 || inst.operands[2].immisreg || inst.operands[2].shifted
9598 || inst.operands[2].negative,
9599 BAD_ADDR_MODE);
9600
9601 constraint (inst.operands[0].reg == inst.operands[1].reg
9602 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9603
9604 do_rm_rd_rn ();
9605}
9606
e16bb312 9607static void
c19d1205 9608do_strexd (void)
e16bb312 9609{
c19d1205
ZW
9610 constraint (inst.operands[1].reg % 2 != 0,
9611 _("even register required"));
9612 constraint (inst.operands[2].present
9613 && inst.operands[2].reg != inst.operands[1].reg + 1,
9614 _("can only store two consecutive registers"));
9615 /* If op 2 were present and equal to PC, this function wouldn't
9616 have been called in the first place. */
9617 constraint (inst.operands[1].reg == REG_LR, _("r14 not allowed here"));
e16bb312 9618
c19d1205
ZW
9619 constraint (inst.operands[0].reg == inst.operands[1].reg
9620 || inst.operands[0].reg == inst.operands[1].reg + 1
9621 || inst.operands[0].reg == inst.operands[3].reg,
9622 BAD_OVERLAP);
e16bb312 9623
c19d1205
ZW
9624 inst.instruction |= inst.operands[0].reg << 12;
9625 inst.instruction |= inst.operands[1].reg;
9626 inst.instruction |= inst.operands[3].reg << 16;
e16bb312
NC
9627}
9628
9eb6c0f1
MGD
9629/* ARM V8 STRL. */
9630static void
4b8c8c02 9631do_stlex (void)
9eb6c0f1
MGD
9632{
9633 constraint (inst.operands[0].reg == inst.operands[1].reg
9634 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9635
9636 do_rd_rm_rn ();
9637}
9638
9639static void
4b8c8c02 9640do_t_stlex (void)
9eb6c0f1
MGD
9641{
9642 constraint (inst.operands[0].reg == inst.operands[1].reg
9643 || inst.operands[0].reg == inst.operands[2].reg, BAD_OVERLAP);
9644
9645 do_rm_rd_rn ();
9646}
9647
c19d1205
ZW
9648/* ARM V6 SXTAH extracts a 16-bit value from a register, sign
9649 extends it to 32-bits, and adds the result to a value in another
9650 register. You can specify a rotation by 0, 8, 16, or 24 bits
9651 before extracting the 16-bit value.
9652 SXTAH{<cond>} <Rd>, <Rn>, <Rm>{, <rotation>}
9653 Condition defaults to COND_ALWAYS.
9654 Error if any register uses R15. */
9655
e16bb312 9656static void
c19d1205 9657do_sxtah (void)
e16bb312 9658{
c19d1205
ZW
9659 inst.instruction |= inst.operands[0].reg << 12;
9660 inst.instruction |= inst.operands[1].reg << 16;
9661 inst.instruction |= inst.operands[2].reg;
9662 inst.instruction |= inst.operands[3].imm << 10;
9663}
e16bb312 9664
c19d1205 9665/* ARM V6 SXTH.
e16bb312 9666
c19d1205
ZW
9667 SXTH {<cond>} <Rd>, <Rm>{, <rotation>}
9668 Condition defaults to COND_ALWAYS.
9669 Error if any register uses R15. */
e16bb312
NC
9670
9671static void
c19d1205 9672do_sxth (void)
e16bb312 9673{
c19d1205
ZW
9674 inst.instruction |= inst.operands[0].reg << 12;
9675 inst.instruction |= inst.operands[1].reg;
9676 inst.instruction |= inst.operands[2].imm << 10;
e16bb312 9677}
c19d1205
ZW
9678\f
9679/* VFP instructions. In a logical order: SP variant first, monad
9680 before dyad, arithmetic then move then load/store. */
e16bb312
NC
9681
9682static void
c19d1205 9683do_vfp_sp_monadic (void)
e16bb312 9684{
5287ad62
JB
9685 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9686 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9687}
9688
9689static void
c19d1205 9690do_vfp_sp_dyadic (void)
e16bb312 9691{
5287ad62
JB
9692 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9693 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
9694 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9695}
9696
9697static void
c19d1205 9698do_vfp_sp_compare_z (void)
e16bb312 9699{
5287ad62 9700 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
e16bb312
NC
9701}
9702
9703static void
c19d1205 9704do_vfp_dp_sp_cvt (void)
e16bb312 9705{
5287ad62
JB
9706 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9707 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sm);
e16bb312
NC
9708}
9709
9710static void
c19d1205 9711do_vfp_sp_dp_cvt (void)
e16bb312 9712{
5287ad62
JB
9713 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9714 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
e16bb312
NC
9715}
9716
9717static void
c19d1205 9718do_vfp_reg_from_sp (void)
e16bb312 9719{
c19d1205 9720 inst.instruction |= inst.operands[0].reg << 12;
5287ad62 9721 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sn);
e16bb312
NC
9722}
9723
9724static void
c19d1205 9725do_vfp_reg2_from_sp2 (void)
e16bb312 9726{
c19d1205
ZW
9727 constraint (inst.operands[2].imm != 2,
9728 _("only two consecutive VFP SP registers allowed here"));
9729 inst.instruction |= inst.operands[0].reg << 12;
9730 inst.instruction |= inst.operands[1].reg << 16;
5287ad62 9731 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Sm);
e16bb312
NC
9732}
9733
9734static void
c19d1205 9735do_vfp_sp_from_reg (void)
e16bb312 9736{
5287ad62 9737 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sn);
c19d1205 9738 inst.instruction |= inst.operands[1].reg << 12;
e16bb312
NC
9739}
9740
9741static void
c19d1205 9742do_vfp_sp2_from_reg2 (void)
e16bb312 9743{
c19d1205
ZW
9744 constraint (inst.operands[0].imm != 2,
9745 _("only two consecutive VFP SP registers allowed here"));
5287ad62 9746 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sm);
c19d1205
ZW
9747 inst.instruction |= inst.operands[1].reg << 12;
9748 inst.instruction |= inst.operands[2].reg << 16;
e16bb312
NC
9749}
9750
9751static void
c19d1205 9752do_vfp_sp_ldst (void)
e16bb312 9753{
5287ad62 9754 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
c19d1205 9755 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9756}
9757
9758static void
c19d1205 9759do_vfp_dp_ldst (void)
e16bb312 9760{
5287ad62 9761 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
c19d1205 9762 encode_arm_cp_address (1, FALSE, TRUE, 0);
e16bb312
NC
9763}
9764
c19d1205 9765
e16bb312 9766static void
c19d1205 9767vfp_sp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9768{
c19d1205
ZW
9769 if (inst.operands[0].writeback)
9770 inst.instruction |= WRITE_BACK;
9771 else
9772 constraint (ldstm_type != VFP_LDSTMIA,
9773 _("this addressing mode requires base-register writeback"));
9774 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9775 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Sd);
c19d1205 9776 inst.instruction |= inst.operands[1].imm;
e16bb312
NC
9777}
9778
9779static void
c19d1205 9780vfp_dp_ldstm (enum vfp_ldstm_type ldstm_type)
e16bb312 9781{
c19d1205 9782 int count;
e16bb312 9783
c19d1205
ZW
9784 if (inst.operands[0].writeback)
9785 inst.instruction |= WRITE_BACK;
9786 else
9787 constraint (ldstm_type != VFP_LDSTMIA && ldstm_type != VFP_LDSTMIAX,
9788 _("this addressing mode requires base-register writeback"));
e16bb312 9789
c19d1205 9790 inst.instruction |= inst.operands[0].reg << 16;
5287ad62 9791 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
e16bb312 9792
c19d1205
ZW
9793 count = inst.operands[1].imm << 1;
9794 if (ldstm_type == VFP_LDSTMIAX || ldstm_type == VFP_LDSTMDBX)
9795 count += 1;
e16bb312 9796
c19d1205 9797 inst.instruction |= count;
e16bb312
NC
9798}
9799
9800static void
c19d1205 9801do_vfp_sp_ldstmia (void)
e16bb312 9802{
c19d1205 9803 vfp_sp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9804}
9805
9806static void
c19d1205 9807do_vfp_sp_ldstmdb (void)
e16bb312 9808{
c19d1205 9809 vfp_sp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9810}
9811
9812static void
c19d1205 9813do_vfp_dp_ldstmia (void)
e16bb312 9814{
c19d1205 9815 vfp_dp_ldstm (VFP_LDSTMIA);
e16bb312
NC
9816}
9817
9818static void
c19d1205 9819do_vfp_dp_ldstmdb (void)
e16bb312 9820{
c19d1205 9821 vfp_dp_ldstm (VFP_LDSTMDB);
e16bb312
NC
9822}
9823
9824static void
c19d1205 9825do_vfp_xp_ldstmia (void)
e16bb312 9826{
c19d1205
ZW
9827 vfp_dp_ldstm (VFP_LDSTMIAX);
9828}
e16bb312 9829
c19d1205
ZW
9830static void
9831do_vfp_xp_ldstmdb (void)
9832{
9833 vfp_dp_ldstm (VFP_LDSTMDBX);
e16bb312 9834}
5287ad62
JB
9835
9836static void
9837do_vfp_dp_rd_rm (void)
9838{
9839 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9840 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dm);
9841}
9842
9843static void
9844do_vfp_dp_rn_rd (void)
9845{
9846 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dn);
9847 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9848}
9849
9850static void
9851do_vfp_dp_rd_rn (void)
9852{
9853 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9854 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9855}
9856
9857static void
9858do_vfp_dp_rd_rn_rm (void)
9859{
9860 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9861 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dn);
9862 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dm);
9863}
9864
9865static void
9866do_vfp_dp_rd (void)
9867{
9868 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9869}
9870
9871static void
9872do_vfp_dp_rm_rd_rn (void)
9873{
9874 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dm);
9875 encode_arm_vfp_reg (inst.operands[1].reg, VFP_REG_Dd);
9876 encode_arm_vfp_reg (inst.operands[2].reg, VFP_REG_Dn);
9877}
9878
9879/* VFPv3 instructions. */
9880static void
9881do_vfp_sp_const (void)
9882{
9883 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
00249aaa
PB
9884 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9885 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9886}
9887
9888static void
9889do_vfp_dp_const (void)
9890{
9891 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
00249aaa
PB
9892 inst.instruction |= (inst.operands[1].imm & 0xf0) << 12;
9893 inst.instruction |= (inst.operands[1].imm & 0x0f);
5287ad62
JB
9894}
9895
9896static void
9897vfp_conv (int srcsize)
9898{
5f1af56b
MGD
9899 int immbits = srcsize - inst.operands[1].imm;
9900
fa94de6b
RM
9901 if (srcsize == 16 && !(immbits >= 0 && immbits <= srcsize))
9902 {
5f1af56b 9903 /* If srcsize is 16, inst.operands[1].imm must be in the range 0-16.
477330fc 9904 i.e. immbits must be in range 0 - 16. */
5f1af56b
MGD
9905 inst.error = _("immediate value out of range, expected range [0, 16]");
9906 return;
9907 }
fa94de6b 9908 else if (srcsize == 32 && !(immbits >= 0 && immbits < srcsize))
5f1af56b
MGD
9909 {
9910 /* If srcsize is 32, inst.operands[1].imm must be in the range 1-32.
477330fc 9911 i.e. immbits must be in range 0 - 31. */
5f1af56b
MGD
9912 inst.error = _("immediate value out of range, expected range [1, 32]");
9913 return;
9914 }
9915
5287ad62
JB
9916 inst.instruction |= (immbits & 1) << 5;
9917 inst.instruction |= (immbits >> 1);
9918}
9919
9920static void
9921do_vfp_sp_conv_16 (void)
9922{
9923 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9924 vfp_conv (16);
9925}
9926
9927static void
9928do_vfp_dp_conv_16 (void)
9929{
9930 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9931 vfp_conv (16);
9932}
9933
9934static void
9935do_vfp_sp_conv_32 (void)
9936{
9937 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
9938 vfp_conv (32);
9939}
9940
9941static void
9942do_vfp_dp_conv_32 (void)
9943{
9944 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Dd);
9945 vfp_conv (32);
9946}
c19d1205
ZW
9947\f
9948/* FPA instructions. Also in a logical order. */
e16bb312 9949
c19d1205
ZW
9950static void
9951do_fpa_cmp (void)
9952{
9953 inst.instruction |= inst.operands[0].reg << 16;
9954 inst.instruction |= inst.operands[1].reg;
9955}
b99bd4ef
NC
9956
9957static void
c19d1205 9958do_fpa_ldmstm (void)
b99bd4ef 9959{
c19d1205
ZW
9960 inst.instruction |= inst.operands[0].reg << 12;
9961 switch (inst.operands[1].imm)
9962 {
9963 case 1: inst.instruction |= CP_T_X; break;
9964 case 2: inst.instruction |= CP_T_Y; break;
9965 case 3: inst.instruction |= CP_T_Y | CP_T_X; break;
9966 case 4: break;
9967 default: abort ();
9968 }
b99bd4ef 9969
c19d1205
ZW
9970 if (inst.instruction & (PRE_INDEX | INDEX_UP))
9971 {
9972 /* The instruction specified "ea" or "fd", so we can only accept
9973 [Rn]{!}. The instruction does not really support stacking or
9974 unstacking, so we have to emulate these by setting appropriate
9975 bits and offsets. */
9976 constraint (inst.reloc.exp.X_op != O_constant
9977 || inst.reloc.exp.X_add_number != 0,
9978 _("this instruction does not support indexing"));
b99bd4ef 9979
c19d1205
ZW
9980 if ((inst.instruction & PRE_INDEX) || inst.operands[2].writeback)
9981 inst.reloc.exp.X_add_number = 12 * inst.operands[1].imm;
b99bd4ef 9982
c19d1205
ZW
9983 if (!(inst.instruction & INDEX_UP))
9984 inst.reloc.exp.X_add_number = -inst.reloc.exp.X_add_number;
b99bd4ef 9985
c19d1205
ZW
9986 if (!(inst.instruction & PRE_INDEX) && inst.operands[2].writeback)
9987 {
9988 inst.operands[2].preind = 0;
9989 inst.operands[2].postind = 1;
9990 }
9991 }
b99bd4ef 9992
c19d1205 9993 encode_arm_cp_address (2, TRUE, TRUE, 0);
b99bd4ef 9994}
c19d1205
ZW
9995\f
9996/* iWMMXt instructions: strictly in alphabetical order. */
b99bd4ef 9997
c19d1205
ZW
9998static void
9999do_iwmmxt_tandorc (void)
10000{
10001 constraint (inst.operands[0].reg != REG_PC, _("only r15 allowed here"));
10002}
b99bd4ef 10003
c19d1205
ZW
10004static void
10005do_iwmmxt_textrc (void)
10006{
10007 inst.instruction |= inst.operands[0].reg << 12;
10008 inst.instruction |= inst.operands[1].imm;
10009}
b99bd4ef
NC
10010
10011static void
c19d1205 10012do_iwmmxt_textrm (void)
b99bd4ef 10013{
c19d1205
ZW
10014 inst.instruction |= inst.operands[0].reg << 12;
10015 inst.instruction |= inst.operands[1].reg << 16;
10016 inst.instruction |= inst.operands[2].imm;
10017}
b99bd4ef 10018
c19d1205
ZW
10019static void
10020do_iwmmxt_tinsr (void)
10021{
10022 inst.instruction |= inst.operands[0].reg << 16;
10023 inst.instruction |= inst.operands[1].reg << 12;
10024 inst.instruction |= inst.operands[2].imm;
10025}
b99bd4ef 10026
c19d1205
ZW
10027static void
10028do_iwmmxt_tmia (void)
10029{
10030 inst.instruction |= inst.operands[0].reg << 5;
10031 inst.instruction |= inst.operands[1].reg;
10032 inst.instruction |= inst.operands[2].reg << 12;
10033}
b99bd4ef 10034
c19d1205
ZW
10035static void
10036do_iwmmxt_waligni (void)
10037{
10038 inst.instruction |= inst.operands[0].reg << 12;
10039 inst.instruction |= inst.operands[1].reg << 16;
10040 inst.instruction |= inst.operands[2].reg;
10041 inst.instruction |= inst.operands[3].imm << 20;
10042}
b99bd4ef 10043
2d447fca
JM
10044static void
10045do_iwmmxt_wmerge (void)
10046{
10047 inst.instruction |= inst.operands[0].reg << 12;
10048 inst.instruction |= inst.operands[1].reg << 16;
10049 inst.instruction |= inst.operands[2].reg;
10050 inst.instruction |= inst.operands[3].imm << 21;
10051}
10052
c19d1205
ZW
10053static void
10054do_iwmmxt_wmov (void)
10055{
10056 /* WMOV rD, rN is an alias for WOR rD, rN, rN. */
10057 inst.instruction |= inst.operands[0].reg << 12;
10058 inst.instruction |= inst.operands[1].reg << 16;
10059 inst.instruction |= inst.operands[1].reg;
10060}
b99bd4ef 10061
c19d1205
ZW
10062static void
10063do_iwmmxt_wldstbh (void)
10064{
8f06b2d8 10065 int reloc;
c19d1205 10066 inst.instruction |= inst.operands[0].reg << 12;
8f06b2d8
PB
10067 if (thumb_mode)
10068 reloc = BFD_RELOC_ARM_T32_CP_OFF_IMM_S2;
10069 else
10070 reloc = BFD_RELOC_ARM_CP_OFF_IMM_S2;
10071 encode_arm_cp_address (1, TRUE, FALSE, reloc);
b99bd4ef
NC
10072}
10073
c19d1205
ZW
10074static void
10075do_iwmmxt_wldstw (void)
10076{
10077 /* RIWR_RIWC clears .isreg for a control register. */
10078 if (!inst.operands[0].isreg)
10079 {
10080 constraint (inst.cond != COND_ALWAYS, BAD_COND);
10081 inst.instruction |= 0xf0000000;
10082 }
b99bd4ef 10083
c19d1205
ZW
10084 inst.instruction |= inst.operands[0].reg << 12;
10085 encode_arm_cp_address (1, TRUE, TRUE, 0);
10086}
b99bd4ef
NC
10087
10088static void
c19d1205 10089do_iwmmxt_wldstd (void)
b99bd4ef 10090{
c19d1205 10091 inst.instruction |= inst.operands[0].reg << 12;
2d447fca
JM
10092 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2)
10093 && inst.operands[1].immisreg)
10094 {
10095 inst.instruction &= ~0x1a000ff;
eff0bc54 10096 inst.instruction |= (0xfU << 28);
2d447fca
JM
10097 if (inst.operands[1].preind)
10098 inst.instruction |= PRE_INDEX;
10099 if (!inst.operands[1].negative)
10100 inst.instruction |= INDEX_UP;
10101 if (inst.operands[1].writeback)
10102 inst.instruction |= WRITE_BACK;
10103 inst.instruction |= inst.operands[1].reg << 16;
10104 inst.instruction |= inst.reloc.exp.X_add_number << 4;
10105 inst.instruction |= inst.operands[1].imm;
10106 }
10107 else
10108 encode_arm_cp_address (1, TRUE, FALSE, 0);
c19d1205 10109}
b99bd4ef 10110
c19d1205
ZW
10111static void
10112do_iwmmxt_wshufh (void)
10113{
10114 inst.instruction |= inst.operands[0].reg << 12;
10115 inst.instruction |= inst.operands[1].reg << 16;
10116 inst.instruction |= ((inst.operands[2].imm & 0xf0) << 16);
10117 inst.instruction |= (inst.operands[2].imm & 0x0f);
10118}
b99bd4ef 10119
c19d1205
ZW
10120static void
10121do_iwmmxt_wzero (void)
10122{
10123 /* WZERO reg is an alias for WANDN reg, reg, reg. */
10124 inst.instruction |= inst.operands[0].reg;
10125 inst.instruction |= inst.operands[0].reg << 12;
10126 inst.instruction |= inst.operands[0].reg << 16;
10127}
2d447fca
JM
10128
10129static void
10130do_iwmmxt_wrwrwr_or_imm5 (void)
10131{
10132 if (inst.operands[2].isreg)
10133 do_rd_rn_rm ();
10134 else {
10135 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2),
10136 _("immediate operand requires iWMMXt2"));
10137 do_rd_rn ();
10138 if (inst.operands[2].imm == 0)
10139 {
10140 switch ((inst.instruction >> 20) & 0xf)
10141 {
10142 case 4:
10143 case 5:
10144 case 6:
5f4273c7 10145 case 7:
2d447fca
JM
10146 /* w...h wrd, wrn, #0 -> wrorh wrd, wrn, #16. */
10147 inst.operands[2].imm = 16;
10148 inst.instruction = (inst.instruction & 0xff0fffff) | (0x7 << 20);
10149 break;
10150 case 8:
10151 case 9:
10152 case 10:
10153 case 11:
10154 /* w...w wrd, wrn, #0 -> wrorw wrd, wrn, #32. */
10155 inst.operands[2].imm = 32;
10156 inst.instruction = (inst.instruction & 0xff0fffff) | (0xb << 20);
10157 break;
10158 case 12:
10159 case 13:
10160 case 14:
10161 case 15:
10162 {
10163 /* w...d wrd, wrn, #0 -> wor wrd, wrn, wrn. */
10164 unsigned long wrn;
10165 wrn = (inst.instruction >> 16) & 0xf;
10166 inst.instruction &= 0xff0fff0f;
10167 inst.instruction |= wrn;
10168 /* Bail out here; the instruction is now assembled. */
10169 return;
10170 }
10171 }
10172 }
10173 /* Map 32 -> 0, etc. */
10174 inst.operands[2].imm &= 0x1f;
eff0bc54 10175 inst.instruction |= (0xfU << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
2d447fca
JM
10176 }
10177}
c19d1205
ZW
10178\f
10179/* Cirrus Maverick instructions. Simple 2-, 3-, and 4-register
10180 operations first, then control, shift, and load/store. */
b99bd4ef 10181
c19d1205 10182/* Insns like "foo X,Y,Z". */
b99bd4ef 10183
c19d1205
ZW
10184static void
10185do_mav_triple (void)
10186{
10187 inst.instruction |= inst.operands[0].reg << 16;
10188 inst.instruction |= inst.operands[1].reg;
10189 inst.instruction |= inst.operands[2].reg << 12;
10190}
b99bd4ef 10191
c19d1205
ZW
10192/* Insns like "foo W,X,Y,Z".
10193 where W=MVAX[0:3] and X,Y,Z=MVFX[0:15]. */
a737bd4d 10194
c19d1205
ZW
10195static void
10196do_mav_quad (void)
10197{
10198 inst.instruction |= inst.operands[0].reg << 5;
10199 inst.instruction |= inst.operands[1].reg << 12;
10200 inst.instruction |= inst.operands[2].reg << 16;
10201 inst.instruction |= inst.operands[3].reg;
a737bd4d
NC
10202}
10203
c19d1205
ZW
10204/* cfmvsc32<cond> DSPSC,MVDX[15:0]. */
10205static void
10206do_mav_dspsc (void)
a737bd4d 10207{
c19d1205
ZW
10208 inst.instruction |= inst.operands[1].reg << 12;
10209}
a737bd4d 10210
c19d1205
ZW
10211/* Maverick shift immediate instructions.
10212 cfsh32<cond> MVFX[15:0],MVFX[15:0],Shift[6:0].
10213 cfsh64<cond> MVDX[15:0],MVDX[15:0],Shift[6:0]. */
a737bd4d 10214
c19d1205
ZW
10215static void
10216do_mav_shift (void)
10217{
10218 int imm = inst.operands[2].imm;
a737bd4d 10219
c19d1205
ZW
10220 inst.instruction |= inst.operands[0].reg << 12;
10221 inst.instruction |= inst.operands[1].reg << 16;
a737bd4d 10222
c19d1205
ZW
10223 /* Bits 0-3 of the insn should have bits 0-3 of the immediate.
10224 Bits 5-7 of the insn should have bits 4-6 of the immediate.
10225 Bit 4 should be 0. */
10226 imm = (imm & 0xf) | ((imm & 0x70) << 1);
a737bd4d 10227
c19d1205
ZW
10228 inst.instruction |= imm;
10229}
10230\f
10231/* XScale instructions. Also sorted arithmetic before move. */
a737bd4d 10232
c19d1205
ZW
10233/* Xscale multiply-accumulate (argument parse)
10234 MIAcc acc0,Rm,Rs
10235 MIAPHcc acc0,Rm,Rs
10236 MIAxycc acc0,Rm,Rs. */
a737bd4d 10237
c19d1205
ZW
10238static void
10239do_xsc_mia (void)
10240{
10241 inst.instruction |= inst.operands[1].reg;
10242 inst.instruction |= inst.operands[2].reg << 12;
10243}
a737bd4d 10244
c19d1205 10245/* Xscale move-accumulator-register (argument parse)
a737bd4d 10246
c19d1205 10247 MARcc acc0,RdLo,RdHi. */
b99bd4ef 10248
c19d1205
ZW
10249static void
10250do_xsc_mar (void)
10251{
10252 inst.instruction |= inst.operands[1].reg << 12;
10253 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
10254}
10255
c19d1205 10256/* Xscale move-register-accumulator (argument parse)
b99bd4ef 10257
c19d1205 10258 MRAcc RdLo,RdHi,acc0. */
b99bd4ef
NC
10259
10260static void
c19d1205 10261do_xsc_mra (void)
b99bd4ef 10262{
c19d1205
ZW
10263 constraint (inst.operands[0].reg == inst.operands[1].reg, BAD_OVERLAP);
10264 inst.instruction |= inst.operands[0].reg << 12;
10265 inst.instruction |= inst.operands[1].reg << 16;
10266}
10267\f
10268/* Encoding functions relevant only to Thumb. */
b99bd4ef 10269
c19d1205
ZW
10270/* inst.operands[i] is a shifted-register operand; encode
10271 it into inst.instruction in the format used by Thumb32. */
10272
10273static void
10274encode_thumb32_shifted_operand (int i)
10275{
10276 unsigned int value = inst.reloc.exp.X_add_number;
10277 unsigned int shift = inst.operands[i].shift_kind;
b99bd4ef 10278
9c3c69f2
PB
10279 constraint (inst.operands[i].immisreg,
10280 _("shift by register not allowed in thumb mode"));
c19d1205
ZW
10281 inst.instruction |= inst.operands[i].reg;
10282 if (shift == SHIFT_RRX)
10283 inst.instruction |= SHIFT_ROR << 4;
10284 else
b99bd4ef 10285 {
c19d1205
ZW
10286 constraint (inst.reloc.exp.X_op != O_constant,
10287 _("expression too complex"));
10288
10289 constraint (value > 32
10290 || (value == 32 && (shift == SHIFT_LSL
10291 || shift == SHIFT_ROR)),
10292 _("shift expression is too large"));
10293
10294 if (value == 0)
10295 shift = SHIFT_LSL;
10296 else if (value == 32)
10297 value = 0;
10298
10299 inst.instruction |= shift << 4;
10300 inst.instruction |= (value & 0x1c) << 10;
10301 inst.instruction |= (value & 0x03) << 6;
b99bd4ef 10302 }
c19d1205 10303}
b99bd4ef 10304
b99bd4ef 10305
c19d1205
ZW
10306/* inst.operands[i] was set up by parse_address. Encode it into a
10307 Thumb32 format load or store instruction. Reject forms that cannot
10308 be used with such instructions. If is_t is true, reject forms that
10309 cannot be used with a T instruction; if is_d is true, reject forms
5be8be5d
DG
10310 that cannot be used with a D instruction. If it is a store insn,
10311 reject PC in Rn. */
b99bd4ef 10312
c19d1205
ZW
10313static void
10314encode_thumb32_addr_mode (int i, bfd_boolean is_t, bfd_boolean is_d)
10315{
5be8be5d 10316 const bfd_boolean is_pc = (inst.operands[i].reg == REG_PC);
c19d1205
ZW
10317
10318 constraint (!inst.operands[i].isreg,
53365c0d 10319 _("Instruction does not support =N addresses"));
b99bd4ef 10320
c19d1205
ZW
10321 inst.instruction |= inst.operands[i].reg << 16;
10322 if (inst.operands[i].immisreg)
b99bd4ef 10323 {
5be8be5d 10324 constraint (is_pc, BAD_PC_ADDRESSING);
c19d1205
ZW
10325 constraint (is_t || is_d, _("cannot use register index with this instruction"));
10326 constraint (inst.operands[i].negative,
10327 _("Thumb does not support negative register indexing"));
10328 constraint (inst.operands[i].postind,
10329 _("Thumb does not support register post-indexing"));
10330 constraint (inst.operands[i].writeback,
10331 _("Thumb does not support register indexing with writeback"));
10332 constraint (inst.operands[i].shifted && inst.operands[i].shift_kind != SHIFT_LSL,
10333 _("Thumb supports only LSL in shifted register indexing"));
b99bd4ef 10334
f40d1643 10335 inst.instruction |= inst.operands[i].imm;
c19d1205 10336 if (inst.operands[i].shifted)
b99bd4ef 10337 {
c19d1205
ZW
10338 constraint (inst.reloc.exp.X_op != O_constant,
10339 _("expression too complex"));
9c3c69f2
PB
10340 constraint (inst.reloc.exp.X_add_number < 0
10341 || inst.reloc.exp.X_add_number > 3,
c19d1205 10342 _("shift out of range"));
9c3c69f2 10343 inst.instruction |= inst.reloc.exp.X_add_number << 4;
c19d1205
ZW
10344 }
10345 inst.reloc.type = BFD_RELOC_UNUSED;
10346 }
10347 else if (inst.operands[i].preind)
10348 {
5be8be5d 10349 constraint (is_pc && inst.operands[i].writeback, BAD_PC_WRITEBACK);
f40d1643 10350 constraint (is_t && inst.operands[i].writeback,
c19d1205 10351 _("cannot use writeback with this instruction"));
4755303e
WN
10352 constraint (is_pc && ((inst.instruction & THUMB2_LOAD_BIT) == 0),
10353 BAD_PC_ADDRESSING);
c19d1205
ZW
10354
10355 if (is_d)
10356 {
10357 inst.instruction |= 0x01000000;
10358 if (inst.operands[i].writeback)
10359 inst.instruction |= 0x00200000;
b99bd4ef 10360 }
c19d1205 10361 else
b99bd4ef 10362 {
c19d1205
ZW
10363 inst.instruction |= 0x00000c00;
10364 if (inst.operands[i].writeback)
10365 inst.instruction |= 0x00000100;
b99bd4ef 10366 }
c19d1205 10367 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
b99bd4ef 10368 }
c19d1205 10369 else if (inst.operands[i].postind)
b99bd4ef 10370 {
9c2799c2 10371 gas_assert (inst.operands[i].writeback);
c19d1205
ZW
10372 constraint (is_pc, _("cannot use post-indexing with PC-relative addressing"));
10373 constraint (is_t, _("cannot use post-indexing with this instruction"));
10374
10375 if (is_d)
10376 inst.instruction |= 0x00200000;
10377 else
10378 inst.instruction |= 0x00000900;
10379 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_IMM;
10380 }
10381 else /* unindexed - only for coprocessor */
10382 inst.error = _("instruction does not accept unindexed addressing");
10383}
10384
10385/* Table of Thumb instructions which exist in both 16- and 32-bit
10386 encodings (the latter only in post-V6T2 cores). The index is the
10387 value used in the insns table below. When there is more than one
10388 possible 16-bit encoding for the instruction, this table always
0110f2b8
PB
10389 holds variant (1).
10390 Also contains several pseudo-instructions used during relaxation. */
c19d1205 10391#define T16_32_TAB \
21d799b5
NC
10392 X(_adc, 4140, eb400000), \
10393 X(_adcs, 4140, eb500000), \
10394 X(_add, 1c00, eb000000), \
10395 X(_adds, 1c00, eb100000), \
10396 X(_addi, 0000, f1000000), \
10397 X(_addis, 0000, f1100000), \
10398 X(_add_pc,000f, f20f0000), \
10399 X(_add_sp,000d, f10d0000), \
10400 X(_adr, 000f, f20f0000), \
10401 X(_and, 4000, ea000000), \
10402 X(_ands, 4000, ea100000), \
10403 X(_asr, 1000, fa40f000), \
10404 X(_asrs, 1000, fa50f000), \
10405 X(_b, e000, f000b000), \
10406 X(_bcond, d000, f0008000), \
10407 X(_bic, 4380, ea200000), \
10408 X(_bics, 4380, ea300000), \
10409 X(_cmn, 42c0, eb100f00), \
10410 X(_cmp, 2800, ebb00f00), \
10411 X(_cpsie, b660, f3af8400), \
10412 X(_cpsid, b670, f3af8600), \
10413 X(_cpy, 4600, ea4f0000), \
10414 X(_dec_sp,80dd, f1ad0d00), \
10415 X(_eor, 4040, ea800000), \
10416 X(_eors, 4040, ea900000), \
10417 X(_inc_sp,00dd, f10d0d00), \
10418 X(_ldmia, c800, e8900000), \
10419 X(_ldr, 6800, f8500000), \
10420 X(_ldrb, 7800, f8100000), \
10421 X(_ldrh, 8800, f8300000), \
10422 X(_ldrsb, 5600, f9100000), \
10423 X(_ldrsh, 5e00, f9300000), \
10424 X(_ldr_pc,4800, f85f0000), \
10425 X(_ldr_pc2,4800, f85f0000), \
10426 X(_ldr_sp,9800, f85d0000), \
10427 X(_lsl, 0000, fa00f000), \
10428 X(_lsls, 0000, fa10f000), \
10429 X(_lsr, 0800, fa20f000), \
10430 X(_lsrs, 0800, fa30f000), \
10431 X(_mov, 2000, ea4f0000), \
10432 X(_movs, 2000, ea5f0000), \
10433 X(_mul, 4340, fb00f000), \
10434 X(_muls, 4340, ffffffff), /* no 32b muls */ \
10435 X(_mvn, 43c0, ea6f0000), \
10436 X(_mvns, 43c0, ea7f0000), \
10437 X(_neg, 4240, f1c00000), /* rsb #0 */ \
10438 X(_negs, 4240, f1d00000), /* rsbs #0 */ \
10439 X(_orr, 4300, ea400000), \
10440 X(_orrs, 4300, ea500000), \
10441 X(_pop, bc00, e8bd0000), /* ldmia sp!,... */ \
10442 X(_push, b400, e92d0000), /* stmdb sp!,... */ \
10443 X(_rev, ba00, fa90f080), \
10444 X(_rev16, ba40, fa90f090), \
10445 X(_revsh, bac0, fa90f0b0), \
10446 X(_ror, 41c0, fa60f000), \
10447 X(_rors, 41c0, fa70f000), \
10448 X(_sbc, 4180, eb600000), \
10449 X(_sbcs, 4180, eb700000), \
10450 X(_stmia, c000, e8800000), \
10451 X(_str, 6000, f8400000), \
10452 X(_strb, 7000, f8000000), \
10453 X(_strh, 8000, f8200000), \
10454 X(_str_sp,9000, f84d0000), \
10455 X(_sub, 1e00, eba00000), \
10456 X(_subs, 1e00, ebb00000), \
10457 X(_subi, 8000, f1a00000), \
10458 X(_subis, 8000, f1b00000), \
10459 X(_sxtb, b240, fa4ff080), \
10460 X(_sxth, b200, fa0ff080), \
10461 X(_tst, 4200, ea100f00), \
10462 X(_uxtb, b2c0, fa5ff080), \
10463 X(_uxth, b280, fa1ff080), \
10464 X(_nop, bf00, f3af8000), \
10465 X(_yield, bf10, f3af8001), \
10466 X(_wfe, bf20, f3af8002), \
10467 X(_wfi, bf30, f3af8003), \
53c4b28b 10468 X(_sev, bf40, f3af8004), \
74db7efb
NC
10469 X(_sevl, bf50, f3af8005), \
10470 X(_udf, de00, f7f0a000)
c19d1205
ZW
10471
10472/* To catch errors in encoding functions, the codes are all offset by
10473 0xF800, putting them in one of the 32-bit prefix ranges, ergo undefined
10474 as 16-bit instructions. */
21d799b5 10475#define X(a,b,c) T_MNEM##a
c19d1205
ZW
10476enum t16_32_codes { T16_32_OFFSET = 0xF7FF, T16_32_TAB };
10477#undef X
10478
10479#define X(a,b,c) 0x##b
10480static const unsigned short thumb_op16[] = { T16_32_TAB };
10481#define THUMB_OP16(n) (thumb_op16[(n) - (T16_32_OFFSET + 1)])
10482#undef X
10483
10484#define X(a,b,c) 0x##c
10485static const unsigned int thumb_op32[] = { T16_32_TAB };
c921be7d
NC
10486#define THUMB_OP32(n) (thumb_op32[(n) - (T16_32_OFFSET + 1)])
10487#define THUMB_SETS_FLAGS(n) (THUMB_OP32 (n) & 0x00100000)
c19d1205
ZW
10488#undef X
10489#undef T16_32_TAB
10490
10491/* Thumb instruction encoders, in alphabetical order. */
10492
92e90b6e 10493/* ADDW or SUBW. */
c921be7d 10494
92e90b6e
PB
10495static void
10496do_t_add_sub_w (void)
10497{
10498 int Rd, Rn;
10499
10500 Rd = inst.operands[0].reg;
10501 Rn = inst.operands[1].reg;
10502
539d4391
NC
10503 /* If Rn is REG_PC, this is ADR; if Rn is REG_SP, then this
10504 is the SP-{plus,minus}-immediate form of the instruction. */
10505 if (Rn == REG_SP)
10506 constraint (Rd == REG_PC, BAD_PC);
10507 else
10508 reject_bad_reg (Rd);
fdfde340 10509
92e90b6e
PB
10510 inst.instruction |= (Rn << 16) | (Rd << 8);
10511 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10512}
10513
c19d1205 10514/* Parse an add or subtract instruction. We get here with inst.instruction
33eaf5de 10515 equaling any of THUMB_OPCODE_add, adds, sub, or subs. */
c19d1205
ZW
10516
10517static void
10518do_t_add_sub (void)
10519{
10520 int Rd, Rs, Rn;
10521
10522 Rd = inst.operands[0].reg;
10523 Rs = (inst.operands[1].present
10524 ? inst.operands[1].reg /* Rd, Rs, foo */
10525 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10526
e07e6e58
NC
10527 if (Rd == REG_PC)
10528 set_it_insn_type_last ();
10529
c19d1205
ZW
10530 if (unified_syntax)
10531 {
0110f2b8
PB
10532 bfd_boolean flags;
10533 bfd_boolean narrow;
10534 int opcode;
10535
10536 flags = (inst.instruction == T_MNEM_adds
10537 || inst.instruction == T_MNEM_subs);
10538 if (flags)
e07e6e58 10539 narrow = !in_it_block ();
0110f2b8 10540 else
e07e6e58 10541 narrow = in_it_block ();
c19d1205 10542 if (!inst.operands[2].isreg)
b99bd4ef 10543 {
16805f35
PB
10544 int add;
10545
5c8ed6a4
JW
10546 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
10547 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
fdfde340 10548
16805f35
PB
10549 add = (inst.instruction == T_MNEM_add
10550 || inst.instruction == T_MNEM_adds);
0110f2b8
PB
10551 opcode = 0;
10552 if (inst.size_req != 4)
10553 {
0110f2b8 10554 /* Attempt to use a narrow opcode, with relaxation if
477330fc 10555 appropriate. */
0110f2b8
PB
10556 if (Rd == REG_SP && Rs == REG_SP && !flags)
10557 opcode = add ? T_MNEM_inc_sp : T_MNEM_dec_sp;
10558 else if (Rd <= 7 && Rs == REG_SP && add && !flags)
10559 opcode = T_MNEM_add_sp;
10560 else if (Rd <= 7 && Rs == REG_PC && add && !flags)
10561 opcode = T_MNEM_add_pc;
10562 else if (Rd <= 7 && Rs <= 7 && narrow)
10563 {
10564 if (flags)
10565 opcode = add ? T_MNEM_addis : T_MNEM_subis;
10566 else
10567 opcode = add ? T_MNEM_addi : T_MNEM_subi;
10568 }
10569 if (opcode)
10570 {
10571 inst.instruction = THUMB_OP16(opcode);
10572 inst.instruction |= (Rd << 4) | Rs;
72d98d16
MG
10573 if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
10574 || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
a9f02af8
MG
10575 {
10576 if (inst.size_req == 2)
10577 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10578 else
10579 inst.relax = opcode;
10580 }
0110f2b8
PB
10581 }
10582 else
10583 constraint (inst.size_req == 2, BAD_HIREG);
10584 }
10585 if (inst.size_req == 4
10586 || (inst.size_req != 2 && !opcode))
10587 {
a9f02af8
MG
10588 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
10589 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
10590 THUMB1_RELOC_ONLY);
efd81785
PB
10591 if (Rd == REG_PC)
10592 {
fdfde340 10593 constraint (add, BAD_PC);
efd81785
PB
10594 constraint (Rs != REG_LR || inst.instruction != T_MNEM_subs,
10595 _("only SUBS PC, LR, #const allowed"));
10596 constraint (inst.reloc.exp.X_op != O_constant,
10597 _("expression too complex"));
10598 constraint (inst.reloc.exp.X_add_number < 0
10599 || inst.reloc.exp.X_add_number > 0xff,
10600 _("immediate value out of range"));
10601 inst.instruction = T2_SUBS_PC_LR
10602 | inst.reloc.exp.X_add_number;
10603 inst.reloc.type = BFD_RELOC_UNUSED;
10604 return;
10605 }
10606 else if (Rs == REG_PC)
16805f35
PB
10607 {
10608 /* Always use addw/subw. */
10609 inst.instruction = add ? 0xf20f0000 : 0xf2af0000;
10610 inst.reloc.type = BFD_RELOC_ARM_T32_IMM12;
10611 }
10612 else
10613 {
10614 inst.instruction = THUMB_OP32 (inst.instruction);
10615 inst.instruction = (inst.instruction & 0xe1ffffff)
10616 | 0x10000000;
10617 if (flags)
10618 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10619 else
10620 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_IMM;
10621 }
dc4503c6
PB
10622 inst.instruction |= Rd << 8;
10623 inst.instruction |= Rs << 16;
0110f2b8 10624 }
b99bd4ef 10625 }
c19d1205
ZW
10626 else
10627 {
5f4cb198
NC
10628 unsigned int value = inst.reloc.exp.X_add_number;
10629 unsigned int shift = inst.operands[2].shift_kind;
10630
c19d1205
ZW
10631 Rn = inst.operands[2].reg;
10632 /* See if we can do this with a 16-bit instruction. */
10633 if (!inst.operands[2].shifted && inst.size_req != 4)
10634 {
e27ec89e
PB
10635 if (Rd > 7 || Rs > 7 || Rn > 7)
10636 narrow = FALSE;
10637
10638 if (narrow)
c19d1205 10639 {
e27ec89e
PB
10640 inst.instruction = ((inst.instruction == T_MNEM_adds
10641 || inst.instruction == T_MNEM_add)
c19d1205
ZW
10642 ? T_OPCODE_ADD_R3
10643 : T_OPCODE_SUB_R3);
10644 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
10645 return;
10646 }
b99bd4ef 10647
7e806470 10648 if (inst.instruction == T_MNEM_add && (Rd == Rs || Rd == Rn))
c19d1205 10649 {
7e806470
PB
10650 /* Thumb-1 cores (except v6-M) require at least one high
10651 register in a narrow non flag setting add. */
10652 if (Rd > 7 || Rn > 7
10653 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2)
10654 || ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_msr))
c19d1205 10655 {
7e806470
PB
10656 if (Rd == Rn)
10657 {
10658 Rn = Rs;
10659 Rs = Rd;
10660 }
c19d1205
ZW
10661 inst.instruction = T_OPCODE_ADD_HI;
10662 inst.instruction |= (Rd & 8) << 4;
10663 inst.instruction |= (Rd & 7);
10664 inst.instruction |= Rn << 3;
10665 return;
10666 }
c19d1205
ZW
10667 }
10668 }
c921be7d 10669
fdfde340 10670 constraint (Rd == REG_PC, BAD_PC);
5c8ed6a4
JW
10671 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
10672 constraint (Rd == REG_SP && Rs != REG_SP, BAD_SP);
fdfde340
JM
10673 constraint (Rs == REG_PC, BAD_PC);
10674 reject_bad_reg (Rn);
10675
c19d1205
ZW
10676 /* If we get here, it can't be done in 16 bits. */
10677 constraint (inst.operands[2].shifted && inst.operands[2].immisreg,
10678 _("shift must be constant"));
10679 inst.instruction = THUMB_OP32 (inst.instruction);
10680 inst.instruction |= Rd << 8;
10681 inst.instruction |= Rs << 16;
5f4cb198
NC
10682 constraint (Rd == REG_SP && Rs == REG_SP && value > 3,
10683 _("shift value over 3 not allowed in thumb mode"));
10684 constraint (Rd == REG_SP && Rs == REG_SP && shift != SHIFT_LSL,
10685 _("only LSL shift allowed in thumb mode"));
c19d1205
ZW
10686 encode_thumb32_shifted_operand (2);
10687 }
10688 }
10689 else
10690 {
10691 constraint (inst.instruction == T_MNEM_adds
10692 || inst.instruction == T_MNEM_subs,
10693 BAD_THUMB32);
b99bd4ef 10694
c19d1205 10695 if (!inst.operands[2].isreg) /* Rd, Rs, #imm */
b99bd4ef 10696 {
c19d1205
ZW
10697 constraint ((Rd > 7 && (Rd != REG_SP || Rs != REG_SP))
10698 || (Rs > 7 && Rs != REG_SP && Rs != REG_PC),
10699 BAD_HIREG);
10700
10701 inst.instruction = (inst.instruction == T_MNEM_add
10702 ? 0x0000 : 0x8000);
10703 inst.instruction |= (Rd << 4) | Rs;
10704 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
b99bd4ef
NC
10705 return;
10706 }
10707
c19d1205
ZW
10708 Rn = inst.operands[2].reg;
10709 constraint (inst.operands[2].shifted, _("unshifted register required"));
b99bd4ef 10710
c19d1205
ZW
10711 /* We now have Rd, Rs, and Rn set to registers. */
10712 if (Rd > 7 || Rs > 7 || Rn > 7)
b99bd4ef 10713 {
c19d1205
ZW
10714 /* Can't do this for SUB. */
10715 constraint (inst.instruction == T_MNEM_sub, BAD_HIREG);
10716 inst.instruction = T_OPCODE_ADD_HI;
10717 inst.instruction |= (Rd & 8) << 4;
10718 inst.instruction |= (Rd & 7);
10719 if (Rs == Rd)
10720 inst.instruction |= Rn << 3;
10721 else if (Rn == Rd)
10722 inst.instruction |= Rs << 3;
10723 else
10724 constraint (1, _("dest must overlap one source register"));
10725 }
10726 else
10727 {
10728 inst.instruction = (inst.instruction == T_MNEM_add
10729 ? T_OPCODE_ADD_R3 : T_OPCODE_SUB_R3);
10730 inst.instruction |= Rd | (Rs << 3) | (Rn << 6);
b99bd4ef 10731 }
b99bd4ef 10732 }
b99bd4ef
NC
10733}
10734
c19d1205
ZW
10735static void
10736do_t_adr (void)
10737{
fdfde340
JM
10738 unsigned Rd;
10739
10740 Rd = inst.operands[0].reg;
10741 reject_bad_reg (Rd);
10742
10743 if (unified_syntax && inst.size_req == 0 && Rd <= 7)
0110f2b8
PB
10744 {
10745 /* Defer to section relaxation. */
10746 inst.relax = inst.instruction;
10747 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 10748 inst.instruction |= Rd << 4;
0110f2b8
PB
10749 }
10750 else if (unified_syntax && inst.size_req != 2)
e9f89963 10751 {
0110f2b8 10752 /* Generate a 32-bit opcode. */
e9f89963 10753 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 10754 inst.instruction |= Rd << 8;
e9f89963
PB
10755 inst.reloc.type = BFD_RELOC_ARM_T32_ADD_PC12;
10756 inst.reloc.pc_rel = 1;
10757 }
10758 else
10759 {
0110f2b8 10760 /* Generate a 16-bit opcode. */
e9f89963
PB
10761 inst.instruction = THUMB_OP16 (inst.instruction);
10762 inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
10763 inst.reloc.exp.X_add_number -= 4; /* PC relative adjust. */
10764 inst.reloc.pc_rel = 1;
fdfde340 10765 inst.instruction |= Rd << 4;
e9f89963 10766 }
52a86f84
NC
10767
10768 if (inst.reloc.exp.X_op == O_symbol
10769 && inst.reloc.exp.X_add_symbol != NULL
10770 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
10771 && THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
10772 inst.reloc.exp.X_add_number += 1;
c19d1205 10773}
b99bd4ef 10774
c19d1205
ZW
10775/* Arithmetic instructions for which there is just one 16-bit
10776 instruction encoding, and it allows only two low registers.
10777 For maximal compatibility with ARM syntax, we allow three register
10778 operands even when Thumb-32 instructions are not available, as long
10779 as the first two are identical. For instance, both "sbc r0,r1" and
10780 "sbc r0,r0,r1" are allowed. */
b99bd4ef 10781static void
c19d1205 10782do_t_arit3 (void)
b99bd4ef 10783{
c19d1205 10784 int Rd, Rs, Rn;
b99bd4ef 10785
c19d1205
ZW
10786 Rd = inst.operands[0].reg;
10787 Rs = (inst.operands[1].present
10788 ? inst.operands[1].reg /* Rd, Rs, foo */
10789 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10790 Rn = inst.operands[2].reg;
b99bd4ef 10791
fdfde340
JM
10792 reject_bad_reg (Rd);
10793 reject_bad_reg (Rs);
10794 if (inst.operands[2].isreg)
10795 reject_bad_reg (Rn);
10796
c19d1205 10797 if (unified_syntax)
b99bd4ef 10798 {
c19d1205
ZW
10799 if (!inst.operands[2].isreg)
10800 {
10801 /* For an immediate, we always generate a 32-bit opcode;
10802 section relaxation will shrink it later if possible. */
10803 inst.instruction = THUMB_OP32 (inst.instruction);
10804 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10805 inst.instruction |= Rd << 8;
10806 inst.instruction |= Rs << 16;
10807 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
10808 }
10809 else
10810 {
e27ec89e
PB
10811 bfd_boolean narrow;
10812
c19d1205 10813 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10814 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10815 narrow = !in_it_block ();
e27ec89e 10816 else
e07e6e58 10817 narrow = in_it_block ();
e27ec89e
PB
10818
10819 if (Rd > 7 || Rn > 7 || Rs > 7)
10820 narrow = FALSE;
10821 if (inst.operands[2].shifted)
10822 narrow = FALSE;
10823 if (inst.size_req == 4)
10824 narrow = FALSE;
10825
10826 if (narrow
c19d1205
ZW
10827 && Rd == Rs)
10828 {
10829 inst.instruction = THUMB_OP16 (inst.instruction);
10830 inst.instruction |= Rd;
10831 inst.instruction |= Rn << 3;
10832 return;
10833 }
b99bd4ef 10834
c19d1205
ZW
10835 /* If we get here, it can't be done in 16 bits. */
10836 constraint (inst.operands[2].shifted
10837 && inst.operands[2].immisreg,
10838 _("shift must be constant"));
10839 inst.instruction = THUMB_OP32 (inst.instruction);
10840 inst.instruction |= Rd << 8;
10841 inst.instruction |= Rs << 16;
10842 encode_thumb32_shifted_operand (2);
10843 }
a737bd4d 10844 }
c19d1205 10845 else
b99bd4ef 10846 {
c19d1205
ZW
10847 /* On its face this is a lie - the instruction does set the
10848 flags. However, the only supported mnemonic in this mode
10849 says it doesn't. */
10850 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10851
c19d1205
ZW
10852 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10853 _("unshifted register required"));
10854 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10855 constraint (Rd != Rs,
10856 _("dest and source1 must be the same register"));
a737bd4d 10857
c19d1205
ZW
10858 inst.instruction = THUMB_OP16 (inst.instruction);
10859 inst.instruction |= Rd;
10860 inst.instruction |= Rn << 3;
b99bd4ef 10861 }
a737bd4d 10862}
b99bd4ef 10863
c19d1205
ZW
10864/* Similarly, but for instructions where the arithmetic operation is
10865 commutative, so we can allow either of them to be different from
10866 the destination operand in a 16-bit instruction. For instance, all
10867 three of "adc r0,r1", "adc r0,r0,r1", and "adc r0,r1,r0" are
10868 accepted. */
10869static void
10870do_t_arit3c (void)
a737bd4d 10871{
c19d1205 10872 int Rd, Rs, Rn;
b99bd4ef 10873
c19d1205
ZW
10874 Rd = inst.operands[0].reg;
10875 Rs = (inst.operands[1].present
10876 ? inst.operands[1].reg /* Rd, Rs, foo */
10877 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
10878 Rn = inst.operands[2].reg;
c921be7d 10879
fdfde340
JM
10880 reject_bad_reg (Rd);
10881 reject_bad_reg (Rs);
10882 if (inst.operands[2].isreg)
10883 reject_bad_reg (Rn);
a737bd4d 10884
c19d1205 10885 if (unified_syntax)
a737bd4d 10886 {
c19d1205 10887 if (!inst.operands[2].isreg)
b99bd4ef 10888 {
c19d1205
ZW
10889 /* For an immediate, we always generate a 32-bit opcode;
10890 section relaxation will shrink it later if possible. */
10891 inst.instruction = THUMB_OP32 (inst.instruction);
10892 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
10893 inst.instruction |= Rd << 8;
10894 inst.instruction |= Rs << 16;
10895 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 10896 }
c19d1205 10897 else
a737bd4d 10898 {
e27ec89e
PB
10899 bfd_boolean narrow;
10900
c19d1205 10901 /* See if we can do this with a 16-bit instruction. */
e27ec89e 10902 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 10903 narrow = !in_it_block ();
e27ec89e 10904 else
e07e6e58 10905 narrow = in_it_block ();
e27ec89e
PB
10906
10907 if (Rd > 7 || Rn > 7 || Rs > 7)
10908 narrow = FALSE;
10909 if (inst.operands[2].shifted)
10910 narrow = FALSE;
10911 if (inst.size_req == 4)
10912 narrow = FALSE;
10913
10914 if (narrow)
a737bd4d 10915 {
c19d1205 10916 if (Rd == Rs)
a737bd4d 10917 {
c19d1205
ZW
10918 inst.instruction = THUMB_OP16 (inst.instruction);
10919 inst.instruction |= Rd;
10920 inst.instruction |= Rn << 3;
10921 return;
a737bd4d 10922 }
c19d1205 10923 if (Rd == Rn)
a737bd4d 10924 {
c19d1205
ZW
10925 inst.instruction = THUMB_OP16 (inst.instruction);
10926 inst.instruction |= Rd;
10927 inst.instruction |= Rs << 3;
10928 return;
a737bd4d
NC
10929 }
10930 }
c19d1205
ZW
10931
10932 /* If we get here, it can't be done in 16 bits. */
10933 constraint (inst.operands[2].shifted
10934 && inst.operands[2].immisreg,
10935 _("shift must be constant"));
10936 inst.instruction = THUMB_OP32 (inst.instruction);
10937 inst.instruction |= Rd << 8;
10938 inst.instruction |= Rs << 16;
10939 encode_thumb32_shifted_operand (2);
a737bd4d 10940 }
b99bd4ef 10941 }
c19d1205
ZW
10942 else
10943 {
10944 /* On its face this is a lie - the instruction does set the
10945 flags. However, the only supported mnemonic in this mode
10946 says it doesn't. */
10947 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
a737bd4d 10948
c19d1205
ZW
10949 constraint (!inst.operands[2].isreg || inst.operands[2].shifted,
10950 _("unshifted register required"));
10951 constraint (Rd > 7 || Rs > 7 || Rn > 7, BAD_HIREG);
10952
10953 inst.instruction = THUMB_OP16 (inst.instruction);
10954 inst.instruction |= Rd;
10955
10956 if (Rd == Rs)
10957 inst.instruction |= Rn << 3;
10958 else if (Rd == Rn)
10959 inst.instruction |= Rs << 3;
10960 else
10961 constraint (1, _("dest must overlap one source register"));
10962 }
a737bd4d
NC
10963}
10964
c19d1205
ZW
10965static void
10966do_t_bfc (void)
a737bd4d 10967{
fdfde340 10968 unsigned Rd;
c19d1205
ZW
10969 unsigned int msb = inst.operands[1].imm + inst.operands[2].imm;
10970 constraint (msb > 32, _("bit-field extends past end of register"));
10971 /* The instruction encoding stores the LSB and MSB,
10972 not the LSB and width. */
fdfde340
JM
10973 Rd = inst.operands[0].reg;
10974 reject_bad_reg (Rd);
10975 inst.instruction |= Rd << 8;
c19d1205
ZW
10976 inst.instruction |= (inst.operands[1].imm & 0x1c) << 10;
10977 inst.instruction |= (inst.operands[1].imm & 0x03) << 6;
10978 inst.instruction |= msb - 1;
b99bd4ef
NC
10979}
10980
c19d1205
ZW
10981static void
10982do_t_bfi (void)
b99bd4ef 10983{
fdfde340 10984 int Rd, Rn;
c19d1205 10985 unsigned int msb;
b99bd4ef 10986
fdfde340
JM
10987 Rd = inst.operands[0].reg;
10988 reject_bad_reg (Rd);
10989
c19d1205
ZW
10990 /* #0 in second position is alternative syntax for bfc, which is
10991 the same instruction but with REG_PC in the Rm field. */
10992 if (!inst.operands[1].isreg)
fdfde340
JM
10993 Rn = REG_PC;
10994 else
10995 {
10996 Rn = inst.operands[1].reg;
10997 reject_bad_reg (Rn);
10998 }
b99bd4ef 10999
c19d1205
ZW
11000 msb = inst.operands[2].imm + inst.operands[3].imm;
11001 constraint (msb > 32, _("bit-field extends past end of register"));
11002 /* The instruction encoding stores the LSB and MSB,
11003 not the LSB and width. */
fdfde340
JM
11004 inst.instruction |= Rd << 8;
11005 inst.instruction |= Rn << 16;
c19d1205
ZW
11006 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
11007 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
11008 inst.instruction |= msb - 1;
b99bd4ef
NC
11009}
11010
c19d1205
ZW
11011static void
11012do_t_bfx (void)
b99bd4ef 11013{
fdfde340
JM
11014 unsigned Rd, Rn;
11015
11016 Rd = inst.operands[0].reg;
11017 Rn = inst.operands[1].reg;
11018
11019 reject_bad_reg (Rd);
11020 reject_bad_reg (Rn);
11021
c19d1205
ZW
11022 constraint (inst.operands[2].imm + inst.operands[3].imm > 32,
11023 _("bit-field extends past end of register"));
fdfde340
JM
11024 inst.instruction |= Rd << 8;
11025 inst.instruction |= Rn << 16;
c19d1205
ZW
11026 inst.instruction |= (inst.operands[2].imm & 0x1c) << 10;
11027 inst.instruction |= (inst.operands[2].imm & 0x03) << 6;
11028 inst.instruction |= inst.operands[3].imm - 1;
11029}
b99bd4ef 11030
c19d1205
ZW
11031/* ARM V5 Thumb BLX (argument parse)
11032 BLX <target_addr> which is BLX(1)
11033 BLX <Rm> which is BLX(2)
11034 Unfortunately, there are two different opcodes for this mnemonic.
11035 So, the insns[].value is not used, and the code here zaps values
11036 into inst.instruction.
b99bd4ef 11037
c19d1205
ZW
11038 ??? How to take advantage of the additional two bits of displacement
11039 available in Thumb32 mode? Need new relocation? */
b99bd4ef 11040
c19d1205
ZW
11041static void
11042do_t_blx (void)
11043{
e07e6e58
NC
11044 set_it_insn_type_last ();
11045
c19d1205 11046 if (inst.operands[0].isreg)
fdfde340
JM
11047 {
11048 constraint (inst.operands[0].reg == REG_PC, BAD_PC);
11049 /* We have a register, so this is BLX(2). */
11050 inst.instruction |= inst.operands[0].reg << 3;
11051 }
b99bd4ef
NC
11052 else
11053 {
c19d1205 11054 /* No register. This must be BLX(1). */
2fc8bdac 11055 inst.instruction = 0xf000e800;
0855e32b 11056 encode_branch (BFD_RELOC_THUMB_PCREL_BLX);
b99bd4ef
NC
11057 }
11058}
11059
c19d1205
ZW
11060static void
11061do_t_branch (void)
b99bd4ef 11062{
0110f2b8 11063 int opcode;
dfa9f0d5 11064 int cond;
2fe88214 11065 bfd_reloc_code_real_type reloc;
dfa9f0d5 11066
e07e6e58
NC
11067 cond = inst.cond;
11068 set_it_insn_type (IF_INSIDE_IT_LAST_INSN);
11069
11070 if (in_it_block ())
dfa9f0d5
PB
11071 {
11072 /* Conditional branches inside IT blocks are encoded as unconditional
477330fc 11073 branches. */
dfa9f0d5 11074 cond = COND_ALWAYS;
dfa9f0d5
PB
11075 }
11076 else
11077 cond = inst.cond;
11078
11079 if (cond != COND_ALWAYS)
0110f2b8
PB
11080 opcode = T_MNEM_bcond;
11081 else
11082 opcode = inst.instruction;
11083
12d6b0b7
RS
11084 if (unified_syntax
11085 && (inst.size_req == 4
10960bfb
PB
11086 || (inst.size_req != 2
11087 && (inst.operands[0].hasreloc
11088 || inst.reloc.exp.X_op == O_constant))))
c19d1205 11089 {
0110f2b8 11090 inst.instruction = THUMB_OP32(opcode);
dfa9f0d5 11091 if (cond == COND_ALWAYS)
9ae92b05 11092 reloc = BFD_RELOC_THUMB_PCREL_BRANCH25;
c19d1205
ZW
11093 else
11094 {
ff8646ee
TP
11095 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2),
11096 _("selected architecture does not support "
11097 "wide conditional branch instruction"));
11098
9c2799c2 11099 gas_assert (cond != 0xF);
dfa9f0d5 11100 inst.instruction |= cond << 22;
9ae92b05 11101 reloc = BFD_RELOC_THUMB_PCREL_BRANCH20;
c19d1205
ZW
11102 }
11103 }
b99bd4ef
NC
11104 else
11105 {
0110f2b8 11106 inst.instruction = THUMB_OP16(opcode);
dfa9f0d5 11107 if (cond == COND_ALWAYS)
9ae92b05 11108 reloc = BFD_RELOC_THUMB_PCREL_BRANCH12;
c19d1205 11109 else
b99bd4ef 11110 {
dfa9f0d5 11111 inst.instruction |= cond << 8;
9ae92b05 11112 reloc = BFD_RELOC_THUMB_PCREL_BRANCH9;
b99bd4ef 11113 }
0110f2b8
PB
11114 /* Allow section relaxation. */
11115 if (unified_syntax && inst.size_req != 2)
11116 inst.relax = opcode;
b99bd4ef 11117 }
9ae92b05 11118 inst.reloc.type = reloc;
c19d1205 11119 inst.reloc.pc_rel = 1;
b99bd4ef
NC
11120}
11121
8884b720 11122/* Actually do the work for Thumb state bkpt and hlt. The only difference
bacebabc 11123 between the two is the maximum immediate allowed - which is passed in
8884b720 11124 RANGE. */
b99bd4ef 11125static void
8884b720 11126do_t_bkpt_hlt1 (int range)
b99bd4ef 11127{
dfa9f0d5
PB
11128 constraint (inst.cond != COND_ALWAYS,
11129 _("instruction is always unconditional"));
c19d1205 11130 if (inst.operands[0].present)
b99bd4ef 11131 {
8884b720 11132 constraint (inst.operands[0].imm > range,
c19d1205
ZW
11133 _("immediate value out of range"));
11134 inst.instruction |= inst.operands[0].imm;
b99bd4ef 11135 }
8884b720
MGD
11136
11137 set_it_insn_type (NEUTRAL_IT_INSN);
11138}
11139
11140static void
11141do_t_hlt (void)
11142{
11143 do_t_bkpt_hlt1 (63);
11144}
11145
11146static void
11147do_t_bkpt (void)
11148{
11149 do_t_bkpt_hlt1 (255);
b99bd4ef
NC
11150}
11151
11152static void
c19d1205 11153do_t_branch23 (void)
b99bd4ef 11154{
e07e6e58 11155 set_it_insn_type_last ();
0855e32b 11156 encode_branch (BFD_RELOC_THUMB_PCREL_BRANCH23);
fa94de6b 11157
0855e32b
NS
11158 /* md_apply_fix blows up with 'bl foo(PLT)' where foo is defined in
11159 this file. We used to simply ignore the PLT reloc type here --
11160 the branch encoding is now needed to deal with TLSCALL relocs.
11161 So if we see a PLT reloc now, put it back to how it used to be to
11162 keep the preexisting behaviour. */
11163 if (inst.reloc.type == BFD_RELOC_ARM_PLT32)
11164 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH23;
90e4755a 11165
4343666d 11166#if defined(OBJ_COFF)
c19d1205
ZW
11167 /* If the destination of the branch is a defined symbol which does not have
11168 the THUMB_FUNC attribute, then we must be calling a function which has
11169 the (interfacearm) attribute. We look for the Thumb entry point to that
11170 function and change the branch to refer to that function instead. */
11171 if ( inst.reloc.exp.X_op == O_symbol
11172 && inst.reloc.exp.X_add_symbol != NULL
11173 && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
11174 && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
11175 inst.reloc.exp.X_add_symbol =
11176 find_real_start (inst.reloc.exp.X_add_symbol);
4343666d 11177#endif
90e4755a
RE
11178}
11179
11180static void
c19d1205 11181do_t_bx (void)
90e4755a 11182{
e07e6e58 11183 set_it_insn_type_last ();
c19d1205
ZW
11184 inst.instruction |= inst.operands[0].reg << 3;
11185 /* ??? FIXME: Should add a hacky reloc here if reg is REG_PC. The reloc
11186 should cause the alignment to be checked once it is known. This is
11187 because BX PC only works if the instruction is word aligned. */
11188}
90e4755a 11189
c19d1205
ZW
11190static void
11191do_t_bxj (void)
11192{
fdfde340 11193 int Rm;
90e4755a 11194
e07e6e58 11195 set_it_insn_type_last ();
fdfde340
JM
11196 Rm = inst.operands[0].reg;
11197 reject_bad_reg (Rm);
11198 inst.instruction |= Rm << 16;
90e4755a
RE
11199}
11200
11201static void
c19d1205 11202do_t_clz (void)
90e4755a 11203{
fdfde340
JM
11204 unsigned Rd;
11205 unsigned Rm;
11206
11207 Rd = inst.operands[0].reg;
11208 Rm = inst.operands[1].reg;
11209
11210 reject_bad_reg (Rd);
11211 reject_bad_reg (Rm);
11212
11213 inst.instruction |= Rd << 8;
11214 inst.instruction |= Rm << 16;
11215 inst.instruction |= Rm;
c19d1205 11216}
90e4755a 11217
dfa9f0d5
PB
11218static void
11219do_t_cps (void)
11220{
e07e6e58 11221 set_it_insn_type (OUTSIDE_IT_INSN);
dfa9f0d5
PB
11222 inst.instruction |= inst.operands[0].imm;
11223}
11224
c19d1205
ZW
11225static void
11226do_t_cpsi (void)
11227{
e07e6e58 11228 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205 11229 if (unified_syntax
62b3e311
PB
11230 && (inst.operands[1].present || inst.size_req == 4)
11231 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6_notm))
90e4755a 11232 {
c19d1205
ZW
11233 unsigned int imod = (inst.instruction & 0x0030) >> 4;
11234 inst.instruction = 0xf3af8000;
11235 inst.instruction |= imod << 9;
11236 inst.instruction |= inst.operands[0].imm << 5;
11237 if (inst.operands[1].present)
11238 inst.instruction |= 0x100 | inst.operands[1].imm;
90e4755a 11239 }
c19d1205 11240 else
90e4755a 11241 {
62b3e311
PB
11242 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1)
11243 && (inst.operands[0].imm & 4),
11244 _("selected processor does not support 'A' form "
11245 "of this instruction"));
11246 constraint (inst.operands[1].present || inst.size_req == 4,
c19d1205
ZW
11247 _("Thumb does not support the 2-argument "
11248 "form of this instruction"));
11249 inst.instruction |= inst.operands[0].imm;
90e4755a 11250 }
90e4755a
RE
11251}
11252
c19d1205
ZW
11253/* THUMB CPY instruction (argument parse). */
11254
90e4755a 11255static void
c19d1205 11256do_t_cpy (void)
90e4755a 11257{
c19d1205 11258 if (inst.size_req == 4)
90e4755a 11259 {
c19d1205
ZW
11260 inst.instruction = THUMB_OP32 (T_MNEM_mov);
11261 inst.instruction |= inst.operands[0].reg << 8;
11262 inst.instruction |= inst.operands[1].reg;
90e4755a 11263 }
c19d1205 11264 else
90e4755a 11265 {
c19d1205
ZW
11266 inst.instruction |= (inst.operands[0].reg & 0x8) << 4;
11267 inst.instruction |= (inst.operands[0].reg & 0x7);
11268 inst.instruction |= inst.operands[1].reg << 3;
90e4755a 11269 }
90e4755a
RE
11270}
11271
90e4755a 11272static void
25fe350b 11273do_t_cbz (void)
90e4755a 11274{
e07e6e58 11275 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
11276 constraint (inst.operands[0].reg > 7, BAD_HIREG);
11277 inst.instruction |= inst.operands[0].reg;
11278 inst.reloc.pc_rel = 1;
11279 inst.reloc.type = BFD_RELOC_THUMB_PCREL_BRANCH7;
11280}
90e4755a 11281
62b3e311
PB
11282static void
11283do_t_dbg (void)
11284{
11285 inst.instruction |= inst.operands[0].imm;
11286}
11287
11288static void
11289do_t_div (void)
11290{
fdfde340
JM
11291 unsigned Rd, Rn, Rm;
11292
11293 Rd = inst.operands[0].reg;
11294 Rn = (inst.operands[1].present
11295 ? inst.operands[1].reg : Rd);
11296 Rm = inst.operands[2].reg;
11297
11298 reject_bad_reg (Rd);
11299 reject_bad_reg (Rn);
11300 reject_bad_reg (Rm);
11301
11302 inst.instruction |= Rd << 8;
11303 inst.instruction |= Rn << 16;
11304 inst.instruction |= Rm;
62b3e311
PB
11305}
11306
c19d1205
ZW
11307static void
11308do_t_hint (void)
11309{
11310 if (unified_syntax && inst.size_req == 4)
11311 inst.instruction = THUMB_OP32 (inst.instruction);
11312 else
11313 inst.instruction = THUMB_OP16 (inst.instruction);
11314}
90e4755a 11315
c19d1205
ZW
11316static void
11317do_t_it (void)
11318{
11319 unsigned int cond = inst.operands[0].imm;
e27ec89e 11320
e07e6e58
NC
11321 set_it_insn_type (IT_INSN);
11322 now_it.mask = (inst.instruction & 0xf) | 0x10;
11323 now_it.cc = cond;
5a01bb1d 11324 now_it.warn_deprecated = FALSE;
e27ec89e
PB
11325
11326 /* If the condition is a negative condition, invert the mask. */
c19d1205 11327 if ((cond & 0x1) == 0x0)
90e4755a 11328 {
c19d1205 11329 unsigned int mask = inst.instruction & 0x000f;
90e4755a 11330
c19d1205 11331 if ((mask & 0x7) == 0)
5a01bb1d
MGD
11332 {
11333 /* No conversion needed. */
11334 now_it.block_length = 1;
11335 }
c19d1205 11336 else if ((mask & 0x3) == 0)
5a01bb1d
MGD
11337 {
11338 mask ^= 0x8;
11339 now_it.block_length = 2;
11340 }
e27ec89e 11341 else if ((mask & 0x1) == 0)
5a01bb1d
MGD
11342 {
11343 mask ^= 0xC;
11344 now_it.block_length = 3;
11345 }
c19d1205 11346 else
5a01bb1d
MGD
11347 {
11348 mask ^= 0xE;
11349 now_it.block_length = 4;
11350 }
90e4755a 11351
e27ec89e
PB
11352 inst.instruction &= 0xfff0;
11353 inst.instruction |= mask;
c19d1205 11354 }
90e4755a 11355
c19d1205
ZW
11356 inst.instruction |= cond << 4;
11357}
90e4755a 11358
3c707909
PB
11359/* Helper function used for both push/pop and ldm/stm. */
11360static void
11361encode_thumb2_ldmstm (int base, unsigned mask, bfd_boolean writeback)
11362{
11363 bfd_boolean load;
11364
11365 load = (inst.instruction & (1 << 20)) != 0;
11366
11367 if (mask & (1 << 13))
11368 inst.error = _("SP not allowed in register list");
1e5b0379
NC
11369
11370 if ((mask & (1 << base)) != 0
11371 && writeback)
11372 inst.error = _("having the base register in the register list when "
11373 "using write back is UNPREDICTABLE");
11374
3c707909
PB
11375 if (load)
11376 {
e07e6e58 11377 if (mask & (1 << 15))
477330fc
RM
11378 {
11379 if (mask & (1 << 14))
11380 inst.error = _("LR and PC should not both be in register list");
11381 else
11382 set_it_insn_type_last ();
11383 }
3c707909
PB
11384 }
11385 else
11386 {
11387 if (mask & (1 << 15))
11388 inst.error = _("PC not allowed in register list");
3c707909
PB
11389 }
11390
11391 if ((mask & (mask - 1)) == 0)
11392 {
11393 /* Single register transfers implemented as str/ldr. */
11394 if (writeback)
11395 {
11396 if (inst.instruction & (1 << 23))
11397 inst.instruction = 0x00000b04; /* ia! -> [base], #4 */
11398 else
11399 inst.instruction = 0x00000d04; /* db! -> [base, #-4]! */
11400 }
11401 else
11402 {
11403 if (inst.instruction & (1 << 23))
11404 inst.instruction = 0x00800000; /* ia -> [base] */
11405 else
11406 inst.instruction = 0x00000c04; /* db -> [base, #-4] */
11407 }
11408
11409 inst.instruction |= 0xf8400000;
11410 if (load)
11411 inst.instruction |= 0x00100000;
11412
5f4273c7 11413 mask = ffs (mask) - 1;
3c707909
PB
11414 mask <<= 12;
11415 }
11416 else if (writeback)
11417 inst.instruction |= WRITE_BACK;
11418
11419 inst.instruction |= mask;
11420 inst.instruction |= base << 16;
11421}
11422
c19d1205
ZW
11423static void
11424do_t_ldmstm (void)
11425{
11426 /* This really doesn't seem worth it. */
11427 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
11428 _("expression too complex"));
11429 constraint (inst.operands[1].writeback,
11430 _("Thumb load/store multiple does not support {reglist}^"));
90e4755a 11431
c19d1205
ZW
11432 if (unified_syntax)
11433 {
3c707909
PB
11434 bfd_boolean narrow;
11435 unsigned mask;
11436
11437 narrow = FALSE;
c19d1205
ZW
11438 /* See if we can use a 16-bit instruction. */
11439 if (inst.instruction < 0xffff /* not ldmdb/stmdb */
11440 && inst.size_req != 4
3c707909 11441 && !(inst.operands[1].imm & ~0xff))
90e4755a 11442 {
3c707909 11443 mask = 1 << inst.operands[0].reg;
90e4755a 11444
eab4f823 11445 if (inst.operands[0].reg <= 7)
90e4755a 11446 {
3c707909 11447 if (inst.instruction == T_MNEM_stmia
eab4f823
MGD
11448 ? inst.operands[0].writeback
11449 : (inst.operands[0].writeback
11450 == !(inst.operands[1].imm & mask)))
477330fc 11451 {
eab4f823
MGD
11452 if (inst.instruction == T_MNEM_stmia
11453 && (inst.operands[1].imm & mask)
11454 && (inst.operands[1].imm & (mask - 1)))
11455 as_warn (_("value stored for r%d is UNKNOWN"),
11456 inst.operands[0].reg);
3c707909 11457
eab4f823
MGD
11458 inst.instruction = THUMB_OP16 (inst.instruction);
11459 inst.instruction |= inst.operands[0].reg << 8;
11460 inst.instruction |= inst.operands[1].imm;
11461 narrow = TRUE;
11462 }
11463 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11464 {
11465 /* This means 1 register in reg list one of 3 situations:
11466 1. Instruction is stmia, but without writeback.
11467 2. lmdia without writeback, but with Rn not in
477330fc 11468 reglist.
eab4f823
MGD
11469 3. ldmia with writeback, but with Rn in reglist.
11470 Case 3 is UNPREDICTABLE behaviour, so we handle
11471 case 1 and 2 which can be converted into a 16-bit
11472 str or ldr. The SP cases are handled below. */
11473 unsigned long opcode;
11474 /* First, record an error for Case 3. */
11475 if (inst.operands[1].imm & mask
11476 && inst.operands[0].writeback)
fa94de6b 11477 inst.error =
eab4f823
MGD
11478 _("having the base register in the register list when "
11479 "using write back is UNPREDICTABLE");
fa94de6b
RM
11480
11481 opcode = (inst.instruction == T_MNEM_stmia ? T_MNEM_str
eab4f823
MGD
11482 : T_MNEM_ldr);
11483 inst.instruction = THUMB_OP16 (opcode);
11484 inst.instruction |= inst.operands[0].reg << 3;
11485 inst.instruction |= (ffs (inst.operands[1].imm)-1);
11486 narrow = TRUE;
11487 }
90e4755a 11488 }
eab4f823 11489 else if (inst.operands[0] .reg == REG_SP)
90e4755a 11490 {
eab4f823
MGD
11491 if (inst.operands[0].writeback)
11492 {
fa94de6b 11493 inst.instruction =
eab4f823 11494 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11495 ? T_MNEM_push : T_MNEM_pop);
eab4f823 11496 inst.instruction |= inst.operands[1].imm;
477330fc 11497 narrow = TRUE;
eab4f823
MGD
11498 }
11499 else if ((inst.operands[1].imm & (inst.operands[1].imm-1)) == 0)
11500 {
fa94de6b 11501 inst.instruction =
eab4f823 11502 THUMB_OP16 (inst.instruction == T_MNEM_stmia
477330fc 11503 ? T_MNEM_str_sp : T_MNEM_ldr_sp);
eab4f823 11504 inst.instruction |= ((ffs (inst.operands[1].imm)-1) << 8);
477330fc 11505 narrow = TRUE;
eab4f823 11506 }
90e4755a 11507 }
3c707909
PB
11508 }
11509
11510 if (!narrow)
11511 {
c19d1205
ZW
11512 if (inst.instruction < 0xffff)
11513 inst.instruction = THUMB_OP32 (inst.instruction);
3c707909 11514
5f4273c7
NC
11515 encode_thumb2_ldmstm (inst.operands[0].reg, inst.operands[1].imm,
11516 inst.operands[0].writeback);
90e4755a
RE
11517 }
11518 }
c19d1205 11519 else
90e4755a 11520 {
c19d1205
ZW
11521 constraint (inst.operands[0].reg > 7
11522 || (inst.operands[1].imm & ~0xff), BAD_HIREG);
1198ca51
PB
11523 constraint (inst.instruction != T_MNEM_ldmia
11524 && inst.instruction != T_MNEM_stmia,
11525 _("Thumb-2 instruction only valid in unified syntax"));
c19d1205 11526 if (inst.instruction == T_MNEM_stmia)
f03698e6 11527 {
c19d1205
ZW
11528 if (!inst.operands[0].writeback)
11529 as_warn (_("this instruction will write back the base register"));
11530 if ((inst.operands[1].imm & (1 << inst.operands[0].reg))
11531 && (inst.operands[1].imm & ((1 << inst.operands[0].reg) - 1)))
1e5b0379 11532 as_warn (_("value stored for r%d is UNKNOWN"),
c19d1205 11533 inst.operands[0].reg);
f03698e6 11534 }
c19d1205 11535 else
90e4755a 11536 {
c19d1205
ZW
11537 if (!inst.operands[0].writeback
11538 && !(inst.operands[1].imm & (1 << inst.operands[0].reg)))
11539 as_warn (_("this instruction will write back the base register"));
11540 else if (inst.operands[0].writeback
11541 && (inst.operands[1].imm & (1 << inst.operands[0].reg)))
11542 as_warn (_("this instruction will not write back the base register"));
90e4755a
RE
11543 }
11544
c19d1205
ZW
11545 inst.instruction = THUMB_OP16 (inst.instruction);
11546 inst.instruction |= inst.operands[0].reg << 8;
11547 inst.instruction |= inst.operands[1].imm;
11548 }
11549}
e28cd48c 11550
c19d1205
ZW
11551static void
11552do_t_ldrex (void)
11553{
11554 constraint (!inst.operands[1].isreg || !inst.operands[1].preind
11555 || inst.operands[1].postind || inst.operands[1].writeback
11556 || inst.operands[1].immisreg || inst.operands[1].shifted
11557 || inst.operands[1].negative,
01cfc07f 11558 BAD_ADDR_MODE);
e28cd48c 11559
5be8be5d
DG
11560 constraint ((inst.operands[1].reg == REG_PC), BAD_PC);
11561
c19d1205
ZW
11562 inst.instruction |= inst.operands[0].reg << 12;
11563 inst.instruction |= inst.operands[1].reg << 16;
11564 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
11565}
e28cd48c 11566
c19d1205
ZW
11567static void
11568do_t_ldrexd (void)
11569{
11570 if (!inst.operands[1].present)
1cac9012 11571 {
c19d1205
ZW
11572 constraint (inst.operands[0].reg == REG_LR,
11573 _("r14 not allowed as first register "
11574 "when second register is omitted"));
11575 inst.operands[1].reg = inst.operands[0].reg + 1;
b99bd4ef 11576 }
c19d1205
ZW
11577 constraint (inst.operands[0].reg == inst.operands[1].reg,
11578 BAD_OVERLAP);
b99bd4ef 11579
c19d1205
ZW
11580 inst.instruction |= inst.operands[0].reg << 12;
11581 inst.instruction |= inst.operands[1].reg << 8;
11582 inst.instruction |= inst.operands[2].reg << 16;
b99bd4ef
NC
11583}
11584
11585static void
c19d1205 11586do_t_ldst (void)
b99bd4ef 11587{
0110f2b8
PB
11588 unsigned long opcode;
11589 int Rn;
11590
e07e6e58
NC
11591 if (inst.operands[0].isreg
11592 && !inst.operands[0].preind
11593 && inst.operands[0].reg == REG_PC)
11594 set_it_insn_type_last ();
11595
0110f2b8 11596 opcode = inst.instruction;
c19d1205 11597 if (unified_syntax)
b99bd4ef 11598 {
53365c0d
PB
11599 if (!inst.operands[1].isreg)
11600 {
11601 if (opcode <= 0xffff)
11602 inst.instruction = THUMB_OP32 (opcode);
8335d6aa 11603 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
53365c0d
PB
11604 return;
11605 }
0110f2b8
PB
11606 if (inst.operands[1].isreg
11607 && !inst.operands[1].writeback
c19d1205
ZW
11608 && !inst.operands[1].shifted && !inst.operands[1].postind
11609 && !inst.operands[1].negative && inst.operands[0].reg <= 7
0110f2b8
PB
11610 && opcode <= 0xffff
11611 && inst.size_req != 4)
c19d1205 11612 {
0110f2b8
PB
11613 /* Insn may have a 16-bit form. */
11614 Rn = inst.operands[1].reg;
11615 if (inst.operands[1].immisreg)
11616 {
11617 inst.instruction = THUMB_OP16 (opcode);
5f4273c7 11618 /* [Rn, Rik] */
0110f2b8
PB
11619 if (Rn <= 7 && inst.operands[1].imm <= 7)
11620 goto op16;
5be8be5d
DG
11621 else if (opcode != T_MNEM_ldr && opcode != T_MNEM_str)
11622 reject_bad_reg (inst.operands[1].imm);
0110f2b8
PB
11623 }
11624 else if ((Rn <= 7 && opcode != T_MNEM_ldrsh
11625 && opcode != T_MNEM_ldrsb)
11626 || ((Rn == REG_PC || Rn == REG_SP) && opcode == T_MNEM_ldr)
11627 || (Rn == REG_SP && opcode == T_MNEM_str))
11628 {
11629 /* [Rn, #const] */
11630 if (Rn > 7)
11631 {
11632 if (Rn == REG_PC)
11633 {
11634 if (inst.reloc.pc_rel)
11635 opcode = T_MNEM_ldr_pc2;
11636 else
11637 opcode = T_MNEM_ldr_pc;
11638 }
11639 else
11640 {
11641 if (opcode == T_MNEM_ldr)
11642 opcode = T_MNEM_ldr_sp;
11643 else
11644 opcode = T_MNEM_str_sp;
11645 }
11646 inst.instruction = inst.operands[0].reg << 8;
11647 }
11648 else
11649 {
11650 inst.instruction = inst.operands[0].reg;
11651 inst.instruction |= inst.operands[1].reg << 3;
11652 }
11653 inst.instruction |= THUMB_OP16 (opcode);
11654 if (inst.size_req == 2)
11655 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11656 else
11657 inst.relax = opcode;
11658 return;
11659 }
c19d1205 11660 }
0110f2b8 11661 /* Definitely a 32-bit variant. */
5be8be5d 11662
8d67f500
NC
11663 /* Warning for Erratum 752419. */
11664 if (opcode == T_MNEM_ldr
11665 && inst.operands[0].reg == REG_SP
11666 && inst.operands[1].writeback == 1
11667 && !inst.operands[1].immisreg)
11668 {
11669 if (no_cpu_selected ()
11670 || (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7)
477330fc
RM
11671 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a)
11672 && !ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7r)))
8d67f500
NC
11673 as_warn (_("This instruction may be unpredictable "
11674 "if executed on M-profile cores "
11675 "with interrupts enabled."));
11676 }
11677
5be8be5d 11678 /* Do some validations regarding addressing modes. */
1be5fd2e 11679 if (inst.operands[1].immisreg)
5be8be5d
DG
11680 reject_bad_reg (inst.operands[1].imm);
11681
1be5fd2e
NC
11682 constraint (inst.operands[1].writeback == 1
11683 && inst.operands[0].reg == inst.operands[1].reg,
11684 BAD_OVERLAP);
11685
0110f2b8 11686 inst.instruction = THUMB_OP32 (opcode);
c19d1205
ZW
11687 inst.instruction |= inst.operands[0].reg << 12;
11688 encode_thumb32_addr_mode (1, /*is_t=*/FALSE, /*is_d=*/FALSE);
1be5fd2e 11689 check_ldr_r15_aligned ();
b99bd4ef
NC
11690 return;
11691 }
11692
c19d1205
ZW
11693 constraint (inst.operands[0].reg > 7, BAD_HIREG);
11694
11695 if (inst.instruction == T_MNEM_ldrsh || inst.instruction == T_MNEM_ldrsb)
b99bd4ef 11696 {
c19d1205
ZW
11697 /* Only [Rn,Rm] is acceptable. */
11698 constraint (inst.operands[1].reg > 7 || inst.operands[1].imm > 7, BAD_HIREG);
11699 constraint (!inst.operands[1].isreg || !inst.operands[1].immisreg
11700 || inst.operands[1].postind || inst.operands[1].shifted
11701 || inst.operands[1].negative,
11702 _("Thumb does not support this addressing mode"));
11703 inst.instruction = THUMB_OP16 (inst.instruction);
11704 goto op16;
b99bd4ef 11705 }
5f4273c7 11706
c19d1205
ZW
11707 inst.instruction = THUMB_OP16 (inst.instruction);
11708 if (!inst.operands[1].isreg)
8335d6aa 11709 if (move_or_literal_pool (0, CONST_THUMB, /*mode_3=*/FALSE))
c19d1205 11710 return;
b99bd4ef 11711
c19d1205
ZW
11712 constraint (!inst.operands[1].preind
11713 || inst.operands[1].shifted
11714 || inst.operands[1].writeback,
11715 _("Thumb does not support this addressing mode"));
11716 if (inst.operands[1].reg == REG_PC || inst.operands[1].reg == REG_SP)
90e4755a 11717 {
c19d1205
ZW
11718 constraint (inst.instruction & 0x0600,
11719 _("byte or halfword not valid for base register"));
11720 constraint (inst.operands[1].reg == REG_PC
11721 && !(inst.instruction & THUMB_LOAD_BIT),
11722 _("r15 based store not allowed"));
11723 constraint (inst.operands[1].immisreg,
11724 _("invalid base register for register offset"));
b99bd4ef 11725
c19d1205
ZW
11726 if (inst.operands[1].reg == REG_PC)
11727 inst.instruction = T_OPCODE_LDR_PC;
11728 else if (inst.instruction & THUMB_LOAD_BIT)
11729 inst.instruction = T_OPCODE_LDR_SP;
11730 else
11731 inst.instruction = T_OPCODE_STR_SP;
b99bd4ef 11732
c19d1205
ZW
11733 inst.instruction |= inst.operands[0].reg << 8;
11734 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11735 return;
11736 }
90e4755a 11737
c19d1205
ZW
11738 constraint (inst.operands[1].reg > 7, BAD_HIREG);
11739 if (!inst.operands[1].immisreg)
11740 {
11741 /* Immediate offset. */
11742 inst.instruction |= inst.operands[0].reg;
11743 inst.instruction |= inst.operands[1].reg << 3;
11744 inst.reloc.type = BFD_RELOC_ARM_THUMB_OFFSET;
11745 return;
11746 }
90e4755a 11747
c19d1205
ZW
11748 /* Register offset. */
11749 constraint (inst.operands[1].imm > 7, BAD_HIREG);
11750 constraint (inst.operands[1].negative,
11751 _("Thumb does not support this addressing mode"));
90e4755a 11752
c19d1205
ZW
11753 op16:
11754 switch (inst.instruction)
11755 {
11756 case T_OPCODE_STR_IW: inst.instruction = T_OPCODE_STR_RW; break;
11757 case T_OPCODE_STR_IH: inst.instruction = T_OPCODE_STR_RH; break;
11758 case T_OPCODE_STR_IB: inst.instruction = T_OPCODE_STR_RB; break;
11759 case T_OPCODE_LDR_IW: inst.instruction = T_OPCODE_LDR_RW; break;
11760 case T_OPCODE_LDR_IH: inst.instruction = T_OPCODE_LDR_RH; break;
11761 case T_OPCODE_LDR_IB: inst.instruction = T_OPCODE_LDR_RB; break;
11762 case 0x5600 /* ldrsb */:
11763 case 0x5e00 /* ldrsh */: break;
11764 default: abort ();
11765 }
90e4755a 11766
c19d1205
ZW
11767 inst.instruction |= inst.operands[0].reg;
11768 inst.instruction |= inst.operands[1].reg << 3;
11769 inst.instruction |= inst.operands[1].imm << 6;
11770}
90e4755a 11771
c19d1205
ZW
11772static void
11773do_t_ldstd (void)
11774{
11775 if (!inst.operands[1].present)
b99bd4ef 11776 {
c19d1205
ZW
11777 inst.operands[1].reg = inst.operands[0].reg + 1;
11778 constraint (inst.operands[0].reg == REG_LR,
11779 _("r14 not allowed here"));
bd340a04 11780 constraint (inst.operands[0].reg == REG_R12,
477330fc 11781 _("r12 not allowed here"));
b99bd4ef 11782 }
bd340a04
MGD
11783
11784 if (inst.operands[2].writeback
11785 && (inst.operands[0].reg == inst.operands[2].reg
11786 || inst.operands[1].reg == inst.operands[2].reg))
11787 as_warn (_("base register written back, and overlaps "
477330fc 11788 "one of transfer registers"));
bd340a04 11789
c19d1205
ZW
11790 inst.instruction |= inst.operands[0].reg << 12;
11791 inst.instruction |= inst.operands[1].reg << 8;
11792 encode_thumb32_addr_mode (2, /*is_t=*/FALSE, /*is_d=*/TRUE);
b99bd4ef
NC
11793}
11794
c19d1205
ZW
11795static void
11796do_t_ldstt (void)
11797{
11798 inst.instruction |= inst.operands[0].reg << 12;
11799 encode_thumb32_addr_mode (1, /*is_t=*/TRUE, /*is_d=*/FALSE);
11800}
a737bd4d 11801
b99bd4ef 11802static void
c19d1205 11803do_t_mla (void)
b99bd4ef 11804{
fdfde340 11805 unsigned Rd, Rn, Rm, Ra;
c921be7d 11806
fdfde340
JM
11807 Rd = inst.operands[0].reg;
11808 Rn = inst.operands[1].reg;
11809 Rm = inst.operands[2].reg;
11810 Ra = inst.operands[3].reg;
11811
11812 reject_bad_reg (Rd);
11813 reject_bad_reg (Rn);
11814 reject_bad_reg (Rm);
11815 reject_bad_reg (Ra);
11816
11817 inst.instruction |= Rd << 8;
11818 inst.instruction |= Rn << 16;
11819 inst.instruction |= Rm;
11820 inst.instruction |= Ra << 12;
c19d1205 11821}
b99bd4ef 11822
c19d1205
ZW
11823static void
11824do_t_mlal (void)
11825{
fdfde340
JM
11826 unsigned RdLo, RdHi, Rn, Rm;
11827
11828 RdLo = inst.operands[0].reg;
11829 RdHi = inst.operands[1].reg;
11830 Rn = inst.operands[2].reg;
11831 Rm = inst.operands[3].reg;
11832
11833 reject_bad_reg (RdLo);
11834 reject_bad_reg (RdHi);
11835 reject_bad_reg (Rn);
11836 reject_bad_reg (Rm);
11837
11838 inst.instruction |= RdLo << 12;
11839 inst.instruction |= RdHi << 8;
11840 inst.instruction |= Rn << 16;
11841 inst.instruction |= Rm;
c19d1205 11842}
b99bd4ef 11843
c19d1205
ZW
11844static void
11845do_t_mov_cmp (void)
11846{
fdfde340
JM
11847 unsigned Rn, Rm;
11848
11849 Rn = inst.operands[0].reg;
11850 Rm = inst.operands[1].reg;
11851
e07e6e58
NC
11852 if (Rn == REG_PC)
11853 set_it_insn_type_last ();
11854
c19d1205 11855 if (unified_syntax)
b99bd4ef 11856 {
c19d1205
ZW
11857 int r0off = (inst.instruction == T_MNEM_mov
11858 || inst.instruction == T_MNEM_movs) ? 8 : 16;
0110f2b8 11859 unsigned long opcode;
3d388997
PB
11860 bfd_boolean narrow;
11861 bfd_boolean low_regs;
11862
fdfde340 11863 low_regs = (Rn <= 7 && Rm <= 7);
0110f2b8 11864 opcode = inst.instruction;
e07e6e58 11865 if (in_it_block ())
0110f2b8 11866 narrow = opcode != T_MNEM_movs;
3d388997 11867 else
0110f2b8 11868 narrow = opcode != T_MNEM_movs || low_regs;
3d388997
PB
11869 if (inst.size_req == 4
11870 || inst.operands[1].shifted)
11871 narrow = FALSE;
11872
efd81785
PB
11873 /* MOVS PC, LR is encoded as SUBS PC, LR, #0. */
11874 if (opcode == T_MNEM_movs && inst.operands[1].isreg
11875 && !inst.operands[1].shifted
fdfde340
JM
11876 && Rn == REG_PC
11877 && Rm == REG_LR)
efd81785
PB
11878 {
11879 inst.instruction = T2_SUBS_PC_LR;
11880 return;
11881 }
11882
fdfde340
JM
11883 if (opcode == T_MNEM_cmp)
11884 {
11885 constraint (Rn == REG_PC, BAD_PC);
94206790
MM
11886 if (narrow)
11887 {
11888 /* In the Thumb-2 ISA, use of R13 as Rm is deprecated,
11889 but valid. */
11890 warn_deprecated_sp (Rm);
11891 /* R15 was documented as a valid choice for Rm in ARMv6,
11892 but as UNPREDICTABLE in ARMv7. ARM's proprietary
11893 tools reject R15, so we do too. */
11894 constraint (Rm == REG_PC, BAD_PC);
11895 }
11896 else
11897 reject_bad_reg (Rm);
fdfde340
JM
11898 }
11899 else if (opcode == T_MNEM_mov
11900 || opcode == T_MNEM_movs)
11901 {
11902 if (inst.operands[1].isreg)
11903 {
11904 if (opcode == T_MNEM_movs)
11905 {
11906 reject_bad_reg (Rn);
11907 reject_bad_reg (Rm);
11908 }
76fa04a4
MGD
11909 else if (narrow)
11910 {
11911 /* This is mov.n. */
11912 if ((Rn == REG_SP || Rn == REG_PC)
11913 && (Rm == REG_SP || Rm == REG_PC))
11914 {
5c3696f8 11915 as_tsktsk (_("Use of r%u as a source register is "
76fa04a4
MGD
11916 "deprecated when r%u is the destination "
11917 "register."), Rm, Rn);
11918 }
11919 }
11920 else
11921 {
11922 /* This is mov.w. */
11923 constraint (Rn == REG_PC, BAD_PC);
11924 constraint (Rm == REG_PC, BAD_PC);
5c8ed6a4
JW
11925 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
11926 constraint (Rn == REG_SP && Rm == REG_SP, BAD_SP);
76fa04a4 11927 }
fdfde340
JM
11928 }
11929 else
11930 reject_bad_reg (Rn);
11931 }
11932
c19d1205
ZW
11933 if (!inst.operands[1].isreg)
11934 {
0110f2b8 11935 /* Immediate operand. */
e07e6e58 11936 if (!in_it_block () && opcode == T_MNEM_mov)
0110f2b8
PB
11937 narrow = 0;
11938 if (low_regs && narrow)
11939 {
11940 inst.instruction = THUMB_OP16 (opcode);
fdfde340 11941 inst.instruction |= Rn << 8;
a9f02af8
MG
11942 if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11943 || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
72d98d16 11944 {
a9f02af8 11945 if (inst.size_req == 2)
72d98d16 11946 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
a9f02af8
MG
11947 else
11948 inst.relax = opcode;
72d98d16 11949 }
0110f2b8
PB
11950 }
11951 else
11952 {
a9f02af8
MG
11953 constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
11954 && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
11955 THUMB1_RELOC_ONLY);
11956
0110f2b8
PB
11957 inst.instruction = THUMB_OP32 (inst.instruction);
11958 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 11959 inst.instruction |= Rn << r0off;
0110f2b8
PB
11960 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
11961 }
c19d1205 11962 }
728ca7c9
PB
11963 else if (inst.operands[1].shifted && inst.operands[1].immisreg
11964 && (inst.instruction == T_MNEM_mov
11965 || inst.instruction == T_MNEM_movs))
11966 {
11967 /* Register shifts are encoded as separate shift instructions. */
11968 bfd_boolean flags = (inst.instruction == T_MNEM_movs);
11969
e07e6e58 11970 if (in_it_block ())
728ca7c9
PB
11971 narrow = !flags;
11972 else
11973 narrow = flags;
11974
11975 if (inst.size_req == 4)
11976 narrow = FALSE;
11977
11978 if (!low_regs || inst.operands[1].imm > 7)
11979 narrow = FALSE;
11980
fdfde340 11981 if (Rn != Rm)
728ca7c9
PB
11982 narrow = FALSE;
11983
11984 switch (inst.operands[1].shift_kind)
11985 {
11986 case SHIFT_LSL:
11987 opcode = narrow ? T_OPCODE_LSL_R : THUMB_OP32 (T_MNEM_lsl);
11988 break;
11989 case SHIFT_ASR:
11990 opcode = narrow ? T_OPCODE_ASR_R : THUMB_OP32 (T_MNEM_asr);
11991 break;
11992 case SHIFT_LSR:
11993 opcode = narrow ? T_OPCODE_LSR_R : THUMB_OP32 (T_MNEM_lsr);
11994 break;
11995 case SHIFT_ROR:
11996 opcode = narrow ? T_OPCODE_ROR_R : THUMB_OP32 (T_MNEM_ror);
11997 break;
11998 default:
5f4273c7 11999 abort ();
728ca7c9
PB
12000 }
12001
12002 inst.instruction = opcode;
12003 if (narrow)
12004 {
fdfde340 12005 inst.instruction |= Rn;
728ca7c9
PB
12006 inst.instruction |= inst.operands[1].imm << 3;
12007 }
12008 else
12009 {
12010 if (flags)
12011 inst.instruction |= CONDS_BIT;
12012
fdfde340
JM
12013 inst.instruction |= Rn << 8;
12014 inst.instruction |= Rm << 16;
728ca7c9
PB
12015 inst.instruction |= inst.operands[1].imm;
12016 }
12017 }
3d388997 12018 else if (!narrow)
c19d1205 12019 {
728ca7c9
PB
12020 /* Some mov with immediate shift have narrow variants.
12021 Register shifts are handled above. */
12022 if (low_regs && inst.operands[1].shifted
12023 && (inst.instruction == T_MNEM_mov
12024 || inst.instruction == T_MNEM_movs))
12025 {
e07e6e58 12026 if (in_it_block ())
728ca7c9
PB
12027 narrow = (inst.instruction == T_MNEM_mov);
12028 else
12029 narrow = (inst.instruction == T_MNEM_movs);
12030 }
12031
12032 if (narrow)
12033 {
12034 switch (inst.operands[1].shift_kind)
12035 {
12036 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
12037 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
12038 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
12039 default: narrow = FALSE; break;
12040 }
12041 }
12042
12043 if (narrow)
12044 {
fdfde340
JM
12045 inst.instruction |= Rn;
12046 inst.instruction |= Rm << 3;
728ca7c9
PB
12047 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12048 }
12049 else
12050 {
12051 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 12052 inst.instruction |= Rn << r0off;
728ca7c9
PB
12053 encode_thumb32_shifted_operand (1);
12054 }
c19d1205
ZW
12055 }
12056 else
12057 switch (inst.instruction)
12058 {
12059 case T_MNEM_mov:
837b3435 12060 /* In v4t or v5t a move of two lowregs produces unpredictable
c6400f8a
MGD
12061 results. Don't allow this. */
12062 if (low_regs)
12063 {
12064 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6),
12065 "MOV Rd, Rs with two low registers is not "
12066 "permitted on this architecture");
fa94de6b 12067 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
c6400f8a
MGD
12068 arm_ext_v6);
12069 }
12070
c19d1205 12071 inst.instruction = T_OPCODE_MOV_HR;
fdfde340
JM
12072 inst.instruction |= (Rn & 0x8) << 4;
12073 inst.instruction |= (Rn & 0x7);
12074 inst.instruction |= Rm << 3;
c19d1205 12075 break;
b99bd4ef 12076
c19d1205
ZW
12077 case T_MNEM_movs:
12078 /* We know we have low registers at this point.
941a8a52
MGD
12079 Generate LSLS Rd, Rs, #0. */
12080 inst.instruction = T_OPCODE_LSL_I;
fdfde340
JM
12081 inst.instruction |= Rn;
12082 inst.instruction |= Rm << 3;
c19d1205
ZW
12083 break;
12084
12085 case T_MNEM_cmp:
3d388997 12086 if (low_regs)
c19d1205
ZW
12087 {
12088 inst.instruction = T_OPCODE_CMP_LR;
fdfde340
JM
12089 inst.instruction |= Rn;
12090 inst.instruction |= Rm << 3;
c19d1205
ZW
12091 }
12092 else
12093 {
12094 inst.instruction = T_OPCODE_CMP_HR;
fdfde340
JM
12095 inst.instruction |= (Rn & 0x8) << 4;
12096 inst.instruction |= (Rn & 0x7);
12097 inst.instruction |= Rm << 3;
c19d1205
ZW
12098 }
12099 break;
12100 }
b99bd4ef
NC
12101 return;
12102 }
12103
c19d1205 12104 inst.instruction = THUMB_OP16 (inst.instruction);
539d4391
NC
12105
12106 /* PR 10443: Do not silently ignore shifted operands. */
12107 constraint (inst.operands[1].shifted,
12108 _("shifts in CMP/MOV instructions are only supported in unified syntax"));
12109
c19d1205 12110 if (inst.operands[1].isreg)
b99bd4ef 12111 {
fdfde340 12112 if (Rn < 8 && Rm < 8)
b99bd4ef 12113 {
c19d1205
ZW
12114 /* A move of two lowregs is encoded as ADD Rd, Rs, #0
12115 since a MOV instruction produces unpredictable results. */
12116 if (inst.instruction == T_OPCODE_MOV_I8)
12117 inst.instruction = T_OPCODE_ADD_I3;
b99bd4ef 12118 else
c19d1205 12119 inst.instruction = T_OPCODE_CMP_LR;
b99bd4ef 12120
fdfde340
JM
12121 inst.instruction |= Rn;
12122 inst.instruction |= Rm << 3;
b99bd4ef
NC
12123 }
12124 else
12125 {
c19d1205
ZW
12126 if (inst.instruction == T_OPCODE_MOV_I8)
12127 inst.instruction = T_OPCODE_MOV_HR;
12128 else
12129 inst.instruction = T_OPCODE_CMP_HR;
12130 do_t_cpy ();
b99bd4ef
NC
12131 }
12132 }
c19d1205 12133 else
b99bd4ef 12134 {
fdfde340 12135 constraint (Rn > 7,
c19d1205 12136 _("only lo regs allowed with immediate"));
fdfde340 12137 inst.instruction |= Rn << 8;
c19d1205
ZW
12138 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
12139 }
12140}
b99bd4ef 12141
c19d1205
ZW
12142static void
12143do_t_mov16 (void)
12144{
fdfde340 12145 unsigned Rd;
b6895b4f
PB
12146 bfd_vma imm;
12147 bfd_boolean top;
12148
12149 top = (inst.instruction & 0x00800000) != 0;
12150 if (inst.reloc.type == BFD_RELOC_ARM_MOVW)
12151 {
33eaf5de 12152 constraint (top, _(":lower16: not allowed in this instruction"));
b6895b4f
PB
12153 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVW;
12154 }
12155 else if (inst.reloc.type == BFD_RELOC_ARM_MOVT)
12156 {
33eaf5de 12157 constraint (!top, _(":upper16: not allowed in this instruction"));
b6895b4f
PB
12158 inst.reloc.type = BFD_RELOC_ARM_THUMB_MOVT;
12159 }
12160
fdfde340
JM
12161 Rd = inst.operands[0].reg;
12162 reject_bad_reg (Rd);
12163
12164 inst.instruction |= Rd << 8;
b6895b4f
PB
12165 if (inst.reloc.type == BFD_RELOC_UNUSED)
12166 {
12167 imm = inst.reloc.exp.X_add_number;
12168 inst.instruction |= (imm & 0xf000) << 4;
12169 inst.instruction |= (imm & 0x0800) << 15;
12170 inst.instruction |= (imm & 0x0700) << 4;
12171 inst.instruction |= (imm & 0x00ff);
12172 }
c19d1205 12173}
b99bd4ef 12174
c19d1205
ZW
12175static void
12176do_t_mvn_tst (void)
12177{
fdfde340 12178 unsigned Rn, Rm;
c921be7d 12179
fdfde340
JM
12180 Rn = inst.operands[0].reg;
12181 Rm = inst.operands[1].reg;
12182
12183 if (inst.instruction == T_MNEM_cmp
12184 || inst.instruction == T_MNEM_cmn)
12185 constraint (Rn == REG_PC, BAD_PC);
12186 else
12187 reject_bad_reg (Rn);
12188 reject_bad_reg (Rm);
12189
c19d1205
ZW
12190 if (unified_syntax)
12191 {
12192 int r0off = (inst.instruction == T_MNEM_mvn
12193 || inst.instruction == T_MNEM_mvns) ? 8 : 16;
3d388997
PB
12194 bfd_boolean narrow;
12195
12196 if (inst.size_req == 4
12197 || inst.instruction > 0xffff
12198 || inst.operands[1].shifted
fdfde340 12199 || Rn > 7 || Rm > 7)
3d388997 12200 narrow = FALSE;
fe8b4cc3
KT
12201 else if (inst.instruction == T_MNEM_cmn
12202 || inst.instruction == T_MNEM_tst)
3d388997
PB
12203 narrow = TRUE;
12204 else if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12205 narrow = !in_it_block ();
3d388997 12206 else
e07e6e58 12207 narrow = in_it_block ();
3d388997 12208
c19d1205 12209 if (!inst.operands[1].isreg)
b99bd4ef 12210 {
c19d1205
ZW
12211 /* For an immediate, we always generate a 32-bit opcode;
12212 section relaxation will shrink it later if possible. */
12213 if (inst.instruction < 0xffff)
12214 inst.instruction = THUMB_OP32 (inst.instruction);
12215 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
fdfde340 12216 inst.instruction |= Rn << r0off;
c19d1205 12217 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
b99bd4ef 12218 }
c19d1205 12219 else
b99bd4ef 12220 {
c19d1205 12221 /* See if we can do this with a 16-bit instruction. */
3d388997 12222 if (narrow)
b99bd4ef 12223 {
c19d1205 12224 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12225 inst.instruction |= Rn;
12226 inst.instruction |= Rm << 3;
b99bd4ef 12227 }
c19d1205 12228 else
b99bd4ef 12229 {
c19d1205
ZW
12230 constraint (inst.operands[1].shifted
12231 && inst.operands[1].immisreg,
12232 _("shift must be constant"));
12233 if (inst.instruction < 0xffff)
12234 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340 12235 inst.instruction |= Rn << r0off;
c19d1205 12236 encode_thumb32_shifted_operand (1);
b99bd4ef 12237 }
b99bd4ef
NC
12238 }
12239 }
12240 else
12241 {
c19d1205
ZW
12242 constraint (inst.instruction > 0xffff
12243 || inst.instruction == T_MNEM_mvns, BAD_THUMB32);
12244 constraint (!inst.operands[1].isreg || inst.operands[1].shifted,
12245 _("unshifted register required"));
fdfde340 12246 constraint (Rn > 7 || Rm > 7,
c19d1205 12247 BAD_HIREG);
b99bd4ef 12248
c19d1205 12249 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12250 inst.instruction |= Rn;
12251 inst.instruction |= Rm << 3;
b99bd4ef 12252 }
b99bd4ef
NC
12253}
12254
b05fe5cf 12255static void
c19d1205 12256do_t_mrs (void)
b05fe5cf 12257{
fdfde340 12258 unsigned Rd;
037e8744
JB
12259
12260 if (do_vfp_nsyn_mrs () == SUCCESS)
12261 return;
12262
90ec0d68
MGD
12263 Rd = inst.operands[0].reg;
12264 reject_bad_reg (Rd);
12265 inst.instruction |= Rd << 8;
12266
12267 if (inst.operands[1].isreg)
62b3e311 12268 {
90ec0d68
MGD
12269 unsigned br = inst.operands[1].reg;
12270 if (((br & 0x200) == 0) && ((br & 0xf000) != 0xf000))
12271 as_bad (_("bad register for mrs"));
12272
12273 inst.instruction |= br & (0xf << 16);
12274 inst.instruction |= (br & 0x300) >> 4;
12275 inst.instruction |= (br & SPSR_BIT) >> 2;
62b3e311
PB
12276 }
12277 else
12278 {
90ec0d68 12279 int flags = inst.operands[1].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
5f4273c7 12280
d2cd1205 12281 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
1a43faaf
NC
12282 {
12283 /* PR gas/12698: The constraint is only applied for m_profile.
12284 If the user has specified -march=all, we want to ignore it as
12285 we are building for any CPU type, including non-m variants. */
823d2571
TG
12286 bfd_boolean m_profile =
12287 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf
NC
12288 constraint ((flags != 0) && m_profile, _("selected processor does "
12289 "not support requested special purpose register"));
12290 }
90ec0d68 12291 else
d2cd1205
JB
12292 /* mrs only accepts APSR/CPSR/SPSR/CPSR_all/SPSR_all (for non-M profile
12293 devices). */
12294 constraint ((flags & ~SPSR_BIT) != (PSR_c|PSR_f),
12295 _("'APSR', 'CPSR' or 'SPSR' expected"));
fdfde340 12296
90ec0d68
MGD
12297 inst.instruction |= (flags & SPSR_BIT) >> 2;
12298 inst.instruction |= inst.operands[1].imm & 0xff;
12299 inst.instruction |= 0xf0000;
12300 }
c19d1205 12301}
b05fe5cf 12302
c19d1205
ZW
12303static void
12304do_t_msr (void)
12305{
62b3e311 12306 int flags;
fdfde340 12307 unsigned Rn;
62b3e311 12308
037e8744
JB
12309 if (do_vfp_nsyn_msr () == SUCCESS)
12310 return;
12311
c19d1205
ZW
12312 constraint (!inst.operands[1].isreg,
12313 _("Thumb encoding does not support an immediate here"));
90ec0d68
MGD
12314
12315 if (inst.operands[0].isreg)
12316 flags = (int)(inst.operands[0].reg);
12317 else
12318 flags = inst.operands[0].imm;
12319
d2cd1205 12320 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_m))
62b3e311 12321 {
d2cd1205
JB
12322 int bits = inst.operands[0].imm & (PSR_c|PSR_x|PSR_s|PSR_f|SPSR_BIT);
12323
1a43faaf 12324 /* PR gas/12698: The constraint is only applied for m_profile.
477330fc
RM
12325 If the user has specified -march=all, we want to ignore it as
12326 we are building for any CPU type, including non-m variants. */
823d2571
TG
12327 bfd_boolean m_profile =
12328 !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
1a43faaf 12329 constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
477330fc
RM
12330 && (bits & ~(PSR_s | PSR_f)) != 0)
12331 || (!ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
12332 && bits != PSR_f)) && m_profile,
12333 _("selected processor does not support requested special "
12334 "purpose register"));
62b3e311
PB
12335 }
12336 else
d2cd1205
JB
12337 constraint ((flags & 0xff) != 0, _("selected processor does not support "
12338 "requested special purpose register"));
c921be7d 12339
fdfde340
JM
12340 Rn = inst.operands[1].reg;
12341 reject_bad_reg (Rn);
12342
62b3e311 12343 inst.instruction |= (flags & SPSR_BIT) >> 2;
90ec0d68
MGD
12344 inst.instruction |= (flags & 0xf0000) >> 8;
12345 inst.instruction |= (flags & 0x300) >> 4;
62b3e311 12346 inst.instruction |= (flags & 0xff);
fdfde340 12347 inst.instruction |= Rn << 16;
c19d1205 12348}
b05fe5cf 12349
c19d1205
ZW
12350static void
12351do_t_mul (void)
12352{
17828f45 12353 bfd_boolean narrow;
fdfde340 12354 unsigned Rd, Rn, Rm;
17828f45 12355
c19d1205
ZW
12356 if (!inst.operands[2].present)
12357 inst.operands[2].reg = inst.operands[0].reg;
b05fe5cf 12358
fdfde340
JM
12359 Rd = inst.operands[0].reg;
12360 Rn = inst.operands[1].reg;
12361 Rm = inst.operands[2].reg;
12362
17828f45 12363 if (unified_syntax)
b05fe5cf 12364 {
17828f45 12365 if (inst.size_req == 4
fdfde340
JM
12366 || (Rd != Rn
12367 && Rd != Rm)
12368 || Rn > 7
12369 || Rm > 7)
17828f45
JM
12370 narrow = FALSE;
12371 else if (inst.instruction == T_MNEM_muls)
e07e6e58 12372 narrow = !in_it_block ();
17828f45 12373 else
e07e6e58 12374 narrow = in_it_block ();
b05fe5cf 12375 }
c19d1205 12376 else
b05fe5cf 12377 {
17828f45 12378 constraint (inst.instruction == T_MNEM_muls, BAD_THUMB32);
fdfde340 12379 constraint (Rn > 7 || Rm > 7,
c19d1205 12380 BAD_HIREG);
17828f45
JM
12381 narrow = TRUE;
12382 }
b05fe5cf 12383
17828f45
JM
12384 if (narrow)
12385 {
12386 /* 16-bit MULS/Conditional MUL. */
c19d1205 12387 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340 12388 inst.instruction |= Rd;
b05fe5cf 12389
fdfde340
JM
12390 if (Rd == Rn)
12391 inst.instruction |= Rm << 3;
12392 else if (Rd == Rm)
12393 inst.instruction |= Rn << 3;
c19d1205
ZW
12394 else
12395 constraint (1, _("dest must overlap one source register"));
12396 }
17828f45
JM
12397 else
12398 {
e07e6e58
NC
12399 constraint (inst.instruction != T_MNEM_mul,
12400 _("Thumb-2 MUL must not set flags"));
17828f45
JM
12401 /* 32-bit MUL. */
12402 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12403 inst.instruction |= Rd << 8;
12404 inst.instruction |= Rn << 16;
12405 inst.instruction |= Rm << 0;
12406
12407 reject_bad_reg (Rd);
12408 reject_bad_reg (Rn);
12409 reject_bad_reg (Rm);
17828f45 12410 }
c19d1205 12411}
b05fe5cf 12412
c19d1205
ZW
12413static void
12414do_t_mull (void)
12415{
fdfde340 12416 unsigned RdLo, RdHi, Rn, Rm;
b05fe5cf 12417
fdfde340
JM
12418 RdLo = inst.operands[0].reg;
12419 RdHi = inst.operands[1].reg;
12420 Rn = inst.operands[2].reg;
12421 Rm = inst.operands[3].reg;
12422
12423 reject_bad_reg (RdLo);
12424 reject_bad_reg (RdHi);
12425 reject_bad_reg (Rn);
12426 reject_bad_reg (Rm);
12427
12428 inst.instruction |= RdLo << 12;
12429 inst.instruction |= RdHi << 8;
12430 inst.instruction |= Rn << 16;
12431 inst.instruction |= Rm;
12432
12433 if (RdLo == RdHi)
c19d1205
ZW
12434 as_tsktsk (_("rdhi and rdlo must be different"));
12435}
b05fe5cf 12436
c19d1205
ZW
12437static void
12438do_t_nop (void)
12439{
e07e6e58
NC
12440 set_it_insn_type (NEUTRAL_IT_INSN);
12441
c19d1205
ZW
12442 if (unified_syntax)
12443 {
12444 if (inst.size_req == 4 || inst.operands[0].imm > 15)
b05fe5cf 12445 {
c19d1205
ZW
12446 inst.instruction = THUMB_OP32 (inst.instruction);
12447 inst.instruction |= inst.operands[0].imm;
12448 }
12449 else
12450 {
bc2d1808
NC
12451 /* PR9722: Check for Thumb2 availability before
12452 generating a thumb2 nop instruction. */
afa62d5e 12453 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6t2))
bc2d1808
NC
12454 {
12455 inst.instruction = THUMB_OP16 (inst.instruction);
12456 inst.instruction |= inst.operands[0].imm << 4;
12457 }
12458 else
12459 inst.instruction = 0x46c0;
c19d1205
ZW
12460 }
12461 }
12462 else
12463 {
12464 constraint (inst.operands[0].present,
12465 _("Thumb does not support NOP with hints"));
12466 inst.instruction = 0x46c0;
12467 }
12468}
b05fe5cf 12469
c19d1205
ZW
12470static void
12471do_t_neg (void)
12472{
12473 if (unified_syntax)
12474 {
3d388997
PB
12475 bfd_boolean narrow;
12476
12477 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12478 narrow = !in_it_block ();
3d388997 12479 else
e07e6e58 12480 narrow = in_it_block ();
3d388997
PB
12481 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12482 narrow = FALSE;
12483 if (inst.size_req == 4)
12484 narrow = FALSE;
12485
12486 if (!narrow)
c19d1205
ZW
12487 {
12488 inst.instruction = THUMB_OP32 (inst.instruction);
12489 inst.instruction |= inst.operands[0].reg << 8;
12490 inst.instruction |= inst.operands[1].reg << 16;
b05fe5cf
ZW
12491 }
12492 else
12493 {
c19d1205
ZW
12494 inst.instruction = THUMB_OP16 (inst.instruction);
12495 inst.instruction |= inst.operands[0].reg;
12496 inst.instruction |= inst.operands[1].reg << 3;
b05fe5cf
ZW
12497 }
12498 }
12499 else
12500 {
c19d1205
ZW
12501 constraint (inst.operands[0].reg > 7 || inst.operands[1].reg > 7,
12502 BAD_HIREG);
12503 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
12504
12505 inst.instruction = THUMB_OP16 (inst.instruction);
12506 inst.instruction |= inst.operands[0].reg;
12507 inst.instruction |= inst.operands[1].reg << 3;
12508 }
12509}
12510
1c444d06
JM
12511static void
12512do_t_orn (void)
12513{
12514 unsigned Rd, Rn;
12515
12516 Rd = inst.operands[0].reg;
12517 Rn = inst.operands[1].present ? inst.operands[1].reg : Rd;
12518
fdfde340
JM
12519 reject_bad_reg (Rd);
12520 /* Rn == REG_SP is unpredictable; Rn == REG_PC is MVN. */
12521 reject_bad_reg (Rn);
12522
1c444d06
JM
12523 inst.instruction |= Rd << 8;
12524 inst.instruction |= Rn << 16;
12525
12526 if (!inst.operands[2].isreg)
12527 {
12528 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12529 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12530 }
12531 else
12532 {
12533 unsigned Rm;
12534
12535 Rm = inst.operands[2].reg;
fdfde340 12536 reject_bad_reg (Rm);
1c444d06
JM
12537
12538 constraint (inst.operands[2].shifted
12539 && inst.operands[2].immisreg,
12540 _("shift must be constant"));
12541 encode_thumb32_shifted_operand (2);
12542 }
12543}
12544
c19d1205
ZW
12545static void
12546do_t_pkhbt (void)
12547{
fdfde340
JM
12548 unsigned Rd, Rn, Rm;
12549
12550 Rd = inst.operands[0].reg;
12551 Rn = inst.operands[1].reg;
12552 Rm = inst.operands[2].reg;
12553
12554 reject_bad_reg (Rd);
12555 reject_bad_reg (Rn);
12556 reject_bad_reg (Rm);
12557
12558 inst.instruction |= Rd << 8;
12559 inst.instruction |= Rn << 16;
12560 inst.instruction |= Rm;
c19d1205
ZW
12561 if (inst.operands[3].present)
12562 {
12563 unsigned int val = inst.reloc.exp.X_add_number;
12564 constraint (inst.reloc.exp.X_op != O_constant,
12565 _("expression too complex"));
12566 inst.instruction |= (val & 0x1c) << 10;
12567 inst.instruction |= (val & 0x03) << 6;
b05fe5cf 12568 }
c19d1205 12569}
b05fe5cf 12570
c19d1205
ZW
12571static void
12572do_t_pkhtb (void)
12573{
12574 if (!inst.operands[3].present)
1ef52f49
NC
12575 {
12576 unsigned Rtmp;
12577
12578 inst.instruction &= ~0x00000020;
12579
12580 /* PR 10168. Swap the Rm and Rn registers. */
12581 Rtmp = inst.operands[1].reg;
12582 inst.operands[1].reg = inst.operands[2].reg;
12583 inst.operands[2].reg = Rtmp;
12584 }
c19d1205 12585 do_t_pkhbt ();
b05fe5cf
ZW
12586}
12587
c19d1205
ZW
12588static void
12589do_t_pld (void)
12590{
fdfde340
JM
12591 if (inst.operands[0].immisreg)
12592 reject_bad_reg (inst.operands[0].imm);
12593
c19d1205
ZW
12594 encode_thumb32_addr_mode (0, /*is_t=*/FALSE, /*is_d=*/FALSE);
12595}
b05fe5cf 12596
c19d1205
ZW
12597static void
12598do_t_push_pop (void)
b99bd4ef 12599{
e9f89963 12600 unsigned mask;
5f4273c7 12601
c19d1205
ZW
12602 constraint (inst.operands[0].writeback,
12603 _("push/pop do not support {reglist}^"));
12604 constraint (inst.reloc.type != BFD_RELOC_UNUSED,
12605 _("expression too complex"));
b99bd4ef 12606
e9f89963 12607 mask = inst.operands[0].imm;
d3bfe16e 12608 if (inst.size_req != 4 && (mask & ~0xff) == 0)
3c707909 12609 inst.instruction = THUMB_OP16 (inst.instruction) | mask;
d3bfe16e 12610 else if (inst.size_req != 4
c6025a80 12611 && (mask & ~0xff) == (1U << (inst.instruction == T_MNEM_push
d3bfe16e 12612 ? REG_LR : REG_PC)))
b99bd4ef 12613 {
c19d1205
ZW
12614 inst.instruction = THUMB_OP16 (inst.instruction);
12615 inst.instruction |= THUMB_PP_PC_LR;
3c707909 12616 inst.instruction |= mask & 0xff;
c19d1205
ZW
12617 }
12618 else if (unified_syntax)
12619 {
3c707909 12620 inst.instruction = THUMB_OP32 (inst.instruction);
5f4273c7 12621 encode_thumb2_ldmstm (13, mask, TRUE);
c19d1205
ZW
12622 }
12623 else
12624 {
12625 inst.error = _("invalid register list to push/pop instruction");
12626 return;
12627 }
c19d1205 12628}
b99bd4ef 12629
c19d1205
ZW
12630static void
12631do_t_rbit (void)
12632{
fdfde340
JM
12633 unsigned Rd, Rm;
12634
12635 Rd = inst.operands[0].reg;
12636 Rm = inst.operands[1].reg;
12637
12638 reject_bad_reg (Rd);
12639 reject_bad_reg (Rm);
12640
12641 inst.instruction |= Rd << 8;
12642 inst.instruction |= Rm << 16;
12643 inst.instruction |= Rm;
c19d1205 12644}
b99bd4ef 12645
c19d1205
ZW
12646static void
12647do_t_rev (void)
12648{
fdfde340
JM
12649 unsigned Rd, Rm;
12650
12651 Rd = inst.operands[0].reg;
12652 Rm = inst.operands[1].reg;
12653
12654 reject_bad_reg (Rd);
12655 reject_bad_reg (Rm);
12656
12657 if (Rd <= 7 && Rm <= 7
c19d1205
ZW
12658 && inst.size_req != 4)
12659 {
12660 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
12661 inst.instruction |= Rd;
12662 inst.instruction |= Rm << 3;
c19d1205
ZW
12663 }
12664 else if (unified_syntax)
12665 {
12666 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
12667 inst.instruction |= Rd << 8;
12668 inst.instruction |= Rm << 16;
12669 inst.instruction |= Rm;
c19d1205
ZW
12670 }
12671 else
12672 inst.error = BAD_HIREG;
12673}
b99bd4ef 12674
1c444d06
JM
12675static void
12676do_t_rrx (void)
12677{
12678 unsigned Rd, Rm;
12679
12680 Rd = inst.operands[0].reg;
12681 Rm = inst.operands[1].reg;
12682
fdfde340
JM
12683 reject_bad_reg (Rd);
12684 reject_bad_reg (Rm);
c921be7d 12685
1c444d06
JM
12686 inst.instruction |= Rd << 8;
12687 inst.instruction |= Rm;
12688}
12689
c19d1205
ZW
12690static void
12691do_t_rsb (void)
12692{
fdfde340 12693 unsigned Rd, Rs;
b99bd4ef 12694
c19d1205
ZW
12695 Rd = inst.operands[0].reg;
12696 Rs = (inst.operands[1].present
12697 ? inst.operands[1].reg /* Rd, Rs, foo */
12698 : inst.operands[0].reg); /* Rd, foo -> Rd, Rd, foo */
b99bd4ef 12699
fdfde340
JM
12700 reject_bad_reg (Rd);
12701 reject_bad_reg (Rs);
12702 if (inst.operands[2].isreg)
12703 reject_bad_reg (inst.operands[2].reg);
12704
c19d1205
ZW
12705 inst.instruction |= Rd << 8;
12706 inst.instruction |= Rs << 16;
12707 if (!inst.operands[2].isreg)
12708 {
026d3abb
PB
12709 bfd_boolean narrow;
12710
12711 if ((inst.instruction & 0x00100000) != 0)
e07e6e58 12712 narrow = !in_it_block ();
026d3abb 12713 else
e07e6e58 12714 narrow = in_it_block ();
026d3abb
PB
12715
12716 if (Rd > 7 || Rs > 7)
12717 narrow = FALSE;
12718
12719 if (inst.size_req == 4 || !unified_syntax)
12720 narrow = FALSE;
12721
12722 if (inst.reloc.exp.X_op != O_constant
12723 || inst.reloc.exp.X_add_number != 0)
12724 narrow = FALSE;
12725
12726 /* Turn rsb #0 into 16-bit neg. We should probably do this via
477330fc 12727 relaxation, but it doesn't seem worth the hassle. */
026d3abb
PB
12728 if (narrow)
12729 {
12730 inst.reloc.type = BFD_RELOC_UNUSED;
12731 inst.instruction = THUMB_OP16 (T_MNEM_negs);
12732 inst.instruction |= Rs << 3;
12733 inst.instruction |= Rd;
12734 }
12735 else
12736 {
12737 inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
12738 inst.reloc.type = BFD_RELOC_ARM_T32_IMMEDIATE;
12739 }
c19d1205
ZW
12740 }
12741 else
12742 encode_thumb32_shifted_operand (2);
12743}
b99bd4ef 12744
c19d1205
ZW
12745static void
12746do_t_setend (void)
12747{
12e37cbc
MGD
12748 if (warn_on_deprecated
12749 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
5c3696f8 12750 as_tsktsk (_("setend use is deprecated for ARMv8"));
12e37cbc 12751
e07e6e58 12752 set_it_insn_type (OUTSIDE_IT_INSN);
c19d1205
ZW
12753 if (inst.operands[0].imm)
12754 inst.instruction |= 0x8;
12755}
b99bd4ef 12756
c19d1205
ZW
12757static void
12758do_t_shift (void)
12759{
12760 if (!inst.operands[1].present)
12761 inst.operands[1].reg = inst.operands[0].reg;
12762
12763 if (unified_syntax)
12764 {
3d388997
PB
12765 bfd_boolean narrow;
12766 int shift_kind;
12767
12768 switch (inst.instruction)
12769 {
12770 case T_MNEM_asr:
12771 case T_MNEM_asrs: shift_kind = SHIFT_ASR; break;
12772 case T_MNEM_lsl:
12773 case T_MNEM_lsls: shift_kind = SHIFT_LSL; break;
12774 case T_MNEM_lsr:
12775 case T_MNEM_lsrs: shift_kind = SHIFT_LSR; break;
12776 case T_MNEM_ror:
12777 case T_MNEM_rors: shift_kind = SHIFT_ROR; break;
12778 default: abort ();
12779 }
12780
12781 if (THUMB_SETS_FLAGS (inst.instruction))
e07e6e58 12782 narrow = !in_it_block ();
3d388997 12783 else
e07e6e58 12784 narrow = in_it_block ();
3d388997
PB
12785 if (inst.operands[0].reg > 7 || inst.operands[1].reg > 7)
12786 narrow = FALSE;
12787 if (!inst.operands[2].isreg && shift_kind == SHIFT_ROR)
12788 narrow = FALSE;
12789 if (inst.operands[2].isreg
12790 && (inst.operands[1].reg != inst.operands[0].reg
12791 || inst.operands[2].reg > 7))
12792 narrow = FALSE;
12793 if (inst.size_req == 4)
12794 narrow = FALSE;
12795
fdfde340
JM
12796 reject_bad_reg (inst.operands[0].reg);
12797 reject_bad_reg (inst.operands[1].reg);
c921be7d 12798
3d388997 12799 if (!narrow)
c19d1205
ZW
12800 {
12801 if (inst.operands[2].isreg)
b99bd4ef 12802 {
fdfde340 12803 reject_bad_reg (inst.operands[2].reg);
c19d1205
ZW
12804 inst.instruction = THUMB_OP32 (inst.instruction);
12805 inst.instruction |= inst.operands[0].reg << 8;
12806 inst.instruction |= inst.operands[1].reg << 16;
12807 inst.instruction |= inst.operands[2].reg;
94342ec3
NC
12808
12809 /* PR 12854: Error on extraneous shifts. */
12810 constraint (inst.operands[2].shifted,
12811 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12812 }
12813 else
12814 {
12815 inst.operands[1].shifted = 1;
3d388997 12816 inst.operands[1].shift_kind = shift_kind;
c19d1205
ZW
12817 inst.instruction = THUMB_OP32 (THUMB_SETS_FLAGS (inst.instruction)
12818 ? T_MNEM_movs : T_MNEM_mov);
12819 inst.instruction |= inst.operands[0].reg << 8;
12820 encode_thumb32_shifted_operand (1);
12821 /* Prevent the incorrect generation of an ARM_IMMEDIATE fixup. */
12822 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef
NC
12823 }
12824 }
12825 else
12826 {
c19d1205 12827 if (inst.operands[2].isreg)
b99bd4ef 12828 {
3d388997 12829 switch (shift_kind)
b99bd4ef 12830 {
3d388997
PB
12831 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_R; break;
12832 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_R; break;
12833 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_R; break;
12834 case SHIFT_ROR: inst.instruction = T_OPCODE_ROR_R; break;
c19d1205 12835 default: abort ();
b99bd4ef 12836 }
5f4273c7 12837
c19d1205
ZW
12838 inst.instruction |= inst.operands[0].reg;
12839 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12840
12841 /* PR 12854: Error on extraneous shifts. */
12842 constraint (inst.operands[2].shifted,
12843 _("extraneous shift as part of operand to shift insn"));
b99bd4ef
NC
12844 }
12845 else
12846 {
3d388997 12847 switch (shift_kind)
b99bd4ef 12848 {
3d388997
PB
12849 case SHIFT_ASR: inst.instruction = T_OPCODE_ASR_I; break;
12850 case SHIFT_LSL: inst.instruction = T_OPCODE_LSL_I; break;
12851 case SHIFT_LSR: inst.instruction = T_OPCODE_LSR_I; break;
c19d1205 12852 default: abort ();
b99bd4ef 12853 }
c19d1205
ZW
12854 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12855 inst.instruction |= inst.operands[0].reg;
12856 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12857 }
12858 }
c19d1205
ZW
12859 }
12860 else
12861 {
12862 constraint (inst.operands[0].reg > 7
12863 || inst.operands[1].reg > 7, BAD_HIREG);
12864 constraint (THUMB_SETS_FLAGS (inst.instruction), BAD_THUMB32);
b99bd4ef 12865
c19d1205
ZW
12866 if (inst.operands[2].isreg) /* Rd, {Rs,} Rn */
12867 {
12868 constraint (inst.operands[2].reg > 7, BAD_HIREG);
12869 constraint (inst.operands[0].reg != inst.operands[1].reg,
12870 _("source1 and dest must be same register"));
b99bd4ef 12871
c19d1205
ZW
12872 switch (inst.instruction)
12873 {
12874 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_R; break;
12875 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_R; break;
12876 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_R; break;
12877 case T_MNEM_ror: inst.instruction = T_OPCODE_ROR_R; break;
12878 default: abort ();
12879 }
5f4273c7 12880
c19d1205
ZW
12881 inst.instruction |= inst.operands[0].reg;
12882 inst.instruction |= inst.operands[2].reg << 3;
af199b06
NC
12883
12884 /* PR 12854: Error on extraneous shifts. */
12885 constraint (inst.operands[2].shifted,
12886 _("extraneous shift as part of operand to shift insn"));
c19d1205
ZW
12887 }
12888 else
b99bd4ef 12889 {
c19d1205
ZW
12890 switch (inst.instruction)
12891 {
12892 case T_MNEM_asr: inst.instruction = T_OPCODE_ASR_I; break;
12893 case T_MNEM_lsl: inst.instruction = T_OPCODE_LSL_I; break;
12894 case T_MNEM_lsr: inst.instruction = T_OPCODE_LSR_I; break;
12895 case T_MNEM_ror: inst.error = _("ror #imm not supported"); return;
12896 default: abort ();
12897 }
12898 inst.reloc.type = BFD_RELOC_ARM_THUMB_SHIFT;
12899 inst.instruction |= inst.operands[0].reg;
12900 inst.instruction |= inst.operands[1].reg << 3;
b99bd4ef
NC
12901 }
12902 }
b99bd4ef
NC
12903}
12904
12905static void
c19d1205 12906do_t_simd (void)
b99bd4ef 12907{
fdfde340
JM
12908 unsigned Rd, Rn, Rm;
12909
12910 Rd = inst.operands[0].reg;
12911 Rn = inst.operands[1].reg;
12912 Rm = inst.operands[2].reg;
12913
12914 reject_bad_reg (Rd);
12915 reject_bad_reg (Rn);
12916 reject_bad_reg (Rm);
12917
12918 inst.instruction |= Rd << 8;
12919 inst.instruction |= Rn << 16;
12920 inst.instruction |= Rm;
c19d1205 12921}
b99bd4ef 12922
03ee1b7f
NC
12923static void
12924do_t_simd2 (void)
12925{
12926 unsigned Rd, Rn, Rm;
12927
12928 Rd = inst.operands[0].reg;
12929 Rm = inst.operands[1].reg;
12930 Rn = inst.operands[2].reg;
12931
12932 reject_bad_reg (Rd);
12933 reject_bad_reg (Rn);
12934 reject_bad_reg (Rm);
12935
12936 inst.instruction |= Rd << 8;
12937 inst.instruction |= Rn << 16;
12938 inst.instruction |= Rm;
12939}
12940
c19d1205 12941static void
3eb17e6b 12942do_t_smc (void)
c19d1205
ZW
12943{
12944 unsigned int value = inst.reloc.exp.X_add_number;
f4c65163
MGD
12945 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v7a),
12946 _("SMC is not permitted on this architecture"));
c19d1205
ZW
12947 constraint (inst.reloc.exp.X_op != O_constant,
12948 _("expression too complex"));
12949 inst.reloc.type = BFD_RELOC_UNUSED;
12950 inst.instruction |= (value & 0xf000) >> 12;
12951 inst.instruction |= (value & 0x0ff0);
12952 inst.instruction |= (value & 0x000f) << 16;
24382199
NC
12953 /* PR gas/15623: SMC instructions must be last in an IT block. */
12954 set_it_insn_type_last ();
c19d1205 12955}
b99bd4ef 12956
90ec0d68
MGD
12957static void
12958do_t_hvc (void)
12959{
12960 unsigned int value = inst.reloc.exp.X_add_number;
12961
12962 inst.reloc.type = BFD_RELOC_UNUSED;
12963 inst.instruction |= (value & 0x0fff);
12964 inst.instruction |= (value & 0xf000) << 4;
12965}
12966
c19d1205 12967static void
3a21c15a 12968do_t_ssat_usat (int bias)
c19d1205 12969{
fdfde340
JM
12970 unsigned Rd, Rn;
12971
12972 Rd = inst.operands[0].reg;
12973 Rn = inst.operands[2].reg;
12974
12975 reject_bad_reg (Rd);
12976 reject_bad_reg (Rn);
12977
12978 inst.instruction |= Rd << 8;
3a21c15a 12979 inst.instruction |= inst.operands[1].imm - bias;
fdfde340 12980 inst.instruction |= Rn << 16;
b99bd4ef 12981
c19d1205 12982 if (inst.operands[3].present)
b99bd4ef 12983 {
3a21c15a
NC
12984 offsetT shift_amount = inst.reloc.exp.X_add_number;
12985
12986 inst.reloc.type = BFD_RELOC_UNUSED;
12987
c19d1205
ZW
12988 constraint (inst.reloc.exp.X_op != O_constant,
12989 _("expression too complex"));
b99bd4ef 12990
3a21c15a 12991 if (shift_amount != 0)
6189168b 12992 {
3a21c15a
NC
12993 constraint (shift_amount > 31,
12994 _("shift expression is too large"));
12995
c19d1205 12996 if (inst.operands[3].shift_kind == SHIFT_ASR)
3a21c15a
NC
12997 inst.instruction |= 0x00200000; /* sh bit. */
12998
12999 inst.instruction |= (shift_amount & 0x1c) << 10;
13000 inst.instruction |= (shift_amount & 0x03) << 6;
6189168b
NC
13001 }
13002 }
b99bd4ef 13003}
c921be7d 13004
3a21c15a
NC
13005static void
13006do_t_ssat (void)
13007{
13008 do_t_ssat_usat (1);
13009}
b99bd4ef 13010
0dd132b6 13011static void
c19d1205 13012do_t_ssat16 (void)
0dd132b6 13013{
fdfde340
JM
13014 unsigned Rd, Rn;
13015
13016 Rd = inst.operands[0].reg;
13017 Rn = inst.operands[2].reg;
13018
13019 reject_bad_reg (Rd);
13020 reject_bad_reg (Rn);
13021
13022 inst.instruction |= Rd << 8;
c19d1205 13023 inst.instruction |= inst.operands[1].imm - 1;
fdfde340 13024 inst.instruction |= Rn << 16;
c19d1205 13025}
0dd132b6 13026
c19d1205
ZW
13027static void
13028do_t_strex (void)
13029{
13030 constraint (!inst.operands[2].isreg || !inst.operands[2].preind
13031 || inst.operands[2].postind || inst.operands[2].writeback
13032 || inst.operands[2].immisreg || inst.operands[2].shifted
13033 || inst.operands[2].negative,
01cfc07f 13034 BAD_ADDR_MODE);
0dd132b6 13035
5be8be5d
DG
13036 constraint (inst.operands[2].reg == REG_PC, BAD_PC);
13037
c19d1205
ZW
13038 inst.instruction |= inst.operands[0].reg << 8;
13039 inst.instruction |= inst.operands[1].reg << 12;
13040 inst.instruction |= inst.operands[2].reg << 16;
13041 inst.reloc.type = BFD_RELOC_ARM_T32_OFFSET_U8;
0dd132b6
NC
13042}
13043
b99bd4ef 13044static void
c19d1205 13045do_t_strexd (void)
b99bd4ef 13046{
c19d1205
ZW
13047 if (!inst.operands[2].present)
13048 inst.operands[2].reg = inst.operands[1].reg + 1;
b99bd4ef 13049
c19d1205
ZW
13050 constraint (inst.operands[0].reg == inst.operands[1].reg
13051 || inst.operands[0].reg == inst.operands[2].reg
f8a8e9d6 13052 || inst.operands[0].reg == inst.operands[3].reg,
c19d1205 13053 BAD_OVERLAP);
b99bd4ef 13054
c19d1205
ZW
13055 inst.instruction |= inst.operands[0].reg;
13056 inst.instruction |= inst.operands[1].reg << 12;
13057 inst.instruction |= inst.operands[2].reg << 8;
13058 inst.instruction |= inst.operands[3].reg << 16;
b99bd4ef
NC
13059}
13060
13061static void
c19d1205 13062do_t_sxtah (void)
b99bd4ef 13063{
fdfde340
JM
13064 unsigned Rd, Rn, Rm;
13065
13066 Rd = inst.operands[0].reg;
13067 Rn = inst.operands[1].reg;
13068 Rm = inst.operands[2].reg;
13069
13070 reject_bad_reg (Rd);
13071 reject_bad_reg (Rn);
13072 reject_bad_reg (Rm);
13073
13074 inst.instruction |= Rd << 8;
13075 inst.instruction |= Rn << 16;
13076 inst.instruction |= Rm;
c19d1205
ZW
13077 inst.instruction |= inst.operands[3].imm << 4;
13078}
b99bd4ef 13079
c19d1205
ZW
13080static void
13081do_t_sxth (void)
13082{
fdfde340
JM
13083 unsigned Rd, Rm;
13084
13085 Rd = inst.operands[0].reg;
13086 Rm = inst.operands[1].reg;
13087
13088 reject_bad_reg (Rd);
13089 reject_bad_reg (Rm);
c921be7d
NC
13090
13091 if (inst.instruction <= 0xffff
13092 && inst.size_req != 4
fdfde340 13093 && Rd <= 7 && Rm <= 7
c19d1205 13094 && (!inst.operands[2].present || inst.operands[2].imm == 0))
b99bd4ef 13095 {
c19d1205 13096 inst.instruction = THUMB_OP16 (inst.instruction);
fdfde340
JM
13097 inst.instruction |= Rd;
13098 inst.instruction |= Rm << 3;
b99bd4ef 13099 }
c19d1205 13100 else if (unified_syntax)
b99bd4ef 13101 {
c19d1205
ZW
13102 if (inst.instruction <= 0xffff)
13103 inst.instruction = THUMB_OP32 (inst.instruction);
fdfde340
JM
13104 inst.instruction |= Rd << 8;
13105 inst.instruction |= Rm;
c19d1205 13106 inst.instruction |= inst.operands[2].imm << 4;
b99bd4ef 13107 }
c19d1205 13108 else
b99bd4ef 13109 {
c19d1205
ZW
13110 constraint (inst.operands[2].present && inst.operands[2].imm != 0,
13111 _("Thumb encoding does not support rotation"));
13112 constraint (1, BAD_HIREG);
b99bd4ef 13113 }
c19d1205 13114}
b99bd4ef 13115
c19d1205
ZW
13116static void
13117do_t_swi (void)
13118{
13119 inst.reloc.type = BFD_RELOC_ARM_SWI;
13120}
b99bd4ef 13121
92e90b6e
PB
13122static void
13123do_t_tb (void)
13124{
fdfde340 13125 unsigned Rn, Rm;
92e90b6e
PB
13126 int half;
13127
13128 half = (inst.instruction & 0x10) != 0;
e07e6e58 13129 set_it_insn_type_last ();
dfa9f0d5
PB
13130 constraint (inst.operands[0].immisreg,
13131 _("instruction requires register index"));
fdfde340
JM
13132
13133 Rn = inst.operands[0].reg;
13134 Rm = inst.operands[0].imm;
c921be7d 13135
5c8ed6a4
JW
13136 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
13137 constraint (Rn == REG_SP, BAD_SP);
fdfde340
JM
13138 reject_bad_reg (Rm);
13139
92e90b6e
PB
13140 constraint (!half && inst.operands[0].shifted,
13141 _("instruction does not allow shifted index"));
fdfde340 13142 inst.instruction |= (Rn << 16) | Rm;
92e90b6e
PB
13143}
13144
74db7efb
NC
13145static void
13146do_t_udf (void)
13147{
13148 if (!inst.operands[0].present)
13149 inst.operands[0].imm = 0;
13150
13151 if ((unsigned int) inst.operands[0].imm > 255 || inst.size_req == 4)
13152 {
13153 constraint (inst.size_req == 2,
13154 _("immediate value out of range"));
13155 inst.instruction = THUMB_OP32 (inst.instruction);
13156 inst.instruction |= (inst.operands[0].imm & 0xf000u) << 4;
13157 inst.instruction |= (inst.operands[0].imm & 0x0fffu) << 0;
13158 }
13159 else
13160 {
13161 inst.instruction = THUMB_OP16 (inst.instruction);
13162 inst.instruction |= inst.operands[0].imm;
13163 }
13164
13165 set_it_insn_type (NEUTRAL_IT_INSN);
13166}
13167
13168
c19d1205
ZW
13169static void
13170do_t_usat (void)
13171{
3a21c15a 13172 do_t_ssat_usat (0);
b99bd4ef
NC
13173}
13174
13175static void
c19d1205 13176do_t_usat16 (void)
b99bd4ef 13177{
fdfde340
JM
13178 unsigned Rd, Rn;
13179
13180 Rd = inst.operands[0].reg;
13181 Rn = inst.operands[2].reg;
13182
13183 reject_bad_reg (Rd);
13184 reject_bad_reg (Rn);
13185
13186 inst.instruction |= Rd << 8;
c19d1205 13187 inst.instruction |= inst.operands[1].imm;
fdfde340 13188 inst.instruction |= Rn << 16;
b99bd4ef 13189}
c19d1205 13190
5287ad62 13191/* Neon instruction encoder helpers. */
5f4273c7 13192
5287ad62 13193/* Encodings for the different types for various Neon opcodes. */
b99bd4ef 13194
5287ad62
JB
13195/* An "invalid" code for the following tables. */
13196#define N_INV -1u
13197
13198struct neon_tab_entry
b99bd4ef 13199{
5287ad62
JB
13200 unsigned integer;
13201 unsigned float_or_poly;
13202 unsigned scalar_or_imm;
13203};
5f4273c7 13204
5287ad62
JB
13205/* Map overloaded Neon opcodes to their respective encodings. */
13206#define NEON_ENC_TAB \
13207 X(vabd, 0x0000700, 0x1200d00, N_INV), \
13208 X(vmax, 0x0000600, 0x0000f00, N_INV), \
13209 X(vmin, 0x0000610, 0x0200f00, N_INV), \
13210 X(vpadd, 0x0000b10, 0x1000d00, N_INV), \
13211 X(vpmax, 0x0000a00, 0x1000f00, N_INV), \
13212 X(vpmin, 0x0000a10, 0x1200f00, N_INV), \
13213 X(vadd, 0x0000800, 0x0000d00, N_INV), \
13214 X(vsub, 0x1000800, 0x0200d00, N_INV), \
13215 X(vceq, 0x1000810, 0x0000e00, 0x1b10100), \
13216 X(vcge, 0x0000310, 0x1000e00, 0x1b10080), \
13217 X(vcgt, 0x0000300, 0x1200e00, 0x1b10000), \
13218 /* Register variants of the following two instructions are encoded as
e07e6e58 13219 vcge / vcgt with the operands reversed. */ \
92559b5b
PB
13220 X(vclt, 0x0000300, 0x1200e00, 0x1b10200), \
13221 X(vcle, 0x0000310, 0x1000e00, 0x1b10180), \
62f3b8c8
PB
13222 X(vfma, N_INV, 0x0000c10, N_INV), \
13223 X(vfms, N_INV, 0x0200c10, N_INV), \
5287ad62
JB
13224 X(vmla, 0x0000900, 0x0000d10, 0x0800040), \
13225 X(vmls, 0x1000900, 0x0200d10, 0x0800440), \
13226 X(vmul, 0x0000910, 0x1000d10, 0x0800840), \
13227 X(vmull, 0x0800c00, 0x0800e00, 0x0800a40), /* polynomial not float. */ \
13228 X(vmlal, 0x0800800, N_INV, 0x0800240), \
13229 X(vmlsl, 0x0800a00, N_INV, 0x0800640), \
13230 X(vqdmlal, 0x0800900, N_INV, 0x0800340), \
13231 X(vqdmlsl, 0x0800b00, N_INV, 0x0800740), \
13232 X(vqdmull, 0x0800d00, N_INV, 0x0800b40), \
13233 X(vqdmulh, 0x0000b00, N_INV, 0x0800c40), \
13234 X(vqrdmulh, 0x1000b00, N_INV, 0x0800d40), \
d6b4b13e
MW
13235 X(vqrdmlah, 0x3000b10, N_INV, 0x0800e40), \
13236 X(vqrdmlsh, 0x3000c10, N_INV, 0x0800f40), \
5287ad62
JB
13237 X(vshl, 0x0000400, N_INV, 0x0800510), \
13238 X(vqshl, 0x0000410, N_INV, 0x0800710), \
13239 X(vand, 0x0000110, N_INV, 0x0800030), \
13240 X(vbic, 0x0100110, N_INV, 0x0800030), \
13241 X(veor, 0x1000110, N_INV, N_INV), \
13242 X(vorn, 0x0300110, N_INV, 0x0800010), \
13243 X(vorr, 0x0200110, N_INV, 0x0800010), \
13244 X(vmvn, 0x1b00580, N_INV, 0x0800030), \
13245 X(vshll, 0x1b20300, N_INV, 0x0800a10), /* max shift, immediate. */ \
13246 X(vcvt, 0x1b30600, N_INV, 0x0800e10), /* integer, fixed-point. */ \
13247 X(vdup, 0xe800b10, N_INV, 0x1b00c00), /* arm, scalar. */ \
13248 X(vld1, 0x0200000, 0x0a00000, 0x0a00c00), /* interlv, lane, dup. */ \
13249 X(vst1, 0x0000000, 0x0800000, N_INV), \
13250 X(vld2, 0x0200100, 0x0a00100, 0x0a00d00), \
13251 X(vst2, 0x0000100, 0x0800100, N_INV), \
13252 X(vld3, 0x0200200, 0x0a00200, 0x0a00e00), \
13253 X(vst3, 0x0000200, 0x0800200, N_INV), \
13254 X(vld4, 0x0200300, 0x0a00300, 0x0a00f00), \
13255 X(vst4, 0x0000300, 0x0800300, N_INV), \
13256 X(vmovn, 0x1b20200, N_INV, N_INV), \
13257 X(vtrn, 0x1b20080, N_INV, N_INV), \
13258 X(vqmovn, 0x1b20200, N_INV, N_INV), \
037e8744
JB
13259 X(vqmovun, 0x1b20240, N_INV, N_INV), \
13260 X(vnmul, 0xe200a40, 0xe200b40, N_INV), \
e6655fda
PB
13261 X(vnmla, 0xe100a40, 0xe100b40, N_INV), \
13262 X(vnmls, 0xe100a00, 0xe100b00, N_INV), \
62f3b8c8
PB
13263 X(vfnma, 0xe900a40, 0xe900b40, N_INV), \
13264 X(vfnms, 0xe900a00, 0xe900b00, N_INV), \
037e8744
JB
13265 X(vcmp, 0xeb40a40, 0xeb40b40, N_INV), \
13266 X(vcmpz, 0xeb50a40, 0xeb50b40, N_INV), \
13267 X(vcmpe, 0xeb40ac0, 0xeb40bc0, N_INV), \
33399f07
MGD
13268 X(vcmpez, 0xeb50ac0, 0xeb50bc0, N_INV), \
13269 X(vseleq, 0xe000a00, N_INV, N_INV), \
13270 X(vselvs, 0xe100a00, N_INV, N_INV), \
13271 X(vselge, 0xe200a00, N_INV, N_INV), \
73924fbc
MGD
13272 X(vselgt, 0xe300a00, N_INV, N_INV), \
13273 X(vmaxnm, 0xe800a00, 0x3000f10, N_INV), \
7e8e6784 13274 X(vminnm, 0xe800a40, 0x3200f10, N_INV), \
30bdf752
MGD
13275 X(vcvta, 0xebc0a40, 0x3bb0000, N_INV), \
13276 X(vrintr, 0xeb60a40, 0x3ba0400, N_INV), \
91ff7894 13277 X(vrinta, 0xeb80a40, 0x3ba0400, N_INV), \
48adcd8e 13278 X(aes, 0x3b00300, N_INV, N_INV), \
3c9017d2
MGD
13279 X(sha3op, 0x2000c00, N_INV, N_INV), \
13280 X(sha1h, 0x3b902c0, N_INV, N_INV), \
13281 X(sha2op, 0x3ba0380, N_INV, N_INV)
5287ad62
JB
13282
13283enum neon_opc
13284{
13285#define X(OPC,I,F,S) N_MNEM_##OPC
13286NEON_ENC_TAB
13287#undef X
13288};
b99bd4ef 13289
5287ad62
JB
13290static const struct neon_tab_entry neon_enc_tab[] =
13291{
13292#define X(OPC,I,F,S) { (I), (F), (S) }
13293NEON_ENC_TAB
13294#undef X
13295};
b99bd4ef 13296
88714cb8
DG
13297/* Do not use these macros; instead, use NEON_ENCODE defined below. */
13298#define NEON_ENC_INTEGER_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13299#define NEON_ENC_ARMREG_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13300#define NEON_ENC_POLY_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13301#define NEON_ENC_FLOAT_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13302#define NEON_ENC_SCALAR_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13303#define NEON_ENC_IMMED_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13304#define NEON_ENC_INTERLV_(X) (neon_enc_tab[(X) & 0x0fffffff].integer)
13305#define NEON_ENC_LANE_(X) (neon_enc_tab[(X) & 0x0fffffff].float_or_poly)
13306#define NEON_ENC_DUP_(X) (neon_enc_tab[(X) & 0x0fffffff].scalar_or_imm)
13307#define NEON_ENC_SINGLE_(X) \
037e8744 13308 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf0000000))
88714cb8 13309#define NEON_ENC_DOUBLE_(X) \
037e8744 13310 ((neon_enc_tab[(X) & 0x0fffffff].float_or_poly) | ((X) & 0xf0000000))
33399f07
MGD
13311#define NEON_ENC_FPV8_(X) \
13312 ((neon_enc_tab[(X) & 0x0fffffff].integer) | ((X) & 0xf000000))
5287ad62 13313
88714cb8
DG
13314#define NEON_ENCODE(type, inst) \
13315 do \
13316 { \
13317 inst.instruction = NEON_ENC_##type##_ (inst.instruction); \
13318 inst.is_neon = 1; \
13319 } \
13320 while (0)
13321
13322#define check_neon_suffixes \
13323 do \
13324 { \
13325 if (!inst.error && inst.vectype.elems > 0 && !inst.is_neon) \
13326 { \
13327 as_bad (_("invalid neon suffix for non neon instruction")); \
13328 return; \
13329 } \
13330 } \
13331 while (0)
13332
037e8744
JB
13333/* Define shapes for instruction operands. The following mnemonic characters
13334 are used in this table:
5287ad62 13335
037e8744 13336 F - VFP S<n> register
5287ad62
JB
13337 D - Neon D<n> register
13338 Q - Neon Q<n> register
13339 I - Immediate
13340 S - Scalar
13341 R - ARM register
13342 L - D<n> register list
5f4273c7 13343
037e8744
JB
13344 This table is used to generate various data:
13345 - enumerations of the form NS_DDR to be used as arguments to
13346 neon_select_shape.
13347 - a table classifying shapes into single, double, quad, mixed.
5f4273c7 13348 - a table used to drive neon_select_shape. */
b99bd4ef 13349
037e8744
JB
13350#define NEON_SHAPE_DEF \
13351 X(3, (D, D, D), DOUBLE), \
13352 X(3, (Q, Q, Q), QUAD), \
13353 X(3, (D, D, I), DOUBLE), \
13354 X(3, (Q, Q, I), QUAD), \
13355 X(3, (D, D, S), DOUBLE), \
13356 X(3, (Q, Q, S), QUAD), \
13357 X(2, (D, D), DOUBLE), \
13358 X(2, (Q, Q), QUAD), \
13359 X(2, (D, S), DOUBLE), \
13360 X(2, (Q, S), QUAD), \
13361 X(2, (D, R), DOUBLE), \
13362 X(2, (Q, R), QUAD), \
13363 X(2, (D, I), DOUBLE), \
13364 X(2, (Q, I), QUAD), \
13365 X(3, (D, L, D), DOUBLE), \
13366 X(2, (D, Q), MIXED), \
13367 X(2, (Q, D), MIXED), \
13368 X(3, (D, Q, I), MIXED), \
13369 X(3, (Q, D, I), MIXED), \
13370 X(3, (Q, D, D), MIXED), \
13371 X(3, (D, Q, Q), MIXED), \
13372 X(3, (Q, Q, D), MIXED), \
13373 X(3, (Q, D, S), MIXED), \
13374 X(3, (D, Q, S), MIXED), \
13375 X(4, (D, D, D, I), DOUBLE), \
13376 X(4, (Q, Q, Q, I), QUAD), \
c28eeff2
SN
13377 X(4, (D, D, S, I), DOUBLE), \
13378 X(4, (Q, Q, S, I), QUAD), \
037e8744
JB
13379 X(2, (F, F), SINGLE), \
13380 X(3, (F, F, F), SINGLE), \
13381 X(2, (F, I), SINGLE), \
13382 X(2, (F, D), MIXED), \
13383 X(2, (D, F), MIXED), \
13384 X(3, (F, F, I), MIXED), \
13385 X(4, (R, R, F, F), SINGLE), \
13386 X(4, (F, F, R, R), SINGLE), \
13387 X(3, (D, R, R), DOUBLE), \
13388 X(3, (R, R, D), DOUBLE), \
13389 X(2, (S, R), SINGLE), \
13390 X(2, (R, S), SINGLE), \
13391 X(2, (F, R), SINGLE), \
d54af2d0
RL
13392 X(2, (R, F), SINGLE), \
13393/* Half float shape supported so far. */\
13394 X (2, (H, D), MIXED), \
13395 X (2, (D, H), MIXED), \
13396 X (2, (H, F), MIXED), \
13397 X (2, (F, H), MIXED), \
13398 X (2, (H, H), HALF), \
13399 X (2, (H, R), HALF), \
13400 X (2, (R, H), HALF), \
13401 X (2, (H, I), HALF), \
13402 X (3, (H, H, H), HALF), \
13403 X (3, (H, F, I), MIXED), \
13404 X (3, (F, H, I), MIXED)
037e8744
JB
13405
13406#define S2(A,B) NS_##A##B
13407#define S3(A,B,C) NS_##A##B##C
13408#define S4(A,B,C,D) NS_##A##B##C##D
13409
13410#define X(N, L, C) S##N L
13411
5287ad62
JB
13412enum neon_shape
13413{
037e8744
JB
13414 NEON_SHAPE_DEF,
13415 NS_NULL
5287ad62 13416};
b99bd4ef 13417
037e8744
JB
13418#undef X
13419#undef S2
13420#undef S3
13421#undef S4
13422
13423enum neon_shape_class
13424{
d54af2d0 13425 SC_HALF,
037e8744
JB
13426 SC_SINGLE,
13427 SC_DOUBLE,
13428 SC_QUAD,
13429 SC_MIXED
13430};
13431
13432#define X(N, L, C) SC_##C
13433
13434static enum neon_shape_class neon_shape_class[] =
13435{
13436 NEON_SHAPE_DEF
13437};
13438
13439#undef X
13440
13441enum neon_shape_el
13442{
d54af2d0 13443 SE_H,
037e8744
JB
13444 SE_F,
13445 SE_D,
13446 SE_Q,
13447 SE_I,
13448 SE_S,
13449 SE_R,
13450 SE_L
13451};
13452
13453/* Register widths of above. */
13454static unsigned neon_shape_el_size[] =
13455{
d54af2d0 13456 16,
037e8744
JB
13457 32,
13458 64,
13459 128,
13460 0,
13461 32,
13462 32,
13463 0
13464};
13465
13466struct neon_shape_info
13467{
13468 unsigned els;
13469 enum neon_shape_el el[NEON_MAX_TYPE_ELS];
13470};
13471
13472#define S2(A,B) { SE_##A, SE_##B }
13473#define S3(A,B,C) { SE_##A, SE_##B, SE_##C }
13474#define S4(A,B,C,D) { SE_##A, SE_##B, SE_##C, SE_##D }
13475
13476#define X(N, L, C) { N, S##N L }
13477
13478static struct neon_shape_info neon_shape_tab[] =
13479{
13480 NEON_SHAPE_DEF
13481};
13482
13483#undef X
13484#undef S2
13485#undef S3
13486#undef S4
13487
5287ad62
JB
13488/* Bit masks used in type checking given instructions.
13489 'N_EQK' means the type must be the same as (or based on in some way) the key
13490 type, which itself is marked with the 'N_KEY' bit. If the 'N_EQK' bit is
13491 set, various other bits can be set as well in order to modify the meaning of
13492 the type constraint. */
13493
13494enum neon_type_mask
13495{
8e79c3df
CM
13496 N_S8 = 0x0000001,
13497 N_S16 = 0x0000002,
13498 N_S32 = 0x0000004,
13499 N_S64 = 0x0000008,
13500 N_U8 = 0x0000010,
13501 N_U16 = 0x0000020,
13502 N_U32 = 0x0000040,
13503 N_U64 = 0x0000080,
13504 N_I8 = 0x0000100,
13505 N_I16 = 0x0000200,
13506 N_I32 = 0x0000400,
13507 N_I64 = 0x0000800,
13508 N_8 = 0x0001000,
13509 N_16 = 0x0002000,
13510 N_32 = 0x0004000,
13511 N_64 = 0x0008000,
13512 N_P8 = 0x0010000,
13513 N_P16 = 0x0020000,
13514 N_F16 = 0x0040000,
13515 N_F32 = 0x0080000,
13516 N_F64 = 0x0100000,
4f51b4bd 13517 N_P64 = 0x0200000,
c921be7d
NC
13518 N_KEY = 0x1000000, /* Key element (main type specifier). */
13519 N_EQK = 0x2000000, /* Given operand has the same type & size as the key. */
8e79c3df 13520 N_VFP = 0x4000000, /* VFP mode: operand size must match register width. */
91ff7894 13521 N_UNT = 0x8000000, /* Must be explicitly untyped. */
c921be7d
NC
13522 N_DBL = 0x0000001, /* If N_EQK, this operand is twice the size. */
13523 N_HLF = 0x0000002, /* If N_EQK, this operand is half the size. */
13524 N_SGN = 0x0000004, /* If N_EQK, this operand is forced to be signed. */
13525 N_UNS = 0x0000008, /* If N_EQK, this operand is forced to be unsigned. */
13526 N_INT = 0x0000010, /* If N_EQK, this operand is forced to be integer. */
13527 N_FLT = 0x0000020, /* If N_EQK, this operand is forced to be float. */
13528 N_SIZ = 0x0000040, /* If N_EQK, this operand is forced to be size-only. */
5287ad62 13529 N_UTYP = 0,
4f51b4bd 13530 N_MAX_NONSPECIAL = N_P64
5287ad62
JB
13531};
13532
dcbf9037
JB
13533#define N_ALLMODS (N_DBL | N_HLF | N_SGN | N_UNS | N_INT | N_FLT | N_SIZ)
13534
5287ad62
JB
13535#define N_SU_ALL (N_S8 | N_S16 | N_S32 | N_S64 | N_U8 | N_U16 | N_U32 | N_U64)
13536#define N_SU_32 (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
13537#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
cc933301
JW
13538#define N_S_32 (N_S8 | N_S16 | N_S32)
13539#define N_F_16_32 (N_F16 | N_F32)
13540#define N_SUF_32 (N_SU_32 | N_F_16_32)
5287ad62 13541#define N_I_ALL (N_I8 | N_I16 | N_I32 | N_I64)
cc933301 13542#define N_IF_32 (N_I8 | N_I16 | N_I32 | N_F16 | N_F32)
d54af2d0 13543#define N_F_ALL (N_F16 | N_F32 | N_F64)
5287ad62
JB
13544
13545/* Pass this as the first type argument to neon_check_type to ignore types
13546 altogether. */
13547#define N_IGNORE_TYPE (N_KEY | N_EQK)
13548
037e8744
JB
13549/* Select a "shape" for the current instruction (describing register types or
13550 sizes) from a list of alternatives. Return NS_NULL if the current instruction
13551 doesn't fit. For non-polymorphic shapes, checking is usually done as a
13552 function of operand parsing, so this function doesn't need to be called.
13553 Shapes should be listed in order of decreasing length. */
5287ad62
JB
13554
13555static enum neon_shape
037e8744 13556neon_select_shape (enum neon_shape shape, ...)
5287ad62 13557{
037e8744
JB
13558 va_list ap;
13559 enum neon_shape first_shape = shape;
5287ad62
JB
13560
13561 /* Fix missing optional operands. FIXME: we don't know at this point how
13562 many arguments we should have, so this makes the assumption that we have
13563 > 1. This is true of all current Neon opcodes, I think, but may not be
13564 true in the future. */
13565 if (!inst.operands[1].present)
13566 inst.operands[1] = inst.operands[0];
13567
037e8744 13568 va_start (ap, shape);
5f4273c7 13569
21d799b5 13570 for (; shape != NS_NULL; shape = (enum neon_shape) va_arg (ap, int))
037e8744
JB
13571 {
13572 unsigned j;
13573 int matches = 1;
13574
13575 for (j = 0; j < neon_shape_tab[shape].els; j++)
477330fc
RM
13576 {
13577 if (!inst.operands[j].present)
13578 {
13579 matches = 0;
13580 break;
13581 }
13582
13583 switch (neon_shape_tab[shape].el[j])
13584 {
d54af2d0
RL
13585 /* If a .f16, .16, .u16, .s16 type specifier is given over
13586 a VFP single precision register operand, it's essentially
13587 means only half of the register is used.
13588
13589 If the type specifier is given after the mnemonics, the
13590 information is stored in inst.vectype. If the type specifier
13591 is given after register operand, the information is stored
13592 in inst.operands[].vectype.
13593
13594 When there is only one type specifier, and all the register
13595 operands are the same type of hardware register, the type
13596 specifier applies to all register operands.
13597
13598 If no type specifier is given, the shape is inferred from
13599 operand information.
13600
13601 for example:
13602 vadd.f16 s0, s1, s2: NS_HHH
13603 vabs.f16 s0, s1: NS_HH
13604 vmov.f16 s0, r1: NS_HR
13605 vmov.f16 r0, s1: NS_RH
13606 vcvt.f16 r0, s1: NS_RH
13607 vcvt.f16.s32 s2, s2, #29: NS_HFI
13608 vcvt.f16.s32 s2, s2: NS_HF
13609 */
13610 case SE_H:
13611 if (!(inst.operands[j].isreg
13612 && inst.operands[j].isvec
13613 && inst.operands[j].issingle
13614 && !inst.operands[j].isquad
13615 && ((inst.vectype.elems == 1
13616 && inst.vectype.el[0].size == 16)
13617 || (inst.vectype.elems > 1
13618 && inst.vectype.el[j].size == 16)
13619 || (inst.vectype.elems == 0
13620 && inst.operands[j].vectype.type != NT_invtype
13621 && inst.operands[j].vectype.size == 16))))
13622 matches = 0;
13623 break;
13624
477330fc
RM
13625 case SE_F:
13626 if (!(inst.operands[j].isreg
13627 && inst.operands[j].isvec
13628 && inst.operands[j].issingle
d54af2d0
RL
13629 && !inst.operands[j].isquad
13630 && ((inst.vectype.elems == 1 && inst.vectype.el[0].size == 32)
13631 || (inst.vectype.elems > 1 && inst.vectype.el[j].size == 32)
13632 || (inst.vectype.elems == 0
13633 && (inst.operands[j].vectype.size == 32
13634 || inst.operands[j].vectype.type == NT_invtype)))))
477330fc
RM
13635 matches = 0;
13636 break;
13637
13638 case SE_D:
13639 if (!(inst.operands[j].isreg
13640 && inst.operands[j].isvec
13641 && !inst.operands[j].isquad
13642 && !inst.operands[j].issingle))
13643 matches = 0;
13644 break;
13645
13646 case SE_R:
13647 if (!(inst.operands[j].isreg
13648 && !inst.operands[j].isvec))
13649 matches = 0;
13650 break;
13651
13652 case SE_Q:
13653 if (!(inst.operands[j].isreg
13654 && inst.operands[j].isvec
13655 && inst.operands[j].isquad
13656 && !inst.operands[j].issingle))
13657 matches = 0;
13658 break;
13659
13660 case SE_I:
13661 if (!(!inst.operands[j].isreg
13662 && !inst.operands[j].isscalar))
13663 matches = 0;
13664 break;
13665
13666 case SE_S:
13667 if (!(!inst.operands[j].isreg
13668 && inst.operands[j].isscalar))
13669 matches = 0;
13670 break;
13671
13672 case SE_L:
13673 break;
13674 }
3fde54a2
JZ
13675 if (!matches)
13676 break;
477330fc 13677 }
ad6cec43
MGD
13678 if (matches && (j >= ARM_IT_MAX_OPERANDS || !inst.operands[j].present))
13679 /* We've matched all the entries in the shape table, and we don't
13680 have any left over operands which have not been matched. */
477330fc 13681 break;
037e8744 13682 }
5f4273c7 13683
037e8744 13684 va_end (ap);
5287ad62 13685
037e8744
JB
13686 if (shape == NS_NULL && first_shape != NS_NULL)
13687 first_error (_("invalid instruction shape"));
5287ad62 13688
037e8744
JB
13689 return shape;
13690}
5287ad62 13691
037e8744
JB
13692/* True if SHAPE is predominantly a quadword operation (most of the time, this
13693 means the Q bit should be set). */
13694
13695static int
13696neon_quad (enum neon_shape shape)
13697{
13698 return neon_shape_class[shape] == SC_QUAD;
5287ad62 13699}
037e8744 13700
5287ad62
JB
13701static void
13702neon_modify_type_size (unsigned typebits, enum neon_el_type *g_type,
477330fc 13703 unsigned *g_size)
5287ad62
JB
13704{
13705 /* Allow modification to be made to types which are constrained to be
13706 based on the key element, based on bits set alongside N_EQK. */
13707 if ((typebits & N_EQK) != 0)
13708 {
13709 if ((typebits & N_HLF) != 0)
13710 *g_size /= 2;
13711 else if ((typebits & N_DBL) != 0)
13712 *g_size *= 2;
13713 if ((typebits & N_SGN) != 0)
13714 *g_type = NT_signed;
13715 else if ((typebits & N_UNS) != 0)
477330fc 13716 *g_type = NT_unsigned;
5287ad62 13717 else if ((typebits & N_INT) != 0)
477330fc 13718 *g_type = NT_integer;
5287ad62 13719 else if ((typebits & N_FLT) != 0)
477330fc 13720 *g_type = NT_float;
dcbf9037 13721 else if ((typebits & N_SIZ) != 0)
477330fc 13722 *g_type = NT_untyped;
5287ad62
JB
13723 }
13724}
5f4273c7 13725
5287ad62
JB
13726/* Return operand OPNO promoted by bits set in THISARG. KEY should be the "key"
13727 operand type, i.e. the single type specified in a Neon instruction when it
13728 is the only one given. */
13729
13730static struct neon_type_el
13731neon_type_promote (struct neon_type_el *key, unsigned thisarg)
13732{
13733 struct neon_type_el dest = *key;
5f4273c7 13734
9c2799c2 13735 gas_assert ((thisarg & N_EQK) != 0);
5f4273c7 13736
5287ad62
JB
13737 neon_modify_type_size (thisarg, &dest.type, &dest.size);
13738
13739 return dest;
13740}
13741
13742/* Convert Neon type and size into compact bitmask representation. */
13743
13744static enum neon_type_mask
13745type_chk_of_el_type (enum neon_el_type type, unsigned size)
13746{
13747 switch (type)
13748 {
13749 case NT_untyped:
13750 switch (size)
477330fc
RM
13751 {
13752 case 8: return N_8;
13753 case 16: return N_16;
13754 case 32: return N_32;
13755 case 64: return N_64;
13756 default: ;
13757 }
5287ad62
JB
13758 break;
13759
13760 case NT_integer:
13761 switch (size)
477330fc
RM
13762 {
13763 case 8: return N_I8;
13764 case 16: return N_I16;
13765 case 32: return N_I32;
13766 case 64: return N_I64;
13767 default: ;
13768 }
5287ad62
JB
13769 break;
13770
13771 case NT_float:
037e8744 13772 switch (size)
477330fc 13773 {
8e79c3df 13774 case 16: return N_F16;
477330fc
RM
13775 case 32: return N_F32;
13776 case 64: return N_F64;
13777 default: ;
13778 }
5287ad62
JB
13779 break;
13780
13781 case NT_poly:
13782 switch (size)
477330fc
RM
13783 {
13784 case 8: return N_P8;
13785 case 16: return N_P16;
4f51b4bd 13786 case 64: return N_P64;
477330fc
RM
13787 default: ;
13788 }
5287ad62
JB
13789 break;
13790
13791 case NT_signed:
13792 switch (size)
477330fc
RM
13793 {
13794 case 8: return N_S8;
13795 case 16: return N_S16;
13796 case 32: return N_S32;
13797 case 64: return N_S64;
13798 default: ;
13799 }
5287ad62
JB
13800 break;
13801
13802 case NT_unsigned:
13803 switch (size)
477330fc
RM
13804 {
13805 case 8: return N_U8;
13806 case 16: return N_U16;
13807 case 32: return N_U32;
13808 case 64: return N_U64;
13809 default: ;
13810 }
5287ad62
JB
13811 break;
13812
13813 default: ;
13814 }
5f4273c7 13815
5287ad62
JB
13816 return N_UTYP;
13817}
13818
13819/* Convert compact Neon bitmask type representation to a type and size. Only
13820 handles the case where a single bit is set in the mask. */
13821
dcbf9037 13822static int
5287ad62 13823el_type_of_type_chk (enum neon_el_type *type, unsigned *size,
477330fc 13824 enum neon_type_mask mask)
5287ad62 13825{
dcbf9037
JB
13826 if ((mask & N_EQK) != 0)
13827 return FAIL;
13828
5287ad62
JB
13829 if ((mask & (N_S8 | N_U8 | N_I8 | N_8 | N_P8)) != 0)
13830 *size = 8;
c70a8987 13831 else if ((mask & (N_S16 | N_U16 | N_I16 | N_16 | N_F16 | N_P16)) != 0)
5287ad62 13832 *size = 16;
dcbf9037 13833 else if ((mask & (N_S32 | N_U32 | N_I32 | N_32 | N_F32)) != 0)
5287ad62 13834 *size = 32;
4f51b4bd 13835 else if ((mask & (N_S64 | N_U64 | N_I64 | N_64 | N_F64 | N_P64)) != 0)
5287ad62 13836 *size = 64;
dcbf9037
JB
13837 else
13838 return FAIL;
13839
5287ad62
JB
13840 if ((mask & (N_S8 | N_S16 | N_S32 | N_S64)) != 0)
13841 *type = NT_signed;
dcbf9037 13842 else if ((mask & (N_U8 | N_U16 | N_U32 | N_U64)) != 0)
5287ad62 13843 *type = NT_unsigned;
dcbf9037 13844 else if ((mask & (N_I8 | N_I16 | N_I32 | N_I64)) != 0)
5287ad62 13845 *type = NT_integer;
dcbf9037 13846 else if ((mask & (N_8 | N_16 | N_32 | N_64)) != 0)
5287ad62 13847 *type = NT_untyped;
4f51b4bd 13848 else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
5287ad62 13849 *type = NT_poly;
d54af2d0 13850 else if ((mask & (N_F_ALL)) != 0)
5287ad62 13851 *type = NT_float;
dcbf9037
JB
13852 else
13853 return FAIL;
5f4273c7 13854
dcbf9037 13855 return SUCCESS;
5287ad62
JB
13856}
13857
13858/* Modify a bitmask of allowed types. This is only needed for type
13859 relaxation. */
13860
13861static unsigned
13862modify_types_allowed (unsigned allowed, unsigned mods)
13863{
13864 unsigned size;
13865 enum neon_el_type type;
13866 unsigned destmask;
13867 int i;
5f4273c7 13868
5287ad62 13869 destmask = 0;
5f4273c7 13870
5287ad62
JB
13871 for (i = 1; i <= N_MAX_NONSPECIAL; i <<= 1)
13872 {
21d799b5 13873 if (el_type_of_type_chk (&type, &size,
477330fc
RM
13874 (enum neon_type_mask) (allowed & i)) == SUCCESS)
13875 {
13876 neon_modify_type_size (mods, &type, &size);
13877 destmask |= type_chk_of_el_type (type, size);
13878 }
5287ad62 13879 }
5f4273c7 13880
5287ad62
JB
13881 return destmask;
13882}
13883
13884/* Check type and return type classification.
13885 The manual states (paraphrase): If one datatype is given, it indicates the
13886 type given in:
13887 - the second operand, if there is one
13888 - the operand, if there is no second operand
13889 - the result, if there are no operands.
13890 This isn't quite good enough though, so we use a concept of a "key" datatype
13891 which is set on a per-instruction basis, which is the one which matters when
13892 only one data type is written.
13893 Note: this function has side-effects (e.g. filling in missing operands). All
037e8744 13894 Neon instructions should call it before performing bit encoding. */
5287ad62
JB
13895
13896static struct neon_type_el
13897neon_check_type (unsigned els, enum neon_shape ns, ...)
13898{
13899 va_list ap;
13900 unsigned i, pass, key_el = 0;
13901 unsigned types[NEON_MAX_TYPE_ELS];
13902 enum neon_el_type k_type = NT_invtype;
13903 unsigned k_size = -1u;
13904 struct neon_type_el badtype = {NT_invtype, -1};
13905 unsigned key_allowed = 0;
13906
13907 /* Optional registers in Neon instructions are always (not) in operand 1.
13908 Fill in the missing operand here, if it was omitted. */
13909 if (els > 1 && !inst.operands[1].present)
13910 inst.operands[1] = inst.operands[0];
13911
13912 /* Suck up all the varargs. */
13913 va_start (ap, ns);
13914 for (i = 0; i < els; i++)
13915 {
13916 unsigned thisarg = va_arg (ap, unsigned);
13917 if (thisarg == N_IGNORE_TYPE)
477330fc
RM
13918 {
13919 va_end (ap);
13920 return badtype;
13921 }
5287ad62
JB
13922 types[i] = thisarg;
13923 if ((thisarg & N_KEY) != 0)
477330fc 13924 key_el = i;
5287ad62
JB
13925 }
13926 va_end (ap);
13927
dcbf9037
JB
13928 if (inst.vectype.elems > 0)
13929 for (i = 0; i < els; i++)
13930 if (inst.operands[i].vectype.type != NT_invtype)
477330fc
RM
13931 {
13932 first_error (_("types specified in both the mnemonic and operands"));
13933 return badtype;
13934 }
dcbf9037 13935
5287ad62
JB
13936 /* Duplicate inst.vectype elements here as necessary.
13937 FIXME: No idea if this is exactly the same as the ARM assembler,
13938 particularly when an insn takes one register and one non-register
13939 operand. */
13940 if (inst.vectype.elems == 1 && els > 1)
13941 {
13942 unsigned j;
13943 inst.vectype.elems = els;
13944 inst.vectype.el[key_el] = inst.vectype.el[0];
13945 for (j = 0; j < els; j++)
477330fc
RM
13946 if (j != key_el)
13947 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13948 types[j]);
dcbf9037
JB
13949 }
13950 else if (inst.vectype.elems == 0 && els > 0)
13951 {
13952 unsigned j;
13953 /* No types were given after the mnemonic, so look for types specified
477330fc
RM
13954 after each operand. We allow some flexibility here; as long as the
13955 "key" operand has a type, we can infer the others. */
dcbf9037 13956 for (j = 0; j < els; j++)
477330fc
RM
13957 if (inst.operands[j].vectype.type != NT_invtype)
13958 inst.vectype.el[j] = inst.operands[j].vectype;
dcbf9037
JB
13959
13960 if (inst.operands[key_el].vectype.type != NT_invtype)
477330fc
RM
13961 {
13962 for (j = 0; j < els; j++)
13963 if (inst.operands[j].vectype.type == NT_invtype)
13964 inst.vectype.el[j] = neon_type_promote (&inst.vectype.el[key_el],
13965 types[j]);
13966 }
dcbf9037 13967 else
477330fc
RM
13968 {
13969 first_error (_("operand types can't be inferred"));
13970 return badtype;
13971 }
5287ad62
JB
13972 }
13973 else if (inst.vectype.elems != els)
13974 {
dcbf9037 13975 first_error (_("type specifier has the wrong number of parts"));
5287ad62
JB
13976 return badtype;
13977 }
13978
13979 for (pass = 0; pass < 2; pass++)
13980 {
13981 for (i = 0; i < els; i++)
477330fc
RM
13982 {
13983 unsigned thisarg = types[i];
13984 unsigned types_allowed = ((thisarg & N_EQK) != 0 && pass != 0)
13985 ? modify_types_allowed (key_allowed, thisarg) : thisarg;
13986 enum neon_el_type g_type = inst.vectype.el[i].type;
13987 unsigned g_size = inst.vectype.el[i].size;
13988
13989 /* Decay more-specific signed & unsigned types to sign-insensitive
5287ad62 13990 integer types if sign-specific variants are unavailable. */
477330fc 13991 if ((g_type == NT_signed || g_type == NT_unsigned)
5287ad62
JB
13992 && (types_allowed & N_SU_ALL) == 0)
13993 g_type = NT_integer;
13994
477330fc 13995 /* If only untyped args are allowed, decay any more specific types to
5287ad62
JB
13996 them. Some instructions only care about signs for some element
13997 sizes, so handle that properly. */
477330fc 13998 if (((types_allowed & N_UNT) == 0)
91ff7894
MGD
13999 && ((g_size == 8 && (types_allowed & N_8) != 0)
14000 || (g_size == 16 && (types_allowed & N_16) != 0)
14001 || (g_size == 32 && (types_allowed & N_32) != 0)
14002 || (g_size == 64 && (types_allowed & N_64) != 0)))
5287ad62
JB
14003 g_type = NT_untyped;
14004
477330fc
RM
14005 if (pass == 0)
14006 {
14007 if ((thisarg & N_KEY) != 0)
14008 {
14009 k_type = g_type;
14010 k_size = g_size;
14011 key_allowed = thisarg & ~N_KEY;
cc933301
JW
14012
14013 /* Check architecture constraint on FP16 extension. */
14014 if (k_size == 16
14015 && k_type == NT_float
14016 && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
14017 {
14018 inst.error = _(BAD_FP16);
14019 return badtype;
14020 }
477330fc
RM
14021 }
14022 }
14023 else
14024 {
14025 if ((thisarg & N_VFP) != 0)
14026 {
14027 enum neon_shape_el regshape;
14028 unsigned regwidth, match;
99b253c5
NC
14029
14030 /* PR 11136: Catch the case where we are passed a shape of NS_NULL. */
14031 if (ns == NS_NULL)
14032 {
14033 first_error (_("invalid instruction shape"));
14034 return badtype;
14035 }
477330fc
RM
14036 regshape = neon_shape_tab[ns].el[i];
14037 regwidth = neon_shape_el_size[regshape];
14038
14039 /* In VFP mode, operands must match register widths. If we
14040 have a key operand, use its width, else use the width of
14041 the current operand. */
14042 if (k_size != -1u)
14043 match = k_size;
14044 else
14045 match = g_size;
14046
9db2f6b4
RL
14047 /* FP16 will use a single precision register. */
14048 if (regwidth == 32 && match == 16)
14049 {
14050 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
14051 match = regwidth;
14052 else
14053 {
14054 inst.error = _(BAD_FP16);
14055 return badtype;
14056 }
14057 }
14058
477330fc
RM
14059 if (regwidth != match)
14060 {
14061 first_error (_("operand size must match register width"));
14062 return badtype;
14063 }
14064 }
14065
14066 if ((thisarg & N_EQK) == 0)
14067 {
14068 unsigned given_type = type_chk_of_el_type (g_type, g_size);
14069
14070 if ((given_type & types_allowed) == 0)
14071 {
14072 first_error (_("bad type in Neon instruction"));
14073 return badtype;
14074 }
14075 }
14076 else
14077 {
14078 enum neon_el_type mod_k_type = k_type;
14079 unsigned mod_k_size = k_size;
14080 neon_modify_type_size (thisarg, &mod_k_type, &mod_k_size);
14081 if (g_type != mod_k_type || g_size != mod_k_size)
14082 {
14083 first_error (_("inconsistent types in Neon instruction"));
14084 return badtype;
14085 }
14086 }
14087 }
14088 }
5287ad62
JB
14089 }
14090
14091 return inst.vectype.el[key_el];
14092}
14093
037e8744 14094/* Neon-style VFP instruction forwarding. */
5287ad62 14095
037e8744
JB
14096/* Thumb VFP instructions have 0xE in the condition field. */
14097
14098static void
14099do_vfp_cond_or_thumb (void)
5287ad62 14100{
88714cb8
DG
14101 inst.is_neon = 1;
14102
5287ad62 14103 if (thumb_mode)
037e8744 14104 inst.instruction |= 0xe0000000;
5287ad62 14105 else
037e8744 14106 inst.instruction |= inst.cond << 28;
5287ad62
JB
14107}
14108
037e8744
JB
14109/* Look up and encode a simple mnemonic, for use as a helper function for the
14110 Neon-style VFP syntax. This avoids duplication of bits of the insns table,
14111 etc. It is assumed that operand parsing has already been done, and that the
14112 operands are in the form expected by the given opcode (this isn't necessarily
14113 the same as the form in which they were parsed, hence some massaging must
14114 take place before this function is called).
14115 Checks current arch version against that in the looked-up opcode. */
5287ad62 14116
037e8744
JB
14117static void
14118do_vfp_nsyn_opcode (const char *opname)
5287ad62 14119{
037e8744 14120 const struct asm_opcode *opcode;
5f4273c7 14121
21d799b5 14122 opcode = (const struct asm_opcode *) hash_find (arm_ops_hsh, opname);
5287ad62 14123
037e8744
JB
14124 if (!opcode)
14125 abort ();
5287ad62 14126
037e8744 14127 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant,
477330fc
RM
14128 thumb_mode ? *opcode->tvariant : *opcode->avariant),
14129 _(BAD_FPU));
5287ad62 14130
88714cb8
DG
14131 inst.is_neon = 1;
14132
037e8744
JB
14133 if (thumb_mode)
14134 {
14135 inst.instruction = opcode->tvalue;
14136 opcode->tencode ();
14137 }
14138 else
14139 {
14140 inst.instruction = (inst.cond << 28) | opcode->avalue;
14141 opcode->aencode ();
14142 }
14143}
5287ad62
JB
14144
14145static void
037e8744 14146do_vfp_nsyn_add_sub (enum neon_shape rs)
5287ad62 14147{
037e8744
JB
14148 int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
14149
9db2f6b4 14150 if (rs == NS_FFF || rs == NS_HHH)
037e8744
JB
14151 {
14152 if (is_add)
477330fc 14153 do_vfp_nsyn_opcode ("fadds");
037e8744 14154 else
477330fc 14155 do_vfp_nsyn_opcode ("fsubs");
9db2f6b4
RL
14156
14157 /* ARMv8.2 fp16 instruction. */
14158 if (rs == NS_HHH)
14159 do_scalar_fp16_v82_encode ();
037e8744
JB
14160 }
14161 else
14162 {
14163 if (is_add)
477330fc 14164 do_vfp_nsyn_opcode ("faddd");
037e8744 14165 else
477330fc 14166 do_vfp_nsyn_opcode ("fsubd");
037e8744
JB
14167 }
14168}
14169
14170/* Check operand types to see if this is a VFP instruction, and if so call
14171 PFN (). */
14172
14173static int
14174try_vfp_nsyn (int args, void (*pfn) (enum neon_shape))
14175{
14176 enum neon_shape rs;
14177 struct neon_type_el et;
14178
14179 switch (args)
14180 {
14181 case 2:
9db2f6b4
RL
14182 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14183 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
037e8744 14184 break;
5f4273c7 14185
037e8744 14186 case 3:
9db2f6b4
RL
14187 rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
14188 et = neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
14189 N_F_ALL | N_KEY | N_VFP);
037e8744
JB
14190 break;
14191
14192 default:
14193 abort ();
14194 }
14195
14196 if (et.type != NT_invtype)
14197 {
14198 pfn (rs);
14199 return SUCCESS;
14200 }
037e8744 14201
99b253c5 14202 inst.error = NULL;
037e8744
JB
14203 return FAIL;
14204}
14205
14206static void
14207do_vfp_nsyn_mla_mls (enum neon_shape rs)
14208{
14209 int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
5f4273c7 14210
9db2f6b4 14211 if (rs == NS_FFF || rs == NS_HHH)
037e8744
JB
14212 {
14213 if (is_mla)
477330fc 14214 do_vfp_nsyn_opcode ("fmacs");
037e8744 14215 else
477330fc 14216 do_vfp_nsyn_opcode ("fnmacs");
9db2f6b4
RL
14217
14218 /* ARMv8.2 fp16 instruction. */
14219 if (rs == NS_HHH)
14220 do_scalar_fp16_v82_encode ();
037e8744
JB
14221 }
14222 else
14223 {
14224 if (is_mla)
477330fc 14225 do_vfp_nsyn_opcode ("fmacd");
037e8744 14226 else
477330fc 14227 do_vfp_nsyn_opcode ("fnmacd");
037e8744
JB
14228 }
14229}
14230
62f3b8c8
PB
14231static void
14232do_vfp_nsyn_fma_fms (enum neon_shape rs)
14233{
14234 int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
14235
9db2f6b4 14236 if (rs == NS_FFF || rs == NS_HHH)
62f3b8c8
PB
14237 {
14238 if (is_fma)
477330fc 14239 do_vfp_nsyn_opcode ("ffmas");
62f3b8c8 14240 else
477330fc 14241 do_vfp_nsyn_opcode ("ffnmas");
9db2f6b4
RL
14242
14243 /* ARMv8.2 fp16 instruction. */
14244 if (rs == NS_HHH)
14245 do_scalar_fp16_v82_encode ();
62f3b8c8
PB
14246 }
14247 else
14248 {
14249 if (is_fma)
477330fc 14250 do_vfp_nsyn_opcode ("ffmad");
62f3b8c8 14251 else
477330fc 14252 do_vfp_nsyn_opcode ("ffnmad");
62f3b8c8
PB
14253 }
14254}
14255
037e8744
JB
14256static void
14257do_vfp_nsyn_mul (enum neon_shape rs)
14258{
9db2f6b4
RL
14259 if (rs == NS_FFF || rs == NS_HHH)
14260 {
14261 do_vfp_nsyn_opcode ("fmuls");
14262
14263 /* ARMv8.2 fp16 instruction. */
14264 if (rs == NS_HHH)
14265 do_scalar_fp16_v82_encode ();
14266 }
037e8744
JB
14267 else
14268 do_vfp_nsyn_opcode ("fmuld");
14269}
14270
14271static void
14272do_vfp_nsyn_abs_neg (enum neon_shape rs)
14273{
14274 int is_neg = (inst.instruction & 0x80) != 0;
9db2f6b4 14275 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_VFP | N_KEY);
037e8744 14276
9db2f6b4 14277 if (rs == NS_FF || rs == NS_HH)
037e8744
JB
14278 {
14279 if (is_neg)
477330fc 14280 do_vfp_nsyn_opcode ("fnegs");
037e8744 14281 else
477330fc 14282 do_vfp_nsyn_opcode ("fabss");
9db2f6b4
RL
14283
14284 /* ARMv8.2 fp16 instruction. */
14285 if (rs == NS_HH)
14286 do_scalar_fp16_v82_encode ();
037e8744
JB
14287 }
14288 else
14289 {
14290 if (is_neg)
477330fc 14291 do_vfp_nsyn_opcode ("fnegd");
037e8744 14292 else
477330fc 14293 do_vfp_nsyn_opcode ("fabsd");
037e8744
JB
14294 }
14295}
14296
14297/* Encode single-precision (only!) VFP fldm/fstm instructions. Double precision
14298 insns belong to Neon, and are handled elsewhere. */
14299
14300static void
14301do_vfp_nsyn_ldm_stm (int is_dbmode)
14302{
14303 int is_ldm = (inst.instruction & (1 << 20)) != 0;
14304 if (is_ldm)
14305 {
14306 if (is_dbmode)
477330fc 14307 do_vfp_nsyn_opcode ("fldmdbs");
037e8744 14308 else
477330fc 14309 do_vfp_nsyn_opcode ("fldmias");
037e8744
JB
14310 }
14311 else
14312 {
14313 if (is_dbmode)
477330fc 14314 do_vfp_nsyn_opcode ("fstmdbs");
037e8744 14315 else
477330fc 14316 do_vfp_nsyn_opcode ("fstmias");
037e8744
JB
14317 }
14318}
14319
037e8744
JB
14320static void
14321do_vfp_nsyn_sqrt (void)
14322{
9db2f6b4
RL
14323 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14324 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
5f4273c7 14325
9db2f6b4
RL
14326 if (rs == NS_FF || rs == NS_HH)
14327 {
14328 do_vfp_nsyn_opcode ("fsqrts");
14329
14330 /* ARMv8.2 fp16 instruction. */
14331 if (rs == NS_HH)
14332 do_scalar_fp16_v82_encode ();
14333 }
037e8744
JB
14334 else
14335 do_vfp_nsyn_opcode ("fsqrtd");
14336}
14337
14338static void
14339do_vfp_nsyn_div (void)
14340{
9db2f6b4 14341 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
037e8744 14342 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
9db2f6b4 14343 N_F_ALL | N_KEY | N_VFP);
5f4273c7 14344
9db2f6b4
RL
14345 if (rs == NS_FFF || rs == NS_HHH)
14346 {
14347 do_vfp_nsyn_opcode ("fdivs");
14348
14349 /* ARMv8.2 fp16 instruction. */
14350 if (rs == NS_HHH)
14351 do_scalar_fp16_v82_encode ();
14352 }
037e8744
JB
14353 else
14354 do_vfp_nsyn_opcode ("fdivd");
14355}
14356
14357static void
14358do_vfp_nsyn_nmul (void)
14359{
9db2f6b4 14360 enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
037e8744 14361 neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
9db2f6b4 14362 N_F_ALL | N_KEY | N_VFP);
5f4273c7 14363
9db2f6b4 14364 if (rs == NS_FFF || rs == NS_HHH)
037e8744 14365 {
88714cb8 14366 NEON_ENCODE (SINGLE, inst);
037e8744 14367 do_vfp_sp_dyadic ();
9db2f6b4
RL
14368
14369 /* ARMv8.2 fp16 instruction. */
14370 if (rs == NS_HHH)
14371 do_scalar_fp16_v82_encode ();
037e8744
JB
14372 }
14373 else
14374 {
88714cb8 14375 NEON_ENCODE (DOUBLE, inst);
037e8744
JB
14376 do_vfp_dp_rd_rn_rm ();
14377 }
14378 do_vfp_cond_or_thumb ();
9db2f6b4 14379
037e8744
JB
14380}
14381
14382static void
14383do_vfp_nsyn_cmp (void)
14384{
9db2f6b4 14385 enum neon_shape rs;
037e8744
JB
14386 if (inst.operands[1].isreg)
14387 {
9db2f6b4
RL
14388 rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
14389 neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
5f4273c7 14390
9db2f6b4 14391 if (rs == NS_FF || rs == NS_HH)
477330fc
RM
14392 {
14393 NEON_ENCODE (SINGLE, inst);
14394 do_vfp_sp_monadic ();
14395 }
037e8744 14396 else
477330fc
RM
14397 {
14398 NEON_ENCODE (DOUBLE, inst);
14399 do_vfp_dp_rd_rm ();
14400 }
037e8744
JB
14401 }
14402 else
14403 {
9db2f6b4
RL
14404 rs = neon_select_shape (NS_HI, NS_FI, NS_DI, NS_NULL);
14405 neon_check_type (2, rs, N_F_ALL | N_KEY | N_VFP, N_EQK);
037e8744
JB
14406
14407 switch (inst.instruction & 0x0fffffff)
477330fc
RM
14408 {
14409 case N_MNEM_vcmp:
14410 inst.instruction += N_MNEM_vcmpz - N_MNEM_vcmp;
14411 break;
14412 case N_MNEM_vcmpe:
14413 inst.instruction += N_MNEM_vcmpez - N_MNEM_vcmpe;
14414 break;
14415 default:
14416 abort ();
14417 }
5f4273c7 14418
9db2f6b4 14419 if (rs == NS_FI || rs == NS_HI)
477330fc
RM
14420 {
14421 NEON_ENCODE (SINGLE, inst);
14422 do_vfp_sp_compare_z ();
14423 }
037e8744 14424 else
477330fc
RM
14425 {
14426 NEON_ENCODE (DOUBLE, inst);
14427 do_vfp_dp_rd ();
14428 }
037e8744
JB
14429 }
14430 do_vfp_cond_or_thumb ();
9db2f6b4
RL
14431
14432 /* ARMv8.2 fp16 instruction. */
14433 if (rs == NS_HI || rs == NS_HH)
14434 do_scalar_fp16_v82_encode ();
037e8744
JB
14435}
14436
14437static void
14438nsyn_insert_sp (void)
14439{
14440 inst.operands[1] = inst.operands[0];
14441 memset (&inst.operands[0], '\0', sizeof (inst.operands[0]));
fdfde340 14442 inst.operands[0].reg = REG_SP;
037e8744
JB
14443 inst.operands[0].isreg = 1;
14444 inst.operands[0].writeback = 1;
14445 inst.operands[0].present = 1;
14446}
14447
14448static void
14449do_vfp_nsyn_push (void)
14450{
14451 nsyn_insert_sp ();
b126985e
NC
14452
14453 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
14454 _("register list must contain at least 1 and at most 16 "
14455 "registers"));
14456
037e8744
JB
14457 if (inst.operands[1].issingle)
14458 do_vfp_nsyn_opcode ("fstmdbs");
14459 else
14460 do_vfp_nsyn_opcode ("fstmdbd");
14461}
14462
14463static void
14464do_vfp_nsyn_pop (void)
14465{
14466 nsyn_insert_sp ();
b126985e
NC
14467
14468 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
14469 _("register list must contain at least 1 and at most 16 "
14470 "registers"));
14471
037e8744 14472 if (inst.operands[1].issingle)
22b5b651 14473 do_vfp_nsyn_opcode ("fldmias");
037e8744 14474 else
22b5b651 14475 do_vfp_nsyn_opcode ("fldmiad");
037e8744
JB
14476}
14477
14478/* Fix up Neon data-processing instructions, ORing in the correct bits for
14479 ARM mode or Thumb mode and moving the encoded bit 24 to bit 28. */
14480
88714cb8
DG
14481static void
14482neon_dp_fixup (struct arm_it* insn)
037e8744 14483{
88714cb8
DG
14484 unsigned int i = insn->instruction;
14485 insn->is_neon = 1;
14486
037e8744
JB
14487 if (thumb_mode)
14488 {
14489 /* The U bit is at bit 24 by default. Move to bit 28 in Thumb mode. */
14490 if (i & (1 << 24))
477330fc 14491 i |= 1 << 28;
5f4273c7 14492
037e8744 14493 i &= ~(1 << 24);
5f4273c7 14494
037e8744
JB
14495 i |= 0xef000000;
14496 }
14497 else
14498 i |= 0xf2000000;
5f4273c7 14499
88714cb8 14500 insn->instruction = i;
037e8744
JB
14501}
14502
14503/* Turn a size (8, 16, 32, 64) into the respective bit number minus 3
14504 (0, 1, 2, 3). */
14505
14506static unsigned
14507neon_logbits (unsigned x)
14508{
14509 return ffs (x) - 4;
14510}
14511
14512#define LOW4(R) ((R) & 0xf)
14513#define HI1(R) (((R) >> 4) & 1)
14514
14515/* Encode insns with bit pattern:
14516
14517 |28/24|23|22 |21 20|19 16|15 12|11 8|7|6|5|4|3 0|
14518 | U |x |D |size | Rn | Rd |x x x x|N|Q|M|x| Rm |
5f4273c7 14519
037e8744
JB
14520 SIZE is passed in bits. -1 means size field isn't changed, in case it has a
14521 different meaning for some instruction. */
14522
14523static void
14524neon_three_same (int isquad, int ubit, int size)
14525{
14526 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14527 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14528 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
14529 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
14530 inst.instruction |= LOW4 (inst.operands[2].reg);
14531 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
14532 inst.instruction |= (isquad != 0) << 6;
14533 inst.instruction |= (ubit != 0) << 24;
14534 if (size != -1)
14535 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 14536
88714cb8 14537 neon_dp_fixup (&inst);
037e8744
JB
14538}
14539
14540/* Encode instructions of the form:
14541
14542 |28/24|23|22|21 20|19 18|17 16|15 12|11 7|6|5|4|3 0|
14543 | U |x |D |x x |size |x x | Rd |x x x x x|Q|M|x| Rm |
5287ad62
JB
14544
14545 Don't write size if SIZE == -1. */
14546
14547static void
14548neon_two_same (int qbit, int ubit, int size)
14549{
14550 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14551 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14552 inst.instruction |= LOW4 (inst.operands[1].reg);
14553 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14554 inst.instruction |= (qbit != 0) << 6;
14555 inst.instruction |= (ubit != 0) << 24;
14556
14557 if (size != -1)
14558 inst.instruction |= neon_logbits (size) << 18;
14559
88714cb8 14560 neon_dp_fixup (&inst);
5287ad62
JB
14561}
14562
14563/* Neon instruction encoders, in approximate order of appearance. */
14564
14565static void
14566do_neon_dyadic_i_su (void)
14567{
037e8744 14568 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14569 struct neon_type_el et = neon_check_type (3, rs,
14570 N_EQK, N_EQK, N_SU_32 | N_KEY);
037e8744 14571 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14572}
14573
14574static void
14575do_neon_dyadic_i64_su (void)
14576{
037e8744 14577 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14578 struct neon_type_el et = neon_check_type (3, rs,
14579 N_EQK, N_EQK, N_SU_ALL | N_KEY);
037e8744 14580 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14581}
14582
14583static void
14584neon_imm_shift (int write_ubit, int uval, int isquad, struct neon_type_el et,
477330fc 14585 unsigned immbits)
5287ad62
JB
14586{
14587 unsigned size = et.size >> 3;
14588 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14589 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14590 inst.instruction |= LOW4 (inst.operands[1].reg);
14591 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
14592 inst.instruction |= (isquad != 0) << 6;
14593 inst.instruction |= immbits << 16;
14594 inst.instruction |= (size >> 3) << 7;
14595 inst.instruction |= (size & 0x7) << 19;
14596 if (write_ubit)
14597 inst.instruction |= (uval != 0) << 24;
14598
88714cb8 14599 neon_dp_fixup (&inst);
5287ad62
JB
14600}
14601
14602static void
14603do_neon_shl_imm (void)
14604{
14605 if (!inst.operands[2].isreg)
14606 {
037e8744 14607 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14608 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
cb3b1e65
JB
14609 int imm = inst.operands[2].imm;
14610
14611 constraint (imm < 0 || (unsigned)imm >= et.size,
14612 _("immediate out of range for shift"));
88714cb8 14613 NEON_ENCODE (IMMED, inst);
cb3b1e65 14614 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
14615 }
14616 else
14617 {
037e8744 14618 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14619 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14620 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14621 unsigned int tmp;
14622
14623 /* VSHL/VQSHL 3-register variants have syntax such as:
477330fc
RM
14624 vshl.xx Dd, Dm, Dn
14625 whereas other 3-register operations encoded by neon_three_same have
14626 syntax like:
14627 vadd.xx Dd, Dn, Dm
14628 (i.e. with Dn & Dm reversed). Swap operands[1].reg and operands[2].reg
14629 here. */
627907b7
JB
14630 tmp = inst.operands[2].reg;
14631 inst.operands[2].reg = inst.operands[1].reg;
14632 inst.operands[1].reg = tmp;
88714cb8 14633 NEON_ENCODE (INTEGER, inst);
037e8744 14634 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14635 }
14636}
14637
14638static void
14639do_neon_qshl_imm (void)
14640{
14641 if (!inst.operands[2].isreg)
14642 {
037e8744 14643 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62 14644 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
cb3b1e65 14645 int imm = inst.operands[2].imm;
627907b7 14646
cb3b1e65
JB
14647 constraint (imm < 0 || (unsigned)imm >= et.size,
14648 _("immediate out of range for shift"));
88714cb8 14649 NEON_ENCODE (IMMED, inst);
cb3b1e65 14650 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
5287ad62
JB
14651 }
14652 else
14653 {
037e8744 14654 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 14655 struct neon_type_el et = neon_check_type (3, rs,
477330fc 14656 N_EQK, N_SU_ALL | N_KEY, N_EQK | N_SGN);
627907b7
JB
14657 unsigned int tmp;
14658
14659 /* See note in do_neon_shl_imm. */
14660 tmp = inst.operands[2].reg;
14661 inst.operands[2].reg = inst.operands[1].reg;
14662 inst.operands[1].reg = tmp;
88714cb8 14663 NEON_ENCODE (INTEGER, inst);
037e8744 14664 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
5287ad62
JB
14665 }
14666}
14667
627907b7
JB
14668static void
14669do_neon_rshl (void)
14670{
14671 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
14672 struct neon_type_el et = neon_check_type (3, rs,
14673 N_EQK, N_EQK, N_SU_ALL | N_KEY);
14674 unsigned int tmp;
14675
14676 tmp = inst.operands[2].reg;
14677 inst.operands[2].reg = inst.operands[1].reg;
14678 inst.operands[1].reg = tmp;
14679 neon_three_same (neon_quad (rs), et.type == NT_unsigned, et.size);
14680}
14681
5287ad62
JB
14682static int
14683neon_cmode_for_logic_imm (unsigned immediate, unsigned *immbits, int size)
14684{
036dc3f7
PB
14685 /* Handle .I8 pseudo-instructions. */
14686 if (size == 8)
5287ad62 14687 {
5287ad62 14688 /* Unfortunately, this will make everything apart from zero out-of-range.
477330fc
RM
14689 FIXME is this the intended semantics? There doesn't seem much point in
14690 accepting .I8 if so. */
5287ad62
JB
14691 immediate |= immediate << 8;
14692 size = 16;
036dc3f7
PB
14693 }
14694
14695 if (size >= 32)
14696 {
14697 if (immediate == (immediate & 0x000000ff))
14698 {
14699 *immbits = immediate;
14700 return 0x1;
14701 }
14702 else if (immediate == (immediate & 0x0000ff00))
14703 {
14704 *immbits = immediate >> 8;
14705 return 0x3;
14706 }
14707 else if (immediate == (immediate & 0x00ff0000))
14708 {
14709 *immbits = immediate >> 16;
14710 return 0x5;
14711 }
14712 else if (immediate == (immediate & 0xff000000))
14713 {
14714 *immbits = immediate >> 24;
14715 return 0x7;
14716 }
14717 if ((immediate & 0xffff) != (immediate >> 16))
14718 goto bad_immediate;
14719 immediate &= 0xffff;
5287ad62
JB
14720 }
14721
14722 if (immediate == (immediate & 0x000000ff))
14723 {
14724 *immbits = immediate;
036dc3f7 14725 return 0x9;
5287ad62
JB
14726 }
14727 else if (immediate == (immediate & 0x0000ff00))
14728 {
14729 *immbits = immediate >> 8;
036dc3f7 14730 return 0xb;
5287ad62
JB
14731 }
14732
14733 bad_immediate:
dcbf9037 14734 first_error (_("immediate value out of range"));
5287ad62
JB
14735 return FAIL;
14736}
14737
5287ad62
JB
14738static void
14739do_neon_logic (void)
14740{
14741 if (inst.operands[2].present && inst.operands[2].isreg)
14742 {
037e8744 14743 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
14744 neon_check_type (3, rs, N_IGNORE_TYPE);
14745 /* U bit and size field were set as part of the bitmask. */
88714cb8 14746 NEON_ENCODE (INTEGER, inst);
037e8744 14747 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14748 }
14749 else
14750 {
4316f0d2
DG
14751 const int three_ops_form = (inst.operands[2].present
14752 && !inst.operands[2].isreg);
14753 const int immoperand = (three_ops_form ? 2 : 1);
14754 enum neon_shape rs = (three_ops_form
14755 ? neon_select_shape (NS_DDI, NS_QQI, NS_NULL)
14756 : neon_select_shape (NS_DI, NS_QI, NS_NULL));
037e8744 14757 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14758 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
21d799b5 14759 enum neon_opc opcode = (enum neon_opc) inst.instruction & 0x0fffffff;
5287ad62
JB
14760 unsigned immbits;
14761 int cmode;
5f4273c7 14762
5287ad62 14763 if (et.type == NT_invtype)
477330fc 14764 return;
5f4273c7 14765
4316f0d2
DG
14766 if (three_ops_form)
14767 constraint (inst.operands[0].reg != inst.operands[1].reg,
14768 _("first and second operands shall be the same register"));
14769
88714cb8 14770 NEON_ENCODE (IMMED, inst);
5287ad62 14771
4316f0d2 14772 immbits = inst.operands[immoperand].imm;
036dc3f7
PB
14773 if (et.size == 64)
14774 {
14775 /* .i64 is a pseudo-op, so the immediate must be a repeating
14776 pattern. */
4316f0d2
DG
14777 if (immbits != (inst.operands[immoperand].regisimm ?
14778 inst.operands[immoperand].reg : 0))
036dc3f7
PB
14779 {
14780 /* Set immbits to an invalid constant. */
14781 immbits = 0xdeadbeef;
14782 }
14783 }
14784
5287ad62 14785 switch (opcode)
477330fc
RM
14786 {
14787 case N_MNEM_vbic:
14788 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14789 break;
14790
14791 case N_MNEM_vorr:
14792 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14793 break;
14794
14795 case N_MNEM_vand:
14796 /* Pseudo-instruction for VBIC. */
14797 neon_invert_size (&immbits, 0, et.size);
14798 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14799 break;
14800
14801 case N_MNEM_vorn:
14802 /* Pseudo-instruction for VORR. */
14803 neon_invert_size (&immbits, 0, et.size);
14804 cmode = neon_cmode_for_logic_imm (immbits, &immbits, et.size);
14805 break;
14806
14807 default:
14808 abort ();
14809 }
5287ad62
JB
14810
14811 if (cmode == FAIL)
477330fc 14812 return;
5287ad62 14813
037e8744 14814 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14815 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14816 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14817 inst.instruction |= cmode << 8;
14818 neon_write_immbits (immbits);
5f4273c7 14819
88714cb8 14820 neon_dp_fixup (&inst);
5287ad62
JB
14821 }
14822}
14823
14824static void
14825do_neon_bitfield (void)
14826{
037e8744 14827 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14828 neon_check_type (3, rs, N_IGNORE_TYPE);
037e8744 14829 neon_three_same (neon_quad (rs), 0, -1);
5287ad62
JB
14830}
14831
14832static void
dcbf9037 14833neon_dyadic_misc (enum neon_el_type ubit_meaning, unsigned types,
477330fc 14834 unsigned destbits)
5287ad62 14835{
037e8744 14836 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
dcbf9037 14837 struct neon_type_el et = neon_check_type (3, rs, N_EQK | destbits, N_EQK,
477330fc 14838 types | N_KEY);
5287ad62
JB
14839 if (et.type == NT_float)
14840 {
88714cb8 14841 NEON_ENCODE (FLOAT, inst);
cc933301 14842 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
14843 }
14844 else
14845 {
88714cb8 14846 NEON_ENCODE (INTEGER, inst);
037e8744 14847 neon_three_same (neon_quad (rs), et.type == ubit_meaning, et.size);
5287ad62
JB
14848 }
14849}
14850
14851static void
14852do_neon_dyadic_if_su (void)
14853{
dcbf9037 14854 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14855}
14856
14857static void
14858do_neon_dyadic_if_su_d (void)
14859{
14860 /* This version only allow D registers, but that constraint is enforced during
14861 operand parsing so we don't need to do anything extra here. */
dcbf9037 14862 neon_dyadic_misc (NT_unsigned, N_SUF_32, 0);
5287ad62
JB
14863}
14864
5287ad62
JB
14865static void
14866do_neon_dyadic_if_i_d (void)
14867{
428e3f1f
PB
14868 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14869 affected if we specify unsigned args. */
14870 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
5287ad62
JB
14871}
14872
037e8744
JB
14873enum vfp_or_neon_is_neon_bits
14874{
14875 NEON_CHECK_CC = 1,
73924fbc
MGD
14876 NEON_CHECK_ARCH = 2,
14877 NEON_CHECK_ARCH8 = 4
037e8744
JB
14878};
14879
14880/* Call this function if an instruction which may have belonged to the VFP or
14881 Neon instruction sets, but turned out to be a Neon instruction (due to the
14882 operand types involved, etc.). We have to check and/or fix-up a couple of
14883 things:
14884
14885 - Make sure the user hasn't attempted to make a Neon instruction
14886 conditional.
14887 - Alter the value in the condition code field if necessary.
14888 - Make sure that the arch supports Neon instructions.
14889
14890 Which of these operations take place depends on bits from enum
14891 vfp_or_neon_is_neon_bits.
14892
14893 WARNING: This function has side effects! If NEON_CHECK_CC is used and the
14894 current instruction's condition is COND_ALWAYS, the condition field is
14895 changed to inst.uncond_value. This is necessary because instructions shared
14896 between VFP and Neon may be conditional for the VFP variants only, and the
14897 unconditional Neon version must have, e.g., 0xF in the condition field. */
14898
14899static int
14900vfp_or_neon_is_neon (unsigned check)
14901{
14902 /* Conditions are always legal in Thumb mode (IT blocks). */
14903 if (!thumb_mode && (check & NEON_CHECK_CC))
14904 {
14905 if (inst.cond != COND_ALWAYS)
477330fc
RM
14906 {
14907 first_error (_(BAD_COND));
14908 return FAIL;
14909 }
037e8744 14910 if (inst.uncond_value != -1)
477330fc 14911 inst.instruction |= inst.uncond_value << 28;
037e8744 14912 }
5f4273c7 14913
037e8744 14914 if ((check & NEON_CHECK_ARCH)
73924fbc
MGD
14915 && !mark_feature_used (&fpu_neon_ext_v1))
14916 {
14917 first_error (_(BAD_FPU));
14918 return FAIL;
14919 }
14920
14921 if ((check & NEON_CHECK_ARCH8)
14922 && !mark_feature_used (&fpu_neon_ext_armv8))
037e8744
JB
14923 {
14924 first_error (_(BAD_FPU));
14925 return FAIL;
14926 }
5f4273c7 14927
037e8744
JB
14928 return SUCCESS;
14929}
14930
5287ad62
JB
14931static void
14932do_neon_addsub_if_i (void)
14933{
037e8744
JB
14934 if (try_vfp_nsyn (3, do_vfp_nsyn_add_sub) == SUCCESS)
14935 return;
14936
14937 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
14938 return;
14939
5287ad62
JB
14940 /* The "untyped" case can't happen. Do this to stop the "U" bit being
14941 affected if we specify unsigned args. */
dcbf9037 14942 neon_dyadic_misc (NT_untyped, N_IF_32 | N_I64, 0);
5287ad62
JB
14943}
14944
14945/* Swaps operands 1 and 2. If operand 1 (optional arg) was omitted, we want the
14946 result to be:
14947 V<op> A,B (A is operand 0, B is operand 2)
14948 to mean:
14949 V<op> A,B,A
14950 not:
14951 V<op> A,B,B
14952 so handle that case specially. */
14953
14954static void
14955neon_exchange_operands (void)
14956{
5287ad62
JB
14957 if (inst.operands[1].present)
14958 {
e1fa0163
NC
14959 void *scratch = xmalloc (sizeof (inst.operands[0]));
14960
5287ad62
JB
14961 /* Swap operands[1] and operands[2]. */
14962 memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
14963 inst.operands[1] = inst.operands[2];
14964 memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
e1fa0163 14965 free (scratch);
5287ad62
JB
14966 }
14967 else
14968 {
14969 inst.operands[1] = inst.operands[2];
14970 inst.operands[2] = inst.operands[0];
14971 }
14972}
14973
14974static void
14975neon_compare (unsigned regtypes, unsigned immtypes, int invert)
14976{
14977 if (inst.operands[2].isreg)
14978 {
14979 if (invert)
477330fc 14980 neon_exchange_operands ();
dcbf9037 14981 neon_dyadic_misc (NT_unsigned, regtypes, N_SIZ);
5287ad62
JB
14982 }
14983 else
14984 {
037e8744 14985 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
dcbf9037 14986 struct neon_type_el et = neon_check_type (2, rs,
477330fc 14987 N_EQK | N_SIZ, immtypes | N_KEY);
5287ad62 14988
88714cb8 14989 NEON_ENCODE (IMMED, inst);
5287ad62
JB
14990 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
14991 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
14992 inst.instruction |= LOW4 (inst.operands[1].reg);
14993 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 14994 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
14995 inst.instruction |= (et.type == NT_float) << 10;
14996 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 14997
88714cb8 14998 neon_dp_fixup (&inst);
5287ad62
JB
14999 }
15000}
15001
15002static void
15003do_neon_cmp (void)
15004{
cc933301 15005 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, FALSE);
5287ad62
JB
15006}
15007
15008static void
15009do_neon_cmp_inv (void)
15010{
cc933301 15011 neon_compare (N_SUF_32, N_S_32 | N_F_16_32, TRUE);
5287ad62
JB
15012}
15013
15014static void
15015do_neon_ceq (void)
15016{
15017 neon_compare (N_IF_32, N_IF_32, FALSE);
15018}
15019
15020/* For multiply instructions, we have the possibility of 16-bit or 32-bit
15021 scalars, which are encoded in 5 bits, M : Rm.
15022 For 16-bit scalars, the register is encoded in Rm[2:0] and the index in
15023 M:Rm[3], and for 32-bit scalars, the register is encoded in Rm[3:0] and the
15024 index in M. */
15025
15026static unsigned
15027neon_scalar_for_mul (unsigned scalar, unsigned elsize)
15028{
dcbf9037
JB
15029 unsigned regno = NEON_SCALAR_REG (scalar);
15030 unsigned elno = NEON_SCALAR_INDEX (scalar);
5287ad62
JB
15031
15032 switch (elsize)
15033 {
15034 case 16:
15035 if (regno > 7 || elno > 3)
477330fc 15036 goto bad_scalar;
5287ad62 15037 return regno | (elno << 3);
5f4273c7 15038
5287ad62
JB
15039 case 32:
15040 if (regno > 15 || elno > 1)
477330fc 15041 goto bad_scalar;
5287ad62
JB
15042 return regno | (elno << 4);
15043
15044 default:
15045 bad_scalar:
dcbf9037 15046 first_error (_("scalar out of range for multiply instruction"));
5287ad62
JB
15047 }
15048
15049 return 0;
15050}
15051
15052/* Encode multiply / multiply-accumulate scalar instructions. */
15053
15054static void
15055neon_mul_mac (struct neon_type_el et, int ubit)
15056{
dcbf9037
JB
15057 unsigned scalar;
15058
15059 /* Give a more helpful error message if we have an invalid type. */
15060 if (et.type == NT_invtype)
15061 return;
5f4273c7 15062
dcbf9037 15063 scalar = neon_scalar_for_mul (inst.operands[2].reg, et.size);
5287ad62
JB
15064 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15065 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15066 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
15067 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
15068 inst.instruction |= LOW4 (scalar);
15069 inst.instruction |= HI1 (scalar) << 5;
15070 inst.instruction |= (et.type == NT_float) << 8;
15071 inst.instruction |= neon_logbits (et.size) << 20;
15072 inst.instruction |= (ubit != 0) << 24;
15073
88714cb8 15074 neon_dp_fixup (&inst);
5287ad62
JB
15075}
15076
15077static void
15078do_neon_mac_maybe_scalar (void)
15079{
037e8744
JB
15080 if (try_vfp_nsyn (3, do_vfp_nsyn_mla_mls) == SUCCESS)
15081 return;
15082
15083 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15084 return;
15085
5287ad62
JB
15086 if (inst.operands[2].isscalar)
15087 {
037e8744 15088 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 15089 struct neon_type_el et = neon_check_type (3, rs,
589a7d88 15090 N_EQK, N_EQK, N_I16 | N_I32 | N_F_16_32 | N_KEY);
88714cb8 15091 NEON_ENCODE (SCALAR, inst);
037e8744 15092 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
15093 }
15094 else
428e3f1f
PB
15095 {
15096 /* The "untyped" case can't happen. Do this to stop the "U" bit being
15097 affected if we specify unsigned args. */
15098 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
15099 }
5287ad62
JB
15100}
15101
62f3b8c8
PB
15102static void
15103do_neon_fmac (void)
15104{
15105 if (try_vfp_nsyn (3, do_vfp_nsyn_fma_fms) == SUCCESS)
15106 return;
15107
15108 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15109 return;
15110
15111 neon_dyadic_misc (NT_untyped, N_IF_32, 0);
15112}
15113
5287ad62
JB
15114static void
15115do_neon_tst (void)
15116{
037e8744 15117 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62
JB
15118 struct neon_type_el et = neon_check_type (3, rs,
15119 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_KEY);
037e8744 15120 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
15121}
15122
15123/* VMUL with 3 registers allows the P8 type. The scalar version supports the
15124 same types as the MAC equivalents. The polynomial type for this instruction
15125 is encoded the same as the integer type. */
15126
15127static void
15128do_neon_mul (void)
15129{
037e8744
JB
15130 if (try_vfp_nsyn (3, do_vfp_nsyn_mul) == SUCCESS)
15131 return;
15132
15133 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15134 return;
15135
5287ad62
JB
15136 if (inst.operands[2].isscalar)
15137 do_neon_mac_maybe_scalar ();
15138 else
cc933301 15139 neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F16 | N_F32 | N_P8, 0);
5287ad62
JB
15140}
15141
15142static void
15143do_neon_qdmulh (void)
15144{
15145 if (inst.operands[2].isscalar)
15146 {
037e8744 15147 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
5287ad62 15148 struct neon_type_el et = neon_check_type (3, rs,
477330fc 15149 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 15150 NEON_ENCODE (SCALAR, inst);
037e8744 15151 neon_mul_mac (et, neon_quad (rs));
5287ad62
JB
15152 }
15153 else
15154 {
037e8744 15155 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
5287ad62 15156 struct neon_type_el et = neon_check_type (3, rs,
477330fc 15157 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
88714cb8 15158 NEON_ENCODE (INTEGER, inst);
5287ad62 15159 /* The U bit (rounding) comes from bit mask. */
037e8744 15160 neon_three_same (neon_quad (rs), 0, et.size);
5287ad62
JB
15161 }
15162}
15163
643afb90
MW
15164static void
15165do_neon_qrdmlah (void)
15166{
15167 /* Check we're on the correct architecture. */
15168 if (!mark_feature_used (&fpu_neon_ext_armv8))
15169 inst.error =
15170 _("instruction form not available on this architecture.");
15171 else if (!mark_feature_used (&fpu_neon_ext_v8_1))
15172 {
15173 as_warn (_("this instruction implies use of ARMv8.1 AdvSIMD."));
15174 record_feature_use (&fpu_neon_ext_v8_1);
15175 }
15176
15177 if (inst.operands[2].isscalar)
15178 {
15179 enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
15180 struct neon_type_el et = neon_check_type (3, rs,
15181 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
15182 NEON_ENCODE (SCALAR, inst);
15183 neon_mul_mac (et, neon_quad (rs));
15184 }
15185 else
15186 {
15187 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
15188 struct neon_type_el et = neon_check_type (3, rs,
15189 N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
15190 NEON_ENCODE (INTEGER, inst);
15191 /* The U bit (rounding) comes from bit mask. */
15192 neon_three_same (neon_quad (rs), 0, et.size);
15193 }
15194}
15195
5287ad62
JB
15196static void
15197do_neon_fcmp_absolute (void)
15198{
037e8744 15199 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
cc933301
JW
15200 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
15201 N_F_16_32 | N_KEY);
5287ad62 15202 /* Size field comes from bit mask. */
cc933301 15203 neon_three_same (neon_quad (rs), 1, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
15204}
15205
15206static void
15207do_neon_fcmp_absolute_inv (void)
15208{
15209 neon_exchange_operands ();
15210 do_neon_fcmp_absolute ();
15211}
15212
15213static void
15214do_neon_step (void)
15215{
037e8744 15216 enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
cc933301
JW
15217 struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
15218 N_F_16_32 | N_KEY);
15219 neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
5287ad62
JB
15220}
15221
15222static void
15223do_neon_abs_neg (void)
15224{
037e8744
JB
15225 enum neon_shape rs;
15226 struct neon_type_el et;
5f4273c7 15227
037e8744
JB
15228 if (try_vfp_nsyn (2, do_vfp_nsyn_abs_neg) == SUCCESS)
15229 return;
15230
15231 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15232 return;
15233
15234 rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
cc933301 15235 et = neon_check_type (2, rs, N_EQK, N_S_32 | N_F_16_32 | N_KEY);
5f4273c7 15236
5287ad62
JB
15237 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15238 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15239 inst.instruction |= LOW4 (inst.operands[1].reg);
15240 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 15241 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
15242 inst.instruction |= (et.type == NT_float) << 10;
15243 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 15244
88714cb8 15245 neon_dp_fixup (&inst);
5287ad62
JB
15246}
15247
15248static void
15249do_neon_sli (void)
15250{
037e8744 15251 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15252 struct neon_type_el et = neon_check_type (2, rs,
15253 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15254 int imm = inst.operands[2].imm;
15255 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 15256 _("immediate out of range for insert"));
037e8744 15257 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
15258}
15259
15260static void
15261do_neon_sri (void)
15262{
037e8744 15263 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15264 struct neon_type_el et = neon_check_type (2, rs,
15265 N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
15266 int imm = inst.operands[2].imm;
15267 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15268 _("immediate out of range for insert"));
037e8744 15269 neon_imm_shift (FALSE, 0, neon_quad (rs), et, et.size - imm);
5287ad62
JB
15270}
15271
15272static void
15273do_neon_qshlu_imm (void)
15274{
037e8744 15275 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
15276 struct neon_type_el et = neon_check_type (2, rs,
15277 N_EQK | N_UNS, N_S8 | N_S16 | N_S32 | N_S64 | N_KEY);
15278 int imm = inst.operands[2].imm;
15279 constraint (imm < 0 || (unsigned)imm >= et.size,
477330fc 15280 _("immediate out of range for shift"));
5287ad62
JB
15281 /* Only encodes the 'U present' variant of the instruction.
15282 In this case, signed types have OP (bit 8) set to 0.
15283 Unsigned types have OP set to 1. */
15284 inst.instruction |= (et.type == NT_unsigned) << 8;
15285 /* The rest of the bits are the same as other immediate shifts. */
037e8744 15286 neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
5287ad62
JB
15287}
15288
15289static void
15290do_neon_qmovn (void)
15291{
15292 struct neon_type_el et = neon_check_type (2, NS_DQ,
15293 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
15294 /* Saturating move where operands can be signed or unsigned, and the
15295 destination has the same signedness. */
88714cb8 15296 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15297 if (et.type == NT_unsigned)
15298 inst.instruction |= 0xc0;
15299 else
15300 inst.instruction |= 0x80;
15301 neon_two_same (0, 1, et.size / 2);
15302}
15303
15304static void
15305do_neon_qmovun (void)
15306{
15307 struct neon_type_el et = neon_check_type (2, NS_DQ,
15308 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
15309 /* Saturating move with unsigned results. Operands must be signed. */
88714cb8 15310 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15311 neon_two_same (0, 1, et.size / 2);
15312}
15313
15314static void
15315do_neon_rshift_sat_narrow (void)
15316{
15317 /* FIXME: Types for narrowing. If operands are signed, results can be signed
15318 or unsigned. If operands are unsigned, results must also be unsigned. */
15319 struct neon_type_el et = neon_check_type (2, NS_DQI,
15320 N_EQK | N_HLF, N_SU_16_64 | N_KEY);
15321 int imm = inst.operands[2].imm;
15322 /* This gets the bounds check, size encoding and immediate bits calculation
15323 right. */
15324 et.size /= 2;
5f4273c7 15325
5287ad62
JB
15326 /* VQ{R}SHRN.I<size> <Dd>, <Qm>, #0 is a synonym for
15327 VQMOVN.I<size> <Dd>, <Qm>. */
15328 if (imm == 0)
15329 {
15330 inst.operands[2].present = 0;
15331 inst.instruction = N_MNEM_vqmovn;
15332 do_neon_qmovn ();
15333 return;
15334 }
5f4273c7 15335
5287ad62 15336 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15337 _("immediate out of range"));
5287ad62
JB
15338 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, et.size - imm);
15339}
15340
15341static void
15342do_neon_rshift_sat_narrow_u (void)
15343{
15344 /* FIXME: Types for narrowing. If operands are signed, results can be signed
15345 or unsigned. If operands are unsigned, results must also be unsigned. */
15346 struct neon_type_el et = neon_check_type (2, NS_DQI,
15347 N_EQK | N_HLF | N_UNS, N_S16 | N_S32 | N_S64 | N_KEY);
15348 int imm = inst.operands[2].imm;
15349 /* This gets the bounds check, size encoding and immediate bits calculation
15350 right. */
15351 et.size /= 2;
15352
15353 /* VQSHRUN.I<size> <Dd>, <Qm>, #0 is a synonym for
15354 VQMOVUN.I<size> <Dd>, <Qm>. */
15355 if (imm == 0)
15356 {
15357 inst.operands[2].present = 0;
15358 inst.instruction = N_MNEM_vqmovun;
15359 do_neon_qmovun ();
15360 return;
15361 }
15362
15363 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15364 _("immediate out of range"));
5287ad62
JB
15365 /* FIXME: The manual is kind of unclear about what value U should have in
15366 VQ{R}SHRUN instructions, but U=0, op=0 definitely encodes VRSHR, so it
15367 must be 1. */
15368 neon_imm_shift (TRUE, 1, 0, et, et.size - imm);
15369}
15370
15371static void
15372do_neon_movn (void)
15373{
15374 struct neon_type_el et = neon_check_type (2, NS_DQ,
15375 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
88714cb8 15376 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15377 neon_two_same (0, 1, et.size / 2);
15378}
15379
15380static void
15381do_neon_rshift_narrow (void)
15382{
15383 struct neon_type_el et = neon_check_type (2, NS_DQI,
15384 N_EQK | N_HLF, N_I16 | N_I32 | N_I64 | N_KEY);
15385 int imm = inst.operands[2].imm;
15386 /* This gets the bounds check, size encoding and immediate bits calculation
15387 right. */
15388 et.size /= 2;
5f4273c7 15389
5287ad62
JB
15390 /* If immediate is zero then we are a pseudo-instruction for
15391 VMOVN.I<size> <Dd>, <Qm> */
15392 if (imm == 0)
15393 {
15394 inst.operands[2].present = 0;
15395 inst.instruction = N_MNEM_vmovn;
15396 do_neon_movn ();
15397 return;
15398 }
5f4273c7 15399
5287ad62 15400 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 15401 _("immediate out of range for narrowing operation"));
5287ad62
JB
15402 neon_imm_shift (FALSE, 0, 0, et, et.size - imm);
15403}
15404
15405static void
15406do_neon_shll (void)
15407{
15408 /* FIXME: Type checking when lengthening. */
15409 struct neon_type_el et = neon_check_type (2, NS_QDI,
15410 N_EQK | N_DBL, N_I8 | N_I16 | N_I32 | N_KEY);
15411 unsigned imm = inst.operands[2].imm;
15412
15413 if (imm == et.size)
15414 {
15415 /* Maximum shift variant. */
88714cb8 15416 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
15417 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15418 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15419 inst.instruction |= LOW4 (inst.operands[1].reg);
15420 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15421 inst.instruction |= neon_logbits (et.size) << 18;
5f4273c7 15422
88714cb8 15423 neon_dp_fixup (&inst);
5287ad62
JB
15424 }
15425 else
15426 {
15427 /* A more-specific type check for non-max versions. */
15428 et = neon_check_type (2, NS_QDI,
477330fc 15429 N_EQK | N_DBL, N_SU_32 | N_KEY);
88714cb8 15430 NEON_ENCODE (IMMED, inst);
5287ad62
JB
15431 neon_imm_shift (TRUE, et.type == NT_unsigned, 0, et, imm);
15432 }
15433}
15434
037e8744 15435/* Check the various types for the VCVT instruction, and return which version
5287ad62
JB
15436 the current instruction is. */
15437
6b9a8b67
MGD
15438#define CVT_FLAVOUR_VAR \
15439 CVT_VAR (s32_f32, N_S32, N_F32, whole_reg, "ftosls", "ftosis", "ftosizs") \
15440 CVT_VAR (u32_f32, N_U32, N_F32, whole_reg, "ftouls", "ftouis", "ftouizs") \
15441 CVT_VAR (f32_s32, N_F32, N_S32, whole_reg, "fsltos", "fsitos", NULL) \
15442 CVT_VAR (f32_u32, N_F32, N_U32, whole_reg, "fultos", "fuitos", NULL) \
15443 /* Half-precision conversions. */ \
cc933301
JW
15444 CVT_VAR (s16_f16, N_S16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
15445 CVT_VAR (u16_f16, N_U16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL) \
15446 CVT_VAR (f16_s16, N_F16 | N_KEY, N_S16, whole_reg, NULL, NULL, NULL) \
15447 CVT_VAR (f16_u16, N_F16 | N_KEY, N_U16, whole_reg, NULL, NULL, NULL) \
6b9a8b67
MGD
15448 CVT_VAR (f32_f16, N_F32, N_F16, whole_reg, NULL, NULL, NULL) \
15449 CVT_VAR (f16_f32, N_F16, N_F32, whole_reg, NULL, NULL, NULL) \
9db2f6b4
RL
15450 /* New VCVT instructions introduced by ARMv8.2 fp16 extension. \
15451 Compared with single/double precision variants, only the co-processor \
15452 field is different, so the encoding flow is reused here. */ \
15453 CVT_VAR (f16_s32, N_F16 | N_KEY, N_S32, N_VFP, "fsltos", "fsitos", NULL) \
15454 CVT_VAR (f16_u32, N_F16 | N_KEY, N_U32, N_VFP, "fultos", "fuitos", NULL) \
15455 CVT_VAR (u32_f16, N_U32, N_F16 | N_KEY, N_VFP, "ftouls", "ftouis", "ftouizs")\
15456 CVT_VAR (s32_f16, N_S32, N_F16 | N_KEY, N_VFP, "ftosls", "ftosis", "ftosizs")\
6b9a8b67
MGD
15457 /* VFP instructions. */ \
15458 CVT_VAR (f32_f64, N_F32, N_F64, N_VFP, NULL, "fcvtsd", NULL) \
15459 CVT_VAR (f64_f32, N_F64, N_F32, N_VFP, NULL, "fcvtds", NULL) \
15460 CVT_VAR (s32_f64, N_S32, N_F64 | key, N_VFP, "ftosld", "ftosid", "ftosizd") \
15461 CVT_VAR (u32_f64, N_U32, N_F64 | key, N_VFP, "ftould", "ftouid", "ftouizd") \
15462 CVT_VAR (f64_s32, N_F64 | key, N_S32, N_VFP, "fsltod", "fsitod", NULL) \
15463 CVT_VAR (f64_u32, N_F64 | key, N_U32, N_VFP, "fultod", "fuitod", NULL) \
15464 /* VFP instructions with bitshift. */ \
15465 CVT_VAR (f32_s16, N_F32 | key, N_S16, N_VFP, "fshtos", NULL, NULL) \
15466 CVT_VAR (f32_u16, N_F32 | key, N_U16, N_VFP, "fuhtos", NULL, NULL) \
15467 CVT_VAR (f64_s16, N_F64 | key, N_S16, N_VFP, "fshtod", NULL, NULL) \
15468 CVT_VAR (f64_u16, N_F64 | key, N_U16, N_VFP, "fuhtod", NULL, NULL) \
15469 CVT_VAR (s16_f32, N_S16, N_F32 | key, N_VFP, "ftoshs", NULL, NULL) \
15470 CVT_VAR (u16_f32, N_U16, N_F32 | key, N_VFP, "ftouhs", NULL, NULL) \
15471 CVT_VAR (s16_f64, N_S16, N_F64 | key, N_VFP, "ftoshd", NULL, NULL) \
15472 CVT_VAR (u16_f64, N_U16, N_F64 | key, N_VFP, "ftouhd", NULL, NULL)
15473
15474#define CVT_VAR(C, X, Y, R, BSN, CN, ZN) \
15475 neon_cvt_flavour_##C,
15476
15477/* The different types of conversions we can do. */
15478enum neon_cvt_flavour
15479{
15480 CVT_FLAVOUR_VAR
15481 neon_cvt_flavour_invalid,
15482 neon_cvt_flavour_first_fp = neon_cvt_flavour_f32_f64
15483};
15484
15485#undef CVT_VAR
15486
15487static enum neon_cvt_flavour
15488get_neon_cvt_flavour (enum neon_shape rs)
5287ad62 15489{
6b9a8b67
MGD
15490#define CVT_VAR(C,X,Y,R,BSN,CN,ZN) \
15491 et = neon_check_type (2, rs, (R) | (X), (R) | (Y)); \
15492 if (et.type != NT_invtype) \
15493 { \
15494 inst.error = NULL; \
15495 return (neon_cvt_flavour_##C); \
5287ad62 15496 }
6b9a8b67 15497
5287ad62 15498 struct neon_type_el et;
037e8744 15499 unsigned whole_reg = (rs == NS_FFI || rs == NS_FD || rs == NS_DF
477330fc 15500 || rs == NS_FF) ? N_VFP : 0;
037e8744
JB
15501 /* The instruction versions which take an immediate take one register
15502 argument, which is extended to the width of the full register. Thus the
15503 "source" and "destination" registers must have the same width. Hack that
15504 here by making the size equal to the key (wider, in this case) operand. */
15505 unsigned key = (rs == NS_QQI || rs == NS_DDI || rs == NS_FFI) ? N_KEY : 0;
5f4273c7 15506
6b9a8b67
MGD
15507 CVT_FLAVOUR_VAR;
15508
15509 return neon_cvt_flavour_invalid;
5287ad62
JB
15510#undef CVT_VAR
15511}
15512
7e8e6784
MGD
15513enum neon_cvt_mode
15514{
15515 neon_cvt_mode_a,
15516 neon_cvt_mode_n,
15517 neon_cvt_mode_p,
15518 neon_cvt_mode_m,
15519 neon_cvt_mode_z,
30bdf752
MGD
15520 neon_cvt_mode_x,
15521 neon_cvt_mode_r
7e8e6784
MGD
15522};
15523
037e8744
JB
15524/* Neon-syntax VFP conversions. */
15525
5287ad62 15526static void
6b9a8b67 15527do_vfp_nsyn_cvt (enum neon_shape rs, enum neon_cvt_flavour flavour)
5287ad62 15528{
037e8744 15529 const char *opname = 0;
5f4273c7 15530
d54af2d0
RL
15531 if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI
15532 || rs == NS_FHI || rs == NS_HFI)
5287ad62 15533 {
037e8744
JB
15534 /* Conversions with immediate bitshift. */
15535 const char *enc[] =
477330fc 15536 {
6b9a8b67
MGD
15537#define CVT_VAR(C,A,B,R,BSN,CN,ZN) BSN,
15538 CVT_FLAVOUR_VAR
15539 NULL
15540#undef CVT_VAR
477330fc 15541 };
037e8744 15542
6b9a8b67 15543 if (flavour < (int) ARRAY_SIZE (enc))
477330fc
RM
15544 {
15545 opname = enc[flavour];
15546 constraint (inst.operands[0].reg != inst.operands[1].reg,
15547 _("operands 0 and 1 must be the same register"));
15548 inst.operands[1] = inst.operands[2];
15549 memset (&inst.operands[2], '\0', sizeof (inst.operands[2]));
15550 }
5287ad62
JB
15551 }
15552 else
15553 {
037e8744
JB
15554 /* Conversions without bitshift. */
15555 const char *enc[] =
477330fc 15556 {
6b9a8b67
MGD
15557#define CVT_VAR(C,A,B,R,BSN,CN,ZN) CN,
15558 CVT_FLAVOUR_VAR
15559 NULL
15560#undef CVT_VAR
477330fc 15561 };
037e8744 15562
6b9a8b67 15563 if (flavour < (int) ARRAY_SIZE (enc))
477330fc 15564 opname = enc[flavour];
037e8744
JB
15565 }
15566
15567 if (opname)
15568 do_vfp_nsyn_opcode (opname);
9db2f6b4
RL
15569
15570 /* ARMv8.2 fp16 VCVT instruction. */
15571 if (flavour == neon_cvt_flavour_s32_f16
15572 || flavour == neon_cvt_flavour_u32_f16
15573 || flavour == neon_cvt_flavour_f16_u32
15574 || flavour == neon_cvt_flavour_f16_s32)
15575 do_scalar_fp16_v82_encode ();
037e8744
JB
15576}
15577
15578static void
15579do_vfp_nsyn_cvtz (void)
15580{
d54af2d0 15581 enum neon_shape rs = neon_select_shape (NS_FH, NS_FF, NS_FD, NS_NULL);
6b9a8b67 15582 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744
JB
15583 const char *enc[] =
15584 {
6b9a8b67
MGD
15585#define CVT_VAR(C,A,B,R,BSN,CN,ZN) ZN,
15586 CVT_FLAVOUR_VAR
15587 NULL
15588#undef CVT_VAR
037e8744
JB
15589 };
15590
6b9a8b67 15591 if (flavour < (int) ARRAY_SIZE (enc) && enc[flavour])
037e8744
JB
15592 do_vfp_nsyn_opcode (enc[flavour]);
15593}
f31fef98 15594
037e8744 15595static void
bacebabc 15596do_vfp_nsyn_cvt_fpv8 (enum neon_cvt_flavour flavour,
7e8e6784
MGD
15597 enum neon_cvt_mode mode)
15598{
15599 int sz, op;
15600 int rm;
15601
a715796b
TG
15602 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
15603 D register operands. */
15604 if (flavour == neon_cvt_flavour_s32_f64
15605 || flavour == neon_cvt_flavour_u32_f64)
15606 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15607 _(BAD_FPU));
15608
9db2f6b4
RL
15609 if (flavour == neon_cvt_flavour_s32_f16
15610 || flavour == neon_cvt_flavour_u32_f16)
15611 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
15612 _(BAD_FP16));
15613
7e8e6784
MGD
15614 set_it_insn_type (OUTSIDE_IT_INSN);
15615
15616 switch (flavour)
15617 {
15618 case neon_cvt_flavour_s32_f64:
15619 sz = 1;
827f64ff 15620 op = 1;
7e8e6784
MGD
15621 break;
15622 case neon_cvt_flavour_s32_f32:
15623 sz = 0;
15624 op = 1;
15625 break;
9db2f6b4
RL
15626 case neon_cvt_flavour_s32_f16:
15627 sz = 0;
15628 op = 1;
15629 break;
7e8e6784
MGD
15630 case neon_cvt_flavour_u32_f64:
15631 sz = 1;
15632 op = 0;
15633 break;
15634 case neon_cvt_flavour_u32_f32:
15635 sz = 0;
15636 op = 0;
15637 break;
9db2f6b4
RL
15638 case neon_cvt_flavour_u32_f16:
15639 sz = 0;
15640 op = 0;
15641 break;
7e8e6784
MGD
15642 default:
15643 first_error (_("invalid instruction shape"));
15644 return;
15645 }
15646
15647 switch (mode)
15648 {
15649 case neon_cvt_mode_a: rm = 0; break;
15650 case neon_cvt_mode_n: rm = 1; break;
15651 case neon_cvt_mode_p: rm = 2; break;
15652 case neon_cvt_mode_m: rm = 3; break;
15653 default: first_error (_("invalid rounding mode")); return;
15654 }
15655
15656 NEON_ENCODE (FPV8, inst);
15657 encode_arm_vfp_reg (inst.operands[0].reg, VFP_REG_Sd);
15658 encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
15659 inst.instruction |= sz << 8;
9db2f6b4
RL
15660
15661 /* ARMv8.2 fp16 VCVT instruction. */
15662 if (flavour == neon_cvt_flavour_s32_f16
15663 ||flavour == neon_cvt_flavour_u32_f16)
15664 do_scalar_fp16_v82_encode ();
7e8e6784
MGD
15665 inst.instruction |= op << 7;
15666 inst.instruction |= rm << 16;
15667 inst.instruction |= 0xf0000000;
15668 inst.is_neon = TRUE;
15669}
15670
15671static void
15672do_neon_cvt_1 (enum neon_cvt_mode mode)
037e8744
JB
15673{
15674 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
d54af2d0
RL
15675 NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ,
15676 NS_FH, NS_HF, NS_FHI, NS_HFI,
15677 NS_NULL);
6b9a8b67 15678 enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
037e8744 15679
cc933301
JW
15680 if (flavour == neon_cvt_flavour_invalid)
15681 return;
15682
e3e535bc 15683 /* PR11109: Handle round-to-zero for VCVT conversions. */
7e8e6784 15684 if (mode == neon_cvt_mode_z
e3e535bc 15685 && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
cc933301
JW
15686 && (flavour == neon_cvt_flavour_s16_f16
15687 || flavour == neon_cvt_flavour_u16_f16
15688 || flavour == neon_cvt_flavour_s32_f32
bacebabc
RM
15689 || flavour == neon_cvt_flavour_u32_f32
15690 || flavour == neon_cvt_flavour_s32_f64
6b9a8b67 15691 || flavour == neon_cvt_flavour_u32_f64)
e3e535bc
NC
15692 && (rs == NS_FD || rs == NS_FF))
15693 {
15694 do_vfp_nsyn_cvtz ();
15695 return;
15696 }
15697
9db2f6b4
RL
15698 /* ARMv8.2 fp16 VCVT conversions. */
15699 if (mode == neon_cvt_mode_z
15700 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16)
15701 && (flavour == neon_cvt_flavour_s32_f16
15702 || flavour == neon_cvt_flavour_u32_f16)
15703 && (rs == NS_FH))
15704 {
15705 do_vfp_nsyn_cvtz ();
15706 do_scalar_fp16_v82_encode ();
15707 return;
15708 }
15709
037e8744 15710 /* VFP rather than Neon conversions. */
6b9a8b67 15711 if (flavour >= neon_cvt_flavour_first_fp)
037e8744 15712 {
7e8e6784
MGD
15713 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15714 do_vfp_nsyn_cvt (rs, flavour);
15715 else
15716 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
15717
037e8744
JB
15718 return;
15719 }
15720
15721 switch (rs)
15722 {
15723 case NS_DDI:
15724 case NS_QQI:
15725 {
477330fc 15726 unsigned immbits;
cc933301
JW
15727 unsigned enctab[] = {0x0000100, 0x1000100, 0x0, 0x1000000,
15728 0x0000100, 0x1000100, 0x0, 0x1000000};
35997600 15729
477330fc
RM
15730 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15731 return;
037e8744 15732
477330fc
RM
15733 /* Fixed-point conversion with #0 immediate is encoded as an
15734 integer conversion. */
15735 if (inst.operands[2].present && inst.operands[2].imm == 0)
15736 goto int_encode;
477330fc
RM
15737 NEON_ENCODE (IMMED, inst);
15738 if (flavour != neon_cvt_flavour_invalid)
15739 inst.instruction |= enctab[flavour];
15740 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15741 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15742 inst.instruction |= LOW4 (inst.operands[1].reg);
15743 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15744 inst.instruction |= neon_quad (rs) << 6;
15745 inst.instruction |= 1 << 21;
cc933301
JW
15746 if (flavour < neon_cvt_flavour_s16_f16)
15747 {
15748 inst.instruction |= 1 << 21;
15749 immbits = 32 - inst.operands[2].imm;
15750 inst.instruction |= immbits << 16;
15751 }
15752 else
15753 {
15754 inst.instruction |= 3 << 20;
15755 immbits = 16 - inst.operands[2].imm;
15756 inst.instruction |= immbits << 16;
15757 inst.instruction &= ~(1 << 9);
15758 }
477330fc
RM
15759
15760 neon_dp_fixup (&inst);
037e8744
JB
15761 }
15762 break;
15763
15764 case NS_DD:
15765 case NS_QQ:
7e8e6784
MGD
15766 if (mode != neon_cvt_mode_x && mode != neon_cvt_mode_z)
15767 {
15768 NEON_ENCODE (FLOAT, inst);
15769 set_it_insn_type (OUTSIDE_IT_INSN);
15770
15771 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
15772 return;
15773
15774 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15775 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15776 inst.instruction |= LOW4 (inst.operands[1].reg);
15777 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15778 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
15779 inst.instruction |= (flavour == neon_cvt_flavour_u16_f16
15780 || flavour == neon_cvt_flavour_u32_f32) << 7;
7e8e6784 15781 inst.instruction |= mode << 8;
cc933301
JW
15782 if (flavour == neon_cvt_flavour_u16_f16
15783 || flavour == neon_cvt_flavour_s16_f16)
15784 /* Mask off the original size bits and reencode them. */
15785 inst.instruction = ((inst.instruction & 0xfff3ffff) | (1 << 18));
15786
7e8e6784
MGD
15787 if (thumb_mode)
15788 inst.instruction |= 0xfc000000;
15789 else
15790 inst.instruction |= 0xf0000000;
15791 }
15792 else
15793 {
037e8744 15794 int_encode:
7e8e6784 15795 {
cc933301
JW
15796 unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080,
15797 0x100, 0x180, 0x0, 0x080};
037e8744 15798
7e8e6784 15799 NEON_ENCODE (INTEGER, inst);
037e8744 15800
7e8e6784
MGD
15801 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
15802 return;
037e8744 15803
7e8e6784
MGD
15804 if (flavour != neon_cvt_flavour_invalid)
15805 inst.instruction |= enctab[flavour];
037e8744 15806
7e8e6784
MGD
15807 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15808 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15809 inst.instruction |= LOW4 (inst.operands[1].reg);
15810 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
15811 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
15812 if (flavour >= neon_cvt_flavour_s16_f16
15813 && flavour <= neon_cvt_flavour_f16_u16)
15814 /* Half precision. */
15815 inst.instruction |= 1 << 18;
15816 else
15817 inst.instruction |= 2 << 18;
037e8744 15818
7e8e6784
MGD
15819 neon_dp_fixup (&inst);
15820 }
15821 }
15822 break;
037e8744 15823
8e79c3df
CM
15824 /* Half-precision conversions for Advanced SIMD -- neon. */
15825 case NS_QD:
15826 case NS_DQ:
15827
15828 if ((rs == NS_DQ)
15829 && (inst.vectype.el[0].size != 16 || inst.vectype.el[1].size != 32))
15830 {
15831 as_bad (_("operand size must match register width"));
15832 break;
15833 }
15834
15835 if ((rs == NS_QD)
15836 && ((inst.vectype.el[0].size != 32 || inst.vectype.el[1].size != 16)))
15837 {
15838 as_bad (_("operand size must match register width"));
15839 break;
15840 }
15841
15842 if (rs == NS_DQ)
477330fc 15843 inst.instruction = 0x3b60600;
8e79c3df
CM
15844 else
15845 inst.instruction = 0x3b60700;
15846
15847 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
15848 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
15849 inst.instruction |= LOW4 (inst.operands[1].reg);
15850 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
88714cb8 15851 neon_dp_fixup (&inst);
8e79c3df
CM
15852 break;
15853
037e8744
JB
15854 default:
15855 /* Some VFP conversions go here (s32 <-> f32, u32 <-> f32). */
7e8e6784
MGD
15856 if (mode == neon_cvt_mode_x || mode == neon_cvt_mode_z)
15857 do_vfp_nsyn_cvt (rs, flavour);
15858 else
15859 do_vfp_nsyn_cvt_fpv8 (flavour, mode);
5287ad62 15860 }
5287ad62
JB
15861}
15862
e3e535bc
NC
15863static void
15864do_neon_cvtr (void)
15865{
7e8e6784 15866 do_neon_cvt_1 (neon_cvt_mode_x);
e3e535bc
NC
15867}
15868
15869static void
15870do_neon_cvt (void)
15871{
7e8e6784
MGD
15872 do_neon_cvt_1 (neon_cvt_mode_z);
15873}
15874
15875static void
15876do_neon_cvta (void)
15877{
15878 do_neon_cvt_1 (neon_cvt_mode_a);
15879}
15880
15881static void
15882do_neon_cvtn (void)
15883{
15884 do_neon_cvt_1 (neon_cvt_mode_n);
15885}
15886
15887static void
15888do_neon_cvtp (void)
15889{
15890 do_neon_cvt_1 (neon_cvt_mode_p);
15891}
15892
15893static void
15894do_neon_cvtm (void)
15895{
15896 do_neon_cvt_1 (neon_cvt_mode_m);
e3e535bc
NC
15897}
15898
8e79c3df 15899static void
c70a8987 15900do_neon_cvttb_2 (bfd_boolean t, bfd_boolean to, bfd_boolean is_double)
8e79c3df 15901{
c70a8987
MGD
15902 if (is_double)
15903 mark_feature_used (&fpu_vfp_ext_armv8);
8e79c3df 15904
c70a8987
MGD
15905 encode_arm_vfp_reg (inst.operands[0].reg,
15906 (is_double && !to) ? VFP_REG_Dd : VFP_REG_Sd);
15907 encode_arm_vfp_reg (inst.operands[1].reg,
15908 (is_double && to) ? VFP_REG_Dm : VFP_REG_Sm);
15909 inst.instruction |= to ? 0x10000 : 0;
15910 inst.instruction |= t ? 0x80 : 0;
15911 inst.instruction |= is_double ? 0x100 : 0;
15912 do_vfp_cond_or_thumb ();
15913}
8e79c3df 15914
c70a8987
MGD
15915static void
15916do_neon_cvttb_1 (bfd_boolean t)
15917{
d54af2d0
RL
15918 enum neon_shape rs = neon_select_shape (NS_HF, NS_HD, NS_FH, NS_FF, NS_FD,
15919 NS_DF, NS_DH, NS_NULL);
8e79c3df 15920
c70a8987
MGD
15921 if (rs == NS_NULL)
15922 return;
15923 else if (neon_check_type (2, rs, N_F16, N_F32 | N_VFP).type != NT_invtype)
15924 {
15925 inst.error = NULL;
15926 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/FALSE);
15927 }
15928 else if (neon_check_type (2, rs, N_F32 | N_VFP, N_F16).type != NT_invtype)
15929 {
15930 inst.error = NULL;
15931 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/FALSE);
15932 }
15933 else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
15934 {
a715796b
TG
15935 /* The VCVTB and VCVTT instructions with D-register operands
15936 don't work for SP only targets. */
15937 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15938 _(BAD_FPU));
15939
c70a8987
MGD
15940 inst.error = NULL;
15941 do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
15942 }
15943 else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
15944 {
a715796b
TG
15945 /* The VCVTB and VCVTT instructions with D-register operands
15946 don't work for SP only targets. */
15947 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
15948 _(BAD_FPU));
15949
c70a8987
MGD
15950 inst.error = NULL;
15951 do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
15952 }
15953 else
15954 return;
15955}
15956
15957static void
15958do_neon_cvtb (void)
15959{
15960 do_neon_cvttb_1 (FALSE);
8e79c3df
CM
15961}
15962
15963
15964static void
15965do_neon_cvtt (void)
15966{
c70a8987 15967 do_neon_cvttb_1 (TRUE);
8e79c3df
CM
15968}
15969
5287ad62
JB
15970static void
15971neon_move_immediate (void)
15972{
037e8744
JB
15973 enum neon_shape rs = neon_select_shape (NS_DI, NS_QI, NS_NULL);
15974 struct neon_type_el et = neon_check_type (2, rs,
15975 N_I8 | N_I16 | N_I32 | N_I64 | N_F32 | N_KEY, N_EQK);
5287ad62 15976 unsigned immlo, immhi = 0, immbits;
c96612cc 15977 int op, cmode, float_p;
5287ad62 15978
037e8744 15979 constraint (et.type == NT_invtype,
477330fc 15980 _("operand size must be specified for immediate VMOV"));
037e8744 15981
5287ad62
JB
15982 /* We start out as an MVN instruction if OP = 1, MOV otherwise. */
15983 op = (inst.instruction & (1 << 5)) != 0;
15984
15985 immlo = inst.operands[1].imm;
15986 if (inst.operands[1].regisimm)
15987 immhi = inst.operands[1].reg;
15988
15989 constraint (et.size < 32 && (immlo & ~((1 << et.size) - 1)) != 0,
477330fc 15990 _("immediate has bits set outside the operand size"));
5287ad62 15991
c96612cc
JB
15992 float_p = inst.operands[1].immisfloat;
15993
15994 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits, &op,
477330fc 15995 et.size, et.type)) == FAIL)
5287ad62
JB
15996 {
15997 /* Invert relevant bits only. */
15998 neon_invert_size (&immlo, &immhi, et.size);
15999 /* Flip from VMOV/VMVN to VMVN/VMOV. Some immediate types are unavailable
477330fc
RM
16000 with one or the other; those cases are caught by
16001 neon_cmode_for_move_imm. */
5287ad62 16002 op = !op;
c96612cc
JB
16003 if ((cmode = neon_cmode_for_move_imm (immlo, immhi, float_p, &immbits,
16004 &op, et.size, et.type)) == FAIL)
477330fc
RM
16005 {
16006 first_error (_("immediate out of range"));
16007 return;
16008 }
5287ad62
JB
16009 }
16010
16011 inst.instruction &= ~(1 << 5);
16012 inst.instruction |= op << 5;
16013
16014 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16015 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
037e8744 16016 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
16017 inst.instruction |= cmode << 8;
16018
16019 neon_write_immbits (immbits);
16020}
16021
16022static void
16023do_neon_mvn (void)
16024{
16025 if (inst.operands[1].isreg)
16026 {
037e8744 16027 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5f4273c7 16028
88714cb8 16029 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
16030 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16031 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16032 inst.instruction |= LOW4 (inst.operands[1].reg);
16033 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
037e8744 16034 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
16035 }
16036 else
16037 {
88714cb8 16038 NEON_ENCODE (IMMED, inst);
5287ad62
JB
16039 neon_move_immediate ();
16040 }
16041
88714cb8 16042 neon_dp_fixup (&inst);
5287ad62
JB
16043}
16044
16045/* Encode instructions of form:
16046
16047 |28/24|23|22|21 20|19 16|15 12|11 8|7|6|5|4|3 0|
5f4273c7 16048 | U |x |D |size | Rn | Rd |x x x x|N|x|M|x| Rm | */
5287ad62
JB
16049
16050static void
16051neon_mixed_length (struct neon_type_el et, unsigned size)
16052{
16053 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16054 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16055 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16056 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16057 inst.instruction |= LOW4 (inst.operands[2].reg);
16058 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16059 inst.instruction |= (et.type == NT_unsigned) << 24;
16060 inst.instruction |= neon_logbits (size) << 20;
5f4273c7 16061
88714cb8 16062 neon_dp_fixup (&inst);
5287ad62
JB
16063}
16064
16065static void
16066do_neon_dyadic_long (void)
16067{
16068 /* FIXME: Type checking for lengthening op. */
16069 struct neon_type_el et = neon_check_type (3, NS_QDD,
16070 N_EQK | N_DBL, N_EQK, N_SU_32 | N_KEY);
16071 neon_mixed_length (et, et.size);
16072}
16073
16074static void
16075do_neon_abal (void)
16076{
16077 struct neon_type_el et = neon_check_type (3, NS_QDD,
16078 N_EQK | N_INT | N_DBL, N_EQK, N_SU_32 | N_KEY);
16079 neon_mixed_length (et, et.size);
16080}
16081
16082static void
16083neon_mac_reg_scalar_long (unsigned regtypes, unsigned scalartypes)
16084{
16085 if (inst.operands[2].isscalar)
16086 {
dcbf9037 16087 struct neon_type_el et = neon_check_type (3, NS_QDS,
477330fc 16088 N_EQK | N_DBL, N_EQK, regtypes | N_KEY);
88714cb8 16089 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
16090 neon_mul_mac (et, et.type == NT_unsigned);
16091 }
16092 else
16093 {
16094 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 16095 N_EQK | N_DBL, N_EQK, scalartypes | N_KEY);
88714cb8 16096 NEON_ENCODE (INTEGER, inst);
5287ad62
JB
16097 neon_mixed_length (et, et.size);
16098 }
16099}
16100
16101static void
16102do_neon_mac_maybe_scalar_long (void)
16103{
16104 neon_mac_reg_scalar_long (N_S16 | N_S32 | N_U16 | N_U32, N_SU_32);
16105}
16106
16107static void
16108do_neon_dyadic_wide (void)
16109{
16110 struct neon_type_el et = neon_check_type (3, NS_QQD,
16111 N_EQK | N_DBL, N_EQK | N_DBL, N_SU_32 | N_KEY);
16112 neon_mixed_length (et, et.size);
16113}
16114
16115static void
16116do_neon_dyadic_narrow (void)
16117{
16118 struct neon_type_el et = neon_check_type (3, NS_QDD,
16119 N_EQK | N_DBL, N_EQK, N_I16 | N_I32 | N_I64 | N_KEY);
428e3f1f
PB
16120 /* Operand sign is unimportant, and the U bit is part of the opcode,
16121 so force the operand type to integer. */
16122 et.type = NT_integer;
5287ad62
JB
16123 neon_mixed_length (et, et.size / 2);
16124}
16125
16126static void
16127do_neon_mul_sat_scalar_long (void)
16128{
16129 neon_mac_reg_scalar_long (N_S16 | N_S32, N_S16 | N_S32);
16130}
16131
16132static void
16133do_neon_vmull (void)
16134{
16135 if (inst.operands[2].isscalar)
16136 do_neon_mac_maybe_scalar_long ();
16137 else
16138 {
16139 struct neon_type_el et = neon_check_type (3, NS_QDD,
477330fc 16140 N_EQK | N_DBL, N_EQK, N_SU_32 | N_P8 | N_P64 | N_KEY);
4f51b4bd 16141
5287ad62 16142 if (et.type == NT_poly)
477330fc 16143 NEON_ENCODE (POLY, inst);
5287ad62 16144 else
477330fc 16145 NEON_ENCODE (INTEGER, inst);
4f51b4bd
MGD
16146
16147 /* For polynomial encoding the U bit must be zero, and the size must
16148 be 8 (encoded as 0b00) or, on ARMv8 or later 64 (encoded, non
16149 obviously, as 0b10). */
16150 if (et.size == 64)
16151 {
16152 /* Check we're on the correct architecture. */
16153 if (!mark_feature_used (&fpu_crypto_ext_armv8))
16154 inst.error =
16155 _("Instruction form not available on this architecture.");
16156
16157 et.size = 32;
16158 }
16159
5287ad62
JB
16160 neon_mixed_length (et, et.size);
16161 }
16162}
16163
16164static void
16165do_neon_ext (void)
16166{
037e8744 16167 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
5287ad62
JB
16168 struct neon_type_el et = neon_check_type (3, rs,
16169 N_EQK, N_EQK, N_8 | N_16 | N_32 | N_64 | N_KEY);
16170 unsigned imm = (inst.operands[3].imm * et.size) / 8;
35997600
NC
16171
16172 constraint (imm >= (unsigned) (neon_quad (rs) ? 16 : 8),
16173 _("shift out of range"));
5287ad62
JB
16174 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16175 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16176 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16177 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16178 inst.instruction |= LOW4 (inst.operands[2].reg);
16179 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
037e8744 16180 inst.instruction |= neon_quad (rs) << 6;
5287ad62 16181 inst.instruction |= imm << 8;
5f4273c7 16182
88714cb8 16183 neon_dp_fixup (&inst);
5287ad62
JB
16184}
16185
16186static void
16187do_neon_rev (void)
16188{
037e8744 16189 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16190 struct neon_type_el et = neon_check_type (2, rs,
16191 N_EQK, N_8 | N_16 | N_32 | N_KEY);
16192 unsigned op = (inst.instruction >> 7) & 3;
16193 /* N (width of reversed regions) is encoded as part of the bitmask. We
16194 extract it here to check the elements to be reversed are smaller.
16195 Otherwise we'd get a reserved instruction. */
16196 unsigned elsize = (op == 2) ? 16 : (op == 1) ? 32 : (op == 0) ? 64 : 0;
9c2799c2 16197 gas_assert (elsize != 0);
5287ad62 16198 constraint (et.size >= elsize,
477330fc 16199 _("elements must be smaller than reversal region"));
037e8744 16200 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16201}
16202
16203static void
16204do_neon_dup (void)
16205{
16206 if (inst.operands[1].isscalar)
16207 {
037e8744 16208 enum neon_shape rs = neon_select_shape (NS_DS, NS_QS, NS_NULL);
dcbf9037 16209 struct neon_type_el et = neon_check_type (2, rs,
477330fc 16210 N_EQK, N_8 | N_16 | N_32 | N_KEY);
5287ad62 16211 unsigned sizebits = et.size >> 3;
dcbf9037 16212 unsigned dm = NEON_SCALAR_REG (inst.operands[1].reg);
5287ad62 16213 int logsize = neon_logbits (et.size);
dcbf9037 16214 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg) << logsize;
037e8744
JB
16215
16216 if (vfp_or_neon_is_neon (NEON_CHECK_CC) == FAIL)
477330fc 16217 return;
037e8744 16218
88714cb8 16219 NEON_ENCODE (SCALAR, inst);
5287ad62
JB
16220 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16221 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16222 inst.instruction |= LOW4 (dm);
16223 inst.instruction |= HI1 (dm) << 5;
037e8744 16224 inst.instruction |= neon_quad (rs) << 6;
5287ad62
JB
16225 inst.instruction |= x << 17;
16226 inst.instruction |= sizebits << 16;
5f4273c7 16227
88714cb8 16228 neon_dp_fixup (&inst);
5287ad62
JB
16229 }
16230 else
16231 {
037e8744
JB
16232 enum neon_shape rs = neon_select_shape (NS_DR, NS_QR, NS_NULL);
16233 struct neon_type_el et = neon_check_type (2, rs,
477330fc 16234 N_8 | N_16 | N_32 | N_KEY, N_EQK);
5287ad62 16235 /* Duplicate ARM register to lanes of vector. */
88714cb8 16236 NEON_ENCODE (ARMREG, inst);
5287ad62 16237 switch (et.size)
477330fc
RM
16238 {
16239 case 8: inst.instruction |= 0x400000; break;
16240 case 16: inst.instruction |= 0x000020; break;
16241 case 32: inst.instruction |= 0x000000; break;
16242 default: break;
16243 }
5287ad62
JB
16244 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
16245 inst.instruction |= LOW4 (inst.operands[0].reg) << 16;
16246 inst.instruction |= HI1 (inst.operands[0].reg) << 7;
037e8744 16247 inst.instruction |= neon_quad (rs) << 21;
5287ad62 16248 /* The encoding for this instruction is identical for the ARM and Thumb
477330fc 16249 variants, except for the condition field. */
037e8744 16250 do_vfp_cond_or_thumb ();
5287ad62
JB
16251 }
16252}
16253
16254/* VMOV has particularly many variations. It can be one of:
16255 0. VMOV<c><q> <Qd>, <Qm>
16256 1. VMOV<c><q> <Dd>, <Dm>
16257 (Register operations, which are VORR with Rm = Rn.)
16258 2. VMOV<c><q>.<dt> <Qd>, #<imm>
16259 3. VMOV<c><q>.<dt> <Dd>, #<imm>
16260 (Immediate loads.)
16261 4. VMOV<c><q>.<size> <Dn[x]>, <Rd>
16262 (ARM register to scalar.)
16263 5. VMOV<c><q> <Dm>, <Rd>, <Rn>
16264 (Two ARM registers to vector.)
16265 6. VMOV<c><q>.<dt> <Rd>, <Dn[x]>
16266 (Scalar to ARM register.)
16267 7. VMOV<c><q> <Rd>, <Rn>, <Dm>
16268 (Vector to two ARM registers.)
037e8744
JB
16269 8. VMOV.F32 <Sd>, <Sm>
16270 9. VMOV.F64 <Dd>, <Dm>
16271 (VFP register moves.)
16272 10. VMOV.F32 <Sd>, #imm
16273 11. VMOV.F64 <Dd>, #imm
16274 (VFP float immediate load.)
16275 12. VMOV <Rd>, <Sm>
16276 (VFP single to ARM reg.)
16277 13. VMOV <Sd>, <Rm>
16278 (ARM reg to VFP single.)
16279 14. VMOV <Rd>, <Re>, <Sn>, <Sm>
16280 (Two ARM regs to two VFP singles.)
16281 15. VMOV <Sd>, <Se>, <Rn>, <Rm>
16282 (Two VFP singles to two ARM regs.)
5f4273c7 16283
037e8744
JB
16284 These cases can be disambiguated using neon_select_shape, except cases 1/9
16285 and 3/11 which depend on the operand type too.
5f4273c7 16286
5287ad62 16287 All the encoded bits are hardcoded by this function.
5f4273c7 16288
b7fc2769
JB
16289 Cases 4, 6 may be used with VFPv1 and above (only 32-bit transfers!).
16290 Cases 5, 7 may be used with VFPv2 and above.
5f4273c7 16291
5287ad62 16292 FIXME: Some of the checking may be a bit sloppy (in a couple of cases you
5f4273c7 16293 can specify a type where it doesn't make sense to, and is ignored). */
5287ad62
JB
16294
16295static void
16296do_neon_mov (void)
16297{
037e8744 16298 enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
9db2f6b4
RL
16299 NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR,
16300 NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
16301 NS_HR, NS_RH, NS_HI, NS_NULL);
037e8744
JB
16302 struct neon_type_el et;
16303 const char *ldconst = 0;
5287ad62 16304
037e8744 16305 switch (rs)
5287ad62 16306 {
037e8744
JB
16307 case NS_DD: /* case 1/9. */
16308 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
16309 /* It is not an error here if no type is given. */
16310 inst.error = NULL;
16311 if (et.type == NT_float && et.size == 64)
477330fc
RM
16312 {
16313 do_vfp_nsyn_opcode ("fcpyd");
16314 break;
16315 }
037e8744 16316 /* fall through. */
5287ad62 16317
037e8744
JB
16318 case NS_QQ: /* case 0/1. */
16319 {
477330fc
RM
16320 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
16321 return;
16322 /* The architecture manual I have doesn't explicitly state which
16323 value the U bit should have for register->register moves, but
16324 the equivalent VORR instruction has U = 0, so do that. */
16325 inst.instruction = 0x0200110;
16326 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16327 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16328 inst.instruction |= LOW4 (inst.operands[1].reg);
16329 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
16330 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16331 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16332 inst.instruction |= neon_quad (rs) << 6;
16333
16334 neon_dp_fixup (&inst);
037e8744
JB
16335 }
16336 break;
5f4273c7 16337
037e8744
JB
16338 case NS_DI: /* case 3/11. */
16339 et = neon_check_type (2, rs, N_EQK, N_F64 | N_KEY);
16340 inst.error = NULL;
16341 if (et.type == NT_float && et.size == 64)
477330fc
RM
16342 {
16343 /* case 11 (fconstd). */
16344 ldconst = "fconstd";
16345 goto encode_fconstd;
16346 }
037e8744
JB
16347 /* fall through. */
16348
16349 case NS_QI: /* case 2/3. */
16350 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
477330fc 16351 return;
037e8744
JB
16352 inst.instruction = 0x0800010;
16353 neon_move_immediate ();
88714cb8 16354 neon_dp_fixup (&inst);
5287ad62 16355 break;
5f4273c7 16356
037e8744
JB
16357 case NS_SR: /* case 4. */
16358 {
477330fc
RM
16359 unsigned bcdebits = 0;
16360 int logsize;
16361 unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
16362 unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
037e8744 16363
05ac0ffb
JB
16364 /* .<size> is optional here, defaulting to .32. */
16365 if (inst.vectype.elems == 0
16366 && inst.operands[0].vectype.type == NT_invtype
16367 && inst.operands[1].vectype.type == NT_invtype)
16368 {
16369 inst.vectype.el[0].type = NT_untyped;
16370 inst.vectype.el[0].size = 32;
16371 inst.vectype.elems = 1;
16372 }
16373
477330fc
RM
16374 et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
16375 logsize = neon_logbits (et.size);
16376
16377 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
16378 _(BAD_FPU));
16379 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
16380 && et.size != 32, _(BAD_FPU));
16381 constraint (et.type == NT_invtype, _("bad type for scalar"));
16382 constraint (x >= 64 / et.size, _("scalar index out of range"));
16383
16384 switch (et.size)
16385 {
16386 case 8: bcdebits = 0x8; break;
16387 case 16: bcdebits = 0x1; break;
16388 case 32: bcdebits = 0x0; break;
16389 default: ;
16390 }
16391
16392 bcdebits |= x << logsize;
16393
16394 inst.instruction = 0xe000b10;
16395 do_vfp_cond_or_thumb ();
16396 inst.instruction |= LOW4 (dn) << 16;
16397 inst.instruction |= HI1 (dn) << 7;
16398 inst.instruction |= inst.operands[1].reg << 12;
16399 inst.instruction |= (bcdebits & 3) << 5;
16400 inst.instruction |= (bcdebits >> 2) << 21;
037e8744
JB
16401 }
16402 break;
5f4273c7 16403
037e8744 16404 case NS_DRR: /* case 5 (fmdrr). */
b7fc2769 16405 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 16406 _(BAD_FPU));
b7fc2769 16407
037e8744
JB
16408 inst.instruction = 0xc400b10;
16409 do_vfp_cond_or_thumb ();
16410 inst.instruction |= LOW4 (inst.operands[0].reg);
16411 inst.instruction |= HI1 (inst.operands[0].reg) << 5;
16412 inst.instruction |= inst.operands[1].reg << 12;
16413 inst.instruction |= inst.operands[2].reg << 16;
16414 break;
5f4273c7 16415
037e8744
JB
16416 case NS_RS: /* case 6. */
16417 {
477330fc
RM
16418 unsigned logsize;
16419 unsigned dn = NEON_SCALAR_REG (inst.operands[1].reg);
16420 unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
16421 unsigned abcdebits = 0;
037e8744 16422
05ac0ffb
JB
16423 /* .<dt> is optional here, defaulting to .32. */
16424 if (inst.vectype.elems == 0
16425 && inst.operands[0].vectype.type == NT_invtype
16426 && inst.operands[1].vectype.type == NT_invtype)
16427 {
16428 inst.vectype.el[0].type = NT_untyped;
16429 inst.vectype.el[0].size = 32;
16430 inst.vectype.elems = 1;
16431 }
16432
91d6fa6a
NC
16433 et = neon_check_type (2, NS_NULL,
16434 N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
477330fc
RM
16435 logsize = neon_logbits (et.size);
16436
16437 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v1),
16438 _(BAD_FPU));
16439 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1)
16440 && et.size != 32, _(BAD_FPU));
16441 constraint (et.type == NT_invtype, _("bad type for scalar"));
16442 constraint (x >= 64 / et.size, _("scalar index out of range"));
16443
16444 switch (et.size)
16445 {
16446 case 8: abcdebits = (et.type == NT_signed) ? 0x08 : 0x18; break;
16447 case 16: abcdebits = (et.type == NT_signed) ? 0x01 : 0x11; break;
16448 case 32: abcdebits = 0x00; break;
16449 default: ;
16450 }
16451
16452 abcdebits |= x << logsize;
16453 inst.instruction = 0xe100b10;
16454 do_vfp_cond_or_thumb ();
16455 inst.instruction |= LOW4 (dn) << 16;
16456 inst.instruction |= HI1 (dn) << 7;
16457 inst.instruction |= inst.operands[0].reg << 12;
16458 inst.instruction |= (abcdebits & 3) << 5;
16459 inst.instruction |= (abcdebits >> 2) << 21;
037e8744
JB
16460 }
16461 break;
5f4273c7 16462
037e8744
JB
16463 case NS_RRD: /* case 7 (fmrrd). */
16464 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v2),
477330fc 16465 _(BAD_FPU));
037e8744
JB
16466
16467 inst.instruction = 0xc500b10;
16468 do_vfp_cond_or_thumb ();
16469 inst.instruction |= inst.operands[0].reg << 12;
16470 inst.instruction |= inst.operands[1].reg << 16;
16471 inst.instruction |= LOW4 (inst.operands[2].reg);
16472 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16473 break;
5f4273c7 16474
037e8744
JB
16475 case NS_FF: /* case 8 (fcpys). */
16476 do_vfp_nsyn_opcode ("fcpys");
16477 break;
5f4273c7 16478
9db2f6b4 16479 case NS_HI:
037e8744
JB
16480 case NS_FI: /* case 10 (fconsts). */
16481 ldconst = "fconsts";
16482 encode_fconstd:
16483 if (is_quarter_float (inst.operands[1].imm))
477330fc
RM
16484 {
16485 inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
16486 do_vfp_nsyn_opcode (ldconst);
9db2f6b4
RL
16487
16488 /* ARMv8.2 fp16 vmov.f16 instruction. */
16489 if (rs == NS_HI)
16490 do_scalar_fp16_v82_encode ();
477330fc 16491 }
5287ad62 16492 else
477330fc 16493 first_error (_("immediate out of range"));
037e8744 16494 break;
5f4273c7 16495
9db2f6b4 16496 case NS_RH:
037e8744
JB
16497 case NS_RF: /* case 12 (fmrs). */
16498 do_vfp_nsyn_opcode ("fmrs");
9db2f6b4
RL
16499 /* ARMv8.2 fp16 vmov.f16 instruction. */
16500 if (rs == NS_RH)
16501 do_scalar_fp16_v82_encode ();
037e8744 16502 break;
5f4273c7 16503
9db2f6b4 16504 case NS_HR:
037e8744
JB
16505 case NS_FR: /* case 13 (fmsr). */
16506 do_vfp_nsyn_opcode ("fmsr");
9db2f6b4
RL
16507 /* ARMv8.2 fp16 vmov.f16 instruction. */
16508 if (rs == NS_HR)
16509 do_scalar_fp16_v82_encode ();
037e8744 16510 break;
5f4273c7 16511
037e8744
JB
16512 /* The encoders for the fmrrs and fmsrr instructions expect three operands
16513 (one of which is a list), but we have parsed four. Do some fiddling to
16514 make the operands what do_vfp_reg2_from_sp2 and do_vfp_sp2_from_reg2
16515 expect. */
16516 case NS_RRFF: /* case 14 (fmrrs). */
16517 constraint (inst.operands[3].reg != inst.operands[2].reg + 1,
477330fc 16518 _("VFP registers must be adjacent"));
037e8744
JB
16519 inst.operands[2].imm = 2;
16520 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
16521 do_vfp_nsyn_opcode ("fmrrs");
16522 break;
5f4273c7 16523
037e8744
JB
16524 case NS_FFRR: /* case 15 (fmsrr). */
16525 constraint (inst.operands[1].reg != inst.operands[0].reg + 1,
477330fc 16526 _("VFP registers must be adjacent"));
037e8744
JB
16527 inst.operands[1] = inst.operands[2];
16528 inst.operands[2] = inst.operands[3];
16529 inst.operands[0].imm = 2;
16530 memset (&inst.operands[3], '\0', sizeof (inst.operands[3]));
16531 do_vfp_nsyn_opcode ("fmsrr");
5287ad62 16532 break;
5f4273c7 16533
4c261dff
NC
16534 case NS_NULL:
16535 /* neon_select_shape has determined that the instruction
16536 shape is wrong and has already set the error message. */
16537 break;
16538
5287ad62
JB
16539 default:
16540 abort ();
16541 }
16542}
16543
16544static void
16545do_neon_rshift_round_imm (void)
16546{
037e8744 16547 enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
5287ad62
JB
16548 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
16549 int imm = inst.operands[2].imm;
16550
16551 /* imm == 0 case is encoded as VMOV for V{R}SHR. */
16552 if (imm == 0)
16553 {
16554 inst.operands[2].present = 0;
16555 do_neon_mov ();
16556 return;
16557 }
16558
16559 constraint (imm < 1 || (unsigned)imm > et.size,
477330fc 16560 _("immediate out of range for shift"));
037e8744 16561 neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
477330fc 16562 et.size - imm);
5287ad62
JB
16563}
16564
9db2f6b4
RL
16565static void
16566do_neon_movhf (void)
16567{
16568 enum neon_shape rs = neon_select_shape (NS_HH, NS_NULL);
16569 constraint (rs != NS_HH, _("invalid suffix"));
16570
16571 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
16572 _(BAD_FPU));
16573
16574 do_vfp_sp_monadic ();
16575
16576 inst.is_neon = 1;
16577 inst.instruction |= 0xf0000000;
16578}
16579
5287ad62
JB
16580static void
16581do_neon_movl (void)
16582{
16583 struct neon_type_el et = neon_check_type (2, NS_QD,
16584 N_EQK | N_DBL, N_SU_32 | N_KEY);
16585 unsigned sizebits = et.size >> 3;
16586 inst.instruction |= sizebits << 19;
16587 neon_two_same (0, et.type == NT_unsigned, -1);
16588}
16589
16590static void
16591do_neon_trn (void)
16592{
037e8744 16593 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16594 struct neon_type_el et = neon_check_type (2, rs,
16595 N_EQK, N_8 | N_16 | N_32 | N_KEY);
88714cb8 16596 NEON_ENCODE (INTEGER, inst);
037e8744 16597 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16598}
16599
16600static void
16601do_neon_zip_uzp (void)
16602{
037e8744 16603 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16604 struct neon_type_el et = neon_check_type (2, rs,
16605 N_EQK, N_8 | N_16 | N_32 | N_KEY);
16606 if (rs == NS_DD && et.size == 32)
16607 {
16608 /* Special case: encode as VTRN.32 <Dd>, <Dm>. */
16609 inst.instruction = N_MNEM_vtrn;
16610 do_neon_trn ();
16611 return;
16612 }
037e8744 16613 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16614}
16615
16616static void
16617do_neon_sat_abs_neg (void)
16618{
037e8744 16619 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16620 struct neon_type_el et = neon_check_type (2, rs,
16621 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 16622 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16623}
16624
16625static void
16626do_neon_pair_long (void)
16627{
037e8744 16628 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16629 struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_32 | N_KEY);
16630 /* Unsigned is encoded in OP field (bit 7) for these instruction. */
16631 inst.instruction |= (et.type == NT_unsigned) << 7;
037e8744 16632 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16633}
16634
16635static void
16636do_neon_recip_est (void)
16637{
037e8744 16638 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62 16639 struct neon_type_el et = neon_check_type (2, rs,
cc933301 16640 N_EQK | N_FLT, N_F_16_32 | N_U32 | N_KEY);
5287ad62 16641 inst.instruction |= (et.type == NT_float) << 8;
037e8744 16642 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16643}
16644
16645static void
16646do_neon_cls (void)
16647{
037e8744 16648 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16649 struct neon_type_el et = neon_check_type (2, rs,
16650 N_EQK, N_S8 | N_S16 | N_S32 | N_KEY);
037e8744 16651 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16652}
16653
16654static void
16655do_neon_clz (void)
16656{
037e8744 16657 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16658 struct neon_type_el et = neon_check_type (2, rs,
16659 N_EQK, N_I8 | N_I16 | N_I32 | N_KEY);
037e8744 16660 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16661}
16662
16663static void
16664do_neon_cnt (void)
16665{
037e8744 16666 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
5287ad62
JB
16667 struct neon_type_el et = neon_check_type (2, rs,
16668 N_EQK | N_INT, N_8 | N_KEY);
037e8744 16669 neon_two_same (neon_quad (rs), 1, et.size);
5287ad62
JB
16670}
16671
16672static void
16673do_neon_swp (void)
16674{
037e8744
JB
16675 enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
16676 neon_two_same (neon_quad (rs), 1, -1);
5287ad62
JB
16677}
16678
16679static void
16680do_neon_tbl_tbx (void)
16681{
16682 unsigned listlenbits;
dcbf9037 16683 neon_check_type (3, NS_DLD, N_EQK, N_EQK, N_8 | N_KEY);
5f4273c7 16684
5287ad62
JB
16685 if (inst.operands[1].imm < 1 || inst.operands[1].imm > 4)
16686 {
dcbf9037 16687 first_error (_("bad list length for table lookup"));
5287ad62
JB
16688 return;
16689 }
5f4273c7 16690
5287ad62
JB
16691 listlenbits = inst.operands[1].imm - 1;
16692 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
16693 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
16694 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
16695 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
16696 inst.instruction |= LOW4 (inst.operands[2].reg);
16697 inst.instruction |= HI1 (inst.operands[2].reg) << 5;
16698 inst.instruction |= listlenbits << 8;
5f4273c7 16699
88714cb8 16700 neon_dp_fixup (&inst);
5287ad62
JB
16701}
16702
16703static void
16704do_neon_ldm_stm (void)
16705{
16706 /* P, U and L bits are part of bitmask. */
16707 int is_dbmode = (inst.instruction & (1 << 24)) != 0;
16708 unsigned offsetbits = inst.operands[1].imm * 2;
16709
037e8744
JB
16710 if (inst.operands[1].issingle)
16711 {
16712 do_vfp_nsyn_ldm_stm (is_dbmode);
16713 return;
16714 }
16715
5287ad62 16716 constraint (is_dbmode && !inst.operands[0].writeback,
477330fc 16717 _("writeback (!) must be used for VLDMDB and VSTMDB"));
5287ad62
JB
16718
16719 constraint (inst.operands[1].imm < 1 || inst.operands[1].imm > 16,
477330fc
RM
16720 _("register list must contain at least 1 and at most 16 "
16721 "registers"));
5287ad62
JB
16722
16723 inst.instruction |= inst.operands[0].reg << 16;
16724 inst.instruction |= inst.operands[0].writeback << 21;
16725 inst.instruction |= LOW4 (inst.operands[1].reg) << 12;
16726 inst.instruction |= HI1 (inst.operands[1].reg) << 22;
16727
16728 inst.instruction |= offsetbits;
5f4273c7 16729
037e8744 16730 do_vfp_cond_or_thumb ();
5287ad62
JB
16731}
16732
16733static void
16734do_neon_ldr_str (void)
16735{
5287ad62 16736 int is_ldr = (inst.instruction & (1 << 20)) != 0;
5f4273c7 16737
6844b2c2
MGD
16738 /* Use of PC in vstr in ARM mode is deprecated in ARMv7.
16739 And is UNPREDICTABLE in thumb mode. */
fa94de6b 16740 if (!is_ldr
6844b2c2 16741 && inst.operands[1].reg == REG_PC
ba86b375 16742 && (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7) || thumb_mode))
6844b2c2 16743 {
94dcf8bf 16744 if (thumb_mode)
6844b2c2 16745 inst.error = _("Use of PC here is UNPREDICTABLE");
94dcf8bf 16746 else if (warn_on_deprecated)
5c3696f8 16747 as_tsktsk (_("Use of PC here is deprecated"));
6844b2c2
MGD
16748 }
16749
037e8744
JB
16750 if (inst.operands[0].issingle)
16751 {
cd2f129f 16752 if (is_ldr)
477330fc 16753 do_vfp_nsyn_opcode ("flds");
cd2f129f 16754 else
477330fc 16755 do_vfp_nsyn_opcode ("fsts");
9db2f6b4
RL
16756
16757 /* ARMv8.2 vldr.16/vstr.16 instruction. */
16758 if (inst.vectype.el[0].size == 16)
16759 do_scalar_fp16_v82_encode ();
5287ad62
JB
16760 }
16761 else
5287ad62 16762 {
cd2f129f 16763 if (is_ldr)
477330fc 16764 do_vfp_nsyn_opcode ("fldd");
5287ad62 16765 else
477330fc 16766 do_vfp_nsyn_opcode ("fstd");
5287ad62 16767 }
5287ad62
JB
16768}
16769
16770/* "interleave" version also handles non-interleaving register VLD1/VST1
16771 instructions. */
16772
16773static void
16774do_neon_ld_st_interleave (void)
16775{
037e8744 16776 struct neon_type_el et = neon_check_type (1, NS_NULL,
477330fc 16777 N_8 | N_16 | N_32 | N_64);
5287ad62
JB
16778 unsigned alignbits = 0;
16779 unsigned idx;
16780 /* The bits in this table go:
16781 0: register stride of one (0) or two (1)
16782 1,2: register list length, minus one (1, 2, 3, 4).
16783 3,4: <n> in instruction type, minus one (VLD<n> / VST<n>).
16784 We use -1 for invalid entries. */
16785 const int typetable[] =
16786 {
16787 0x7, -1, 0xa, -1, 0x6, -1, 0x2, -1, /* VLD1 / VST1. */
16788 -1, -1, 0x8, 0x9, -1, -1, 0x3, -1, /* VLD2 / VST2. */
16789 -1, -1, -1, -1, 0x4, 0x5, -1, -1, /* VLD3 / VST3. */
16790 -1, -1, -1, -1, -1, -1, 0x0, 0x1 /* VLD4 / VST4. */
16791 };
16792 int typebits;
16793
dcbf9037
JB
16794 if (et.type == NT_invtype)
16795 return;
16796
5287ad62
JB
16797 if (inst.operands[1].immisalign)
16798 switch (inst.operands[1].imm >> 8)
16799 {
16800 case 64: alignbits = 1; break;
16801 case 128:
477330fc 16802 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2
e23c0ad8 16803 && NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
477330fc
RM
16804 goto bad_alignment;
16805 alignbits = 2;
16806 break;
5287ad62 16807 case 256:
477330fc
RM
16808 if (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4)
16809 goto bad_alignment;
16810 alignbits = 3;
16811 break;
5287ad62
JB
16812 default:
16813 bad_alignment:
477330fc
RM
16814 first_error (_("bad alignment"));
16815 return;
5287ad62
JB
16816 }
16817
16818 inst.instruction |= alignbits << 4;
16819 inst.instruction |= neon_logbits (et.size) << 6;
16820
16821 /* Bits [4:6] of the immediate in a list specifier encode register stride
16822 (minus 1) in bit 4, and list length in bits [5:6]. We put the <n> of
16823 VLD<n>/VST<n> in bits [9:8] of the initial bitmask. Suck it out here, look
16824 up the right value for "type" in a table based on this value and the given
16825 list style, then stick it back. */
16826 idx = ((inst.operands[0].imm >> 4) & 7)
477330fc 16827 | (((inst.instruction >> 8) & 3) << 3);
5287ad62
JB
16828
16829 typebits = typetable[idx];
5f4273c7 16830
5287ad62 16831 constraint (typebits == -1, _("bad list type for instruction"));
1d50d57c
WN
16832 constraint (((inst.instruction >> 8) & 3) && et.size == 64,
16833 _("bad element type for instruction"));
5287ad62
JB
16834
16835 inst.instruction &= ~0xf00;
16836 inst.instruction |= typebits << 8;
16837}
16838
16839/* Check alignment is valid for do_neon_ld_st_lane and do_neon_ld_dup.
16840 *DO_ALIGN is set to 1 if the relevant alignment bit should be set, 0
16841 otherwise. The variable arguments are a list of pairs of legal (size, align)
16842 values, terminated with -1. */
16843
16844static int
aa8a0863 16845neon_alignment_bit (int size, int align, int *do_alignment, ...)
5287ad62
JB
16846{
16847 va_list ap;
16848 int result = FAIL, thissize, thisalign;
5f4273c7 16849
5287ad62
JB
16850 if (!inst.operands[1].immisalign)
16851 {
aa8a0863 16852 *do_alignment = 0;
5287ad62
JB
16853 return SUCCESS;
16854 }
5f4273c7 16855
aa8a0863 16856 va_start (ap, do_alignment);
5287ad62
JB
16857
16858 do
16859 {
16860 thissize = va_arg (ap, int);
16861 if (thissize == -1)
477330fc 16862 break;
5287ad62
JB
16863 thisalign = va_arg (ap, int);
16864
16865 if (size == thissize && align == thisalign)
477330fc 16866 result = SUCCESS;
5287ad62
JB
16867 }
16868 while (result != SUCCESS);
16869
16870 va_end (ap);
16871
16872 if (result == SUCCESS)
aa8a0863 16873 *do_alignment = 1;
5287ad62 16874 else
dcbf9037 16875 first_error (_("unsupported alignment for instruction"));
5f4273c7 16876
5287ad62
JB
16877 return result;
16878}
16879
16880static void
16881do_neon_ld_st_lane (void)
16882{
037e8744 16883 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
aa8a0863 16884 int align_good, do_alignment = 0;
5287ad62
JB
16885 int logsize = neon_logbits (et.size);
16886 int align = inst.operands[1].imm >> 8;
16887 int n = (inst.instruction >> 8) & 3;
16888 int max_el = 64 / et.size;
5f4273c7 16889
dcbf9037
JB
16890 if (et.type == NT_invtype)
16891 return;
5f4273c7 16892
5287ad62 16893 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != n + 1,
477330fc 16894 _("bad list length"));
5287ad62 16895 constraint (NEON_LANE (inst.operands[0].imm) >= max_el,
477330fc 16896 _("scalar index out of range"));
5287ad62 16897 constraint (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2
477330fc
RM
16898 && et.size == 8,
16899 _("stride of 2 unavailable when element size is 8"));
5f4273c7 16900
5287ad62
JB
16901 switch (n)
16902 {
16903 case 0: /* VLD1 / VST1. */
aa8a0863 16904 align_good = neon_alignment_bit (et.size, align, &do_alignment, 16, 16,
477330fc 16905 32, 32, -1);
5287ad62 16906 if (align_good == FAIL)
477330fc 16907 return;
aa8a0863 16908 if (do_alignment)
477330fc
RM
16909 {
16910 unsigned alignbits = 0;
16911 switch (et.size)
16912 {
16913 case 16: alignbits = 0x1; break;
16914 case 32: alignbits = 0x3; break;
16915 default: ;
16916 }
16917 inst.instruction |= alignbits << 4;
16918 }
5287ad62
JB
16919 break;
16920
16921 case 1: /* VLD2 / VST2. */
aa8a0863
TS
16922 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 16,
16923 16, 32, 32, 64, -1);
5287ad62 16924 if (align_good == FAIL)
477330fc 16925 return;
aa8a0863 16926 if (do_alignment)
477330fc 16927 inst.instruction |= 1 << 4;
5287ad62
JB
16928 break;
16929
16930 case 2: /* VLD3 / VST3. */
16931 constraint (inst.operands[1].immisalign,
477330fc 16932 _("can't use alignment with this instruction"));
5287ad62
JB
16933 break;
16934
16935 case 3: /* VLD4 / VST4. */
aa8a0863 16936 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
477330fc 16937 16, 64, 32, 64, 32, 128, -1);
5287ad62 16938 if (align_good == FAIL)
477330fc 16939 return;
aa8a0863 16940 if (do_alignment)
477330fc
RM
16941 {
16942 unsigned alignbits = 0;
16943 switch (et.size)
16944 {
16945 case 8: alignbits = 0x1; break;
16946 case 16: alignbits = 0x1; break;
16947 case 32: alignbits = (align == 64) ? 0x1 : 0x2; break;
16948 default: ;
16949 }
16950 inst.instruction |= alignbits << 4;
16951 }
5287ad62
JB
16952 break;
16953
16954 default: ;
16955 }
16956
16957 /* Reg stride of 2 is encoded in bit 5 when size==16, bit 6 when size==32. */
16958 if (n != 0 && NEON_REG_STRIDE (inst.operands[0].imm) == 2)
16959 inst.instruction |= 1 << (4 + logsize);
5f4273c7 16960
5287ad62
JB
16961 inst.instruction |= NEON_LANE (inst.operands[0].imm) << (logsize + 5);
16962 inst.instruction |= logsize << 10;
16963}
16964
16965/* Encode single n-element structure to all lanes VLD<n> instructions. */
16966
16967static void
16968do_neon_ld_dup (void)
16969{
037e8744 16970 struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
aa8a0863 16971 int align_good, do_alignment = 0;
5287ad62 16972
dcbf9037
JB
16973 if (et.type == NT_invtype)
16974 return;
16975
5287ad62
JB
16976 switch ((inst.instruction >> 8) & 3)
16977 {
16978 case 0: /* VLD1. */
9c2799c2 16979 gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
5287ad62 16980 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
aa8a0863 16981 &do_alignment, 16, 16, 32, 32, -1);
5287ad62 16982 if (align_good == FAIL)
477330fc 16983 return;
5287ad62 16984 switch (NEON_REGLIST_LENGTH (inst.operands[0].imm))
477330fc
RM
16985 {
16986 case 1: break;
16987 case 2: inst.instruction |= 1 << 5; break;
16988 default: first_error (_("bad list length")); return;
16989 }
5287ad62
JB
16990 inst.instruction |= neon_logbits (et.size) << 6;
16991 break;
16992
16993 case 1: /* VLD2. */
16994 align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
aa8a0863
TS
16995 &do_alignment, 8, 16, 16, 32, 32, 64,
16996 -1);
5287ad62 16997 if (align_good == FAIL)
477330fc 16998 return;
5287ad62 16999 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 2,
477330fc 17000 _("bad list length"));
5287ad62 17001 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 17002 inst.instruction |= 1 << 5;
5287ad62
JB
17003 inst.instruction |= neon_logbits (et.size) << 6;
17004 break;
17005
17006 case 2: /* VLD3. */
17007 constraint (inst.operands[1].immisalign,
477330fc 17008 _("can't use alignment with this instruction"));
5287ad62 17009 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 3,
477330fc 17010 _("bad list length"));
5287ad62 17011 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
477330fc 17012 inst.instruction |= 1 << 5;
5287ad62
JB
17013 inst.instruction |= neon_logbits (et.size) << 6;
17014 break;
17015
17016 case 3: /* VLD4. */
17017 {
477330fc 17018 int align = inst.operands[1].imm >> 8;
aa8a0863 17019 align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
477330fc
RM
17020 16, 64, 32, 64, 32, 128, -1);
17021 if (align_good == FAIL)
17022 return;
17023 constraint (NEON_REGLIST_LENGTH (inst.operands[0].imm) != 4,
17024 _("bad list length"));
17025 if (NEON_REG_STRIDE (inst.operands[0].imm) == 2)
17026 inst.instruction |= 1 << 5;
17027 if (et.size == 32 && align == 128)
17028 inst.instruction |= 0x3 << 6;
17029 else
17030 inst.instruction |= neon_logbits (et.size) << 6;
5287ad62
JB
17031 }
17032 break;
17033
17034 default: ;
17035 }
17036
aa8a0863 17037 inst.instruction |= do_alignment << 4;
5287ad62
JB
17038}
17039
17040/* Disambiguate VLD<n> and VST<n> instructions, and fill in common bits (those
17041 apart from bits [11:4]. */
17042
17043static void
17044do_neon_ldx_stx (void)
17045{
b1a769ed
DG
17046 if (inst.operands[1].isreg)
17047 constraint (inst.operands[1].reg == REG_PC, BAD_PC);
17048
5287ad62
JB
17049 switch (NEON_LANE (inst.operands[0].imm))
17050 {
17051 case NEON_INTERLEAVE_LANES:
88714cb8 17052 NEON_ENCODE (INTERLV, inst);
5287ad62
JB
17053 do_neon_ld_st_interleave ();
17054 break;
5f4273c7 17055
5287ad62 17056 case NEON_ALL_LANES:
88714cb8 17057 NEON_ENCODE (DUP, inst);
2d51fb74
JB
17058 if (inst.instruction == N_INV)
17059 {
17060 first_error ("only loads support such operands");
17061 break;
17062 }
5287ad62
JB
17063 do_neon_ld_dup ();
17064 break;
5f4273c7 17065
5287ad62 17066 default:
88714cb8 17067 NEON_ENCODE (LANE, inst);
5287ad62
JB
17068 do_neon_ld_st_lane ();
17069 }
17070
17071 /* L bit comes from bit mask. */
17072 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17073 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17074 inst.instruction |= inst.operands[1].reg << 16;
5f4273c7 17075
5287ad62
JB
17076 if (inst.operands[1].postind)
17077 {
17078 int postreg = inst.operands[1].imm & 0xf;
17079 constraint (!inst.operands[1].immisreg,
477330fc 17080 _("post-index must be a register"));
5287ad62 17081 constraint (postreg == 0xd || postreg == 0xf,
477330fc 17082 _("bad register for post-index"));
5287ad62
JB
17083 inst.instruction |= postreg;
17084 }
4f2374c7 17085 else
5287ad62 17086 {
4f2374c7
WN
17087 constraint (inst.operands[1].immisreg, BAD_ADDR_MODE);
17088 constraint (inst.reloc.exp.X_op != O_constant
17089 || inst.reloc.exp.X_add_number != 0,
17090 BAD_ADDR_MODE);
17091
17092 if (inst.operands[1].writeback)
17093 {
17094 inst.instruction |= 0xd;
17095 }
17096 else
17097 inst.instruction |= 0xf;
5287ad62 17098 }
5f4273c7 17099
5287ad62
JB
17100 if (thumb_mode)
17101 inst.instruction |= 0xf9000000;
17102 else
17103 inst.instruction |= 0xf4000000;
17104}
33399f07
MGD
17105
17106/* FP v8. */
17107static void
17108do_vfp_nsyn_fpv8 (enum neon_shape rs)
17109{
a715796b
TG
17110 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
17111 D register operands. */
17112 if (neon_shape_class[rs] == SC_DOUBLE)
17113 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
17114 _(BAD_FPU));
17115
33399f07
MGD
17116 NEON_ENCODE (FPV8, inst);
17117
9db2f6b4
RL
17118 if (rs == NS_FFF || rs == NS_HHH)
17119 {
17120 do_vfp_sp_dyadic ();
17121
17122 /* ARMv8.2 fp16 instruction. */
17123 if (rs == NS_HHH)
17124 do_scalar_fp16_v82_encode ();
17125 }
33399f07
MGD
17126 else
17127 do_vfp_dp_rd_rn_rm ();
17128
17129 if (rs == NS_DDD)
17130 inst.instruction |= 0x100;
17131
17132 inst.instruction |= 0xf0000000;
17133}
17134
17135static void
17136do_vsel (void)
17137{
17138 set_it_insn_type (OUTSIDE_IT_INSN);
17139
17140 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) != SUCCESS)
17141 first_error (_("invalid instruction shape"));
17142}
17143
73924fbc
MGD
17144static void
17145do_vmaxnm (void)
17146{
17147 set_it_insn_type (OUTSIDE_IT_INSN);
17148
17149 if (try_vfp_nsyn (3, do_vfp_nsyn_fpv8) == SUCCESS)
17150 return;
17151
17152 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
17153 return;
17154
cc933301 17155 neon_dyadic_misc (NT_untyped, N_F_16_32, 0);
73924fbc
MGD
17156}
17157
30bdf752
MGD
17158static void
17159do_vrint_1 (enum neon_cvt_mode mode)
17160{
9db2f6b4 17161 enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_QQ, NS_NULL);
30bdf752
MGD
17162 struct neon_type_el et;
17163
17164 if (rs == NS_NULL)
17165 return;
17166
a715796b
TG
17167 /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
17168 D register operands. */
17169 if (neon_shape_class[rs] == SC_DOUBLE)
17170 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
17171 _(BAD_FPU));
17172
9db2f6b4
RL
17173 et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY
17174 | N_VFP);
30bdf752
MGD
17175 if (et.type != NT_invtype)
17176 {
17177 /* VFP encodings. */
17178 if (mode == neon_cvt_mode_a || mode == neon_cvt_mode_n
17179 || mode == neon_cvt_mode_p || mode == neon_cvt_mode_m)
17180 set_it_insn_type (OUTSIDE_IT_INSN);
17181
17182 NEON_ENCODE (FPV8, inst);
9db2f6b4 17183 if (rs == NS_FF || rs == NS_HH)
30bdf752
MGD
17184 do_vfp_sp_monadic ();
17185 else
17186 do_vfp_dp_rd_rm ();
17187
17188 switch (mode)
17189 {
17190 case neon_cvt_mode_r: inst.instruction |= 0x00000000; break;
17191 case neon_cvt_mode_z: inst.instruction |= 0x00000080; break;
17192 case neon_cvt_mode_x: inst.instruction |= 0x00010000; break;
17193 case neon_cvt_mode_a: inst.instruction |= 0xf0000000; break;
17194 case neon_cvt_mode_n: inst.instruction |= 0xf0010000; break;
17195 case neon_cvt_mode_p: inst.instruction |= 0xf0020000; break;
17196 case neon_cvt_mode_m: inst.instruction |= 0xf0030000; break;
17197 default: abort ();
17198 }
17199
17200 inst.instruction |= (rs == NS_DD) << 8;
17201 do_vfp_cond_or_thumb ();
9db2f6b4
RL
17202
17203 /* ARMv8.2 fp16 vrint instruction. */
17204 if (rs == NS_HH)
17205 do_scalar_fp16_v82_encode ();
30bdf752
MGD
17206 }
17207 else
17208 {
17209 /* Neon encodings (or something broken...). */
17210 inst.error = NULL;
cc933301 17211 et = neon_check_type (2, rs, N_EQK, N_F_16_32 | N_KEY);
30bdf752
MGD
17212
17213 if (et.type == NT_invtype)
17214 return;
17215
17216 set_it_insn_type (OUTSIDE_IT_INSN);
17217 NEON_ENCODE (FLOAT, inst);
17218
17219 if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH8) == FAIL)
17220 return;
17221
17222 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17223 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17224 inst.instruction |= LOW4 (inst.operands[1].reg);
17225 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17226 inst.instruction |= neon_quad (rs) << 6;
cc933301
JW
17227 /* Mask off the original size bits and reencode them. */
17228 inst.instruction = ((inst.instruction & 0xfff3ffff)
17229 | neon_logbits (et.size) << 18);
17230
30bdf752
MGD
17231 switch (mode)
17232 {
17233 case neon_cvt_mode_z: inst.instruction |= 3 << 7; break;
17234 case neon_cvt_mode_x: inst.instruction |= 1 << 7; break;
17235 case neon_cvt_mode_a: inst.instruction |= 2 << 7; break;
17236 case neon_cvt_mode_n: inst.instruction |= 0 << 7; break;
17237 case neon_cvt_mode_p: inst.instruction |= 7 << 7; break;
17238 case neon_cvt_mode_m: inst.instruction |= 5 << 7; break;
17239 case neon_cvt_mode_r: inst.error = _("invalid rounding mode"); break;
17240 default: abort ();
17241 }
17242
17243 if (thumb_mode)
17244 inst.instruction |= 0xfc000000;
17245 else
17246 inst.instruction |= 0xf0000000;
17247 }
17248}
17249
17250static void
17251do_vrintx (void)
17252{
17253 do_vrint_1 (neon_cvt_mode_x);
17254}
17255
17256static void
17257do_vrintz (void)
17258{
17259 do_vrint_1 (neon_cvt_mode_z);
17260}
17261
17262static void
17263do_vrintr (void)
17264{
17265 do_vrint_1 (neon_cvt_mode_r);
17266}
17267
17268static void
17269do_vrinta (void)
17270{
17271 do_vrint_1 (neon_cvt_mode_a);
17272}
17273
17274static void
17275do_vrintn (void)
17276{
17277 do_vrint_1 (neon_cvt_mode_n);
17278}
17279
17280static void
17281do_vrintp (void)
17282{
17283 do_vrint_1 (neon_cvt_mode_p);
17284}
17285
17286static void
17287do_vrintm (void)
17288{
17289 do_vrint_1 (neon_cvt_mode_m);
17290}
17291
c28eeff2
SN
17292static unsigned
17293neon_scalar_for_vcmla (unsigned opnd, unsigned elsize)
17294{
17295 unsigned regno = NEON_SCALAR_REG (opnd);
17296 unsigned elno = NEON_SCALAR_INDEX (opnd);
17297
17298 if (elsize == 16 && elno < 2 && regno < 16)
17299 return regno | (elno << 4);
17300 else if (elsize == 32 && elno == 0)
17301 return regno;
17302
17303 first_error (_("scalar out of range"));
17304 return 0;
17305}
17306
17307static void
17308do_vcmla (void)
17309{
17310 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
17311 _(BAD_FPU));
17312 constraint (inst.reloc.exp.X_op != O_constant, _("expression too complex"));
17313 unsigned rot = inst.reloc.exp.X_add_number;
17314 constraint (rot != 0 && rot != 90 && rot != 180 && rot != 270,
17315 _("immediate out of range"));
17316 rot /= 90;
17317 if (inst.operands[2].isscalar)
17318 {
17319 enum neon_shape rs = neon_select_shape (NS_DDSI, NS_QQSI, NS_NULL);
17320 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
17321 N_KEY | N_F16 | N_F32).size;
17322 unsigned m = neon_scalar_for_vcmla (inst.operands[2].reg, size);
17323 inst.is_neon = 1;
17324 inst.instruction = 0xfe000800;
17325 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17326 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17327 inst.instruction |= LOW4 (inst.operands[1].reg) << 16;
17328 inst.instruction |= HI1 (inst.operands[1].reg) << 7;
17329 inst.instruction |= LOW4 (m);
17330 inst.instruction |= HI1 (m) << 5;
17331 inst.instruction |= neon_quad (rs) << 6;
17332 inst.instruction |= rot << 20;
17333 inst.instruction |= (size == 32) << 23;
17334 }
17335 else
17336 {
17337 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
17338 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
17339 N_KEY | N_F16 | N_F32).size;
17340 neon_three_same (neon_quad (rs), 0, -1);
17341 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
17342 inst.instruction |= 0xfc200800;
17343 inst.instruction |= rot << 23;
17344 inst.instruction |= (size == 32) << 20;
17345 }
17346}
17347
17348static void
17349do_vcadd (void)
17350{
17351 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_armv8),
17352 _(BAD_FPU));
17353 constraint (inst.reloc.exp.X_op != O_constant, _("expression too complex"));
17354 unsigned rot = inst.reloc.exp.X_add_number;
17355 constraint (rot != 90 && rot != 270, _("immediate out of range"));
17356 enum neon_shape rs = neon_select_shape (NS_DDDI, NS_QQQI, NS_NULL);
17357 unsigned size = neon_check_type (3, rs, N_EQK, N_EQK,
17358 N_KEY | N_F16 | N_F32).size;
17359 neon_three_same (neon_quad (rs), 0, -1);
17360 inst.instruction &= 0x00ffffff; /* Undo neon_dp_fixup. */
17361 inst.instruction |= 0xfc800800;
17362 inst.instruction |= (rot == 270) << 24;
17363 inst.instruction |= (size == 32) << 20;
17364}
17365
91ff7894
MGD
17366/* Crypto v1 instructions. */
17367static void
17368do_crypto_2op_1 (unsigned elttype, int op)
17369{
17370 set_it_insn_type (OUTSIDE_IT_INSN);
17371
17372 if (neon_check_type (2, NS_QQ, N_EQK | N_UNT, elttype | N_UNT | N_KEY).type
17373 == NT_invtype)
17374 return;
17375
17376 inst.error = NULL;
17377
17378 NEON_ENCODE (INTEGER, inst);
17379 inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
17380 inst.instruction |= HI1 (inst.operands[0].reg) << 22;
17381 inst.instruction |= LOW4 (inst.operands[1].reg);
17382 inst.instruction |= HI1 (inst.operands[1].reg) << 5;
17383 if (op != -1)
17384 inst.instruction |= op << 6;
17385
17386 if (thumb_mode)
17387 inst.instruction |= 0xfc000000;
17388 else
17389 inst.instruction |= 0xf0000000;
17390}
17391
48adcd8e
MGD
17392static void
17393do_crypto_3op_1 (int u, int op)
17394{
17395 set_it_insn_type (OUTSIDE_IT_INSN);
17396
17397 if (neon_check_type (3, NS_QQQ, N_EQK | N_UNT, N_EQK | N_UNT,
17398 N_32 | N_UNT | N_KEY).type == NT_invtype)
17399 return;
17400
17401 inst.error = NULL;
17402
17403 NEON_ENCODE (INTEGER, inst);
17404 neon_three_same (1, u, 8 << op);
17405}
17406
91ff7894
MGD
17407static void
17408do_aese (void)
17409{
17410 do_crypto_2op_1 (N_8, 0);
17411}
17412
17413static void
17414do_aesd (void)
17415{
17416 do_crypto_2op_1 (N_8, 1);
17417}
17418
17419static void
17420do_aesmc (void)
17421{
17422 do_crypto_2op_1 (N_8, 2);
17423}
17424
17425static void
17426do_aesimc (void)
17427{
17428 do_crypto_2op_1 (N_8, 3);
17429}
17430
48adcd8e
MGD
17431static void
17432do_sha1c (void)
17433{
17434 do_crypto_3op_1 (0, 0);
17435}
17436
17437static void
17438do_sha1p (void)
17439{
17440 do_crypto_3op_1 (0, 1);
17441}
17442
17443static void
17444do_sha1m (void)
17445{
17446 do_crypto_3op_1 (0, 2);
17447}
17448
17449static void
17450do_sha1su0 (void)
17451{
17452 do_crypto_3op_1 (0, 3);
17453}
91ff7894 17454
48adcd8e
MGD
17455static void
17456do_sha256h (void)
17457{
17458 do_crypto_3op_1 (1, 0);
17459}
17460
17461static void
17462do_sha256h2 (void)
17463{
17464 do_crypto_3op_1 (1, 1);
17465}
17466
17467static void
17468do_sha256su1 (void)
17469{
17470 do_crypto_3op_1 (1, 2);
17471}
3c9017d2
MGD
17472
17473static void
17474do_sha1h (void)
17475{
17476 do_crypto_2op_1 (N_32, -1);
17477}
17478
17479static void
17480do_sha1su1 (void)
17481{
17482 do_crypto_2op_1 (N_32, 0);
17483}
17484
17485static void
17486do_sha256su0 (void)
17487{
17488 do_crypto_2op_1 (N_32, 1);
17489}
dd5181d5
KT
17490
17491static void
17492do_crc32_1 (unsigned int poly, unsigned int sz)
17493{
17494 unsigned int Rd = inst.operands[0].reg;
17495 unsigned int Rn = inst.operands[1].reg;
17496 unsigned int Rm = inst.operands[2].reg;
17497
17498 set_it_insn_type (OUTSIDE_IT_INSN);
17499 inst.instruction |= LOW4 (Rd) << (thumb_mode ? 8 : 12);
17500 inst.instruction |= LOW4 (Rn) << 16;
17501 inst.instruction |= LOW4 (Rm);
17502 inst.instruction |= sz << (thumb_mode ? 4 : 21);
17503 inst.instruction |= poly << (thumb_mode ? 20 : 9);
17504
17505 if (Rd == REG_PC || Rn == REG_PC || Rm == REG_PC)
17506 as_warn (UNPRED_REG ("r15"));
17507 if (thumb_mode && (Rd == REG_SP || Rn == REG_SP || Rm == REG_SP))
17508 as_warn (UNPRED_REG ("r13"));
17509}
17510
17511static void
17512do_crc32b (void)
17513{
17514 do_crc32_1 (0, 0);
17515}
17516
17517static void
17518do_crc32h (void)
17519{
17520 do_crc32_1 (0, 1);
17521}
17522
17523static void
17524do_crc32w (void)
17525{
17526 do_crc32_1 (0, 2);
17527}
17528
17529static void
17530do_crc32cb (void)
17531{
17532 do_crc32_1 (1, 0);
17533}
17534
17535static void
17536do_crc32ch (void)
17537{
17538 do_crc32_1 (1, 1);
17539}
17540
17541static void
17542do_crc32cw (void)
17543{
17544 do_crc32_1 (1, 2);
17545}
17546
49e8a725
SN
17547static void
17548do_vjcvt (void)
17549{
17550 constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
17551 _(BAD_FPU));
17552 neon_check_type (2, NS_FD, N_S32, N_F64);
17553 do_vfp_sp_dp_cvt ();
17554 do_vfp_cond_or_thumb ();
17555}
17556
5287ad62
JB
17557\f
17558/* Overall per-instruction processing. */
17559
17560/* We need to be able to fix up arbitrary expressions in some statements.
17561 This is so that we can handle symbols that are an arbitrary distance from
17562 the pc. The most common cases are of the form ((+/-sym -/+ . - 8) & mask),
17563 which returns part of an address in a form which will be valid for
17564 a data instruction. We do this by pushing the expression into a symbol
17565 in the expr_section, and creating a fix for that. */
17566
17567static void
17568fix_new_arm (fragS * frag,
17569 int where,
17570 short int size,
17571 expressionS * exp,
17572 int pc_rel,
17573 int reloc)
17574{
17575 fixS * new_fix;
17576
17577 switch (exp->X_op)
17578 {
17579 case O_constant:
6e7ce2cd
PB
17580 if (pc_rel)
17581 {
17582 /* Create an absolute valued symbol, so we have something to
477330fc
RM
17583 refer to in the object file. Unfortunately for us, gas's
17584 generic expression parsing will already have folded out
17585 any use of .set foo/.type foo %function that may have
17586 been used to set type information of the target location,
17587 that's being specified symbolically. We have to presume
17588 the user knows what they are doing. */
6e7ce2cd
PB
17589 char name[16 + 8];
17590 symbolS *symbol;
17591
17592 sprintf (name, "*ABS*0x%lx", (unsigned long)exp->X_add_number);
17593
17594 symbol = symbol_find_or_make (name);
17595 S_SET_SEGMENT (symbol, absolute_section);
17596 symbol_set_frag (symbol, &zero_address_frag);
17597 S_SET_VALUE (symbol, exp->X_add_number);
17598 exp->X_op = O_symbol;
17599 exp->X_add_symbol = symbol;
17600 exp->X_add_number = 0;
17601 }
17602 /* FALLTHROUGH */
5287ad62
JB
17603 case O_symbol:
17604 case O_add:
17605 case O_subtract:
21d799b5 17606 new_fix = fix_new_exp (frag, where, size, exp, pc_rel,
477330fc 17607 (enum bfd_reloc_code_real) reloc);
5287ad62
JB
17608 break;
17609
17610 default:
21d799b5 17611 new_fix = (fixS *) fix_new (frag, where, size, make_expr_symbol (exp), 0,
477330fc 17612 pc_rel, (enum bfd_reloc_code_real) reloc);
5287ad62
JB
17613 break;
17614 }
17615
17616 /* Mark whether the fix is to a THUMB instruction, or an ARM
17617 instruction. */
17618 new_fix->tc_fix_data = thumb_mode;
17619}
17620
17621/* Create a frg for an instruction requiring relaxation. */
17622static void
17623output_relax_insn (void)
17624{
17625 char * to;
17626 symbolS *sym;
0110f2b8
PB
17627 int offset;
17628
6e1cb1a6
PB
17629 /* The size of the instruction is unknown, so tie the debug info to the
17630 start of the instruction. */
17631 dwarf2_emit_insn (0);
6e1cb1a6 17632
0110f2b8
PB
17633 switch (inst.reloc.exp.X_op)
17634 {
17635 case O_symbol:
17636 sym = inst.reloc.exp.X_add_symbol;
17637 offset = inst.reloc.exp.X_add_number;
17638 break;
17639 case O_constant:
17640 sym = NULL;
17641 offset = inst.reloc.exp.X_add_number;
17642 break;
17643 default:
17644 sym = make_expr_symbol (&inst.reloc.exp);
17645 offset = 0;
17646 break;
17647 }
17648 to = frag_var (rs_machine_dependent, INSN_SIZE, THUMB_SIZE,
17649 inst.relax, sym, offset, NULL/*offset, opcode*/);
17650 md_number_to_chars (to, inst.instruction, THUMB_SIZE);
0110f2b8
PB
17651}
17652
17653/* Write a 32-bit thumb instruction to buf. */
17654static void
17655put_thumb32_insn (char * buf, unsigned long insn)
17656{
17657 md_number_to_chars (buf, insn >> 16, THUMB_SIZE);
17658 md_number_to_chars (buf + THUMB_SIZE, insn, THUMB_SIZE);
17659}
17660
b99bd4ef 17661static void
c19d1205 17662output_inst (const char * str)
b99bd4ef 17663{
c19d1205 17664 char * to = NULL;
b99bd4ef 17665
c19d1205 17666 if (inst.error)
b99bd4ef 17667 {
c19d1205 17668 as_bad ("%s -- `%s'", inst.error, str);
b99bd4ef
NC
17669 return;
17670 }
5f4273c7
NC
17671 if (inst.relax)
17672 {
17673 output_relax_insn ();
0110f2b8 17674 return;
5f4273c7 17675 }
c19d1205
ZW
17676 if (inst.size == 0)
17677 return;
b99bd4ef 17678
c19d1205 17679 to = frag_more (inst.size);
8dc2430f
NC
17680 /* PR 9814: Record the thumb mode into the current frag so that we know
17681 what type of NOP padding to use, if necessary. We override any previous
17682 setting so that if the mode has changed then the NOPS that we use will
17683 match the encoding of the last instruction in the frag. */
cd000bff 17684 frag_now->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
c19d1205
ZW
17685
17686 if (thumb_mode && (inst.size > THUMB_SIZE))
b99bd4ef 17687 {
9c2799c2 17688 gas_assert (inst.size == (2 * THUMB_SIZE));
0110f2b8 17689 put_thumb32_insn (to, inst.instruction);
b99bd4ef 17690 }
c19d1205 17691 else if (inst.size > INSN_SIZE)
b99bd4ef 17692 {
9c2799c2 17693 gas_assert (inst.size == (2 * INSN_SIZE));
c19d1205
ZW
17694 md_number_to_chars (to, inst.instruction, INSN_SIZE);
17695 md_number_to_chars (to + INSN_SIZE, inst.instruction, INSN_SIZE);
b99bd4ef 17696 }
c19d1205
ZW
17697 else
17698 md_number_to_chars (to, inst.instruction, inst.size);
b99bd4ef 17699
c19d1205
ZW
17700 if (inst.reloc.type != BFD_RELOC_UNUSED)
17701 fix_new_arm (frag_now, to - frag_now->fr_literal,
17702 inst.size, & inst.reloc.exp, inst.reloc.pc_rel,
17703 inst.reloc.type);
b99bd4ef 17704
c19d1205 17705 dwarf2_emit_insn (inst.size);
c19d1205 17706}
b99bd4ef 17707
e07e6e58
NC
17708static char *
17709output_it_inst (int cond, int mask, char * to)
17710{
17711 unsigned long instruction = 0xbf00;
17712
17713 mask &= 0xf;
17714 instruction |= mask;
17715 instruction |= cond << 4;
17716
17717 if (to == NULL)
17718 {
17719 to = frag_more (2);
17720#ifdef OBJ_ELF
17721 dwarf2_emit_insn (2);
17722#endif
17723 }
17724
17725 md_number_to_chars (to, instruction, 2);
17726
17727 return to;
17728}
17729
c19d1205
ZW
17730/* Tag values used in struct asm_opcode's tag field. */
17731enum opcode_tag
17732{
17733 OT_unconditional, /* Instruction cannot be conditionalized.
17734 The ARM condition field is still 0xE. */
17735 OT_unconditionalF, /* Instruction cannot be conditionalized
17736 and carries 0xF in its ARM condition field. */
17737 OT_csuffix, /* Instruction takes a conditional suffix. */
037e8744 17738 OT_csuffixF, /* Some forms of the instruction take a conditional
477330fc
RM
17739 suffix, others place 0xF where the condition field
17740 would be. */
c19d1205
ZW
17741 OT_cinfix3, /* Instruction takes a conditional infix,
17742 beginning at character index 3. (In
17743 unified mode, it becomes a suffix.) */
088fa78e
KH
17744 OT_cinfix3_deprecated, /* The same as OT_cinfix3. This is used for
17745 tsts, cmps, cmns, and teqs. */
e3cb604e
PB
17746 OT_cinfix3_legacy, /* Legacy instruction takes a conditional infix at
17747 character index 3, even in unified mode. Used for
17748 legacy instructions where suffix and infix forms
17749 may be ambiguous. */
c19d1205 17750 OT_csuf_or_in3, /* Instruction takes either a conditional
e3cb604e 17751 suffix or an infix at character index 3. */
c19d1205
ZW
17752 OT_odd_infix_unc, /* This is the unconditional variant of an
17753 instruction that takes a conditional infix
17754 at an unusual position. In unified mode,
17755 this variant will accept a suffix. */
17756 OT_odd_infix_0 /* Values greater than or equal to OT_odd_infix_0
17757 are the conditional variants of instructions that
17758 take conditional infixes in unusual positions.
17759 The infix appears at character index
17760 (tag - OT_odd_infix_0). These are not accepted
17761 in unified mode. */
17762};
b99bd4ef 17763
c19d1205
ZW
17764/* Subroutine of md_assemble, responsible for looking up the primary
17765 opcode from the mnemonic the user wrote. STR points to the
17766 beginning of the mnemonic.
17767
17768 This is not simply a hash table lookup, because of conditional
17769 variants. Most instructions have conditional variants, which are
17770 expressed with a _conditional affix_ to the mnemonic. If we were
17771 to encode each conditional variant as a literal string in the opcode
17772 table, it would have approximately 20,000 entries.
17773
17774 Most mnemonics take this affix as a suffix, and in unified syntax,
17775 'most' is upgraded to 'all'. However, in the divided syntax, some
17776 instructions take the affix as an infix, notably the s-variants of
17777 the arithmetic instructions. Of those instructions, all but six
17778 have the infix appear after the third character of the mnemonic.
17779
17780 Accordingly, the algorithm for looking up primary opcodes given
17781 an identifier is:
17782
17783 1. Look up the identifier in the opcode table.
17784 If we find a match, go to step U.
17785
17786 2. Look up the last two characters of the identifier in the
17787 conditions table. If we find a match, look up the first N-2
17788 characters of the identifier in the opcode table. If we
17789 find a match, go to step CE.
17790
17791 3. Look up the fourth and fifth characters of the identifier in
17792 the conditions table. If we find a match, extract those
17793 characters from the identifier, and look up the remaining
17794 characters in the opcode table. If we find a match, go
17795 to step CM.
17796
17797 4. Fail.
17798
17799 U. Examine the tag field of the opcode structure, in case this is
17800 one of the six instructions with its conditional infix in an
17801 unusual place. If it is, the tag tells us where to find the
17802 infix; look it up in the conditions table and set inst.cond
17803 accordingly. Otherwise, this is an unconditional instruction.
17804 Again set inst.cond accordingly. Return the opcode structure.
17805
17806 CE. Examine the tag field to make sure this is an instruction that
17807 should receive a conditional suffix. If it is not, fail.
17808 Otherwise, set inst.cond from the suffix we already looked up,
17809 and return the opcode structure.
17810
17811 CM. Examine the tag field to make sure this is an instruction that
17812 should receive a conditional infix after the third character.
17813 If it is not, fail. Otherwise, undo the edits to the current
17814 line of input and proceed as for case CE. */
17815
17816static const struct asm_opcode *
17817opcode_lookup (char **str)
17818{
17819 char *end, *base;
17820 char *affix;
17821 const struct asm_opcode *opcode;
17822 const struct asm_cond *cond;
e3cb604e 17823 char save[2];
c19d1205
ZW
17824
17825 /* Scan up to the end of the mnemonic, which must end in white space,
721a8186 17826 '.' (in unified mode, or for Neon/VFP instructions), or end of string. */
c19d1205 17827 for (base = end = *str; *end != '\0'; end++)
721a8186 17828 if (*end == ' ' || *end == '.')
c19d1205 17829 break;
b99bd4ef 17830
c19d1205 17831 if (end == base)
c921be7d 17832 return NULL;
b99bd4ef 17833
5287ad62 17834 /* Handle a possible width suffix and/or Neon type suffix. */
c19d1205 17835 if (end[0] == '.')
b99bd4ef 17836 {
5287ad62 17837 int offset = 2;
5f4273c7 17838
267d2029 17839 /* The .w and .n suffixes are only valid if the unified syntax is in
477330fc 17840 use. */
267d2029 17841 if (unified_syntax && end[1] == 'w')
c19d1205 17842 inst.size_req = 4;
267d2029 17843 else if (unified_syntax && end[1] == 'n')
c19d1205
ZW
17844 inst.size_req = 2;
17845 else
477330fc 17846 offset = 0;
5287ad62
JB
17847
17848 inst.vectype.elems = 0;
17849
17850 *str = end + offset;
b99bd4ef 17851
5f4273c7 17852 if (end[offset] == '.')
5287ad62 17853 {
267d2029 17854 /* See if we have a Neon type suffix (possible in either unified or
477330fc
RM
17855 non-unified ARM syntax mode). */
17856 if (parse_neon_type (&inst.vectype, str) == FAIL)
c921be7d 17857 return NULL;
477330fc 17858 }
5287ad62 17859 else if (end[offset] != '\0' && end[offset] != ' ')
477330fc 17860 return NULL;
b99bd4ef 17861 }
c19d1205
ZW
17862 else
17863 *str = end;
b99bd4ef 17864
c19d1205 17865 /* Look for unaffixed or special-case affixed mnemonic. */
21d799b5 17866 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17867 end - base);
c19d1205 17868 if (opcode)
b99bd4ef 17869 {
c19d1205
ZW
17870 /* step U */
17871 if (opcode->tag < OT_odd_infix_0)
b99bd4ef 17872 {
c19d1205
ZW
17873 inst.cond = COND_ALWAYS;
17874 return opcode;
b99bd4ef 17875 }
b99bd4ef 17876
278df34e 17877 if (warn_on_deprecated && unified_syntax)
5c3696f8 17878 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205 17879 affix = base + (opcode->tag - OT_odd_infix_0);
21d799b5 17880 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
9c2799c2 17881 gas_assert (cond);
b99bd4ef 17882
c19d1205
ZW
17883 inst.cond = cond->value;
17884 return opcode;
17885 }
b99bd4ef 17886
c19d1205
ZW
17887 /* Cannot have a conditional suffix on a mnemonic of less than two
17888 characters. */
17889 if (end - base < 3)
c921be7d 17890 return NULL;
b99bd4ef 17891
c19d1205
ZW
17892 /* Look for suffixed mnemonic. */
17893 affix = end - 2;
21d799b5
NC
17894 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
17895 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17896 affix - base);
c19d1205
ZW
17897 if (opcode && cond)
17898 {
17899 /* step CE */
17900 switch (opcode->tag)
17901 {
e3cb604e
PB
17902 case OT_cinfix3_legacy:
17903 /* Ignore conditional suffixes matched on infix only mnemonics. */
17904 break;
17905
c19d1205 17906 case OT_cinfix3:
088fa78e 17907 case OT_cinfix3_deprecated:
c19d1205
ZW
17908 case OT_odd_infix_unc:
17909 if (!unified_syntax)
e3cb604e 17910 return 0;
1a0670f3 17911 /* Fall through. */
c19d1205
ZW
17912
17913 case OT_csuffix:
477330fc 17914 case OT_csuffixF:
c19d1205
ZW
17915 case OT_csuf_or_in3:
17916 inst.cond = cond->value;
17917 return opcode;
17918
17919 case OT_unconditional:
17920 case OT_unconditionalF:
dfa9f0d5 17921 if (thumb_mode)
c921be7d 17922 inst.cond = cond->value;
dfa9f0d5
PB
17923 else
17924 {
c921be7d 17925 /* Delayed diagnostic. */
dfa9f0d5
PB
17926 inst.error = BAD_COND;
17927 inst.cond = COND_ALWAYS;
17928 }
c19d1205 17929 return opcode;
b99bd4ef 17930
c19d1205 17931 default:
c921be7d 17932 return NULL;
c19d1205
ZW
17933 }
17934 }
b99bd4ef 17935
c19d1205
ZW
17936 /* Cannot have a usual-position infix on a mnemonic of less than
17937 six characters (five would be a suffix). */
17938 if (end - base < 6)
c921be7d 17939 return NULL;
b99bd4ef 17940
c19d1205
ZW
17941 /* Look for infixed mnemonic in the usual position. */
17942 affix = base + 3;
21d799b5 17943 cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
e3cb604e 17944 if (!cond)
c921be7d 17945 return NULL;
e3cb604e
PB
17946
17947 memcpy (save, affix, 2);
17948 memmove (affix, affix + 2, (end - affix) - 2);
21d799b5 17949 opcode = (const struct asm_opcode *) hash_find_n (arm_ops_hsh, base,
477330fc 17950 (end - base) - 2);
e3cb604e
PB
17951 memmove (affix + 2, affix, (end - affix) - 2);
17952 memcpy (affix, save, 2);
17953
088fa78e
KH
17954 if (opcode
17955 && (opcode->tag == OT_cinfix3
17956 || opcode->tag == OT_cinfix3_deprecated
17957 || opcode->tag == OT_csuf_or_in3
17958 || opcode->tag == OT_cinfix3_legacy))
b99bd4ef 17959 {
c921be7d 17960 /* Step CM. */
278df34e 17961 if (warn_on_deprecated && unified_syntax
088fa78e
KH
17962 && (opcode->tag == OT_cinfix3
17963 || opcode->tag == OT_cinfix3_deprecated))
5c3696f8 17964 as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
c19d1205
ZW
17965
17966 inst.cond = cond->value;
17967 return opcode;
b99bd4ef
NC
17968 }
17969
c921be7d 17970 return NULL;
b99bd4ef
NC
17971}
17972
e07e6e58
NC
17973/* This function generates an initial IT instruction, leaving its block
17974 virtually open for the new instructions. Eventually,
17975 the mask will be updated by now_it_add_mask () each time
17976 a new instruction needs to be included in the IT block.
17977 Finally, the block is closed with close_automatic_it_block ().
17978 The block closure can be requested either from md_assemble (),
17979 a tencode (), or due to a label hook. */
17980
17981static void
17982new_automatic_it_block (int cond)
17983{
17984 now_it.state = AUTOMATIC_IT_BLOCK;
17985 now_it.mask = 0x18;
17986 now_it.cc = cond;
17987 now_it.block_length = 1;
cd000bff 17988 mapping_state (MAP_THUMB);
e07e6e58 17989 now_it.insn = output_it_inst (cond, now_it.mask, NULL);
5a01bb1d
MGD
17990 now_it.warn_deprecated = FALSE;
17991 now_it.insn_cond = TRUE;
e07e6e58
NC
17992}
17993
17994/* Close an automatic IT block.
17995 See comments in new_automatic_it_block (). */
17996
17997static void
17998close_automatic_it_block (void)
17999{
18000 now_it.mask = 0x10;
18001 now_it.block_length = 0;
18002}
18003
18004/* Update the mask of the current automatically-generated IT
18005 instruction. See comments in new_automatic_it_block (). */
18006
18007static void
18008now_it_add_mask (int cond)
18009{
18010#define CLEAR_BIT(value, nbit) ((value) & ~(1 << (nbit)))
18011#define SET_BIT_VALUE(value, bitvalue, nbit) (CLEAR_BIT (value, nbit) \
477330fc 18012 | ((bitvalue) << (nbit)))
e07e6e58 18013 const int resulting_bit = (cond & 1);
c921be7d 18014
e07e6e58
NC
18015 now_it.mask &= 0xf;
18016 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
18017 resulting_bit,
18018 (5 - now_it.block_length));
e07e6e58 18019 now_it.mask = SET_BIT_VALUE (now_it.mask,
477330fc
RM
18020 1,
18021 ((5 - now_it.block_length) - 1) );
e07e6e58
NC
18022 output_it_inst (now_it.cc, now_it.mask, now_it.insn);
18023
18024#undef CLEAR_BIT
18025#undef SET_BIT_VALUE
e07e6e58
NC
18026}
18027
18028/* The IT blocks handling machinery is accessed through the these functions:
18029 it_fsm_pre_encode () from md_assemble ()
18030 set_it_insn_type () optional, from the tencode functions
18031 set_it_insn_type_last () ditto
18032 in_it_block () ditto
18033 it_fsm_post_encode () from md_assemble ()
33eaf5de 18034 force_automatic_it_block_close () from label handling functions
e07e6e58
NC
18035
18036 Rationale:
18037 1) md_assemble () calls it_fsm_pre_encode () before calling tencode (),
477330fc
RM
18038 initializing the IT insn type with a generic initial value depending
18039 on the inst.condition.
e07e6e58 18040 2) During the tencode function, two things may happen:
477330fc
RM
18041 a) The tencode function overrides the IT insn type by
18042 calling either set_it_insn_type (type) or set_it_insn_type_last ().
18043 b) The tencode function queries the IT block state by
18044 calling in_it_block () (i.e. to determine narrow/not narrow mode).
18045
18046 Both set_it_insn_type and in_it_block run the internal FSM state
18047 handling function (handle_it_state), because: a) setting the IT insn
18048 type may incur in an invalid state (exiting the function),
18049 and b) querying the state requires the FSM to be updated.
18050 Specifically we want to avoid creating an IT block for conditional
18051 branches, so it_fsm_pre_encode is actually a guess and we can't
18052 determine whether an IT block is required until the tencode () routine
18053 has decided what type of instruction this actually it.
18054 Because of this, if set_it_insn_type and in_it_block have to be used,
18055 set_it_insn_type has to be called first.
18056
18057 set_it_insn_type_last () is a wrapper of set_it_insn_type (type), that
18058 determines the insn IT type depending on the inst.cond code.
18059 When a tencode () routine encodes an instruction that can be
18060 either outside an IT block, or, in the case of being inside, has to be
18061 the last one, set_it_insn_type_last () will determine the proper
18062 IT instruction type based on the inst.cond code. Otherwise,
18063 set_it_insn_type can be called for overriding that logic or
18064 for covering other cases.
18065
18066 Calling handle_it_state () may not transition the IT block state to
2b0f3761 18067 OUTSIDE_IT_BLOCK immediately, since the (current) state could be
477330fc
RM
18068 still queried. Instead, if the FSM determines that the state should
18069 be transitioned to OUTSIDE_IT_BLOCK, a flag is marked to be closed
18070 after the tencode () function: that's what it_fsm_post_encode () does.
18071
18072 Since in_it_block () calls the state handling function to get an
18073 updated state, an error may occur (due to invalid insns combination).
18074 In that case, inst.error is set.
18075 Therefore, inst.error has to be checked after the execution of
18076 the tencode () routine.
e07e6e58
NC
18077
18078 3) Back in md_assemble(), it_fsm_post_encode () is called to commit
477330fc
RM
18079 any pending state change (if any) that didn't take place in
18080 handle_it_state () as explained above. */
e07e6e58
NC
18081
18082static void
18083it_fsm_pre_encode (void)
18084{
18085 if (inst.cond != COND_ALWAYS)
18086 inst.it_insn_type = INSIDE_IT_INSN;
18087 else
18088 inst.it_insn_type = OUTSIDE_IT_INSN;
18089
18090 now_it.state_handled = 0;
18091}
18092
18093/* IT state FSM handling function. */
18094
18095static int
18096handle_it_state (void)
18097{
18098 now_it.state_handled = 1;
5a01bb1d 18099 now_it.insn_cond = FALSE;
e07e6e58
NC
18100
18101 switch (now_it.state)
18102 {
18103 case OUTSIDE_IT_BLOCK:
18104 switch (inst.it_insn_type)
18105 {
18106 case OUTSIDE_IT_INSN:
18107 break;
18108
18109 case INSIDE_IT_INSN:
18110 case INSIDE_IT_LAST_INSN:
18111 if (thumb_mode == 0)
18112 {
c921be7d 18113 if (unified_syntax
e07e6e58
NC
18114 && !(implicit_it_mode & IMPLICIT_IT_MODE_ARM))
18115 as_tsktsk (_("Warning: conditional outside an IT block"\
18116 " for Thumb."));
18117 }
18118 else
18119 {
18120 if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
fc289b0a 18121 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
e07e6e58
NC
18122 {
18123 /* Automatically generate the IT instruction. */
18124 new_automatic_it_block (inst.cond);
18125 if (inst.it_insn_type == INSIDE_IT_LAST_INSN)
18126 close_automatic_it_block ();
18127 }
18128 else
18129 {
18130 inst.error = BAD_OUT_IT;
18131 return FAIL;
18132 }
18133 }
18134 break;
18135
18136 case IF_INSIDE_IT_LAST_INSN:
18137 case NEUTRAL_IT_INSN:
18138 break;
18139
18140 case IT_INSN:
18141 now_it.state = MANUAL_IT_BLOCK;
18142 now_it.block_length = 0;
18143 break;
18144 }
18145 break;
18146
18147 case AUTOMATIC_IT_BLOCK:
18148 /* Three things may happen now:
18149 a) We should increment current it block size;
18150 b) We should close current it block (closing insn or 4 insns);
18151 c) We should close current it block and start a new one (due
18152 to incompatible conditions or
18153 4 insns-length block reached). */
18154
18155 switch (inst.it_insn_type)
18156 {
18157 case OUTSIDE_IT_INSN:
2b0f3761 18158 /* The closure of the block shall happen immediately,
e07e6e58
NC
18159 so any in_it_block () call reports the block as closed. */
18160 force_automatic_it_block_close ();
18161 break;
18162
18163 case INSIDE_IT_INSN:
18164 case INSIDE_IT_LAST_INSN:
18165 case IF_INSIDE_IT_LAST_INSN:
18166 now_it.block_length++;
18167
18168 if (now_it.block_length > 4
18169 || !now_it_compatible (inst.cond))
18170 {
18171 force_automatic_it_block_close ();
18172 if (inst.it_insn_type != IF_INSIDE_IT_LAST_INSN)
18173 new_automatic_it_block (inst.cond);
18174 }
18175 else
18176 {
5a01bb1d 18177 now_it.insn_cond = TRUE;
e07e6e58
NC
18178 now_it_add_mask (inst.cond);
18179 }
18180
18181 if (now_it.state == AUTOMATIC_IT_BLOCK
18182 && (inst.it_insn_type == INSIDE_IT_LAST_INSN
18183 || inst.it_insn_type == IF_INSIDE_IT_LAST_INSN))
18184 close_automatic_it_block ();
18185 break;
18186
18187 case NEUTRAL_IT_INSN:
18188 now_it.block_length++;
5a01bb1d 18189 now_it.insn_cond = TRUE;
e07e6e58
NC
18190
18191 if (now_it.block_length > 4)
18192 force_automatic_it_block_close ();
18193 else
18194 now_it_add_mask (now_it.cc & 1);
18195 break;
18196
18197 case IT_INSN:
18198 close_automatic_it_block ();
18199 now_it.state = MANUAL_IT_BLOCK;
18200 break;
18201 }
18202 break;
18203
18204 case MANUAL_IT_BLOCK:
18205 {
18206 /* Check conditional suffixes. */
18207 const int cond = now_it.cc ^ ((now_it.mask >> 4) & 1) ^ 1;
18208 int is_last;
18209 now_it.mask <<= 1;
18210 now_it.mask &= 0x1f;
18211 is_last = (now_it.mask == 0x10);
5a01bb1d 18212 now_it.insn_cond = TRUE;
e07e6e58
NC
18213
18214 switch (inst.it_insn_type)
18215 {
18216 case OUTSIDE_IT_INSN:
18217 inst.error = BAD_NOT_IT;
18218 return FAIL;
18219
18220 case INSIDE_IT_INSN:
18221 if (cond != inst.cond)
18222 {
18223 inst.error = BAD_IT_COND;
18224 return FAIL;
18225 }
18226 break;
18227
18228 case INSIDE_IT_LAST_INSN:
18229 case IF_INSIDE_IT_LAST_INSN:
18230 if (cond != inst.cond)
18231 {
18232 inst.error = BAD_IT_COND;
18233 return FAIL;
18234 }
18235 if (!is_last)
18236 {
18237 inst.error = BAD_BRANCH;
18238 return FAIL;
18239 }
18240 break;
18241
18242 case NEUTRAL_IT_INSN:
18243 /* The BKPT instruction is unconditional even in an IT block. */
18244 break;
18245
18246 case IT_INSN:
18247 inst.error = BAD_IT_IT;
18248 return FAIL;
18249 }
18250 }
18251 break;
18252 }
18253
18254 return SUCCESS;
18255}
18256
5a01bb1d
MGD
18257struct depr_insn_mask
18258{
18259 unsigned long pattern;
18260 unsigned long mask;
18261 const char* description;
18262};
18263
18264/* List of 16-bit instruction patterns deprecated in an IT block in
18265 ARMv8. */
18266static const struct depr_insn_mask depr_it_insns[] = {
18267 { 0xc000, 0xc000, N_("Short branches, Undefined, SVC, LDM/STM") },
18268 { 0xb000, 0xb000, N_("Miscellaneous 16-bit instructions") },
18269 { 0xa000, 0xb800, N_("ADR") },
18270 { 0x4800, 0xf800, N_("Literal loads") },
18271 { 0x4478, 0xf478, N_("Hi-register ADD, MOV, CMP, BX, BLX using pc") },
18272 { 0x4487, 0xfc87, N_("Hi-register ADD, MOV, CMP using pc") },
c8de034b
JW
18273 /* NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue'
18274 field in asm_opcode. 'tvalue' is used at the stage this check happen. */
18275 { 0x00dd, 0x7fff, N_("ADD/SUB sp, sp #imm") },
5a01bb1d
MGD
18276 { 0, 0, NULL }
18277};
18278
e07e6e58
NC
18279static void
18280it_fsm_post_encode (void)
18281{
18282 int is_last;
18283
18284 if (!now_it.state_handled)
18285 handle_it_state ();
18286
5a01bb1d
MGD
18287 if (now_it.insn_cond
18288 && !now_it.warn_deprecated
18289 && warn_on_deprecated
18290 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
18291 {
18292 if (inst.instruction >= 0x10000)
18293 {
5c3696f8 18294 as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
5a01bb1d
MGD
18295 "deprecated in ARMv8"));
18296 now_it.warn_deprecated = TRUE;
18297 }
18298 else
18299 {
18300 const struct depr_insn_mask *p = depr_it_insns;
18301
18302 while (p->mask != 0)
18303 {
18304 if ((inst.instruction & p->mask) == p->pattern)
18305 {
5c3696f8 18306 as_tsktsk (_("IT blocks containing 16-bit Thumb instructions "
5a01bb1d
MGD
18307 "of the following class are deprecated in ARMv8: "
18308 "%s"), p->description);
18309 now_it.warn_deprecated = TRUE;
18310 break;
18311 }
18312
18313 ++p;
18314 }
18315 }
18316
18317 if (now_it.block_length > 1)
18318 {
5c3696f8 18319 as_tsktsk (_("IT blocks containing more than one conditional "
0a8897c7 18320 "instruction are deprecated in ARMv8"));
5a01bb1d
MGD
18321 now_it.warn_deprecated = TRUE;
18322 }
18323 }
18324
e07e6e58
NC
18325 is_last = (now_it.mask == 0x10);
18326 if (is_last)
18327 {
18328 now_it.state = OUTSIDE_IT_BLOCK;
18329 now_it.mask = 0;
18330 }
18331}
18332
18333static void
18334force_automatic_it_block_close (void)
18335{
18336 if (now_it.state == AUTOMATIC_IT_BLOCK)
18337 {
18338 close_automatic_it_block ();
18339 now_it.state = OUTSIDE_IT_BLOCK;
18340 now_it.mask = 0;
18341 }
18342}
18343
18344static int
18345in_it_block (void)
18346{
18347 if (!now_it.state_handled)
18348 handle_it_state ();
18349
18350 return now_it.state != OUTSIDE_IT_BLOCK;
18351}
18352
ff8646ee
TP
18353/* Whether OPCODE only has T32 encoding. Since this function is only used by
18354 t32_insn_ok, OPCODE enabled by v6t2 extension bit do not need to be listed
18355 here, hence the "known" in the function name. */
fc289b0a
TP
18356
18357static bfd_boolean
ff8646ee 18358known_t32_only_insn (const struct asm_opcode *opcode)
fc289b0a
TP
18359{
18360 /* Original Thumb-1 wide instruction. */
18361 if (opcode->tencode == do_t_blx
18362 || opcode->tencode == do_t_branch23
18363 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
18364 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier))
18365 return TRUE;
18366
16a1fa25
TP
18367 /* Wide-only instruction added to ARMv8-M Baseline. */
18368 if (ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v8m_m_only)
ff8646ee
TP
18369 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_atomics)
18370 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v6t2_v8m)
18371 || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_div))
18372 return TRUE;
18373
18374 return FALSE;
18375}
18376
18377/* Whether wide instruction variant can be used if available for a valid OPCODE
18378 in ARCH. */
18379
18380static bfd_boolean
18381t32_insn_ok (arm_feature_set arch, const struct asm_opcode *opcode)
18382{
18383 if (known_t32_only_insn (opcode))
18384 return TRUE;
18385
18386 /* Instruction with narrow and wide encoding added to ARMv8-M. Availability
18387 of variant T3 of B.W is checked in do_t_branch. */
18388 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
18389 && opcode->tencode == do_t_branch)
18390 return TRUE;
18391
bada4342
JW
18392 /* MOV accepts T1/T3 encodings under Baseline, T3 encoding is 32bit. */
18393 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
18394 && opcode->tencode == do_t_mov_cmp
18395 /* Make sure CMP instruction is not affected. */
18396 && opcode->aencode == do_mov)
18397 return TRUE;
18398
ff8646ee
TP
18399 /* Wide instruction variants of all instructions with narrow *and* wide
18400 variants become available with ARMv6t2. Other opcodes are either
18401 narrow-only or wide-only and are thus available if OPCODE is valid. */
18402 if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v6t2))
18403 return TRUE;
18404
18405 /* OPCODE with narrow only instruction variant or wide variant not
18406 available. */
fc289b0a
TP
18407 return FALSE;
18408}
18409
c19d1205
ZW
18410void
18411md_assemble (char *str)
b99bd4ef 18412{
c19d1205
ZW
18413 char *p = str;
18414 const struct asm_opcode * opcode;
b99bd4ef 18415
c19d1205
ZW
18416 /* Align the previous label if needed. */
18417 if (last_label_seen != NULL)
b99bd4ef 18418 {
c19d1205
ZW
18419 symbol_set_frag (last_label_seen, frag_now);
18420 S_SET_VALUE (last_label_seen, (valueT) frag_now_fix ());
18421 S_SET_SEGMENT (last_label_seen, now_seg);
b99bd4ef
NC
18422 }
18423
c19d1205
ZW
18424 memset (&inst, '\0', sizeof (inst));
18425 inst.reloc.type = BFD_RELOC_UNUSED;
b99bd4ef 18426
c19d1205
ZW
18427 opcode = opcode_lookup (&p);
18428 if (!opcode)
b99bd4ef 18429 {
c19d1205 18430 /* It wasn't an instruction, but it might be a register alias of
dcbf9037 18431 the form alias .req reg, or a Neon .dn/.qn directive. */
c921be7d 18432 if (! create_register_alias (str, p)
477330fc 18433 && ! create_neon_reg_alias (str, p))
c19d1205 18434 as_bad (_("bad instruction `%s'"), str);
b99bd4ef 18435
b99bd4ef
NC
18436 return;
18437 }
18438
278df34e 18439 if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
5c3696f8 18440 as_tsktsk (_("s suffix on comparison instruction is deprecated"));
088fa78e 18441
037e8744
JB
18442 /* The value which unconditional instructions should have in place of the
18443 condition field. */
18444 inst.uncond_value = (opcode->tag == OT_csuffixF) ? 0xf : -1;
18445
c19d1205 18446 if (thumb_mode)
b99bd4ef 18447 {
e74cfd16 18448 arm_feature_set variant;
8f06b2d8
PB
18449
18450 variant = cpu_variant;
18451 /* Only allow coprocessor instructions on Thumb-2 capable devices. */
e74cfd16
PB
18452 if (!ARM_CPU_HAS_FEATURE (variant, arm_arch_t2))
18453 ARM_CLEAR_FEATURE (variant, variant, fpu_any_hard);
c19d1205 18454 /* Check that this instruction is supported for this CPU. */
62b3e311
PB
18455 if (!opcode->tvariant
18456 || (thumb_mode == 1
18457 && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
b99bd4ef 18458 {
173205ca
TP
18459 if (opcode->tencode == do_t_swi)
18460 as_bad (_("SVC is not permitted on this architecture"));
18461 else
18462 as_bad (_("selected processor does not support `%s' in Thumb mode"), str);
b99bd4ef
NC
18463 return;
18464 }
c19d1205
ZW
18465 if (inst.cond != COND_ALWAYS && !unified_syntax
18466 && opcode->tencode != do_t_branch)
b99bd4ef 18467 {
c19d1205 18468 as_bad (_("Thumb does not support conditional execution"));
b99bd4ef
NC
18469 return;
18470 }
18471
fc289b0a
TP
18472 /* Two things are addressed here:
18473 1) Implicit require narrow instructions on Thumb-1.
18474 This avoids relaxation accidentally introducing Thumb-2
18475 instructions.
18476 2) Reject wide instructions in non Thumb-2 cores.
18477
18478 Only instructions with narrow and wide variants need to be handled
18479 but selecting all non wide-only instructions is easier. */
18480 if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2)
ff8646ee 18481 && !t32_insn_ok (variant, opcode))
076d447c 18482 {
fc289b0a
TP
18483 if (inst.size_req == 0)
18484 inst.size_req = 2;
18485 else if (inst.size_req == 4)
752d5da4 18486 {
ff8646ee
TP
18487 if (ARM_CPU_HAS_FEATURE (variant, arm_ext_v8m))
18488 as_bad (_("selected processor does not support 32bit wide "
18489 "variant of instruction `%s'"), str);
18490 else
18491 as_bad (_("selected processor does not support `%s' in "
18492 "Thumb-2 mode"), str);
fc289b0a 18493 return;
752d5da4 18494 }
076d447c
PB
18495 }
18496
c19d1205
ZW
18497 inst.instruction = opcode->tvalue;
18498
5be8be5d 18499 if (!parse_operands (p, opcode->operands, /*thumb=*/TRUE))
477330fc
RM
18500 {
18501 /* Prepare the it_insn_type for those encodings that don't set
18502 it. */
18503 it_fsm_pre_encode ();
c19d1205 18504
477330fc 18505 opcode->tencode ();
e07e6e58 18506
477330fc
RM
18507 it_fsm_post_encode ();
18508 }
e27ec89e 18509
0110f2b8 18510 if (!(inst.error || inst.relax))
b99bd4ef 18511 {
9c2799c2 18512 gas_assert (inst.instruction < 0xe800 || inst.instruction > 0xffff);
c19d1205
ZW
18513 inst.size = (inst.instruction > 0xffff ? 4 : 2);
18514 if (inst.size_req && inst.size_req != inst.size)
b99bd4ef 18515 {
c19d1205 18516 as_bad (_("cannot honor width suffix -- `%s'"), str);
b99bd4ef
NC
18517 return;
18518 }
18519 }
076d447c
PB
18520
18521 /* Something has gone badly wrong if we try to relax a fixed size
477330fc 18522 instruction. */
9c2799c2 18523 gas_assert (inst.size_req == 0 || !inst.relax);
076d447c 18524
e74cfd16
PB
18525 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
18526 *opcode->tvariant);
ee065d83 18527 /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
fc289b0a
TP
18528 set those bits when Thumb-2 32-bit instructions are seen. The impact
18529 of relaxable instructions will be considered later after we finish all
18530 relaxation. */
ff8646ee
TP
18531 if (ARM_FEATURE_CORE_EQUAL (cpu_variant, arm_arch_any))
18532 variant = arm_arch_none;
18533 else
18534 variant = cpu_variant;
18535 if (inst.size == 4 && !t32_insn_ok (variant, opcode))
e74cfd16
PB
18536 ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
18537 arm_ext_v6t2);
cd000bff 18538
88714cb8
DG
18539 check_neon_suffixes;
18540
cd000bff 18541 if (!inst.error)
c877a2f2
NC
18542 {
18543 mapping_state (MAP_THUMB);
18544 }
c19d1205 18545 }
3e9e4fcf 18546 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
c19d1205 18547 {
845b51d6
PB
18548 bfd_boolean is_bx;
18549
18550 /* bx is allowed on v5 cores, and sometimes on v4 cores. */
18551 is_bx = (opcode->aencode == do_bx);
18552
c19d1205 18553 /* Check that this instruction is supported for this CPU. */
845b51d6
PB
18554 if (!(is_bx && fix_v4bx)
18555 && !(opcode->avariant &&
18556 ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
b99bd4ef 18557 {
84b52b66 18558 as_bad (_("selected processor does not support `%s' in ARM mode"), str);
c19d1205 18559 return;
b99bd4ef 18560 }
c19d1205 18561 if (inst.size_req)
b99bd4ef 18562 {
c19d1205
ZW
18563 as_bad (_("width suffixes are invalid in ARM mode -- `%s'"), str);
18564 return;
b99bd4ef
NC
18565 }
18566
c19d1205
ZW
18567 inst.instruction = opcode->avalue;
18568 if (opcode->tag == OT_unconditionalF)
eff0bc54 18569 inst.instruction |= 0xFU << 28;
c19d1205
ZW
18570 else
18571 inst.instruction |= inst.cond << 28;
18572 inst.size = INSN_SIZE;
5be8be5d 18573 if (!parse_operands (p, opcode->operands, /*thumb=*/FALSE))
477330fc
RM
18574 {
18575 it_fsm_pre_encode ();
18576 opcode->aencode ();
18577 it_fsm_post_encode ();
18578 }
ee065d83 18579 /* Arm mode bx is marked as both v4T and v5 because it's still required
477330fc 18580 on a hypothetical non-thumb v5 core. */
845b51d6 18581 if (is_bx)
e74cfd16 18582 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, arm_ext_v4t);
ee065d83 18583 else
e74cfd16
PB
18584 ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used,
18585 *opcode->avariant);
88714cb8
DG
18586
18587 check_neon_suffixes;
18588
cd000bff 18589 if (!inst.error)
c877a2f2
NC
18590 {
18591 mapping_state (MAP_ARM);
18592 }
b99bd4ef 18593 }
3e9e4fcf
JB
18594 else
18595 {
18596 as_bad (_("attempt to use an ARM instruction on a Thumb-only processor "
18597 "-- `%s'"), str);
18598 return;
18599 }
c19d1205
ZW
18600 output_inst (str);
18601}
b99bd4ef 18602
e07e6e58
NC
18603static void
18604check_it_blocks_finished (void)
18605{
18606#ifdef OBJ_ELF
18607 asection *sect;
18608
18609 for (sect = stdoutput->sections; sect != NULL; sect = sect->next)
18610 if (seg_info (sect)->tc_segment_info_data.current_it.state
18611 == MANUAL_IT_BLOCK)
18612 {
18613 as_warn (_("section '%s' finished with an open IT block."),
18614 sect->name);
18615 }
18616#else
18617 if (now_it.state == MANUAL_IT_BLOCK)
18618 as_warn (_("file finished with an open IT block."));
18619#endif
18620}
18621
c19d1205
ZW
18622/* Various frobbings of labels and their addresses. */
18623
18624void
18625arm_start_line_hook (void)
18626{
18627 last_label_seen = NULL;
b99bd4ef
NC
18628}
18629
c19d1205
ZW
18630void
18631arm_frob_label (symbolS * sym)
b99bd4ef 18632{
c19d1205 18633 last_label_seen = sym;
b99bd4ef 18634
c19d1205 18635 ARM_SET_THUMB (sym, thumb_mode);
b99bd4ef 18636
c19d1205
ZW
18637#if defined OBJ_COFF || defined OBJ_ELF
18638 ARM_SET_INTERWORK (sym, support_interwork);
18639#endif
b99bd4ef 18640
e07e6e58
NC
18641 force_automatic_it_block_close ();
18642
5f4273c7 18643 /* Note - do not allow local symbols (.Lxxx) to be labelled
c19d1205
ZW
18644 as Thumb functions. This is because these labels, whilst
18645 they exist inside Thumb code, are not the entry points for
18646 possible ARM->Thumb calls. Also, these labels can be used
18647 as part of a computed goto or switch statement. eg gcc
18648 can generate code that looks like this:
b99bd4ef 18649
c19d1205
ZW
18650 ldr r2, [pc, .Laaa]
18651 lsl r3, r3, #2
18652 ldr r2, [r3, r2]
18653 mov pc, r2
b99bd4ef 18654
c19d1205
ZW
18655 .Lbbb: .word .Lxxx
18656 .Lccc: .word .Lyyy
18657 ..etc...
18658 .Laaa: .word Lbbb
b99bd4ef 18659
c19d1205
ZW
18660 The first instruction loads the address of the jump table.
18661 The second instruction converts a table index into a byte offset.
18662 The third instruction gets the jump address out of the table.
18663 The fourth instruction performs the jump.
b99bd4ef 18664
c19d1205
ZW
18665 If the address stored at .Laaa is that of a symbol which has the
18666 Thumb_Func bit set, then the linker will arrange for this address
18667 to have the bottom bit set, which in turn would mean that the
18668 address computation performed by the third instruction would end
18669 up with the bottom bit set. Since the ARM is capable of unaligned
18670 word loads, the instruction would then load the incorrect address
18671 out of the jump table, and chaos would ensue. */
18672 if (label_is_thumb_function_name
18673 && (S_GET_NAME (sym)[0] != '.' || S_GET_NAME (sym)[1] != 'L')
18674 && (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
b99bd4ef 18675 {
c19d1205
ZW
18676 /* When the address of a Thumb function is taken the bottom
18677 bit of that address should be set. This will allow
18678 interworking between Arm and Thumb functions to work
18679 correctly. */
b99bd4ef 18680
c19d1205 18681 THUMB_SET_FUNC (sym, 1);
b99bd4ef 18682
c19d1205 18683 label_is_thumb_function_name = FALSE;
b99bd4ef 18684 }
07a53e5c 18685
07a53e5c 18686 dwarf2_emit_label (sym);
b99bd4ef
NC
18687}
18688
c921be7d 18689bfd_boolean
c19d1205 18690arm_data_in_code (void)
b99bd4ef 18691{
c19d1205 18692 if (thumb_mode && ! strncmp (input_line_pointer + 1, "data:", 5))
b99bd4ef 18693 {
c19d1205
ZW
18694 *input_line_pointer = '/';
18695 input_line_pointer += 5;
18696 *input_line_pointer = 0;
c921be7d 18697 return TRUE;
b99bd4ef
NC
18698 }
18699
c921be7d 18700 return FALSE;
b99bd4ef
NC
18701}
18702
c19d1205
ZW
18703char *
18704arm_canonicalize_symbol_name (char * name)
b99bd4ef 18705{
c19d1205 18706 int len;
b99bd4ef 18707
c19d1205
ZW
18708 if (thumb_mode && (len = strlen (name)) > 5
18709 && streq (name + len - 5, "/data"))
18710 *(name + len - 5) = 0;
b99bd4ef 18711
c19d1205 18712 return name;
b99bd4ef 18713}
c19d1205
ZW
18714\f
18715/* Table of all register names defined by default. The user can
18716 define additional names with .req. Note that all register names
18717 should appear in both upper and lowercase variants. Some registers
18718 also have mixed-case names. */
b99bd4ef 18719
dcbf9037 18720#define REGDEF(s,n,t) { #s, n, REG_TYPE_##t, TRUE, 0 }
c19d1205 18721#define REGNUM(p,n,t) REGDEF(p##n, n, t)
5287ad62 18722#define REGNUM2(p,n,t) REGDEF(p##n, 2 * n, t)
c19d1205
ZW
18723#define REGSET(p,t) \
18724 REGNUM(p, 0,t), REGNUM(p, 1,t), REGNUM(p, 2,t), REGNUM(p, 3,t), \
18725 REGNUM(p, 4,t), REGNUM(p, 5,t), REGNUM(p, 6,t), REGNUM(p, 7,t), \
18726 REGNUM(p, 8,t), REGNUM(p, 9,t), REGNUM(p,10,t), REGNUM(p,11,t), \
18727 REGNUM(p,12,t), REGNUM(p,13,t), REGNUM(p,14,t), REGNUM(p,15,t)
5287ad62
JB
18728#define REGSETH(p,t) \
18729 REGNUM(p,16,t), REGNUM(p,17,t), REGNUM(p,18,t), REGNUM(p,19,t), \
18730 REGNUM(p,20,t), REGNUM(p,21,t), REGNUM(p,22,t), REGNUM(p,23,t), \
18731 REGNUM(p,24,t), REGNUM(p,25,t), REGNUM(p,26,t), REGNUM(p,27,t), \
18732 REGNUM(p,28,t), REGNUM(p,29,t), REGNUM(p,30,t), REGNUM(p,31,t)
18733#define REGSET2(p,t) \
18734 REGNUM2(p, 0,t), REGNUM2(p, 1,t), REGNUM2(p, 2,t), REGNUM2(p, 3,t), \
18735 REGNUM2(p, 4,t), REGNUM2(p, 5,t), REGNUM2(p, 6,t), REGNUM2(p, 7,t), \
18736 REGNUM2(p, 8,t), REGNUM2(p, 9,t), REGNUM2(p,10,t), REGNUM2(p,11,t), \
18737 REGNUM2(p,12,t), REGNUM2(p,13,t), REGNUM2(p,14,t), REGNUM2(p,15,t)
90ec0d68
MGD
18738#define SPLRBANK(base,bank,t) \
18739 REGDEF(lr_##bank, 768|((base+0)<<16), t), \
18740 REGDEF(sp_##bank, 768|((base+1)<<16), t), \
18741 REGDEF(spsr_##bank, 768|(base<<16)|SPSR_BIT, t), \
18742 REGDEF(LR_##bank, 768|((base+0)<<16), t), \
18743 REGDEF(SP_##bank, 768|((base+1)<<16), t), \
18744 REGDEF(SPSR_##bank, 768|(base<<16)|SPSR_BIT, t)
7ed4c4c5 18745
c19d1205 18746static const struct reg_entry reg_names[] =
7ed4c4c5 18747{
c19d1205
ZW
18748 /* ARM integer registers. */
18749 REGSET(r, RN), REGSET(R, RN),
7ed4c4c5 18750
c19d1205
ZW
18751 /* ATPCS synonyms. */
18752 REGDEF(a1,0,RN), REGDEF(a2,1,RN), REGDEF(a3, 2,RN), REGDEF(a4, 3,RN),
18753 REGDEF(v1,4,RN), REGDEF(v2,5,RN), REGDEF(v3, 6,RN), REGDEF(v4, 7,RN),
18754 REGDEF(v5,8,RN), REGDEF(v6,9,RN), REGDEF(v7,10,RN), REGDEF(v8,11,RN),
7ed4c4c5 18755
c19d1205
ZW
18756 REGDEF(A1,0,RN), REGDEF(A2,1,RN), REGDEF(A3, 2,RN), REGDEF(A4, 3,RN),
18757 REGDEF(V1,4,RN), REGDEF(V2,5,RN), REGDEF(V3, 6,RN), REGDEF(V4, 7,RN),
18758 REGDEF(V5,8,RN), REGDEF(V6,9,RN), REGDEF(V7,10,RN), REGDEF(V8,11,RN),
7ed4c4c5 18759
c19d1205
ZW
18760 /* Well-known aliases. */
18761 REGDEF(wr, 7,RN), REGDEF(sb, 9,RN), REGDEF(sl,10,RN), REGDEF(fp,11,RN),
18762 REGDEF(ip,12,RN), REGDEF(sp,13,RN), REGDEF(lr,14,RN), REGDEF(pc,15,RN),
18763
18764 REGDEF(WR, 7,RN), REGDEF(SB, 9,RN), REGDEF(SL,10,RN), REGDEF(FP,11,RN),
18765 REGDEF(IP,12,RN), REGDEF(SP,13,RN), REGDEF(LR,14,RN), REGDEF(PC,15,RN),
18766
18767 /* Coprocessor numbers. */
18768 REGSET(p, CP), REGSET(P, CP),
18769
18770 /* Coprocessor register numbers. The "cr" variants are for backward
18771 compatibility. */
18772 REGSET(c, CN), REGSET(C, CN),
18773 REGSET(cr, CN), REGSET(CR, CN),
18774
90ec0d68
MGD
18775 /* ARM banked registers. */
18776 REGDEF(R8_usr,512|(0<<16),RNB), REGDEF(r8_usr,512|(0<<16),RNB),
18777 REGDEF(R9_usr,512|(1<<16),RNB), REGDEF(r9_usr,512|(1<<16),RNB),
18778 REGDEF(R10_usr,512|(2<<16),RNB), REGDEF(r10_usr,512|(2<<16),RNB),
18779 REGDEF(R11_usr,512|(3<<16),RNB), REGDEF(r11_usr,512|(3<<16),RNB),
18780 REGDEF(R12_usr,512|(4<<16),RNB), REGDEF(r12_usr,512|(4<<16),RNB),
18781 REGDEF(SP_usr,512|(5<<16),RNB), REGDEF(sp_usr,512|(5<<16),RNB),
18782 REGDEF(LR_usr,512|(6<<16),RNB), REGDEF(lr_usr,512|(6<<16),RNB),
18783
18784 REGDEF(R8_fiq,512|(8<<16),RNB), REGDEF(r8_fiq,512|(8<<16),RNB),
18785 REGDEF(R9_fiq,512|(9<<16),RNB), REGDEF(r9_fiq,512|(9<<16),RNB),
18786 REGDEF(R10_fiq,512|(10<<16),RNB), REGDEF(r10_fiq,512|(10<<16),RNB),
18787 REGDEF(R11_fiq,512|(11<<16),RNB), REGDEF(r11_fiq,512|(11<<16),RNB),
18788 REGDEF(R12_fiq,512|(12<<16),RNB), REGDEF(r12_fiq,512|(12<<16),RNB),
1472d06f 18789 REGDEF(SP_fiq,512|(13<<16),RNB), REGDEF(sp_fiq,512|(13<<16),RNB),
90ec0d68
MGD
18790 REGDEF(LR_fiq,512|(14<<16),RNB), REGDEF(lr_fiq,512|(14<<16),RNB),
18791 REGDEF(SPSR_fiq,512|(14<<16)|SPSR_BIT,RNB), REGDEF(spsr_fiq,512|(14<<16)|SPSR_BIT,RNB),
18792
18793 SPLRBANK(0,IRQ,RNB), SPLRBANK(0,irq,RNB),
18794 SPLRBANK(2,SVC,RNB), SPLRBANK(2,svc,RNB),
18795 SPLRBANK(4,ABT,RNB), SPLRBANK(4,abt,RNB),
18796 SPLRBANK(6,UND,RNB), SPLRBANK(6,und,RNB),
18797 SPLRBANK(12,MON,RNB), SPLRBANK(12,mon,RNB),
18798 REGDEF(elr_hyp,768|(14<<16),RNB), REGDEF(ELR_hyp,768|(14<<16),RNB),
18799 REGDEF(sp_hyp,768|(15<<16),RNB), REGDEF(SP_hyp,768|(15<<16),RNB),
fa94de6b 18800 REGDEF(spsr_hyp,768|(14<<16)|SPSR_BIT,RNB),
90ec0d68
MGD
18801 REGDEF(SPSR_hyp,768|(14<<16)|SPSR_BIT,RNB),
18802
c19d1205
ZW
18803 /* FPA registers. */
18804 REGNUM(f,0,FN), REGNUM(f,1,FN), REGNUM(f,2,FN), REGNUM(f,3,FN),
18805 REGNUM(f,4,FN), REGNUM(f,5,FN), REGNUM(f,6,FN), REGNUM(f,7, FN),
18806
18807 REGNUM(F,0,FN), REGNUM(F,1,FN), REGNUM(F,2,FN), REGNUM(F,3,FN),
18808 REGNUM(F,4,FN), REGNUM(F,5,FN), REGNUM(F,6,FN), REGNUM(F,7, FN),
18809
18810 /* VFP SP registers. */
5287ad62
JB
18811 REGSET(s,VFS), REGSET(S,VFS),
18812 REGSETH(s,VFS), REGSETH(S,VFS),
c19d1205
ZW
18813
18814 /* VFP DP Registers. */
5287ad62
JB
18815 REGSET(d,VFD), REGSET(D,VFD),
18816 /* Extra Neon DP registers. */
18817 REGSETH(d,VFD), REGSETH(D,VFD),
18818
18819 /* Neon QP registers. */
18820 REGSET2(q,NQ), REGSET2(Q,NQ),
c19d1205
ZW
18821
18822 /* VFP control registers. */
18823 REGDEF(fpsid,0,VFC), REGDEF(fpscr,1,VFC), REGDEF(fpexc,8,VFC),
18824 REGDEF(FPSID,0,VFC), REGDEF(FPSCR,1,VFC), REGDEF(FPEXC,8,VFC),
cd2cf30b
PB
18825 REGDEF(fpinst,9,VFC), REGDEF(fpinst2,10,VFC),
18826 REGDEF(FPINST,9,VFC), REGDEF(FPINST2,10,VFC),
18827 REGDEF(mvfr0,7,VFC), REGDEF(mvfr1,6,VFC),
18828 REGDEF(MVFR0,7,VFC), REGDEF(MVFR1,6,VFC),
c19d1205
ZW
18829
18830 /* Maverick DSP coprocessor registers. */
18831 REGSET(mvf,MVF), REGSET(mvd,MVD), REGSET(mvfx,MVFX), REGSET(mvdx,MVDX),
18832 REGSET(MVF,MVF), REGSET(MVD,MVD), REGSET(MVFX,MVFX), REGSET(MVDX,MVDX),
18833
18834 REGNUM(mvax,0,MVAX), REGNUM(mvax,1,MVAX),
18835 REGNUM(mvax,2,MVAX), REGNUM(mvax,3,MVAX),
18836 REGDEF(dspsc,0,DSPSC),
18837
18838 REGNUM(MVAX,0,MVAX), REGNUM(MVAX,1,MVAX),
18839 REGNUM(MVAX,2,MVAX), REGNUM(MVAX,3,MVAX),
18840 REGDEF(DSPSC,0,DSPSC),
18841
18842 /* iWMMXt data registers - p0, c0-15. */
18843 REGSET(wr,MMXWR), REGSET(wR,MMXWR), REGSET(WR, MMXWR),
18844
18845 /* iWMMXt control registers - p1, c0-3. */
18846 REGDEF(wcid, 0,MMXWC), REGDEF(wCID, 0,MMXWC), REGDEF(WCID, 0,MMXWC),
18847 REGDEF(wcon, 1,MMXWC), REGDEF(wCon, 1,MMXWC), REGDEF(WCON, 1,MMXWC),
18848 REGDEF(wcssf, 2,MMXWC), REGDEF(wCSSF, 2,MMXWC), REGDEF(WCSSF, 2,MMXWC),
18849 REGDEF(wcasf, 3,MMXWC), REGDEF(wCASF, 3,MMXWC), REGDEF(WCASF, 3,MMXWC),
18850
18851 /* iWMMXt scalar (constant/offset) registers - p1, c8-11. */
18852 REGDEF(wcgr0, 8,MMXWCG), REGDEF(wCGR0, 8,MMXWCG), REGDEF(WCGR0, 8,MMXWCG),
18853 REGDEF(wcgr1, 9,MMXWCG), REGDEF(wCGR1, 9,MMXWCG), REGDEF(WCGR1, 9,MMXWCG),
18854 REGDEF(wcgr2,10,MMXWCG), REGDEF(wCGR2,10,MMXWCG), REGDEF(WCGR2,10,MMXWCG),
18855 REGDEF(wcgr3,11,MMXWCG), REGDEF(wCGR3,11,MMXWCG), REGDEF(WCGR3,11,MMXWCG),
18856
18857 /* XScale accumulator registers. */
18858 REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE),
18859};
18860#undef REGDEF
18861#undef REGNUM
18862#undef REGSET
7ed4c4c5 18863
c19d1205
ZW
18864/* Table of all PSR suffixes. Bare "CPSR" and "SPSR" are handled
18865 within psr_required_here. */
18866static const struct asm_psr psrs[] =
18867{
18868 /* Backward compatibility notation. Note that "all" is no longer
18869 truly all possible PSR bits. */
18870 {"all", PSR_c | PSR_f},
18871 {"flg", PSR_f},
18872 {"ctl", PSR_c},
18873
18874 /* Individual flags. */
18875 {"f", PSR_f},
18876 {"c", PSR_c},
18877 {"x", PSR_x},
18878 {"s", PSR_s},
59b42a0d 18879
c19d1205
ZW
18880 /* Combinations of flags. */
18881 {"fs", PSR_f | PSR_s},
18882 {"fx", PSR_f | PSR_x},
18883 {"fc", PSR_f | PSR_c},
18884 {"sf", PSR_s | PSR_f},
18885 {"sx", PSR_s | PSR_x},
18886 {"sc", PSR_s | PSR_c},
18887 {"xf", PSR_x | PSR_f},
18888 {"xs", PSR_x | PSR_s},
18889 {"xc", PSR_x | PSR_c},
18890 {"cf", PSR_c | PSR_f},
18891 {"cs", PSR_c | PSR_s},
18892 {"cx", PSR_c | PSR_x},
18893 {"fsx", PSR_f | PSR_s | PSR_x},
18894 {"fsc", PSR_f | PSR_s | PSR_c},
18895 {"fxs", PSR_f | PSR_x | PSR_s},
18896 {"fxc", PSR_f | PSR_x | PSR_c},
18897 {"fcs", PSR_f | PSR_c | PSR_s},
18898 {"fcx", PSR_f | PSR_c | PSR_x},
18899 {"sfx", PSR_s | PSR_f | PSR_x},
18900 {"sfc", PSR_s | PSR_f | PSR_c},
18901 {"sxf", PSR_s | PSR_x | PSR_f},
18902 {"sxc", PSR_s | PSR_x | PSR_c},
18903 {"scf", PSR_s | PSR_c | PSR_f},
18904 {"scx", PSR_s | PSR_c | PSR_x},
18905 {"xfs", PSR_x | PSR_f | PSR_s},
18906 {"xfc", PSR_x | PSR_f | PSR_c},
18907 {"xsf", PSR_x | PSR_s | PSR_f},
18908 {"xsc", PSR_x | PSR_s | PSR_c},
18909 {"xcf", PSR_x | PSR_c | PSR_f},
18910 {"xcs", PSR_x | PSR_c | PSR_s},
18911 {"cfs", PSR_c | PSR_f | PSR_s},
18912 {"cfx", PSR_c | PSR_f | PSR_x},
18913 {"csf", PSR_c | PSR_s | PSR_f},
18914 {"csx", PSR_c | PSR_s | PSR_x},
18915 {"cxf", PSR_c | PSR_x | PSR_f},
18916 {"cxs", PSR_c | PSR_x | PSR_s},
18917 {"fsxc", PSR_f | PSR_s | PSR_x | PSR_c},
18918 {"fscx", PSR_f | PSR_s | PSR_c | PSR_x},
18919 {"fxsc", PSR_f | PSR_x | PSR_s | PSR_c},
18920 {"fxcs", PSR_f | PSR_x | PSR_c | PSR_s},
18921 {"fcsx", PSR_f | PSR_c | PSR_s | PSR_x},
18922 {"fcxs", PSR_f | PSR_c | PSR_x | PSR_s},
18923 {"sfxc", PSR_s | PSR_f | PSR_x | PSR_c},
18924 {"sfcx", PSR_s | PSR_f | PSR_c | PSR_x},
18925 {"sxfc", PSR_s | PSR_x | PSR_f | PSR_c},
18926 {"sxcf", PSR_s | PSR_x | PSR_c | PSR_f},
18927 {"scfx", PSR_s | PSR_c | PSR_f | PSR_x},
18928 {"scxf", PSR_s | PSR_c | PSR_x | PSR_f},
18929 {"xfsc", PSR_x | PSR_f | PSR_s | PSR_c},
18930 {"xfcs", PSR_x | PSR_f | PSR_c | PSR_s},
18931 {"xsfc", PSR_x | PSR_s | PSR_f | PSR_c},
18932 {"xscf", PSR_x | PSR_s | PSR_c | PSR_f},
18933 {"xcfs", PSR_x | PSR_c | PSR_f | PSR_s},
18934 {"xcsf", PSR_x | PSR_c | PSR_s | PSR_f},
18935 {"cfsx", PSR_c | PSR_f | PSR_s | PSR_x},
18936 {"cfxs", PSR_c | PSR_f | PSR_x | PSR_s},
18937 {"csfx", PSR_c | PSR_s | PSR_f | PSR_x},
18938 {"csxf", PSR_c | PSR_s | PSR_x | PSR_f},
18939 {"cxfs", PSR_c | PSR_x | PSR_f | PSR_s},
18940 {"cxsf", PSR_c | PSR_x | PSR_s | PSR_f},
18941};
18942
62b3e311
PB
18943/* Table of V7M psr names. */
18944static const struct asm_psr v7m_psrs[] =
18945{
1a336194
TP
18946 {"apsr", 0x0 }, {"APSR", 0x0 },
18947 {"iapsr", 0x1 }, {"IAPSR", 0x1 },
18948 {"eapsr", 0x2 }, {"EAPSR", 0x2 },
18949 {"psr", 0x3 }, {"PSR", 0x3 },
18950 {"xpsr", 0x3 }, {"XPSR", 0x3 }, {"xPSR", 3 },
18951 {"ipsr", 0x5 }, {"IPSR", 0x5 },
18952 {"epsr", 0x6 }, {"EPSR", 0x6 },
18953 {"iepsr", 0x7 }, {"IEPSR", 0x7 },
18954 {"msp", 0x8 }, {"MSP", 0x8 },
18955 {"psp", 0x9 }, {"PSP", 0x9 },
18956 {"msplim", 0xa }, {"MSPLIM", 0xa },
18957 {"psplim", 0xb }, {"PSPLIM", 0xb },
18958 {"primask", 0x10}, {"PRIMASK", 0x10},
18959 {"basepri", 0x11}, {"BASEPRI", 0x11},
18960 {"basepri_max", 0x12}, {"BASEPRI_MAX", 0x12},
1a336194
TP
18961 {"faultmask", 0x13}, {"FAULTMASK", 0x13},
18962 {"control", 0x14}, {"CONTROL", 0x14},
18963 {"msp_ns", 0x88}, {"MSP_NS", 0x88},
18964 {"psp_ns", 0x89}, {"PSP_NS", 0x89},
18965 {"msplim_ns", 0x8a}, {"MSPLIM_NS", 0x8a},
18966 {"psplim_ns", 0x8b}, {"PSPLIM_NS", 0x8b},
18967 {"primask_ns", 0x90}, {"PRIMASK_NS", 0x90},
18968 {"basepri_ns", 0x91}, {"BASEPRI_NS", 0x91},
18969 {"faultmask_ns", 0x93}, {"FAULTMASK_NS", 0x93},
18970 {"control_ns", 0x94}, {"CONTROL_NS", 0x94},
18971 {"sp_ns", 0x98}, {"SP_NS", 0x98 }
62b3e311
PB
18972};
18973
c19d1205
ZW
18974/* Table of all shift-in-operand names. */
18975static const struct asm_shift_name shift_names [] =
b99bd4ef 18976{
c19d1205
ZW
18977 { "asl", SHIFT_LSL }, { "ASL", SHIFT_LSL },
18978 { "lsl", SHIFT_LSL }, { "LSL", SHIFT_LSL },
18979 { "lsr", SHIFT_LSR }, { "LSR", SHIFT_LSR },
18980 { "asr", SHIFT_ASR }, { "ASR", SHIFT_ASR },
18981 { "ror", SHIFT_ROR }, { "ROR", SHIFT_ROR },
18982 { "rrx", SHIFT_RRX }, { "RRX", SHIFT_RRX }
18983};
b99bd4ef 18984
c19d1205
ZW
18985/* Table of all explicit relocation names. */
18986#ifdef OBJ_ELF
18987static struct reloc_entry reloc_names[] =
18988{
18989 { "got", BFD_RELOC_ARM_GOT32 }, { "GOT", BFD_RELOC_ARM_GOT32 },
18990 { "gotoff", BFD_RELOC_ARM_GOTOFF }, { "GOTOFF", BFD_RELOC_ARM_GOTOFF },
18991 { "plt", BFD_RELOC_ARM_PLT32 }, { "PLT", BFD_RELOC_ARM_PLT32 },
18992 { "target1", BFD_RELOC_ARM_TARGET1 }, { "TARGET1", BFD_RELOC_ARM_TARGET1 },
18993 { "target2", BFD_RELOC_ARM_TARGET2 }, { "TARGET2", BFD_RELOC_ARM_TARGET2 },
18994 { "sbrel", BFD_RELOC_ARM_SBREL32 }, { "SBREL", BFD_RELOC_ARM_SBREL32 },
18995 { "tlsgd", BFD_RELOC_ARM_TLS_GD32}, { "TLSGD", BFD_RELOC_ARM_TLS_GD32},
18996 { "tlsldm", BFD_RELOC_ARM_TLS_LDM32}, { "TLSLDM", BFD_RELOC_ARM_TLS_LDM32},
18997 { "tlsldo", BFD_RELOC_ARM_TLS_LDO32}, { "TLSLDO", BFD_RELOC_ARM_TLS_LDO32},
18998 { "gottpoff",BFD_RELOC_ARM_TLS_IE32}, { "GOTTPOFF",BFD_RELOC_ARM_TLS_IE32},
b43420e6 18999 { "tpoff", BFD_RELOC_ARM_TLS_LE32}, { "TPOFF", BFD_RELOC_ARM_TLS_LE32},
0855e32b
NS
19000 { "got_prel", BFD_RELOC_ARM_GOT_PREL}, { "GOT_PREL", BFD_RELOC_ARM_GOT_PREL},
19001 { "tlsdesc", BFD_RELOC_ARM_TLS_GOTDESC},
477330fc 19002 { "TLSDESC", BFD_RELOC_ARM_TLS_GOTDESC},
0855e32b 19003 { "tlscall", BFD_RELOC_ARM_TLS_CALL},
477330fc 19004 { "TLSCALL", BFD_RELOC_ARM_TLS_CALL},
0855e32b 19005 { "tlsdescseq", BFD_RELOC_ARM_TLS_DESCSEQ},
477330fc 19006 { "TLSDESCSEQ", BFD_RELOC_ARM_TLS_DESCSEQ}
c19d1205
ZW
19007};
19008#endif
b99bd4ef 19009
c19d1205
ZW
19010/* Table of all conditional affixes. 0xF is not defined as a condition code. */
19011static const struct asm_cond conds[] =
19012{
19013 {"eq", 0x0},
19014 {"ne", 0x1},
19015 {"cs", 0x2}, {"hs", 0x2},
19016 {"cc", 0x3}, {"ul", 0x3}, {"lo", 0x3},
19017 {"mi", 0x4},
19018 {"pl", 0x5},
19019 {"vs", 0x6},
19020 {"vc", 0x7},
19021 {"hi", 0x8},
19022 {"ls", 0x9},
19023 {"ge", 0xa},
19024 {"lt", 0xb},
19025 {"gt", 0xc},
19026 {"le", 0xd},
19027 {"al", 0xe}
19028};
bfae80f2 19029
e797f7e0 19030#define UL_BARRIER(L,U,CODE,FEAT) \
823d2571
TG
19031 { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
19032 { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
e797f7e0 19033
62b3e311
PB
19034static struct asm_barrier_opt barrier_opt_names[] =
19035{
e797f7e0
MGD
19036 UL_BARRIER ("sy", "SY", 0xf, ARM_EXT_BARRIER),
19037 UL_BARRIER ("st", "ST", 0xe, ARM_EXT_BARRIER),
19038 UL_BARRIER ("ld", "LD", 0xd, ARM_EXT_V8),
19039 UL_BARRIER ("ish", "ISH", 0xb, ARM_EXT_BARRIER),
19040 UL_BARRIER ("sh", "SH", 0xb, ARM_EXT_BARRIER),
19041 UL_BARRIER ("ishst", "ISHST", 0xa, ARM_EXT_BARRIER),
19042 UL_BARRIER ("shst", "SHST", 0xa, ARM_EXT_BARRIER),
19043 UL_BARRIER ("ishld", "ISHLD", 0x9, ARM_EXT_V8),
19044 UL_BARRIER ("un", "UN", 0x7, ARM_EXT_BARRIER),
19045 UL_BARRIER ("nsh", "NSH", 0x7, ARM_EXT_BARRIER),
19046 UL_BARRIER ("unst", "UNST", 0x6, ARM_EXT_BARRIER),
19047 UL_BARRIER ("nshst", "NSHST", 0x6, ARM_EXT_BARRIER),
19048 UL_BARRIER ("nshld", "NSHLD", 0x5, ARM_EXT_V8),
19049 UL_BARRIER ("osh", "OSH", 0x3, ARM_EXT_BARRIER),
19050 UL_BARRIER ("oshst", "OSHST", 0x2, ARM_EXT_BARRIER),
19051 UL_BARRIER ("oshld", "OSHLD", 0x1, ARM_EXT_V8)
62b3e311
PB
19052};
19053
e797f7e0
MGD
19054#undef UL_BARRIER
19055
c19d1205
ZW
19056/* Table of ARM-format instructions. */
19057
19058/* Macros for gluing together operand strings. N.B. In all cases
19059 other than OPS0, the trailing OP_stop comes from default
19060 zero-initialization of the unspecified elements of the array. */
19061#define OPS0() { OP_stop, }
19062#define OPS1(a) { OP_##a, }
19063#define OPS2(a,b) { OP_##a,OP_##b, }
19064#define OPS3(a,b,c) { OP_##a,OP_##b,OP_##c, }
19065#define OPS4(a,b,c,d) { OP_##a,OP_##b,OP_##c,OP_##d, }
19066#define OPS5(a,b,c,d,e) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e, }
19067#define OPS6(a,b,c,d,e,f) { OP_##a,OP_##b,OP_##c,OP_##d,OP_##e,OP_##f, }
19068
5be8be5d
DG
19069/* These macros are similar to the OPSn, but do not prepend the OP_ prefix.
19070 This is useful when mixing operands for ARM and THUMB, i.e. using the
19071 MIX_ARM_THUMB_OPERANDS macro.
19072 In order to use these macros, prefix the number of operands with _
19073 e.g. _3. */
19074#define OPS_1(a) { a, }
19075#define OPS_2(a,b) { a,b, }
19076#define OPS_3(a,b,c) { a,b,c, }
19077#define OPS_4(a,b,c,d) { a,b,c,d, }
19078#define OPS_5(a,b,c,d,e) { a,b,c,d,e, }
19079#define OPS_6(a,b,c,d,e,f) { a,b,c,d,e,f, }
19080
c19d1205
ZW
19081/* These macros abstract out the exact format of the mnemonic table and
19082 save some repeated characters. */
19083
19084/* The normal sort of mnemonic; has a Thumb variant; takes a conditional suffix. */
19085#define TxCE(mnem, op, top, nops, ops, ae, te) \
21d799b5 19086 { mnem, OPS##nops ops, OT_csuffix, 0x##op, top, ARM_VARIANT, \
1887dd22 19087 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
19088
19089/* Two variants of the above - TCE for a numeric Thumb opcode, tCE for
19090 a T_MNEM_xyz enumerator. */
19091#define TCE(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 19092 TxCE (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 19093#define tCE(mnem, aop, top, nops, ops, ae, te) \
21d799b5 19094 TxCE (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205
ZW
19095
19096/* Second most common sort of mnemonic: has a Thumb variant, takes a conditional
19097 infix after the third character. */
19098#define TxC3(mnem, op, top, nops, ops, ae, te) \
21d799b5 19099 { mnem, OPS##nops ops, OT_cinfix3, 0x##op, top, ARM_VARIANT, \
1887dd22 19100 THUMB_VARIANT, do_##ae, do_##te }
088fa78e 19101#define TxC3w(mnem, op, top, nops, ops, ae, te) \
21d799b5 19102 { mnem, OPS##nops ops, OT_cinfix3_deprecated, 0x##op, top, ARM_VARIANT, \
088fa78e 19103 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 19104#define TC3(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 19105 TxC3 (mnem, aop, 0x##top, nops, ops, ae, te)
088fa78e 19106#define TC3w(mnem, aop, top, nops, ops, ae, te) \
e07e6e58 19107 TxC3w (mnem, aop, 0x##top, nops, ops, ae, te)
c19d1205 19108#define tC3(mnem, aop, top, nops, ops, ae, te) \
21d799b5 19109 TxC3 (mnem, aop, T_MNEM##top, nops, ops, ae, te)
088fa78e 19110#define tC3w(mnem, aop, top, nops, ops, ae, te) \
21d799b5 19111 TxC3w (mnem, aop, T_MNEM##top, nops, ops, ae, te)
c19d1205 19112
c19d1205 19113/* Mnemonic that cannot be conditionalized. The ARM condition-code
dfa9f0d5
PB
19114 field is still 0xE. Many of the Thumb variants can be executed
19115 conditionally, so this is checked separately. */
c19d1205 19116#define TUE(mnem, op, top, nops, ops, ae, te) \
21d799b5 19117 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 19118 THUMB_VARIANT, do_##ae, do_##te }
c19d1205 19119
dd5181d5
KT
19120/* Same as TUE but the encoding function for ARM and Thumb modes is the same.
19121 Used by mnemonics that have very minimal differences in the encoding for
19122 ARM and Thumb variants and can be handled in a common function. */
19123#define TUEc(mnem, op, top, nops, ops, en) \
19124 { mnem, OPS##nops ops, OT_unconditional, 0x##op, 0x##top, ARM_VARIANT, \
19125 THUMB_VARIANT, do_##en, do_##en }
19126
c19d1205
ZW
19127/* Mnemonic that cannot be conditionalized, and bears 0xF in its ARM
19128 condition code field. */
19129#define TUF(mnem, op, top, nops, ops, ae, te) \
21d799b5 19130 { mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##top, ARM_VARIANT, \
1887dd22 19131 THUMB_VARIANT, do_##ae, do_##te }
c19d1205
ZW
19132
19133/* ARM-only variants of all the above. */
6a86118a 19134#define CE(mnem, op, nops, ops, ae) \
21d799b5 19135 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
6a86118a
NC
19136
19137#define C3(mnem, op, nops, ops, ae) \
19138 { #mnem, OPS##nops ops, OT_cinfix3, 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
19139
e3cb604e
PB
19140/* Legacy mnemonics that always have conditional infix after the third
19141 character. */
19142#define CL(mnem, op, nops, ops, ae) \
21d799b5 19143 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
19144 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
19145
8f06b2d8
PB
19146/* Coprocessor instructions. Isomorphic between Arm and Thumb-2. */
19147#define cCE(mnem, op, nops, ops, ae) \
21d799b5 19148 { mnem, OPS##nops ops, OT_csuffix, 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 19149
e3cb604e
PB
19150/* Legacy coprocessor instructions where conditional infix and conditional
19151 suffix are ambiguous. For consistency this includes all FPA instructions,
19152 not just the potentially ambiguous ones. */
19153#define cCL(mnem, op, nops, ops, ae) \
21d799b5 19154 { mnem, OPS##nops ops, OT_cinfix3_legacy, \
e3cb604e
PB
19155 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
19156
19157/* Coprocessor, takes either a suffix or a position-3 infix
19158 (for an FPA corner case). */
19159#define C3E(mnem, op, nops, ops, ae) \
21d799b5 19160 { mnem, OPS##nops ops, OT_csuf_or_in3, \
e3cb604e 19161 0x##op, 0xe##op, ARM_VARIANT, ARM_VARIANT, do_##ae, do_##ae }
8f06b2d8 19162
6a86118a 19163#define xCM_(m1, m2, m3, op, nops, ops, ae) \
21d799b5
NC
19164 { m1 #m2 m3, OPS##nops ops, \
19165 sizeof (#m2) == 1 ? OT_odd_infix_unc : OT_odd_infix_0 + sizeof (m1) - 1, \
6a86118a
NC
19166 0x##op, 0x0, ARM_VARIANT, 0, do_##ae, NULL }
19167
19168#define CM(m1, m2, op, nops, ops, ae) \
e07e6e58
NC
19169 xCM_ (m1, , m2, op, nops, ops, ae), \
19170 xCM_ (m1, eq, m2, op, nops, ops, ae), \
19171 xCM_ (m1, ne, m2, op, nops, ops, ae), \
19172 xCM_ (m1, cs, m2, op, nops, ops, ae), \
19173 xCM_ (m1, hs, m2, op, nops, ops, ae), \
19174 xCM_ (m1, cc, m2, op, nops, ops, ae), \
19175 xCM_ (m1, ul, m2, op, nops, ops, ae), \
19176 xCM_ (m1, lo, m2, op, nops, ops, ae), \
19177 xCM_ (m1, mi, m2, op, nops, ops, ae), \
19178 xCM_ (m1, pl, m2, op, nops, ops, ae), \
19179 xCM_ (m1, vs, m2, op, nops, ops, ae), \
19180 xCM_ (m1, vc, m2, op, nops, ops, ae), \
19181 xCM_ (m1, hi, m2, op, nops, ops, ae), \
19182 xCM_ (m1, ls, m2, op, nops, ops, ae), \
19183 xCM_ (m1, ge, m2, op, nops, ops, ae), \
19184 xCM_ (m1, lt, m2, op, nops, ops, ae), \
19185 xCM_ (m1, gt, m2, op, nops, ops, ae), \
19186 xCM_ (m1, le, m2, op, nops, ops, ae), \
19187 xCM_ (m1, al, m2, op, nops, ops, ae)
6a86118a
NC
19188
19189#define UE(mnem, op, nops, ops, ae) \
19190 { #mnem, OPS##nops ops, OT_unconditional, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
19191
19192#define UF(mnem, op, nops, ops, ae) \
19193 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0, ARM_VARIANT, 0, do_##ae, NULL }
19194
5287ad62
JB
19195/* Neon data-processing. ARM versions are unconditional with cond=0xf.
19196 The Thumb and ARM variants are mostly the same (bits 0-23 and 24/28), so we
19197 use the same encoding function for each. */
19198#define NUF(mnem, op, nops, ops, enc) \
19199 { #mnem, OPS##nops ops, OT_unconditionalF, 0x##op, 0x##op, \
19200 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19201
19202/* Neon data processing, version which indirects through neon_enc_tab for
19203 the various overloaded versions of opcodes. */
19204#define nUF(mnem, op, nops, ops, enc) \
21d799b5 19205 { #mnem, OPS##nops ops, OT_unconditionalF, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
19206 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19207
19208/* Neon insn with conditional suffix for the ARM version, non-overloaded
19209 version. */
037e8744
JB
19210#define NCE_tag(mnem, op, nops, ops, enc, tag) \
19211 { #mnem, OPS##nops ops, tag, 0x##op, 0x##op, ARM_VARIANT, \
5287ad62
JB
19212 THUMB_VARIANT, do_##enc, do_##enc }
19213
037e8744 19214#define NCE(mnem, op, nops, ops, enc) \
e07e6e58 19215 NCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
19216
19217#define NCEF(mnem, op, nops, ops, enc) \
e07e6e58 19218 NCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 19219
5287ad62 19220/* Neon insn with conditional suffix for the ARM version, overloaded types. */
037e8744 19221#define nCE_tag(mnem, op, nops, ops, enc, tag) \
21d799b5 19222 { #mnem, OPS##nops ops, tag, N_MNEM##op, N_MNEM##op, \
5287ad62
JB
19223 ARM_VARIANT, THUMB_VARIANT, do_##enc, do_##enc }
19224
037e8744 19225#define nCE(mnem, op, nops, ops, enc) \
e07e6e58 19226 nCE_tag (mnem, op, nops, ops, enc, OT_csuffix)
037e8744
JB
19227
19228#define nCEF(mnem, op, nops, ops, enc) \
e07e6e58 19229 nCE_tag (mnem, op, nops, ops, enc, OT_csuffixF)
037e8744 19230
c19d1205
ZW
19231#define do_0 0
19232
c19d1205 19233static const struct asm_opcode insns[] =
bfae80f2 19234{
74db7efb
NC
19235#define ARM_VARIANT & arm_ext_v1 /* Core ARM Instructions. */
19236#define THUMB_VARIANT & arm_ext_v4t
21d799b5
NC
19237 tCE("and", 0000000, _and, 3, (RR, oRR, SH), arit, t_arit3c),
19238 tC3("ands", 0100000, _ands, 3, (RR, oRR, SH), arit, t_arit3c),
19239 tCE("eor", 0200000, _eor, 3, (RR, oRR, SH), arit, t_arit3c),
19240 tC3("eors", 0300000, _eors, 3, (RR, oRR, SH), arit, t_arit3c),
19241 tCE("sub", 0400000, _sub, 3, (RR, oRR, SH), arit, t_add_sub),
19242 tC3("subs", 0500000, _subs, 3, (RR, oRR, SH), arit, t_add_sub),
19243 tCE("add", 0800000, _add, 3, (RR, oRR, SHG), arit, t_add_sub),
19244 tC3("adds", 0900000, _adds, 3, (RR, oRR, SHG), arit, t_add_sub),
19245 tCE("adc", 0a00000, _adc, 3, (RR, oRR, SH), arit, t_arit3c),
19246 tC3("adcs", 0b00000, _adcs, 3, (RR, oRR, SH), arit, t_arit3c),
19247 tCE("sbc", 0c00000, _sbc, 3, (RR, oRR, SH), arit, t_arit3),
19248 tC3("sbcs", 0d00000, _sbcs, 3, (RR, oRR, SH), arit, t_arit3),
19249 tCE("orr", 1800000, _orr, 3, (RR, oRR, SH), arit, t_arit3c),
19250 tC3("orrs", 1900000, _orrs, 3, (RR, oRR, SH), arit, t_arit3c),
19251 tCE("bic", 1c00000, _bic, 3, (RR, oRR, SH), arit, t_arit3),
19252 tC3("bics", 1d00000, _bics, 3, (RR, oRR, SH), arit, t_arit3),
c19d1205
ZW
19253
19254 /* The p-variants of tst/cmp/cmn/teq (below) are the pre-V6 mechanism
19255 for setting PSR flag bits. They are obsolete in V6 and do not
19256 have Thumb equivalents. */
21d799b5
NC
19257 tCE("tst", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
19258 tC3w("tsts", 1100000, _tst, 2, (RR, SH), cmp, t_mvn_tst),
19259 CL("tstp", 110f000, 2, (RR, SH), cmp),
19260 tCE("cmp", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
19261 tC3w("cmps", 1500000, _cmp, 2, (RR, SH), cmp, t_mov_cmp),
19262 CL("cmpp", 150f000, 2, (RR, SH), cmp),
19263 tCE("cmn", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
19264 tC3w("cmns", 1700000, _cmn, 2, (RR, SH), cmp, t_mvn_tst),
19265 CL("cmnp", 170f000, 2, (RR, SH), cmp),
19266
19267 tCE("mov", 1a00000, _mov, 2, (RR, SH), mov, t_mov_cmp),
72d98d16 19268 tC3("movs", 1b00000, _movs, 2, (RR, SHG), mov, t_mov_cmp),
21d799b5
NC
19269 tCE("mvn", 1e00000, _mvn, 2, (RR, SH), mov, t_mvn_tst),
19270 tC3("mvns", 1f00000, _mvns, 2, (RR, SH), mov, t_mvn_tst),
19271
19272 tCE("ldr", 4100000, _ldr, 2, (RR, ADDRGLDR),ldst, t_ldst),
5be8be5d
DG
19273 tC3("ldrb", 4500000, _ldrb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
19274 tCE("str", 4000000, _str, _2, (MIX_ARM_THUMB_OPERANDS (OP_RR,
19275 OP_RRnpc),
19276 OP_ADDRGLDR),ldst, t_ldst),
19277 tC3("strb", 4400000, _strb, 2, (RRnpc_npcsp, ADDRGLDR),ldst, t_ldst),
21d799b5
NC
19278
19279 tCE("stm", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19280 tC3("stmia", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19281 tC3("stmea", 8800000, _stmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19282 tCE("ldm", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19283 tC3("ldmia", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19284 tC3("ldmfd", 8900000, _ldmia, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19285
21d799b5
NC
19286 tCE("b", a000000, _b, 1, (EXPr), branch, t_branch),
19287 TCE("bl", b000000, f000f800, 1, (EXPr), bl, t_branch23),
bfae80f2 19288
c19d1205 19289 /* Pseudo ops. */
21d799b5 19290 tCE("adr", 28f0000, _adr, 2, (RR, EXP), adr, t_adr),
2fc8bdac 19291 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
21d799b5 19292 tCE("nop", 1a00000, _nop, 1, (oI255c), nop, t_nop),
74db7efb 19293 tCE("udf", 7f000f0, _udf, 1, (oIffffb), bkpt, t_udf),
c19d1205
ZW
19294
19295 /* Thumb-compatibility pseudo ops. */
21d799b5
NC
19296 tCE("lsl", 1a00000, _lsl, 3, (RR, oRR, SH), shift, t_shift),
19297 tC3("lsls", 1b00000, _lsls, 3, (RR, oRR, SH), shift, t_shift),
19298 tCE("lsr", 1a00020, _lsr, 3, (RR, oRR, SH), shift, t_shift),
19299 tC3("lsrs", 1b00020, _lsrs, 3, (RR, oRR, SH), shift, t_shift),
19300 tCE("asr", 1a00040, _asr, 3, (RR, oRR, SH), shift, t_shift),
19301 tC3("asrs", 1b00040, _asrs, 3, (RR, oRR, SH), shift, t_shift),
19302 tCE("ror", 1a00060, _ror, 3, (RR, oRR, SH), shift, t_shift),
19303 tC3("rors", 1b00060, _rors, 3, (RR, oRR, SH), shift, t_shift),
19304 tCE("neg", 2600000, _neg, 2, (RR, RR), rd_rn, t_neg),
19305 tC3("negs", 2700000, _negs, 2, (RR, RR), rd_rn, t_neg),
19306 tCE("push", 92d0000, _push, 1, (REGLST), push_pop, t_push_pop),
19307 tCE("pop", 8bd0000, _pop, 1, (REGLST), push_pop, t_push_pop),
c19d1205 19308
16a4cf17 19309 /* These may simplify to neg. */
21d799b5
NC
19310 TCE("rsb", 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
19311 TC3("rsbs", 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
16a4cf17 19312
173205ca
TP
19313#undef THUMB_VARIANT
19314#define THUMB_VARIANT & arm_ext_os
19315
19316 TCE("swi", f000000, df00, 1, (EXPi), swi, t_swi),
19317 TCE("svc", f000000, df00, 1, (EXPi), swi, t_swi),
19318
c921be7d
NC
19319#undef THUMB_VARIANT
19320#define THUMB_VARIANT & arm_ext_v6
19321
21d799b5 19322 TCE("cpy", 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
c19d1205
ZW
19323
19324 /* V1 instructions with no Thumb analogue prior to V6T2. */
c921be7d
NC
19325#undef THUMB_VARIANT
19326#define THUMB_VARIANT & arm_ext_v6t2
19327
21d799b5
NC
19328 TCE("teq", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
19329 TC3w("teqs", 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
19330 CL("teqp", 130f000, 2, (RR, SH), cmp),
c19d1205 19331
5be8be5d
DG
19332 TC3("ldrt", 4300000, f8500e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
19333 TC3("ldrbt", 4700000, f8100e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
19334 TC3("strt", 4200000, f8400e00, 2, (RR_npcsp, ADDR), ldstt, t_ldstt),
19335 TC3("strbt", 4600000, f8000e00, 2, (RRnpc_npcsp, ADDR),ldstt, t_ldstt),
c19d1205 19336
21d799b5
NC
19337 TC3("stmdb", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19338 TC3("stmfd", 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205 19339
21d799b5
NC
19340 TC3("ldmdb", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
19341 TC3("ldmea", 9100000, e9100000, 2, (RRw, REGLST), ldmstm, t_ldmstm),
c19d1205
ZW
19342
19343 /* V1 instructions with no Thumb analogue at all. */
21d799b5 19344 CE("rsc", 0e00000, 3, (RR, oRR, SH), arit),
c19d1205
ZW
19345 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
19346
19347 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
19348 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
19349 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
19350 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
19351 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
19352 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
19353 C3(ldmda, 8100000, 2, (RRw, REGLST), ldmstm),
19354 C3(ldmfa, 8100000, 2, (RRw, REGLST), ldmstm),
19355
c921be7d
NC
19356#undef ARM_VARIANT
19357#define ARM_VARIANT & arm_ext_v2 /* ARM 2 - multiplies. */
19358#undef THUMB_VARIANT
19359#define THUMB_VARIANT & arm_ext_v4t
19360
21d799b5
NC
19361 tCE("mul", 0000090, _mul, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
19362 tC3("muls", 0100090, _muls, 3, (RRnpc, RRnpc, oRR), mul, t_mul),
c19d1205 19363
c921be7d
NC
19364#undef THUMB_VARIANT
19365#define THUMB_VARIANT & arm_ext_v6t2
19366
21d799b5 19367 TCE("mla", 0200090, fb000000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
c19d1205
ZW
19368 C3(mlas, 0300090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas),
19369
19370 /* Generic coprocessor instructions. */
21d799b5
NC
19371 TCE("cdp", e000000, ee000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
19372 TCE("ldc", c100000, ec100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19373 TC3("ldcl", c500000, ec500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19374 TCE("stc", c000000, ec000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19375 TC3("stcl", c400000, ec400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19376 TCE("mcr", e000010, ee000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
db472d6f 19377 TCE("mrc", e100010, ee100010, 6, (RCP, I7b, APSR_RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 19378
c921be7d
NC
19379#undef ARM_VARIANT
19380#define ARM_VARIANT & arm_ext_v2s /* ARM 3 - swp instructions. */
19381
21d799b5 19382 CE("swp", 1000090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
c19d1205
ZW
19383 C3(swpb, 1400090, 3, (RRnpc, RRnpc, RRnpcb), rd_rm_rn),
19384
c921be7d
NC
19385#undef ARM_VARIANT
19386#define ARM_VARIANT & arm_ext_v3 /* ARM 6 Status register instructions. */
19387#undef THUMB_VARIANT
19388#define THUMB_VARIANT & arm_ext_msr
19389
d2cd1205
JB
19390 TCE("mrs", 1000000, f3e08000, 2, (RRnpc, rPSR), mrs, t_mrs),
19391 TCE("msr", 120f000, f3808000, 2, (wPSR, RR_EXi), msr, t_msr),
c19d1205 19392
c921be7d
NC
19393#undef ARM_VARIANT
19394#define ARM_VARIANT & arm_ext_v3m /* ARM 7M long multiplies. */
19395#undef THUMB_VARIANT
19396#define THUMB_VARIANT & arm_ext_v6t2
19397
21d799b5
NC
19398 TCE("smull", 0c00090, fb800000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19399 CM("smull","s", 0d00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19400 TCE("umull", 0800090, fba00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19401 CM("umull","s", 0900090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19402 TCE("smlal", 0e00090, fbc00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19403 CM("smlal","s", 0f00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
19404 TCE("umlal", 0a00090, fbe00000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull, t_mull),
19405 CM("umlal","s", 0b00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mull),
c19d1205 19406
c921be7d
NC
19407#undef ARM_VARIANT
19408#define ARM_VARIANT & arm_ext_v4 /* ARM Architecture 4. */
19409#undef THUMB_VARIANT
19410#define THUMB_VARIANT & arm_ext_v4t
19411
5be8be5d
DG
19412 tC3("ldrh", 01000b0, _ldrh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19413 tC3("strh", 00000b0, _strh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19414 tC3("ldrsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19415 tC3("ldrsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
56c0a61f
RE
19416 tC3("ldsh", 01000f0, _ldrsh, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
19417 tC3("ldsb", 01000d0, _ldrsb, 2, (RRnpc_npcsp, ADDRGLDRS), ldstv4, t_ldst),
c19d1205 19418
c921be7d
NC
19419#undef ARM_VARIANT
19420#define ARM_VARIANT & arm_ext_v4t_5
19421
c19d1205
ZW
19422 /* ARM Architecture 4T. */
19423 /* Note: bx (and blx) are required on V5, even if the processor does
19424 not support Thumb. */
21d799b5 19425 TCE("bx", 12fff10, 4700, 1, (RR), bx, t_bx),
c19d1205 19426
c921be7d
NC
19427#undef ARM_VARIANT
19428#define ARM_VARIANT & arm_ext_v5 /* ARM Architecture 5T. */
19429#undef THUMB_VARIANT
19430#define THUMB_VARIANT & arm_ext_v5t
19431
c19d1205
ZW
19432 /* Note: blx has 2 variants; the .value coded here is for
19433 BLX(2). Only this variant has conditional execution. */
21d799b5
NC
19434 TCE("blx", 12fff30, 4780, 1, (RR_EXr), blx, t_blx),
19435 TUE("bkpt", 1200070, be00, 1, (oIffffb), bkpt, t_bkpt),
c19d1205 19436
c921be7d
NC
19437#undef THUMB_VARIANT
19438#define THUMB_VARIANT & arm_ext_v6t2
19439
21d799b5
NC
19440 TCE("clz", 16f0f10, fab0f080, 2, (RRnpc, RRnpc), rd_rm, t_clz),
19441 TUF("ldc2", c100000, fc100000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19442 TUF("ldc2l", c500000, fc500000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19443 TUF("stc2", c000000, fc000000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19444 TUF("stc2l", c400000, fc400000, 3, (RCP, RCN, ADDRGLDC), lstc, lstc),
19445 TUF("cdp2", e000000, fe000000, 6, (RCP, I15b, RCN, RCN, RCN, oI7b), cdp, cdp),
19446 TUF("mcr2", e000010, fe000010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
19447 TUF("mrc2", e100010, fe100010, 6, (RCP, I7b, RR, RCN, RCN, oI7b), co_reg, co_reg),
c19d1205 19448
c921be7d 19449#undef ARM_VARIANT
74db7efb
NC
19450#define ARM_VARIANT & arm_ext_v5exp /* ARM Architecture 5TExP. */
19451#undef THUMB_VARIANT
19452#define THUMB_VARIANT & arm_ext_v5exp
c921be7d 19453
21d799b5
NC
19454 TCE("smlabb", 1000080, fb100000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19455 TCE("smlatb", 10000a0, fb100020, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19456 TCE("smlabt", 10000c0, fb100010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19457 TCE("smlatt", 10000e0, fb100030, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 19458
21d799b5
NC
19459 TCE("smlawb", 1200080, fb300000, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
19460 TCE("smlawt", 12000c0, fb300010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smla, t_mla),
c19d1205 19461
21d799b5
NC
19462 TCE("smlalbb", 1400080, fbc00080, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19463 TCE("smlaltb", 14000a0, fbc000a0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19464 TCE("smlalbt", 14000c0, fbc00090, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
19465 TCE("smlaltt", 14000e0, fbc000b0, 4, (RRnpc, RRnpc, RRnpc, RRnpc), smlal, t_mlal),
c19d1205 19466
21d799b5
NC
19467 TCE("smulbb", 1600080, fb10f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19468 TCE("smultb", 16000a0, fb10f020, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19469 TCE("smulbt", 16000c0, fb10f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19470 TCE("smultt", 16000e0, fb10f030, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 19471
21d799b5
NC
19472 TCE("smulwb", 12000a0, fb30f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19473 TCE("smulwt", 12000e0, fb30f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
c19d1205 19474
03ee1b7f
NC
19475 TCE("qadd", 1000050, fa80f080, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19476 TCE("qdadd", 1400050, fa80f090, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19477 TCE("qsub", 1200050, fa80f0a0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
19478 TCE("qdsub", 1600050, fa80f0b0, 3, (RRnpc, RRnpc, RRnpc), rd_rm_rn, t_simd2),
c19d1205 19479
c921be7d 19480#undef ARM_VARIANT
74db7efb
NC
19481#define ARM_VARIANT & arm_ext_v5e /* ARM Architecture 5TE. */
19482#undef THUMB_VARIANT
19483#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19484
21d799b5 19485 TUF("pld", 450f000, f810f000, 1, (ADDR), pld, t_pld),
5be8be5d
DG
19486 TC3("ldrd", 00000d0, e8500000, 3, (RRnpc_npcsp, oRRnpc_npcsp, ADDRGLDRS),
19487 ldrd, t_ldstd),
19488 TC3("strd", 00000f0, e8400000, 3, (RRnpc_npcsp, oRRnpc_npcsp,
19489 ADDRGLDRS), ldrd, t_ldstd),
c19d1205 19490
21d799b5
NC
19491 TCE("mcrr", c400000, ec400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
19492 TCE("mrrc", c500000, ec500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
c19d1205 19493
c921be7d
NC
19494#undef ARM_VARIANT
19495#define ARM_VARIANT & arm_ext_v5j /* ARM Architecture 5TEJ. */
19496
21d799b5 19497 TCE("bxj", 12fff20, f3c08f00, 1, (RR), bxj, t_bxj),
c19d1205 19498
c921be7d
NC
19499#undef ARM_VARIANT
19500#define ARM_VARIANT & arm_ext_v6 /* ARM V6. */
19501#undef THUMB_VARIANT
19502#define THUMB_VARIANT & arm_ext_v6
19503
21d799b5
NC
19504 TUF("cpsie", 1080000, b660, 2, (CPSF, oI31b), cpsi, t_cpsi),
19505 TUF("cpsid", 10c0000, b670, 2, (CPSF, oI31b), cpsi, t_cpsi),
19506 tCE("rev", 6bf0f30, _rev, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19507 tCE("rev16", 6bf0fb0, _rev16, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19508 tCE("revsh", 6ff0fb0, _revsh, 2, (RRnpc, RRnpc), rd_rm, t_rev),
19509 tCE("sxth", 6bf0070, _sxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19510 tCE("uxth", 6ff0070, _uxth, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19511 tCE("sxtb", 6af0070, _sxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19512 tCE("uxtb", 6ef0070, _uxtb, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19513 TUF("setend", 1010000, b650, 1, (ENDI), setend, t_setend),
c19d1205 19514
c921be7d 19515#undef THUMB_VARIANT
ff8646ee 19516#define THUMB_VARIANT & arm_ext_v6t2_v8m
c921be7d 19517
5be8be5d
DG
19518 TCE("ldrex", 1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR), ldrex, t_ldrex),
19519 TCE("strex", 1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
19520 strex, t_strex),
ff8646ee
TP
19521#undef THUMB_VARIANT
19522#define THUMB_VARIANT & arm_ext_v6t2
19523
21d799b5
NC
19524 TUF("mcrr2", c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
19525 TUF("mrrc2", c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
62b3e311 19526
21d799b5
NC
19527 TCE("ssat", 6a00010, f3000000, 4, (RRnpc, I32, RRnpc, oSHllar),ssat, t_ssat),
19528 TCE("usat", 6e00010, f3800000, 4, (RRnpc, I31, RRnpc, oSHllar),usat, t_usat),
62b3e311 19529
9e3c6df6 19530/* ARM V6 not included in V7M. */
c921be7d
NC
19531#undef THUMB_VARIANT
19532#define THUMB_VARIANT & arm_ext_v6_notm
9e3c6df6 19533 TUF("rfeia", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6 19534 TUF("rfe", 8900a00, e990c000, 1, (RRw), rfe, rfe),
9e3c6df6
PB
19535 UF(rfeib, 9900a00, 1, (RRw), rfe),
19536 UF(rfeda, 8100a00, 1, (RRw), rfe),
19537 TUF("rfedb", 9100a00, e810c000, 1, (RRw), rfe, rfe),
19538 TUF("rfefd", 8900a00, e990c000, 1, (RRw), rfe, rfe),
d709e4e6
RE
19539 UF(rfefa, 8100a00, 1, (RRw), rfe),
19540 TUF("rfeea", 9100a00, e810c000, 1, (RRw), rfe, rfe),
19541 UF(rfeed, 9900a00, 1, (RRw), rfe),
9e3c6df6 19542 TUF("srsia", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
d709e4e6
RE
19543 TUF("srs", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
19544 TUF("srsea", 8c00500, e980c000, 2, (oRRw, I31w), srs, srs),
9e3c6df6 19545 UF(srsib, 9c00500, 2, (oRRw, I31w), srs),
d709e4e6 19546 UF(srsfa, 9c00500, 2, (oRRw, I31w), srs),
9e3c6df6 19547 UF(srsda, 8400500, 2, (oRRw, I31w), srs),
d709e4e6 19548 UF(srsed, 8400500, 2, (oRRw, I31w), srs),
9e3c6df6 19549 TUF("srsdb", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
d709e4e6 19550 TUF("srsfd", 9400500, e800c000, 2, (oRRw, I31w), srs, srs),
941c9cad 19551 TUF("cps", 1020000, f3af8100, 1, (I31b), imm0, t_cps),
c921be7d 19552
9e3c6df6
PB
19553/* ARM V6 not included in V7M (eg. integer SIMD). */
19554#undef THUMB_VARIANT
19555#define THUMB_VARIANT & arm_ext_v6_dsp
21d799b5
NC
19556 TCE("pkhbt", 6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll), pkhbt, t_pkhbt),
19557 TCE("pkhtb", 6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar), pkhtb, t_pkhtb),
19558 TCE("qadd16", 6200f10, fa90f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19559 TCE("qadd8", 6200f90, fa80f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19560 TCE("qasx", 6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19561 /* Old name for QASX. */
74db7efb 19562 TCE("qaddsubx",6200f30, faa0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 19563 TCE("qsax", 6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19564 /* Old name for QSAX. */
74db7efb 19565 TCE("qsubaddx",6200f50, fae0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19566 TCE("qsub16", 6200f70, fad0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19567 TCE("qsub8", 6200ff0, fac0f010, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19568 TCE("sadd16", 6100f10, fa90f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19569 TCE("sadd8", 6100f90, fa80f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19570 TCE("sasx", 6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19571 /* Old name for SASX. */
74db7efb 19572 TCE("saddsubx",6100f30, faa0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19573 TCE("shadd16", 6300f10, fa90f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19574 TCE("shadd8", 6300f90, fa80f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19575 TCE("shasx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19576 /* Old name for SHASX. */
21d799b5 19577 TCE("shaddsubx", 6300f30, faa0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19578 TCE("shsax", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19579 /* Old name for SHSAX. */
21d799b5
NC
19580 TCE("shsubaddx", 6300f50, fae0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19581 TCE("shsub16", 6300f70, fad0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19582 TCE("shsub8", 6300ff0, fac0f020, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19583 TCE("ssax", 6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19584 /* Old name for SSAX. */
74db7efb 19585 TCE("ssubaddx",6100f50, fae0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19586 TCE("ssub16", 6100f70, fad0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19587 TCE("ssub8", 6100ff0, fac0f000, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19588 TCE("uadd16", 6500f10, fa90f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19589 TCE("uadd8", 6500f90, fa80f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19590 TCE("uasx", 6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19591 /* Old name for UASX. */
74db7efb 19592 TCE("uaddsubx",6500f30, faa0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19593 TCE("uhadd16", 6700f10, fa90f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19594 TCE("uhadd8", 6700f90, fa80f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19595 TCE("uhasx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19596 /* Old name for UHASX. */
21d799b5
NC
19597 TCE("uhaddsubx", 6700f30, faa0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19598 TCE("uhsax", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19599 /* Old name for UHSAX. */
21d799b5
NC
19600 TCE("uhsubaddx", 6700f50, fae0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19601 TCE("uhsub16", 6700f70, fad0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19602 TCE("uhsub8", 6700ff0, fac0f060, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19603 TCE("uqadd16", 6600f10, fa90f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19604 TCE("uqadd8", 6600f90, fa80f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
74db7efb 19605 TCE("uqasx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19606 /* Old name for UQASX. */
21d799b5
NC
19607 TCE("uqaddsubx", 6600f30, faa0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19608 TCE("uqsax", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19609 /* Old name for UQSAX. */
21d799b5
NC
19610 TCE("uqsubaddx", 6600f50, fae0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19611 TCE("uqsub16", 6600f70, fad0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19612 TCE("uqsub8", 6600ff0, fac0f050, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19613 TCE("usub16", 6500f70, fad0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19614 TCE("usax", 6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
4f80ef3e 19615 /* Old name for USAX. */
74db7efb 19616 TCE("usubaddx",6500f50, fae0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5 19617 TCE("usub8", 6500ff0, fac0f040, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
21d799b5
NC
19618 TCE("sxtah", 6b00070, fa00f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19619 TCE("sxtab16", 6800070, fa20f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19620 TCE("sxtab", 6a00070, fa40f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19621 TCE("sxtb16", 68f0070, fa2ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19622 TCE("uxtah", 6f00070, fa10f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19623 TCE("uxtab16", 6c00070, fa30f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19624 TCE("uxtab", 6e00070, fa50f080, 4, (RRnpc, RRnpc, RRnpc, oROR), sxtah, t_sxtah),
19625 TCE("uxtb16", 6cf0070, fa3ff080, 3, (RRnpc, RRnpc, oROR), sxth, t_sxth),
19626 TCE("sel", 6800fb0, faa0f080, 3, (RRnpc, RRnpc, RRnpc), rd_rn_rm, t_simd),
19627 TCE("smlad", 7000010, fb200000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19628 TCE("smladx", 7000030, fb200010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19629 TCE("smlald", 7400010, fbc000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19630 TCE("smlaldx", 7400030, fbc000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19631 TCE("smlsd", 7000050, fb400000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19632 TCE("smlsdx", 7000070, fb400010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19633 TCE("smlsld", 7400050, fbd000c0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19634 TCE("smlsldx", 7400070, fbd000d0, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal,t_mlal),
19635 TCE("smmla", 7500010, fb500000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19636 TCE("smmlar", 7500030, fb500010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19637 TCE("smmls", 75000d0, fb600000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19638 TCE("smmlsr", 75000f0, fb600010, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19639 TCE("smmul", 750f010, fb50f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19640 TCE("smmulr", 750f030, fb50f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19641 TCE("smuad", 700f010, fb20f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19642 TCE("smuadx", 700f030, fb20f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19643 TCE("smusd", 700f050, fb40f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19644 TCE("smusdx", 700f070, fb40f010, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
21d799b5
NC
19645 TCE("ssat16", 6a00f30, f3200000, 3, (RRnpc, I16, RRnpc), ssat16, t_ssat16),
19646 TCE("umaal", 0400090, fbe00060, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smlal, t_mlal),
19647 TCE("usad8", 780f010, fb70f000, 3, (RRnpc, RRnpc, RRnpc), smul, t_simd),
19648 TCE("usada8", 7800010, fb700000, 4, (RRnpc, RRnpc, RRnpc, RRnpc),smla, t_mla),
19649 TCE("usat16", 6e00f30, f3a00000, 3, (RRnpc, I15, RRnpc), usat16, t_usat16),
c19d1205 19650
c921be7d
NC
19651#undef ARM_VARIANT
19652#define ARM_VARIANT & arm_ext_v6k
19653#undef THUMB_VARIANT
19654#define THUMB_VARIANT & arm_ext_v6k
19655
21d799b5
NC
19656 tCE("yield", 320f001, _yield, 0, (), noargs, t_hint),
19657 tCE("wfe", 320f002, _wfe, 0, (), noargs, t_hint),
19658 tCE("wfi", 320f003, _wfi, 0, (), noargs, t_hint),
19659 tCE("sev", 320f004, _sev, 0, (), noargs, t_hint),
c19d1205 19660
c921be7d
NC
19661#undef THUMB_VARIANT
19662#define THUMB_VARIANT & arm_ext_v6_notm
5be8be5d
DG
19663 TCE("ldrexd", 1b00f9f, e8d0007f, 3, (RRnpc_npcsp, oRRnpc_npcsp, RRnpcb),
19664 ldrexd, t_ldrexd),
19665 TCE("strexd", 1a00f90, e8c00070, 4, (RRnpc_npcsp, RRnpc_npcsp, oRRnpc_npcsp,
19666 RRnpcb), strexd, t_strexd),
ebdca51a 19667
c921be7d 19668#undef THUMB_VARIANT
ff8646ee 19669#define THUMB_VARIANT & arm_ext_v6t2_v8m
5be8be5d
DG
19670 TCE("ldrexb", 1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
19671 rd_rn, rd_rn),
19672 TCE("ldrexh", 1f00f9f, e8d00f5f, 2, (RRnpc_npcsp, RRnpcb),
19673 rd_rn, rd_rn),
19674 TCE("strexb", 1c00f90, e8c00f40, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 19675 strex, t_strexbh),
5be8be5d 19676 TCE("strexh", 1e00f90, e8c00f50, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
877807f8 19677 strex, t_strexbh),
21d799b5 19678 TUF("clrex", 57ff01f, f3bf8f2f, 0, (), noargs, noargs),
c19d1205 19679
c921be7d 19680#undef ARM_VARIANT
f4c65163 19681#define ARM_VARIANT & arm_ext_sec
74db7efb 19682#undef THUMB_VARIANT
f4c65163 19683#define THUMB_VARIANT & arm_ext_sec
c921be7d 19684
21d799b5 19685 TCE("smc", 1600070, f7f08000, 1, (EXPi), smc, t_smc),
c19d1205 19686
90ec0d68
MGD
19687#undef ARM_VARIANT
19688#define ARM_VARIANT & arm_ext_virt
19689#undef THUMB_VARIANT
19690#define THUMB_VARIANT & arm_ext_virt
19691
19692 TCE("hvc", 1400070, f7e08000, 1, (EXPi), hvc, t_hvc),
19693 TCE("eret", 160006e, f3de8f00, 0, (), noargs, noargs),
19694
ddfded2f
MW
19695#undef ARM_VARIANT
19696#define ARM_VARIANT & arm_ext_pan
19697#undef THUMB_VARIANT
19698#define THUMB_VARIANT & arm_ext_pan
19699
19700 TUF("setpan", 1100000, b610, 1, (I7), setpan, t_setpan),
19701
c921be7d 19702#undef ARM_VARIANT
74db7efb 19703#define ARM_VARIANT & arm_ext_v6t2
f4c65163
MGD
19704#undef THUMB_VARIANT
19705#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19706
21d799b5
NC
19707 TCE("bfc", 7c0001f, f36f0000, 3, (RRnpc, I31, I32), bfc, t_bfc),
19708 TCE("bfi", 7c00010, f3600000, 4, (RRnpc, RRnpc_I0, I31, I32), bfi, t_bfi),
19709 TCE("sbfx", 7a00050, f3400000, 4, (RR, RR, I31, I32), bfx, t_bfx),
19710 TCE("ubfx", 7e00050, f3c00000, 4, (RR, RR, I31, I32), bfx, t_bfx),
c19d1205 19711
21d799b5 19712 TCE("mls", 0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
21d799b5 19713 TCE("rbit", 6ff0f30, fa90f0a0, 2, (RR, RR), rd_rm, t_rbit),
c19d1205 19714
5be8be5d
DG
19715 TC3("ldrht", 03000b0, f8300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19716 TC3("ldrsht", 03000f0, f9300e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19717 TC3("ldrsbt", 03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
19718 TC3("strht", 02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
c19d1205 19719
ff8646ee
TP
19720#undef THUMB_VARIANT
19721#define THUMB_VARIANT & arm_ext_v6t2_v8m
19722 TCE("movw", 3000000, f2400000, 2, (RRnpc, HALF), mov16, t_mov16),
19723 TCE("movt", 3400000, f2c00000, 2, (RRnpc, HALF), mov16, t_mov16),
19724
bf3eeda7 19725 /* Thumb-only instructions. */
74db7efb 19726#undef ARM_VARIANT
bf3eeda7
NS
19727#define ARM_VARIANT NULL
19728 TUE("cbnz", 0, b900, 2, (RR, EXP), 0, t_cbz),
19729 TUE("cbz", 0, b100, 2, (RR, EXP), 0, t_cbz),
c921be7d
NC
19730
19731 /* ARM does not really have an IT instruction, so always allow it.
19732 The opcode is copied from Thumb in order to allow warnings in
19733 -mimplicit-it=[never | arm] modes. */
19734#undef ARM_VARIANT
19735#define ARM_VARIANT & arm_ext_v1
ff8646ee
TP
19736#undef THUMB_VARIANT
19737#define THUMB_VARIANT & arm_ext_v6t2
c921be7d 19738
21d799b5
NC
19739 TUE("it", bf08, bf08, 1, (COND), it, t_it),
19740 TUE("itt", bf0c, bf0c, 1, (COND), it, t_it),
19741 TUE("ite", bf04, bf04, 1, (COND), it, t_it),
19742 TUE("ittt", bf0e, bf0e, 1, (COND), it, t_it),
19743 TUE("itet", bf06, bf06, 1, (COND), it, t_it),
19744 TUE("itte", bf0a, bf0a, 1, (COND), it, t_it),
19745 TUE("itee", bf02, bf02, 1, (COND), it, t_it),
19746 TUE("itttt", bf0f, bf0f, 1, (COND), it, t_it),
19747 TUE("itett", bf07, bf07, 1, (COND), it, t_it),
19748 TUE("ittet", bf0b, bf0b, 1, (COND), it, t_it),
19749 TUE("iteet", bf03, bf03, 1, (COND), it, t_it),
19750 TUE("ittte", bf0d, bf0d, 1, (COND), it, t_it),
19751 TUE("itete", bf05, bf05, 1, (COND), it, t_it),
19752 TUE("ittee", bf09, bf09, 1, (COND), it, t_it),
19753 TUE("iteee", bf01, bf01, 1, (COND), it, t_it),
1c444d06 19754 /* ARM/Thumb-2 instructions with no Thumb-1 equivalent. */
21d799b5
NC
19755 TC3("rrx", 01a00060, ea4f0030, 2, (RR, RR), rd_rm, t_rrx),
19756 TC3("rrxs", 01b00060, ea5f0030, 2, (RR, RR), rd_rm, t_rrx),
c19d1205 19757
92e90b6e 19758 /* Thumb2 only instructions. */
c921be7d
NC
19759#undef ARM_VARIANT
19760#define ARM_VARIANT NULL
92e90b6e 19761
21d799b5
NC
19762 TCE("addw", 0, f2000000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
19763 TCE("subw", 0, f2a00000, 3, (RR, RR, EXPi), 0, t_add_sub_w),
19764 TCE("orn", 0, ea600000, 3, (RR, oRR, SH), 0, t_orn),
19765 TCE("orns", 0, ea700000, 3, (RR, oRR, SH), 0, t_orn),
19766 TCE("tbb", 0, e8d0f000, 1, (TB), 0, t_tb),
19767 TCE("tbh", 0, e8d0f010, 1, (TB), 0, t_tb),
92e90b6e 19768
eea54501
MGD
19769 /* Hardware division instructions. */
19770#undef ARM_VARIANT
19771#define ARM_VARIANT & arm_ext_adiv
c921be7d
NC
19772#undef THUMB_VARIANT
19773#define THUMB_VARIANT & arm_ext_div
19774
eea54501
MGD
19775 TCE("sdiv", 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),
19776 TCE("udiv", 730f010, fbb0f0f0, 3, (RR, oRR, RR), div, t_div),
62b3e311 19777
7e806470 19778 /* ARM V6M/V7 instructions. */
c921be7d
NC
19779#undef ARM_VARIANT
19780#define ARM_VARIANT & arm_ext_barrier
19781#undef THUMB_VARIANT
19782#define THUMB_VARIANT & arm_ext_barrier
19783
ccb84d65
JB
19784 TUF("dmb", 57ff050, f3bf8f50, 1, (oBARRIER_I15), barrier, barrier),
19785 TUF("dsb", 57ff040, f3bf8f40, 1, (oBARRIER_I15), barrier, barrier),
19786 TUF("isb", 57ff060, f3bf8f60, 1, (oBARRIER_I15), barrier, barrier),
7e806470 19787
62b3e311 19788 /* ARM V7 instructions. */
c921be7d
NC
19789#undef ARM_VARIANT
19790#define ARM_VARIANT & arm_ext_v7
19791#undef THUMB_VARIANT
19792#define THUMB_VARIANT & arm_ext_v7
19793
21d799b5
NC
19794 TUF("pli", 450f000, f910f000, 1, (ADDR), pli, t_pld),
19795 TCE("dbg", 320f0f0, f3af80f0, 1, (I15), dbg, t_dbg),
62b3e311 19796
74db7efb 19797#undef ARM_VARIANT
60e5ef9f 19798#define ARM_VARIANT & arm_ext_mp
74db7efb 19799#undef THUMB_VARIANT
60e5ef9f
MGD
19800#define THUMB_VARIANT & arm_ext_mp
19801
19802 TUF("pldw", 410f000, f830f000, 1, (ADDR), pld, t_pld),
19803
53c4b28b
MGD
19804 /* AArchv8 instructions. */
19805#undef ARM_VARIANT
19806#define ARM_VARIANT & arm_ext_v8
4ed7ed8d
TP
19807
19808/* Instructions shared between armv8-a and armv8-m. */
53c4b28b 19809#undef THUMB_VARIANT
4ed7ed8d 19810#define THUMB_VARIANT & arm_ext_atomics
53c4b28b 19811
4ed7ed8d
TP
19812 TCE("lda", 1900c9f, e8d00faf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19813 TCE("ldab", 1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19814 TCE("ldah", 1f00c9f, e8d00f9f, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19815 TCE("stl", 180fc90, e8c00faf, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19816 TCE("stlb", 1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
19817 TCE("stlh", 1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb), rm_rn, rd_rn),
4b8c8c02 19818 TCE("ldaex", 1900e9f, e8d00fef, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
4b8c8c02
RE
19819 TCE("ldaexb", 1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb), rd_rn, rd_rn),
19820 TCE("ldaexh", 1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb), rd_rn, rd_rn),
19821 TCE("stlex", 1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
19822 stlex, t_stlex),
4b8c8c02
RE
19823 TCE("stlexb", 1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
19824 stlex, t_stlex),
19825 TCE("stlexh", 1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
19826 stlex, t_stlex),
4ed7ed8d
TP
19827#undef THUMB_VARIANT
19828#define THUMB_VARIANT & arm_ext_v8
53c4b28b 19829
4ed7ed8d
TP
19830 tCE("sevl", 320f005, _sevl, 0, (), noargs, t_hint),
19831 TUE("hlt", 1000070, ba80, 1, (oIffffb), bkpt, t_hlt),
19832 TCE("ldaexd", 1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
19833 ldrexd, t_ldrexd),
19834 TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
19835 strexd, t_strexd),
8884b720 19836 /* ARMv8 T32 only. */
74db7efb 19837#undef ARM_VARIANT
b79f7053
MGD
19838#define ARM_VARIANT NULL
19839 TUF("dcps1", 0, f78f8001, 0, (), noargs, noargs),
19840 TUF("dcps2", 0, f78f8002, 0, (), noargs, noargs),
19841 TUF("dcps3", 0, f78f8003, 0, (), noargs, noargs),
19842
33399f07
MGD
19843 /* FP for ARMv8. */
19844#undef ARM_VARIANT
a715796b 19845#define ARM_VARIANT & fpu_vfp_ext_armv8xd
33399f07 19846#undef THUMB_VARIANT
a715796b 19847#define THUMB_VARIANT & fpu_vfp_ext_armv8xd
33399f07
MGD
19848
19849 nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD), vsel),
19850 nUF(vselvs, _vselvs, 3, (RVSD, RVSD, RVSD), vsel),
19851 nUF(vselge, _vselge, 3, (RVSD, RVSD, RVSD), vsel),
19852 nUF(vselgt, _vselgt, 3, (RVSD, RVSD, RVSD), vsel),
73924fbc
MGD
19853 nUF(vmaxnm, _vmaxnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
19854 nUF(vminnm, _vminnm, 3, (RNSDQ, oRNSDQ, RNSDQ), vmaxnm),
7e8e6784
MGD
19855 nUF(vcvta, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvta),
19856 nUF(vcvtn, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtn),
19857 nUF(vcvtp, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtp),
19858 nUF(vcvtm, _vcvta, 2, (RNSDQ, oRNSDQ), neon_cvtm),
30bdf752
MGD
19859 nCE(vrintr, _vrintr, 2, (RNSDQ, oRNSDQ), vrintr),
19860 nCE(vrintz, _vrintr, 2, (RNSDQ, oRNSDQ), vrintz),
19861 nCE(vrintx, _vrintr, 2, (RNSDQ, oRNSDQ), vrintx),
19862 nUF(vrinta, _vrinta, 2, (RNSDQ, oRNSDQ), vrinta),
19863 nUF(vrintn, _vrinta, 2, (RNSDQ, oRNSDQ), vrintn),
19864 nUF(vrintp, _vrinta, 2, (RNSDQ, oRNSDQ), vrintp),
19865 nUF(vrintm, _vrinta, 2, (RNSDQ, oRNSDQ), vrintm),
33399f07 19866
91ff7894
MGD
19867 /* Crypto v1 extensions. */
19868#undef ARM_VARIANT
19869#define ARM_VARIANT & fpu_crypto_ext_armv8
19870#undef THUMB_VARIANT
19871#define THUMB_VARIANT & fpu_crypto_ext_armv8
19872
19873 nUF(aese, _aes, 2, (RNQ, RNQ), aese),
19874 nUF(aesd, _aes, 2, (RNQ, RNQ), aesd),
19875 nUF(aesmc, _aes, 2, (RNQ, RNQ), aesmc),
19876 nUF(aesimc, _aes, 2, (RNQ, RNQ), aesimc),
48adcd8e
MGD
19877 nUF(sha1c, _sha3op, 3, (RNQ, RNQ, RNQ), sha1c),
19878 nUF(sha1p, _sha3op, 3, (RNQ, RNQ, RNQ), sha1p),
19879 nUF(sha1m, _sha3op, 3, (RNQ, RNQ, RNQ), sha1m),
19880 nUF(sha1su0, _sha3op, 3, (RNQ, RNQ, RNQ), sha1su0),
19881 nUF(sha256h, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h),
19882 nUF(sha256h2, _sha3op, 3, (RNQ, RNQ, RNQ), sha256h2),
19883 nUF(sha256su1, _sha3op, 3, (RNQ, RNQ, RNQ), sha256su1),
3c9017d2
MGD
19884 nUF(sha1h, _sha1h, 2, (RNQ, RNQ), sha1h),
19885 nUF(sha1su1, _sha2op, 2, (RNQ, RNQ), sha1su1),
19886 nUF(sha256su0, _sha2op, 2, (RNQ, RNQ), sha256su0),
91ff7894 19887
dd5181d5 19888#undef ARM_VARIANT
74db7efb 19889#define ARM_VARIANT & crc_ext_armv8
dd5181d5
KT
19890#undef THUMB_VARIANT
19891#define THUMB_VARIANT & crc_ext_armv8
19892 TUEc("crc32b", 1000040, fac0f080, 3, (RR, oRR, RR), crc32b),
19893 TUEc("crc32h", 1200040, fac0f090, 3, (RR, oRR, RR), crc32h),
19894 TUEc("crc32w", 1400040, fac0f0a0, 3, (RR, oRR, RR), crc32w),
19895 TUEc("crc32cb",1000240, fad0f080, 3, (RR, oRR, RR), crc32cb),
19896 TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
19897 TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
19898
105bde57
MW
19899 /* ARMv8.2 RAS extension. */
19900#undef ARM_VARIANT
4d1464f2 19901#define ARM_VARIANT & arm_ext_ras
105bde57 19902#undef THUMB_VARIANT
4d1464f2 19903#define THUMB_VARIANT & arm_ext_ras
105bde57
MW
19904 TUE ("esb", 320f010, f3af8010, 0, (), noargs, noargs),
19905
49e8a725
SN
19906#undef ARM_VARIANT
19907#define ARM_VARIANT & arm_ext_v8_3
19908#undef THUMB_VARIANT
19909#define THUMB_VARIANT & arm_ext_v8_3
19910 NCE (vjcvt, eb90bc0, 2, (RVS, RVD), vjcvt),
c28eeff2
SN
19911 NUF (vcmla, 0, 4, (RNDQ, RNDQ, RNDQ_RNSC, EXPi), vcmla),
19912 NUF (vcadd, 0, 4, (RNDQ, RNDQ, RNDQ, EXPi), vcadd),
49e8a725 19913
c921be7d
NC
19914#undef ARM_VARIANT
19915#define ARM_VARIANT & fpu_fpa_ext_v1 /* Core FPA instruction set (V1). */
53c4b28b
MGD
19916#undef THUMB_VARIANT
19917#define THUMB_VARIANT NULL
c921be7d 19918
21d799b5
NC
19919 cCE("wfs", e200110, 1, (RR), rd),
19920 cCE("rfs", e300110, 1, (RR), rd),
19921 cCE("wfc", e400110, 1, (RR), rd),
19922 cCE("rfc", e500110, 1, (RR), rd),
19923
19924 cCL("ldfs", c100100, 2, (RF, ADDRGLDC), rd_cpaddr),
19925 cCL("ldfd", c108100, 2, (RF, ADDRGLDC), rd_cpaddr),
19926 cCL("ldfe", c500100, 2, (RF, ADDRGLDC), rd_cpaddr),
19927 cCL("ldfp", c508100, 2, (RF, ADDRGLDC), rd_cpaddr),
19928
19929 cCL("stfs", c000100, 2, (RF, ADDRGLDC), rd_cpaddr),
19930 cCL("stfd", c008100, 2, (RF, ADDRGLDC), rd_cpaddr),
19931 cCL("stfe", c400100, 2, (RF, ADDRGLDC), rd_cpaddr),
19932 cCL("stfp", c408100, 2, (RF, ADDRGLDC), rd_cpaddr),
19933
19934 cCL("mvfs", e008100, 2, (RF, RF_IF), rd_rm),
19935 cCL("mvfsp", e008120, 2, (RF, RF_IF), rd_rm),
19936 cCL("mvfsm", e008140, 2, (RF, RF_IF), rd_rm),
19937 cCL("mvfsz", e008160, 2, (RF, RF_IF), rd_rm),
19938 cCL("mvfd", e008180, 2, (RF, RF_IF), rd_rm),
19939 cCL("mvfdp", e0081a0, 2, (RF, RF_IF), rd_rm),
19940 cCL("mvfdm", e0081c0, 2, (RF, RF_IF), rd_rm),
19941 cCL("mvfdz", e0081e0, 2, (RF, RF_IF), rd_rm),
19942 cCL("mvfe", e088100, 2, (RF, RF_IF), rd_rm),
19943 cCL("mvfep", e088120, 2, (RF, RF_IF), rd_rm),
19944 cCL("mvfem", e088140, 2, (RF, RF_IF), rd_rm),
19945 cCL("mvfez", e088160, 2, (RF, RF_IF), rd_rm),
19946
19947 cCL("mnfs", e108100, 2, (RF, RF_IF), rd_rm),
19948 cCL("mnfsp", e108120, 2, (RF, RF_IF), rd_rm),
19949 cCL("mnfsm", e108140, 2, (RF, RF_IF), rd_rm),
19950 cCL("mnfsz", e108160, 2, (RF, RF_IF), rd_rm),
19951 cCL("mnfd", e108180, 2, (RF, RF_IF), rd_rm),
19952 cCL("mnfdp", e1081a0, 2, (RF, RF_IF), rd_rm),
19953 cCL("mnfdm", e1081c0, 2, (RF, RF_IF), rd_rm),
19954 cCL("mnfdz", e1081e0, 2, (RF, RF_IF), rd_rm),
19955 cCL("mnfe", e188100, 2, (RF, RF_IF), rd_rm),
19956 cCL("mnfep", e188120, 2, (RF, RF_IF), rd_rm),
19957 cCL("mnfem", e188140, 2, (RF, RF_IF), rd_rm),
19958 cCL("mnfez", e188160, 2, (RF, RF_IF), rd_rm),
19959
19960 cCL("abss", e208100, 2, (RF, RF_IF), rd_rm),
19961 cCL("abssp", e208120, 2, (RF, RF_IF), rd_rm),
19962 cCL("abssm", e208140, 2, (RF, RF_IF), rd_rm),
19963 cCL("abssz", e208160, 2, (RF, RF_IF), rd_rm),
19964 cCL("absd", e208180, 2, (RF, RF_IF), rd_rm),
19965 cCL("absdp", e2081a0, 2, (RF, RF_IF), rd_rm),
19966 cCL("absdm", e2081c0, 2, (RF, RF_IF), rd_rm),
19967 cCL("absdz", e2081e0, 2, (RF, RF_IF), rd_rm),
19968 cCL("abse", e288100, 2, (RF, RF_IF), rd_rm),
19969 cCL("absep", e288120, 2, (RF, RF_IF), rd_rm),
19970 cCL("absem", e288140, 2, (RF, RF_IF), rd_rm),
19971 cCL("absez", e288160, 2, (RF, RF_IF), rd_rm),
19972
19973 cCL("rnds", e308100, 2, (RF, RF_IF), rd_rm),
19974 cCL("rndsp", e308120, 2, (RF, RF_IF), rd_rm),
19975 cCL("rndsm", e308140, 2, (RF, RF_IF), rd_rm),
19976 cCL("rndsz", e308160, 2, (RF, RF_IF), rd_rm),
19977 cCL("rndd", e308180, 2, (RF, RF_IF), rd_rm),
19978 cCL("rnddp", e3081a0, 2, (RF, RF_IF), rd_rm),
19979 cCL("rnddm", e3081c0, 2, (RF, RF_IF), rd_rm),
19980 cCL("rnddz", e3081e0, 2, (RF, RF_IF), rd_rm),
19981 cCL("rnde", e388100, 2, (RF, RF_IF), rd_rm),
19982 cCL("rndep", e388120, 2, (RF, RF_IF), rd_rm),
19983 cCL("rndem", e388140, 2, (RF, RF_IF), rd_rm),
19984 cCL("rndez", e388160, 2, (RF, RF_IF), rd_rm),
19985
19986 cCL("sqts", e408100, 2, (RF, RF_IF), rd_rm),
19987 cCL("sqtsp", e408120, 2, (RF, RF_IF), rd_rm),
19988 cCL("sqtsm", e408140, 2, (RF, RF_IF), rd_rm),
19989 cCL("sqtsz", e408160, 2, (RF, RF_IF), rd_rm),
19990 cCL("sqtd", e408180, 2, (RF, RF_IF), rd_rm),
19991 cCL("sqtdp", e4081a0, 2, (RF, RF_IF), rd_rm),
19992 cCL("sqtdm", e4081c0, 2, (RF, RF_IF), rd_rm),
19993 cCL("sqtdz", e4081e0, 2, (RF, RF_IF), rd_rm),
19994 cCL("sqte", e488100, 2, (RF, RF_IF), rd_rm),
19995 cCL("sqtep", e488120, 2, (RF, RF_IF), rd_rm),
19996 cCL("sqtem", e488140, 2, (RF, RF_IF), rd_rm),
19997 cCL("sqtez", e488160, 2, (RF, RF_IF), rd_rm),
19998
19999 cCL("logs", e508100, 2, (RF, RF_IF), rd_rm),
20000 cCL("logsp", e508120, 2, (RF, RF_IF), rd_rm),
20001 cCL("logsm", e508140, 2, (RF, RF_IF), rd_rm),
20002 cCL("logsz", e508160, 2, (RF, RF_IF), rd_rm),
20003 cCL("logd", e508180, 2, (RF, RF_IF), rd_rm),
20004 cCL("logdp", e5081a0, 2, (RF, RF_IF), rd_rm),
20005 cCL("logdm", e5081c0, 2, (RF, RF_IF), rd_rm),
20006 cCL("logdz", e5081e0, 2, (RF, RF_IF), rd_rm),
20007 cCL("loge", e588100, 2, (RF, RF_IF), rd_rm),
20008 cCL("logep", e588120, 2, (RF, RF_IF), rd_rm),
20009 cCL("logem", e588140, 2, (RF, RF_IF), rd_rm),
20010 cCL("logez", e588160, 2, (RF, RF_IF), rd_rm),
20011
20012 cCL("lgns", e608100, 2, (RF, RF_IF), rd_rm),
20013 cCL("lgnsp", e608120, 2, (RF, RF_IF), rd_rm),
20014 cCL("lgnsm", e608140, 2, (RF, RF_IF), rd_rm),
20015 cCL("lgnsz", e608160, 2, (RF, RF_IF), rd_rm),
20016 cCL("lgnd", e608180, 2, (RF, RF_IF), rd_rm),
20017 cCL("lgndp", e6081a0, 2, (RF, RF_IF), rd_rm),
20018 cCL("lgndm", e6081c0, 2, (RF, RF_IF), rd_rm),
20019 cCL("lgndz", e6081e0, 2, (RF, RF_IF), rd_rm),
20020 cCL("lgne", e688100, 2, (RF, RF_IF), rd_rm),
20021 cCL("lgnep", e688120, 2, (RF, RF_IF), rd_rm),
20022 cCL("lgnem", e688140, 2, (RF, RF_IF), rd_rm),
20023 cCL("lgnez", e688160, 2, (RF, RF_IF), rd_rm),
20024
20025 cCL("exps", e708100, 2, (RF, RF_IF), rd_rm),
20026 cCL("expsp", e708120, 2, (RF, RF_IF), rd_rm),
20027 cCL("expsm", e708140, 2, (RF, RF_IF), rd_rm),
20028 cCL("expsz", e708160, 2, (RF, RF_IF), rd_rm),
20029 cCL("expd", e708180, 2, (RF, RF_IF), rd_rm),
20030 cCL("expdp", e7081a0, 2, (RF, RF_IF), rd_rm),
20031 cCL("expdm", e7081c0, 2, (RF, RF_IF), rd_rm),
20032 cCL("expdz", e7081e0, 2, (RF, RF_IF), rd_rm),
20033 cCL("expe", e788100, 2, (RF, RF_IF), rd_rm),
20034 cCL("expep", e788120, 2, (RF, RF_IF), rd_rm),
20035 cCL("expem", e788140, 2, (RF, RF_IF), rd_rm),
20036 cCL("expdz", e788160, 2, (RF, RF_IF), rd_rm),
20037
20038 cCL("sins", e808100, 2, (RF, RF_IF), rd_rm),
20039 cCL("sinsp", e808120, 2, (RF, RF_IF), rd_rm),
20040 cCL("sinsm", e808140, 2, (RF, RF_IF), rd_rm),
20041 cCL("sinsz", e808160, 2, (RF, RF_IF), rd_rm),
20042 cCL("sind", e808180, 2, (RF, RF_IF), rd_rm),
20043 cCL("sindp", e8081a0, 2, (RF, RF_IF), rd_rm),
20044 cCL("sindm", e8081c0, 2, (RF, RF_IF), rd_rm),
20045 cCL("sindz", e8081e0, 2, (RF, RF_IF), rd_rm),
20046 cCL("sine", e888100, 2, (RF, RF_IF), rd_rm),
20047 cCL("sinep", e888120, 2, (RF, RF_IF), rd_rm),
20048 cCL("sinem", e888140, 2, (RF, RF_IF), rd_rm),
20049 cCL("sinez", e888160, 2, (RF, RF_IF), rd_rm),
20050
20051 cCL("coss", e908100, 2, (RF, RF_IF), rd_rm),
20052 cCL("cossp", e908120, 2, (RF, RF_IF), rd_rm),
20053 cCL("cossm", e908140, 2, (RF, RF_IF), rd_rm),
20054 cCL("cossz", e908160, 2, (RF, RF_IF), rd_rm),
20055 cCL("cosd", e908180, 2, (RF, RF_IF), rd_rm),
20056 cCL("cosdp", e9081a0, 2, (RF, RF_IF), rd_rm),
20057 cCL("cosdm", e9081c0, 2, (RF, RF_IF), rd_rm),
20058 cCL("cosdz", e9081e0, 2, (RF, RF_IF), rd_rm),
20059 cCL("cose", e988100, 2, (RF, RF_IF), rd_rm),
20060 cCL("cosep", e988120, 2, (RF, RF_IF), rd_rm),
20061 cCL("cosem", e988140, 2, (RF, RF_IF), rd_rm),
20062 cCL("cosez", e988160, 2, (RF, RF_IF), rd_rm),
20063
20064 cCL("tans", ea08100, 2, (RF, RF_IF), rd_rm),
20065 cCL("tansp", ea08120, 2, (RF, RF_IF), rd_rm),
20066 cCL("tansm", ea08140, 2, (RF, RF_IF), rd_rm),
20067 cCL("tansz", ea08160, 2, (RF, RF_IF), rd_rm),
20068 cCL("tand", ea08180, 2, (RF, RF_IF), rd_rm),
20069 cCL("tandp", ea081a0, 2, (RF, RF_IF), rd_rm),
20070 cCL("tandm", ea081c0, 2, (RF, RF_IF), rd_rm),
20071 cCL("tandz", ea081e0, 2, (RF, RF_IF), rd_rm),
20072 cCL("tane", ea88100, 2, (RF, RF_IF), rd_rm),
20073 cCL("tanep", ea88120, 2, (RF, RF_IF), rd_rm),
20074 cCL("tanem", ea88140, 2, (RF, RF_IF), rd_rm),
20075 cCL("tanez", ea88160, 2, (RF, RF_IF), rd_rm),
20076
20077 cCL("asns", eb08100, 2, (RF, RF_IF), rd_rm),
20078 cCL("asnsp", eb08120, 2, (RF, RF_IF), rd_rm),
20079 cCL("asnsm", eb08140, 2, (RF, RF_IF), rd_rm),
20080 cCL("asnsz", eb08160, 2, (RF, RF_IF), rd_rm),
20081 cCL("asnd", eb08180, 2, (RF, RF_IF), rd_rm),
20082 cCL("asndp", eb081a0, 2, (RF, RF_IF), rd_rm),
20083 cCL("asndm", eb081c0, 2, (RF, RF_IF), rd_rm),
20084 cCL("asndz", eb081e0, 2, (RF, RF_IF), rd_rm),
20085 cCL("asne", eb88100, 2, (RF, RF_IF), rd_rm),
20086 cCL("asnep", eb88120, 2, (RF, RF_IF), rd_rm),
20087 cCL("asnem", eb88140, 2, (RF, RF_IF), rd_rm),
20088 cCL("asnez", eb88160, 2, (RF, RF_IF), rd_rm),
20089
20090 cCL("acss", ec08100, 2, (RF, RF_IF), rd_rm),
20091 cCL("acssp", ec08120, 2, (RF, RF_IF), rd_rm),
20092 cCL("acssm", ec08140, 2, (RF, RF_IF), rd_rm),
20093 cCL("acssz", ec08160, 2, (RF, RF_IF), rd_rm),
20094 cCL("acsd", ec08180, 2, (RF, RF_IF), rd_rm),
20095 cCL("acsdp", ec081a0, 2, (RF, RF_IF), rd_rm),
20096 cCL("acsdm", ec081c0, 2, (RF, RF_IF), rd_rm),
20097 cCL("acsdz", ec081e0, 2, (RF, RF_IF), rd_rm),
20098 cCL("acse", ec88100, 2, (RF, RF_IF), rd_rm),
20099 cCL("acsep", ec88120, 2, (RF, RF_IF), rd_rm),
20100 cCL("acsem", ec88140, 2, (RF, RF_IF), rd_rm),
20101 cCL("acsez", ec88160, 2, (RF, RF_IF), rd_rm),
20102
20103 cCL("atns", ed08100, 2, (RF, RF_IF), rd_rm),
20104 cCL("atnsp", ed08120, 2, (RF, RF_IF), rd_rm),
20105 cCL("atnsm", ed08140, 2, (RF, RF_IF), rd_rm),
20106 cCL("atnsz", ed08160, 2, (RF, RF_IF), rd_rm),
20107 cCL("atnd", ed08180, 2, (RF, RF_IF), rd_rm),
20108 cCL("atndp", ed081a0, 2, (RF, RF_IF), rd_rm),
20109 cCL("atndm", ed081c0, 2, (RF, RF_IF), rd_rm),
20110 cCL("atndz", ed081e0, 2, (RF, RF_IF), rd_rm),
20111 cCL("atne", ed88100, 2, (RF, RF_IF), rd_rm),
20112 cCL("atnep", ed88120, 2, (RF, RF_IF), rd_rm),
20113 cCL("atnem", ed88140, 2, (RF, RF_IF), rd_rm),
20114 cCL("atnez", ed88160, 2, (RF, RF_IF), rd_rm),
20115
20116 cCL("urds", ee08100, 2, (RF, RF_IF), rd_rm),
20117 cCL("urdsp", ee08120, 2, (RF, RF_IF), rd_rm),
20118 cCL("urdsm", ee08140, 2, (RF, RF_IF), rd_rm),
20119 cCL("urdsz", ee08160, 2, (RF, RF_IF), rd_rm),
20120 cCL("urdd", ee08180, 2, (RF, RF_IF), rd_rm),
20121 cCL("urddp", ee081a0, 2, (RF, RF_IF), rd_rm),
20122 cCL("urddm", ee081c0, 2, (RF, RF_IF), rd_rm),
20123 cCL("urddz", ee081e0, 2, (RF, RF_IF), rd_rm),
20124 cCL("urde", ee88100, 2, (RF, RF_IF), rd_rm),
20125 cCL("urdep", ee88120, 2, (RF, RF_IF), rd_rm),
20126 cCL("urdem", ee88140, 2, (RF, RF_IF), rd_rm),
20127 cCL("urdez", ee88160, 2, (RF, RF_IF), rd_rm),
20128
20129 cCL("nrms", ef08100, 2, (RF, RF_IF), rd_rm),
20130 cCL("nrmsp", ef08120, 2, (RF, RF_IF), rd_rm),
20131 cCL("nrmsm", ef08140, 2, (RF, RF_IF), rd_rm),
20132 cCL("nrmsz", ef08160, 2, (RF, RF_IF), rd_rm),
20133 cCL("nrmd", ef08180, 2, (RF, RF_IF), rd_rm),
20134 cCL("nrmdp", ef081a0, 2, (RF, RF_IF), rd_rm),
20135 cCL("nrmdm", ef081c0, 2, (RF, RF_IF), rd_rm),
20136 cCL("nrmdz", ef081e0, 2, (RF, RF_IF), rd_rm),
20137 cCL("nrme", ef88100, 2, (RF, RF_IF), rd_rm),
20138 cCL("nrmep", ef88120, 2, (RF, RF_IF), rd_rm),
20139 cCL("nrmem", ef88140, 2, (RF, RF_IF), rd_rm),
20140 cCL("nrmez", ef88160, 2, (RF, RF_IF), rd_rm),
20141
20142 cCL("adfs", e000100, 3, (RF, RF, RF_IF), rd_rn_rm),
20143 cCL("adfsp", e000120, 3, (RF, RF, RF_IF), rd_rn_rm),
20144 cCL("adfsm", e000140, 3, (RF, RF, RF_IF), rd_rn_rm),
20145 cCL("adfsz", e000160, 3, (RF, RF, RF_IF), rd_rn_rm),
20146 cCL("adfd", e000180, 3, (RF, RF, RF_IF), rd_rn_rm),
20147 cCL("adfdp", e0001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20148 cCL("adfdm", e0001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20149 cCL("adfdz", e0001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20150 cCL("adfe", e080100, 3, (RF, RF, RF_IF), rd_rn_rm),
20151 cCL("adfep", e080120, 3, (RF, RF, RF_IF), rd_rn_rm),
20152 cCL("adfem", e080140, 3, (RF, RF, RF_IF), rd_rn_rm),
20153 cCL("adfez", e080160, 3, (RF, RF, RF_IF), rd_rn_rm),
20154
20155 cCL("sufs", e200100, 3, (RF, RF, RF_IF), rd_rn_rm),
20156 cCL("sufsp", e200120, 3, (RF, RF, RF_IF), rd_rn_rm),
20157 cCL("sufsm", e200140, 3, (RF, RF, RF_IF), rd_rn_rm),
20158 cCL("sufsz", e200160, 3, (RF, RF, RF_IF), rd_rn_rm),
20159 cCL("sufd", e200180, 3, (RF, RF, RF_IF), rd_rn_rm),
20160 cCL("sufdp", e2001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20161 cCL("sufdm", e2001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20162 cCL("sufdz", e2001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20163 cCL("sufe", e280100, 3, (RF, RF, RF_IF), rd_rn_rm),
20164 cCL("sufep", e280120, 3, (RF, RF, RF_IF), rd_rn_rm),
20165 cCL("sufem", e280140, 3, (RF, RF, RF_IF), rd_rn_rm),
20166 cCL("sufez", e280160, 3, (RF, RF, RF_IF), rd_rn_rm),
20167
20168 cCL("rsfs", e300100, 3, (RF, RF, RF_IF), rd_rn_rm),
20169 cCL("rsfsp", e300120, 3, (RF, RF, RF_IF), rd_rn_rm),
20170 cCL("rsfsm", e300140, 3, (RF, RF, RF_IF), rd_rn_rm),
20171 cCL("rsfsz", e300160, 3, (RF, RF, RF_IF), rd_rn_rm),
20172 cCL("rsfd", e300180, 3, (RF, RF, RF_IF), rd_rn_rm),
20173 cCL("rsfdp", e3001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20174 cCL("rsfdm", e3001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20175 cCL("rsfdz", e3001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20176 cCL("rsfe", e380100, 3, (RF, RF, RF_IF), rd_rn_rm),
20177 cCL("rsfep", e380120, 3, (RF, RF, RF_IF), rd_rn_rm),
20178 cCL("rsfem", e380140, 3, (RF, RF, RF_IF), rd_rn_rm),
20179 cCL("rsfez", e380160, 3, (RF, RF, RF_IF), rd_rn_rm),
20180
20181 cCL("mufs", e100100, 3, (RF, RF, RF_IF), rd_rn_rm),
20182 cCL("mufsp", e100120, 3, (RF, RF, RF_IF), rd_rn_rm),
20183 cCL("mufsm", e100140, 3, (RF, RF, RF_IF), rd_rn_rm),
20184 cCL("mufsz", e100160, 3, (RF, RF, RF_IF), rd_rn_rm),
20185 cCL("mufd", e100180, 3, (RF, RF, RF_IF), rd_rn_rm),
20186 cCL("mufdp", e1001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20187 cCL("mufdm", e1001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20188 cCL("mufdz", e1001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20189 cCL("mufe", e180100, 3, (RF, RF, RF_IF), rd_rn_rm),
20190 cCL("mufep", e180120, 3, (RF, RF, RF_IF), rd_rn_rm),
20191 cCL("mufem", e180140, 3, (RF, RF, RF_IF), rd_rn_rm),
20192 cCL("mufez", e180160, 3, (RF, RF, RF_IF), rd_rn_rm),
20193
20194 cCL("dvfs", e400100, 3, (RF, RF, RF_IF), rd_rn_rm),
20195 cCL("dvfsp", e400120, 3, (RF, RF, RF_IF), rd_rn_rm),
20196 cCL("dvfsm", e400140, 3, (RF, RF, RF_IF), rd_rn_rm),
20197 cCL("dvfsz", e400160, 3, (RF, RF, RF_IF), rd_rn_rm),
20198 cCL("dvfd", e400180, 3, (RF, RF, RF_IF), rd_rn_rm),
20199 cCL("dvfdp", e4001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20200 cCL("dvfdm", e4001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20201 cCL("dvfdz", e4001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20202 cCL("dvfe", e480100, 3, (RF, RF, RF_IF), rd_rn_rm),
20203 cCL("dvfep", e480120, 3, (RF, RF, RF_IF), rd_rn_rm),
20204 cCL("dvfem", e480140, 3, (RF, RF, RF_IF), rd_rn_rm),
20205 cCL("dvfez", e480160, 3, (RF, RF, RF_IF), rd_rn_rm),
20206
20207 cCL("rdfs", e500100, 3, (RF, RF, RF_IF), rd_rn_rm),
20208 cCL("rdfsp", e500120, 3, (RF, RF, RF_IF), rd_rn_rm),
20209 cCL("rdfsm", e500140, 3, (RF, RF, RF_IF), rd_rn_rm),
20210 cCL("rdfsz", e500160, 3, (RF, RF, RF_IF), rd_rn_rm),
20211 cCL("rdfd", e500180, 3, (RF, RF, RF_IF), rd_rn_rm),
20212 cCL("rdfdp", e5001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20213 cCL("rdfdm", e5001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20214 cCL("rdfdz", e5001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20215 cCL("rdfe", e580100, 3, (RF, RF, RF_IF), rd_rn_rm),
20216 cCL("rdfep", e580120, 3, (RF, RF, RF_IF), rd_rn_rm),
20217 cCL("rdfem", e580140, 3, (RF, RF, RF_IF), rd_rn_rm),
20218 cCL("rdfez", e580160, 3, (RF, RF, RF_IF), rd_rn_rm),
20219
20220 cCL("pows", e600100, 3, (RF, RF, RF_IF), rd_rn_rm),
20221 cCL("powsp", e600120, 3, (RF, RF, RF_IF), rd_rn_rm),
20222 cCL("powsm", e600140, 3, (RF, RF, RF_IF), rd_rn_rm),
20223 cCL("powsz", e600160, 3, (RF, RF, RF_IF), rd_rn_rm),
20224 cCL("powd", e600180, 3, (RF, RF, RF_IF), rd_rn_rm),
20225 cCL("powdp", e6001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20226 cCL("powdm", e6001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20227 cCL("powdz", e6001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20228 cCL("powe", e680100, 3, (RF, RF, RF_IF), rd_rn_rm),
20229 cCL("powep", e680120, 3, (RF, RF, RF_IF), rd_rn_rm),
20230 cCL("powem", e680140, 3, (RF, RF, RF_IF), rd_rn_rm),
20231 cCL("powez", e680160, 3, (RF, RF, RF_IF), rd_rn_rm),
20232
20233 cCL("rpws", e700100, 3, (RF, RF, RF_IF), rd_rn_rm),
20234 cCL("rpwsp", e700120, 3, (RF, RF, RF_IF), rd_rn_rm),
20235 cCL("rpwsm", e700140, 3, (RF, RF, RF_IF), rd_rn_rm),
20236 cCL("rpwsz", e700160, 3, (RF, RF, RF_IF), rd_rn_rm),
20237 cCL("rpwd", e700180, 3, (RF, RF, RF_IF), rd_rn_rm),
20238 cCL("rpwdp", e7001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20239 cCL("rpwdm", e7001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20240 cCL("rpwdz", e7001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20241 cCL("rpwe", e780100, 3, (RF, RF, RF_IF), rd_rn_rm),
20242 cCL("rpwep", e780120, 3, (RF, RF, RF_IF), rd_rn_rm),
20243 cCL("rpwem", e780140, 3, (RF, RF, RF_IF), rd_rn_rm),
20244 cCL("rpwez", e780160, 3, (RF, RF, RF_IF), rd_rn_rm),
20245
20246 cCL("rmfs", e800100, 3, (RF, RF, RF_IF), rd_rn_rm),
20247 cCL("rmfsp", e800120, 3, (RF, RF, RF_IF), rd_rn_rm),
20248 cCL("rmfsm", e800140, 3, (RF, RF, RF_IF), rd_rn_rm),
20249 cCL("rmfsz", e800160, 3, (RF, RF, RF_IF), rd_rn_rm),
20250 cCL("rmfd", e800180, 3, (RF, RF, RF_IF), rd_rn_rm),
20251 cCL("rmfdp", e8001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20252 cCL("rmfdm", e8001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20253 cCL("rmfdz", e8001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20254 cCL("rmfe", e880100, 3, (RF, RF, RF_IF), rd_rn_rm),
20255 cCL("rmfep", e880120, 3, (RF, RF, RF_IF), rd_rn_rm),
20256 cCL("rmfem", e880140, 3, (RF, RF, RF_IF), rd_rn_rm),
20257 cCL("rmfez", e880160, 3, (RF, RF, RF_IF), rd_rn_rm),
20258
20259 cCL("fmls", e900100, 3, (RF, RF, RF_IF), rd_rn_rm),
20260 cCL("fmlsp", e900120, 3, (RF, RF, RF_IF), rd_rn_rm),
20261 cCL("fmlsm", e900140, 3, (RF, RF, RF_IF), rd_rn_rm),
20262 cCL("fmlsz", e900160, 3, (RF, RF, RF_IF), rd_rn_rm),
20263 cCL("fmld", e900180, 3, (RF, RF, RF_IF), rd_rn_rm),
20264 cCL("fmldp", e9001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20265 cCL("fmldm", e9001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20266 cCL("fmldz", e9001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20267 cCL("fmle", e980100, 3, (RF, RF, RF_IF), rd_rn_rm),
20268 cCL("fmlep", e980120, 3, (RF, RF, RF_IF), rd_rn_rm),
20269 cCL("fmlem", e980140, 3, (RF, RF, RF_IF), rd_rn_rm),
20270 cCL("fmlez", e980160, 3, (RF, RF, RF_IF), rd_rn_rm),
20271
20272 cCL("fdvs", ea00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20273 cCL("fdvsp", ea00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20274 cCL("fdvsm", ea00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20275 cCL("fdvsz", ea00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20276 cCL("fdvd", ea00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20277 cCL("fdvdp", ea001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20278 cCL("fdvdm", ea001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20279 cCL("fdvdz", ea001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20280 cCL("fdve", ea80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20281 cCL("fdvep", ea80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20282 cCL("fdvem", ea80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20283 cCL("fdvez", ea80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20284
20285 cCL("frds", eb00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20286 cCL("frdsp", eb00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20287 cCL("frdsm", eb00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20288 cCL("frdsz", eb00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20289 cCL("frdd", eb00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20290 cCL("frddp", eb001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20291 cCL("frddm", eb001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20292 cCL("frddz", eb001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20293 cCL("frde", eb80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20294 cCL("frdep", eb80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20295 cCL("frdem", eb80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20296 cCL("frdez", eb80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20297
20298 cCL("pols", ec00100, 3, (RF, RF, RF_IF), rd_rn_rm),
20299 cCL("polsp", ec00120, 3, (RF, RF, RF_IF), rd_rn_rm),
20300 cCL("polsm", ec00140, 3, (RF, RF, RF_IF), rd_rn_rm),
20301 cCL("polsz", ec00160, 3, (RF, RF, RF_IF), rd_rn_rm),
20302 cCL("pold", ec00180, 3, (RF, RF, RF_IF), rd_rn_rm),
20303 cCL("poldp", ec001a0, 3, (RF, RF, RF_IF), rd_rn_rm),
20304 cCL("poldm", ec001c0, 3, (RF, RF, RF_IF), rd_rn_rm),
20305 cCL("poldz", ec001e0, 3, (RF, RF, RF_IF), rd_rn_rm),
20306 cCL("pole", ec80100, 3, (RF, RF, RF_IF), rd_rn_rm),
20307 cCL("polep", ec80120, 3, (RF, RF, RF_IF), rd_rn_rm),
20308 cCL("polem", ec80140, 3, (RF, RF, RF_IF), rd_rn_rm),
20309 cCL("polez", ec80160, 3, (RF, RF, RF_IF), rd_rn_rm),
20310
20311 cCE("cmf", e90f110, 2, (RF, RF_IF), fpa_cmp),
20312 C3E("cmfe", ed0f110, 2, (RF, RF_IF), fpa_cmp),
20313 cCE("cnf", eb0f110, 2, (RF, RF_IF), fpa_cmp),
20314 C3E("cnfe", ef0f110, 2, (RF, RF_IF), fpa_cmp),
20315
20316 cCL("flts", e000110, 2, (RF, RR), rn_rd),
20317 cCL("fltsp", e000130, 2, (RF, RR), rn_rd),
20318 cCL("fltsm", e000150, 2, (RF, RR), rn_rd),
20319 cCL("fltsz", e000170, 2, (RF, RR), rn_rd),
20320 cCL("fltd", e000190, 2, (RF, RR), rn_rd),
20321 cCL("fltdp", e0001b0, 2, (RF, RR), rn_rd),
20322 cCL("fltdm", e0001d0, 2, (RF, RR), rn_rd),
20323 cCL("fltdz", e0001f0, 2, (RF, RR), rn_rd),
20324 cCL("flte", e080110, 2, (RF, RR), rn_rd),
20325 cCL("fltep", e080130, 2, (RF, RR), rn_rd),
20326 cCL("fltem", e080150, 2, (RF, RR), rn_rd),
20327 cCL("fltez", e080170, 2, (RF, RR), rn_rd),
b99bd4ef 20328
c19d1205
ZW
20329 /* The implementation of the FIX instruction is broken on some
20330 assemblers, in that it accepts a precision specifier as well as a
20331 rounding specifier, despite the fact that this is meaningless.
20332 To be more compatible, we accept it as well, though of course it
20333 does not set any bits. */
21d799b5
NC
20334 cCE("fix", e100110, 2, (RR, RF), rd_rm),
20335 cCL("fixp", e100130, 2, (RR, RF), rd_rm),
20336 cCL("fixm", e100150, 2, (RR, RF), rd_rm),
20337 cCL("fixz", e100170, 2, (RR, RF), rd_rm),
20338 cCL("fixsp", e100130, 2, (RR, RF), rd_rm),
20339 cCL("fixsm", e100150, 2, (RR, RF), rd_rm),
20340 cCL("fixsz", e100170, 2, (RR, RF), rd_rm),
20341 cCL("fixdp", e100130, 2, (RR, RF), rd_rm),
20342 cCL("fixdm", e100150, 2, (RR, RF), rd_rm),
20343 cCL("fixdz", e100170, 2, (RR, RF), rd_rm),
20344 cCL("fixep", e100130, 2, (RR, RF), rd_rm),
20345 cCL("fixem", e100150, 2, (RR, RF), rd_rm),
20346 cCL("fixez", e100170, 2, (RR, RF), rd_rm),
bfae80f2 20347
c19d1205 20348 /* Instructions that were new with the real FPA, call them V2. */
c921be7d
NC
20349#undef ARM_VARIANT
20350#define ARM_VARIANT & fpu_fpa_ext_v2
20351
21d799b5
NC
20352 cCE("lfm", c100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20353 cCL("lfmfd", c900200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20354 cCL("lfmea", d100200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20355 cCE("sfm", c000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20356 cCL("sfmfd", d000200, 3, (RF, I4b, ADDR), fpa_ldmstm),
20357 cCL("sfmea", c800200, 3, (RF, I4b, ADDR), fpa_ldmstm),
c19d1205 20358
c921be7d
NC
20359#undef ARM_VARIANT
20360#define ARM_VARIANT & fpu_vfp_ext_v1xd /* VFP V1xD (single precision). */
20361
c19d1205 20362 /* Moves and type conversions. */
21d799b5
NC
20363 cCE("fcpys", eb00a40, 2, (RVS, RVS), vfp_sp_monadic),
20364 cCE("fmrs", e100a10, 2, (RR, RVS), vfp_reg_from_sp),
20365 cCE("fmsr", e000a10, 2, (RVS, RR), vfp_sp_from_reg),
20366 cCE("fmstat", ef1fa10, 0, (), noargs),
7465e07a
NC
20367 cCE("vmrs", ef00a10, 2, (APSR_RR, RVC), vmrs),
20368 cCE("vmsr", ee00a10, 2, (RVC, RR), vmsr),
21d799b5
NC
20369 cCE("fsitos", eb80ac0, 2, (RVS, RVS), vfp_sp_monadic),
20370 cCE("fuitos", eb80a40, 2, (RVS, RVS), vfp_sp_monadic),
20371 cCE("ftosis", ebd0a40, 2, (RVS, RVS), vfp_sp_monadic),
20372 cCE("ftosizs", ebd0ac0, 2, (RVS, RVS), vfp_sp_monadic),
20373 cCE("ftouis", ebc0a40, 2, (RVS, RVS), vfp_sp_monadic),
20374 cCE("ftouizs", ebc0ac0, 2, (RVS, RVS), vfp_sp_monadic),
20375 cCE("fmrx", ef00a10, 2, (RR, RVC), rd_rn),
20376 cCE("fmxr", ee00a10, 2, (RVC, RR), rn_rd),
c19d1205
ZW
20377
20378 /* Memory operations. */
21d799b5
NC
20379 cCE("flds", d100a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
20380 cCE("fsts", d000a00, 2, (RVS, ADDRGLDC), vfp_sp_ldst),
55881a11
MGD
20381 cCE("fldmias", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20382 cCE("fldmfds", c900a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20383 cCE("fldmdbs", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20384 cCE("fldmeas", d300a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20385 cCE("fldmiax", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20386 cCE("fldmfdx", c900b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20387 cCE("fldmdbx", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20388 cCE("fldmeax", d300b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20389 cCE("fstmias", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20390 cCE("fstmeas", c800a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmia),
20391 cCE("fstmdbs", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20392 cCE("fstmfds", d200a00, 2, (RRnpctw, VRSLST), vfp_sp_ldstmdb),
20393 cCE("fstmiax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20394 cCE("fstmeax", c800b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmia),
20395 cCE("fstmdbx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
20396 cCE("fstmfdx", d200b00, 2, (RRnpctw, VRDLST), vfp_xp_ldstmdb),
bfae80f2 20397
c19d1205 20398 /* Monadic operations. */
21d799b5
NC
20399 cCE("fabss", eb00ac0, 2, (RVS, RVS), vfp_sp_monadic),
20400 cCE("fnegs", eb10a40, 2, (RVS, RVS), vfp_sp_monadic),
20401 cCE("fsqrts", eb10ac0, 2, (RVS, RVS), vfp_sp_monadic),
c19d1205
ZW
20402
20403 /* Dyadic operations. */
21d799b5
NC
20404 cCE("fadds", e300a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20405 cCE("fsubs", e300a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20406 cCE("fmuls", e200a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20407 cCE("fdivs", e800a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20408 cCE("fmacs", e000a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20409 cCE("fmscs", e100a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20410 cCE("fnmuls", e200a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20411 cCE("fnmacs", e000a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20412 cCE("fnmscs", e100a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
b99bd4ef 20413
c19d1205 20414 /* Comparisons. */
21d799b5
NC
20415 cCE("fcmps", eb40a40, 2, (RVS, RVS), vfp_sp_monadic),
20416 cCE("fcmpzs", eb50a40, 1, (RVS), vfp_sp_compare_z),
20417 cCE("fcmpes", eb40ac0, 2, (RVS, RVS), vfp_sp_monadic),
20418 cCE("fcmpezs", eb50ac0, 1, (RVS), vfp_sp_compare_z),
b99bd4ef 20419
62f3b8c8
PB
20420 /* Double precision load/store are still present on single precision
20421 implementations. */
20422 cCE("fldd", d100b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
20423 cCE("fstd", d000b00, 2, (RVD, ADDRGLDC), vfp_dp_ldst),
55881a11
MGD
20424 cCE("fldmiad", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20425 cCE("fldmfdd", c900b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20426 cCE("fldmdbd", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20427 cCE("fldmead", d300b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20428 cCE("fstmiad", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20429 cCE("fstmead", c800b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmia),
20430 cCE("fstmdbd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
20431 cCE("fstmfdd", d200b00, 2, (RRnpctw, VRDLST), vfp_dp_ldstmdb),
62f3b8c8 20432
c921be7d
NC
20433#undef ARM_VARIANT
20434#define ARM_VARIANT & fpu_vfp_ext_v1 /* VFP V1 (Double precision). */
20435
c19d1205 20436 /* Moves and type conversions. */
21d799b5
NC
20437 cCE("fcpyd", eb00b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20438 cCE("fcvtds", eb70ac0, 2, (RVD, RVS), vfp_dp_sp_cvt),
20439 cCE("fcvtsd", eb70bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
20440 cCE("fmdhr", e200b10, 2, (RVD, RR), vfp_dp_rn_rd),
20441 cCE("fmdlr", e000b10, 2, (RVD, RR), vfp_dp_rn_rd),
20442 cCE("fmrdh", e300b10, 2, (RR, RVD), vfp_dp_rd_rn),
20443 cCE("fmrdl", e100b10, 2, (RR, RVD), vfp_dp_rd_rn),
20444 cCE("fsitod", eb80bc0, 2, (RVD, RVS), vfp_dp_sp_cvt),
20445 cCE("fuitod", eb80b40, 2, (RVD, RVS), vfp_dp_sp_cvt),
20446 cCE("ftosid", ebd0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
20447 cCE("ftosizd", ebd0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
20448 cCE("ftouid", ebc0b40, 2, (RVS, RVD), vfp_sp_dp_cvt),
20449 cCE("ftouizd", ebc0bc0, 2, (RVS, RVD), vfp_sp_dp_cvt),
c19d1205 20450
c19d1205 20451 /* Monadic operations. */
21d799b5
NC
20452 cCE("fabsd", eb00bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
20453 cCE("fnegd", eb10b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20454 cCE("fsqrtd", eb10bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
c19d1205
ZW
20455
20456 /* Dyadic operations. */
21d799b5
NC
20457 cCE("faddd", e300b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20458 cCE("fsubd", e300b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20459 cCE("fmuld", e200b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20460 cCE("fdivd", e800b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20461 cCE("fmacd", e000b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20462 cCE("fmscd", e100b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20463 cCE("fnmuld", e200b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20464 cCE("fnmacd", e000b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20465 cCE("fnmscd", e100b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
b99bd4ef 20466
c19d1205 20467 /* Comparisons. */
21d799b5
NC
20468 cCE("fcmpd", eb40b40, 2, (RVD, RVD), vfp_dp_rd_rm),
20469 cCE("fcmpzd", eb50b40, 1, (RVD), vfp_dp_rd),
20470 cCE("fcmped", eb40bc0, 2, (RVD, RVD), vfp_dp_rd_rm),
20471 cCE("fcmpezd", eb50bc0, 1, (RVD), vfp_dp_rd),
c19d1205 20472
c921be7d
NC
20473#undef ARM_VARIANT
20474#define ARM_VARIANT & fpu_vfp_ext_v2
20475
21d799b5
NC
20476 cCE("fmsrr", c400a10, 3, (VRSLST, RR, RR), vfp_sp2_from_reg2),
20477 cCE("fmrrs", c500a10, 3, (RR, RR, VRSLST), vfp_reg2_from_sp2),
20478 cCE("fmdrr", c400b10, 3, (RVD, RR, RR), vfp_dp_rm_rd_rn),
20479 cCE("fmrrd", c500b10, 3, (RR, RR, RVD), vfp_dp_rd_rn_rm),
5287ad62 20480
037e8744
JB
20481/* Instructions which may belong to either the Neon or VFP instruction sets.
20482 Individual encoder functions perform additional architecture checks. */
c921be7d
NC
20483#undef ARM_VARIANT
20484#define ARM_VARIANT & fpu_vfp_ext_v1xd
20485#undef THUMB_VARIANT
20486#define THUMB_VARIANT & fpu_vfp_ext_v1xd
20487
037e8744
JB
20488 /* These mnemonics are unique to VFP. */
20489 NCE(vsqrt, 0, 2, (RVSD, RVSD), vfp_nsyn_sqrt),
20490 NCE(vdiv, 0, 3, (RVSD, RVSD, RVSD), vfp_nsyn_div),
21d799b5
NC
20491 nCE(vnmul, _vnmul, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20492 nCE(vnmla, _vnmla, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20493 nCE(vnmls, _vnmls, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
aacf0b33
KT
20494 nCE(vcmp, _vcmp, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
20495 nCE(vcmpe, _vcmpe, 2, (RVSD, RSVD_FI0), vfp_nsyn_cmp),
037e8744
JB
20496 NCE(vpush, 0, 1, (VRSDLST), vfp_nsyn_push),
20497 NCE(vpop, 0, 1, (VRSDLST), vfp_nsyn_pop),
20498 NCE(vcvtz, 0, 2, (RVSD, RVSD), vfp_nsyn_cvtz),
20499
20500 /* Mnemonics shared by Neon and VFP. */
21d799b5
NC
20501 nCEF(vmul, _vmul, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mul),
20502 nCEF(vmla, _vmla, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
20503 nCEF(vmls, _vmls, 3, (RNSDQ, oRNSDQ, RNSDQ_RNSC), neon_mac_maybe_scalar),
037e8744 20504
21d799b5
NC
20505 nCEF(vadd, _vadd, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
20506 nCEF(vsub, _vsub, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_addsub_if_i),
037e8744
JB
20507
20508 NCEF(vabs, 1b10300, 2, (RNSDQ, RNSDQ), neon_abs_neg),
20509 NCEF(vneg, 1b10380, 2, (RNSDQ, RNSDQ), neon_abs_neg),
20510
55881a11
MGD
20511 NCE(vldm, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20512 NCE(vldmia, c900b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20513 NCE(vldmdb, d100b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20514 NCE(vstm, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20515 NCE(vstmia, c800b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
20516 NCE(vstmdb, d000b00, 2, (RRnpctw, VRSDLST), neon_ldm_stm),
4962c51a
MS
20517 NCE(vldr, d100b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
20518 NCE(vstr, d000b00, 2, (RVSD, ADDRGLDC), neon_ldr_str),
037e8744 20519
5f1af56b 20520 nCEF(vcvt, _vcvt, 3, (RNSDQ, RNSDQ, oI32z), neon_cvt),
e3e535bc 20521 nCEF(vcvtr, _vcvt, 2, (RNSDQ, RNSDQ), neon_cvtr),
c70a8987
MGD
20522 NCEF(vcvtb, eb20a40, 2, (RVSD, RVSD), neon_cvtb),
20523 NCEF(vcvtt, eb20a40, 2, (RVSD, RVSD), neon_cvtt),
f31fef98 20524
037e8744
JB
20525
20526 /* NOTE: All VMOV encoding is special-cased! */
20527 NCE(vmov, 0, 1, (VMOV), neon_mov),
20528 NCE(vmovq, 0, 1, (VMOV), neon_mov),
20529
9db2f6b4
RL
20530#undef ARM_VARIANT
20531#define ARM_VARIANT & arm_ext_fp16
20532#undef THUMB_VARIANT
20533#define THUMB_VARIANT & arm_ext_fp16
20534 /* New instructions added from v8.2, allowing the extraction and insertion of
20535 the upper 16 bits of a 32-bit vector register. */
20536 NCE (vmovx, eb00a40, 2, (RVS, RVS), neon_movhf),
20537 NCE (vins, eb00ac0, 2, (RVS, RVS), neon_movhf),
20538
c921be7d
NC
20539#undef THUMB_VARIANT
20540#define THUMB_VARIANT & fpu_neon_ext_v1
20541#undef ARM_VARIANT
20542#define ARM_VARIANT & fpu_neon_ext_v1
20543
5287ad62
JB
20544 /* Data processing with three registers of the same length. */
20545 /* integer ops, valid types S8 S16 S32 U8 U16 U32. */
20546 NUF(vaba, 0000710, 3, (RNDQ, RNDQ, RNDQ), neon_dyadic_i_su),
20547 NUF(vabaq, 0000710, 3, (RNQ, RNQ, RNQ), neon_dyadic_i_su),
20548 NUF(vhadd, 0000000, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20549 NUF(vhaddq, 0000000, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20550 NUF(vrhadd, 0000100, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20551 NUF(vrhaddq, 0000100, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20552 NUF(vhsub, 0000200, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i_su),
20553 NUF(vhsubq, 0000200, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i_su),
20554 /* integer ops, valid types S8 S16 S32 S64 U8 U16 U32 U64. */
20555 NUF(vqadd, 0000010, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
20556 NUF(vqaddq, 0000010, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
20557 NUF(vqsub, 0000210, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_i64_su),
20558 NUF(vqsubq, 0000210, 3, (RNQ, oRNQ, RNQ), neon_dyadic_i64_su),
627907b7
JB
20559 NUF(vrshl, 0000500, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
20560 NUF(vrshlq, 0000500, 3, (RNQ, oRNQ, RNQ), neon_rshl),
20561 NUF(vqrshl, 0000510, 3, (RNDQ, oRNDQ, RNDQ), neon_rshl),
20562 NUF(vqrshlq, 0000510, 3, (RNQ, oRNQ, RNQ), neon_rshl),
5287ad62
JB
20563 /* If not immediate, fall back to neon_dyadic_i64_su.
20564 shl_imm should accept I8 I16 I32 I64,
20565 qshl_imm should accept S8 S16 S32 S64 U8 U16 U32 U64. */
21d799b5
NC
20566 nUF(vshl, _vshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_shl_imm),
20567 nUF(vshlq, _vshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_shl_imm),
20568 nUF(vqshl, _vqshl, 3, (RNDQ, oRNDQ, RNDQ_I63b), neon_qshl_imm),
20569 nUF(vqshlq, _vqshl, 3, (RNQ, oRNQ, RNDQ_I63b), neon_qshl_imm),
5287ad62 20570 /* Logic ops, types optional & ignored. */
4316f0d2
DG
20571 nUF(vand, _vand, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20572 nUF(vandq, _vand, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20573 nUF(vbic, _vbic, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20574 nUF(vbicq, _vbic, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20575 nUF(vorr, _vorr, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20576 nUF(vorrq, _vorr, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20577 nUF(vorn, _vorn, 3, (RNDQ, oRNDQ, RNDQ_Ibig), neon_logic),
20578 nUF(vornq, _vorn, 3, (RNQ, oRNQ, RNDQ_Ibig), neon_logic),
20579 nUF(veor, _veor, 3, (RNDQ, oRNDQ, RNDQ), neon_logic),
20580 nUF(veorq, _veor, 3, (RNQ, oRNQ, RNQ), neon_logic),
5287ad62
JB
20581 /* Bitfield ops, untyped. */
20582 NUF(vbsl, 1100110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20583 NUF(vbslq, 1100110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
20584 NUF(vbit, 1200110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20585 NUF(vbitq, 1200110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
20586 NUF(vbif, 1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
20587 NUF(vbifq, 1300110, 3, (RNQ, RNQ, RNQ), neon_bitfield),
cc933301 20588 /* Int and float variants, types S8 S16 S32 U8 U16 U32 F16 F32. */
21d799b5
NC
20589 nUF(vabd, _vabd, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20590 nUF(vabdq, _vabd, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
20591 nUF(vmax, _vmax, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20592 nUF(vmaxq, _vmax, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
20593 nUF(vmin, _vmin, 3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
20594 nUF(vminq, _vmin, 3, (RNQ, oRNQ, RNQ), neon_dyadic_if_su),
5287ad62
JB
20595 /* Comparisons. Types S8 S16 S32 U8 U16 U32 F32. Non-immediate versions fall
20596 back to neon_dyadic_if_su. */
21d799b5
NC
20597 nUF(vcge, _vcge, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
20598 nUF(vcgeq, _vcge, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
20599 nUF(vcgt, _vcgt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp),
20600 nUF(vcgtq, _vcgt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp),
20601 nUF(vclt, _vclt, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
20602 nUF(vcltq, _vclt, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
20603 nUF(vcle, _vcle, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_cmp_inv),
20604 nUF(vcleq, _vcle, 3, (RNQ, oRNQ, RNDQ_I0), neon_cmp_inv),
428e3f1f 20605 /* Comparison. Type I8 I16 I32 F32. */
21d799b5
NC
20606 nUF(vceq, _vceq, 3, (RNDQ, oRNDQ, RNDQ_I0), neon_ceq),
20607 nUF(vceqq, _vceq, 3, (RNQ, oRNQ, RNDQ_I0), neon_ceq),
5287ad62 20608 /* As above, D registers only. */
21d799b5
NC
20609 nUF(vpmax, _vpmax, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
20610 nUF(vpmin, _vpmin, 3, (RND, oRND, RND), neon_dyadic_if_su_d),
5287ad62 20611 /* Int and float variants, signedness unimportant. */
21d799b5
NC
20612 nUF(vmlaq, _vmla, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
20613 nUF(vmlsq, _vmls, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mac_maybe_scalar),
20614 nUF(vpadd, _vpadd, 3, (RND, oRND, RND), neon_dyadic_if_i_d),
5287ad62 20615 /* Add/sub take types I8 I16 I32 I64 F32. */
21d799b5
NC
20616 nUF(vaddq, _vadd, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
20617 nUF(vsubq, _vsub, 3, (RNQ, oRNQ, RNQ), neon_addsub_if_i),
5287ad62
JB
20618 /* vtst takes sizes 8, 16, 32. */
20619 NUF(vtst, 0000810, 3, (RNDQ, oRNDQ, RNDQ), neon_tst),
20620 NUF(vtstq, 0000810, 3, (RNQ, oRNQ, RNQ), neon_tst),
20621 /* VMUL takes I8 I16 I32 F32 P8. */
21d799b5 20622 nUF(vmulq, _vmul, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_mul),
5287ad62 20623 /* VQD{R}MULH takes S16 S32. */
21d799b5
NC
20624 nUF(vqdmulh, _vqdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
20625 nUF(vqdmulhq, _vqdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
20626 nUF(vqrdmulh, _vqrdmulh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qdmulh),
20627 nUF(vqrdmulhq, _vqrdmulh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qdmulh),
5287ad62
JB
20628 NUF(vacge, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
20629 NUF(vacgeq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
20630 NUF(vacgt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute),
20631 NUF(vacgtq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute),
92559b5b
PB
20632 NUF(vaclt, 0200e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
20633 NUF(vacltq, 0200e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
20634 NUF(vacle, 0000e10, 3, (RNDQ, oRNDQ, RNDQ), neon_fcmp_absolute_inv),
20635 NUF(vacleq, 0000e10, 3, (RNQ, oRNQ, RNQ), neon_fcmp_absolute_inv),
5287ad62
JB
20636 NUF(vrecps, 0000f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
20637 NUF(vrecpsq, 0000f10, 3, (RNQ, oRNQ, RNQ), neon_step),
20638 NUF(vrsqrts, 0200f10, 3, (RNDQ, oRNDQ, RNDQ), neon_step),
20639 NUF(vrsqrtsq, 0200f10, 3, (RNQ, oRNQ, RNQ), neon_step),
d6b4b13e 20640 /* ARM v8.1 extension. */
643afb90
MW
20641 nUF (vqrdmlah, _vqrdmlah, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
20642 nUF (vqrdmlahq, _vqrdmlah, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
20643 nUF (vqrdmlsh, _vqrdmlsh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
20644 nUF (vqrdmlshq, _vqrdmlsh, 3, (RNQ, oRNQ, RNDQ_RNSC), neon_qrdmlah),
5287ad62
JB
20645
20646 /* Two address, int/float. Types S8 S16 S32 F32. */
5287ad62 20647 NUF(vabsq, 1b10300, 2, (RNQ, RNQ), neon_abs_neg),
5287ad62
JB
20648 NUF(vnegq, 1b10380, 2, (RNQ, RNQ), neon_abs_neg),
20649
20650 /* Data processing with two registers and a shift amount. */
20651 /* Right shifts, and variants with rounding.
20652 Types accepted S8 S16 S32 S64 U8 U16 U32 U64. */
20653 NUF(vshr, 0800010, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
20654 NUF(vshrq, 0800010, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
20655 NUF(vrshr, 0800210, 3, (RNDQ, oRNDQ, I64z), neon_rshift_round_imm),
20656 NUF(vrshrq, 0800210, 3, (RNQ, oRNQ, I64z), neon_rshift_round_imm),
20657 NUF(vsra, 0800110, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
20658 NUF(vsraq, 0800110, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
20659 NUF(vrsra, 0800310, 3, (RNDQ, oRNDQ, I64), neon_rshift_round_imm),
20660 NUF(vrsraq, 0800310, 3, (RNQ, oRNQ, I64), neon_rshift_round_imm),
20661 /* Shift and insert. Sizes accepted 8 16 32 64. */
20662 NUF(vsli, 1800510, 3, (RNDQ, oRNDQ, I63), neon_sli),
20663 NUF(vsliq, 1800510, 3, (RNQ, oRNQ, I63), neon_sli),
20664 NUF(vsri, 1800410, 3, (RNDQ, oRNDQ, I64), neon_sri),
20665 NUF(vsriq, 1800410, 3, (RNQ, oRNQ, I64), neon_sri),
20666 /* QSHL{U} immediate accepts S8 S16 S32 S64 U8 U16 U32 U64. */
20667 NUF(vqshlu, 1800610, 3, (RNDQ, oRNDQ, I63), neon_qshlu_imm),
20668 NUF(vqshluq, 1800610, 3, (RNQ, oRNQ, I63), neon_qshlu_imm),
20669 /* Right shift immediate, saturating & narrowing, with rounding variants.
20670 Types accepted S16 S32 S64 U16 U32 U64. */
20671 NUF(vqshrn, 0800910, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
20672 NUF(vqrshrn, 0800950, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow),
20673 /* As above, unsigned. Types accepted S16 S32 S64. */
20674 NUF(vqshrun, 0800810, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
20675 NUF(vqrshrun, 0800850, 3, (RND, RNQ, I32z), neon_rshift_sat_narrow_u),
20676 /* Right shift narrowing. Types accepted I16 I32 I64. */
20677 NUF(vshrn, 0800810, 3, (RND, RNQ, I32z), neon_rshift_narrow),
20678 NUF(vrshrn, 0800850, 3, (RND, RNQ, I32z), neon_rshift_narrow),
20679 /* Special case. Types S8 S16 S32 U8 U16 U32. Handles max shift variant. */
21d799b5 20680 nUF(vshll, _vshll, 3, (RNQ, RND, I32), neon_shll),
5287ad62 20681 /* CVT with optional immediate for fixed-point variant. */
21d799b5 20682 nUF(vcvtq, _vcvt, 3, (RNQ, RNQ, oI32b), neon_cvt),
b7fc2769 20683
4316f0d2
DG
20684 nUF(vmvn, _vmvn, 2, (RNDQ, RNDQ_Ibig), neon_mvn),
20685 nUF(vmvnq, _vmvn, 2, (RNQ, RNDQ_Ibig), neon_mvn),
5287ad62
JB
20686
20687 /* Data processing, three registers of different lengths. */
20688 /* Dyadic, long insns. Types S8 S16 S32 U8 U16 U32. */
20689 NUF(vabal, 0800500, 3, (RNQ, RND, RND), neon_abal),
20690 NUF(vabdl, 0800700, 3, (RNQ, RND, RND), neon_dyadic_long),
20691 NUF(vaddl, 0800000, 3, (RNQ, RND, RND), neon_dyadic_long),
20692 NUF(vsubl, 0800200, 3, (RNQ, RND, RND), neon_dyadic_long),
20693 /* If not scalar, fall back to neon_dyadic_long.
20694 Vector types as above, scalar types S16 S32 U16 U32. */
21d799b5
NC
20695 nUF(vmlal, _vmlal, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
20696 nUF(vmlsl, _vmlsl, 3, (RNQ, RND, RND_RNSC), neon_mac_maybe_scalar_long),
5287ad62
JB
20697 /* Dyadic, widening insns. Types S8 S16 S32 U8 U16 U32. */
20698 NUF(vaddw, 0800100, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
20699 NUF(vsubw, 0800300, 3, (RNQ, oRNQ, RND), neon_dyadic_wide),
20700 /* Dyadic, narrowing insns. Types I16 I32 I64. */
20701 NUF(vaddhn, 0800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20702 NUF(vraddhn, 1800400, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20703 NUF(vsubhn, 0800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20704 NUF(vrsubhn, 1800600, 3, (RND, RNQ, RNQ), neon_dyadic_narrow),
20705 /* Saturating doubling multiplies. Types S16 S32. */
21d799b5
NC
20706 nUF(vqdmlal, _vqdmlal, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
20707 nUF(vqdmlsl, _vqdmlsl, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
20708 nUF(vqdmull, _vqdmull, 3, (RNQ, RND, RND_RNSC), neon_mul_sat_scalar_long),
5287ad62
JB
20709 /* VMULL. Vector types S8 S16 S32 U8 U16 U32 P8, scalar types
20710 S16 S32 U16 U32. */
21d799b5 20711 nUF(vmull, _vmull, 3, (RNQ, RND, RND_RNSC), neon_vmull),
5287ad62
JB
20712
20713 /* Extract. Size 8. */
3b8d421e
PB
20714 NUF(vext, 0b00000, 4, (RNDQ, oRNDQ, RNDQ, I15), neon_ext),
20715 NUF(vextq, 0b00000, 4, (RNQ, oRNQ, RNQ, I15), neon_ext),
5287ad62
JB
20716
20717 /* Two registers, miscellaneous. */
20718 /* Reverse. Sizes 8 16 32 (must be < size in opcode). */
20719 NUF(vrev64, 1b00000, 2, (RNDQ, RNDQ), neon_rev),
20720 NUF(vrev64q, 1b00000, 2, (RNQ, RNQ), neon_rev),
20721 NUF(vrev32, 1b00080, 2, (RNDQ, RNDQ), neon_rev),
20722 NUF(vrev32q, 1b00080, 2, (RNQ, RNQ), neon_rev),
20723 NUF(vrev16, 1b00100, 2, (RNDQ, RNDQ), neon_rev),
20724 NUF(vrev16q, 1b00100, 2, (RNQ, RNQ), neon_rev),
20725 /* Vector replicate. Sizes 8 16 32. */
21d799b5
NC
20726 nCE(vdup, _vdup, 2, (RNDQ, RR_RNSC), neon_dup),
20727 nCE(vdupq, _vdup, 2, (RNQ, RR_RNSC), neon_dup),
5287ad62
JB
20728 /* VMOVL. Types S8 S16 S32 U8 U16 U32. */
20729 NUF(vmovl, 0800a10, 2, (RNQ, RND), neon_movl),
20730 /* VMOVN. Types I16 I32 I64. */
21d799b5 20731 nUF(vmovn, _vmovn, 2, (RND, RNQ), neon_movn),
5287ad62 20732 /* VQMOVN. Types S16 S32 S64 U16 U32 U64. */
21d799b5 20733 nUF(vqmovn, _vqmovn, 2, (RND, RNQ), neon_qmovn),
5287ad62 20734 /* VQMOVUN. Types S16 S32 S64. */
21d799b5 20735 nUF(vqmovun, _vqmovun, 2, (RND, RNQ), neon_qmovun),
5287ad62
JB
20736 /* VZIP / VUZP. Sizes 8 16 32. */
20737 NUF(vzip, 1b20180, 2, (RNDQ, RNDQ), neon_zip_uzp),
20738 NUF(vzipq, 1b20180, 2, (RNQ, RNQ), neon_zip_uzp),
20739 NUF(vuzp, 1b20100, 2, (RNDQ, RNDQ), neon_zip_uzp),
20740 NUF(vuzpq, 1b20100, 2, (RNQ, RNQ), neon_zip_uzp),
20741 /* VQABS / VQNEG. Types S8 S16 S32. */
20742 NUF(vqabs, 1b00700, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
20743 NUF(vqabsq, 1b00700, 2, (RNQ, RNQ), neon_sat_abs_neg),
20744 NUF(vqneg, 1b00780, 2, (RNDQ, RNDQ), neon_sat_abs_neg),
20745 NUF(vqnegq, 1b00780, 2, (RNQ, RNQ), neon_sat_abs_neg),
20746 /* Pairwise, lengthening. Types S8 S16 S32 U8 U16 U32. */
20747 NUF(vpadal, 1b00600, 2, (RNDQ, RNDQ), neon_pair_long),
20748 NUF(vpadalq, 1b00600, 2, (RNQ, RNQ), neon_pair_long),
20749 NUF(vpaddl, 1b00200, 2, (RNDQ, RNDQ), neon_pair_long),
20750 NUF(vpaddlq, 1b00200, 2, (RNQ, RNQ), neon_pair_long),
cc933301 20751 /* Reciprocal estimates. Types U32 F16 F32. */
5287ad62
JB
20752 NUF(vrecpe, 1b30400, 2, (RNDQ, RNDQ), neon_recip_est),
20753 NUF(vrecpeq, 1b30400, 2, (RNQ, RNQ), neon_recip_est),
20754 NUF(vrsqrte, 1b30480, 2, (RNDQ, RNDQ), neon_recip_est),
20755 NUF(vrsqrteq, 1b30480, 2, (RNQ, RNQ), neon_recip_est),
20756 /* VCLS. Types S8 S16 S32. */
20757 NUF(vcls, 1b00400, 2, (RNDQ, RNDQ), neon_cls),
20758 NUF(vclsq, 1b00400, 2, (RNQ, RNQ), neon_cls),
20759 /* VCLZ. Types I8 I16 I32. */
20760 NUF(vclz, 1b00480, 2, (RNDQ, RNDQ), neon_clz),
20761 NUF(vclzq, 1b00480, 2, (RNQ, RNQ), neon_clz),
20762 /* VCNT. Size 8. */
20763 NUF(vcnt, 1b00500, 2, (RNDQ, RNDQ), neon_cnt),
20764 NUF(vcntq, 1b00500, 2, (RNQ, RNQ), neon_cnt),
20765 /* Two address, untyped. */
20766 NUF(vswp, 1b20000, 2, (RNDQ, RNDQ), neon_swp),
20767 NUF(vswpq, 1b20000, 2, (RNQ, RNQ), neon_swp),
20768 /* VTRN. Sizes 8 16 32. */
21d799b5
NC
20769 nUF(vtrn, _vtrn, 2, (RNDQ, RNDQ), neon_trn),
20770 nUF(vtrnq, _vtrn, 2, (RNQ, RNQ), neon_trn),
5287ad62
JB
20771
20772 /* Table lookup. Size 8. */
20773 NUF(vtbl, 1b00800, 3, (RND, NRDLST, RND), neon_tbl_tbx),
20774 NUF(vtbx, 1b00840, 3, (RND, NRDLST, RND), neon_tbl_tbx),
20775
c921be7d
NC
20776#undef THUMB_VARIANT
20777#define THUMB_VARIANT & fpu_vfp_v3_or_neon_ext
20778#undef ARM_VARIANT
20779#define ARM_VARIANT & fpu_vfp_v3_or_neon_ext
20780
5287ad62 20781 /* Neon element/structure load/store. */
21d799b5
NC
20782 nUF(vld1, _vld1, 2, (NSTRLST, ADDR), neon_ldx_stx),
20783 nUF(vst1, _vst1, 2, (NSTRLST, ADDR), neon_ldx_stx),
20784 nUF(vld2, _vld2, 2, (NSTRLST, ADDR), neon_ldx_stx),
20785 nUF(vst2, _vst2, 2, (NSTRLST, ADDR), neon_ldx_stx),
20786 nUF(vld3, _vld3, 2, (NSTRLST, ADDR), neon_ldx_stx),
20787 nUF(vst3, _vst3, 2, (NSTRLST, ADDR), neon_ldx_stx),
20788 nUF(vld4, _vld4, 2, (NSTRLST, ADDR), neon_ldx_stx),
20789 nUF(vst4, _vst4, 2, (NSTRLST, ADDR), neon_ldx_stx),
5287ad62 20790
c921be7d 20791#undef THUMB_VARIANT
74db7efb
NC
20792#define THUMB_VARIANT & fpu_vfp_ext_v3xd
20793#undef ARM_VARIANT
20794#define ARM_VARIANT & fpu_vfp_ext_v3xd
62f3b8c8
PB
20795 cCE("fconsts", eb00a00, 2, (RVS, I255), vfp_sp_const),
20796 cCE("fshtos", eba0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20797 cCE("fsltos", eba0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20798 cCE("fuhtos", ebb0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20799 cCE("fultos", ebb0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20800 cCE("ftoshs", ebe0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20801 cCE("ftosls", ebe0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20802 cCE("ftouhs", ebf0a40, 2, (RVS, I16z), vfp_sp_conv_16),
20803 cCE("ftouls", ebf0ac0, 2, (RVS, I32), vfp_sp_conv_32),
20804
74db7efb 20805#undef THUMB_VARIANT
c921be7d
NC
20806#define THUMB_VARIANT & fpu_vfp_ext_v3
20807#undef ARM_VARIANT
20808#define ARM_VARIANT & fpu_vfp_ext_v3
20809
21d799b5 20810 cCE("fconstd", eb00b00, 2, (RVD, I255), vfp_dp_const),
21d799b5 20811 cCE("fshtod", eba0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20812 cCE("fsltod", eba0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20813 cCE("fuhtod", ebb0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20814 cCE("fultod", ebb0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20815 cCE("ftoshd", ebe0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20816 cCE("ftosld", ebe0bc0, 2, (RVD, I32), vfp_dp_conv_32),
21d799b5 20817 cCE("ftouhd", ebf0b40, 2, (RVD, I16z), vfp_dp_conv_16),
21d799b5 20818 cCE("ftould", ebf0bc0, 2, (RVD, I32), vfp_dp_conv_32),
c19d1205 20819
74db7efb
NC
20820#undef ARM_VARIANT
20821#define ARM_VARIANT & fpu_vfp_ext_fma
20822#undef THUMB_VARIANT
20823#define THUMB_VARIANT & fpu_vfp_ext_fma
62f3b8c8
PB
20824 /* Mnemonics shared by Neon and VFP. These are included in the
20825 VFP FMA variant; NEON and VFP FMA always includes the NEON
20826 FMA instructions. */
20827 nCEF(vfma, _vfma, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
20828 nCEF(vfms, _vfms, 3, (RNSDQ, oRNSDQ, RNSDQ), neon_fmac),
20829 /* ffmas/ffmad/ffmss/ffmsd are dummy mnemonics to satisfy gas;
20830 the v form should always be used. */
20831 cCE("ffmas", ea00a00, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20832 cCE("ffnmas", ea00a40, 3, (RVS, RVS, RVS), vfp_sp_dyadic),
20833 cCE("ffmad", ea00b00, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20834 cCE("ffnmad", ea00b40, 3, (RVD, RVD, RVD), vfp_dp_rd_rn_rm),
20835 nCE(vfnma, _vfnma, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20836 nCE(vfnms, _vfnms, 3, (RVSD, RVSD, RVSD), vfp_nsyn_nmul),
20837
5287ad62 20838#undef THUMB_VARIANT
c921be7d
NC
20839#undef ARM_VARIANT
20840#define ARM_VARIANT & arm_cext_xscale /* Intel XScale extensions. */
20841
21d799b5
NC
20842 cCE("mia", e200010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20843 cCE("miaph", e280010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20844 cCE("miabb", e2c0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20845 cCE("miabt", e2d0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20846 cCE("miatb", e2e0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20847 cCE("miatt", e2f0010, 3, (RXA, RRnpc, RRnpc), xsc_mia),
20848 cCE("mar", c400000, 3, (RXA, RRnpc, RRnpc), xsc_mar),
20849 cCE("mra", c500000, 3, (RRnpc, RRnpc, RXA), xsc_mra),
c19d1205 20850
c921be7d
NC
20851#undef ARM_VARIANT
20852#define ARM_VARIANT & arm_cext_iwmmxt /* Intel Wireless MMX technology. */
20853
21d799b5
NC
20854 cCE("tandcb", e13f130, 1, (RR), iwmmxt_tandorc),
20855 cCE("tandch", e53f130, 1, (RR), iwmmxt_tandorc),
20856 cCE("tandcw", e93f130, 1, (RR), iwmmxt_tandorc),
20857 cCE("tbcstb", e400010, 2, (RIWR, RR), rn_rd),
20858 cCE("tbcsth", e400050, 2, (RIWR, RR), rn_rd),
20859 cCE("tbcstw", e400090, 2, (RIWR, RR), rn_rd),
20860 cCE("textrcb", e130170, 2, (RR, I7), iwmmxt_textrc),
20861 cCE("textrch", e530170, 2, (RR, I7), iwmmxt_textrc),
20862 cCE("textrcw", e930170, 2, (RR, I7), iwmmxt_textrc),
74db7efb
NC
20863 cCE("textrmub",e100070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20864 cCE("textrmuh",e500070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20865 cCE("textrmuw",e900070, 3, (RR, RIWR, I7), iwmmxt_textrm),
20866 cCE("textrmsb",e100078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20867 cCE("textrmsh",e500078, 3, (RR, RIWR, I7), iwmmxt_textrm),
20868 cCE("textrmsw",e900078, 3, (RR, RIWR, I7), iwmmxt_textrm),
21d799b5
NC
20869 cCE("tinsrb", e600010, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20870 cCE("tinsrh", e600050, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20871 cCE("tinsrw", e600090, 3, (RIWR, RR, I7), iwmmxt_tinsr),
20872 cCE("tmcr", e000110, 2, (RIWC_RIWG, RR), rn_rd),
20873 cCE("tmcrr", c400000, 3, (RIWR, RR, RR), rm_rd_rn),
20874 cCE("tmia", e200010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20875 cCE("tmiaph", e280010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20876 cCE("tmiabb", e2c0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20877 cCE("tmiabt", e2d0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20878 cCE("tmiatb", e2e0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
20879 cCE("tmiatt", e2f0010, 3, (RIWR, RR, RR), iwmmxt_tmia),
74db7efb
NC
20880 cCE("tmovmskb",e100030, 2, (RR, RIWR), rd_rn),
20881 cCE("tmovmskh",e500030, 2, (RR, RIWR), rd_rn),
20882 cCE("tmovmskw",e900030, 2, (RR, RIWR), rd_rn),
21d799b5
NC
20883 cCE("tmrc", e100110, 2, (RR, RIWC_RIWG), rd_rn),
20884 cCE("tmrrc", c500000, 3, (RR, RR, RIWR), rd_rn_rm),
20885 cCE("torcb", e13f150, 1, (RR), iwmmxt_tandorc),
20886 cCE("torch", e53f150, 1, (RR), iwmmxt_tandorc),
20887 cCE("torcw", e93f150, 1, (RR), iwmmxt_tandorc),
20888 cCE("waccb", e0001c0, 2, (RIWR, RIWR), rd_rn),
20889 cCE("wacch", e4001c0, 2, (RIWR, RIWR), rd_rn),
20890 cCE("waccw", e8001c0, 2, (RIWR, RIWR), rd_rn),
20891 cCE("waddbss", e300180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20892 cCE("waddb", e000180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20893 cCE("waddbus", e100180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20894 cCE("waddhss", e700180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20895 cCE("waddh", e400180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20896 cCE("waddhus", e500180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20897 cCE("waddwss", eb00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20898 cCE("waddw", e800180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20899 cCE("waddwus", e900180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20900 cCE("waligni", e000020, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_waligni),
74db7efb
NC
20901 cCE("walignr0",e800020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20902 cCE("walignr1",e900020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20903 cCE("walignr2",ea00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20904 cCE("walignr3",eb00020, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20905 cCE("wand", e200000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20906 cCE("wandn", e300000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20907 cCE("wavg2b", e800000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20908 cCE("wavg2br", e900000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20909 cCE("wavg2h", ec00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20910 cCE("wavg2hr", ed00000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20911 cCE("wcmpeqb", e000060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20912 cCE("wcmpeqh", e400060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20913 cCE("wcmpeqw", e800060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20914 cCE("wcmpgtub",e100060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20915 cCE("wcmpgtuh",e500060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20916 cCE("wcmpgtuw",e900060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20917 cCE("wcmpgtsb",e300060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20918 cCE("wcmpgtsh",e700060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20919 cCE("wcmpgtsw",eb00060, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20920 cCE("wldrb", c100000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20921 cCE("wldrh", c500000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20922 cCE("wldrw", c100100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20923 cCE("wldrd", c500100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20924 cCE("wmacs", e600100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20925 cCE("wmacsz", e700100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20926 cCE("wmacu", e400100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20927 cCE("wmacuz", e500100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20928 cCE("wmadds", ea00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20929 cCE("wmaddu", e800100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20930 cCE("wmaxsb", e200160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20931 cCE("wmaxsh", e600160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20932 cCE("wmaxsw", ea00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20933 cCE("wmaxub", e000160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20934 cCE("wmaxuh", e400160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20935 cCE("wmaxuw", e800160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20936 cCE("wminsb", e300160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20937 cCE("wminsh", e700160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20938 cCE("wminsw", eb00160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20939 cCE("wminub", e100160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20940 cCE("wminuh", e500160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20941 cCE("wminuw", e900160, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20942 cCE("wmov", e000000, 2, (RIWR, RIWR), iwmmxt_wmov),
20943 cCE("wmulsm", e300100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20944 cCE("wmulsl", e200100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20945 cCE("wmulum", e100100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20946 cCE("wmulul", e000100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20947 cCE("wor", e000000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
74db7efb
NC
20948 cCE("wpackhss",e700080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20949 cCE("wpackhus",e500080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20950 cCE("wpackwss",eb00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20951 cCE("wpackwus",e900080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20952 cCE("wpackdss",ef00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20953 cCE("wpackdus",ed00080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21d799b5
NC
20954 cCE("wrorh", e700040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20955 cCE("wrorhg", e700148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20956 cCE("wrorw", eb00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20957 cCE("wrorwg", eb00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20958 cCE("wrord", ef00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20959 cCE("wrordg", ef00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20960 cCE("wsadb", e000120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20961 cCE("wsadbz", e100120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20962 cCE("wsadh", e400120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20963 cCE("wsadhz", e500120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20964 cCE("wshufh", e0001e0, 3, (RIWR, RIWR, I255), iwmmxt_wshufh),
20965 cCE("wsllh", e500040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20966 cCE("wsllhg", e500148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20967 cCE("wsllw", e900040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20968 cCE("wsllwg", e900148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20969 cCE("wslld", ed00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20970 cCE("wslldg", ed00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20971 cCE("wsrah", e400040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20972 cCE("wsrahg", e400148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20973 cCE("wsraw", e800040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20974 cCE("wsrawg", e800148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20975 cCE("wsrad", ec00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20976 cCE("wsradg", ec00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20977 cCE("wsrlh", e600040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20978 cCE("wsrlhg", e600148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20979 cCE("wsrlw", ea00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20980 cCE("wsrlwg", ea00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20981 cCE("wsrld", ee00040, 3, (RIWR, RIWR, RIWR_I32z),iwmmxt_wrwrwr_or_imm5),
20982 cCE("wsrldg", ee00148, 3, (RIWR, RIWR, RIWG), rd_rn_rm),
20983 cCE("wstrb", c000000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20984 cCE("wstrh", c400000, 2, (RIWR, ADDR), iwmmxt_wldstbh),
20985 cCE("wstrw", c000100, 2, (RIWR_RIWC, ADDR), iwmmxt_wldstw),
20986 cCE("wstrd", c400100, 2, (RIWR, ADDR), iwmmxt_wldstd),
20987 cCE("wsubbss", e3001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20988 cCE("wsubb", e0001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20989 cCE("wsubbus", e1001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20990 cCE("wsubhss", e7001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20991 cCE("wsubh", e4001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20992 cCE("wsubhus", e5001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20993 cCE("wsubwss", eb001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20994 cCE("wsubw", e8001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20995 cCE("wsubwus", e9001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
20996 cCE("wunpckehub",e0000c0, 2, (RIWR, RIWR), rd_rn),
20997 cCE("wunpckehuh",e4000c0, 2, (RIWR, RIWR), rd_rn),
20998 cCE("wunpckehuw",e8000c0, 2, (RIWR, RIWR), rd_rn),
20999 cCE("wunpckehsb",e2000c0, 2, (RIWR, RIWR), rd_rn),
21000 cCE("wunpckehsh",e6000c0, 2, (RIWR, RIWR), rd_rn),
21001 cCE("wunpckehsw",ea000c0, 2, (RIWR, RIWR), rd_rn),
21002 cCE("wunpckihb", e1000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21003 cCE("wunpckihh", e5000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21004 cCE("wunpckihw", e9000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21005 cCE("wunpckelub",e0000e0, 2, (RIWR, RIWR), rd_rn),
21006 cCE("wunpckeluh",e4000e0, 2, (RIWR, RIWR), rd_rn),
21007 cCE("wunpckeluw",e8000e0, 2, (RIWR, RIWR), rd_rn),
21008 cCE("wunpckelsb",e2000e0, 2, (RIWR, RIWR), rd_rn),
21009 cCE("wunpckelsh",e6000e0, 2, (RIWR, RIWR), rd_rn),
21010 cCE("wunpckelsw",ea000e0, 2, (RIWR, RIWR), rd_rn),
21011 cCE("wunpckilb", e1000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21012 cCE("wunpckilh", e5000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21013 cCE("wunpckilw", e9000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21014 cCE("wxor", e100000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21015 cCE("wzero", e300000, 1, (RIWR), iwmmxt_wzero),
c19d1205 21016
c921be7d
NC
21017#undef ARM_VARIANT
21018#define ARM_VARIANT & arm_cext_iwmmxt2 /* Intel Wireless MMX technology, version 2. */
21019
21d799b5
NC
21020 cCE("torvscb", e12f190, 1, (RR), iwmmxt_tandorc),
21021 cCE("torvsch", e52f190, 1, (RR), iwmmxt_tandorc),
21022 cCE("torvscw", e92f190, 1, (RR), iwmmxt_tandorc),
21023 cCE("wabsb", e2001c0, 2, (RIWR, RIWR), rd_rn),
21024 cCE("wabsh", e6001c0, 2, (RIWR, RIWR), rd_rn),
21025 cCE("wabsw", ea001c0, 2, (RIWR, RIWR), rd_rn),
21026 cCE("wabsdiffb", e1001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21027 cCE("wabsdiffh", e5001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21028 cCE("wabsdiffw", e9001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21029 cCE("waddbhusl", e2001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21030 cCE("waddbhusm", e6001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21031 cCE("waddhc", e600180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21032 cCE("waddwc", ea00180, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21033 cCE("waddsubhx", ea001a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21034 cCE("wavg4", e400000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21035 cCE("wavg4r", e500000, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21036 cCE("wmaddsn", ee00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21037 cCE("wmaddsx", eb00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21038 cCE("wmaddun", ec00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21039 cCE("wmaddux", e900100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21040 cCE("wmerge", e000080, 4, (RIWR, RIWR, RIWR, I7), iwmmxt_wmerge),
21041 cCE("wmiabb", e0000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21042 cCE("wmiabt", e1000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21043 cCE("wmiatb", e2000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21044 cCE("wmiatt", e3000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21045 cCE("wmiabbn", e4000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21046 cCE("wmiabtn", e5000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21047 cCE("wmiatbn", e6000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21048 cCE("wmiattn", e7000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21049 cCE("wmiawbb", e800120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21050 cCE("wmiawbt", e900120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21051 cCE("wmiawtb", ea00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21052 cCE("wmiawtt", eb00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21053 cCE("wmiawbbn", ec00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21054 cCE("wmiawbtn", ed00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21055 cCE("wmiawtbn", ee00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21056 cCE("wmiawttn", ef00120, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21057 cCE("wmulsmr", ef00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21058 cCE("wmulumr", ed00100, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21059 cCE("wmulwumr", ec000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21060 cCE("wmulwsmr", ee000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21061 cCE("wmulwum", ed000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21062 cCE("wmulwsm", ef000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21063 cCE("wmulwl", eb000c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21064 cCE("wqmiabb", e8000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21065 cCE("wqmiabt", e9000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21066 cCE("wqmiatb", ea000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21067 cCE("wqmiatt", eb000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21068 cCE("wqmiabbn", ec000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21069 cCE("wqmiabtn", ed000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21070 cCE("wqmiatbn", ee000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21071 cCE("wqmiattn", ef000a0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21072 cCE("wqmulm", e100080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21073 cCE("wqmulmr", e300080, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21074 cCE("wqmulwm", ec000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21075 cCE("wqmulwmr", ee000e0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
21076 cCE("wsubaddhx", ed001c0, 3, (RIWR, RIWR, RIWR), rd_rn_rm),
2d447fca 21077
c921be7d
NC
21078#undef ARM_VARIANT
21079#define ARM_VARIANT & arm_cext_maverick /* Cirrus Maverick instructions. */
21080
21d799b5
NC
21081 cCE("cfldrs", c100400, 2, (RMF, ADDRGLDC), rd_cpaddr),
21082 cCE("cfldrd", c500400, 2, (RMD, ADDRGLDC), rd_cpaddr),
21083 cCE("cfldr32", c100500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
21084 cCE("cfldr64", c500500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
21085 cCE("cfstrs", c000400, 2, (RMF, ADDRGLDC), rd_cpaddr),
21086 cCE("cfstrd", c400400, 2, (RMD, ADDRGLDC), rd_cpaddr),
21087 cCE("cfstr32", c000500, 2, (RMFX, ADDRGLDC), rd_cpaddr),
21088 cCE("cfstr64", c400500, 2, (RMDX, ADDRGLDC), rd_cpaddr),
21089 cCE("cfmvsr", e000450, 2, (RMF, RR), rn_rd),
21090 cCE("cfmvrs", e100450, 2, (RR, RMF), rd_rn),
21091 cCE("cfmvdlr", e000410, 2, (RMD, RR), rn_rd),
21092 cCE("cfmvrdl", e100410, 2, (RR, RMD), rd_rn),
21093 cCE("cfmvdhr", e000430, 2, (RMD, RR), rn_rd),
21094 cCE("cfmvrdh", e100430, 2, (RR, RMD), rd_rn),
74db7efb
NC
21095 cCE("cfmv64lr",e000510, 2, (RMDX, RR), rn_rd),
21096 cCE("cfmvr64l",e100510, 2, (RR, RMDX), rd_rn),
21097 cCE("cfmv64hr",e000530, 2, (RMDX, RR), rn_rd),
21098 cCE("cfmvr64h",e100530, 2, (RR, RMDX), rd_rn),
21099 cCE("cfmval32",e200440, 2, (RMAX, RMFX), rd_rn),
21100 cCE("cfmv32al",e100440, 2, (RMFX, RMAX), rd_rn),
21101 cCE("cfmvam32",e200460, 2, (RMAX, RMFX), rd_rn),
21102 cCE("cfmv32am",e100460, 2, (RMFX, RMAX), rd_rn),
21103 cCE("cfmvah32",e200480, 2, (RMAX, RMFX), rd_rn),
21104 cCE("cfmv32ah",e100480, 2, (RMFX, RMAX), rd_rn),
21d799b5
NC
21105 cCE("cfmva32", e2004a0, 2, (RMAX, RMFX), rd_rn),
21106 cCE("cfmv32a", e1004a0, 2, (RMFX, RMAX), rd_rn),
21107 cCE("cfmva64", e2004c0, 2, (RMAX, RMDX), rd_rn),
21108 cCE("cfmv64a", e1004c0, 2, (RMDX, RMAX), rd_rn),
74db7efb
NC
21109 cCE("cfmvsc32",e2004e0, 2, (RMDS, RMDX), mav_dspsc),
21110 cCE("cfmv32sc",e1004e0, 2, (RMDX, RMDS), rd),
21d799b5
NC
21111 cCE("cfcpys", e000400, 2, (RMF, RMF), rd_rn),
21112 cCE("cfcpyd", e000420, 2, (RMD, RMD), rd_rn),
21113 cCE("cfcvtsd", e000460, 2, (RMD, RMF), rd_rn),
21114 cCE("cfcvtds", e000440, 2, (RMF, RMD), rd_rn),
74db7efb
NC
21115 cCE("cfcvt32s",e000480, 2, (RMF, RMFX), rd_rn),
21116 cCE("cfcvt32d",e0004a0, 2, (RMD, RMFX), rd_rn),
21117 cCE("cfcvt64s",e0004c0, 2, (RMF, RMDX), rd_rn),
21118 cCE("cfcvt64d",e0004e0, 2, (RMD, RMDX), rd_rn),
21119 cCE("cfcvts32",e100580, 2, (RMFX, RMF), rd_rn),
21120 cCE("cfcvtd32",e1005a0, 2, (RMFX, RMD), rd_rn),
21d799b5
NC
21121 cCE("cftruncs32",e1005c0, 2, (RMFX, RMF), rd_rn),
21122 cCE("cftruncd32",e1005e0, 2, (RMFX, RMD), rd_rn),
74db7efb
NC
21123 cCE("cfrshl32",e000550, 3, (RMFX, RMFX, RR), mav_triple),
21124 cCE("cfrshl64",e000570, 3, (RMDX, RMDX, RR), mav_triple),
21d799b5
NC
21125 cCE("cfsh32", e000500, 3, (RMFX, RMFX, I63s), mav_shift),
21126 cCE("cfsh64", e200500, 3, (RMDX, RMDX, I63s), mav_shift),
21127 cCE("cfcmps", e100490, 3, (RR, RMF, RMF), rd_rn_rm),
21128 cCE("cfcmpd", e1004b0, 3, (RR, RMD, RMD), rd_rn_rm),
21129 cCE("cfcmp32", e100590, 3, (RR, RMFX, RMFX), rd_rn_rm),
21130 cCE("cfcmp64", e1005b0, 3, (RR, RMDX, RMDX), rd_rn_rm),
21131 cCE("cfabss", e300400, 2, (RMF, RMF), rd_rn),
21132 cCE("cfabsd", e300420, 2, (RMD, RMD), rd_rn),
21133 cCE("cfnegs", e300440, 2, (RMF, RMF), rd_rn),
21134 cCE("cfnegd", e300460, 2, (RMD, RMD), rd_rn),
21135 cCE("cfadds", e300480, 3, (RMF, RMF, RMF), rd_rn_rm),
21136 cCE("cfaddd", e3004a0, 3, (RMD, RMD, RMD), rd_rn_rm),
21137 cCE("cfsubs", e3004c0, 3, (RMF, RMF, RMF), rd_rn_rm),
21138 cCE("cfsubd", e3004e0, 3, (RMD, RMD, RMD), rd_rn_rm),
21139 cCE("cfmuls", e100400, 3, (RMF, RMF, RMF), rd_rn_rm),
21140 cCE("cfmuld", e100420, 3, (RMD, RMD, RMD), rd_rn_rm),
21141 cCE("cfabs32", e300500, 2, (RMFX, RMFX), rd_rn),
21142 cCE("cfabs64", e300520, 2, (RMDX, RMDX), rd_rn),
21143 cCE("cfneg32", e300540, 2, (RMFX, RMFX), rd_rn),
21144 cCE("cfneg64", e300560, 2, (RMDX, RMDX), rd_rn),
21145 cCE("cfadd32", e300580, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
21146 cCE("cfadd64", e3005a0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
21147 cCE("cfsub32", e3005c0, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
21148 cCE("cfsub64", e3005e0, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
21149 cCE("cfmul32", e100500, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
21150 cCE("cfmul64", e100520, 3, (RMDX, RMDX, RMDX), rd_rn_rm),
21151 cCE("cfmac32", e100540, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
21152 cCE("cfmsc32", e100560, 3, (RMFX, RMFX, RMFX), rd_rn_rm),
74db7efb
NC
21153 cCE("cfmadd32",e000600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
21154 cCE("cfmsub32",e100600, 4, (RMAX, RMFX, RMFX, RMFX), mav_quad),
21d799b5
NC
21155 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
21156 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
4ed7ed8d 21157
16a1fa25 21158 /* ARMv8-M instructions. */
4ed7ed8d
TP
21159#undef ARM_VARIANT
21160#define ARM_VARIANT NULL
21161#undef THUMB_VARIANT
21162#define THUMB_VARIANT & arm_ext_v8m
16a1fa25
TP
21163 TUE("sg", 0, e97fe97f, 0, (), 0, noargs),
21164 TUE("blxns", 0, 4784, 1, (RRnpc), 0, t_blx),
21165 TUE("bxns", 0, 4704, 1, (RRnpc), 0, t_bx),
4ed7ed8d
TP
21166 TUE("tt", 0, e840f000, 2, (RRnpc, RRnpc), 0, tt),
21167 TUE("ttt", 0, e840f040, 2, (RRnpc, RRnpc), 0, tt),
16a1fa25
TP
21168 TUE("tta", 0, e840f080, 2, (RRnpc, RRnpc), 0, tt),
21169 TUE("ttat", 0, e840f0c0, 2, (RRnpc, RRnpc), 0, tt),
21170
21171 /* FP for ARMv8-M Mainline. Enabled for ARMv8-M Mainline because the
21172 instructions behave as nop if no VFP is present. */
21173#undef THUMB_VARIANT
21174#define THUMB_VARIANT & arm_ext_v8m_main
21175 TUEc("vlldm", 0, ec300a00, 1, (RRnpc), rn),
21176 TUEc("vlstm", 0, ec200a00, 1, (RRnpc), rn),
c19d1205
ZW
21177};
21178#undef ARM_VARIANT
21179#undef THUMB_VARIANT
21180#undef TCE
c19d1205
ZW
21181#undef TUE
21182#undef TUF
21183#undef TCC
8f06b2d8 21184#undef cCE
e3cb604e
PB
21185#undef cCL
21186#undef C3E
c19d1205
ZW
21187#undef CE
21188#undef CM
21189#undef UE
21190#undef UF
21191#undef UT
5287ad62
JB
21192#undef NUF
21193#undef nUF
21194#undef NCE
21195#undef nCE
c19d1205
ZW
21196#undef OPS0
21197#undef OPS1
21198#undef OPS2
21199#undef OPS3
21200#undef OPS4
21201#undef OPS5
21202#undef OPS6
21203#undef do_0
21204\f
21205/* MD interface: bits in the object file. */
bfae80f2 21206
c19d1205
ZW
21207/* Turn an integer of n bytes (in val) into a stream of bytes appropriate
21208 for use in the a.out file, and stores them in the array pointed to by buf.
21209 This knows about the endian-ness of the target machine and does
21210 THE RIGHT THING, whatever it is. Possible values for n are 1 (byte)
21211 2 (short) and 4 (long) Floating numbers are put out as a series of
21212 LITTLENUMS (shorts, here at least). */
b99bd4ef 21213
c19d1205
ZW
21214void
21215md_number_to_chars (char * buf, valueT val, int n)
21216{
21217 if (target_big_endian)
21218 number_to_chars_bigendian (buf, val, n);
21219 else
21220 number_to_chars_littleendian (buf, val, n);
bfae80f2
RE
21221}
21222
c19d1205
ZW
21223static valueT
21224md_chars_to_number (char * buf, int n)
bfae80f2 21225{
c19d1205
ZW
21226 valueT result = 0;
21227 unsigned char * where = (unsigned char *) buf;
bfae80f2 21228
c19d1205 21229 if (target_big_endian)
b99bd4ef 21230 {
c19d1205
ZW
21231 while (n--)
21232 {
21233 result <<= 8;
21234 result |= (*where++ & 255);
21235 }
b99bd4ef 21236 }
c19d1205 21237 else
b99bd4ef 21238 {
c19d1205
ZW
21239 while (n--)
21240 {
21241 result <<= 8;
21242 result |= (where[n] & 255);
21243 }
bfae80f2 21244 }
b99bd4ef 21245
c19d1205 21246 return result;
bfae80f2 21247}
b99bd4ef 21248
c19d1205 21249/* MD interface: Sections. */
b99bd4ef 21250
fa94de6b
RM
21251/* Calculate the maximum variable size (i.e., excluding fr_fix)
21252 that an rs_machine_dependent frag may reach. */
21253
21254unsigned int
21255arm_frag_max_var (fragS *fragp)
21256{
21257 /* We only use rs_machine_dependent for variable-size Thumb instructions,
21258 which are either THUMB_SIZE (2) or INSN_SIZE (4).
21259
21260 Note that we generate relaxable instructions even for cases that don't
21261 really need it, like an immediate that's a trivial constant. So we're
21262 overestimating the instruction size for some of those cases. Rather
21263 than putting more intelligence here, it would probably be better to
21264 avoid generating a relaxation frag in the first place when it can be
21265 determined up front that a short instruction will suffice. */
21266
21267 gas_assert (fragp->fr_type == rs_machine_dependent);
21268 return INSN_SIZE;
21269}
21270
0110f2b8
PB
21271/* Estimate the size of a frag before relaxing. Assume everything fits in
21272 2 bytes. */
21273
c19d1205 21274int
0110f2b8 21275md_estimate_size_before_relax (fragS * fragp,
c19d1205
ZW
21276 segT segtype ATTRIBUTE_UNUSED)
21277{
0110f2b8
PB
21278 fragp->fr_var = 2;
21279 return 2;
21280}
21281
21282/* Convert a machine dependent frag. */
21283
21284void
21285md_convert_frag (bfd *abfd, segT asec ATTRIBUTE_UNUSED, fragS *fragp)
21286{
21287 unsigned long insn;
21288 unsigned long old_op;
21289 char *buf;
21290 expressionS exp;
21291 fixS *fixp;
21292 int reloc_type;
21293 int pc_rel;
21294 int opcode;
21295
21296 buf = fragp->fr_literal + fragp->fr_fix;
21297
21298 old_op = bfd_get_16(abfd, buf);
5f4273c7
NC
21299 if (fragp->fr_symbol)
21300 {
0110f2b8
PB
21301 exp.X_op = O_symbol;
21302 exp.X_add_symbol = fragp->fr_symbol;
5f4273c7
NC
21303 }
21304 else
21305 {
0110f2b8 21306 exp.X_op = O_constant;
5f4273c7 21307 }
0110f2b8
PB
21308 exp.X_add_number = fragp->fr_offset;
21309 opcode = fragp->fr_subtype;
21310 switch (opcode)
21311 {
21312 case T_MNEM_ldr_pc:
21313 case T_MNEM_ldr_pc2:
21314 case T_MNEM_ldr_sp:
21315 case T_MNEM_str_sp:
21316 case T_MNEM_ldr:
21317 case T_MNEM_ldrb:
21318 case T_MNEM_ldrh:
21319 case T_MNEM_str:
21320 case T_MNEM_strb:
21321 case T_MNEM_strh:
21322 if (fragp->fr_var == 4)
21323 {
5f4273c7 21324 insn = THUMB_OP32 (opcode);
0110f2b8
PB
21325 if ((old_op >> 12) == 4 || (old_op >> 12) == 9)
21326 {
21327 insn |= (old_op & 0x700) << 4;
21328 }
21329 else
21330 {
21331 insn |= (old_op & 7) << 12;
21332 insn |= (old_op & 0x38) << 13;
21333 }
21334 insn |= 0x00000c00;
21335 put_thumb32_insn (buf, insn);
21336 reloc_type = BFD_RELOC_ARM_T32_OFFSET_IMM;
21337 }
21338 else
21339 {
21340 reloc_type = BFD_RELOC_ARM_THUMB_OFFSET;
21341 }
21342 pc_rel = (opcode == T_MNEM_ldr_pc2);
21343 break;
21344 case T_MNEM_adr:
21345 if (fragp->fr_var == 4)
21346 {
21347 insn = THUMB_OP32 (opcode);
21348 insn |= (old_op & 0xf0) << 4;
21349 put_thumb32_insn (buf, insn);
21350 reloc_type = BFD_RELOC_ARM_T32_ADD_PC12;
21351 }
21352 else
21353 {
21354 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21355 exp.X_add_number -= 4;
21356 }
21357 pc_rel = 1;
21358 break;
21359 case T_MNEM_mov:
21360 case T_MNEM_movs:
21361 case T_MNEM_cmp:
21362 case T_MNEM_cmn:
21363 if (fragp->fr_var == 4)
21364 {
21365 int r0off = (opcode == T_MNEM_mov
21366 || opcode == T_MNEM_movs) ? 0 : 8;
21367 insn = THUMB_OP32 (opcode);
21368 insn = (insn & 0xe1ffffff) | 0x10000000;
21369 insn |= (old_op & 0x700) << r0off;
21370 put_thumb32_insn (buf, insn);
21371 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
21372 }
21373 else
21374 {
21375 reloc_type = BFD_RELOC_ARM_THUMB_IMM;
21376 }
21377 pc_rel = 0;
21378 break;
21379 case T_MNEM_b:
21380 if (fragp->fr_var == 4)
21381 {
21382 insn = THUMB_OP32(opcode);
21383 put_thumb32_insn (buf, insn);
21384 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH25;
21385 }
21386 else
21387 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH12;
21388 pc_rel = 1;
21389 break;
21390 case T_MNEM_bcond:
21391 if (fragp->fr_var == 4)
21392 {
21393 insn = THUMB_OP32(opcode);
21394 insn |= (old_op & 0xf00) << 14;
21395 put_thumb32_insn (buf, insn);
21396 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH20;
21397 }
21398 else
21399 reloc_type = BFD_RELOC_THUMB_PCREL_BRANCH9;
21400 pc_rel = 1;
21401 break;
21402 case T_MNEM_add_sp:
21403 case T_MNEM_add_pc:
21404 case T_MNEM_inc_sp:
21405 case T_MNEM_dec_sp:
21406 if (fragp->fr_var == 4)
21407 {
21408 /* ??? Choose between add and addw. */
21409 insn = THUMB_OP32 (opcode);
21410 insn |= (old_op & 0xf0) << 4;
21411 put_thumb32_insn (buf, insn);
16805f35
PB
21412 if (opcode == T_MNEM_add_pc)
21413 reloc_type = BFD_RELOC_ARM_T32_IMM12;
21414 else
21415 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
0110f2b8
PB
21416 }
21417 else
21418 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21419 pc_rel = 0;
21420 break;
21421
21422 case T_MNEM_addi:
21423 case T_MNEM_addis:
21424 case T_MNEM_subi:
21425 case T_MNEM_subis:
21426 if (fragp->fr_var == 4)
21427 {
21428 insn = THUMB_OP32 (opcode);
21429 insn |= (old_op & 0xf0) << 4;
21430 insn |= (old_op & 0xf) << 16;
21431 put_thumb32_insn (buf, insn);
16805f35
PB
21432 if (insn & (1 << 20))
21433 reloc_type = BFD_RELOC_ARM_T32_ADD_IMM;
21434 else
21435 reloc_type = BFD_RELOC_ARM_T32_IMMEDIATE;
0110f2b8
PB
21436 }
21437 else
21438 reloc_type = BFD_RELOC_ARM_THUMB_ADD;
21439 pc_rel = 0;
21440 break;
21441 default:
5f4273c7 21442 abort ();
0110f2b8
PB
21443 }
21444 fixp = fix_new_exp (fragp, fragp->fr_fix, fragp->fr_var, &exp, pc_rel,
21d799b5 21445 (enum bfd_reloc_code_real) reloc_type);
0110f2b8
PB
21446 fixp->fx_file = fragp->fr_file;
21447 fixp->fx_line = fragp->fr_line;
21448 fragp->fr_fix += fragp->fr_var;
3cfdb781
TG
21449
21450 /* Set whether we use thumb-2 ISA based on final relaxation results. */
21451 if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
21452 && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
21453 ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
0110f2b8
PB
21454}
21455
21456/* Return the size of a relaxable immediate operand instruction.
21457 SHIFT and SIZE specify the form of the allowable immediate. */
21458static int
21459relax_immediate (fragS *fragp, int size, int shift)
21460{
21461 offsetT offset;
21462 offsetT mask;
21463 offsetT low;
21464
21465 /* ??? Should be able to do better than this. */
21466 if (fragp->fr_symbol)
21467 return 4;
21468
21469 low = (1 << shift) - 1;
21470 mask = (1 << (shift + size)) - (1 << shift);
21471 offset = fragp->fr_offset;
21472 /* Force misaligned offsets to 32-bit variant. */
21473 if (offset & low)
5e77afaa 21474 return 4;
0110f2b8
PB
21475 if (offset & ~mask)
21476 return 4;
21477 return 2;
21478}
21479
5e77afaa
PB
21480/* Get the address of a symbol during relaxation. */
21481static addressT
5f4273c7 21482relaxed_symbol_addr (fragS *fragp, long stretch)
5e77afaa
PB
21483{
21484 fragS *sym_frag;
21485 addressT addr;
21486 symbolS *sym;
21487
21488 sym = fragp->fr_symbol;
21489 sym_frag = symbol_get_frag (sym);
21490 know (S_GET_SEGMENT (sym) != absolute_section
21491 || sym_frag == &zero_address_frag);
21492 addr = S_GET_VALUE (sym) + fragp->fr_offset;
21493
21494 /* If frag has yet to be reached on this pass, assume it will
21495 move by STRETCH just as we did. If this is not so, it will
21496 be because some frag between grows, and that will force
21497 another pass. */
21498
21499 if (stretch != 0
21500 && sym_frag->relax_marker != fragp->relax_marker)
4396b686
PB
21501 {
21502 fragS *f;
21503
21504 /* Adjust stretch for any alignment frag. Note that if have
21505 been expanding the earlier code, the symbol may be
21506 defined in what appears to be an earlier frag. FIXME:
21507 This doesn't handle the fr_subtype field, which specifies
21508 a maximum number of bytes to skip when doing an
21509 alignment. */
21510 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
21511 {
21512 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
21513 {
21514 if (stretch < 0)
21515 stretch = - ((- stretch)
21516 & ~ ((1 << (int) f->fr_offset) - 1));
21517 else
21518 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
21519 if (stretch == 0)
21520 break;
21521 }
21522 }
21523 if (f != NULL)
21524 addr += stretch;
21525 }
5e77afaa
PB
21526
21527 return addr;
21528}
21529
0110f2b8
PB
21530/* Return the size of a relaxable adr pseudo-instruction or PC-relative
21531 load. */
21532static int
5e77afaa 21533relax_adr (fragS *fragp, asection *sec, long stretch)
0110f2b8
PB
21534{
21535 addressT addr;
21536 offsetT val;
21537
21538 /* Assume worst case for symbols not known to be in the same section. */
974da60d
NC
21539 if (fragp->fr_symbol == NULL
21540 || !S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
21541 || sec != S_GET_SEGMENT (fragp->fr_symbol)
21542 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
21543 return 4;
21544
5f4273c7 21545 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
21546 addr = fragp->fr_address + fragp->fr_fix;
21547 addr = (addr + 4) & ~3;
5e77afaa 21548 /* Force misaligned targets to 32-bit variant. */
0110f2b8 21549 if (val & 3)
5e77afaa 21550 return 4;
0110f2b8
PB
21551 val -= addr;
21552 if (val < 0 || val > 1020)
21553 return 4;
21554 return 2;
21555}
21556
21557/* Return the size of a relaxable add/sub immediate instruction. */
21558static int
21559relax_addsub (fragS *fragp, asection *sec)
21560{
21561 char *buf;
21562 int op;
21563
21564 buf = fragp->fr_literal + fragp->fr_fix;
21565 op = bfd_get_16(sec->owner, buf);
21566 if ((op & 0xf) == ((op >> 4) & 0xf))
21567 return relax_immediate (fragp, 8, 0);
21568 else
21569 return relax_immediate (fragp, 3, 0);
21570}
21571
e83a675f
RE
21572/* Return TRUE iff the definition of symbol S could be pre-empted
21573 (overridden) at link or load time. */
21574static bfd_boolean
21575symbol_preemptible (symbolS *s)
21576{
21577 /* Weak symbols can always be pre-empted. */
21578 if (S_IS_WEAK (s))
21579 return TRUE;
21580
21581 /* Non-global symbols cannot be pre-empted. */
21582 if (! S_IS_EXTERNAL (s))
21583 return FALSE;
21584
21585#ifdef OBJ_ELF
21586 /* In ELF, a global symbol can be marked protected, or private. In that
21587 case it can't be pre-empted (other definitions in the same link unit
21588 would violate the ODR). */
21589 if (ELF_ST_VISIBILITY (S_GET_OTHER (s)) > STV_DEFAULT)
21590 return FALSE;
21591#endif
21592
21593 /* Other global symbols might be pre-empted. */
21594 return TRUE;
21595}
0110f2b8
PB
21596
21597/* Return the size of a relaxable branch instruction. BITS is the
21598 size of the offset field in the narrow instruction. */
21599
21600static int
5e77afaa 21601relax_branch (fragS *fragp, asection *sec, int bits, long stretch)
0110f2b8
PB
21602{
21603 addressT addr;
21604 offsetT val;
21605 offsetT limit;
21606
21607 /* Assume worst case for symbols not known to be in the same section. */
5f4273c7 21608 if (!S_IS_DEFINED (fragp->fr_symbol)
77db8e2e
NC
21609 || sec != S_GET_SEGMENT (fragp->fr_symbol)
21610 || S_IS_WEAK (fragp->fr_symbol))
0110f2b8
PB
21611 return 4;
21612
267bf995 21613#ifdef OBJ_ELF
e83a675f 21614 /* A branch to a function in ARM state will require interworking. */
267bf995
RR
21615 if (S_IS_DEFINED (fragp->fr_symbol)
21616 && ARM_IS_FUNC (fragp->fr_symbol))
21617 return 4;
e83a675f 21618#endif
0d9b4b55 21619
e83a675f 21620 if (symbol_preemptible (fragp->fr_symbol))
0d9b4b55 21621 return 4;
267bf995 21622
5f4273c7 21623 val = relaxed_symbol_addr (fragp, stretch);
0110f2b8
PB
21624 addr = fragp->fr_address + fragp->fr_fix + 4;
21625 val -= addr;
21626
21627 /* Offset is a signed value *2 */
21628 limit = 1 << bits;
21629 if (val >= limit || val < -limit)
21630 return 4;
21631 return 2;
21632}
21633
21634
21635/* Relax a machine dependent frag. This returns the amount by which
21636 the current size of the frag should change. */
21637
21638int
5e77afaa 21639arm_relax_frag (asection *sec, fragS *fragp, long stretch)
0110f2b8
PB
21640{
21641 int oldsize;
21642 int newsize;
21643
21644 oldsize = fragp->fr_var;
21645 switch (fragp->fr_subtype)
21646 {
21647 case T_MNEM_ldr_pc2:
5f4273c7 21648 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
21649 break;
21650 case T_MNEM_ldr_pc:
21651 case T_MNEM_ldr_sp:
21652 case T_MNEM_str_sp:
5f4273c7 21653 newsize = relax_immediate (fragp, 8, 2);
0110f2b8
PB
21654 break;
21655 case T_MNEM_ldr:
21656 case T_MNEM_str:
5f4273c7 21657 newsize = relax_immediate (fragp, 5, 2);
0110f2b8
PB
21658 break;
21659 case T_MNEM_ldrh:
21660 case T_MNEM_strh:
5f4273c7 21661 newsize = relax_immediate (fragp, 5, 1);
0110f2b8
PB
21662 break;
21663 case T_MNEM_ldrb:
21664 case T_MNEM_strb:
5f4273c7 21665 newsize = relax_immediate (fragp, 5, 0);
0110f2b8
PB
21666 break;
21667 case T_MNEM_adr:
5f4273c7 21668 newsize = relax_adr (fragp, sec, stretch);
0110f2b8
PB
21669 break;
21670 case T_MNEM_mov:
21671 case T_MNEM_movs:
21672 case T_MNEM_cmp:
21673 case T_MNEM_cmn:
5f4273c7 21674 newsize = relax_immediate (fragp, 8, 0);
0110f2b8
PB
21675 break;
21676 case T_MNEM_b:
5f4273c7 21677 newsize = relax_branch (fragp, sec, 11, stretch);
0110f2b8
PB
21678 break;
21679 case T_MNEM_bcond:
5f4273c7 21680 newsize = relax_branch (fragp, sec, 8, stretch);
0110f2b8
PB
21681 break;
21682 case T_MNEM_add_sp:
21683 case T_MNEM_add_pc:
21684 newsize = relax_immediate (fragp, 8, 2);
21685 break;
21686 case T_MNEM_inc_sp:
21687 case T_MNEM_dec_sp:
21688 newsize = relax_immediate (fragp, 7, 2);
21689 break;
21690 case T_MNEM_addi:
21691 case T_MNEM_addis:
21692 case T_MNEM_subi:
21693 case T_MNEM_subis:
21694 newsize = relax_addsub (fragp, sec);
21695 break;
21696 default:
5f4273c7 21697 abort ();
0110f2b8 21698 }
5e77afaa
PB
21699
21700 fragp->fr_var = newsize;
21701 /* Freeze wide instructions that are at or before the same location as
21702 in the previous pass. This avoids infinite loops.
5f4273c7
NC
21703 Don't freeze them unconditionally because targets may be artificially
21704 misaligned by the expansion of preceding frags. */
5e77afaa 21705 if (stretch <= 0 && newsize > 2)
0110f2b8 21706 {
0110f2b8 21707 md_convert_frag (sec->owner, sec, fragp);
5f4273c7 21708 frag_wane (fragp);
0110f2b8 21709 }
5e77afaa 21710
0110f2b8 21711 return newsize - oldsize;
c19d1205 21712}
b99bd4ef 21713
c19d1205 21714/* Round up a section size to the appropriate boundary. */
b99bd4ef 21715
c19d1205
ZW
21716valueT
21717md_section_align (segT segment ATTRIBUTE_UNUSED,
21718 valueT size)
21719{
f0927246
NC
21720#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
21721 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
21722 {
21723 /* For a.out, force the section size to be aligned. If we don't do
21724 this, BFD will align it for us, but it will not write out the
21725 final bytes of the section. This may be a bug in BFD, but it is
21726 easier to fix it here since that is how the other a.out targets
21727 work. */
21728 int align;
21729
21730 align = bfd_get_section_alignment (stdoutput, segment);
8d3842cd 21731 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
f0927246 21732 }
c19d1205 21733#endif
f0927246 21734
6844c0cc 21735 return size;
bfae80f2 21736}
b99bd4ef 21737
c19d1205
ZW
21738/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
21739 of an rs_align_code fragment. */
21740
21741void
21742arm_handle_align (fragS * fragP)
bfae80f2 21743{
d9235011 21744 static unsigned char const arm_noop[2][2][4] =
e7495e45
NS
21745 {
21746 { /* ARMv1 */
21747 {0x00, 0x00, 0xa0, 0xe1}, /* LE */
21748 {0xe1, 0xa0, 0x00, 0x00}, /* BE */
21749 },
21750 { /* ARMv6k */
21751 {0x00, 0xf0, 0x20, 0xe3}, /* LE */
21752 {0xe3, 0x20, 0xf0, 0x00}, /* BE */
21753 },
21754 };
d9235011 21755 static unsigned char const thumb_noop[2][2][2] =
e7495e45
NS
21756 {
21757 { /* Thumb-1 */
21758 {0xc0, 0x46}, /* LE */
21759 {0x46, 0xc0}, /* BE */
21760 },
21761 { /* Thumb-2 */
21762 {0x00, 0xbf}, /* LE */
21763 {0xbf, 0x00} /* BE */
21764 }
21765 };
d9235011 21766 static unsigned char const wide_thumb_noop[2][4] =
e7495e45
NS
21767 { /* Wide Thumb-2 */
21768 {0xaf, 0xf3, 0x00, 0x80}, /* LE */
21769 {0xf3, 0xaf, 0x80, 0x00}, /* BE */
21770 };
c921be7d 21771
e7495e45 21772 unsigned bytes, fix, noop_size;
c19d1205 21773 char * p;
d9235011
TS
21774 const unsigned char * noop;
21775 const unsigned char *narrow_noop = NULL;
cd000bff
DJ
21776#ifdef OBJ_ELF
21777 enum mstate state;
21778#endif
bfae80f2 21779
c19d1205 21780 if (fragP->fr_type != rs_align_code)
bfae80f2
RE
21781 return;
21782
c19d1205
ZW
21783 bytes = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
21784 p = fragP->fr_literal + fragP->fr_fix;
21785 fix = 0;
bfae80f2 21786
c19d1205
ZW
21787 if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE)
21788 bytes &= MAX_MEM_FOR_RS_ALIGN_CODE;
bfae80f2 21789
cd000bff 21790 gas_assert ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) != 0);
8dc2430f 21791
cd000bff 21792 if (fragP->tc_frag_data.thumb_mode & (~ MODE_RECORDED))
a737bd4d 21793 {
7f78eb34
JW
21794 if (ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
21795 ? selected_cpu : arm_arch_none, arm_ext_v6t2))
e7495e45
NS
21796 {
21797 narrow_noop = thumb_noop[1][target_big_endian];
21798 noop = wide_thumb_noop[target_big_endian];
21799 }
c19d1205 21800 else
e7495e45
NS
21801 noop = thumb_noop[0][target_big_endian];
21802 noop_size = 2;
cd000bff
DJ
21803#ifdef OBJ_ELF
21804 state = MAP_THUMB;
21805#endif
7ed4c4c5
NC
21806 }
21807 else
21808 {
7f78eb34
JW
21809 noop = arm_noop[ARM_CPU_HAS_FEATURE (selected_cpu_name[0]
21810 ? selected_cpu : arm_arch_none,
21811 arm_ext_v6k) != 0]
e7495e45
NS
21812 [target_big_endian];
21813 noop_size = 4;
cd000bff
DJ
21814#ifdef OBJ_ELF
21815 state = MAP_ARM;
21816#endif
7ed4c4c5 21817 }
c921be7d 21818
e7495e45 21819 fragP->fr_var = noop_size;
c921be7d 21820
c19d1205 21821 if (bytes & (noop_size - 1))
7ed4c4c5 21822 {
c19d1205 21823 fix = bytes & (noop_size - 1);
cd000bff
DJ
21824#ifdef OBJ_ELF
21825 insert_data_mapping_symbol (state, fragP->fr_fix, fragP, fix);
21826#endif
c19d1205
ZW
21827 memset (p, 0, fix);
21828 p += fix;
21829 bytes -= fix;
a737bd4d 21830 }
a737bd4d 21831
e7495e45
NS
21832 if (narrow_noop)
21833 {
21834 if (bytes & noop_size)
21835 {
21836 /* Insert a narrow noop. */
21837 memcpy (p, narrow_noop, noop_size);
21838 p += noop_size;
21839 bytes -= noop_size;
21840 fix += noop_size;
21841 }
21842
21843 /* Use wide noops for the remainder */
21844 noop_size = 4;
21845 }
21846
c19d1205 21847 while (bytes >= noop_size)
a737bd4d 21848 {
c19d1205
ZW
21849 memcpy (p, noop, noop_size);
21850 p += noop_size;
21851 bytes -= noop_size;
21852 fix += noop_size;
a737bd4d
NC
21853 }
21854
c19d1205 21855 fragP->fr_fix += fix;
a737bd4d
NC
21856}
21857
c19d1205
ZW
21858/* Called from md_do_align. Used to create an alignment
21859 frag in a code section. */
21860
21861void
21862arm_frag_align_code (int n, int max)
bfae80f2 21863{
c19d1205 21864 char * p;
7ed4c4c5 21865
c19d1205 21866 /* We assume that there will never be a requirement
6ec8e702 21867 to support alignments greater than MAX_MEM_FOR_RS_ALIGN_CODE bytes. */
c19d1205 21868 if (max > MAX_MEM_FOR_RS_ALIGN_CODE)
6ec8e702
NC
21869 {
21870 char err_msg[128];
21871
fa94de6b 21872 sprintf (err_msg,
477330fc
RM
21873 _("alignments greater than %d bytes not supported in .text sections."),
21874 MAX_MEM_FOR_RS_ALIGN_CODE + 1);
20203fb9 21875 as_fatal ("%s", err_msg);
6ec8e702 21876 }
bfae80f2 21877
c19d1205
ZW
21878 p = frag_var (rs_align_code,
21879 MAX_MEM_FOR_RS_ALIGN_CODE,
21880 1,
21881 (relax_substateT) max,
21882 (symbolS *) NULL,
21883 (offsetT) n,
21884 (char *) NULL);
21885 *p = 0;
21886}
bfae80f2 21887
8dc2430f
NC
21888/* Perform target specific initialisation of a frag.
21889 Note - despite the name this initialisation is not done when the frag
21890 is created, but only when its type is assigned. A frag can be created
21891 and used a long time before its type is set, so beware of assuming that
33eaf5de 21892 this initialisation is performed first. */
bfae80f2 21893
cd000bff
DJ
21894#ifndef OBJ_ELF
21895void
21896arm_init_frag (fragS * fragP, int max_chars ATTRIBUTE_UNUSED)
21897{
21898 /* Record whether this frag is in an ARM or a THUMB area. */
2e98972e 21899 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
cd000bff
DJ
21900}
21901
21902#else /* OBJ_ELF is defined. */
c19d1205 21903void
cd000bff 21904arm_init_frag (fragS * fragP, int max_chars)
c19d1205 21905{
b968d18a
JW
21906 int frag_thumb_mode;
21907
8dc2430f
NC
21908 /* If the current ARM vs THUMB mode has not already
21909 been recorded into this frag then do so now. */
cd000bff 21910 if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
b968d18a
JW
21911 fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
21912
21913 frag_thumb_mode = fragP->tc_frag_data.thumb_mode ^ MODE_RECORDED;
cd000bff 21914
f9c1b181
RL
21915 /* Record a mapping symbol for alignment frags. We will delete this
21916 later if the alignment ends up empty. */
21917 switch (fragP->fr_type)
21918 {
21919 case rs_align:
21920 case rs_align_test:
21921 case rs_fill:
21922 mapping_state_2 (MAP_DATA, max_chars);
21923 break;
21924 case rs_align_code:
b968d18a 21925 mapping_state_2 (frag_thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
f9c1b181
RL
21926 break;
21927 default:
21928 break;
cd000bff 21929 }
bfae80f2
RE
21930}
21931
c19d1205
ZW
21932/* When we change sections we need to issue a new mapping symbol. */
21933
21934void
21935arm_elf_change_section (void)
bfae80f2 21936{
c19d1205
ZW
21937 /* Link an unlinked unwind index table section to the .text section. */
21938 if (elf_section_type (now_seg) == SHT_ARM_EXIDX
21939 && elf_linked_to_section (now_seg) == NULL)
21940 elf_linked_to_section (now_seg) = text_section;
bfae80f2
RE
21941}
21942
c19d1205
ZW
21943int
21944arm_elf_section_type (const char * str, size_t len)
e45d0630 21945{
c19d1205
ZW
21946 if (len == 5 && strncmp (str, "exidx", 5) == 0)
21947 return SHT_ARM_EXIDX;
e45d0630 21948
c19d1205
ZW
21949 return -1;
21950}
21951\f
21952/* Code to deal with unwinding tables. */
e45d0630 21953
c19d1205 21954static void add_unwind_adjustsp (offsetT);
e45d0630 21955
5f4273c7 21956/* Generate any deferred unwind frame offset. */
e45d0630 21957
bfae80f2 21958static void
c19d1205 21959flush_pending_unwind (void)
bfae80f2 21960{
c19d1205 21961 offsetT offset;
bfae80f2 21962
c19d1205
ZW
21963 offset = unwind.pending_offset;
21964 unwind.pending_offset = 0;
21965 if (offset != 0)
21966 add_unwind_adjustsp (offset);
bfae80f2
RE
21967}
21968
c19d1205
ZW
21969/* Add an opcode to this list for this function. Two-byte opcodes should
21970 be passed as op[0] << 8 | op[1]. The list of opcodes is built in reverse
21971 order. */
21972
bfae80f2 21973static void
c19d1205 21974add_unwind_opcode (valueT op, int length)
bfae80f2 21975{
c19d1205
ZW
21976 /* Add any deferred stack adjustment. */
21977 if (unwind.pending_offset)
21978 flush_pending_unwind ();
bfae80f2 21979
c19d1205 21980 unwind.sp_restored = 0;
bfae80f2 21981
c19d1205 21982 if (unwind.opcode_count + length > unwind.opcode_alloc)
bfae80f2 21983 {
c19d1205
ZW
21984 unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
21985 if (unwind.opcodes)
325801bd
TS
21986 unwind.opcodes = XRESIZEVEC (unsigned char, unwind.opcodes,
21987 unwind.opcode_alloc);
c19d1205 21988 else
325801bd 21989 unwind.opcodes = XNEWVEC (unsigned char, unwind.opcode_alloc);
bfae80f2 21990 }
c19d1205 21991 while (length > 0)
bfae80f2 21992 {
c19d1205
ZW
21993 length--;
21994 unwind.opcodes[unwind.opcode_count] = op & 0xff;
21995 op >>= 8;
21996 unwind.opcode_count++;
bfae80f2 21997 }
bfae80f2
RE
21998}
21999
c19d1205
ZW
22000/* Add unwind opcodes to adjust the stack pointer. */
22001
bfae80f2 22002static void
c19d1205 22003add_unwind_adjustsp (offsetT offset)
bfae80f2 22004{
c19d1205 22005 valueT op;
bfae80f2 22006
c19d1205 22007 if (offset > 0x200)
bfae80f2 22008 {
c19d1205
ZW
22009 /* We need at most 5 bytes to hold a 32-bit value in a uleb128. */
22010 char bytes[5];
22011 int n;
22012 valueT o;
bfae80f2 22013
c19d1205
ZW
22014 /* Long form: 0xb2, uleb128. */
22015 /* This might not fit in a word so add the individual bytes,
22016 remembering the list is built in reverse order. */
22017 o = (valueT) ((offset - 0x204) >> 2);
22018 if (o == 0)
22019 add_unwind_opcode (0, 1);
bfae80f2 22020
c19d1205
ZW
22021 /* Calculate the uleb128 encoding of the offset. */
22022 n = 0;
22023 while (o)
22024 {
22025 bytes[n] = o & 0x7f;
22026 o >>= 7;
22027 if (o)
22028 bytes[n] |= 0x80;
22029 n++;
22030 }
22031 /* Add the insn. */
22032 for (; n; n--)
22033 add_unwind_opcode (bytes[n - 1], 1);
22034 add_unwind_opcode (0xb2, 1);
22035 }
22036 else if (offset > 0x100)
bfae80f2 22037 {
c19d1205
ZW
22038 /* Two short opcodes. */
22039 add_unwind_opcode (0x3f, 1);
22040 op = (offset - 0x104) >> 2;
22041 add_unwind_opcode (op, 1);
bfae80f2 22042 }
c19d1205
ZW
22043 else if (offset > 0)
22044 {
22045 /* Short opcode. */
22046 op = (offset - 4) >> 2;
22047 add_unwind_opcode (op, 1);
22048 }
22049 else if (offset < 0)
bfae80f2 22050 {
c19d1205
ZW
22051 offset = -offset;
22052 while (offset > 0x100)
bfae80f2 22053 {
c19d1205
ZW
22054 add_unwind_opcode (0x7f, 1);
22055 offset -= 0x100;
bfae80f2 22056 }
c19d1205
ZW
22057 op = ((offset - 4) >> 2) | 0x40;
22058 add_unwind_opcode (op, 1);
bfae80f2 22059 }
bfae80f2
RE
22060}
22061
c19d1205
ZW
22062/* Finish the list of unwind opcodes for this function. */
22063static void
22064finish_unwind_opcodes (void)
bfae80f2 22065{
c19d1205 22066 valueT op;
bfae80f2 22067
c19d1205 22068 if (unwind.fp_used)
bfae80f2 22069 {
708587a4 22070 /* Adjust sp as necessary. */
c19d1205
ZW
22071 unwind.pending_offset += unwind.fp_offset - unwind.frame_size;
22072 flush_pending_unwind ();
bfae80f2 22073
c19d1205
ZW
22074 /* After restoring sp from the frame pointer. */
22075 op = 0x90 | unwind.fp_reg;
22076 add_unwind_opcode (op, 1);
22077 }
22078 else
22079 flush_pending_unwind ();
bfae80f2
RE
22080}
22081
bfae80f2 22082
c19d1205
ZW
22083/* Start an exception table entry. If idx is nonzero this is an index table
22084 entry. */
bfae80f2
RE
22085
22086static void
c19d1205 22087start_unwind_section (const segT text_seg, int idx)
bfae80f2 22088{
c19d1205
ZW
22089 const char * text_name;
22090 const char * prefix;
22091 const char * prefix_once;
22092 const char * group_name;
c19d1205 22093 char * sec_name;
c19d1205
ZW
22094 int type;
22095 int flags;
22096 int linkonce;
bfae80f2 22097
c19d1205 22098 if (idx)
bfae80f2 22099 {
c19d1205
ZW
22100 prefix = ELF_STRING_ARM_unwind;
22101 prefix_once = ELF_STRING_ARM_unwind_once;
22102 type = SHT_ARM_EXIDX;
bfae80f2 22103 }
c19d1205 22104 else
bfae80f2 22105 {
c19d1205
ZW
22106 prefix = ELF_STRING_ARM_unwind_info;
22107 prefix_once = ELF_STRING_ARM_unwind_info_once;
22108 type = SHT_PROGBITS;
bfae80f2
RE
22109 }
22110
c19d1205
ZW
22111 text_name = segment_name (text_seg);
22112 if (streq (text_name, ".text"))
22113 text_name = "";
22114
22115 if (strncmp (text_name, ".gnu.linkonce.t.",
22116 strlen (".gnu.linkonce.t.")) == 0)
bfae80f2 22117 {
c19d1205
ZW
22118 prefix = prefix_once;
22119 text_name += strlen (".gnu.linkonce.t.");
bfae80f2
RE
22120 }
22121
29a2809e 22122 sec_name = concat (prefix, text_name, (char *) NULL);
bfae80f2 22123
c19d1205
ZW
22124 flags = SHF_ALLOC;
22125 linkonce = 0;
22126 group_name = 0;
bfae80f2 22127
c19d1205
ZW
22128 /* Handle COMDAT group. */
22129 if (prefix != prefix_once && (text_seg->flags & SEC_LINK_ONCE) != 0)
bfae80f2 22130 {
c19d1205
ZW
22131 group_name = elf_group_name (text_seg);
22132 if (group_name == NULL)
22133 {
bd3ba5d1 22134 as_bad (_("Group section `%s' has no group signature"),
c19d1205
ZW
22135 segment_name (text_seg));
22136 ignore_rest_of_line ();
22137 return;
22138 }
22139 flags |= SHF_GROUP;
22140 linkonce = 1;
bfae80f2
RE
22141 }
22142
a91e1603
L
22143 obj_elf_change_section (sec_name, type, 0, flags, 0, group_name,
22144 linkonce, 0);
bfae80f2 22145
5f4273c7 22146 /* Set the section link for index tables. */
c19d1205
ZW
22147 if (idx)
22148 elf_linked_to_section (now_seg) = text_seg;
bfae80f2
RE
22149}
22150
bfae80f2 22151
c19d1205
ZW
22152/* Start an unwind table entry. HAVE_DATA is nonzero if we have additional
22153 personality routine data. Returns zero, or the index table value for
cad0da33 22154 an inline entry. */
c19d1205
ZW
22155
22156static valueT
22157create_unwind_entry (int have_data)
bfae80f2 22158{
c19d1205
ZW
22159 int size;
22160 addressT where;
22161 char *ptr;
22162 /* The current word of data. */
22163 valueT data;
22164 /* The number of bytes left in this word. */
22165 int n;
bfae80f2 22166
c19d1205 22167 finish_unwind_opcodes ();
bfae80f2 22168
c19d1205
ZW
22169 /* Remember the current text section. */
22170 unwind.saved_seg = now_seg;
22171 unwind.saved_subseg = now_subseg;
bfae80f2 22172
c19d1205 22173 start_unwind_section (now_seg, 0);
bfae80f2 22174
c19d1205 22175 if (unwind.personality_routine == NULL)
bfae80f2 22176 {
c19d1205
ZW
22177 if (unwind.personality_index == -2)
22178 {
22179 if (have_data)
5f4273c7 22180 as_bad (_("handlerdata in cantunwind frame"));
c19d1205
ZW
22181 return 1; /* EXIDX_CANTUNWIND. */
22182 }
bfae80f2 22183
c19d1205
ZW
22184 /* Use a default personality routine if none is specified. */
22185 if (unwind.personality_index == -1)
22186 {
22187 if (unwind.opcode_count > 3)
22188 unwind.personality_index = 1;
22189 else
22190 unwind.personality_index = 0;
22191 }
bfae80f2 22192
c19d1205
ZW
22193 /* Space for the personality routine entry. */
22194 if (unwind.personality_index == 0)
22195 {
22196 if (unwind.opcode_count > 3)
22197 as_bad (_("too many unwind opcodes for personality routine 0"));
bfae80f2 22198
c19d1205
ZW
22199 if (!have_data)
22200 {
22201 /* All the data is inline in the index table. */
22202 data = 0x80;
22203 n = 3;
22204 while (unwind.opcode_count > 0)
22205 {
22206 unwind.opcode_count--;
22207 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
22208 n--;
22209 }
bfae80f2 22210
c19d1205
ZW
22211 /* Pad with "finish" opcodes. */
22212 while (n--)
22213 data = (data << 8) | 0xb0;
bfae80f2 22214
c19d1205
ZW
22215 return data;
22216 }
22217 size = 0;
22218 }
22219 else
22220 /* We get two opcodes "free" in the first word. */
22221 size = unwind.opcode_count - 2;
22222 }
22223 else
5011093d 22224 {
cad0da33
NC
22225 /* PR 16765: Missing or misplaced unwind directives can trigger this. */
22226 if (unwind.personality_index != -1)
22227 {
22228 as_bad (_("attempt to recreate an unwind entry"));
22229 return 1;
22230 }
5011093d
NC
22231
22232 /* An extra byte is required for the opcode count. */
22233 size = unwind.opcode_count + 1;
22234 }
bfae80f2 22235
c19d1205
ZW
22236 size = (size + 3) >> 2;
22237 if (size > 0xff)
22238 as_bad (_("too many unwind opcodes"));
bfae80f2 22239
c19d1205
ZW
22240 frag_align (2, 0, 0);
22241 record_alignment (now_seg, 2);
22242 unwind.table_entry = expr_build_dot ();
22243
22244 /* Allocate the table entry. */
22245 ptr = frag_more ((size << 2) + 4);
74929e7b
NC
22246 /* PR 13449: Zero the table entries in case some of them are not used. */
22247 memset (ptr, 0, (size << 2) + 4);
c19d1205 22248 where = frag_now_fix () - ((size << 2) + 4);
bfae80f2 22249
c19d1205 22250 switch (unwind.personality_index)
bfae80f2 22251 {
c19d1205
ZW
22252 case -1:
22253 /* ??? Should this be a PLT generating relocation? */
22254 /* Custom personality routine. */
22255 fix_new (frag_now, where, 4, unwind.personality_routine, 0, 1,
22256 BFD_RELOC_ARM_PREL31);
bfae80f2 22257
c19d1205
ZW
22258 where += 4;
22259 ptr += 4;
bfae80f2 22260
c19d1205 22261 /* Set the first byte to the number of additional words. */
5011093d 22262 data = size > 0 ? size - 1 : 0;
c19d1205
ZW
22263 n = 3;
22264 break;
bfae80f2 22265
c19d1205
ZW
22266 /* ABI defined personality routines. */
22267 case 0:
22268 /* Three opcodes bytes are packed into the first word. */
22269 data = 0x80;
22270 n = 3;
22271 break;
bfae80f2 22272
c19d1205
ZW
22273 case 1:
22274 case 2:
22275 /* The size and first two opcode bytes go in the first word. */
22276 data = ((0x80 + unwind.personality_index) << 8) | size;
22277 n = 2;
22278 break;
bfae80f2 22279
c19d1205
ZW
22280 default:
22281 /* Should never happen. */
22282 abort ();
22283 }
bfae80f2 22284
c19d1205
ZW
22285 /* Pack the opcodes into words (MSB first), reversing the list at the same
22286 time. */
22287 while (unwind.opcode_count > 0)
22288 {
22289 if (n == 0)
22290 {
22291 md_number_to_chars (ptr, data, 4);
22292 ptr += 4;
22293 n = 4;
22294 data = 0;
22295 }
22296 unwind.opcode_count--;
22297 n--;
22298 data = (data << 8) | unwind.opcodes[unwind.opcode_count];
22299 }
22300
22301 /* Finish off the last word. */
22302 if (n < 4)
22303 {
22304 /* Pad with "finish" opcodes. */
22305 while (n--)
22306 data = (data << 8) | 0xb0;
22307
22308 md_number_to_chars (ptr, data, 4);
22309 }
22310
22311 if (!have_data)
22312 {
22313 /* Add an empty descriptor if there is no user-specified data. */
22314 ptr = frag_more (4);
22315 md_number_to_chars (ptr, 0, 4);
22316 }
22317
22318 return 0;
bfae80f2
RE
22319}
22320
f0927246
NC
22321
22322/* Initialize the DWARF-2 unwind information for this procedure. */
22323
22324void
22325tc_arm_frame_initial_instructions (void)
22326{
22327 cfi_add_CFA_def_cfa (REG_SP, 0);
22328}
22329#endif /* OBJ_ELF */
22330
c19d1205
ZW
22331/* Convert REGNAME to a DWARF-2 register number. */
22332
22333int
1df69f4f 22334tc_arm_regname_to_dw2regnum (char *regname)
bfae80f2 22335{
1df69f4f 22336 int reg = arm_reg_parse (&regname, REG_TYPE_RN);
1f5afe1c
NC
22337 if (reg != FAIL)
22338 return reg;
c19d1205 22339
1f5afe1c
NC
22340 /* PR 16694: Allow VFP registers as well. */
22341 reg = arm_reg_parse (&regname, REG_TYPE_VFS);
22342 if (reg != FAIL)
22343 return 64 + reg;
c19d1205 22344
1f5afe1c
NC
22345 reg = arm_reg_parse (&regname, REG_TYPE_VFD);
22346 if (reg != FAIL)
22347 return reg + 256;
22348
22349 return -1;
bfae80f2
RE
22350}
22351
f0927246 22352#ifdef TE_PE
c19d1205 22353void
f0927246 22354tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
bfae80f2 22355{
91d6fa6a 22356 expressionS exp;
bfae80f2 22357
91d6fa6a
NC
22358 exp.X_op = O_secrel;
22359 exp.X_add_symbol = symbol;
22360 exp.X_add_number = 0;
22361 emit_expr (&exp, size);
f0927246
NC
22362}
22363#endif
bfae80f2 22364
c19d1205 22365/* MD interface: Symbol and relocation handling. */
bfae80f2 22366
2fc8bdac
ZW
22367/* Return the address within the segment that a PC-relative fixup is
22368 relative to. For ARM, PC-relative fixups applied to instructions
22369 are generally relative to the location of the fixup plus 8 bytes.
22370 Thumb branches are offset by 4, and Thumb loads relative to PC
22371 require special handling. */
bfae80f2 22372
c19d1205 22373long
2fc8bdac 22374md_pcrel_from_section (fixS * fixP, segT seg)
bfae80f2 22375{
2fc8bdac
ZW
22376 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
22377
22378 /* If this is pc-relative and we are going to emit a relocation
22379 then we just want to put out any pipeline compensation that the linker
53baae48
NC
22380 will need. Otherwise we want to use the calculated base.
22381 For WinCE we skip the bias for externals as well, since this
22382 is how the MS ARM-CE assembler behaves and we want to be compatible. */
5f4273c7 22383 if (fixP->fx_pcrel
2fc8bdac 22384 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
53baae48
NC
22385 || (arm_force_relocation (fixP)
22386#ifdef TE_WINCE
22387 && !S_IS_EXTERNAL (fixP->fx_addsy)
22388#endif
22389 )))
2fc8bdac 22390 base = 0;
bfae80f2 22391
267bf995 22392
c19d1205 22393 switch (fixP->fx_r_type)
bfae80f2 22394 {
2fc8bdac
ZW
22395 /* PC relative addressing on the Thumb is slightly odd as the
22396 bottom two bits of the PC are forced to zero for the
22397 calculation. This happens *after* application of the
22398 pipeline offset. However, Thumb adrl already adjusts for
22399 this, so we need not do it again. */
c19d1205 22400 case BFD_RELOC_ARM_THUMB_ADD:
2fc8bdac 22401 return base & ~3;
c19d1205
ZW
22402
22403 case BFD_RELOC_ARM_THUMB_OFFSET:
22404 case BFD_RELOC_ARM_T32_OFFSET_IMM:
e9f89963 22405 case BFD_RELOC_ARM_T32_ADD_PC12:
8f06b2d8 22406 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
2fc8bdac 22407 return (base + 4) & ~3;
c19d1205 22408
2fc8bdac
ZW
22409 /* Thumb branches are simply offset by +4. */
22410 case BFD_RELOC_THUMB_PCREL_BRANCH7:
22411 case BFD_RELOC_THUMB_PCREL_BRANCH9:
22412 case BFD_RELOC_THUMB_PCREL_BRANCH12:
22413 case BFD_RELOC_THUMB_PCREL_BRANCH20:
2fc8bdac 22414 case BFD_RELOC_THUMB_PCREL_BRANCH25:
2fc8bdac 22415 return base + 4;
bfae80f2 22416
267bf995 22417 case BFD_RELOC_THUMB_PCREL_BRANCH23:
486499d0
CL
22418 if (fixP->fx_addsy
22419 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22420 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995 22421 && ARM_IS_FUNC (fixP->fx_addsy)
477330fc
RM
22422 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22423 base = fixP->fx_where + fixP->fx_frag->fr_address;
267bf995
RR
22424 return base + 4;
22425
00adf2d4
JB
22426 /* BLX is like branches above, but forces the low two bits of PC to
22427 zero. */
486499d0
CL
22428 case BFD_RELOC_THUMB_PCREL_BLX:
22429 if (fixP->fx_addsy
22430 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22431 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22432 && THUMB_IS_FUNC (fixP->fx_addsy)
22433 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22434 base = fixP->fx_where + fixP->fx_frag->fr_address;
00adf2d4
JB
22435 return (base + 4) & ~3;
22436
2fc8bdac
ZW
22437 /* ARM mode branches are offset by +8. However, the Windows CE
22438 loader expects the relocation not to take this into account. */
267bf995 22439 case BFD_RELOC_ARM_PCREL_BLX:
486499d0
CL
22440 if (fixP->fx_addsy
22441 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22442 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22443 && ARM_IS_FUNC (fixP->fx_addsy)
22444 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22445 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 22446 return base + 8;
267bf995 22447
486499d0
CL
22448 case BFD_RELOC_ARM_PCREL_CALL:
22449 if (fixP->fx_addsy
22450 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 22451 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
477330fc
RM
22452 && THUMB_IS_FUNC (fixP->fx_addsy)
22453 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
22454 base = fixP->fx_where + fixP->fx_frag->fr_address;
486499d0 22455 return base + 8;
267bf995 22456
2fc8bdac 22457 case BFD_RELOC_ARM_PCREL_BRANCH:
39b41c9c 22458 case BFD_RELOC_ARM_PCREL_JUMP:
2fc8bdac 22459 case BFD_RELOC_ARM_PLT32:
c19d1205 22460#ifdef TE_WINCE
5f4273c7 22461 /* When handling fixups immediately, because we have already
477330fc 22462 discovered the value of a symbol, or the address of the frag involved
53baae48 22463 we must account for the offset by +8, as the OS loader will never see the reloc.
477330fc
RM
22464 see fixup_segment() in write.c
22465 The S_IS_EXTERNAL test handles the case of global symbols.
22466 Those need the calculated base, not just the pipe compensation the linker will need. */
53baae48
NC
22467 if (fixP->fx_pcrel
22468 && fixP->fx_addsy != NULL
22469 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
22470 && (S_IS_EXTERNAL (fixP->fx_addsy) || !arm_force_relocation (fixP)))
22471 return base + 8;
2fc8bdac 22472 return base;
c19d1205 22473#else
2fc8bdac 22474 return base + 8;
c19d1205 22475#endif
2fc8bdac 22476
267bf995 22477
2fc8bdac
ZW
22478 /* ARM mode loads relative to PC are also offset by +8. Unlike
22479 branches, the Windows CE loader *does* expect the relocation
22480 to take this into account. */
22481 case BFD_RELOC_ARM_OFFSET_IMM:
22482 case BFD_RELOC_ARM_OFFSET_IMM8:
22483 case BFD_RELOC_ARM_HWLITERAL:
22484 case BFD_RELOC_ARM_LITERAL:
22485 case BFD_RELOC_ARM_CP_OFF_IMM:
22486 return base + 8;
22487
22488
22489 /* Other PC-relative relocations are un-offset. */
22490 default:
22491 return base;
22492 }
bfae80f2
RE
22493}
22494
8b2d793c
NC
22495static bfd_boolean flag_warn_syms = TRUE;
22496
ae8714c2
NC
22497bfd_boolean
22498arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
bfae80f2 22499{
8b2d793c
NC
22500 /* PR 18347 - Warn if the user attempts to create a symbol with the same
22501 name as an ARM instruction. Whilst strictly speaking it is allowed, it
22502 does mean that the resulting code might be very confusing to the reader.
22503 Also this warning can be triggered if the user omits an operand before
22504 an immediate address, eg:
22505
22506 LDR =foo
22507
22508 GAS treats this as an assignment of the value of the symbol foo to a
22509 symbol LDR, and so (without this code) it will not issue any kind of
22510 warning or error message.
22511
22512 Note - ARM instructions are case-insensitive but the strings in the hash
22513 table are all stored in lower case, so we must first ensure that name is
ae8714c2
NC
22514 lower case too. */
22515 if (flag_warn_syms && arm_ops_hsh)
8b2d793c
NC
22516 {
22517 char * nbuf = strdup (name);
22518 char * p;
22519
22520 for (p = nbuf; *p; p++)
22521 *p = TOLOWER (*p);
22522 if (hash_find (arm_ops_hsh, nbuf) != NULL)
22523 {
22524 static struct hash_control * already_warned = NULL;
22525
22526 if (already_warned == NULL)
22527 already_warned = hash_new ();
22528 /* Only warn about the symbol once. To keep the code
22529 simple we let hash_insert do the lookup for us. */
22530 if (hash_insert (already_warned, name, NULL) == NULL)
ae8714c2 22531 as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
8b2d793c
NC
22532 }
22533 else
22534 free (nbuf);
22535 }
3739860c 22536
ae8714c2
NC
22537 return FALSE;
22538}
22539
22540/* Under ELF we need to default _GLOBAL_OFFSET_TABLE.
22541 Otherwise we have no need to default values of symbols. */
22542
22543symbolS *
22544md_undefined_symbol (char * name ATTRIBUTE_UNUSED)
22545{
22546#ifdef OBJ_ELF
22547 if (name[0] == '_' && name[1] == 'G'
22548 && streq (name, GLOBAL_OFFSET_TABLE_NAME))
22549 {
22550 if (!GOT_symbol)
22551 {
22552 if (symbol_find (name))
22553 as_bad (_("GOT already in the symbol table"));
22554
22555 GOT_symbol = symbol_new (name, undefined_section,
22556 (valueT) 0, & zero_address_frag);
22557 }
22558
22559 return GOT_symbol;
22560 }
22561#endif
22562
c921be7d 22563 return NULL;
bfae80f2
RE
22564}
22565
55cf6793 22566/* Subroutine of md_apply_fix. Check to see if an immediate can be
c19d1205
ZW
22567 computed as two separate immediate values, added together. We
22568 already know that this value cannot be computed by just one ARM
22569 instruction. */
22570
22571static unsigned int
22572validate_immediate_twopart (unsigned int val,
22573 unsigned int * highpart)
bfae80f2 22574{
c19d1205
ZW
22575 unsigned int a;
22576 unsigned int i;
bfae80f2 22577
c19d1205
ZW
22578 for (i = 0; i < 32; i += 2)
22579 if (((a = rotate_left (val, i)) & 0xff) != 0)
22580 {
22581 if (a & 0xff00)
22582 {
22583 if (a & ~ 0xffff)
22584 continue;
22585 * highpart = (a >> 8) | ((i + 24) << 7);
22586 }
22587 else if (a & 0xff0000)
22588 {
22589 if (a & 0xff000000)
22590 continue;
22591 * highpart = (a >> 16) | ((i + 16) << 7);
22592 }
22593 else
22594 {
9c2799c2 22595 gas_assert (a & 0xff000000);
c19d1205
ZW
22596 * highpart = (a >> 24) | ((i + 8) << 7);
22597 }
bfae80f2 22598
c19d1205
ZW
22599 return (a & 0xff) | (i << 7);
22600 }
bfae80f2 22601
c19d1205 22602 return FAIL;
bfae80f2
RE
22603}
22604
c19d1205
ZW
22605static int
22606validate_offset_imm (unsigned int val, int hwse)
22607{
22608 if ((hwse && val > 255) || val > 4095)
22609 return FAIL;
22610 return val;
22611}
bfae80f2 22612
55cf6793 22613/* Subroutine of md_apply_fix. Do those data_ops which can take a
c19d1205
ZW
22614 negative immediate constant by altering the instruction. A bit of
22615 a hack really.
22616 MOV <-> MVN
22617 AND <-> BIC
22618 ADC <-> SBC
22619 by inverting the second operand, and
22620 ADD <-> SUB
22621 CMP <-> CMN
22622 by negating the second operand. */
bfae80f2 22623
c19d1205
ZW
22624static int
22625negate_data_op (unsigned long * instruction,
22626 unsigned long value)
bfae80f2 22627{
c19d1205
ZW
22628 int op, new_inst;
22629 unsigned long negated, inverted;
bfae80f2 22630
c19d1205
ZW
22631 negated = encode_arm_immediate (-value);
22632 inverted = encode_arm_immediate (~value);
bfae80f2 22633
c19d1205
ZW
22634 op = (*instruction >> DATA_OP_SHIFT) & 0xf;
22635 switch (op)
bfae80f2 22636 {
c19d1205
ZW
22637 /* First negates. */
22638 case OPCODE_SUB: /* ADD <-> SUB */
22639 new_inst = OPCODE_ADD;
22640 value = negated;
22641 break;
bfae80f2 22642
c19d1205
ZW
22643 case OPCODE_ADD:
22644 new_inst = OPCODE_SUB;
22645 value = negated;
22646 break;
bfae80f2 22647
c19d1205
ZW
22648 case OPCODE_CMP: /* CMP <-> CMN */
22649 new_inst = OPCODE_CMN;
22650 value = negated;
22651 break;
bfae80f2 22652
c19d1205
ZW
22653 case OPCODE_CMN:
22654 new_inst = OPCODE_CMP;
22655 value = negated;
22656 break;
bfae80f2 22657
c19d1205
ZW
22658 /* Now Inverted ops. */
22659 case OPCODE_MOV: /* MOV <-> MVN */
22660 new_inst = OPCODE_MVN;
22661 value = inverted;
22662 break;
bfae80f2 22663
c19d1205
ZW
22664 case OPCODE_MVN:
22665 new_inst = OPCODE_MOV;
22666 value = inverted;
22667 break;
bfae80f2 22668
c19d1205
ZW
22669 case OPCODE_AND: /* AND <-> BIC */
22670 new_inst = OPCODE_BIC;
22671 value = inverted;
22672 break;
bfae80f2 22673
c19d1205
ZW
22674 case OPCODE_BIC:
22675 new_inst = OPCODE_AND;
22676 value = inverted;
22677 break;
bfae80f2 22678
c19d1205
ZW
22679 case OPCODE_ADC: /* ADC <-> SBC */
22680 new_inst = OPCODE_SBC;
22681 value = inverted;
22682 break;
bfae80f2 22683
c19d1205
ZW
22684 case OPCODE_SBC:
22685 new_inst = OPCODE_ADC;
22686 value = inverted;
22687 break;
bfae80f2 22688
c19d1205
ZW
22689 /* We cannot do anything. */
22690 default:
22691 return FAIL;
b99bd4ef
NC
22692 }
22693
c19d1205
ZW
22694 if (value == (unsigned) FAIL)
22695 return FAIL;
22696
22697 *instruction &= OPCODE_MASK;
22698 *instruction |= new_inst << DATA_OP_SHIFT;
22699 return value;
b99bd4ef
NC
22700}
22701
ef8d22e6
PB
22702/* Like negate_data_op, but for Thumb-2. */
22703
22704static unsigned int
16dd5e42 22705thumb32_negate_data_op (offsetT *instruction, unsigned int value)
ef8d22e6
PB
22706{
22707 int op, new_inst;
22708 int rd;
16dd5e42 22709 unsigned int negated, inverted;
ef8d22e6
PB
22710
22711 negated = encode_thumb32_immediate (-value);
22712 inverted = encode_thumb32_immediate (~value);
22713
22714 rd = (*instruction >> 8) & 0xf;
22715 op = (*instruction >> T2_DATA_OP_SHIFT) & 0xf;
22716 switch (op)
22717 {
22718 /* ADD <-> SUB. Includes CMP <-> CMN. */
22719 case T2_OPCODE_SUB:
22720 new_inst = T2_OPCODE_ADD;
22721 value = negated;
22722 break;
22723
22724 case T2_OPCODE_ADD:
22725 new_inst = T2_OPCODE_SUB;
22726 value = negated;
22727 break;
22728
22729 /* ORR <-> ORN. Includes MOV <-> MVN. */
22730 case T2_OPCODE_ORR:
22731 new_inst = T2_OPCODE_ORN;
22732 value = inverted;
22733 break;
22734
22735 case T2_OPCODE_ORN:
22736 new_inst = T2_OPCODE_ORR;
22737 value = inverted;
22738 break;
22739
22740 /* AND <-> BIC. TST has no inverted equivalent. */
22741 case T2_OPCODE_AND:
22742 new_inst = T2_OPCODE_BIC;
22743 if (rd == 15)
22744 value = FAIL;
22745 else
22746 value = inverted;
22747 break;
22748
22749 case T2_OPCODE_BIC:
22750 new_inst = T2_OPCODE_AND;
22751 value = inverted;
22752 break;
22753
22754 /* ADC <-> SBC */
22755 case T2_OPCODE_ADC:
22756 new_inst = T2_OPCODE_SBC;
22757 value = inverted;
22758 break;
22759
22760 case T2_OPCODE_SBC:
22761 new_inst = T2_OPCODE_ADC;
22762 value = inverted;
22763 break;
22764
22765 /* We cannot do anything. */
22766 default:
22767 return FAIL;
22768 }
22769
16dd5e42 22770 if (value == (unsigned int)FAIL)
ef8d22e6
PB
22771 return FAIL;
22772
22773 *instruction &= T2_OPCODE_MASK;
22774 *instruction |= new_inst << T2_DATA_OP_SHIFT;
22775 return value;
22776}
22777
8f06b2d8
PB
22778/* Read a 32-bit thumb instruction from buf. */
22779static unsigned long
22780get_thumb32_insn (char * buf)
22781{
22782 unsigned long insn;
22783 insn = md_chars_to_number (buf, THUMB_SIZE) << 16;
22784 insn |= md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22785
22786 return insn;
22787}
22788
a8bc6c78
PB
22789
22790/* We usually want to set the low bit on the address of thumb function
22791 symbols. In particular .word foo - . should have the low bit set.
22792 Generic code tries to fold the difference of two symbols to
22793 a constant. Prevent this and force a relocation when the first symbols
22794 is a thumb function. */
c921be7d
NC
22795
22796bfd_boolean
a8bc6c78
PB
22797arm_optimize_expr (expressionS *l, operatorT op, expressionS *r)
22798{
22799 if (op == O_subtract
22800 && l->X_op == O_symbol
22801 && r->X_op == O_symbol
22802 && THUMB_IS_FUNC (l->X_add_symbol))
22803 {
22804 l->X_op = O_subtract;
22805 l->X_op_symbol = r->X_add_symbol;
22806 l->X_add_number -= r->X_add_number;
c921be7d 22807 return TRUE;
a8bc6c78 22808 }
c921be7d 22809
a8bc6c78 22810 /* Process as normal. */
c921be7d 22811 return FALSE;
a8bc6c78
PB
22812}
22813
4a42ebbc
RR
22814/* Encode Thumb2 unconditional branches and calls. The encoding
22815 for the 2 are identical for the immediate values. */
22816
22817static void
22818encode_thumb2_b_bl_offset (char * buf, offsetT value)
22819{
22820#define T2I1I2MASK ((1 << 13) | (1 << 11))
22821 offsetT newval;
22822 offsetT newval2;
22823 addressT S, I1, I2, lo, hi;
22824
22825 S = (value >> 24) & 0x01;
22826 I1 = (value >> 23) & 0x01;
22827 I2 = (value >> 22) & 0x01;
22828 hi = (value >> 12) & 0x3ff;
fa94de6b 22829 lo = (value >> 1) & 0x7ff;
4a42ebbc
RR
22830 newval = md_chars_to_number (buf, THUMB_SIZE);
22831 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
22832 newval |= (S << 10) | hi;
22833 newval2 &= ~T2I1I2MASK;
22834 newval2 |= (((I1 ^ S) << 13) | ((I2 ^ S) << 11) | lo) ^ T2I1I2MASK;
22835 md_number_to_chars (buf, newval, THUMB_SIZE);
22836 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
22837}
22838
c19d1205 22839void
55cf6793 22840md_apply_fix (fixS * fixP,
c19d1205
ZW
22841 valueT * valP,
22842 segT seg)
22843{
22844 offsetT value = * valP;
22845 offsetT newval;
22846 unsigned int newimm;
22847 unsigned long temp;
22848 int sign;
22849 char * buf = fixP->fx_where + fixP->fx_frag->fr_literal;
b99bd4ef 22850
9c2799c2 22851 gas_assert (fixP->fx_r_type <= BFD_RELOC_UNUSED);
b99bd4ef 22852
c19d1205 22853 /* Note whether this will delete the relocation. */
4962c51a 22854
c19d1205
ZW
22855 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
22856 fixP->fx_done = 1;
b99bd4ef 22857
adbaf948 22858 /* On a 64-bit host, silently truncate 'value' to 32 bits for
5f4273c7 22859 consistency with the behaviour on 32-bit hosts. Remember value
adbaf948
ZW
22860 for emit_reloc. */
22861 value &= 0xffffffff;
22862 value ^= 0x80000000;
5f4273c7 22863 value -= 0x80000000;
adbaf948
ZW
22864
22865 *valP = value;
c19d1205 22866 fixP->fx_addnumber = value;
b99bd4ef 22867
adbaf948
ZW
22868 /* Same treatment for fixP->fx_offset. */
22869 fixP->fx_offset &= 0xffffffff;
22870 fixP->fx_offset ^= 0x80000000;
22871 fixP->fx_offset -= 0x80000000;
22872
c19d1205 22873 switch (fixP->fx_r_type)
b99bd4ef 22874 {
c19d1205
ZW
22875 case BFD_RELOC_NONE:
22876 /* This will need to go in the object file. */
22877 fixP->fx_done = 0;
22878 break;
b99bd4ef 22879
c19d1205
ZW
22880 case BFD_RELOC_ARM_IMMEDIATE:
22881 /* We claim that this fixup has been processed here,
22882 even if in fact we generate an error because we do
22883 not have a reloc for it, so tc_gen_reloc will reject it. */
22884 fixP->fx_done = 1;
b99bd4ef 22885
77db8e2e 22886 if (fixP->fx_addsy)
b99bd4ef 22887 {
77db8e2e 22888 const char *msg = 0;
b99bd4ef 22889
77db8e2e
NC
22890 if (! S_IS_DEFINED (fixP->fx_addsy))
22891 msg = _("undefined symbol %s used as an immediate value");
22892 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
22893 msg = _("symbol %s is in a different section");
22894 else if (S_IS_WEAK (fixP->fx_addsy))
22895 msg = _("symbol %s is weak and may be overridden later");
22896
22897 if (msg)
22898 {
22899 as_bad_where (fixP->fx_file, fixP->fx_line,
22900 msg, S_GET_NAME (fixP->fx_addsy));
22901 break;
22902 }
42e5fcbf
AS
22903 }
22904
c19d1205
ZW
22905 temp = md_chars_to_number (buf, INSN_SIZE);
22906
5e73442d
SL
22907 /* If the offset is negative, we should use encoding A2 for ADR. */
22908 if ((temp & 0xfff0000) == 0x28f0000 && value < 0)
22909 newimm = negate_data_op (&temp, value);
22910 else
22911 {
22912 newimm = encode_arm_immediate (value);
22913
22914 /* If the instruction will fail, see if we can fix things up by
22915 changing the opcode. */
22916 if (newimm == (unsigned int) FAIL)
22917 newimm = negate_data_op (&temp, value);
bada4342
JW
22918 /* MOV accepts both ARM modified immediate (A1 encoding) and
22919 UINT16 (A2 encoding) when possible, MOVW only accepts UINT16.
22920 When disassembling, MOV is preferred when there is no encoding
22921 overlap. */
22922 if (newimm == (unsigned int) FAIL
22923 && ((temp >> DATA_OP_SHIFT) & 0xf) == OPCODE_MOV
22924 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
22925 && !((temp >> SBIT_SHIFT) & 0x1)
22926 && value >= 0 && value <= 0xffff)
22927 {
22928 /* Clear bits[23:20] to change encoding from A1 to A2. */
22929 temp &= 0xff0fffff;
22930 /* Encoding high 4bits imm. Code below will encode the remaining
22931 low 12bits. */
22932 temp |= (value & 0x0000f000) << 4;
22933 newimm = value & 0x00000fff;
22934 }
5e73442d
SL
22935 }
22936
22937 if (newimm == (unsigned int) FAIL)
b99bd4ef 22938 {
c19d1205
ZW
22939 as_bad_where (fixP->fx_file, fixP->fx_line,
22940 _("invalid constant (%lx) after fixup"),
22941 (unsigned long) value);
22942 break;
b99bd4ef 22943 }
b99bd4ef 22944
c19d1205
ZW
22945 newimm |= (temp & 0xfffff000);
22946 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
22947 break;
b99bd4ef 22948
c19d1205
ZW
22949 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
22950 {
22951 unsigned int highpart = 0;
22952 unsigned int newinsn = 0xe1a00000; /* nop. */
b99bd4ef 22953
77db8e2e 22954 if (fixP->fx_addsy)
42e5fcbf 22955 {
77db8e2e 22956 const char *msg = 0;
42e5fcbf 22957
77db8e2e
NC
22958 if (! S_IS_DEFINED (fixP->fx_addsy))
22959 msg = _("undefined symbol %s used as an immediate value");
22960 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
22961 msg = _("symbol %s is in a different section");
22962 else if (S_IS_WEAK (fixP->fx_addsy))
22963 msg = _("symbol %s is weak and may be overridden later");
42e5fcbf 22964
77db8e2e
NC
22965 if (msg)
22966 {
22967 as_bad_where (fixP->fx_file, fixP->fx_line,
22968 msg, S_GET_NAME (fixP->fx_addsy));
22969 break;
22970 }
22971 }
fa94de6b 22972
c19d1205
ZW
22973 newimm = encode_arm_immediate (value);
22974 temp = md_chars_to_number (buf, INSN_SIZE);
b99bd4ef 22975
c19d1205
ZW
22976 /* If the instruction will fail, see if we can fix things up by
22977 changing the opcode. */
22978 if (newimm == (unsigned int) FAIL
22979 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL)
22980 {
22981 /* No ? OK - try using two ADD instructions to generate
22982 the value. */
22983 newimm = validate_immediate_twopart (value, & highpart);
b99bd4ef 22984
c19d1205
ZW
22985 /* Yes - then make sure that the second instruction is
22986 also an add. */
22987 if (newimm != (unsigned int) FAIL)
22988 newinsn = temp;
22989 /* Still No ? Try using a negated value. */
22990 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL)
22991 temp = newinsn = (temp & OPCODE_MASK) | OPCODE_SUB << DATA_OP_SHIFT;
22992 /* Otherwise - give up. */
22993 else
22994 {
22995 as_bad_where (fixP->fx_file, fixP->fx_line,
22996 _("unable to compute ADRL instructions for PC offset of 0x%lx"),
22997 (long) value);
22998 break;
22999 }
b99bd4ef 23000
c19d1205
ZW
23001 /* Replace the first operand in the 2nd instruction (which
23002 is the PC) with the destination register. We have
23003 already added in the PC in the first instruction and we
23004 do not want to do it again. */
23005 newinsn &= ~ 0xf0000;
23006 newinsn |= ((newinsn & 0x0f000) << 4);
23007 }
b99bd4ef 23008
c19d1205
ZW
23009 newimm |= (temp & 0xfffff000);
23010 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE);
b99bd4ef 23011
c19d1205
ZW
23012 highpart |= (newinsn & 0xfffff000);
23013 md_number_to_chars (buf + INSN_SIZE, (valueT) highpart, INSN_SIZE);
23014 }
23015 break;
b99bd4ef 23016
c19d1205 23017 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
23018 if (!fixP->fx_done && seg->use_rela_p)
23019 value = 0;
1a0670f3 23020 /* Fall through. */
00a97672 23021
c19d1205 23022 case BFD_RELOC_ARM_LITERAL:
26d97720 23023 sign = value > 0;
b99bd4ef 23024
c19d1205
ZW
23025 if (value < 0)
23026 value = - value;
b99bd4ef 23027
c19d1205 23028 if (validate_offset_imm (value, 0) == FAIL)
f03698e6 23029 {
c19d1205
ZW
23030 if (fixP->fx_r_type == BFD_RELOC_ARM_LITERAL)
23031 as_bad_where (fixP->fx_file, fixP->fx_line,
23032 _("invalid literal constant: pool needs to be closer"));
23033 else
23034 as_bad_where (fixP->fx_file, fixP->fx_line,
23035 _("bad immediate value for offset (%ld)"),
23036 (long) value);
23037 break;
f03698e6
RE
23038 }
23039
c19d1205 23040 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
23041 if (value == 0)
23042 newval &= 0xfffff000;
23043 else
23044 {
23045 newval &= 0xff7ff000;
23046 newval |= value | (sign ? INDEX_UP : 0);
23047 }
c19d1205
ZW
23048 md_number_to_chars (buf, newval, INSN_SIZE);
23049 break;
b99bd4ef 23050
c19d1205
ZW
23051 case BFD_RELOC_ARM_OFFSET_IMM8:
23052 case BFD_RELOC_ARM_HWLITERAL:
26d97720 23053 sign = value > 0;
b99bd4ef 23054
c19d1205
ZW
23055 if (value < 0)
23056 value = - value;
b99bd4ef 23057
c19d1205 23058 if (validate_offset_imm (value, 1) == FAIL)
b99bd4ef 23059 {
c19d1205
ZW
23060 if (fixP->fx_r_type == BFD_RELOC_ARM_HWLITERAL)
23061 as_bad_where (fixP->fx_file, fixP->fx_line,
23062 _("invalid literal constant: pool needs to be closer"));
23063 else
427d0db6
RM
23064 as_bad_where (fixP->fx_file, fixP->fx_line,
23065 _("bad immediate value for 8-bit offset (%ld)"),
23066 (long) value);
c19d1205 23067 break;
b99bd4ef
NC
23068 }
23069
c19d1205 23070 newval = md_chars_to_number (buf, INSN_SIZE);
26d97720
NS
23071 if (value == 0)
23072 newval &= 0xfffff0f0;
23073 else
23074 {
23075 newval &= 0xff7ff0f0;
23076 newval |= ((value >> 4) << 8) | (value & 0xf) | (sign ? INDEX_UP : 0);
23077 }
c19d1205
ZW
23078 md_number_to_chars (buf, newval, INSN_SIZE);
23079 break;
b99bd4ef 23080
c19d1205
ZW
23081 case BFD_RELOC_ARM_T32_OFFSET_U8:
23082 if (value < 0 || value > 1020 || value % 4 != 0)
23083 as_bad_where (fixP->fx_file, fixP->fx_line,
23084 _("bad immediate value for offset (%ld)"), (long) value);
23085 value /= 4;
b99bd4ef 23086
c19d1205 23087 newval = md_chars_to_number (buf+2, THUMB_SIZE);
c19d1205
ZW
23088 newval |= value;
23089 md_number_to_chars (buf+2, newval, THUMB_SIZE);
23090 break;
b99bd4ef 23091
c19d1205
ZW
23092 case BFD_RELOC_ARM_T32_OFFSET_IMM:
23093 /* This is a complicated relocation used for all varieties of Thumb32
23094 load/store instruction with immediate offset:
23095
23096 1110 100P u1WL NNNN XXXX YYYY iiii iiii - +/-(U) pre/post(P) 8-bit,
477330fc 23097 *4, optional writeback(W)
c19d1205
ZW
23098 (doubleword load/store)
23099
23100 1111 100S uTTL 1111 XXXX iiii iiii iiii - +/-(U) 12-bit PC-rel
23101 1111 100S 0TTL NNNN XXXX 1Pu1 iiii iiii - +/-(U) pre/post(P) 8-bit
23102 1111 100S 0TTL NNNN XXXX 1110 iiii iiii - positive 8-bit (T instruction)
23103 1111 100S 1TTL NNNN XXXX iiii iiii iiii - positive 12-bit
23104 1111 100S 0TTL NNNN XXXX 1100 iiii iiii - negative 8-bit
23105
23106 Uppercase letters indicate bits that are already encoded at
23107 this point. Lowercase letters are our problem. For the
23108 second block of instructions, the secondary opcode nybble
23109 (bits 8..11) is present, and bit 23 is zero, even if this is
23110 a PC-relative operation. */
23111 newval = md_chars_to_number (buf, THUMB_SIZE);
23112 newval <<= 16;
23113 newval |= md_chars_to_number (buf+THUMB_SIZE, THUMB_SIZE);
b99bd4ef 23114
c19d1205 23115 if ((newval & 0xf0000000) == 0xe0000000)
b99bd4ef 23116 {
c19d1205
ZW
23117 /* Doubleword load/store: 8-bit offset, scaled by 4. */
23118 if (value >= 0)
23119 newval |= (1 << 23);
23120 else
23121 value = -value;
23122 if (value % 4 != 0)
23123 {
23124 as_bad_where (fixP->fx_file, fixP->fx_line,
23125 _("offset not a multiple of 4"));
23126 break;
23127 }
23128 value /= 4;
216d22bc 23129 if (value > 0xff)
c19d1205
ZW
23130 {
23131 as_bad_where (fixP->fx_file, fixP->fx_line,
23132 _("offset out of range"));
23133 break;
23134 }
23135 newval &= ~0xff;
b99bd4ef 23136 }
c19d1205 23137 else if ((newval & 0x000f0000) == 0x000f0000)
b99bd4ef 23138 {
c19d1205
ZW
23139 /* PC-relative, 12-bit offset. */
23140 if (value >= 0)
23141 newval |= (1 << 23);
23142 else
23143 value = -value;
216d22bc 23144 if (value > 0xfff)
c19d1205
ZW
23145 {
23146 as_bad_where (fixP->fx_file, fixP->fx_line,
23147 _("offset out of range"));
23148 break;
23149 }
23150 newval &= ~0xfff;
b99bd4ef 23151 }
c19d1205 23152 else if ((newval & 0x00000100) == 0x00000100)
b99bd4ef 23153 {
c19d1205
ZW
23154 /* Writeback: 8-bit, +/- offset. */
23155 if (value >= 0)
23156 newval |= (1 << 9);
23157 else
23158 value = -value;
216d22bc 23159 if (value > 0xff)
c19d1205
ZW
23160 {
23161 as_bad_where (fixP->fx_file, fixP->fx_line,
23162 _("offset out of range"));
23163 break;
23164 }
23165 newval &= ~0xff;
b99bd4ef 23166 }
c19d1205 23167 else if ((newval & 0x00000f00) == 0x00000e00)
b99bd4ef 23168 {
c19d1205 23169 /* T-instruction: positive 8-bit offset. */
216d22bc 23170 if (value < 0 || value > 0xff)
b99bd4ef 23171 {
c19d1205
ZW
23172 as_bad_where (fixP->fx_file, fixP->fx_line,
23173 _("offset out of range"));
23174 break;
b99bd4ef 23175 }
c19d1205
ZW
23176 newval &= ~0xff;
23177 newval |= value;
b99bd4ef
NC
23178 }
23179 else
b99bd4ef 23180 {
c19d1205
ZW
23181 /* Positive 12-bit or negative 8-bit offset. */
23182 int limit;
23183 if (value >= 0)
b99bd4ef 23184 {
c19d1205
ZW
23185 newval |= (1 << 23);
23186 limit = 0xfff;
23187 }
23188 else
23189 {
23190 value = -value;
23191 limit = 0xff;
23192 }
23193 if (value > limit)
23194 {
23195 as_bad_where (fixP->fx_file, fixP->fx_line,
23196 _("offset out of range"));
23197 break;
b99bd4ef 23198 }
c19d1205 23199 newval &= ~limit;
b99bd4ef 23200 }
b99bd4ef 23201
c19d1205
ZW
23202 newval |= value;
23203 md_number_to_chars (buf, (newval >> 16) & 0xffff, THUMB_SIZE);
23204 md_number_to_chars (buf + THUMB_SIZE, newval & 0xffff, THUMB_SIZE);
23205 break;
404ff6b5 23206
c19d1205
ZW
23207 case BFD_RELOC_ARM_SHIFT_IMM:
23208 newval = md_chars_to_number (buf, INSN_SIZE);
23209 if (((unsigned long) value) > 32
23210 || (value == 32
23211 && (((newval & 0x60) == 0) || (newval & 0x60) == 0x60)))
23212 {
23213 as_bad_where (fixP->fx_file, fixP->fx_line,
23214 _("shift expression is too large"));
23215 break;
23216 }
404ff6b5 23217
c19d1205
ZW
23218 if (value == 0)
23219 /* Shifts of zero must be done as lsl. */
23220 newval &= ~0x60;
23221 else if (value == 32)
23222 value = 0;
23223 newval &= 0xfffff07f;
23224 newval |= (value & 0x1f) << 7;
23225 md_number_to_chars (buf, newval, INSN_SIZE);
23226 break;
404ff6b5 23227
c19d1205 23228 case BFD_RELOC_ARM_T32_IMMEDIATE:
16805f35 23229 case BFD_RELOC_ARM_T32_ADD_IMM:
92e90b6e 23230 case BFD_RELOC_ARM_T32_IMM12:
e9f89963 23231 case BFD_RELOC_ARM_T32_ADD_PC12:
c19d1205
ZW
23232 /* We claim that this fixup has been processed here,
23233 even if in fact we generate an error because we do
23234 not have a reloc for it, so tc_gen_reloc will reject it. */
23235 fixP->fx_done = 1;
404ff6b5 23236
c19d1205
ZW
23237 if (fixP->fx_addsy
23238 && ! S_IS_DEFINED (fixP->fx_addsy))
23239 {
23240 as_bad_where (fixP->fx_file, fixP->fx_line,
23241 _("undefined symbol %s used as an immediate value"),
23242 S_GET_NAME (fixP->fx_addsy));
23243 break;
23244 }
404ff6b5 23245
c19d1205
ZW
23246 newval = md_chars_to_number (buf, THUMB_SIZE);
23247 newval <<= 16;
23248 newval |= md_chars_to_number (buf+2, THUMB_SIZE);
404ff6b5 23249
16805f35 23250 newimm = FAIL;
bada4342
JW
23251 if ((fixP->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
23252 /* ARMv8-M Baseline MOV will reach here, but it doesn't support
23253 Thumb2 modified immediate encoding (T2). */
23254 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
16805f35 23255 || fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
ef8d22e6
PB
23256 {
23257 newimm = encode_thumb32_immediate (value);
23258 if (newimm == (unsigned int) FAIL)
23259 newimm = thumb32_negate_data_op (&newval, value);
23260 }
bada4342 23261 if (newimm == (unsigned int) FAIL)
92e90b6e 23262 {
bada4342 23263 if (fixP->fx_r_type != BFD_RELOC_ARM_T32_IMMEDIATE)
e9f89963 23264 {
bada4342
JW
23265 /* Turn add/sum into addw/subw. */
23266 if (fixP->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM)
23267 newval = (newval & 0xfeffffff) | 0x02000000;
23268 /* No flat 12-bit imm encoding for addsw/subsw. */
23269 if ((newval & 0x00100000) == 0)
40f246e3 23270 {
bada4342
JW
23271 /* 12 bit immediate for addw/subw. */
23272 if (value < 0)
23273 {
23274 value = -value;
23275 newval ^= 0x00a00000;
23276 }
23277 if (value > 0xfff)
23278 newimm = (unsigned int) FAIL;
23279 else
23280 newimm = value;
23281 }
23282 }
23283 else
23284 {
23285 /* MOV accepts both Thumb2 modified immediate (T2 encoding) and
23286 UINT16 (T3 encoding), MOVW only accepts UINT16. When
23287 disassembling, MOV is preferred when there is no encoding
23288 overlap.
23289 NOTE: MOV is using ORR opcode under Thumb 2 mode. */
23290 if (((newval >> T2_DATA_OP_SHIFT) & 0xf) == T2_OPCODE_ORR
23291 && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m)
23292 && !((newval >> T2_SBIT_SHIFT) & 0x1)
23293 && value >= 0 && value <=0xffff)
23294 {
23295 /* Toggle bit[25] to change encoding from T2 to T3. */
23296 newval ^= 1 << 25;
23297 /* Clear bits[19:16]. */
23298 newval &= 0xfff0ffff;
23299 /* Encoding high 4bits imm. Code below will encode the
23300 remaining low 12bits. */
23301 newval |= (value & 0x0000f000) << 4;
23302 newimm = value & 0x00000fff;
40f246e3 23303 }
e9f89963 23304 }
92e90b6e 23305 }
cc8a6dd0 23306
c19d1205 23307 if (newimm == (unsigned int)FAIL)
3631a3c8 23308 {
c19d1205
ZW
23309 as_bad_where (fixP->fx_file, fixP->fx_line,
23310 _("invalid constant (%lx) after fixup"),
23311 (unsigned long) value);
23312 break;
3631a3c8
NC
23313 }
23314
c19d1205
ZW
23315 newval |= (newimm & 0x800) << 15;
23316 newval |= (newimm & 0x700) << 4;
23317 newval |= (newimm & 0x0ff);
cc8a6dd0 23318
c19d1205
ZW
23319 md_number_to_chars (buf, (valueT) ((newval >> 16) & 0xffff), THUMB_SIZE);
23320 md_number_to_chars (buf+2, (valueT) (newval & 0xffff), THUMB_SIZE);
23321 break;
a737bd4d 23322
3eb17e6b 23323 case BFD_RELOC_ARM_SMC:
c19d1205
ZW
23324 if (((unsigned long) value) > 0xffff)
23325 as_bad_where (fixP->fx_file, fixP->fx_line,
3eb17e6b 23326 _("invalid smc expression"));
2fc8bdac 23327 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
23328 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
23329 md_number_to_chars (buf, newval, INSN_SIZE);
23330 break;
a737bd4d 23331
90ec0d68
MGD
23332 case BFD_RELOC_ARM_HVC:
23333 if (((unsigned long) value) > 0xffff)
23334 as_bad_where (fixP->fx_file, fixP->fx_line,
23335 _("invalid hvc expression"));
23336 newval = md_chars_to_number (buf, INSN_SIZE);
23337 newval |= (value & 0xf) | ((value & 0xfff0) << 4);
23338 md_number_to_chars (buf, newval, INSN_SIZE);
23339 break;
23340
c19d1205 23341 case BFD_RELOC_ARM_SWI:
adbaf948 23342 if (fixP->tc_fix_data != 0)
c19d1205
ZW
23343 {
23344 if (((unsigned long) value) > 0xff)
23345 as_bad_where (fixP->fx_file, fixP->fx_line,
23346 _("invalid swi expression"));
2fc8bdac 23347 newval = md_chars_to_number (buf, THUMB_SIZE);
c19d1205
ZW
23348 newval |= value;
23349 md_number_to_chars (buf, newval, THUMB_SIZE);
23350 }
23351 else
23352 {
23353 if (((unsigned long) value) > 0x00ffffff)
23354 as_bad_where (fixP->fx_file, fixP->fx_line,
23355 _("invalid swi expression"));
2fc8bdac 23356 newval = md_chars_to_number (buf, INSN_SIZE);
c19d1205
ZW
23357 newval |= value;
23358 md_number_to_chars (buf, newval, INSN_SIZE);
23359 }
23360 break;
a737bd4d 23361
c19d1205
ZW
23362 case BFD_RELOC_ARM_MULTI:
23363 if (((unsigned long) value) > 0xffff)
23364 as_bad_where (fixP->fx_file, fixP->fx_line,
23365 _("invalid expression in load/store multiple"));
23366 newval = value | md_chars_to_number (buf, INSN_SIZE);
23367 md_number_to_chars (buf, newval, INSN_SIZE);
23368 break;
a737bd4d 23369
c19d1205 23370#ifdef OBJ_ELF
39b41c9c 23371 case BFD_RELOC_ARM_PCREL_CALL:
267bf995
RR
23372
23373 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23374 && fixP->fx_addsy
34e77a92 23375 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23376 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23377 && THUMB_IS_FUNC (fixP->fx_addsy))
23378 /* Flip the bl to blx. This is a simple flip
23379 bit here because we generate PCREL_CALL for
23380 unconditional bls. */
23381 {
23382 newval = md_chars_to_number (buf, INSN_SIZE);
23383 newval = newval | 0x10000000;
23384 md_number_to_chars (buf, newval, INSN_SIZE);
23385 temp = 1;
23386 fixP->fx_done = 1;
23387 }
39b41c9c
PB
23388 else
23389 temp = 3;
23390 goto arm_branch_common;
23391
23392 case BFD_RELOC_ARM_PCREL_JUMP:
267bf995
RR
23393 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23394 && fixP->fx_addsy
34e77a92 23395 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23396 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23397 && THUMB_IS_FUNC (fixP->fx_addsy))
23398 {
23399 /* This would map to a bl<cond>, b<cond>,
23400 b<always> to a Thumb function. We
23401 need to force a relocation for this particular
23402 case. */
23403 newval = md_chars_to_number (buf, INSN_SIZE);
23404 fixP->fx_done = 0;
23405 }
1a0670f3 23406 /* Fall through. */
267bf995 23407
2fc8bdac 23408 case BFD_RELOC_ARM_PLT32:
c19d1205 23409#endif
39b41c9c
PB
23410 case BFD_RELOC_ARM_PCREL_BRANCH:
23411 temp = 3;
23412 goto arm_branch_common;
a737bd4d 23413
39b41c9c 23414 case BFD_RELOC_ARM_PCREL_BLX:
267bf995 23415
39b41c9c 23416 temp = 1;
267bf995
RR
23417 if (ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
23418 && fixP->fx_addsy
34e77a92 23419 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23420 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23421 && ARM_IS_FUNC (fixP->fx_addsy))
23422 {
23423 /* Flip the blx to a bl and warn. */
23424 const char *name = S_GET_NAME (fixP->fx_addsy);
23425 newval = 0xeb000000;
23426 as_warn_where (fixP->fx_file, fixP->fx_line,
23427 _("blx to '%s' an ARM ISA state function changed to bl"),
23428 name);
23429 md_number_to_chars (buf, newval, INSN_SIZE);
23430 temp = 3;
23431 fixP->fx_done = 1;
23432 }
23433
23434#ifdef OBJ_ELF
23435 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
477330fc 23436 fixP->fx_r_type = BFD_RELOC_ARM_PCREL_CALL;
267bf995
RR
23437#endif
23438
39b41c9c 23439 arm_branch_common:
c19d1205 23440 /* We are going to store value (shifted right by two) in the
39b41c9c
PB
23441 instruction, in a 24 bit, signed field. Bits 26 through 32 either
23442 all clear or all set and bit 0 must be clear. For B/BL bit 1 must
23443 also be be clear. */
23444 if (value & temp)
c19d1205 23445 as_bad_where (fixP->fx_file, fixP->fx_line,
2fc8bdac
ZW
23446 _("misaligned branch destination"));
23447 if ((value & (offsetT)0xfe000000) != (offsetT)0
23448 && (value & (offsetT)0xfe000000) != (offsetT)0xfe000000)
08f10d51 23449 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23450
2fc8bdac 23451 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 23452 {
2fc8bdac
ZW
23453 newval = md_chars_to_number (buf, INSN_SIZE);
23454 newval |= (value >> 2) & 0x00ffffff;
7ae2971b
PB
23455 /* Set the H bit on BLX instructions. */
23456 if (temp == 1)
23457 {
23458 if (value & 2)
23459 newval |= 0x01000000;
23460 else
23461 newval &= ~0x01000000;
23462 }
2fc8bdac 23463 md_number_to_chars (buf, newval, INSN_SIZE);
c19d1205 23464 }
c19d1205 23465 break;
a737bd4d 23466
25fe350b
MS
23467 case BFD_RELOC_THUMB_PCREL_BRANCH7: /* CBZ */
23468 /* CBZ can only branch forward. */
a737bd4d 23469
738755b0 23470 /* Attempts to use CBZ to branch to the next instruction
477330fc
RM
23471 (which, strictly speaking, are prohibited) will be turned into
23472 no-ops.
738755b0
MS
23473
23474 FIXME: It may be better to remove the instruction completely and
23475 perform relaxation. */
23476 if (value == -2)
2fc8bdac
ZW
23477 {
23478 newval = md_chars_to_number (buf, THUMB_SIZE);
738755b0 23479 newval = 0xbf00; /* NOP encoding T1 */
2fc8bdac
ZW
23480 md_number_to_chars (buf, newval, THUMB_SIZE);
23481 }
738755b0
MS
23482 else
23483 {
23484 if (value & ~0x7e)
08f10d51 23485 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
738755b0 23486
477330fc 23487 if (fixP->fx_done || !seg->use_rela_p)
738755b0
MS
23488 {
23489 newval = md_chars_to_number (buf, THUMB_SIZE);
23490 newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3);
23491 md_number_to_chars (buf, newval, THUMB_SIZE);
23492 }
23493 }
c19d1205 23494 break;
a737bd4d 23495
c19d1205 23496 case BFD_RELOC_THUMB_PCREL_BRANCH9: /* Conditional branch. */
2fc8bdac 23497 if ((value & ~0xff) && ((value & ~0xff) != ~0xff))
08f10d51 23498 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23499
2fc8bdac
ZW
23500 if (fixP->fx_done || !seg->use_rela_p)
23501 {
23502 newval = md_chars_to_number (buf, THUMB_SIZE);
23503 newval |= (value & 0x1ff) >> 1;
23504 md_number_to_chars (buf, newval, THUMB_SIZE);
23505 }
c19d1205 23506 break;
a737bd4d 23507
c19d1205 23508 case BFD_RELOC_THUMB_PCREL_BRANCH12: /* Unconditional branch. */
2fc8bdac 23509 if ((value & ~0x7ff) && ((value & ~0x7ff) != ~0x7ff))
08f10d51 23510 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
a737bd4d 23511
2fc8bdac
ZW
23512 if (fixP->fx_done || !seg->use_rela_p)
23513 {
23514 newval = md_chars_to_number (buf, THUMB_SIZE);
23515 newval |= (value & 0xfff) >> 1;
23516 md_number_to_chars (buf, newval, THUMB_SIZE);
23517 }
c19d1205 23518 break;
a737bd4d 23519
c19d1205 23520 case BFD_RELOC_THUMB_PCREL_BRANCH20:
267bf995
RR
23521 if (fixP->fx_addsy
23522 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 23523 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23524 && ARM_IS_FUNC (fixP->fx_addsy)
23525 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
23526 {
23527 /* Force a relocation for a branch 20 bits wide. */
23528 fixP->fx_done = 0;
23529 }
08f10d51 23530 if ((value & ~0x1fffff) && ((value & ~0x0fffff) != ~0x0fffff))
2fc8bdac
ZW
23531 as_bad_where (fixP->fx_file, fixP->fx_line,
23532 _("conditional branch out of range"));
404ff6b5 23533
2fc8bdac
ZW
23534 if (fixP->fx_done || !seg->use_rela_p)
23535 {
23536 offsetT newval2;
23537 addressT S, J1, J2, lo, hi;
404ff6b5 23538
2fc8bdac
ZW
23539 S = (value & 0x00100000) >> 20;
23540 J2 = (value & 0x00080000) >> 19;
23541 J1 = (value & 0x00040000) >> 18;
23542 hi = (value & 0x0003f000) >> 12;
23543 lo = (value & 0x00000ffe) >> 1;
6c43fab6 23544
2fc8bdac
ZW
23545 newval = md_chars_to_number (buf, THUMB_SIZE);
23546 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23547 newval |= (S << 10) | hi;
23548 newval2 |= (J1 << 13) | (J2 << 11) | lo;
23549 md_number_to_chars (buf, newval, THUMB_SIZE);
23550 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);
23551 }
c19d1205 23552 break;
6c43fab6 23553
c19d1205 23554 case BFD_RELOC_THUMB_PCREL_BLX:
267bf995
RR
23555 /* If there is a blx from a thumb state function to
23556 another thumb function flip this to a bl and warn
23557 about it. */
23558
23559 if (fixP->fx_addsy
34e77a92 23560 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23561 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
23562 && THUMB_IS_FUNC (fixP->fx_addsy))
23563 {
23564 const char *name = S_GET_NAME (fixP->fx_addsy);
23565 as_warn_where (fixP->fx_file, fixP->fx_line,
23566 _("blx to Thumb func '%s' from Thumb ISA state changed to bl"),
23567 name);
23568 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23569 newval = newval | 0x1000;
23570 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
23571 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
23572 fixP->fx_done = 1;
23573 }
23574
23575
23576 goto thumb_bl_common;
23577
c19d1205 23578 case BFD_RELOC_THUMB_PCREL_BRANCH23:
267bf995
RR
23579 /* A bl from Thumb state ISA to an internal ARM state function
23580 is converted to a blx. */
23581 if (fixP->fx_addsy
23582 && (S_GET_SEGMENT (fixP->fx_addsy) == seg)
34e77a92 23583 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE)
267bf995
RR
23584 && ARM_IS_FUNC (fixP->fx_addsy)
23585 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t))
23586 {
23587 newval = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
23588 newval = newval & ~0x1000;
23589 md_number_to_chars (buf+THUMB_SIZE, newval, THUMB_SIZE);
23590 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BLX;
23591 fixP->fx_done = 1;
23592 }
23593
23594 thumb_bl_common:
23595
2fc8bdac
ZW
23596 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
23597 /* For a BLX instruction, make sure that the relocation is rounded up
23598 to a word boundary. This follows the semantics of the instruction
23599 which specifies that bit 1 of the target address will come from bit
23600 1 of the base address. */
d406f3e4
JB
23601 value = (value + 3) & ~ 3;
23602
23603#ifdef OBJ_ELF
23604 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4
23605 && fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BLX)
23606 fixP->fx_r_type = BFD_RELOC_THUMB_PCREL_BRANCH23;
23607#endif
404ff6b5 23608
2b2f5df9
NC
23609 if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
23610 {
fc289b0a 23611 if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)))
2b2f5df9
NC
23612 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
23613 else if ((value & ~0x1ffffff)
23614 && ((value & ~0x1ffffff) != ~0x1ffffff))
23615 as_bad_where (fixP->fx_file, fixP->fx_line,
23616 _("Thumb2 branch out of range"));
23617 }
4a42ebbc
RR
23618
23619 if (fixP->fx_done || !seg->use_rela_p)
23620 encode_thumb2_b_bl_offset (buf, value);
23621
c19d1205 23622 break;
404ff6b5 23623
c19d1205 23624 case BFD_RELOC_THUMB_PCREL_BRANCH25:
08f10d51
NC
23625 if ((value & ~0x0ffffff) && ((value & ~0x0ffffff) != ~0x0ffffff))
23626 as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
6c43fab6 23627
2fc8bdac 23628 if (fixP->fx_done || !seg->use_rela_p)
4a42ebbc 23629 encode_thumb2_b_bl_offset (buf, value);
6c43fab6 23630
2fc8bdac 23631 break;
a737bd4d 23632
2fc8bdac
ZW
23633 case BFD_RELOC_8:
23634 if (fixP->fx_done || !seg->use_rela_p)
4b1a927e 23635 *buf = value;
c19d1205 23636 break;
a737bd4d 23637
c19d1205 23638 case BFD_RELOC_16:
2fc8bdac 23639 if (fixP->fx_done || !seg->use_rela_p)
c19d1205 23640 md_number_to_chars (buf, value, 2);
c19d1205 23641 break;
a737bd4d 23642
c19d1205 23643#ifdef OBJ_ELF
0855e32b
NS
23644 case BFD_RELOC_ARM_TLS_CALL:
23645 case BFD_RELOC_ARM_THM_TLS_CALL:
23646 case BFD_RELOC_ARM_TLS_DESCSEQ:
23647 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
0855e32b 23648 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205
ZW
23649 case BFD_RELOC_ARM_TLS_GD32:
23650 case BFD_RELOC_ARM_TLS_LE32:
23651 case BFD_RELOC_ARM_TLS_IE32:
23652 case BFD_RELOC_ARM_TLS_LDM32:
23653 case BFD_RELOC_ARM_TLS_LDO32:
23654 S_SET_THREAD_LOCAL (fixP->fx_addsy);
4b1a927e 23655 break;
6c43fab6 23656
c19d1205
ZW
23657 case BFD_RELOC_ARM_GOT32:
23658 case BFD_RELOC_ARM_GOTOFF:
c19d1205 23659 break;
b43420e6
NC
23660
23661 case BFD_RELOC_ARM_GOT_PREL:
23662 if (fixP->fx_done || !seg->use_rela_p)
477330fc 23663 md_number_to_chars (buf, value, 4);
b43420e6
NC
23664 break;
23665
9a6f4e97
NS
23666 case BFD_RELOC_ARM_TARGET2:
23667 /* TARGET2 is not partial-inplace, so we need to write the
477330fc
RM
23668 addend here for REL targets, because it won't be written out
23669 during reloc processing later. */
9a6f4e97
NS
23670 if (fixP->fx_done || !seg->use_rela_p)
23671 md_number_to_chars (buf, fixP->fx_offset, 4);
23672 break;
c19d1205 23673#endif
6c43fab6 23674
c19d1205
ZW
23675 case BFD_RELOC_RVA:
23676 case BFD_RELOC_32:
23677 case BFD_RELOC_ARM_TARGET1:
23678 case BFD_RELOC_ARM_ROSEGREL32:
23679 case BFD_RELOC_ARM_SBREL32:
23680 case BFD_RELOC_32_PCREL:
f0927246
NC
23681#ifdef TE_PE
23682 case BFD_RELOC_32_SECREL:
23683#endif
2fc8bdac 23684 if (fixP->fx_done || !seg->use_rela_p)
53baae48
NC
23685#ifdef TE_WINCE
23686 /* For WinCE we only do this for pcrel fixups. */
23687 if (fixP->fx_done || fixP->fx_pcrel)
23688#endif
23689 md_number_to_chars (buf, value, 4);
c19d1205 23690 break;
6c43fab6 23691
c19d1205
ZW
23692#ifdef OBJ_ELF
23693 case BFD_RELOC_ARM_PREL31:
2fc8bdac 23694 if (fixP->fx_done || !seg->use_rela_p)
c19d1205
ZW
23695 {
23696 newval = md_chars_to_number (buf, 4) & 0x80000000;
23697 if ((value ^ (value >> 1)) & 0x40000000)
23698 {
23699 as_bad_where (fixP->fx_file, fixP->fx_line,
23700 _("rel31 relocation overflow"));
23701 }
23702 newval |= value & 0x7fffffff;
23703 md_number_to_chars (buf, newval, 4);
23704 }
23705 break;
c19d1205 23706#endif
a737bd4d 23707
c19d1205 23708 case BFD_RELOC_ARM_CP_OFF_IMM:
8f06b2d8 23709 case BFD_RELOC_ARM_T32_CP_OFF_IMM:
9db2f6b4
RL
23710 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM)
23711 newval = md_chars_to_number (buf, INSN_SIZE);
23712 else
23713 newval = get_thumb32_insn (buf);
23714 if ((newval & 0x0f200f00) == 0x0d000900)
23715 {
23716 /* This is a fp16 vstr/vldr. The immediate offset in the mnemonic
23717 has permitted values that are multiples of 2, in the range 0
23718 to 510. */
23719 if (value < -510 || value > 510 || (value & 1))
23720 as_bad_where (fixP->fx_file, fixP->fx_line,
23721 _("co-processor offset out of range"));
23722 }
23723 else if (value < -1023 || value > 1023 || (value & 3))
c19d1205
ZW
23724 as_bad_where (fixP->fx_file, fixP->fx_line,
23725 _("co-processor offset out of range"));
23726 cp_off_common:
26d97720 23727 sign = value > 0;
c19d1205
ZW
23728 if (value < 0)
23729 value = -value;
8f06b2d8
PB
23730 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23731 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
23732 newval = md_chars_to_number (buf, INSN_SIZE);
23733 else
23734 newval = get_thumb32_insn (buf);
26d97720
NS
23735 if (value == 0)
23736 newval &= 0xffffff00;
23737 else
23738 {
23739 newval &= 0xff7fff00;
9db2f6b4
RL
23740 if ((newval & 0x0f200f00) == 0x0d000900)
23741 {
23742 /* This is a fp16 vstr/vldr.
23743
23744 It requires the immediate offset in the instruction is shifted
23745 left by 1 to be a half-word offset.
23746
23747 Here, left shift by 1 first, and later right shift by 2
23748 should get the right offset. */
23749 value <<= 1;
23750 }
26d97720
NS
23751 newval |= (value >> 2) | (sign ? INDEX_UP : 0);
23752 }
8f06b2d8
PB
23753 if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
23754 || fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2)
23755 md_number_to_chars (buf, newval, INSN_SIZE);
23756 else
23757 put_thumb32_insn (buf, newval);
c19d1205 23758 break;
a737bd4d 23759
c19d1205 23760 case BFD_RELOC_ARM_CP_OFF_IMM_S2:
8f06b2d8 23761 case BFD_RELOC_ARM_T32_CP_OFF_IMM_S2:
c19d1205
ZW
23762 if (value < -255 || value > 255)
23763 as_bad_where (fixP->fx_file, fixP->fx_line,
23764 _("co-processor offset out of range"));
df7849c5 23765 value *= 4;
c19d1205 23766 goto cp_off_common;
6c43fab6 23767
c19d1205
ZW
23768 case BFD_RELOC_ARM_THUMB_OFFSET:
23769 newval = md_chars_to_number (buf, THUMB_SIZE);
23770 /* Exactly what ranges, and where the offset is inserted depends
23771 on the type of instruction, we can establish this from the
23772 top 4 bits. */
23773 switch (newval >> 12)
23774 {
23775 case 4: /* PC load. */
23776 /* Thumb PC loads are somewhat odd, bit 1 of the PC is
23777 forced to zero for these loads; md_pcrel_from has already
23778 compensated for this. */
23779 if (value & 3)
23780 as_bad_where (fixP->fx_file, fixP->fx_line,
23781 _("invalid offset, target not word aligned (0x%08lX)"),
0359e808
NC
23782 (((unsigned long) fixP->fx_frag->fr_address
23783 + (unsigned long) fixP->fx_where) & ~3)
23784 + (unsigned long) value);
a737bd4d 23785
c19d1205
ZW
23786 if (value & ~0x3fc)
23787 as_bad_where (fixP->fx_file, fixP->fx_line,
23788 _("invalid offset, value too big (0x%08lX)"),
23789 (long) value);
a737bd4d 23790
c19d1205
ZW
23791 newval |= value >> 2;
23792 break;
a737bd4d 23793
c19d1205
ZW
23794 case 9: /* SP load/store. */
23795 if (value & ~0x3fc)
23796 as_bad_where (fixP->fx_file, fixP->fx_line,
23797 _("invalid offset, value too big (0x%08lX)"),
23798 (long) value);
23799 newval |= value >> 2;
23800 break;
6c43fab6 23801
c19d1205
ZW
23802 case 6: /* Word load/store. */
23803 if (value & ~0x7c)
23804 as_bad_where (fixP->fx_file, fixP->fx_line,
23805 _("invalid offset, value too big (0x%08lX)"),
23806 (long) value);
23807 newval |= value << 4; /* 6 - 2. */
23808 break;
a737bd4d 23809
c19d1205
ZW
23810 case 7: /* Byte load/store. */
23811 if (value & ~0x1f)
23812 as_bad_where (fixP->fx_file, fixP->fx_line,
23813 _("invalid offset, value too big (0x%08lX)"),
23814 (long) value);
23815 newval |= value << 6;
23816 break;
a737bd4d 23817
c19d1205
ZW
23818 case 8: /* Halfword load/store. */
23819 if (value & ~0x3e)
23820 as_bad_where (fixP->fx_file, fixP->fx_line,
23821 _("invalid offset, value too big (0x%08lX)"),
23822 (long) value);
23823 newval |= value << 5; /* 6 - 1. */
23824 break;
a737bd4d 23825
c19d1205
ZW
23826 default:
23827 as_bad_where (fixP->fx_file, fixP->fx_line,
23828 "Unable to process relocation for thumb opcode: %lx",
23829 (unsigned long) newval);
23830 break;
23831 }
23832 md_number_to_chars (buf, newval, THUMB_SIZE);
23833 break;
a737bd4d 23834
c19d1205
ZW
23835 case BFD_RELOC_ARM_THUMB_ADD:
23836 /* This is a complicated relocation, since we use it for all of
23837 the following immediate relocations:
a737bd4d 23838
c19d1205
ZW
23839 3bit ADD/SUB
23840 8bit ADD/SUB
23841 9bit ADD/SUB SP word-aligned
23842 10bit ADD PC/SP word-aligned
a737bd4d 23843
c19d1205
ZW
23844 The type of instruction being processed is encoded in the
23845 instruction field:
a737bd4d 23846
c19d1205
ZW
23847 0x8000 SUB
23848 0x00F0 Rd
23849 0x000F Rs
23850 */
23851 newval = md_chars_to_number (buf, THUMB_SIZE);
23852 {
23853 int rd = (newval >> 4) & 0xf;
23854 int rs = newval & 0xf;
23855 int subtract = !!(newval & 0x8000);
a737bd4d 23856
c19d1205
ZW
23857 /* Check for HI regs, only very restricted cases allowed:
23858 Adjusting SP, and using PC or SP to get an address. */
23859 if ((rd > 7 && (rd != REG_SP || rs != REG_SP))
23860 || (rs > 7 && rs != REG_SP && rs != REG_PC))
23861 as_bad_where (fixP->fx_file, fixP->fx_line,
23862 _("invalid Hi register with immediate"));
a737bd4d 23863
c19d1205
ZW
23864 /* If value is negative, choose the opposite instruction. */
23865 if (value < 0)
23866 {
23867 value = -value;
23868 subtract = !subtract;
23869 if (value < 0)
23870 as_bad_where (fixP->fx_file, fixP->fx_line,
23871 _("immediate value out of range"));
23872 }
a737bd4d 23873
c19d1205
ZW
23874 if (rd == REG_SP)
23875 {
75c11999 23876 if (value & ~0x1fc)
c19d1205
ZW
23877 as_bad_where (fixP->fx_file, fixP->fx_line,
23878 _("invalid immediate for stack address calculation"));
23879 newval = subtract ? T_OPCODE_SUB_ST : T_OPCODE_ADD_ST;
23880 newval |= value >> 2;
23881 }
23882 else if (rs == REG_PC || rs == REG_SP)
23883 {
c12d2c9d
NC
23884 /* PR gas/18541. If the addition is for a defined symbol
23885 within range of an ADR instruction then accept it. */
23886 if (subtract
23887 && value == 4
23888 && fixP->fx_addsy != NULL)
23889 {
23890 subtract = 0;
23891
23892 if (! S_IS_DEFINED (fixP->fx_addsy)
23893 || S_GET_SEGMENT (fixP->fx_addsy) != seg
23894 || S_IS_WEAK (fixP->fx_addsy))
23895 {
23896 as_bad_where (fixP->fx_file, fixP->fx_line,
23897 _("address calculation needs a strongly defined nearby symbol"));
23898 }
23899 else
23900 {
23901 offsetT v = fixP->fx_where + fixP->fx_frag->fr_address;
23902
23903 /* Round up to the next 4-byte boundary. */
23904 if (v & 3)
23905 v = (v + 3) & ~ 3;
23906 else
23907 v += 4;
23908 v = S_GET_VALUE (fixP->fx_addsy) - v;
23909
23910 if (v & ~0x3fc)
23911 {
23912 as_bad_where (fixP->fx_file, fixP->fx_line,
23913 _("symbol too far away"));
23914 }
23915 else
23916 {
23917 fixP->fx_done = 1;
23918 value = v;
23919 }
23920 }
23921 }
23922
c19d1205
ZW
23923 if (subtract || value & ~0x3fc)
23924 as_bad_where (fixP->fx_file, fixP->fx_line,
23925 _("invalid immediate for address calculation (value = 0x%08lX)"),
5fc177c8 23926 (unsigned long) (subtract ? - value : value));
c19d1205
ZW
23927 newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
23928 newval |= rd << 8;
23929 newval |= value >> 2;
23930 }
23931 else if (rs == rd)
23932 {
23933 if (value & ~0xff)
23934 as_bad_where (fixP->fx_file, fixP->fx_line,
23935 _("immediate value out of range"));
23936 newval = subtract ? T_OPCODE_SUB_I8 : T_OPCODE_ADD_I8;
23937 newval |= (rd << 8) | value;
23938 }
23939 else
23940 {
23941 if (value & ~0x7)
23942 as_bad_where (fixP->fx_file, fixP->fx_line,
23943 _("immediate value out of range"));
23944 newval = subtract ? T_OPCODE_SUB_I3 : T_OPCODE_ADD_I3;
23945 newval |= rd | (rs << 3) | (value << 6);
23946 }
23947 }
23948 md_number_to_chars (buf, newval, THUMB_SIZE);
23949 break;
a737bd4d 23950
c19d1205
ZW
23951 case BFD_RELOC_ARM_THUMB_IMM:
23952 newval = md_chars_to_number (buf, THUMB_SIZE);
23953 if (value < 0 || value > 255)
23954 as_bad_where (fixP->fx_file, fixP->fx_line,
4e6e072b 23955 _("invalid immediate: %ld is out of range"),
c19d1205
ZW
23956 (long) value);
23957 newval |= value;
23958 md_number_to_chars (buf, newval, THUMB_SIZE);
23959 break;
a737bd4d 23960
c19d1205
ZW
23961 case BFD_RELOC_ARM_THUMB_SHIFT:
23962 /* 5bit shift value (0..32). LSL cannot take 32. */
23963 newval = md_chars_to_number (buf, THUMB_SIZE) & 0xf83f;
23964 temp = newval & 0xf800;
23965 if (value < 0 || value > 32 || (value == 32 && temp == T_OPCODE_LSL_I))
23966 as_bad_where (fixP->fx_file, fixP->fx_line,
23967 _("invalid shift value: %ld"), (long) value);
23968 /* Shifts of zero must be encoded as LSL. */
23969 if (value == 0)
23970 newval = (newval & 0x003f) | T_OPCODE_LSL_I;
23971 /* Shifts of 32 are encoded as zero. */
23972 else if (value == 32)
23973 value = 0;
23974 newval |= value << 6;
23975 md_number_to_chars (buf, newval, THUMB_SIZE);
23976 break;
a737bd4d 23977
c19d1205
ZW
23978 case BFD_RELOC_VTABLE_INHERIT:
23979 case BFD_RELOC_VTABLE_ENTRY:
23980 fixP->fx_done = 0;
23981 return;
6c43fab6 23982
b6895b4f
PB
23983 case BFD_RELOC_ARM_MOVW:
23984 case BFD_RELOC_ARM_MOVT:
23985 case BFD_RELOC_ARM_THUMB_MOVW:
23986 case BFD_RELOC_ARM_THUMB_MOVT:
23987 if (fixP->fx_done || !seg->use_rela_p)
23988 {
23989 /* REL format relocations are limited to a 16-bit addend. */
23990 if (!fixP->fx_done)
23991 {
39623e12 23992 if (value < -0x8000 || value > 0x7fff)
b6895b4f 23993 as_bad_where (fixP->fx_file, fixP->fx_line,
ff5075ca 23994 _("offset out of range"));
b6895b4f
PB
23995 }
23996 else if (fixP->fx_r_type == BFD_RELOC_ARM_MOVT
23997 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
23998 {
23999 value >>= 16;
24000 }
24001
24002 if (fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
24003 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT)
24004 {
24005 newval = get_thumb32_insn (buf);
24006 newval &= 0xfbf08f00;
24007 newval |= (value & 0xf000) << 4;
24008 newval |= (value & 0x0800) << 15;
24009 newval |= (value & 0x0700) << 4;
24010 newval |= (value & 0x00ff);
24011 put_thumb32_insn (buf, newval);
24012 }
24013 else
24014 {
24015 newval = md_chars_to_number (buf, 4);
24016 newval &= 0xfff0f000;
24017 newval |= value & 0x0fff;
24018 newval |= (value & 0xf000) << 4;
24019 md_number_to_chars (buf, newval, 4);
24020 }
24021 }
24022 return;
24023
72d98d16
MG
24024 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
24025 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
24026 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
24027 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
24028 gas_assert (!fixP->fx_done);
24029 {
24030 bfd_vma insn;
24031 bfd_boolean is_mov;
24032 bfd_vma encoded_addend = value;
24033
24034 /* Check that addend can be encoded in instruction. */
24035 if (!seg->use_rela_p && (value < 0 || value > 255))
24036 as_bad_where (fixP->fx_file, fixP->fx_line,
24037 _("the offset 0x%08lX is not representable"),
24038 (unsigned long) encoded_addend);
24039
24040 /* Extract the instruction. */
24041 insn = md_chars_to_number (buf, THUMB_SIZE);
24042 is_mov = (insn & 0xf800) == 0x2000;
24043
24044 /* Encode insn. */
24045 if (is_mov)
24046 {
24047 if (!seg->use_rela_p)
24048 insn |= encoded_addend;
24049 }
24050 else
24051 {
24052 int rd, rs;
24053
24054 /* Extract the instruction. */
24055 /* Encoding is the following
24056 0x8000 SUB
24057 0x00F0 Rd
24058 0x000F Rs
24059 */
24060 /* The following conditions must be true :
24061 - ADD
24062 - Rd == Rs
24063 - Rd <= 7
24064 */
24065 rd = (insn >> 4) & 0xf;
24066 rs = insn & 0xf;
24067 if ((insn & 0x8000) || (rd != rs) || rd > 7)
24068 as_bad_where (fixP->fx_file, fixP->fx_line,
24069 _("Unable to process relocation for thumb opcode: %lx"),
24070 (unsigned long) insn);
24071
24072 /* Encode as ADD immediate8 thumb 1 code. */
24073 insn = 0x3000 | (rd << 8);
24074
24075 /* Place the encoded addend into the first 8 bits of the
24076 instruction. */
24077 if (!seg->use_rela_p)
24078 insn |= encoded_addend;
24079 }
24080
24081 /* Update the instruction. */
24082 md_number_to_chars (buf, insn, THUMB_SIZE);
24083 }
24084 break;
24085
4962c51a
MS
24086 case BFD_RELOC_ARM_ALU_PC_G0_NC:
24087 case BFD_RELOC_ARM_ALU_PC_G0:
24088 case BFD_RELOC_ARM_ALU_PC_G1_NC:
24089 case BFD_RELOC_ARM_ALU_PC_G1:
24090 case BFD_RELOC_ARM_ALU_PC_G2:
24091 case BFD_RELOC_ARM_ALU_SB_G0_NC:
24092 case BFD_RELOC_ARM_ALU_SB_G0:
24093 case BFD_RELOC_ARM_ALU_SB_G1_NC:
24094 case BFD_RELOC_ARM_ALU_SB_G1:
24095 case BFD_RELOC_ARM_ALU_SB_G2:
9c2799c2 24096 gas_assert (!fixP->fx_done);
4962c51a
MS
24097 if (!seg->use_rela_p)
24098 {
477330fc
RM
24099 bfd_vma insn;
24100 bfd_vma encoded_addend;
24101 bfd_vma addend_abs = abs (value);
24102
24103 /* Check that the absolute value of the addend can be
24104 expressed as an 8-bit constant plus a rotation. */
24105 encoded_addend = encode_arm_immediate (addend_abs);
24106 if (encoded_addend == (unsigned int) FAIL)
4962c51a 24107 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24108 _("the offset 0x%08lX is not representable"),
24109 (unsigned long) addend_abs);
24110
24111 /* Extract the instruction. */
24112 insn = md_chars_to_number (buf, INSN_SIZE);
24113
24114 /* If the addend is positive, use an ADD instruction.
24115 Otherwise use a SUB. Take care not to destroy the S bit. */
24116 insn &= 0xff1fffff;
24117 if (value < 0)
24118 insn |= 1 << 22;
24119 else
24120 insn |= 1 << 23;
24121
24122 /* Place the encoded addend into the first 12 bits of the
24123 instruction. */
24124 insn &= 0xfffff000;
24125 insn |= encoded_addend;
24126
24127 /* Update the instruction. */
24128 md_number_to_chars (buf, insn, INSN_SIZE);
4962c51a
MS
24129 }
24130 break;
24131
24132 case BFD_RELOC_ARM_LDR_PC_G0:
24133 case BFD_RELOC_ARM_LDR_PC_G1:
24134 case BFD_RELOC_ARM_LDR_PC_G2:
24135 case BFD_RELOC_ARM_LDR_SB_G0:
24136 case BFD_RELOC_ARM_LDR_SB_G1:
24137 case BFD_RELOC_ARM_LDR_SB_G2:
9c2799c2 24138 gas_assert (!fixP->fx_done);
4962c51a 24139 if (!seg->use_rela_p)
477330fc
RM
24140 {
24141 bfd_vma insn;
24142 bfd_vma addend_abs = abs (value);
4962c51a 24143
477330fc
RM
24144 /* Check that the absolute value of the addend can be
24145 encoded in 12 bits. */
24146 if (addend_abs >= 0x1000)
4962c51a 24147 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24148 _("bad offset 0x%08lX (only 12 bits available for the magnitude)"),
24149 (unsigned long) addend_abs);
24150
24151 /* Extract the instruction. */
24152 insn = md_chars_to_number (buf, INSN_SIZE);
24153
24154 /* If the addend is negative, clear bit 23 of the instruction.
24155 Otherwise set it. */
24156 if (value < 0)
24157 insn &= ~(1 << 23);
24158 else
24159 insn |= 1 << 23;
24160
24161 /* Place the absolute value of the addend into the first 12 bits
24162 of the instruction. */
24163 insn &= 0xfffff000;
24164 insn |= addend_abs;
24165
24166 /* Update the instruction. */
24167 md_number_to_chars (buf, insn, INSN_SIZE);
24168 }
4962c51a
MS
24169 break;
24170
24171 case BFD_RELOC_ARM_LDRS_PC_G0:
24172 case BFD_RELOC_ARM_LDRS_PC_G1:
24173 case BFD_RELOC_ARM_LDRS_PC_G2:
24174 case BFD_RELOC_ARM_LDRS_SB_G0:
24175 case BFD_RELOC_ARM_LDRS_SB_G1:
24176 case BFD_RELOC_ARM_LDRS_SB_G2:
9c2799c2 24177 gas_assert (!fixP->fx_done);
4962c51a 24178 if (!seg->use_rela_p)
477330fc
RM
24179 {
24180 bfd_vma insn;
24181 bfd_vma addend_abs = abs (value);
4962c51a 24182
477330fc
RM
24183 /* Check that the absolute value of the addend can be
24184 encoded in 8 bits. */
24185 if (addend_abs >= 0x100)
4962c51a 24186 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24187 _("bad offset 0x%08lX (only 8 bits available for the magnitude)"),
24188 (unsigned long) addend_abs);
24189
24190 /* Extract the instruction. */
24191 insn = md_chars_to_number (buf, INSN_SIZE);
24192
24193 /* If the addend is negative, clear bit 23 of the instruction.
24194 Otherwise set it. */
24195 if (value < 0)
24196 insn &= ~(1 << 23);
24197 else
24198 insn |= 1 << 23;
24199
24200 /* Place the first four bits of the absolute value of the addend
24201 into the first 4 bits of the instruction, and the remaining
24202 four into bits 8 .. 11. */
24203 insn &= 0xfffff0f0;
24204 insn |= (addend_abs & 0xf) | ((addend_abs & 0xf0) << 4);
24205
24206 /* Update the instruction. */
24207 md_number_to_chars (buf, insn, INSN_SIZE);
24208 }
4962c51a
MS
24209 break;
24210
24211 case BFD_RELOC_ARM_LDC_PC_G0:
24212 case BFD_RELOC_ARM_LDC_PC_G1:
24213 case BFD_RELOC_ARM_LDC_PC_G2:
24214 case BFD_RELOC_ARM_LDC_SB_G0:
24215 case BFD_RELOC_ARM_LDC_SB_G1:
24216 case BFD_RELOC_ARM_LDC_SB_G2:
9c2799c2 24217 gas_assert (!fixP->fx_done);
4962c51a 24218 if (!seg->use_rela_p)
477330fc
RM
24219 {
24220 bfd_vma insn;
24221 bfd_vma addend_abs = abs (value);
4962c51a 24222
477330fc
RM
24223 /* Check that the absolute value of the addend is a multiple of
24224 four and, when divided by four, fits in 8 bits. */
24225 if (addend_abs & 0x3)
4962c51a 24226 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24227 _("bad offset 0x%08lX (must be word-aligned)"),
24228 (unsigned long) addend_abs);
4962c51a 24229
477330fc 24230 if ((addend_abs >> 2) > 0xff)
4962c51a 24231 as_bad_where (fixP->fx_file, fixP->fx_line,
477330fc
RM
24232 _("bad offset 0x%08lX (must be an 8-bit number of words)"),
24233 (unsigned long) addend_abs);
24234
24235 /* Extract the instruction. */
24236 insn = md_chars_to_number (buf, INSN_SIZE);
24237
24238 /* If the addend is negative, clear bit 23 of the instruction.
24239 Otherwise set it. */
24240 if (value < 0)
24241 insn &= ~(1 << 23);
24242 else
24243 insn |= 1 << 23;
24244
24245 /* Place the addend (divided by four) into the first eight
24246 bits of the instruction. */
24247 insn &= 0xfffffff0;
24248 insn |= addend_abs >> 2;
24249
24250 /* Update the instruction. */
24251 md_number_to_chars (buf, insn, INSN_SIZE);
24252 }
4962c51a
MS
24253 break;
24254
845b51d6
PB
24255 case BFD_RELOC_ARM_V4BX:
24256 /* This will need to go in the object file. */
24257 fixP->fx_done = 0;
24258 break;
24259
c19d1205
ZW
24260 case BFD_RELOC_UNUSED:
24261 default:
24262 as_bad_where (fixP->fx_file, fixP->fx_line,
24263 _("bad relocation fixup type (%d)"), fixP->fx_r_type);
24264 }
6c43fab6
RE
24265}
24266
c19d1205
ZW
24267/* Translate internal representation of relocation info to BFD target
24268 format. */
a737bd4d 24269
c19d1205 24270arelent *
00a97672 24271tc_gen_reloc (asection *section, fixS *fixp)
a737bd4d 24272{
c19d1205
ZW
24273 arelent * reloc;
24274 bfd_reloc_code_real_type code;
a737bd4d 24275
325801bd 24276 reloc = XNEW (arelent);
a737bd4d 24277
325801bd 24278 reloc->sym_ptr_ptr = XNEW (asymbol *);
c19d1205
ZW
24279 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
24280 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
a737bd4d 24281
2fc8bdac 24282 if (fixp->fx_pcrel)
00a97672
RS
24283 {
24284 if (section->use_rela_p)
24285 fixp->fx_offset -= md_pcrel_from_section (fixp, section);
24286 else
24287 fixp->fx_offset = reloc->address;
24288 }
c19d1205 24289 reloc->addend = fixp->fx_offset;
a737bd4d 24290
c19d1205 24291 switch (fixp->fx_r_type)
a737bd4d 24292 {
c19d1205
ZW
24293 case BFD_RELOC_8:
24294 if (fixp->fx_pcrel)
24295 {
24296 code = BFD_RELOC_8_PCREL;
24297 break;
24298 }
1a0670f3 24299 /* Fall through. */
a737bd4d 24300
c19d1205
ZW
24301 case BFD_RELOC_16:
24302 if (fixp->fx_pcrel)
24303 {
24304 code = BFD_RELOC_16_PCREL;
24305 break;
24306 }
1a0670f3 24307 /* Fall through. */
6c43fab6 24308
c19d1205
ZW
24309 case BFD_RELOC_32:
24310 if (fixp->fx_pcrel)
24311 {
24312 code = BFD_RELOC_32_PCREL;
24313 break;
24314 }
1a0670f3 24315 /* Fall through. */
a737bd4d 24316
b6895b4f
PB
24317 case BFD_RELOC_ARM_MOVW:
24318 if (fixp->fx_pcrel)
24319 {
24320 code = BFD_RELOC_ARM_MOVW_PCREL;
24321 break;
24322 }
1a0670f3 24323 /* Fall through. */
b6895b4f
PB
24324
24325 case BFD_RELOC_ARM_MOVT:
24326 if (fixp->fx_pcrel)
24327 {
24328 code = BFD_RELOC_ARM_MOVT_PCREL;
24329 break;
24330 }
1a0670f3 24331 /* Fall through. */
b6895b4f
PB
24332
24333 case BFD_RELOC_ARM_THUMB_MOVW:
24334 if (fixp->fx_pcrel)
24335 {
24336 code = BFD_RELOC_ARM_THUMB_MOVW_PCREL;
24337 break;
24338 }
1a0670f3 24339 /* Fall through. */
b6895b4f
PB
24340
24341 case BFD_RELOC_ARM_THUMB_MOVT:
24342 if (fixp->fx_pcrel)
24343 {
24344 code = BFD_RELOC_ARM_THUMB_MOVT_PCREL;
24345 break;
24346 }
1a0670f3 24347 /* Fall through. */
b6895b4f 24348
c19d1205
ZW
24349 case BFD_RELOC_NONE:
24350 case BFD_RELOC_ARM_PCREL_BRANCH:
24351 case BFD_RELOC_ARM_PCREL_BLX:
24352 case BFD_RELOC_RVA:
24353 case BFD_RELOC_THUMB_PCREL_BRANCH7:
24354 case BFD_RELOC_THUMB_PCREL_BRANCH9:
24355 case BFD_RELOC_THUMB_PCREL_BRANCH12:
24356 case BFD_RELOC_THUMB_PCREL_BRANCH20:
24357 case BFD_RELOC_THUMB_PCREL_BRANCH23:
24358 case BFD_RELOC_THUMB_PCREL_BRANCH25:
c19d1205
ZW
24359 case BFD_RELOC_VTABLE_ENTRY:
24360 case BFD_RELOC_VTABLE_INHERIT:
f0927246
NC
24361#ifdef TE_PE
24362 case BFD_RELOC_32_SECREL:
24363#endif
c19d1205
ZW
24364 code = fixp->fx_r_type;
24365 break;
a737bd4d 24366
00adf2d4
JB
24367 case BFD_RELOC_THUMB_PCREL_BLX:
24368#ifdef OBJ_ELF
24369 if (EF_ARM_EABI_VERSION (meabi_flags) >= EF_ARM_EABI_VER4)
24370 code = BFD_RELOC_THUMB_PCREL_BRANCH23;
24371 else
24372#endif
24373 code = BFD_RELOC_THUMB_PCREL_BLX;
24374 break;
24375
c19d1205
ZW
24376 case BFD_RELOC_ARM_LITERAL:
24377 case BFD_RELOC_ARM_HWLITERAL:
24378 /* If this is called then the a literal has
24379 been referenced across a section boundary. */
24380 as_bad_where (fixp->fx_file, fixp->fx_line,
24381 _("literal referenced across section boundary"));
24382 return NULL;
a737bd4d 24383
c19d1205 24384#ifdef OBJ_ELF
0855e32b
NS
24385 case BFD_RELOC_ARM_TLS_CALL:
24386 case BFD_RELOC_ARM_THM_TLS_CALL:
24387 case BFD_RELOC_ARM_TLS_DESCSEQ:
24388 case BFD_RELOC_ARM_THM_TLS_DESCSEQ:
c19d1205
ZW
24389 case BFD_RELOC_ARM_GOT32:
24390 case BFD_RELOC_ARM_GOTOFF:
b43420e6 24391 case BFD_RELOC_ARM_GOT_PREL:
c19d1205
ZW
24392 case BFD_RELOC_ARM_PLT32:
24393 case BFD_RELOC_ARM_TARGET1:
24394 case BFD_RELOC_ARM_ROSEGREL32:
24395 case BFD_RELOC_ARM_SBREL32:
24396 case BFD_RELOC_ARM_PREL31:
24397 case BFD_RELOC_ARM_TARGET2:
c19d1205 24398 case BFD_RELOC_ARM_TLS_LDO32:
39b41c9c
PB
24399 case BFD_RELOC_ARM_PCREL_CALL:
24400 case BFD_RELOC_ARM_PCREL_JUMP:
4962c51a
MS
24401 case BFD_RELOC_ARM_ALU_PC_G0_NC:
24402 case BFD_RELOC_ARM_ALU_PC_G0:
24403 case BFD_RELOC_ARM_ALU_PC_G1_NC:
24404 case BFD_RELOC_ARM_ALU_PC_G1:
24405 case BFD_RELOC_ARM_ALU_PC_G2:
24406 case BFD_RELOC_ARM_LDR_PC_G0:
24407 case BFD_RELOC_ARM_LDR_PC_G1:
24408 case BFD_RELOC_ARM_LDR_PC_G2:
24409 case BFD_RELOC_ARM_LDRS_PC_G0:
24410 case BFD_RELOC_ARM_LDRS_PC_G1:
24411 case BFD_RELOC_ARM_LDRS_PC_G2:
24412 case BFD_RELOC_ARM_LDC_PC_G0:
24413 case BFD_RELOC_ARM_LDC_PC_G1:
24414 case BFD_RELOC_ARM_LDC_PC_G2:
24415 case BFD_RELOC_ARM_ALU_SB_G0_NC:
24416 case BFD_RELOC_ARM_ALU_SB_G0:
24417 case BFD_RELOC_ARM_ALU_SB_G1_NC:
24418 case BFD_RELOC_ARM_ALU_SB_G1:
24419 case BFD_RELOC_ARM_ALU_SB_G2:
24420 case BFD_RELOC_ARM_LDR_SB_G0:
24421 case BFD_RELOC_ARM_LDR_SB_G1:
24422 case BFD_RELOC_ARM_LDR_SB_G2:
24423 case BFD_RELOC_ARM_LDRS_SB_G0:
24424 case BFD_RELOC_ARM_LDRS_SB_G1:
24425 case BFD_RELOC_ARM_LDRS_SB_G2:
24426 case BFD_RELOC_ARM_LDC_SB_G0:
24427 case BFD_RELOC_ARM_LDC_SB_G1:
24428 case BFD_RELOC_ARM_LDC_SB_G2:
845b51d6 24429 case BFD_RELOC_ARM_V4BX:
72d98d16
MG
24430 case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
24431 case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
24432 case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
24433 case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
c19d1205
ZW
24434 code = fixp->fx_r_type;
24435 break;
a737bd4d 24436
0855e32b 24437 case BFD_RELOC_ARM_TLS_GOTDESC:
c19d1205 24438 case BFD_RELOC_ARM_TLS_GD32:
75c11999 24439 case BFD_RELOC_ARM_TLS_LE32:
c19d1205
ZW
24440 case BFD_RELOC_ARM_TLS_IE32:
24441 case BFD_RELOC_ARM_TLS_LDM32:
24442 /* BFD will include the symbol's address in the addend.
24443 But we don't want that, so subtract it out again here. */
24444 if (!S_IS_COMMON (fixp->fx_addsy))
24445 reloc->addend -= (*reloc->sym_ptr_ptr)->value;
24446 code = fixp->fx_r_type;
24447 break;
24448#endif
a737bd4d 24449
c19d1205
ZW
24450 case BFD_RELOC_ARM_IMMEDIATE:
24451 as_bad_where (fixp->fx_file, fixp->fx_line,
24452 _("internal relocation (type: IMMEDIATE) not fixed up"));
24453 return NULL;
a737bd4d 24454
c19d1205
ZW
24455 case BFD_RELOC_ARM_ADRL_IMMEDIATE:
24456 as_bad_where (fixp->fx_file, fixp->fx_line,
24457 _("ADRL used for a symbol not defined in the same file"));
24458 return NULL;
a737bd4d 24459
c19d1205 24460 case BFD_RELOC_ARM_OFFSET_IMM:
00a97672
RS
24461 if (section->use_rela_p)
24462 {
24463 code = fixp->fx_r_type;
24464 break;
24465 }
24466
c19d1205
ZW
24467 if (fixp->fx_addsy != NULL
24468 && !S_IS_DEFINED (fixp->fx_addsy)
24469 && S_IS_LOCAL (fixp->fx_addsy))
a737bd4d 24470 {
c19d1205
ZW
24471 as_bad_where (fixp->fx_file, fixp->fx_line,
24472 _("undefined local label `%s'"),
24473 S_GET_NAME (fixp->fx_addsy));
24474 return NULL;
a737bd4d
NC
24475 }
24476
c19d1205
ZW
24477 as_bad_where (fixp->fx_file, fixp->fx_line,
24478 _("internal_relocation (type: OFFSET_IMM) not fixed up"));
24479 return NULL;
a737bd4d 24480
c19d1205
ZW
24481 default:
24482 {
e0471c16 24483 const char * type;
6c43fab6 24484
c19d1205
ZW
24485 switch (fixp->fx_r_type)
24486 {
24487 case BFD_RELOC_NONE: type = "NONE"; break;
24488 case BFD_RELOC_ARM_OFFSET_IMM8: type = "OFFSET_IMM8"; break;
24489 case BFD_RELOC_ARM_SHIFT_IMM: type = "SHIFT_IMM"; break;
3eb17e6b 24490 case BFD_RELOC_ARM_SMC: type = "SMC"; break;
c19d1205
ZW
24491 case BFD_RELOC_ARM_SWI: type = "SWI"; break;
24492 case BFD_RELOC_ARM_MULTI: type = "MULTI"; break;
24493 case BFD_RELOC_ARM_CP_OFF_IMM: type = "CP_OFF_IMM"; break;
db187cb9 24494 case BFD_RELOC_ARM_T32_OFFSET_IMM: type = "T32_OFFSET_IMM"; break;
8f06b2d8 24495 case BFD_RELOC_ARM_T32_CP_OFF_IMM: type = "T32_CP_OFF_IMM"; break;
c19d1205
ZW
24496 case BFD_RELOC_ARM_THUMB_ADD: type = "THUMB_ADD"; break;
24497 case BFD_RELOC_ARM_THUMB_SHIFT: type = "THUMB_SHIFT"; break;
24498 case BFD_RELOC_ARM_THUMB_IMM: type = "THUMB_IMM"; break;
24499 case BFD_RELOC_ARM_THUMB_OFFSET: type = "THUMB_OFFSET"; break;
24500 default: type = _("<unknown>"); break;
24501 }
24502 as_bad_where (fixp->fx_file, fixp->fx_line,
24503 _("cannot represent %s relocation in this object file format"),
24504 type);
24505 return NULL;
24506 }
a737bd4d 24507 }
6c43fab6 24508
c19d1205
ZW
24509#ifdef OBJ_ELF
24510 if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32)
24511 && GOT_symbol
24512 && fixp->fx_addsy == GOT_symbol)
24513 {
24514 code = BFD_RELOC_ARM_GOTPC;
24515 reloc->addend = fixp->fx_offset = reloc->address;
24516 }
24517#endif
6c43fab6 24518
c19d1205 24519 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
6c43fab6 24520
c19d1205
ZW
24521 if (reloc->howto == NULL)
24522 {
24523 as_bad_where (fixp->fx_file, fixp->fx_line,
24524 _("cannot represent %s relocation in this object file format"),
24525 bfd_get_reloc_code_name (code));
24526 return NULL;
24527 }
6c43fab6 24528
c19d1205
ZW
24529 /* HACK: Since arm ELF uses Rel instead of Rela, encode the
24530 vtable entry to be used in the relocation's section offset. */
24531 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
24532 reloc->address = fixp->fx_offset;
6c43fab6 24533
c19d1205 24534 return reloc;
6c43fab6
RE
24535}
24536
c19d1205 24537/* This fix_new is called by cons via TC_CONS_FIX_NEW. */
6c43fab6 24538
c19d1205
ZW
24539void
24540cons_fix_new_arm (fragS * frag,
24541 int where,
24542 int size,
62ebcb5c
AM
24543 expressionS * exp,
24544 bfd_reloc_code_real_type reloc)
6c43fab6 24545{
c19d1205 24546 int pcrel = 0;
6c43fab6 24547
c19d1205
ZW
24548 /* Pick a reloc.
24549 FIXME: @@ Should look at CPU word size. */
24550 switch (size)
24551 {
24552 case 1:
62ebcb5c 24553 reloc = BFD_RELOC_8;
c19d1205
ZW
24554 break;
24555 case 2:
62ebcb5c 24556 reloc = BFD_RELOC_16;
c19d1205
ZW
24557 break;
24558 case 4:
24559 default:
62ebcb5c 24560 reloc = BFD_RELOC_32;
c19d1205
ZW
24561 break;
24562 case 8:
62ebcb5c 24563 reloc = BFD_RELOC_64;
c19d1205
ZW
24564 break;
24565 }
6c43fab6 24566
f0927246
NC
24567#ifdef TE_PE
24568 if (exp->X_op == O_secrel)
24569 {
24570 exp->X_op = O_symbol;
62ebcb5c 24571 reloc = BFD_RELOC_32_SECREL;
f0927246
NC
24572 }
24573#endif
24574
62ebcb5c 24575 fix_new_exp (frag, where, size, exp, pcrel, reloc);
c19d1205 24576}
6c43fab6 24577
4343666d 24578#if defined (OBJ_COFF)
c19d1205
ZW
24579void
24580arm_validate_fix (fixS * fixP)
6c43fab6 24581{
c19d1205
ZW
24582 /* If the destination of the branch is a defined symbol which does not have
24583 the THUMB_FUNC attribute, then we must be calling a function which has
24584 the (interfacearm) attribute. We look for the Thumb entry point to that
24585 function and change the branch to refer to that function instead. */
24586 if (fixP->fx_r_type == BFD_RELOC_THUMB_PCREL_BRANCH23
24587 && fixP->fx_addsy != NULL
24588 && S_IS_DEFINED (fixP->fx_addsy)
24589 && ! THUMB_IS_FUNC (fixP->fx_addsy))
6c43fab6 24590 {
c19d1205 24591 fixP->fx_addsy = find_real_start (fixP->fx_addsy);
6c43fab6 24592 }
c19d1205
ZW
24593}
24594#endif
6c43fab6 24595
267bf995 24596
c19d1205
ZW
24597int
24598arm_force_relocation (struct fix * fixp)
24599{
24600#if defined (OBJ_COFF) && defined (TE_PE)
24601 if (fixp->fx_r_type == BFD_RELOC_RVA)
24602 return 1;
24603#endif
6c43fab6 24604
267bf995
RR
24605 /* In case we have a call or a branch to a function in ARM ISA mode from
24606 a thumb function or vice-versa force the relocation. These relocations
24607 are cleared off for some cores that might have blx and simple transformations
24608 are possible. */
24609
24610#ifdef OBJ_ELF
24611 switch (fixp->fx_r_type)
24612 {
24613 case BFD_RELOC_ARM_PCREL_JUMP:
24614 case BFD_RELOC_ARM_PCREL_CALL:
24615 case BFD_RELOC_THUMB_PCREL_BLX:
24616 if (THUMB_IS_FUNC (fixp->fx_addsy))
24617 return 1;
24618 break;
24619
24620 case BFD_RELOC_ARM_PCREL_BLX:
24621 case BFD_RELOC_THUMB_PCREL_BRANCH25:
24622 case BFD_RELOC_THUMB_PCREL_BRANCH20:
24623 case BFD_RELOC_THUMB_PCREL_BRANCH23:
24624 if (ARM_IS_FUNC (fixp->fx_addsy))
24625 return 1;
24626 break;
24627
24628 default:
24629 break;
24630 }
24631#endif
24632
b5884301
PB
24633 /* Resolve these relocations even if the symbol is extern or weak.
24634 Technically this is probably wrong due to symbol preemption.
24635 In practice these relocations do not have enough range to be useful
24636 at dynamic link time, and some code (e.g. in the Linux kernel)
24637 expects these references to be resolved. */
c19d1205
ZW
24638 if (fixp->fx_r_type == BFD_RELOC_ARM_IMMEDIATE
24639 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM
b5884301 24640 || fixp->fx_r_type == BFD_RELOC_ARM_OFFSET_IMM8
0110f2b8 24641 || fixp->fx_r_type == BFD_RELOC_ARM_ADRL_IMMEDIATE
b5884301
PB
24642 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM
24643 || fixp->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM_S2
24644 || fixp->fx_r_type == BFD_RELOC_ARM_THUMB_OFFSET
16805f35 24645 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_IMM
0110f2b8
PB
24646 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMMEDIATE
24647 || fixp->fx_r_type == BFD_RELOC_ARM_T32_IMM12
b5884301
PB
24648 || fixp->fx_r_type == BFD_RELOC_ARM_T32_OFFSET_IMM
24649 || fixp->fx_r_type == BFD_RELOC_ARM_T32_ADD_PC12
24650 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM
24651 || fixp->fx_r_type == BFD_RELOC_ARM_T32_CP_OFF_IMM_S2)
c19d1205 24652 return 0;
a737bd4d 24653
4962c51a
MS
24654 /* Always leave these relocations for the linker. */
24655 if ((fixp->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
24656 && fixp->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
24657 || fixp->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
24658 return 1;
24659
f0291e4c
PB
24660 /* Always generate relocations against function symbols. */
24661 if (fixp->fx_r_type == BFD_RELOC_32
24662 && fixp->fx_addsy
24663 && (symbol_get_bfdsym (fixp->fx_addsy)->flags & BSF_FUNCTION))
24664 return 1;
24665
c19d1205 24666 return generic_force_reloc (fixp);
404ff6b5
AH
24667}
24668
0ffdc86c 24669#if defined (OBJ_ELF) || defined (OBJ_COFF)
e28387c3
PB
24670/* Relocations against function names must be left unadjusted,
24671 so that the linker can use this information to generate interworking
24672 stubs. The MIPS version of this function
c19d1205
ZW
24673 also prevents relocations that are mips-16 specific, but I do not
24674 know why it does this.
404ff6b5 24675
c19d1205
ZW
24676 FIXME:
24677 There is one other problem that ought to be addressed here, but
24678 which currently is not: Taking the address of a label (rather
24679 than a function) and then later jumping to that address. Such
24680 addresses also ought to have their bottom bit set (assuming that
24681 they reside in Thumb code), but at the moment they will not. */
404ff6b5 24682
c19d1205
ZW
24683bfd_boolean
24684arm_fix_adjustable (fixS * fixP)
404ff6b5 24685{
c19d1205
ZW
24686 if (fixP->fx_addsy == NULL)
24687 return 1;
404ff6b5 24688
e28387c3
PB
24689 /* Preserve relocations against symbols with function type. */
24690 if (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_FUNCTION)
c921be7d 24691 return FALSE;
e28387c3 24692
c19d1205
ZW
24693 if (THUMB_IS_FUNC (fixP->fx_addsy)
24694 && fixP->fx_subsy == NULL)
c921be7d 24695 return FALSE;
a737bd4d 24696
c19d1205
ZW
24697 /* We need the symbol name for the VTABLE entries. */
24698 if ( fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
24699 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
c921be7d 24700 return FALSE;
404ff6b5 24701
c19d1205
ZW
24702 /* Don't allow symbols to be discarded on GOT related relocs. */
24703 if (fixP->fx_r_type == BFD_RELOC_ARM_PLT32
24704 || fixP->fx_r_type == BFD_RELOC_ARM_GOT32
24705 || fixP->fx_r_type == BFD_RELOC_ARM_GOTOFF
24706 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GD32
24707 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LE32
24708 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_IE32
24709 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDM32
24710 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_LDO32
0855e32b
NS
24711 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_GOTDESC
24712 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_CALL
24713 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_CALL
24714 || fixP->fx_r_type == BFD_RELOC_ARM_TLS_DESCSEQ
24715 || fixP->fx_r_type == BFD_RELOC_ARM_THM_TLS_DESCSEQ
c19d1205 24716 || fixP->fx_r_type == BFD_RELOC_ARM_TARGET2)
c921be7d 24717 return FALSE;
a737bd4d 24718
4962c51a
MS
24719 /* Similarly for group relocations. */
24720 if ((fixP->fx_r_type >= BFD_RELOC_ARM_ALU_PC_G0_NC
24721 && fixP->fx_r_type <= BFD_RELOC_ARM_LDC_SB_G2)
24722 || fixP->fx_r_type == BFD_RELOC_ARM_LDR_PC_G0)
c921be7d 24723 return FALSE;
4962c51a 24724
79947c54
CD
24725 /* MOVW/MOVT REL relocations have limited offsets, so keep the symbols. */
24726 if (fixP->fx_r_type == BFD_RELOC_ARM_MOVW
24727 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT
24728 || fixP->fx_r_type == BFD_RELOC_ARM_MOVW_PCREL
24729 || fixP->fx_r_type == BFD_RELOC_ARM_MOVT_PCREL
24730 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW
24731 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT
24732 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVW_PCREL
24733 || fixP->fx_r_type == BFD_RELOC_ARM_THUMB_MOVT_PCREL)
c921be7d 24734 return FALSE;
79947c54 24735
72d98d16
MG
24736 /* BFD_RELOC_ARM_THUMB_ALU_ABS_Gx_NC relocations have VERY limited
24737 offsets, so keep these symbols. */
24738 if (fixP->fx_r_type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
24739 && fixP->fx_r_type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
24740 return FALSE;
24741
c921be7d 24742 return TRUE;
a737bd4d 24743}
0ffdc86c
NC
24744#endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
24745
24746#ifdef OBJ_ELF
c19d1205
ZW
24747const char *
24748elf32_arm_target_format (void)
404ff6b5 24749{
c19d1205
ZW
24750#ifdef TE_SYMBIAN
24751 return (target_big_endian
24752 ? "elf32-bigarm-symbian"
24753 : "elf32-littlearm-symbian");
24754#elif defined (TE_VXWORKS)
24755 return (target_big_endian
24756 ? "elf32-bigarm-vxworks"
24757 : "elf32-littlearm-vxworks");
b38cadfb
NC
24758#elif defined (TE_NACL)
24759 return (target_big_endian
24760 ? "elf32-bigarm-nacl"
24761 : "elf32-littlearm-nacl");
c19d1205
ZW
24762#else
24763 if (target_big_endian)
24764 return "elf32-bigarm";
24765 else
24766 return "elf32-littlearm";
24767#endif
404ff6b5
AH
24768}
24769
c19d1205
ZW
24770void
24771armelf_frob_symbol (symbolS * symp,
24772 int * puntp)
404ff6b5 24773{
c19d1205
ZW
24774 elf_frob_symbol (symp, puntp);
24775}
24776#endif
404ff6b5 24777
c19d1205 24778/* MD interface: Finalization. */
a737bd4d 24779
c19d1205
ZW
24780void
24781arm_cleanup (void)
24782{
24783 literal_pool * pool;
a737bd4d 24784
e07e6e58
NC
24785 /* Ensure that all the IT blocks are properly closed. */
24786 check_it_blocks_finished ();
24787
c19d1205
ZW
24788 for (pool = list_of_pools; pool; pool = pool->next)
24789 {
5f4273c7 24790 /* Put it at the end of the relevant section. */
c19d1205
ZW
24791 subseg_set (pool->section, pool->sub_section);
24792#ifdef OBJ_ELF
24793 arm_elf_change_section ();
24794#endif
24795 s_ltorg (0);
24796 }
404ff6b5
AH
24797}
24798
cd000bff
DJ
24799#ifdef OBJ_ELF
24800/* Remove any excess mapping symbols generated for alignment frags in
24801 SEC. We may have created a mapping symbol before a zero byte
24802 alignment; remove it if there's a mapping symbol after the
24803 alignment. */
24804static void
24805check_mapping_symbols (bfd *abfd ATTRIBUTE_UNUSED, asection *sec,
24806 void *dummy ATTRIBUTE_UNUSED)
24807{
24808 segment_info_type *seginfo = seg_info (sec);
24809 fragS *fragp;
24810
24811 if (seginfo == NULL || seginfo->frchainP == NULL)
24812 return;
24813
24814 for (fragp = seginfo->frchainP->frch_root;
24815 fragp != NULL;
24816 fragp = fragp->fr_next)
24817 {
24818 symbolS *sym = fragp->tc_frag_data.last_map;
24819 fragS *next = fragp->fr_next;
24820
24821 /* Variable-sized frags have been converted to fixed size by
24822 this point. But if this was variable-sized to start with,
24823 there will be a fixed-size frag after it. So don't handle
24824 next == NULL. */
24825 if (sym == NULL || next == NULL)
24826 continue;
24827
24828 if (S_GET_VALUE (sym) < next->fr_address)
24829 /* Not at the end of this frag. */
24830 continue;
24831 know (S_GET_VALUE (sym) == next->fr_address);
24832
24833 do
24834 {
24835 if (next->tc_frag_data.first_map != NULL)
24836 {
24837 /* Next frag starts with a mapping symbol. Discard this
24838 one. */
24839 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
24840 break;
24841 }
24842
24843 if (next->fr_next == NULL)
24844 {
24845 /* This mapping symbol is at the end of the section. Discard
24846 it. */
24847 know (next->fr_fix == 0 && next->fr_var == 0);
24848 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
24849 break;
24850 }
24851
24852 /* As long as we have empty frags without any mapping symbols,
24853 keep looking. */
24854 /* If the next frag is non-empty and does not start with a
24855 mapping symbol, then this mapping symbol is required. */
24856 if (next->fr_address != next->fr_next->fr_address)
24857 break;
24858
24859 next = next->fr_next;
24860 }
24861 while (next != NULL);
24862 }
24863}
24864#endif
24865
c19d1205
ZW
24866/* Adjust the symbol table. This marks Thumb symbols as distinct from
24867 ARM ones. */
404ff6b5 24868
c19d1205
ZW
24869void
24870arm_adjust_symtab (void)
404ff6b5 24871{
c19d1205
ZW
24872#ifdef OBJ_COFF
24873 symbolS * sym;
404ff6b5 24874
c19d1205
ZW
24875 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
24876 {
24877 if (ARM_IS_THUMB (sym))
24878 {
24879 if (THUMB_IS_FUNC (sym))
24880 {
24881 /* Mark the symbol as a Thumb function. */
24882 if ( S_GET_STORAGE_CLASS (sym) == C_STAT
24883 || S_GET_STORAGE_CLASS (sym) == C_LABEL) /* This can happen! */
24884 S_SET_STORAGE_CLASS (sym, C_THUMBSTATFUNC);
404ff6b5 24885
c19d1205
ZW
24886 else if (S_GET_STORAGE_CLASS (sym) == C_EXT)
24887 S_SET_STORAGE_CLASS (sym, C_THUMBEXTFUNC);
24888 else
24889 as_bad (_("%s: unexpected function type: %d"),
24890 S_GET_NAME (sym), S_GET_STORAGE_CLASS (sym));
24891 }
24892 else switch (S_GET_STORAGE_CLASS (sym))
24893 {
24894 case C_EXT:
24895 S_SET_STORAGE_CLASS (sym, C_THUMBEXT);
24896 break;
24897 case C_STAT:
24898 S_SET_STORAGE_CLASS (sym, C_THUMBSTAT);
24899 break;
24900 case C_LABEL:
24901 S_SET_STORAGE_CLASS (sym, C_THUMBLABEL);
24902 break;
24903 default:
24904 /* Do nothing. */
24905 break;
24906 }
24907 }
a737bd4d 24908
c19d1205
ZW
24909 if (ARM_IS_INTERWORK (sym))
24910 coffsymbol (symbol_get_bfdsym (sym))->native->u.syment.n_flags = 0xFF;
404ff6b5 24911 }
c19d1205
ZW
24912#endif
24913#ifdef OBJ_ELF
24914 symbolS * sym;
24915 char bind;
404ff6b5 24916
c19d1205 24917 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
404ff6b5 24918 {
c19d1205
ZW
24919 if (ARM_IS_THUMB (sym))
24920 {
24921 elf_symbol_type * elf_sym;
404ff6b5 24922
c19d1205
ZW
24923 elf_sym = elf_symbol (symbol_get_bfdsym (sym));
24924 bind = ELF_ST_BIND (elf_sym->internal_elf_sym.st_info);
404ff6b5 24925
b0796911
PB
24926 if (! bfd_is_arm_special_symbol_name (elf_sym->symbol.name,
24927 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
c19d1205
ZW
24928 {
24929 /* If it's a .thumb_func, declare it as so,
24930 otherwise tag label as .code 16. */
24931 if (THUMB_IS_FUNC (sym))
39d911fc
TP
24932 ARM_SET_SYM_BRANCH_TYPE (elf_sym->internal_elf_sym.st_target_internal,
24933 ST_BRANCH_TO_THUMB);
3ba67470 24934 else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
c19d1205
ZW
24935 elf_sym->internal_elf_sym.st_info =
24936 ELF_ST_INFO (bind, STT_ARM_16BIT);
24937 }
24938 }
24939 }
cd000bff
DJ
24940
24941 /* Remove any overlapping mapping symbols generated by alignment frags. */
24942 bfd_map_over_sections (stdoutput, check_mapping_symbols, (char *) 0);
709001e9
MM
24943 /* Now do generic ELF adjustments. */
24944 elf_adjust_symtab ();
c19d1205 24945#endif
404ff6b5
AH
24946}
24947
c19d1205 24948/* MD interface: Initialization. */
404ff6b5 24949
a737bd4d 24950static void
c19d1205 24951set_constant_flonums (void)
a737bd4d 24952{
c19d1205 24953 int i;
404ff6b5 24954
c19d1205
ZW
24955 for (i = 0; i < NUM_FLOAT_VALS; i++)
24956 if (atof_ieee ((char *) fp_const[i], 'x', fp_values[i]) == NULL)
24957 abort ();
a737bd4d 24958}
404ff6b5 24959
3e9e4fcf
JB
24960/* Auto-select Thumb mode if it's the only available instruction set for the
24961 given architecture. */
24962
24963static void
24964autoselect_thumb_from_cpu_variant (void)
24965{
24966 if (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v1))
24967 opcode_select (16);
24968}
24969
c19d1205
ZW
24970void
24971md_begin (void)
a737bd4d 24972{
c19d1205
ZW
24973 unsigned mach;
24974 unsigned int i;
404ff6b5 24975
c19d1205
ZW
24976 if ( (arm_ops_hsh = hash_new ()) == NULL
24977 || (arm_cond_hsh = hash_new ()) == NULL
24978 || (arm_shift_hsh = hash_new ()) == NULL
24979 || (arm_psr_hsh = hash_new ()) == NULL
62b3e311 24980 || (arm_v7m_psr_hsh = hash_new ()) == NULL
c19d1205 24981 || (arm_reg_hsh = hash_new ()) == NULL
62b3e311
PB
24982 || (arm_reloc_hsh = hash_new ()) == NULL
24983 || (arm_barrier_opt_hsh = hash_new ()) == NULL)
c19d1205
ZW
24984 as_fatal (_("virtual memory exhausted"));
24985
24986 for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
d3ce72d0 24987 hash_insert (arm_ops_hsh, insns[i].template_name, (void *) (insns + i));
c19d1205 24988 for (i = 0; i < sizeof (conds) / sizeof (struct asm_cond); i++)
d3ce72d0 24989 hash_insert (arm_cond_hsh, conds[i].template_name, (void *) (conds + i));
c19d1205 24990 for (i = 0; i < sizeof (shift_names) / sizeof (struct asm_shift_name); i++)
5a49b8ac 24991 hash_insert (arm_shift_hsh, shift_names[i].name, (void *) (shift_names + i));
c19d1205 24992 for (i = 0; i < sizeof (psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 24993 hash_insert (arm_psr_hsh, psrs[i].template_name, (void *) (psrs + i));
62b3e311 24994 for (i = 0; i < sizeof (v7m_psrs) / sizeof (struct asm_psr); i++)
d3ce72d0 24995 hash_insert (arm_v7m_psr_hsh, v7m_psrs[i].template_name,
477330fc 24996 (void *) (v7m_psrs + i));
c19d1205 24997 for (i = 0; i < sizeof (reg_names) / sizeof (struct reg_entry); i++)
5a49b8ac 24998 hash_insert (arm_reg_hsh, reg_names[i].name, (void *) (reg_names + i));
62b3e311
PB
24999 for (i = 0;
25000 i < sizeof (barrier_opt_names) / sizeof (struct asm_barrier_opt);
25001 i++)
d3ce72d0 25002 hash_insert (arm_barrier_opt_hsh, barrier_opt_names[i].template_name,
5a49b8ac 25003 (void *) (barrier_opt_names + i));
c19d1205 25004#ifdef OBJ_ELF
3da1d841
NC
25005 for (i = 0; i < ARRAY_SIZE (reloc_names); i++)
25006 {
25007 struct reloc_entry * entry = reloc_names + i;
25008
25009 if (arm_is_eabi() && entry->reloc == BFD_RELOC_ARM_PLT32)
25010 /* This makes encode_branch() use the EABI versions of this relocation. */
25011 entry->reloc = BFD_RELOC_UNUSED;
25012
25013 hash_insert (arm_reloc_hsh, entry->name, (void *) entry);
25014 }
c19d1205
ZW
25015#endif
25016
25017 set_constant_flonums ();
404ff6b5 25018
c19d1205
ZW
25019 /* Set the cpu variant based on the command-line options. We prefer
25020 -mcpu= over -march= if both are set (as for GCC); and we prefer
25021 -mfpu= over any other way of setting the floating point unit.
25022 Use of legacy options with new options are faulted. */
e74cfd16 25023 if (legacy_cpu)
404ff6b5 25024 {
e74cfd16 25025 if (mcpu_cpu_opt || march_cpu_opt)
c19d1205
ZW
25026 as_bad (_("use of old and new-style options to set CPU type"));
25027
25028 mcpu_cpu_opt = legacy_cpu;
404ff6b5 25029 }
e74cfd16 25030 else if (!mcpu_cpu_opt)
c168ce07
TP
25031 {
25032 mcpu_cpu_opt = march_cpu_opt;
25033 dyn_mcpu_ext_opt = dyn_march_ext_opt;
25034 /* Avoid double free in arm_md_end. */
25035 dyn_march_ext_opt = NULL;
25036 }
404ff6b5 25037
e74cfd16 25038 if (legacy_fpu)
c19d1205 25039 {
e74cfd16 25040 if (mfpu_opt)
c19d1205 25041 as_bad (_("use of old and new-style options to set FPU type"));
03b1477f
RE
25042
25043 mfpu_opt = legacy_fpu;
25044 }
e74cfd16 25045 else if (!mfpu_opt)
03b1477f 25046 {
45eb4c1b
NS
25047#if !(defined (EABI_DEFAULT) || defined (TE_LINUX) \
25048 || defined (TE_NetBSD) || defined (TE_VXWORKS))
39c2da32
RE
25049 /* Some environments specify a default FPU. If they don't, infer it
25050 from the processor. */
e74cfd16 25051 if (mcpu_fpu_opt)
03b1477f
RE
25052 mfpu_opt = mcpu_fpu_opt;
25053 else
25054 mfpu_opt = march_fpu_opt;
39c2da32 25055#else
e74cfd16 25056 mfpu_opt = &fpu_default;
39c2da32 25057#endif
03b1477f
RE
25058 }
25059
e74cfd16 25060 if (!mfpu_opt)
03b1477f 25061 {
493cb6ef 25062 if (mcpu_cpu_opt != NULL)
e74cfd16 25063 mfpu_opt = &fpu_default;
493cb6ef 25064 else if (mcpu_fpu_opt != NULL && ARM_CPU_HAS_FEATURE (*mcpu_fpu_opt, arm_ext_v5))
e74cfd16 25065 mfpu_opt = &fpu_arch_vfp_v2;
03b1477f 25066 else
e74cfd16 25067 mfpu_opt = &fpu_arch_fpa;
03b1477f
RE
25068 }
25069
ee065d83 25070#ifdef CPU_DEFAULT
e74cfd16 25071 if (!mcpu_cpu_opt)
ee065d83 25072 {
e74cfd16
PB
25073 mcpu_cpu_opt = &cpu_default;
25074 selected_cpu = cpu_default;
ee065d83 25075 }
c168ce07
TP
25076 else if (dyn_mcpu_ext_opt)
25077 ARM_MERGE_FEATURE_SETS (selected_cpu, *mcpu_cpu_opt, *dyn_mcpu_ext_opt);
62785b09
TP
25078 else
25079 selected_cpu = *mcpu_cpu_opt;
e74cfd16 25080#else
c168ce07
TP
25081 if (mcpu_cpu_opt && dyn_mcpu_ext_opt)
25082 ARM_MERGE_FEATURE_SETS (selected_cpu, *mcpu_cpu_opt, *dyn_mcpu_ext_opt);
25083 else if (mcpu_cpu_opt)
e74cfd16 25084 selected_cpu = *mcpu_cpu_opt;
ee065d83 25085 else
e74cfd16 25086 mcpu_cpu_opt = &arm_arch_any;
ee065d83 25087#endif
03b1477f 25088
e74cfd16 25089 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
c168ce07
TP
25090 if (dyn_mcpu_ext_opt)
25091 ARM_MERGE_FEATURE_SETS (cpu_variant, cpu_variant, *dyn_mcpu_ext_opt);
03b1477f 25092
3e9e4fcf
JB
25093 autoselect_thumb_from_cpu_variant ();
25094
e74cfd16 25095 arm_arch_used = thumb_arch_used = arm_arch_none;
ee065d83 25096
f17c130b 25097#if defined OBJ_COFF || defined OBJ_ELF
b99bd4ef 25098 {
7cc69913
NC
25099 unsigned int flags = 0;
25100
25101#if defined OBJ_ELF
25102 flags = meabi_flags;
d507cf36
PB
25103
25104 switch (meabi_flags)
33a392fb 25105 {
d507cf36 25106 case EF_ARM_EABI_UNKNOWN:
7cc69913 25107#endif
d507cf36
PB
25108 /* Set the flags in the private structure. */
25109 if (uses_apcs_26) flags |= F_APCS26;
25110 if (support_interwork) flags |= F_INTERWORK;
25111 if (uses_apcs_float) flags |= F_APCS_FLOAT;
c19d1205 25112 if (pic_code) flags |= F_PIC;
e74cfd16 25113 if (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_any_hard))
7cc69913
NC
25114 flags |= F_SOFT_FLOAT;
25115
d507cf36
PB
25116 switch (mfloat_abi_opt)
25117 {
25118 case ARM_FLOAT_ABI_SOFT:
25119 case ARM_FLOAT_ABI_SOFTFP:
25120 flags |= F_SOFT_FLOAT;
25121 break;
33a392fb 25122
d507cf36
PB
25123 case ARM_FLOAT_ABI_HARD:
25124 if (flags & F_SOFT_FLOAT)
25125 as_bad (_("hard-float conflicts with specified fpu"));
25126 break;
25127 }
03b1477f 25128
e74cfd16
PB
25129 /* Using pure-endian doubles (even if soft-float). */
25130 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_endian_pure))
7cc69913 25131 flags |= F_VFP_FLOAT;
f17c130b 25132
fde78edd 25133#if defined OBJ_ELF
e74cfd16 25134 if (ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_maverick))
d507cf36 25135 flags |= EF_ARM_MAVERICK_FLOAT;
d507cf36
PB
25136 break;
25137
8cb51566 25138 case EF_ARM_EABI_VER4:
3a4a14e9 25139 case EF_ARM_EABI_VER5:
c19d1205 25140 /* No additional flags to set. */
d507cf36
PB
25141 break;
25142
25143 default:
25144 abort ();
25145 }
7cc69913 25146#endif
b99bd4ef
NC
25147 bfd_set_private_flags (stdoutput, flags);
25148
25149 /* We have run out flags in the COFF header to encode the
25150 status of ATPCS support, so instead we create a dummy,
c19d1205 25151 empty, debug section called .arm.atpcs. */
b99bd4ef
NC
25152 if (atpcs)
25153 {
25154 asection * sec;
25155
25156 sec = bfd_make_section (stdoutput, ".arm.atpcs");
25157
25158 if (sec != NULL)
25159 {
25160 bfd_set_section_flags
25161 (stdoutput, sec, SEC_READONLY | SEC_DEBUGGING /* | SEC_HAS_CONTENTS */);
25162 bfd_set_section_size (stdoutput, sec, 0);
25163 bfd_set_section_contents (stdoutput, sec, NULL, 0, 0);
25164 }
25165 }
7cc69913 25166 }
f17c130b 25167#endif
b99bd4ef
NC
25168
25169 /* Record the CPU type as well. */
2d447fca
JM
25170 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt2))
25171 mach = bfd_mach_arm_iWMMXt2;
25172 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_iwmmxt))
e16bb312 25173 mach = bfd_mach_arm_iWMMXt;
e74cfd16 25174 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_xscale))
b99bd4ef 25175 mach = bfd_mach_arm_XScale;
e74cfd16 25176 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_cext_maverick))
fde78edd 25177 mach = bfd_mach_arm_ep9312;
e74cfd16 25178 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5e))
b99bd4ef 25179 mach = bfd_mach_arm_5TE;
e74cfd16 25180 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v5))
b99bd4ef 25181 {
e74cfd16 25182 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
25183 mach = bfd_mach_arm_5T;
25184 else
25185 mach = bfd_mach_arm_5;
25186 }
e74cfd16 25187 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4))
b99bd4ef 25188 {
e74cfd16 25189 if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v4t))
b99bd4ef
NC
25190 mach = bfd_mach_arm_4T;
25191 else
25192 mach = bfd_mach_arm_4;
25193 }
e74cfd16 25194 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3m))
b99bd4ef 25195 mach = bfd_mach_arm_3M;
e74cfd16
PB
25196 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v3))
25197 mach = bfd_mach_arm_3;
25198 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2s))
25199 mach = bfd_mach_arm_2a;
25200 else if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v2))
25201 mach = bfd_mach_arm_2;
25202 else
25203 mach = bfd_mach_arm_unknown;
b99bd4ef
NC
25204
25205 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach);
25206}
25207
c19d1205 25208/* Command line processing. */
b99bd4ef 25209
c19d1205
ZW
25210/* md_parse_option
25211 Invocation line includes a switch not recognized by the base assembler.
25212 See if it's a processor-specific option.
b99bd4ef 25213
c19d1205
ZW
25214 This routine is somewhat complicated by the need for backwards
25215 compatibility (since older releases of gcc can't be changed).
25216 The new options try to make the interface as compatible as
25217 possible with GCC.
b99bd4ef 25218
c19d1205 25219 New options (supported) are:
b99bd4ef 25220
c19d1205
ZW
25221 -mcpu=<cpu name> Assemble for selected processor
25222 -march=<architecture name> Assemble for selected architecture
25223 -mfpu=<fpu architecture> Assemble for selected FPU.
25224 -EB/-mbig-endian Big-endian
25225 -EL/-mlittle-endian Little-endian
25226 -k Generate PIC code
25227 -mthumb Start in Thumb mode
25228 -mthumb-interwork Code supports ARM/Thumb interworking
b99bd4ef 25229
278df34e 25230 -m[no-]warn-deprecated Warn about deprecated features
8b2d793c 25231 -m[no-]warn-syms Warn when symbols match instructions
267bf995 25232
c19d1205 25233 For now we will also provide support for:
b99bd4ef 25234
c19d1205
ZW
25235 -mapcs-32 32-bit Program counter
25236 -mapcs-26 26-bit Program counter
25237 -macps-float Floats passed in FP registers
25238 -mapcs-reentrant Reentrant code
25239 -matpcs
25240 (sometime these will probably be replaced with -mapcs=<list of options>
25241 and -matpcs=<list of options>)
b99bd4ef 25242
c19d1205
ZW
25243 The remaining options are only supported for back-wards compatibility.
25244 Cpu variants, the arm part is optional:
25245 -m[arm]1 Currently not supported.
25246 -m[arm]2, -m[arm]250 Arm 2 and Arm 250 processor
25247 -m[arm]3 Arm 3 processor
25248 -m[arm]6[xx], Arm 6 processors
25249 -m[arm]7[xx][t][[d]m] Arm 7 processors
25250 -m[arm]8[10] Arm 8 processors
25251 -m[arm]9[20][tdmi] Arm 9 processors
25252 -mstrongarm[110[0]] StrongARM processors
25253 -mxscale XScale processors
25254 -m[arm]v[2345[t[e]]] Arm architectures
25255 -mall All (except the ARM1)
25256 FP variants:
25257 -mfpa10, -mfpa11 FPA10 and 11 co-processor instructions
25258 -mfpe-old (No float load/store multiples)
25259 -mvfpxd VFP Single precision
25260 -mvfp All VFP
25261 -mno-fpu Disable all floating point instructions
b99bd4ef 25262
c19d1205
ZW
25263 The following CPU names are recognized:
25264 arm1, arm2, arm250, arm3, arm6, arm600, arm610, arm620,
25265 arm7, arm7m, arm7d, arm7dm, arm7di, arm7dmi, arm70, arm700,
25266 arm700i, arm710 arm710t, arm720, arm720t, arm740t, arm710c,
25267 arm7100, arm7500, arm7500fe, arm7tdmi, arm8, arm810, arm9,
25268 arm920, arm920t, arm940t, arm946, arm966, arm9tdmi, arm9e,
25269 arm10t arm10e, arm1020t, arm1020e, arm10200e,
25270 strongarm, strongarm110, strongarm1100, strongarm1110, xscale.
b99bd4ef 25271
c19d1205 25272 */
b99bd4ef 25273
c19d1205 25274const char * md_shortopts = "m:k";
b99bd4ef 25275
c19d1205
ZW
25276#ifdef ARM_BI_ENDIAN
25277#define OPTION_EB (OPTION_MD_BASE + 0)
25278#define OPTION_EL (OPTION_MD_BASE + 1)
b99bd4ef 25279#else
c19d1205
ZW
25280#if TARGET_BYTES_BIG_ENDIAN
25281#define OPTION_EB (OPTION_MD_BASE + 0)
b99bd4ef 25282#else
c19d1205
ZW
25283#define OPTION_EL (OPTION_MD_BASE + 1)
25284#endif
b99bd4ef 25285#endif
845b51d6 25286#define OPTION_FIX_V4BX (OPTION_MD_BASE + 2)
b99bd4ef 25287
c19d1205 25288struct option md_longopts[] =
b99bd4ef 25289{
c19d1205
ZW
25290#ifdef OPTION_EB
25291 {"EB", no_argument, NULL, OPTION_EB},
25292#endif
25293#ifdef OPTION_EL
25294 {"EL", no_argument, NULL, OPTION_EL},
b99bd4ef 25295#endif
845b51d6 25296 {"fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
c19d1205
ZW
25297 {NULL, no_argument, NULL, 0}
25298};
b99bd4ef 25299
8b2d793c 25300
c19d1205 25301size_t md_longopts_size = sizeof (md_longopts);
b99bd4ef 25302
c19d1205 25303struct arm_option_table
b99bd4ef 25304{
e0471c16
TS
25305 const char *option; /* Option name to match. */
25306 const char *help; /* Help information. */
c19d1205
ZW
25307 int *var; /* Variable to change. */
25308 int value; /* What to change it to. */
e0471c16 25309 const char *deprecated; /* If non-null, print this message. */
c19d1205 25310};
b99bd4ef 25311
c19d1205
ZW
25312struct arm_option_table arm_opts[] =
25313{
25314 {"k", N_("generate PIC code"), &pic_code, 1, NULL},
25315 {"mthumb", N_("assemble Thumb code"), &thumb_mode, 1, NULL},
25316 {"mthumb-interwork", N_("support ARM/Thumb interworking"),
25317 &support_interwork, 1, NULL},
25318 {"mapcs-32", N_("code uses 32-bit program counter"), &uses_apcs_26, 0, NULL},
25319 {"mapcs-26", N_("code uses 26-bit program counter"), &uses_apcs_26, 1, NULL},
25320 {"mapcs-float", N_("floating point args are in fp regs"), &uses_apcs_float,
25321 1, NULL},
25322 {"mapcs-reentrant", N_("re-entrant code"), &pic_code, 1, NULL},
25323 {"matpcs", N_("code is ATPCS conformant"), &atpcs, 1, NULL},
25324 {"mbig-endian", N_("assemble for big-endian"), &target_big_endian, 1, NULL},
25325 {"mlittle-endian", N_("assemble for little-endian"), &target_big_endian, 0,
25326 NULL},
b99bd4ef 25327
c19d1205
ZW
25328 /* These are recognized by the assembler, but have no affect on code. */
25329 {"mapcs-frame", N_("use frame pointer"), NULL, 0, NULL},
25330 {"mapcs-stack-check", N_("use stack size checking"), NULL, 0, NULL},
278df34e
NS
25331
25332 {"mwarn-deprecated", NULL, &warn_on_deprecated, 1, NULL},
25333 {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
25334 &warn_on_deprecated, 0, NULL},
8b2d793c
NC
25335 {"mwarn-syms", N_("warn about symbols that match instruction names [default]"), (int *) (& flag_warn_syms), TRUE, NULL},
25336 {"mno-warn-syms", N_("disable warnings about symobls that match instructions"), (int *) (& flag_warn_syms), FALSE, NULL},
e74cfd16
PB
25337 {NULL, NULL, NULL, 0, NULL}
25338};
25339
25340struct arm_legacy_option_table
25341{
e0471c16 25342 const char *option; /* Option name to match. */
e74cfd16
PB
25343 const arm_feature_set **var; /* Variable to change. */
25344 const arm_feature_set value; /* What to change it to. */
e0471c16 25345 const char *deprecated; /* If non-null, print this message. */
e74cfd16 25346};
b99bd4ef 25347
e74cfd16
PB
25348const struct arm_legacy_option_table arm_legacy_opts[] =
25349{
c19d1205
ZW
25350 /* DON'T add any new processors to this list -- we want the whole list
25351 to go away... Add them to the processors table instead. */
e74cfd16
PB
25352 {"marm1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
25353 {"m1", &legacy_cpu, ARM_ARCH_V1, N_("use -mcpu=arm1")},
25354 {"marm2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
25355 {"m2", &legacy_cpu, ARM_ARCH_V2, N_("use -mcpu=arm2")},
25356 {"marm250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
25357 {"m250", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm250")},
25358 {"marm3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
25359 {"m3", &legacy_cpu, ARM_ARCH_V2S, N_("use -mcpu=arm3")},
25360 {"marm6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
25361 {"m6", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm6")},
25362 {"marm600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
25363 {"m600", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm600")},
25364 {"marm610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
25365 {"m610", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm610")},
25366 {"marm620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
25367 {"m620", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm620")},
25368 {"marm7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
25369 {"m7", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7")},
25370 {"marm70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
25371 {"m70", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm70")},
25372 {"marm700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
25373 {"m700", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700")},
25374 {"marm700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
25375 {"m700i", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm700i")},
25376 {"marm710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
25377 {"m710", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710")},
25378 {"marm710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
25379 {"m710c", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm710c")},
25380 {"marm720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
25381 {"m720", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm720")},
25382 {"marm7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
25383 {"m7d", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7d")},
25384 {"marm7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
25385 {"m7di", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7di")},
25386 {"marm7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
25387 {"m7m", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7m")},
25388 {"marm7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
25389 {"m7dm", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dm")},
25390 {"marm7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
25391 {"m7dmi", &legacy_cpu, ARM_ARCH_V3M, N_("use -mcpu=arm7dmi")},
25392 {"marm7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
25393 {"m7100", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7100")},
25394 {"marm7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
25395 {"m7500", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500")},
25396 {"marm7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
25397 {"m7500fe", &legacy_cpu, ARM_ARCH_V3, N_("use -mcpu=arm7500fe")},
25398 {"marm7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25399 {"m7t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25400 {"marm7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25401 {"m7tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm7tdmi")},
25402 {"marm710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
25403 {"m710t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm710t")},
25404 {"marm720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
25405 {"m720t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm720t")},
25406 {"marm740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
25407 {"m740t", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm740t")},
25408 {"marm8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
25409 {"m8", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm8")},
25410 {"marm810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
25411 {"m810", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=arm810")},
25412 {"marm9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
25413 {"m9", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9")},
25414 {"marm9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
25415 {"m9tdmi", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm9tdmi")},
25416 {"marm920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
25417 {"m920", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm920")},
25418 {"marm940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
25419 {"m940", &legacy_cpu, ARM_ARCH_V4T, N_("use -mcpu=arm940")},
25420 {"mstrongarm", &legacy_cpu, ARM_ARCH_V4, N_("use -mcpu=strongarm")},
25421 {"mstrongarm110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25422 N_("use -mcpu=strongarm110")},
e74cfd16 25423 {"mstrongarm1100", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25424 N_("use -mcpu=strongarm1100")},
e74cfd16 25425 {"mstrongarm1110", &legacy_cpu, ARM_ARCH_V4,
c19d1205 25426 N_("use -mcpu=strongarm1110")},
e74cfd16
PB
25427 {"mxscale", &legacy_cpu, ARM_ARCH_XSCALE, N_("use -mcpu=xscale")},
25428 {"miwmmxt", &legacy_cpu, ARM_ARCH_IWMMXT, N_("use -mcpu=iwmmxt")},
25429 {"mall", &legacy_cpu, ARM_ANY, N_("use -mcpu=all")},
7ed4c4c5 25430
c19d1205 25431 /* Architecture variants -- don't add any more to this list either. */
e74cfd16
PB
25432 {"mv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
25433 {"marmv2", &legacy_cpu, ARM_ARCH_V2, N_("use -march=armv2")},
25434 {"mv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
25435 {"marmv2a", &legacy_cpu, ARM_ARCH_V2S, N_("use -march=armv2a")},
25436 {"mv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
25437 {"marmv3", &legacy_cpu, ARM_ARCH_V3, N_("use -march=armv3")},
25438 {"mv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
25439 {"marmv3m", &legacy_cpu, ARM_ARCH_V3M, N_("use -march=armv3m")},
25440 {"mv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
25441 {"marmv4", &legacy_cpu, ARM_ARCH_V4, N_("use -march=armv4")},
25442 {"mv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
25443 {"marmv4t", &legacy_cpu, ARM_ARCH_V4T, N_("use -march=armv4t")},
25444 {"mv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
25445 {"marmv5", &legacy_cpu, ARM_ARCH_V5, N_("use -march=armv5")},
25446 {"mv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
25447 {"marmv5t", &legacy_cpu, ARM_ARCH_V5T, N_("use -march=armv5t")},
25448 {"mv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
25449 {"marmv5e", &legacy_cpu, ARM_ARCH_V5TE, N_("use -march=armv5te")},
7ed4c4c5 25450
c19d1205 25451 /* Floating point variants -- don't add any more to this list either. */
e74cfd16
PB
25452 {"mfpe-old", &legacy_fpu, FPU_ARCH_FPE, N_("use -mfpu=fpe")},
25453 {"mfpa10", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa10")},
25454 {"mfpa11", &legacy_fpu, FPU_ARCH_FPA, N_("use -mfpu=fpa11")},
25455 {"mno-fpu", &legacy_fpu, ARM_ARCH_NONE,
c19d1205 25456 N_("use either -mfpu=softfpa or -mfpu=softvfp")},
7ed4c4c5 25457
e74cfd16 25458 {NULL, NULL, ARM_ARCH_NONE, NULL}
c19d1205 25459};
7ed4c4c5 25460
c19d1205 25461struct arm_cpu_option_table
7ed4c4c5 25462{
e0471c16 25463 const char *name;
f3bad469 25464 size_t name_len;
e74cfd16 25465 const arm_feature_set value;
996b5569 25466 const arm_feature_set ext;
c19d1205
ZW
25467 /* For some CPUs we assume an FPU unless the user explicitly sets
25468 -mfpu=... */
e74cfd16 25469 const arm_feature_set default_fpu;
ee065d83
PB
25470 /* The canonical name of the CPU, or NULL to use NAME converted to upper
25471 case. */
25472 const char *canonical_name;
c19d1205 25473};
7ed4c4c5 25474
c19d1205
ZW
25475/* This list should, at a minimum, contain all the cpu names
25476 recognized by GCC. */
996b5569 25477#define ARM_CPU_OPT(N, CN, V, E, DF) { N, sizeof (N) - 1, V, E, DF, CN }
e74cfd16 25478static const struct arm_cpu_option_table arm_cpus[] =
c19d1205 25479{
996b5569
TP
25480 ARM_CPU_OPT ("all", NULL, ARM_ANY,
25481 ARM_ARCH_NONE,
25482 FPU_ARCH_FPA),
25483 ARM_CPU_OPT ("arm1", NULL, ARM_ARCH_V1,
25484 ARM_ARCH_NONE,
25485 FPU_ARCH_FPA),
25486 ARM_CPU_OPT ("arm2", NULL, ARM_ARCH_V2,
25487 ARM_ARCH_NONE,
25488 FPU_ARCH_FPA),
25489 ARM_CPU_OPT ("arm250", NULL, ARM_ARCH_V2S,
25490 ARM_ARCH_NONE,
25491 FPU_ARCH_FPA),
25492 ARM_CPU_OPT ("arm3", NULL, ARM_ARCH_V2S,
25493 ARM_ARCH_NONE,
25494 FPU_ARCH_FPA),
25495 ARM_CPU_OPT ("arm6", NULL, ARM_ARCH_V3,
25496 ARM_ARCH_NONE,
25497 FPU_ARCH_FPA),
25498 ARM_CPU_OPT ("arm60", NULL, ARM_ARCH_V3,
25499 ARM_ARCH_NONE,
25500 FPU_ARCH_FPA),
25501 ARM_CPU_OPT ("arm600", NULL, ARM_ARCH_V3,
25502 ARM_ARCH_NONE,
25503 FPU_ARCH_FPA),
25504 ARM_CPU_OPT ("arm610", NULL, ARM_ARCH_V3,
25505 ARM_ARCH_NONE,
25506 FPU_ARCH_FPA),
25507 ARM_CPU_OPT ("arm620", NULL, ARM_ARCH_V3,
25508 ARM_ARCH_NONE,
25509 FPU_ARCH_FPA),
25510 ARM_CPU_OPT ("arm7", NULL, ARM_ARCH_V3,
25511 ARM_ARCH_NONE,
25512 FPU_ARCH_FPA),
25513 ARM_CPU_OPT ("arm7m", NULL, ARM_ARCH_V3M,
25514 ARM_ARCH_NONE,
25515 FPU_ARCH_FPA),
25516 ARM_CPU_OPT ("arm7d", NULL, ARM_ARCH_V3,
25517 ARM_ARCH_NONE,
25518 FPU_ARCH_FPA),
25519 ARM_CPU_OPT ("arm7dm", NULL, ARM_ARCH_V3M,
25520 ARM_ARCH_NONE,
25521 FPU_ARCH_FPA),
25522 ARM_CPU_OPT ("arm7di", NULL, ARM_ARCH_V3,
25523 ARM_ARCH_NONE,
25524 FPU_ARCH_FPA),
25525 ARM_CPU_OPT ("arm7dmi", NULL, ARM_ARCH_V3M,
25526 ARM_ARCH_NONE,
25527 FPU_ARCH_FPA),
25528 ARM_CPU_OPT ("arm70", NULL, ARM_ARCH_V3,
25529 ARM_ARCH_NONE,
25530 FPU_ARCH_FPA),
25531 ARM_CPU_OPT ("arm700", NULL, ARM_ARCH_V3,
25532 ARM_ARCH_NONE,
25533 FPU_ARCH_FPA),
25534 ARM_CPU_OPT ("arm700i", NULL, ARM_ARCH_V3,
25535 ARM_ARCH_NONE,
25536 FPU_ARCH_FPA),
25537 ARM_CPU_OPT ("arm710", NULL, ARM_ARCH_V3,
25538 ARM_ARCH_NONE,
25539 FPU_ARCH_FPA),
25540 ARM_CPU_OPT ("arm710t", NULL, ARM_ARCH_V4T,
25541 ARM_ARCH_NONE,
25542 FPU_ARCH_FPA),
25543 ARM_CPU_OPT ("arm720", NULL, ARM_ARCH_V3,
25544 ARM_ARCH_NONE,
25545 FPU_ARCH_FPA),
25546 ARM_CPU_OPT ("arm720t", NULL, ARM_ARCH_V4T,
25547 ARM_ARCH_NONE,
25548 FPU_ARCH_FPA),
25549 ARM_CPU_OPT ("arm740t", NULL, ARM_ARCH_V4T,
25550 ARM_ARCH_NONE,
25551 FPU_ARCH_FPA),
25552 ARM_CPU_OPT ("arm710c", NULL, ARM_ARCH_V3,
25553 ARM_ARCH_NONE,
25554 FPU_ARCH_FPA),
25555 ARM_CPU_OPT ("arm7100", NULL, ARM_ARCH_V3,
25556 ARM_ARCH_NONE,
25557 FPU_ARCH_FPA),
25558 ARM_CPU_OPT ("arm7500", NULL, ARM_ARCH_V3,
25559 ARM_ARCH_NONE,
25560 FPU_ARCH_FPA),
25561 ARM_CPU_OPT ("arm7500fe", NULL, ARM_ARCH_V3,
25562 ARM_ARCH_NONE,
25563 FPU_ARCH_FPA),
25564 ARM_CPU_OPT ("arm7t", NULL, ARM_ARCH_V4T,
25565 ARM_ARCH_NONE,
25566 FPU_ARCH_FPA),
25567 ARM_CPU_OPT ("arm7tdmi", NULL, ARM_ARCH_V4T,
25568 ARM_ARCH_NONE,
25569 FPU_ARCH_FPA),
25570 ARM_CPU_OPT ("arm7tdmi-s", NULL, ARM_ARCH_V4T,
25571 ARM_ARCH_NONE,
25572 FPU_ARCH_FPA),
25573 ARM_CPU_OPT ("arm8", NULL, ARM_ARCH_V4,
25574 ARM_ARCH_NONE,
25575 FPU_ARCH_FPA),
25576 ARM_CPU_OPT ("arm810", NULL, ARM_ARCH_V4,
25577 ARM_ARCH_NONE,
25578 FPU_ARCH_FPA),
25579 ARM_CPU_OPT ("strongarm", NULL, ARM_ARCH_V4,
25580 ARM_ARCH_NONE,
25581 FPU_ARCH_FPA),
25582 ARM_CPU_OPT ("strongarm1", NULL, ARM_ARCH_V4,
25583 ARM_ARCH_NONE,
25584 FPU_ARCH_FPA),
25585 ARM_CPU_OPT ("strongarm110", NULL, ARM_ARCH_V4,
25586 ARM_ARCH_NONE,
25587 FPU_ARCH_FPA),
25588 ARM_CPU_OPT ("strongarm1100", NULL, ARM_ARCH_V4,
25589 ARM_ARCH_NONE,
25590 FPU_ARCH_FPA),
25591 ARM_CPU_OPT ("strongarm1110", NULL, ARM_ARCH_V4,
25592 ARM_ARCH_NONE,
25593 FPU_ARCH_FPA),
25594 ARM_CPU_OPT ("arm9", NULL, ARM_ARCH_V4T,
25595 ARM_ARCH_NONE,
25596 FPU_ARCH_FPA),
25597 ARM_CPU_OPT ("arm920", "ARM920T", ARM_ARCH_V4T,
25598 ARM_ARCH_NONE,
25599 FPU_ARCH_FPA),
25600 ARM_CPU_OPT ("arm920t", NULL, ARM_ARCH_V4T,
25601 ARM_ARCH_NONE,
25602 FPU_ARCH_FPA),
25603 ARM_CPU_OPT ("arm922t", NULL, ARM_ARCH_V4T,
25604 ARM_ARCH_NONE,
25605 FPU_ARCH_FPA),
25606 ARM_CPU_OPT ("arm940t", NULL, ARM_ARCH_V4T,
25607 ARM_ARCH_NONE,
25608 FPU_ARCH_FPA),
25609 ARM_CPU_OPT ("arm9tdmi", NULL, ARM_ARCH_V4T,
25610 ARM_ARCH_NONE,
25611 FPU_ARCH_FPA),
25612 ARM_CPU_OPT ("fa526", NULL, ARM_ARCH_V4,
25613 ARM_ARCH_NONE,
25614 FPU_ARCH_FPA),
25615 ARM_CPU_OPT ("fa626", NULL, ARM_ARCH_V4,
25616 ARM_ARCH_NONE,
25617 FPU_ARCH_FPA),
25618
c19d1205
ZW
25619 /* For V5 or later processors we default to using VFP; but the user
25620 should really set the FPU type explicitly. */
996b5569
TP
25621 ARM_CPU_OPT ("arm9e-r0", NULL, ARM_ARCH_V5TExP,
25622 ARM_ARCH_NONE,
25623 FPU_ARCH_VFP_V2),
25624 ARM_CPU_OPT ("arm9e", NULL, ARM_ARCH_V5TE,
25625 ARM_ARCH_NONE,
25626 FPU_ARCH_VFP_V2),
25627 ARM_CPU_OPT ("arm926ej", "ARM926EJ-S", ARM_ARCH_V5TEJ,
25628 ARM_ARCH_NONE,
25629 FPU_ARCH_VFP_V2),
25630 ARM_CPU_OPT ("arm926ejs", "ARM926EJ-S", ARM_ARCH_V5TEJ,
25631 ARM_ARCH_NONE,
25632 FPU_ARCH_VFP_V2),
25633 ARM_CPU_OPT ("arm926ej-s", NULL, ARM_ARCH_V5TEJ,
25634 ARM_ARCH_NONE,
25635 FPU_ARCH_VFP_V2),
25636 ARM_CPU_OPT ("arm946e-r0", NULL, ARM_ARCH_V5TExP,
25637 ARM_ARCH_NONE,
25638 FPU_ARCH_VFP_V2),
25639 ARM_CPU_OPT ("arm946e", "ARM946E-S", ARM_ARCH_V5TE,
25640 ARM_ARCH_NONE,
25641 FPU_ARCH_VFP_V2),
25642 ARM_CPU_OPT ("arm946e-s", NULL, ARM_ARCH_V5TE,
25643 ARM_ARCH_NONE,
25644 FPU_ARCH_VFP_V2),
25645 ARM_CPU_OPT ("arm966e-r0", NULL, ARM_ARCH_V5TExP,
25646 ARM_ARCH_NONE,
25647 FPU_ARCH_VFP_V2),
25648 ARM_CPU_OPT ("arm966e", "ARM966E-S", ARM_ARCH_V5TE,
25649 ARM_ARCH_NONE,
25650 FPU_ARCH_VFP_V2),
25651 ARM_CPU_OPT ("arm966e-s", NULL, ARM_ARCH_V5TE,
25652 ARM_ARCH_NONE,
25653 FPU_ARCH_VFP_V2),
25654 ARM_CPU_OPT ("arm968e-s", NULL, ARM_ARCH_V5TE,
25655 ARM_ARCH_NONE,
25656 FPU_ARCH_VFP_V2),
25657 ARM_CPU_OPT ("arm10t", NULL, ARM_ARCH_V5T,
25658 ARM_ARCH_NONE,
25659 FPU_ARCH_VFP_V1),
25660 ARM_CPU_OPT ("arm10tdmi", NULL, ARM_ARCH_V5T,
25661 ARM_ARCH_NONE,
25662 FPU_ARCH_VFP_V1),
25663 ARM_CPU_OPT ("arm10e", NULL, ARM_ARCH_V5TE,
25664 ARM_ARCH_NONE,
25665 FPU_ARCH_VFP_V2),
25666 ARM_CPU_OPT ("arm1020", "ARM1020E", ARM_ARCH_V5TE,
25667 ARM_ARCH_NONE,
25668 FPU_ARCH_VFP_V2),
25669 ARM_CPU_OPT ("arm1020t", NULL, ARM_ARCH_V5T,
25670 ARM_ARCH_NONE,
25671 FPU_ARCH_VFP_V1),
25672 ARM_CPU_OPT ("arm1020e", NULL, ARM_ARCH_V5TE,
25673 ARM_ARCH_NONE,
25674 FPU_ARCH_VFP_V2),
25675 ARM_CPU_OPT ("arm1022e", NULL, ARM_ARCH_V5TE,
25676 ARM_ARCH_NONE,
25677 FPU_ARCH_VFP_V2),
25678 ARM_CPU_OPT ("arm1026ejs", "ARM1026EJ-S", ARM_ARCH_V5TEJ,
25679 ARM_ARCH_NONE,
25680 FPU_ARCH_VFP_V2),
25681 ARM_CPU_OPT ("arm1026ej-s", NULL, ARM_ARCH_V5TEJ,
25682 ARM_ARCH_NONE,
25683 FPU_ARCH_VFP_V2),
25684 ARM_CPU_OPT ("fa606te", NULL, ARM_ARCH_V5TE,
25685 ARM_ARCH_NONE,
25686 FPU_ARCH_VFP_V2),
25687 ARM_CPU_OPT ("fa616te", NULL, ARM_ARCH_V5TE,
25688 ARM_ARCH_NONE,
25689 FPU_ARCH_VFP_V2),
25690 ARM_CPU_OPT ("fa626te", NULL, ARM_ARCH_V5TE,
25691 ARM_ARCH_NONE,
25692 FPU_ARCH_VFP_V2),
25693 ARM_CPU_OPT ("fmp626", NULL, ARM_ARCH_V5TE,
25694 ARM_ARCH_NONE,
25695 FPU_ARCH_VFP_V2),
25696 ARM_CPU_OPT ("fa726te", NULL, ARM_ARCH_V5TE,
25697 ARM_ARCH_NONE,
25698 FPU_ARCH_VFP_V2),
25699 ARM_CPU_OPT ("arm1136js", "ARM1136J-S", ARM_ARCH_V6,
25700 ARM_ARCH_NONE,
25701 FPU_NONE),
25702 ARM_CPU_OPT ("arm1136j-s", NULL, ARM_ARCH_V6,
25703 ARM_ARCH_NONE,
25704 FPU_NONE),
25705 ARM_CPU_OPT ("arm1136jfs", "ARM1136JF-S", ARM_ARCH_V6,
25706 ARM_ARCH_NONE,
25707 FPU_ARCH_VFP_V2),
25708 ARM_CPU_OPT ("arm1136jf-s", NULL, ARM_ARCH_V6,
25709 ARM_ARCH_NONE,
25710 FPU_ARCH_VFP_V2),
25711 ARM_CPU_OPT ("mpcore", "MPCore", ARM_ARCH_V6K,
25712 ARM_ARCH_NONE,
25713 FPU_ARCH_VFP_V2),
25714 ARM_CPU_OPT ("mpcorenovfp", "MPCore", ARM_ARCH_V6K,
25715 ARM_ARCH_NONE,
25716 FPU_NONE),
25717 ARM_CPU_OPT ("arm1156t2-s", NULL, ARM_ARCH_V6T2,
25718 ARM_ARCH_NONE,
25719 FPU_NONE),
25720 ARM_CPU_OPT ("arm1156t2f-s", NULL, ARM_ARCH_V6T2,
25721 ARM_ARCH_NONE,
25722 FPU_ARCH_VFP_V2),
25723 ARM_CPU_OPT ("arm1176jz-s", NULL, ARM_ARCH_V6KZ,
25724 ARM_ARCH_NONE,
25725 FPU_NONE),
25726 ARM_CPU_OPT ("arm1176jzf-s", NULL, ARM_ARCH_V6KZ,
25727 ARM_ARCH_NONE,
25728 FPU_ARCH_VFP_V2),
25729 ARM_CPU_OPT ("cortex-a5", "Cortex-A5", ARM_ARCH_V7A,
25730 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
25731 FPU_NONE),
25732 ARM_CPU_OPT ("cortex-a7", "Cortex-A7", ARM_ARCH_V7VE,
25733 ARM_ARCH_NONE,
25734 FPU_ARCH_NEON_VFP_V4),
25735 ARM_CPU_OPT ("cortex-a8", "Cortex-A8", ARM_ARCH_V7A,
25736 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
25737 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
25738 ARM_CPU_OPT ("cortex-a9", "Cortex-A9", ARM_ARCH_V7A,
25739 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
25740 ARM_FEATURE_COPROC (FPU_VFP_V3 | FPU_NEON_EXT_V1)),
25741 ARM_CPU_OPT ("cortex-a12", "Cortex-A12", ARM_ARCH_V7VE,
25742 ARM_ARCH_NONE,
25743 FPU_ARCH_NEON_VFP_V4),
25744 ARM_CPU_OPT ("cortex-a15", "Cortex-A15", ARM_ARCH_V7VE,
25745 ARM_ARCH_NONE,
25746 FPU_ARCH_NEON_VFP_V4),
25747 ARM_CPU_OPT ("cortex-a17", "Cortex-A17", ARM_ARCH_V7VE,
25748 ARM_ARCH_NONE,
25749 FPU_ARCH_NEON_VFP_V4),
25750 ARM_CPU_OPT ("cortex-a32", "Cortex-A32", ARM_ARCH_V8A,
25751 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25752 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25753 ARM_CPU_OPT ("cortex-a35", "Cortex-A35", ARM_ARCH_V8A,
25754 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25755 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25756 ARM_CPU_OPT ("cortex-a53", "Cortex-A53", ARM_ARCH_V8A,
25757 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25758 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25759 ARM_CPU_OPT ("cortex-a57", "Cortex-A57", ARM_ARCH_V8A,
25760 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25761 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25762 ARM_CPU_OPT ("cortex-a72", "Cortex-A72", ARM_ARCH_V8A,
25763 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25764 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25765 ARM_CPU_OPT ("cortex-a73", "Cortex-A73", ARM_ARCH_V8A,
25766 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25767 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25768 ARM_CPU_OPT ("cortex-r4", "Cortex-R4", ARM_ARCH_V7R,
25769 ARM_ARCH_NONE,
25770 FPU_NONE),
25771 ARM_CPU_OPT ("cortex-r4f", "Cortex-R4F", ARM_ARCH_V7R,
25772 ARM_ARCH_NONE,
25773 FPU_ARCH_VFP_V3D16),
25774 ARM_CPU_OPT ("cortex-r5", "Cortex-R5", ARM_ARCH_V7R,
25775 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
25776 FPU_NONE),
25777 ARM_CPU_OPT ("cortex-r7", "Cortex-R7", ARM_ARCH_V7R,
25778 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
25779 FPU_ARCH_VFP_V3D16),
25780 ARM_CPU_OPT ("cortex-r8", "Cortex-R8", ARM_ARCH_V7R,
25781 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV),
25782 FPU_ARCH_VFP_V3D16),
25783 ARM_CPU_OPT ("cortex-m33", "Cortex-M33", ARM_ARCH_V8M_MAIN,
25784 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
25785 FPU_NONE),
25786 ARM_CPU_OPT ("cortex-m23", "Cortex-M23", ARM_ARCH_V8M_BASE,
25787 ARM_ARCH_NONE,
25788 FPU_NONE),
25789 ARM_CPU_OPT ("cortex-m7", "Cortex-M7", ARM_ARCH_V7EM,
25790 ARM_ARCH_NONE,
25791 FPU_NONE),
25792 ARM_CPU_OPT ("cortex-m4", "Cortex-M4", ARM_ARCH_V7EM,
25793 ARM_ARCH_NONE,
25794 FPU_NONE),
25795 ARM_CPU_OPT ("cortex-m3", "Cortex-M3", ARM_ARCH_V7M,
25796 ARM_ARCH_NONE,
25797 FPU_NONE),
25798 ARM_CPU_OPT ("cortex-m1", "Cortex-M1", ARM_ARCH_V6SM,
25799 ARM_ARCH_NONE,
25800 FPU_NONE),
25801 ARM_CPU_OPT ("cortex-m0", "Cortex-M0", ARM_ARCH_V6SM,
25802 ARM_ARCH_NONE,
25803 FPU_NONE),
25804 ARM_CPU_OPT ("cortex-m0plus", "Cortex-M0+", ARM_ARCH_V6SM,
25805 ARM_ARCH_NONE,
25806 FPU_NONE),
25807 ARM_CPU_OPT ("exynos-m1", "Samsung Exynos M1", ARM_ARCH_V8A,
25808 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25809 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
6b21c2bf 25810
c19d1205 25811 /* ??? XSCALE is really an architecture. */
996b5569
TP
25812 ARM_CPU_OPT ("xscale", NULL, ARM_ARCH_XSCALE,
25813 ARM_ARCH_NONE,
25814 FPU_ARCH_VFP_V2),
25815
c19d1205 25816 /* ??? iwmmxt is not a processor. */
996b5569
TP
25817 ARM_CPU_OPT ("iwmmxt", NULL, ARM_ARCH_IWMMXT,
25818 ARM_ARCH_NONE,
25819 FPU_ARCH_VFP_V2),
25820 ARM_CPU_OPT ("iwmmxt2", NULL, ARM_ARCH_IWMMXT2,
25821 ARM_ARCH_NONE,
25822 FPU_ARCH_VFP_V2),
25823 ARM_CPU_OPT ("i80200", NULL, ARM_ARCH_XSCALE,
25824 ARM_ARCH_NONE,
25825 FPU_ARCH_VFP_V2),
25826
c19d1205 25827 /* Maverick */
996b5569
TP
25828 ARM_CPU_OPT ("ep9312", "ARM920T",
25829 ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
25830 ARM_ARCH_NONE, FPU_ARCH_MAVERICK),
25831
da4339ed 25832 /* Marvell processors. */
996b5569
TP
25833 ARM_CPU_OPT ("marvell-pj4", NULL, ARM_ARCH_V7A,
25834 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
25835 FPU_ARCH_VFP_V3D16),
25836 ARM_CPU_OPT ("marvell-whitney", NULL, ARM_ARCH_V7A,
25837 ARM_FEATURE_CORE_LOW (ARM_EXT_MP | ARM_EXT_SEC),
25838 FPU_ARCH_NEON_VFP_V4),
da4339ed 25839
996b5569
TP
25840 /* APM X-Gene family. */
25841 ARM_CPU_OPT ("xgene1", "APM X-Gene 1", ARM_ARCH_V8A,
25842 ARM_ARCH_NONE,
25843 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25844 ARM_CPU_OPT ("xgene2", "APM X-Gene 2", ARM_ARCH_V8A,
25845 ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25846 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8),
25847
25848 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
c19d1205 25849};
f3bad469 25850#undef ARM_CPU_OPT
7ed4c4c5 25851
c19d1205 25852struct arm_arch_option_table
7ed4c4c5 25853{
e0471c16 25854 const char *name;
f3bad469 25855 size_t name_len;
e74cfd16
PB
25856 const arm_feature_set value;
25857 const arm_feature_set default_fpu;
c19d1205 25858};
7ed4c4c5 25859
c19d1205
ZW
25860/* This list should, at a minimum, contain all the architecture names
25861 recognized by GCC. */
f3bad469 25862#define ARM_ARCH_OPT(N, V, DF) { N, sizeof (N) - 1, V, DF }
e74cfd16 25863static const struct arm_arch_option_table arm_archs[] =
c19d1205 25864{
f3bad469
MGD
25865 ARM_ARCH_OPT ("all", ARM_ANY, FPU_ARCH_FPA),
25866 ARM_ARCH_OPT ("armv1", ARM_ARCH_V1, FPU_ARCH_FPA),
25867 ARM_ARCH_OPT ("armv2", ARM_ARCH_V2, FPU_ARCH_FPA),
25868 ARM_ARCH_OPT ("armv2a", ARM_ARCH_V2S, FPU_ARCH_FPA),
25869 ARM_ARCH_OPT ("armv2s", ARM_ARCH_V2S, FPU_ARCH_FPA),
25870 ARM_ARCH_OPT ("armv3", ARM_ARCH_V3, FPU_ARCH_FPA),
25871 ARM_ARCH_OPT ("armv3m", ARM_ARCH_V3M, FPU_ARCH_FPA),
25872 ARM_ARCH_OPT ("armv4", ARM_ARCH_V4, FPU_ARCH_FPA),
25873 ARM_ARCH_OPT ("armv4xm", ARM_ARCH_V4xM, FPU_ARCH_FPA),
25874 ARM_ARCH_OPT ("armv4t", ARM_ARCH_V4T, FPU_ARCH_FPA),
25875 ARM_ARCH_OPT ("armv4txm", ARM_ARCH_V4TxM, FPU_ARCH_FPA),
25876 ARM_ARCH_OPT ("armv5", ARM_ARCH_V5, FPU_ARCH_VFP),
25877 ARM_ARCH_OPT ("armv5t", ARM_ARCH_V5T, FPU_ARCH_VFP),
25878 ARM_ARCH_OPT ("armv5txm", ARM_ARCH_V5TxM, FPU_ARCH_VFP),
25879 ARM_ARCH_OPT ("armv5te", ARM_ARCH_V5TE, FPU_ARCH_VFP),
25880 ARM_ARCH_OPT ("armv5texp", ARM_ARCH_V5TExP, FPU_ARCH_VFP),
25881 ARM_ARCH_OPT ("armv5tej", ARM_ARCH_V5TEJ, FPU_ARCH_VFP),
25882 ARM_ARCH_OPT ("armv6", ARM_ARCH_V6, FPU_ARCH_VFP),
25883 ARM_ARCH_OPT ("armv6j", ARM_ARCH_V6, FPU_ARCH_VFP),
25884 ARM_ARCH_OPT ("armv6k", ARM_ARCH_V6K, FPU_ARCH_VFP),
25885 ARM_ARCH_OPT ("armv6z", ARM_ARCH_V6Z, FPU_ARCH_VFP),
f33026a9
MW
25886 /* The official spelling of this variant is ARMv6KZ, the name "armv6zk" is
25887 kept to preserve existing behaviour. */
25888 ARM_ARCH_OPT ("armv6kz", ARM_ARCH_V6KZ, FPU_ARCH_VFP),
25889 ARM_ARCH_OPT ("armv6zk", ARM_ARCH_V6KZ, FPU_ARCH_VFP),
f3bad469
MGD
25890 ARM_ARCH_OPT ("armv6t2", ARM_ARCH_V6T2, FPU_ARCH_VFP),
25891 ARM_ARCH_OPT ("armv6kt2", ARM_ARCH_V6KT2, FPU_ARCH_VFP),
25892 ARM_ARCH_OPT ("armv6zt2", ARM_ARCH_V6ZT2, FPU_ARCH_VFP),
f33026a9
MW
25893 /* The official spelling of this variant is ARMv6KZ, the name "armv6zkt2" is
25894 kept to preserve existing behaviour. */
25895 ARM_ARCH_OPT ("armv6kzt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
25896 ARM_ARCH_OPT ("armv6zkt2", ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
f3bad469
MGD
25897 ARM_ARCH_OPT ("armv6-m", ARM_ARCH_V6M, FPU_ARCH_VFP),
25898 ARM_ARCH_OPT ("armv6s-m", ARM_ARCH_V6SM, FPU_ARCH_VFP),
25899 ARM_ARCH_OPT ("armv7", ARM_ARCH_V7, FPU_ARCH_VFP),
c450d570
PB
25900 /* The official spelling of the ARMv7 profile variants is the dashed form.
25901 Accept the non-dashed form for compatibility with old toolchains. */
f3bad469 25902 ARM_ARCH_OPT ("armv7a", ARM_ARCH_V7A, FPU_ARCH_VFP),
c9fb6e58 25903 ARM_ARCH_OPT ("armv7ve", ARM_ARCH_V7VE, FPU_ARCH_VFP),
f3bad469
MGD
25904 ARM_ARCH_OPT ("armv7r", ARM_ARCH_V7R, FPU_ARCH_VFP),
25905 ARM_ARCH_OPT ("armv7m", ARM_ARCH_V7M, FPU_ARCH_VFP),
25906 ARM_ARCH_OPT ("armv7-a", ARM_ARCH_V7A, FPU_ARCH_VFP),
25907 ARM_ARCH_OPT ("armv7-r", ARM_ARCH_V7R, FPU_ARCH_VFP),
25908 ARM_ARCH_OPT ("armv7-m", ARM_ARCH_V7M, FPU_ARCH_VFP),
25909 ARM_ARCH_OPT ("armv7e-m", ARM_ARCH_V7EM, FPU_ARCH_VFP),
ff8646ee 25910 ARM_ARCH_OPT ("armv8-m.base", ARM_ARCH_V8M_BASE, FPU_ARCH_VFP),
4ed7ed8d 25911 ARM_ARCH_OPT ("armv8-m.main", ARM_ARCH_V8M_MAIN, FPU_ARCH_VFP),
bca38921 25912 ARM_ARCH_OPT ("armv8-a", ARM_ARCH_V8A, FPU_ARCH_VFP),
a5932920 25913 ARM_ARCH_OPT ("armv8.1-a", ARM_ARCH_V8_1A, FPU_ARCH_VFP),
56a1b672 25914 ARM_ARCH_OPT ("armv8.2-a", ARM_ARCH_V8_2A, FPU_ARCH_VFP),
a12fd8e1 25915 ARM_ARCH_OPT ("armv8.3-a", ARM_ARCH_V8_3A, FPU_ARCH_VFP),
ced40572 25916 ARM_ARCH_OPT ("armv8-r", ARM_ARCH_V8R, FPU_ARCH_VFP),
f3bad469
MGD
25917 ARM_ARCH_OPT ("xscale", ARM_ARCH_XSCALE, FPU_ARCH_VFP),
25918 ARM_ARCH_OPT ("iwmmxt", ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
25919 ARM_ARCH_OPT ("iwmmxt2", ARM_ARCH_IWMMXT2,FPU_ARCH_VFP),
25920 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
c19d1205 25921};
f3bad469 25922#undef ARM_ARCH_OPT
7ed4c4c5 25923
69133863
MGD
25924/* ISA extensions in the co-processor and main instruction set space. */
25925struct arm_option_extension_value_table
c19d1205 25926{
e0471c16 25927 const char *name;
f3bad469 25928 size_t name_len;
5a70a223
JB
25929 const arm_feature_set merge_value;
25930 const arm_feature_set clear_value;
d942732e
TP
25931 /* List of architectures for which an extension is available. ARM_ARCH_NONE
25932 indicates that an extension is available for all architectures while
25933 ARM_ANY marks an empty entry. */
25934 const arm_feature_set allowed_archs[2];
c19d1205 25935};
7ed4c4c5 25936
69133863
MGD
25937/* The following table must be in alphabetical order with a NULL last entry.
25938 */
d942732e
TP
25939#define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, { AA, ARM_ANY } }
25940#define ARM_EXT_OPT2(N, M, C, AA1, AA2) { N, sizeof (N) - 1, M, C, {AA1, AA2} }
69133863 25941static const struct arm_option_extension_value_table arm_extensions[] =
c19d1205 25942{
823d2571
TG
25943 ARM_EXT_OPT ("crc", ARCH_CRC_ARMV8, ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
25944 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
bca38921 25945 ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
823d2571
TG
25946 ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
25947 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
15afaa63
TP
25948 ARM_EXT_OPT ("dsp", ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
25949 ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
25950 ARM_FEATURE_CORE (ARM_EXT_V7M, ARM_EXT2_V8M)),
823d2571
TG
25951 ARM_EXT_OPT ("fp", FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
25952 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
b8ec4e87
JW
25953 ARM_EXT_OPT ("fp16", ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
25954 ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
25955 ARM_ARCH_V8_2A),
d942732e 25956 ARM_EXT_OPT2 ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
823d2571 25957 ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
d942732e
TP
25958 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
25959 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
3d030cdb
TP
25960 /* Duplicate entry for the purpose of allowing ARMv7 to match in presence of
25961 Thumb divide instruction. Due to this having the same name as the
25962 previous entry, this will be ignored when doing command-line parsing and
25963 only considered by build attribute selection code. */
25964 ARM_EXT_OPT ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
25965 ARM_FEATURE_CORE_LOW (ARM_EXT_DIV),
25966 ARM_FEATURE_CORE_LOW (ARM_EXT_V7)),
823d2571 25967 ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
d942732e 25968 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ARCH_NONE),
823d2571 25969 ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
d942732e 25970 ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ARCH_NONE),
823d2571 25971 ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
d942732e
TP
25972 ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ARCH_NONE),
25973 ARM_EXT_OPT2 ("mp", ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
823d2571 25974 ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
d942732e
TP
25975 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
25976 ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
823d2571
TG
25977 ARM_EXT_OPT ("os", ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
25978 ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
25979 ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
ddfded2f
MW
25980 ARM_EXT_OPT ("pan", ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN),
25981 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_PAN, 0),
ced40572 25982 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
4d1464f2
MW
25983 ARM_EXT_OPT ("ras", ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS),
25984 ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_RAS, 0),
ced40572 25985 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
643afb90
MW
25986 ARM_EXT_OPT ("rdma", FPU_ARCH_NEON_VFP_ARMV8_1,
25987 ARM_FEATURE_COPROC (FPU_NEON_ARMV8 | FPU_NEON_EXT_RDMA),
ced40572 25988 ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8A)),
d942732e 25989 ARM_EXT_OPT2 ("sec", ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
823d2571 25990 ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
d942732e
TP
25991 ARM_FEATURE_CORE_LOW (ARM_EXT_V6K),
25992 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
643afb90
MW
25993 ARM_EXT_OPT ("simd", FPU_ARCH_NEON_VFP_ARMV8,
25994 ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
25995 ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
823d2571
TG
25996 ARM_EXT_OPT ("virt", ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
25997 | ARM_EXT_DIV),
25998 ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
25999 ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
26000 ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
d942732e
TP
26001 ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ARCH_NONE),
26002 { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, { ARM_ARCH_NONE, ARM_ARCH_NONE } }
69133863 26003};
f3bad469 26004#undef ARM_EXT_OPT
69133863
MGD
26005
26006/* ISA floating-point and Advanced SIMD extensions. */
26007struct arm_option_fpu_value_table
26008{
e0471c16 26009 const char *name;
69133863 26010 const arm_feature_set value;
c19d1205 26011};
7ed4c4c5 26012
c19d1205
ZW
26013/* This list should, at a minimum, contain all the fpu names
26014 recognized by GCC. */
69133863 26015static const struct arm_option_fpu_value_table arm_fpus[] =
c19d1205
ZW
26016{
26017 {"softfpa", FPU_NONE},
26018 {"fpe", FPU_ARCH_FPE},
26019 {"fpe2", FPU_ARCH_FPE},
26020 {"fpe3", FPU_ARCH_FPA}, /* Third release supports LFM/SFM. */
26021 {"fpa", FPU_ARCH_FPA},
26022 {"fpa10", FPU_ARCH_FPA},
26023 {"fpa11", FPU_ARCH_FPA},
26024 {"arm7500fe", FPU_ARCH_FPA},
26025 {"softvfp", FPU_ARCH_VFP},
26026 {"softvfp+vfp", FPU_ARCH_VFP_V2},
26027 {"vfp", FPU_ARCH_VFP_V2},
26028 {"vfp9", FPU_ARCH_VFP_V2},
d5e0ba9c 26029 {"vfp3", FPU_ARCH_VFP_V3}, /* Undocumented, use vfpv3. */
c19d1205
ZW
26030 {"vfp10", FPU_ARCH_VFP_V2},
26031 {"vfp10-r0", FPU_ARCH_VFP_V1},
26032 {"vfpxd", FPU_ARCH_VFP_V1xD},
b1cc4aeb
PB
26033 {"vfpv2", FPU_ARCH_VFP_V2},
26034 {"vfpv3", FPU_ARCH_VFP_V3},
62f3b8c8 26035 {"vfpv3-fp16", FPU_ARCH_VFP_V3_FP16},
b1cc4aeb 26036 {"vfpv3-d16", FPU_ARCH_VFP_V3D16},
62f3b8c8
PB
26037 {"vfpv3-d16-fp16", FPU_ARCH_VFP_V3D16_FP16},
26038 {"vfpv3xd", FPU_ARCH_VFP_V3xD},
26039 {"vfpv3xd-fp16", FPU_ARCH_VFP_V3xD_FP16},
c19d1205
ZW
26040 {"arm1020t", FPU_ARCH_VFP_V1},
26041 {"arm1020e", FPU_ARCH_VFP_V2},
d5e0ba9c 26042 {"arm1136jfs", FPU_ARCH_VFP_V2}, /* Undocumented, use arm1136jf-s. */
c19d1205
ZW
26043 {"arm1136jf-s", FPU_ARCH_VFP_V2},
26044 {"maverick", FPU_ARCH_MAVERICK},
d5e0ba9c 26045 {"neon", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
d3375ddd 26046 {"neon-vfpv3", FPU_ARCH_VFP_V3_PLUS_NEON_V1},
8e79c3df 26047 {"neon-fp16", FPU_ARCH_NEON_FP16},
62f3b8c8
PB
26048 {"vfpv4", FPU_ARCH_VFP_V4},
26049 {"vfpv4-d16", FPU_ARCH_VFP_V4D16},
ada65aa3 26050 {"fpv4-sp-d16", FPU_ARCH_VFP_V4_SP_D16},
a715796b
TG
26051 {"fpv5-d16", FPU_ARCH_VFP_V5D16},
26052 {"fpv5-sp-d16", FPU_ARCH_VFP_V5_SP_D16},
62f3b8c8 26053 {"neon-vfpv4", FPU_ARCH_NEON_VFP_V4},
bca38921
MGD
26054 {"fp-armv8", FPU_ARCH_VFP_ARMV8},
26055 {"neon-fp-armv8", FPU_ARCH_NEON_VFP_ARMV8},
26056 {"crypto-neon-fp-armv8",
26057 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
d6b4b13e 26058 {"neon-fp-armv8.1", FPU_ARCH_NEON_VFP_ARMV8_1},
081e4c7d
MW
26059 {"crypto-neon-fp-armv8.1",
26060 FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1},
e74cfd16
PB
26061 {NULL, ARM_ARCH_NONE}
26062};
26063
26064struct arm_option_value_table
26065{
e0471c16 26066 const char *name;
e74cfd16 26067 long value;
c19d1205 26068};
7ed4c4c5 26069
e74cfd16 26070static const struct arm_option_value_table arm_float_abis[] =
c19d1205
ZW
26071{
26072 {"hard", ARM_FLOAT_ABI_HARD},
26073 {"softfp", ARM_FLOAT_ABI_SOFTFP},
26074 {"soft", ARM_FLOAT_ABI_SOFT},
e74cfd16 26075 {NULL, 0}
c19d1205 26076};
7ed4c4c5 26077
c19d1205 26078#ifdef OBJ_ELF
3a4a14e9 26079/* We only know how to output GNU and ver 4/5 (AAELF) formats. */
e74cfd16 26080static const struct arm_option_value_table arm_eabis[] =
c19d1205
ZW
26081{
26082 {"gnu", EF_ARM_EABI_UNKNOWN},
26083 {"4", EF_ARM_EABI_VER4},
3a4a14e9 26084 {"5", EF_ARM_EABI_VER5},
e74cfd16 26085 {NULL, 0}
c19d1205
ZW
26086};
26087#endif
7ed4c4c5 26088
c19d1205
ZW
26089struct arm_long_option_table
26090{
e0471c16
TS
26091 const char * option; /* Substring to match. */
26092 const char * help; /* Help information. */
17b9d67d 26093 int (* func) (const char * subopt); /* Function to decode sub-option. */
e0471c16 26094 const char * deprecated; /* If non-null, print this message. */
c19d1205 26095};
7ed4c4c5 26096
c921be7d 26097static bfd_boolean
c168ce07
TP
26098arm_parse_extension (const char *str, const arm_feature_set *opt_set,
26099 arm_feature_set **ext_set_p)
7ed4c4c5 26100{
69133863 26101 /* We insist on extensions being specified in alphabetical order, and with
fa94de6b
RM
26102 extensions being added before being removed. We achieve this by having
26103 the global ARM_EXTENSIONS table in alphabetical order, and using the
69133863 26104 ADDING_VALUE variable to indicate whether we are adding an extension (1)
fa94de6b 26105 or removing it (0) and only allowing it to change in the order
69133863
MGD
26106 -1 -> 1 -> 0. */
26107 const struct arm_option_extension_value_table * opt = NULL;
d942732e 26108 const arm_feature_set arm_any = ARM_ANY;
69133863
MGD
26109 int adding_value = -1;
26110
c168ce07
TP
26111 if (!*ext_set_p)
26112 {
26113 *ext_set_p = XNEW (arm_feature_set);
26114 **ext_set_p = arm_arch_none;
26115 }
e74cfd16 26116
c19d1205 26117 while (str != NULL && *str != 0)
7ed4c4c5 26118 {
82b8a785 26119 const char *ext;
f3bad469 26120 size_t len;
7ed4c4c5 26121
c19d1205
ZW
26122 if (*str != '+')
26123 {
26124 as_bad (_("invalid architectural extension"));
c921be7d 26125 return FALSE;
c19d1205 26126 }
7ed4c4c5 26127
c19d1205
ZW
26128 str++;
26129 ext = strchr (str, '+');
7ed4c4c5 26130
c19d1205 26131 if (ext != NULL)
f3bad469 26132 len = ext - str;
c19d1205 26133 else
f3bad469 26134 len = strlen (str);
7ed4c4c5 26135
f3bad469 26136 if (len >= 2 && strncmp (str, "no", 2) == 0)
69133863
MGD
26137 {
26138 if (adding_value != 0)
26139 {
26140 adding_value = 0;
26141 opt = arm_extensions;
26142 }
26143
f3bad469 26144 len -= 2;
69133863
MGD
26145 str += 2;
26146 }
f3bad469 26147 else if (len > 0)
69133863
MGD
26148 {
26149 if (adding_value == -1)
26150 {
26151 adding_value = 1;
26152 opt = arm_extensions;
26153 }
26154 else if (adding_value != 1)
26155 {
26156 as_bad (_("must specify extensions to add before specifying "
26157 "those to remove"));
26158 return FALSE;
26159 }
26160 }
26161
f3bad469 26162 if (len == 0)
c19d1205
ZW
26163 {
26164 as_bad (_("missing architectural extension"));
c921be7d 26165 return FALSE;
c19d1205 26166 }
7ed4c4c5 26167
69133863
MGD
26168 gas_assert (adding_value != -1);
26169 gas_assert (opt != NULL);
26170
26171 /* Scan over the options table trying to find an exact match. */
26172 for (; opt->name != NULL; opt++)
f3bad469 26173 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 26174 {
d942732e
TP
26175 int i, nb_allowed_archs =
26176 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
69133863 26177 /* Check we can apply the extension to this architecture. */
d942732e
TP
26178 for (i = 0; i < nb_allowed_archs; i++)
26179 {
26180 /* Empty entry. */
26181 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
26182 continue;
c168ce07 26183 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *opt_set))
d942732e
TP
26184 break;
26185 }
26186 if (i == nb_allowed_archs)
69133863
MGD
26187 {
26188 as_bad (_("extension does not apply to the base architecture"));
26189 return FALSE;
26190 }
26191
26192 /* Add or remove the extension. */
26193 if (adding_value)
c168ce07
TP
26194 ARM_MERGE_FEATURE_SETS (**ext_set_p, **ext_set_p,
26195 opt->merge_value);
69133863 26196 else
c168ce07 26197 ARM_CLEAR_FEATURE (**ext_set_p, **ext_set_p, opt->clear_value);
69133863 26198
3d030cdb
TP
26199 /* Allowing Thumb division instructions for ARMv7 in autodetection
26200 rely on this break so that duplicate extensions (extensions
26201 with the same name as a previous extension in the list) are not
26202 considered for command-line parsing. */
c19d1205
ZW
26203 break;
26204 }
7ed4c4c5 26205
c19d1205
ZW
26206 if (opt->name == NULL)
26207 {
69133863
MGD
26208 /* Did we fail to find an extension because it wasn't specified in
26209 alphabetical order, or because it does not exist? */
26210
26211 for (opt = arm_extensions; opt->name != NULL; opt++)
f3bad469 26212 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
69133863
MGD
26213 break;
26214
26215 if (opt->name == NULL)
26216 as_bad (_("unknown architectural extension `%s'"), str);
26217 else
26218 as_bad (_("architectural extensions must be specified in "
26219 "alphabetical order"));
26220
c921be7d 26221 return FALSE;
c19d1205 26222 }
69133863
MGD
26223 else
26224 {
26225 /* We should skip the extension we've just matched the next time
26226 round. */
26227 opt++;
26228 }
7ed4c4c5 26229
c19d1205
ZW
26230 str = ext;
26231 };
7ed4c4c5 26232
c921be7d 26233 return TRUE;
c19d1205 26234}
7ed4c4c5 26235
c921be7d 26236static bfd_boolean
17b9d67d 26237arm_parse_cpu (const char *str)
7ed4c4c5 26238{
f3bad469 26239 const struct arm_cpu_option_table *opt;
82b8a785 26240 const char *ext = strchr (str, '+');
f3bad469 26241 size_t len;
7ed4c4c5 26242
c19d1205 26243 if (ext != NULL)
f3bad469 26244 len = ext - str;
7ed4c4c5 26245 else
f3bad469 26246 len = strlen (str);
7ed4c4c5 26247
f3bad469 26248 if (len == 0)
7ed4c4c5 26249 {
c19d1205 26250 as_bad (_("missing cpu name `%s'"), str);
c921be7d 26251 return FALSE;
7ed4c4c5
NC
26252 }
26253
c19d1205 26254 for (opt = arm_cpus; opt->name != NULL; opt++)
f3bad469 26255 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 26256 {
c168ce07
TP
26257 mcpu_cpu_opt = &opt->value;
26258 if (!dyn_mcpu_ext_opt)
26259 dyn_mcpu_ext_opt = XNEW (arm_feature_set);
26260 *dyn_mcpu_ext_opt = opt->ext;
e74cfd16 26261 mcpu_fpu_opt = &opt->default_fpu;
ee065d83 26262 if (opt->canonical_name)
ef8e6722
JW
26263 {
26264 gas_assert (sizeof selected_cpu_name > strlen (opt->canonical_name));
26265 strcpy (selected_cpu_name, opt->canonical_name);
26266 }
ee065d83
PB
26267 else
26268 {
f3bad469 26269 size_t i;
c921be7d 26270
ef8e6722
JW
26271 if (len >= sizeof selected_cpu_name)
26272 len = (sizeof selected_cpu_name) - 1;
26273
f3bad469 26274 for (i = 0; i < len; i++)
ee065d83
PB
26275 selected_cpu_name[i] = TOUPPER (opt->name[i]);
26276 selected_cpu_name[i] = 0;
26277 }
7ed4c4c5 26278
c19d1205 26279 if (ext != NULL)
c168ce07 26280 return arm_parse_extension (ext, mcpu_cpu_opt, &dyn_mcpu_ext_opt);
7ed4c4c5 26281
c921be7d 26282 return TRUE;
c19d1205 26283 }
7ed4c4c5 26284
c19d1205 26285 as_bad (_("unknown cpu `%s'"), str);
c921be7d 26286 return FALSE;
7ed4c4c5
NC
26287}
26288
c921be7d 26289static bfd_boolean
17b9d67d 26290arm_parse_arch (const char *str)
7ed4c4c5 26291{
e74cfd16 26292 const struct arm_arch_option_table *opt;
82b8a785 26293 const char *ext = strchr (str, '+');
f3bad469 26294 size_t len;
7ed4c4c5 26295
c19d1205 26296 if (ext != NULL)
f3bad469 26297 len = ext - str;
7ed4c4c5 26298 else
f3bad469 26299 len = strlen (str);
7ed4c4c5 26300
f3bad469 26301 if (len == 0)
7ed4c4c5 26302 {
c19d1205 26303 as_bad (_("missing architecture name `%s'"), str);
c921be7d 26304 return FALSE;
7ed4c4c5
NC
26305 }
26306
c19d1205 26307 for (opt = arm_archs; opt->name != NULL; opt++)
f3bad469 26308 if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
c19d1205 26309 {
e74cfd16
PB
26310 march_cpu_opt = &opt->value;
26311 march_fpu_opt = &opt->default_fpu;
5f4273c7 26312 strcpy (selected_cpu_name, opt->name);
7ed4c4c5 26313
c19d1205 26314 if (ext != NULL)
c168ce07 26315 return arm_parse_extension (ext, march_cpu_opt, &dyn_march_ext_opt);
7ed4c4c5 26316
c921be7d 26317 return TRUE;
c19d1205
ZW
26318 }
26319
26320 as_bad (_("unknown architecture `%s'\n"), str);
c921be7d 26321 return FALSE;
7ed4c4c5 26322}
eb043451 26323
c921be7d 26324static bfd_boolean
17b9d67d 26325arm_parse_fpu (const char * str)
c19d1205 26326{
69133863 26327 const struct arm_option_fpu_value_table * opt;
b99bd4ef 26328
c19d1205
ZW
26329 for (opt = arm_fpus; opt->name != NULL; opt++)
26330 if (streq (opt->name, str))
26331 {
e74cfd16 26332 mfpu_opt = &opt->value;
c921be7d 26333 return TRUE;
c19d1205 26334 }
b99bd4ef 26335
c19d1205 26336 as_bad (_("unknown floating point format `%s'\n"), str);
c921be7d 26337 return FALSE;
c19d1205
ZW
26338}
26339
c921be7d 26340static bfd_boolean
17b9d67d 26341arm_parse_float_abi (const char * str)
b99bd4ef 26342{
e74cfd16 26343 const struct arm_option_value_table * opt;
b99bd4ef 26344
c19d1205
ZW
26345 for (opt = arm_float_abis; opt->name != NULL; opt++)
26346 if (streq (opt->name, str))
26347 {
26348 mfloat_abi_opt = opt->value;
c921be7d 26349 return TRUE;
c19d1205 26350 }
cc8a6dd0 26351
c19d1205 26352 as_bad (_("unknown floating point abi `%s'\n"), str);
c921be7d 26353 return FALSE;
c19d1205 26354}
b99bd4ef 26355
c19d1205 26356#ifdef OBJ_ELF
c921be7d 26357static bfd_boolean
17b9d67d 26358arm_parse_eabi (const char * str)
c19d1205 26359{
e74cfd16 26360 const struct arm_option_value_table *opt;
cc8a6dd0 26361
c19d1205
ZW
26362 for (opt = arm_eabis; opt->name != NULL; opt++)
26363 if (streq (opt->name, str))
26364 {
26365 meabi_flags = opt->value;
c921be7d 26366 return TRUE;
c19d1205
ZW
26367 }
26368 as_bad (_("unknown EABI `%s'\n"), str);
c921be7d 26369 return FALSE;
c19d1205
ZW
26370}
26371#endif
cc8a6dd0 26372
c921be7d 26373static bfd_boolean
17b9d67d 26374arm_parse_it_mode (const char * str)
e07e6e58 26375{
c921be7d 26376 bfd_boolean ret = TRUE;
e07e6e58
NC
26377
26378 if (streq ("arm", str))
26379 implicit_it_mode = IMPLICIT_IT_MODE_ARM;
26380 else if (streq ("thumb", str))
26381 implicit_it_mode = IMPLICIT_IT_MODE_THUMB;
26382 else if (streq ("always", str))
26383 implicit_it_mode = IMPLICIT_IT_MODE_ALWAYS;
26384 else if (streq ("never", str))
26385 implicit_it_mode = IMPLICIT_IT_MODE_NEVER;
26386 else
26387 {
26388 as_bad (_("unknown implicit IT mode `%s', should be "\
477330fc 26389 "arm, thumb, always, or never."), str);
c921be7d 26390 ret = FALSE;
e07e6e58
NC
26391 }
26392
26393 return ret;
26394}
26395
2e6976a8 26396static bfd_boolean
17b9d67d 26397arm_ccs_mode (const char * unused ATTRIBUTE_UNUSED)
2e6976a8
DG
26398{
26399 codecomposer_syntax = TRUE;
26400 arm_comment_chars[0] = ';';
26401 arm_line_separator_chars[0] = 0;
26402 return TRUE;
26403}
26404
c19d1205
ZW
26405struct arm_long_option_table arm_long_opts[] =
26406{
26407 {"mcpu=", N_("<cpu name>\t assemble for CPU <cpu name>"),
26408 arm_parse_cpu, NULL},
26409 {"march=", N_("<arch name>\t assemble for architecture <arch name>"),
26410 arm_parse_arch, NULL},
26411 {"mfpu=", N_("<fpu name>\t assemble for FPU architecture <fpu name>"),
26412 arm_parse_fpu, NULL},
26413 {"mfloat-abi=", N_("<abi>\t assemble for floating point ABI <abi>"),
26414 arm_parse_float_abi, NULL},
26415#ifdef OBJ_ELF
7fac0536 26416 {"meabi=", N_("<ver>\t\t assemble for eabi version <ver>"),
c19d1205
ZW
26417 arm_parse_eabi, NULL},
26418#endif
e07e6e58
NC
26419 {"mimplicit-it=", N_("<mode>\t controls implicit insertion of IT instructions"),
26420 arm_parse_it_mode, NULL},
2e6976a8
DG
26421 {"mccs", N_("\t\t\t TI CodeComposer Studio syntax compatibility mode"),
26422 arm_ccs_mode, NULL},
c19d1205
ZW
26423 {NULL, NULL, 0, NULL}
26424};
cc8a6dd0 26425
c19d1205 26426int
17b9d67d 26427md_parse_option (int c, const char * arg)
c19d1205
ZW
26428{
26429 struct arm_option_table *opt;
e74cfd16 26430 const struct arm_legacy_option_table *fopt;
c19d1205 26431 struct arm_long_option_table *lopt;
b99bd4ef 26432
c19d1205 26433 switch (c)
b99bd4ef 26434 {
c19d1205
ZW
26435#ifdef OPTION_EB
26436 case OPTION_EB:
26437 target_big_endian = 1;
26438 break;
26439#endif
cc8a6dd0 26440
c19d1205
ZW
26441#ifdef OPTION_EL
26442 case OPTION_EL:
26443 target_big_endian = 0;
26444 break;
26445#endif
b99bd4ef 26446
845b51d6
PB
26447 case OPTION_FIX_V4BX:
26448 fix_v4bx = TRUE;
26449 break;
26450
c19d1205
ZW
26451 case 'a':
26452 /* Listing option. Just ignore these, we don't support additional
26453 ones. */
26454 return 0;
b99bd4ef 26455
c19d1205
ZW
26456 default:
26457 for (opt = arm_opts; opt->option != NULL; opt++)
26458 {
26459 if (c == opt->option[0]
26460 && ((arg == NULL && opt->option[1] == 0)
26461 || streq (arg, opt->option + 1)))
26462 {
c19d1205 26463 /* If the option is deprecated, tell the user. */
278df34e 26464 if (warn_on_deprecated && opt->deprecated != NULL)
c19d1205
ZW
26465 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
26466 arg ? arg : "", _(opt->deprecated));
b99bd4ef 26467
c19d1205
ZW
26468 if (opt->var != NULL)
26469 *opt->var = opt->value;
cc8a6dd0 26470
c19d1205
ZW
26471 return 1;
26472 }
26473 }
b99bd4ef 26474
e74cfd16
PB
26475 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
26476 {
26477 if (c == fopt->option[0]
26478 && ((arg == NULL && fopt->option[1] == 0)
26479 || streq (arg, fopt->option + 1)))
26480 {
e74cfd16 26481 /* If the option is deprecated, tell the user. */
278df34e 26482 if (warn_on_deprecated && fopt->deprecated != NULL)
e74cfd16
PB
26483 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
26484 arg ? arg : "", _(fopt->deprecated));
e74cfd16
PB
26485
26486 if (fopt->var != NULL)
26487 *fopt->var = &fopt->value;
26488
26489 return 1;
26490 }
26491 }
26492
c19d1205
ZW
26493 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26494 {
26495 /* These options are expected to have an argument. */
26496 if (c == lopt->option[0]
26497 && arg != NULL
26498 && strncmp (arg, lopt->option + 1,
26499 strlen (lopt->option + 1)) == 0)
26500 {
c19d1205 26501 /* If the option is deprecated, tell the user. */
278df34e 26502 if (warn_on_deprecated && lopt->deprecated != NULL)
c19d1205
ZW
26503 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
26504 _(lopt->deprecated));
b99bd4ef 26505
c19d1205
ZW
26506 /* Call the sup-option parser. */
26507 return lopt->func (arg + strlen (lopt->option) - 1);
26508 }
26509 }
a737bd4d 26510
c19d1205
ZW
26511 return 0;
26512 }
a394c00f 26513
c19d1205
ZW
26514 return 1;
26515}
a394c00f 26516
c19d1205
ZW
26517void
26518md_show_usage (FILE * fp)
a394c00f 26519{
c19d1205
ZW
26520 struct arm_option_table *opt;
26521 struct arm_long_option_table *lopt;
a394c00f 26522
c19d1205 26523 fprintf (fp, _(" ARM-specific assembler options:\n"));
a394c00f 26524
c19d1205
ZW
26525 for (opt = arm_opts; opt->option != NULL; opt++)
26526 if (opt->help != NULL)
26527 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
a394c00f 26528
c19d1205
ZW
26529 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26530 if (lopt->help != NULL)
26531 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));
a394c00f 26532
c19d1205
ZW
26533#ifdef OPTION_EB
26534 fprintf (fp, _("\
26535 -EB assemble code for a big-endian cpu\n"));
a394c00f
NC
26536#endif
26537
c19d1205
ZW
26538#ifdef OPTION_EL
26539 fprintf (fp, _("\
26540 -EL assemble code for a little-endian cpu\n"));
a737bd4d 26541#endif
845b51d6
PB
26542
26543 fprintf (fp, _("\
26544 --fix-v4bx Allow BX in ARMv4 code\n"));
c19d1205 26545}
ee065d83
PB
26546
26547
26548#ifdef OBJ_ELF
62b3e311
PB
26549typedef struct
26550{
26551 int val;
26552 arm_feature_set flags;
26553} cpu_arch_ver_table;
26554
2c6b98ea
TP
26555/* Mapping from CPU features to EABI CPU arch values. Table must be sorted
26556 chronologically for architectures, with an exception for ARMv6-M and
26557 ARMv6S-M due to legacy reasons. No new architecture should have a
26558 special case. This allows for build attribute selection results to be
26559 stable when new architectures are added. */
62b3e311
PB
26560static const cpu_arch_ver_table cpu_arch_ver[] =
26561{
2c6b98ea
TP
26562 {0, ARM_ARCH_V1},
26563 {0, ARM_ARCH_V2},
26564 {0, ARM_ARCH_V2S},
26565 {0, ARM_ARCH_V3},
26566 {0, ARM_ARCH_V3M},
26567 {1, ARM_ARCH_V4xM},
62b3e311 26568 {1, ARM_ARCH_V4},
2c6b98ea 26569 {2, ARM_ARCH_V4TxM},
62b3e311 26570 {2, ARM_ARCH_V4T},
2c6b98ea 26571 {3, ARM_ARCH_V5xM},
62b3e311 26572 {3, ARM_ARCH_V5},
2c6b98ea 26573 {3, ARM_ARCH_V5TxM},
ee3c0378 26574 {3, ARM_ARCH_V5T},
2c6b98ea 26575 {4, ARM_ARCH_V5TExP},
62b3e311
PB
26576 {4, ARM_ARCH_V5TE},
26577 {5, ARM_ARCH_V5TEJ},
26578 {6, ARM_ARCH_V6},
f4c65163 26579 {7, ARM_ARCH_V6Z},
2c6b98ea
TP
26580 {7, ARM_ARCH_V6KZ},
26581 {9, ARM_ARCH_V6K},
26582 {8, ARM_ARCH_V6T2},
26583 {8, ARM_ARCH_V6KT2},
26584 {8, ARM_ARCH_V6ZT2},
26585 {8, ARM_ARCH_V6KZT2},
26586
26587 /* When assembling a file with only ARMv6-M or ARMv6S-M instruction, GNU as
26588 always selected build attributes to match those of ARMv6-M
26589 (resp. ARMv6S-M). However, due to these architectures being a strict
26590 subset of ARMv7-M in terms of instructions available, ARMv7-M attributes
26591 would be selected when fully respecting chronology of architectures.
26592 It is thus necessary to make a special case of ARMv6-M and ARMv6S-M and
26593 move them before ARMv7 architectures. */
91e22acd 26594 {11, ARM_ARCH_V6M},
b2a5fbdc 26595 {12, ARM_ARCH_V6SM},
2c6b98ea
TP
26596
26597 {10, ARM_ARCH_V7},
26598 {10, ARM_ARCH_V7A},
62b3e311
PB
26599 {10, ARM_ARCH_V7R},
26600 {10, ARM_ARCH_V7M},
2c6b98ea
TP
26601 {10, ARM_ARCH_V7VE},
26602 {13, ARM_ARCH_V7EM},
bca38921 26603 {14, ARM_ARCH_V8A},
2c6b98ea
TP
26604 {14, ARM_ARCH_V8_1A},
26605 {14, ARM_ARCH_V8_2A},
26606 {14, ARM_ARCH_V8_3A},
ff8646ee 26607 {16, ARM_ARCH_V8M_BASE},
4ed7ed8d 26608 {17, ARM_ARCH_V8M_MAIN},
ced40572 26609 {15, ARM_ARCH_V8R},
2c6b98ea 26610 {-1, ARM_ARCH_NONE}
62b3e311
PB
26611};
26612
ee3c0378
AS
26613/* Set an attribute if it has not already been set by the user. */
26614static void
26615aeabi_set_attribute_int (int tag, int value)
26616{
26617 if (tag < 1
26618 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
26619 || !attributes_set_explicitly[tag])
26620 bfd_elf_add_proc_attr_int (stdoutput, tag, value);
26621}
26622
26623static void
26624aeabi_set_attribute_string (int tag, const char *value)
26625{
26626 if (tag < 1
26627 || tag >= NUM_KNOWN_OBJ_ATTRIBUTES
26628 || !attributes_set_explicitly[tag])
26629 bfd_elf_add_proc_attr_string (stdoutput, tag, value);
26630}
26631
2c6b98ea
TP
26632/* Return whether features in the *NEEDED feature set are available via
26633 extensions for the architecture whose feature set is *ARCH_FSET. */
26634static bfd_boolean
26635have_ext_for_needed_feat_p (const arm_feature_set *arch_fset,
26636 const arm_feature_set *needed)
26637{
26638 int i, nb_allowed_archs;
26639 arm_feature_set ext_fset;
26640 const struct arm_option_extension_value_table *opt;
26641
26642 ext_fset = arm_arch_none;
26643 for (opt = arm_extensions; opt->name != NULL; opt++)
26644 {
26645 /* Extension does not provide any feature we need. */
26646 if (!ARM_CPU_HAS_FEATURE (*needed, opt->merge_value))
26647 continue;
26648
26649 nb_allowed_archs =
26650 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
26651 for (i = 0; i < nb_allowed_archs; i++)
26652 {
26653 /* Empty entry. */
26654 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_arch_any))
26655 break;
26656
26657 /* Extension is available, add it. */
26658 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *arch_fset))
26659 ARM_MERGE_FEATURE_SETS (ext_fset, ext_fset, opt->merge_value);
26660 }
26661 }
26662
26663 /* Can we enable all features in *needed? */
26664 return ARM_FSET_CPU_SUBSET (*needed, ext_fset);
26665}
26666
26667/* Select value for Tag_CPU_arch and Tag_CPU_arch_profile build attributes for
26668 a given architecture feature set *ARCH_EXT_FSET including extension feature
26669 set *EXT_FSET. Selection logic used depend on EXACT_MATCH:
26670 - if true, check for an exact match of the architecture modulo extensions;
26671 - otherwise, select build attribute value of the first superset
26672 architecture released so that results remains stable when new architectures
26673 are added.
26674 For -march/-mcpu=all the build attribute value of the most featureful
26675 architecture is returned. Tag_CPU_arch_profile result is returned in
26676 PROFILE. */
26677static int
26678get_aeabi_cpu_arch_from_fset (const arm_feature_set *arch_ext_fset,
26679 const arm_feature_set *ext_fset,
26680 char *profile, int exact_match)
26681{
26682 arm_feature_set arch_fset;
26683 const cpu_arch_ver_table *p_ver, *p_ver_ret = NULL;
26684
26685 /* Select most featureful architecture with all its extensions if building
26686 for -march=all as the feature sets used to set build attributes. */
26687 if (ARM_FEATURE_EQUAL (*arch_ext_fset, arm_arch_any))
26688 {
26689 /* Force revisiting of decision for each new architecture. */
26690 gas_assert (MAX_TAG_CPU_ARCH <= TAG_CPU_ARCH_V8M_MAIN);
26691 *profile = 'A';
26692 return TAG_CPU_ARCH_V8;
26693 }
26694
26695 ARM_CLEAR_FEATURE (arch_fset, *arch_ext_fset, *ext_fset);
26696
26697 for (p_ver = cpu_arch_ver; p_ver->val != -1; p_ver++)
26698 {
26699 arm_feature_set known_arch_fset;
26700
26701 ARM_CLEAR_FEATURE (known_arch_fset, p_ver->flags, fpu_any);
26702 if (exact_match)
26703 {
26704 /* Base architecture match user-specified architecture and
26705 extensions, eg. ARMv6S-M matching -march=armv6-m+os. */
26706 if (ARM_FEATURE_EQUAL (*arch_ext_fset, known_arch_fset))
26707 {
26708 p_ver_ret = p_ver;
26709 goto found;
26710 }
26711 /* Base architecture match user-specified architecture only
26712 (eg. ARMv6-M in the same case as above). Record it in case we
26713 find a match with above condition. */
26714 else if (p_ver_ret == NULL
26715 && ARM_FEATURE_EQUAL (arch_fset, known_arch_fset))
26716 p_ver_ret = p_ver;
26717 }
26718 else
26719 {
26720
26721 /* Architecture has all features wanted. */
26722 if (ARM_FSET_CPU_SUBSET (arch_fset, known_arch_fset))
26723 {
26724 arm_feature_set added_fset;
26725
26726 /* Compute features added by this architecture over the one
26727 recorded in p_ver_ret. */
26728 if (p_ver_ret != NULL)
26729 ARM_CLEAR_FEATURE (added_fset, known_arch_fset,
26730 p_ver_ret->flags);
26731 /* First architecture that match incl. with extensions, or the
26732 only difference in features over the recorded match is
26733 features that were optional and are now mandatory. */
26734 if (p_ver_ret == NULL
26735 || ARM_FSET_CPU_SUBSET (added_fset, arch_fset))
26736 {
26737 p_ver_ret = p_ver;
26738 goto found;
26739 }
26740 }
26741 else if (p_ver_ret == NULL)
26742 {
26743 arm_feature_set needed_ext_fset;
26744
26745 ARM_CLEAR_FEATURE (needed_ext_fset, arch_fset, known_arch_fset);
26746
26747 /* Architecture has all features needed when using some
26748 extensions. Record it and continue searching in case there
26749 exist an architecture providing all needed features without
26750 the need for extensions (eg. ARMv6S-M Vs ARMv6-M with
26751 OS extension). */
26752 if (have_ext_for_needed_feat_p (&known_arch_fset,
26753 &needed_ext_fset))
26754 p_ver_ret = p_ver;
26755 }
26756 }
26757 }
26758
26759 if (p_ver_ret == NULL)
26760 return -1;
26761
26762found:
26763 /* Tag_CPU_arch_profile. */
26764 if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7a)
26765 || ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8)
26766 || (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_atomics)
26767 && !ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v8m_m_only)))
26768 *profile = 'A';
26769 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_v7r))
26770 *profile = 'R';
26771 else if (ARM_CPU_HAS_FEATURE (p_ver_ret->flags, arm_ext_m))
26772 *profile = 'M';
26773 else
26774 *profile = '\0';
26775 return p_ver_ret->val;
26776}
26777
ee065d83 26778/* Set the public EABI object attributes. */
c168ce07 26779static void
ee065d83
PB
26780aeabi_set_public_attributes (void)
26781{
69239280 26782 char profile;
2c6b98ea 26783 int arch = -1;
90ec0d68 26784 int virt_sec = 0;
bca38921 26785 int fp16_optional = 0;
2c6b98ea
TP
26786 int skip_exact_match = 0;
26787 arm_feature_set flags, flags_arch, flags_ext;
ee065d83 26788
54bab281
TP
26789 /* Autodetection mode, choose the architecture based the instructions
26790 actually used. */
26791 if (no_cpu_selected ())
26792 {
26793 ARM_MERGE_FEATURE_SETS (flags, arm_arch_used, thumb_arch_used);
ddd7f988 26794
54bab281
TP
26795 if (ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any))
26796 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v1);
ddd7f988 26797
54bab281
TP
26798 if (ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_any))
26799 ARM_MERGE_FEATURE_SETS (flags, flags, arm_ext_v4t);
ddd7f988 26800
54bab281
TP
26801 /* Code run during relaxation relies on selected_cpu being set. */
26802 selected_cpu = flags;
26803 }
26804 /* Otherwise, choose the architecture based on the capabilities of the
26805 requested cpu. */
26806 else
26807 flags = selected_cpu;
26808 ARM_MERGE_FEATURE_SETS (flags, flags, *mfpu_opt);
7f78eb34 26809
ddd7f988 26810 /* Allow the user to override the reported architecture. */
7a1d4c38
PB
26811 if (object_arch)
26812 {
2c6b98ea
TP
26813 ARM_CLEAR_FEATURE (flags_arch, *object_arch, fpu_any);
26814 flags_ext = arm_arch_none;
7a1d4c38 26815 }
2c6b98ea 26816 else
62b3e311 26817 {
2c6b98ea
TP
26818 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
26819 flags_ext = dyn_mcpu_ext_opt ? *dyn_mcpu_ext_opt : arm_arch_none;
26820 skip_exact_match = ARM_FEATURE_EQUAL (selected_cpu, arm_arch_any);
26821 }
26822
26823 /* When this function is run again after relaxation has happened there is no
26824 way to determine whether an architecture or CPU was specified by the user:
26825 - selected_cpu is set above for relaxation to work;
26826 - march_cpu_opt is not set if only -mcpu or .cpu is used;
26827 - mcpu_cpu_opt is set to arm_arch_any for autodetection.
26828 Therefore, if not in -march=all case we first try an exact match and fall
26829 back to autodetection. */
26830 if (!skip_exact_match)
26831 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 1);
26832 if (arch == -1)
26833 arch = get_aeabi_cpu_arch_from_fset (&flags_arch, &flags_ext, &profile, 0);
26834 if (arch == -1)
26835 as_bad (_("no architecture contains all the instructions used\n"));
9e3c6df6 26836
ee065d83
PB
26837 /* Tag_CPU_name. */
26838 if (selected_cpu_name[0])
26839 {
91d6fa6a 26840 char *q;
ee065d83 26841
91d6fa6a
NC
26842 q = selected_cpu_name;
26843 if (strncmp (q, "armv", 4) == 0)
ee065d83
PB
26844 {
26845 int i;
5f4273c7 26846
91d6fa6a
NC
26847 q += 4;
26848 for (i = 0; q[i]; i++)
26849 q[i] = TOUPPER (q[i]);
ee065d83 26850 }
91d6fa6a 26851 aeabi_set_attribute_string (Tag_CPU_name, q);
ee065d83 26852 }
62f3b8c8 26853
ee065d83 26854 /* Tag_CPU_arch. */
ee3c0378 26855 aeabi_set_attribute_int (Tag_CPU_arch, arch);
62f3b8c8 26856
62b3e311 26857 /* Tag_CPU_arch_profile. */
69239280
MGD
26858 if (profile != '\0')
26859 aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
62f3b8c8 26860
15afaa63 26861 /* Tag_DSP_extension. */
6c290d53
TP
26862 if (dyn_mcpu_ext_opt && ARM_CPU_HAS_FEATURE (*dyn_mcpu_ext_opt, arm_ext_dsp))
26863 aeabi_set_attribute_int (Tag_DSP_extension, 1);
15afaa63 26864
2c6b98ea 26865 ARM_CLEAR_FEATURE (flags_arch, flags, fpu_any);
ee065d83 26866 /* Tag_ARM_ISA_use. */
ee3c0378 26867 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
2c6b98ea 26868 || ARM_FEATURE_ZERO (flags_arch))
ee3c0378 26869 aeabi_set_attribute_int (Tag_ARM_ISA_use, 1);
62f3b8c8 26870
ee065d83 26871 /* Tag_THUMB_ISA_use. */
ee3c0378 26872 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
2c6b98ea 26873 || ARM_FEATURE_ZERO (flags_arch))
4ed7ed8d
TP
26874 {
26875 int thumb_isa_use;
26876
26877 if (!ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
16a1fa25 26878 && ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only))
4ed7ed8d
TP
26879 thumb_isa_use = 3;
26880 else if (ARM_CPU_HAS_FEATURE (flags, arm_arch_t2))
26881 thumb_isa_use = 2;
26882 else
26883 thumb_isa_use = 1;
26884 aeabi_set_attribute_int (Tag_THUMB_ISA_use, thumb_isa_use);
26885 }
62f3b8c8 26886
ee065d83 26887 /* Tag_VFP_arch. */
a715796b
TG
26888 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
26889 aeabi_set_attribute_int (Tag_VFP_arch,
26890 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
26891 ? 7 : 8);
bca38921 26892 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
62f3b8c8
PB
26893 aeabi_set_attribute_int (Tag_VFP_arch,
26894 ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
26895 ? 5 : 6);
26896 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32))
bca38921
MGD
26897 {
26898 fp16_optional = 1;
26899 aeabi_set_attribute_int (Tag_VFP_arch, 3);
26900 }
ada65aa3 26901 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v3xd))
bca38921
MGD
26902 {
26903 aeabi_set_attribute_int (Tag_VFP_arch, 4);
26904 fp16_optional = 1;
26905 }
ee3c0378
AS
26906 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v2))
26907 aeabi_set_attribute_int (Tag_VFP_arch, 2);
26908 else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1)
477330fc 26909 || ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd))
ee3c0378 26910 aeabi_set_attribute_int (Tag_VFP_arch, 1);
62f3b8c8 26911
4547cb56
NC
26912 /* Tag_ABI_HardFP_use. */
26913 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1xd)
26914 && !ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_v1))
26915 aeabi_set_attribute_int (Tag_ABI_HardFP_use, 1);
26916
ee065d83 26917 /* Tag_WMMX_arch. */
ee3c0378
AS
26918 if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt2))
26919 aeabi_set_attribute_int (Tag_WMMX_arch, 2);
26920 else if (ARM_CPU_HAS_FEATURE (flags, arm_cext_iwmmxt))
26921 aeabi_set_attribute_int (Tag_WMMX_arch, 1);
62f3b8c8 26922
ee3c0378 26923 /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch). */
9411fd44
MW
26924 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v8_1))
26925 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 4);
26926 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
bca38921
MGD
26927 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
26928 else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
26929 {
26930 if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_fma))
26931 {
26932 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 2);
26933 }
26934 else
26935 {
26936 aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 1);
26937 fp16_optional = 1;
26938 }
26939 }
fa94de6b 26940
ee3c0378 26941 /* Tag_VFP_HP_extension (formerly Tag_NEON_FP16_arch). */
bca38921 26942 if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_fp16) && fp16_optional)
ee3c0378 26943 aeabi_set_attribute_int (Tag_VFP_HP_extension, 1);
4547cb56 26944
69239280
MGD
26945 /* Tag_DIV_use.
26946
26947 We set Tag_DIV_use to two when integer divide instructions have been used
26948 in ARM state, or when Thumb integer divide instructions have been used,
26949 but we have no architecture profile set, nor have we any ARM instructions.
26950
4ed7ed8d
TP
26951 For ARMv8-A and ARMv8-M we set the tag to 0 as integer divide is implied
26952 by the base architecture.
bca38921 26953
69239280 26954 For new architectures we will have to check these tests. */
ced40572 26955 gas_assert (arch <= TAG_CPU_ARCH_V8M_MAIN);
4ed7ed8d
TP
26956 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
26957 || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m))
bca38921
MGD
26958 aeabi_set_attribute_int (Tag_DIV_use, 0);
26959 else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
26960 || (profile == '\0'
26961 && ARM_CPU_HAS_FEATURE (flags, arm_ext_div)
26962 && !ARM_CPU_HAS_FEATURE (arm_arch_used, arm_arch_any)))
eea54501 26963 aeabi_set_attribute_int (Tag_DIV_use, 2);
60e5ef9f
MGD
26964
26965 /* Tag_MP_extension_use. */
26966 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_mp))
26967 aeabi_set_attribute_int (Tag_MPextension_use, 1);
f4c65163
MGD
26968
26969 /* Tag Virtualization_use. */
26970 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_sec))
90ec0d68
MGD
26971 virt_sec |= 1;
26972 if (ARM_CPU_HAS_FEATURE (flags, arm_ext_virt))
26973 virt_sec |= 2;
26974 if (virt_sec != 0)
26975 aeabi_set_attribute_int (Tag_Virtualization_use, virt_sec);
ee065d83
PB
26976}
26977
c168ce07
TP
26978/* Post relaxation hook. Recompute ARM attributes now that relaxation is
26979 finished and free extension feature bits which will not be used anymore. */
26980void
26981arm_md_post_relax (void)
26982{
26983 aeabi_set_public_attributes ();
26984 XDELETE (dyn_mcpu_ext_opt);
26985 dyn_mcpu_ext_opt = NULL;
26986 XDELETE (dyn_march_ext_opt);
26987 dyn_march_ext_opt = NULL;
26988}
26989
104d59d1 26990/* Add the default contents for the .ARM.attributes section. */
ee065d83
PB
26991void
26992arm_md_end (void)
26993{
ee065d83
PB
26994 if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
26995 return;
26996
26997 aeabi_set_public_attributes ();
ee065d83 26998}
8463be01 26999#endif /* OBJ_ELF */
ee065d83
PB
27000
27001
27002/* Parse a .cpu directive. */
27003
27004static void
27005s_arm_cpu (int ignored ATTRIBUTE_UNUSED)
27006{
e74cfd16 27007 const struct arm_cpu_option_table *opt;
ee065d83
PB
27008 char *name;
27009 char saved_char;
27010
27011 name = input_line_pointer;
5f4273c7 27012 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
27013 input_line_pointer++;
27014 saved_char = *input_line_pointer;
27015 *input_line_pointer = 0;
27016
27017 /* Skip the first "all" entry. */
27018 for (opt = arm_cpus + 1; opt->name != NULL; opt++)
27019 if (streq (opt->name, name))
27020 {
c168ce07
TP
27021 mcpu_cpu_opt = &opt->value;
27022 if (!dyn_mcpu_ext_opt)
27023 dyn_mcpu_ext_opt = XNEW (arm_feature_set);
27024 *dyn_mcpu_ext_opt = opt->ext;
27025 ARM_MERGE_FEATURE_SETS (selected_cpu, *mcpu_cpu_opt, *dyn_mcpu_ext_opt);
ee065d83 27026 if (opt->canonical_name)
5f4273c7 27027 strcpy (selected_cpu_name, opt->canonical_name);
ee065d83
PB
27028 else
27029 {
27030 int i;
27031 for (i = 0; opt->name[i]; i++)
27032 selected_cpu_name[i] = TOUPPER (opt->name[i]);
f3bad469 27033
ee065d83
PB
27034 selected_cpu_name[i] = 0;
27035 }
e74cfd16 27036 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
c168ce07
TP
27037 if (dyn_mcpu_ext_opt)
27038 ARM_MERGE_FEATURE_SETS (cpu_variant, cpu_variant, *dyn_mcpu_ext_opt);
ee065d83
PB
27039 *input_line_pointer = saved_char;
27040 demand_empty_rest_of_line ();
27041 return;
27042 }
27043 as_bad (_("unknown cpu `%s'"), name);
27044 *input_line_pointer = saved_char;
27045 ignore_rest_of_line ();
27046}
27047
27048
27049/* Parse a .arch directive. */
27050
27051static void
27052s_arm_arch (int ignored ATTRIBUTE_UNUSED)
27053{
e74cfd16 27054 const struct arm_arch_option_table *opt;
ee065d83
PB
27055 char saved_char;
27056 char *name;
27057
27058 name = input_line_pointer;
5f4273c7 27059 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
27060 input_line_pointer++;
27061 saved_char = *input_line_pointer;
27062 *input_line_pointer = 0;
27063
27064 /* Skip the first "all" entry. */
27065 for (opt = arm_archs + 1; opt->name != NULL; opt++)
27066 if (streq (opt->name, name))
27067 {
e74cfd16 27068 mcpu_cpu_opt = &opt->value;
c168ce07
TP
27069 XDELETE (dyn_mcpu_ext_opt);
27070 dyn_mcpu_ext_opt = NULL;
27071 selected_cpu = *mcpu_cpu_opt;
5f4273c7 27072 strcpy (selected_cpu_name, opt->name);
c168ce07 27073 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, *mfpu_opt);
ee065d83
PB
27074 *input_line_pointer = saved_char;
27075 demand_empty_rest_of_line ();
27076 return;
27077 }
27078
27079 as_bad (_("unknown architecture `%s'\n"), name);
27080 *input_line_pointer = saved_char;
27081 ignore_rest_of_line ();
27082}
27083
27084
7a1d4c38
PB
27085/* Parse a .object_arch directive. */
27086
27087static void
27088s_arm_object_arch (int ignored ATTRIBUTE_UNUSED)
27089{
27090 const struct arm_arch_option_table *opt;
27091 char saved_char;
27092 char *name;
27093
27094 name = input_line_pointer;
5f4273c7 27095 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
7a1d4c38
PB
27096 input_line_pointer++;
27097 saved_char = *input_line_pointer;
27098 *input_line_pointer = 0;
27099
27100 /* Skip the first "all" entry. */
27101 for (opt = arm_archs + 1; opt->name != NULL; opt++)
27102 if (streq (opt->name, name))
27103 {
27104 object_arch = &opt->value;
27105 *input_line_pointer = saved_char;
27106 demand_empty_rest_of_line ();
27107 return;
27108 }
27109
27110 as_bad (_("unknown architecture `%s'\n"), name);
27111 *input_line_pointer = saved_char;
27112 ignore_rest_of_line ();
27113}
27114
69133863
MGD
27115/* Parse a .arch_extension directive. */
27116
27117static void
27118s_arm_arch_extension (int ignored ATTRIBUTE_UNUSED)
27119{
27120 const struct arm_option_extension_value_table *opt;
d942732e 27121 const arm_feature_set arm_any = ARM_ANY;
69133863
MGD
27122 char saved_char;
27123 char *name;
27124 int adding_value = 1;
27125
27126 name = input_line_pointer;
27127 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
27128 input_line_pointer++;
27129 saved_char = *input_line_pointer;
27130 *input_line_pointer = 0;
27131
27132 if (strlen (name) >= 2
27133 && strncmp (name, "no", 2) == 0)
27134 {
27135 adding_value = 0;
27136 name += 2;
27137 }
27138
27139 for (opt = arm_extensions; opt->name != NULL; opt++)
27140 if (streq (opt->name, name))
27141 {
d942732e
TP
27142 int i, nb_allowed_archs =
27143 sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[i]);
27144 for (i = 0; i < nb_allowed_archs; i++)
27145 {
27146 /* Empty entry. */
27147 if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
27148 continue;
27149 if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *mcpu_cpu_opt))
27150 break;
27151 }
27152
27153 if (i == nb_allowed_archs)
69133863
MGD
27154 {
27155 as_bad (_("architectural extension `%s' is not allowed for the "
27156 "current base architecture"), name);
27157 break;
27158 }
27159
c168ce07
TP
27160 if (!dyn_mcpu_ext_opt)
27161 {
27162 dyn_mcpu_ext_opt = XNEW (arm_feature_set);
27163 *dyn_mcpu_ext_opt = arm_arch_none;
27164 }
69133863 27165 if (adding_value)
c168ce07 27166 ARM_MERGE_FEATURE_SETS (*dyn_mcpu_ext_opt, *dyn_mcpu_ext_opt,
5a70a223 27167 opt->merge_value);
69133863 27168 else
c168ce07
TP
27169 ARM_CLEAR_FEATURE (*dyn_mcpu_ext_opt, *dyn_mcpu_ext_opt,
27170 opt->clear_value);
69133863 27171
c168ce07
TP
27172 ARM_MERGE_FEATURE_SETS (selected_cpu, *mcpu_cpu_opt, *dyn_mcpu_ext_opt);
27173 ARM_MERGE_FEATURE_SETS (cpu_variant, selected_cpu, *mfpu_opt);
69133863
MGD
27174 *input_line_pointer = saved_char;
27175 demand_empty_rest_of_line ();
3d030cdb
TP
27176 /* Allowing Thumb division instructions for ARMv7 in autodetection rely
27177 on this return so that duplicate extensions (extensions with the
27178 same name as a previous extension in the list) are not considered
27179 for command-line parsing. */
69133863
MGD
27180 return;
27181 }
27182
27183 if (opt->name == NULL)
e673710a 27184 as_bad (_("unknown architecture extension `%s'\n"), name);
69133863
MGD
27185
27186 *input_line_pointer = saved_char;
27187 ignore_rest_of_line ();
27188}
27189
ee065d83
PB
27190/* Parse a .fpu directive. */
27191
27192static void
27193s_arm_fpu (int ignored ATTRIBUTE_UNUSED)
27194{
69133863 27195 const struct arm_option_fpu_value_table *opt;
ee065d83
PB
27196 char saved_char;
27197 char *name;
27198
27199 name = input_line_pointer;
5f4273c7 27200 while (*input_line_pointer && !ISSPACE (*input_line_pointer))
ee065d83
PB
27201 input_line_pointer++;
27202 saved_char = *input_line_pointer;
27203 *input_line_pointer = 0;
5f4273c7 27204
ee065d83
PB
27205 for (opt = arm_fpus; opt->name != NULL; opt++)
27206 if (streq (opt->name, name))
27207 {
e74cfd16
PB
27208 mfpu_opt = &opt->value;
27209 ARM_MERGE_FEATURE_SETS (cpu_variant, *mcpu_cpu_opt, *mfpu_opt);
c168ce07
TP
27210 if (dyn_mcpu_ext_opt)
27211 ARM_MERGE_FEATURE_SETS (cpu_variant, cpu_variant, *dyn_mcpu_ext_opt);
ee065d83
PB
27212 *input_line_pointer = saved_char;
27213 demand_empty_rest_of_line ();
27214 return;
27215 }
27216
27217 as_bad (_("unknown floating point format `%s'\n"), name);
27218 *input_line_pointer = saved_char;
27219 ignore_rest_of_line ();
27220}
ee065d83 27221
794ba86a 27222/* Copy symbol information. */
f31fef98 27223
794ba86a
DJ
27224void
27225arm_copy_symbol_attributes (symbolS *dest, symbolS *src)
27226{
27227 ARM_GET_FLAG (dest) = ARM_GET_FLAG (src);
27228}
e04befd0 27229
f31fef98 27230#ifdef OBJ_ELF
e04befd0
AS
27231/* Given a symbolic attribute NAME, return the proper integer value.
27232 Returns -1 if the attribute is not known. */
f31fef98 27233
e04befd0
AS
27234int
27235arm_convert_symbolic_attribute (const char *name)
27236{
f31fef98
NC
27237 static const struct
27238 {
27239 const char * name;
27240 const int tag;
27241 }
27242 attribute_table[] =
27243 {
27244 /* When you modify this table you should
27245 also modify the list in doc/c-arm.texi. */
e04befd0 27246#define T(tag) {#tag, tag}
f31fef98
NC
27247 T (Tag_CPU_raw_name),
27248 T (Tag_CPU_name),
27249 T (Tag_CPU_arch),
27250 T (Tag_CPU_arch_profile),
27251 T (Tag_ARM_ISA_use),
27252 T (Tag_THUMB_ISA_use),
75375b3e 27253 T (Tag_FP_arch),
f31fef98
NC
27254 T (Tag_VFP_arch),
27255 T (Tag_WMMX_arch),
27256 T (Tag_Advanced_SIMD_arch),
27257 T (Tag_PCS_config),
27258 T (Tag_ABI_PCS_R9_use),
27259 T (Tag_ABI_PCS_RW_data),
27260 T (Tag_ABI_PCS_RO_data),
27261 T (Tag_ABI_PCS_GOT_use),
27262 T (Tag_ABI_PCS_wchar_t),
27263 T (Tag_ABI_FP_rounding),
27264 T (Tag_ABI_FP_denormal),
27265 T (Tag_ABI_FP_exceptions),
27266 T (Tag_ABI_FP_user_exceptions),
27267 T (Tag_ABI_FP_number_model),
75375b3e 27268 T (Tag_ABI_align_needed),
f31fef98 27269 T (Tag_ABI_align8_needed),
75375b3e 27270 T (Tag_ABI_align_preserved),
f31fef98
NC
27271 T (Tag_ABI_align8_preserved),
27272 T (Tag_ABI_enum_size),
27273 T (Tag_ABI_HardFP_use),
27274 T (Tag_ABI_VFP_args),
27275 T (Tag_ABI_WMMX_args),
27276 T (Tag_ABI_optimization_goals),
27277 T (Tag_ABI_FP_optimization_goals),
27278 T (Tag_compatibility),
27279 T (Tag_CPU_unaligned_access),
75375b3e 27280 T (Tag_FP_HP_extension),
f31fef98
NC
27281 T (Tag_VFP_HP_extension),
27282 T (Tag_ABI_FP_16bit_format),
cd21e546
MGD
27283 T (Tag_MPextension_use),
27284 T (Tag_DIV_use),
f31fef98
NC
27285 T (Tag_nodefaults),
27286 T (Tag_also_compatible_with),
27287 T (Tag_conformance),
27288 T (Tag_T2EE_use),
27289 T (Tag_Virtualization_use),
15afaa63 27290 T (Tag_DSP_extension),
cd21e546 27291 /* We deliberately do not include Tag_MPextension_use_legacy. */
e04befd0 27292#undef T
f31fef98 27293 };
e04befd0
AS
27294 unsigned int i;
27295
27296 if (name == NULL)
27297 return -1;
27298
f31fef98 27299 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
c921be7d 27300 if (streq (name, attribute_table[i].name))
e04befd0
AS
27301 return attribute_table[i].tag;
27302
27303 return -1;
27304}
267bf995
RR
27305
27306
93ef582d
NC
27307/* Apply sym value for relocations only in the case that they are for
27308 local symbols in the same segment as the fixup and you have the
27309 respective architectural feature for blx and simple switches. */
267bf995 27310int
93ef582d 27311arm_apply_sym_value (struct fix * fixP, segT this_seg)
267bf995
RR
27312{
27313 if (fixP->fx_addsy
27314 && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
93ef582d
NC
27315 /* PR 17444: If the local symbol is in a different section then a reloc
27316 will always be generated for it, so applying the symbol value now
27317 will result in a double offset being stored in the relocation. */
27318 && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
34e77a92 27319 && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
267bf995
RR
27320 {
27321 switch (fixP->fx_r_type)
27322 {
27323 case BFD_RELOC_ARM_PCREL_BLX:
27324 case BFD_RELOC_THUMB_PCREL_BRANCH23:
27325 if (ARM_IS_FUNC (fixP->fx_addsy))
27326 return 1;
27327 break;
27328
27329 case BFD_RELOC_ARM_PCREL_CALL:
27330 case BFD_RELOC_THUMB_PCREL_BLX:
27331 if (THUMB_IS_FUNC (fixP->fx_addsy))
93ef582d 27332 return 1;
267bf995
RR
27333 break;
27334
27335 default:
27336 break;
27337 }
27338
27339 }
27340 return 0;
27341}
f31fef98 27342#endif /* OBJ_ELF */